Merge pull request #218 from the-programmers-hangout/content-clean-up-placeholder

content(resources): clean up placeholder resources
This commit is contained in:
Jean-Philippe Sirois
2020-01-27 06:33:15 -05:00
committed by GitHub
6 changed files with 0 additions and 33 deletions
-1
View File
@@ -18,7 +18,6 @@ const ALL_RESOURCES = graphql`
frontmatter {
authors
title
date
}
}
}
@@ -21,7 +21,6 @@ const ALL_RESOURCES = graphql`
frontmatter {
authors
title
date
}
}
}
@@ -1,10 +0,0 @@
---
authors:
- "Xetera#0001"
created_at: 2019/07/27
title: Callbacks
---
## Callbacks are everywhere
If you've been doing javascript for any amount of time you'll have noticed that callbacks appear in just about every single piece of code.
@@ -101,7 +101,3 @@ getCharacters().then(characters => {
console.log(characters); // (20) [{...}, {...}, {...}]
});
```
Let's break down what's happening in this function
// TODO: finish this
@@ -5,8 +5,6 @@ created_at: "2019/07/26"
title: Simplifying Promises
---
-- placeholder --
The first naive attempt, using new Promise for something that already returns a promise.
```js
-15
View File
@@ -1,15 +0,0 @@
---
authors:
- "Xetera#0001"
date: 2019/06/26
title: Some Python Article
---
## Python
This is a placeholder post
```py
def test():
return "Hello world"
```