diff --git a/Coroutines.md b/Coroutines.md index 02b2983..30c81c8 100644 --- a/Coroutines.md +++ b/Coroutines.md @@ -3,7 +3,7 @@ title: An Introduction to Coroutines description: "A language-agnostic introduction to the concept of Coroutines" published: true tags: beginner coroutines parallelism -date: 20211120 +date: 2021-11-20 --- ## Preamble @@ -183,4 +183,4 @@ However, we can safely assume that the code will *never* be interrupted between ## Conclusion -There is, of course, lots more to be said about coroutines, and how they a reintegrated in different languages. But this introduction should give a good enough idea of how they fundamentally work. \ No newline at end of file +There is, of course, lots more to be said about coroutines, and how they a reintegrated in different languages. But this introduction should give a good enough idea of how they fundamentally work. diff --git a/Rants/Lua over Ruby.md b/Rants/Lua over Ruby.md index 8928fcf..98b2a14 100644 --- a/Rants/Lua over Ruby.md +++ b/Rants/Lua over Ruby.md @@ -2,7 +2,7 @@ title: Why I prefer Lua to Ruby published: true tags: Lua, Ruby -date: 20190401 +date: 2019-04-01 --- So Lua and Ruby are two rather similar languages in many aspects. There's a lot of articles explaining what makes them so similar and many of the more superficial differences. @@ -186,4 +186,4 @@ puts 1.0/0 puts 0.0/0 ``` -Things like that make a language (and, by extension, programs written in it) harder to understand at first glance, specially to newcomers. No language will ever be 100% consistent, but these inconsistencies should still be reduced whenever possible. \ No newline at end of file +Things like that make a language (and, by extension, programs written in it) harder to understand at first glance, specially to newcomers. No language will ever be 100% consistent, but these inconsistencies should still be reduced whenever possible. diff --git a/Rants/Portfolios without Frameworks.md b/Rants/Portfolios without Frameworks.md index e5310dc..e2564c3 100644 --- a/Rants/Portfolios without Frameworks.md +++ b/Rants/Portfolios without Frameworks.md @@ -3,6 +3,7 @@ title: Stop using frameworks for your portfolio! published: false description: or "why, in my humble opinion, you should refrain from using a framework intended for highly interactive web applications for a simple portfolio site" tags: +date: 1994-05-03 # cover_image: https://direct_url_to_image.jpg # Use a ratio of 100:42 for best results. --- @@ -16,4 +17,4 @@ With that being said, I have seen many developer portfolios reaching for modern ## Let your projects speak for themselves - \ No newline at end of file + diff --git a/Rants/Rant on Change.md b/Rants/Rant on Change.md index 93bb016..d1c7a00 100644 --- a/Rants/Rant on Change.md +++ b/Rants/Rant on Change.md @@ -3,7 +3,7 @@ title: A rant on change, and the good old times. published: true description: A long and poorly structured rant about a series of harmful phenomena I've observed in the world of programming. tags: rant, programming, community -date: 20201125 +date: 2020-11-25 --- # Preamble @@ -72,4 +72,4 @@ And please, don't sell yourselves under value. Programming is hard. Everyone can # In Conclusion -It's not like I think the world will end. Programming won't stop being my hobby, nor do I fear I some day won't find a job (at least not before someone develops an AI that does all the programming for us and understands human language). I want the world of programming to stay this quirky place, where people build cool stuff, share what they've built and discuss it with others. Ultimately I hope we can all have fun programming 🧡 \ No newline at end of file +It's not like I think the world will end. Programming won't stop being my hobby, nor do I fear I some day won't find a job (at least not before someone develops an AI that does all the programming for us and understands human language). I want the world of programming to stay this quirky place, where people build cool stuff, share what they've built and discuss it with others. Ultimately I hope we can all have fun programming 🧡 diff --git a/Rants/Tabs over Spaces.md b/Rants/Tabs over Spaces.md index 6da7bc4..a81f82c 100644 --- a/Rants/Tabs over Spaces.md +++ b/Rants/Tabs over Spaces.md @@ -3,7 +3,7 @@ title: Tabs are objectively better than spaces, and here's why published: true description: Here's why I think tabs are objectively better than spaces tags: indentation, tabs, spaces -date: 20210215 +date: 2021-02-15 --- # The Debate @@ -60,4 +60,4 @@ Regardless of preference, in the age of linting tools and CI pipelines, this is # Conclusion -There is not a single good reason to prefer spaces over tabs. The whole space-indentation mythology is nothing but ridiculous non sequiturs and false claims. \ No newline at end of file +There is not a single good reason to prefer spaces over tabs. The whole space-indentation mythology is nothing but ridiculous non sequiturs and false claims. diff --git a/Web/CSS/What is Scope.md b/Web/CSS/What is Scope.md index 2113892..fe21896 100644 --- a/Web/CSS/What is Scope.md +++ b/Web/CSS/What is Scope.md @@ -3,7 +3,7 @@ title: What is CSS @scope and why should I care? published: true description: "A short introduction to the new CSS @scope rule, the history of CSS scoping and what makes it useful for different areas of web-development" tags: css,scope,components,vanilla -date: 20220316 +date: 2022-03-16 --- ## A brief history of Scoping and CSS diff --git a/Web/JavaScript/HTML Typeriter.md b/Web/JavaScript/HTML Typeriter.md index eab0602..ab7777e 100644 --- a/Web/JavaScript/HTML Typeriter.md +++ b/Web/JavaScript/HTML Typeriter.md @@ -3,7 +3,7 @@ title: Building an HTML Type-Writer description: "A detailed description of the development process of an HTML TypeWriter element in plain JavaScript using the custom-element API, meta-programming and some recursion magic." published: true tags: type-writer, html, javascript, webdev, async, metaprogramming -date: 20210911 +date: 2021-09-11 --- ## Backstory @@ -278,4 +278,4 @@ I am aware that this example doesn't really target only one skill-level, as some And last but not least, [here's the actual code](https://github.com/DarkWiiPlayer/components/blob/master/TypeWriter.js), but keep in mind that I changed and ommitted a few things to make the code easier to follow in the article. -What are your thoughts? Would you improve anything about this aproach? Have you ever found yourself using similar tools to solve a problem? Let me know in the comments and happy discussing! 💜 \ No newline at end of file +What are your thoughts? Would you improve anything about this aproach? Have you ever found yourself using similar tools to solve a problem? Let me know in the comments and happy discussing! 💜