diff --git a/src/content/resources/javascript/callbacks/intro.md b/src/content/resources/javascript/callbacks/intro.md deleted file mode 100644 index 3d8826d..0000000 --- a/src/content/resources/javascript/callbacks/intro.md +++ /dev/null @@ -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. diff --git a/src/content/resources/javascript/promises/intro.md b/src/content/resources/javascript/promises/intro.md index 850cada..44a3a3f 100644 --- a/src/content/resources/javascript/promises/intro.md +++ b/src/content/resources/javascript/promises/intro.md @@ -101,7 +101,3 @@ getCharacters().then(characters => { console.log(characters); // (20) [{...}, {...}, {...}] }); ``` - -Let's break down what's happening in this function - -// TODO: finish this diff --git a/src/content/resources/javascript/promises/simplifying-promises.md b/src/content/resources/javascript/promises/simplifying-promises.md index 78e9331..d39d4dc 100644 --- a/src/content/resources/javascript/promises/simplifying-promises.md +++ b/src/content/resources/javascript/promises/simplifying-promises.md @@ -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 diff --git a/src/content/resources/python/basics.md b/src/content/resources/python/basics.md deleted file mode 100644 index 41ee2b2..0000000 --- a/src/content/resources/python/basics.md +++ /dev/null @@ -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" -```