Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #1

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"anecdotes": [
{
"content": "If it hurts, do it more often",
"id": 1,
"votes": 50
},
{
"content": "Adding manpower to a late software project makes it later!",
"id": 2,
"votes": 3
},
{
"content": "The first 90 percent of the code accounts for the first 90 percent of the development time...The remaining 10 percent of the code accounts for the other 90 percent of the development time.",
"id": 3,
"votes": 0
},
{
"content": "Any fool can write code that a computer can understand. Good programmers write code that humans can understand.",
"id": 4,
"votes": 0
},
{
"content": "Premature optimization is the root of all evil.",
"id": 5,
"votes": 0
},
{
"content": "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.",
"id": 6,
"votes": 0
},
{
"content": "today I studied js closures",
"votes": 0,
"id": 7
},
{
"content": "studying JS stuff is fun",
"votes": 0,
"id": 8
},
{
"content": "redux-thunk is a redux-middleware",
"votes": 0,
"id": 9
},
{
"content": "Web development is fun, but hard.",
"votes": 0,
"id": 10
},
{
"content": "I like to grow silently, and demonstrate when the time is right",
"votes": 1,
"id": 11
},
{
"content": "Good programers share their kwnoledge",
"votes": 0,
"id": 12
},
{
"content": "What is going on?",
"votes": 0,
"id": 13
},
{
"content": "Tomorrow is work day, let's go!",
"votes": 14,
"id": 14
},
{
"content": "Building a start-up from the groun-up is hard",
"votes": 0,
"id": 15
},
{
"content": "becoming a proficient Frontend engineer is my goal",
"votes": 1,
"id": 16
}
]
}
6 changes: 6 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
Loading