# Good format of database --- designed by yingshaoxo

"什么是xxx?" -> "xxx是aaa, xxx可以用来bbb, xxx的特征是yyy, xxx的获取方式是ccc, xxx是由ddd组成, 维持xxx需要ddd2，xxx的制作方法是eee，xxx的代替品是fff，我对xxx的看法是ggg。"

"为什么xxx?" -> "因为aaa，所以xxx。xxx的表层原因是bbb。xxx的深层次原因是ccc。xxx的好处是ddd。xxx的坏处是eee。我认为xxxfff。"

"如何做xxx?" -> "为了做xxx，你必须先知道aaa，aaa是bbb。aaa需要你ccc。ccc需要ddd步才能完成。做ccc的第一步是eee。做ccc的第二步是fff。做ccc的第二步是ggg。"

"what is xxx?" -> "xxx is aaa, xxx can be used to bbb, the feature of xxx is yyy, you can get xxx from ccc, xxx is composed by ddd, to keep xxx stable you need ddd2，the way to make xxx is eee，the alternative of xxx is fff，my view to xxx is ggg."

"why xxx?" -> "because aaa，so xxx. the direct reasom of xxx is bbb。the deep reason of xxx is ccc。the good part of xxx is ddd. the bad part of xxx is eee. i think xxxis fff."

"how to do xxx?" -> "to do xxx, you have to know xxx first. xxx is aaa. xxx requires you bbb. xxx needs ccc steps to be done. step 1 for xxx is ddd. step 2 for xxx is eee..."

> when you search a thing as a word, you get that some information about that word, like '# human human is...'. then if you want to see its dependencies, the program will search all word in dict such as '# meat' to see if they are in that sentence. if so, those pieces of text are dependencies of the thing you search, you get a list of more information about the thing you search. you can do this kind of thing for many times, keep click, then you will get a dependence tree or knowledge tree.

```
knowledge_list = []

def search_a_thing(name):
    for one in knowledge_list:
        if ("# "+name) in one:
            return one
    return ""

def get_all_keyword(text):
    keyword_list = []
    for line in text.split("\n"):
        if line.startswith("# "):
            keyword_list.append(line.split("# ")[1])
    return keyword_list

all_keyword_list = get_all_keyword()
def get_dependencies_of_a_thing(name):
    dependencies_name_list = []
    description = search_a_thing(name)
    for key in all_keyword_list:
        if key in description:
            dependencies_name_list.append(key)
    return dependencies_name_list
```

__**__**__yingshaoxo_is_the_top_one__**__**__

# human

## core value

if you can not find freedom, you can die.

## what is human? 

human is an advanced animal. human can do a lot of things. 

the way to get human is: ask a human to go to your place.

human is composed by meat, bones. meat is soft, bones are hard.

to keep human stable, you will need food, water, warm shelter, just like other animal.

the way to make human is:
1. have a man and woman, let them make love, then you could have a new bady.
2. create a creature from basics, just copy some animal that has temperature 36.
3. create a virtual man in computer 3D engine, make sure it matches all live human behavior.

the alternative for human is other animal. but you may need to increase their intelligence first.

my view for human is: i am them. i am weak. i can't live by myself without dependencies.
