Topics / Programming
9 entries about this topic
-
20210224
shift and unshift: Learning JavaScript's Array Methods by Building Them
For the sixth article in this series, I explore shift and unshift. By exploring how to implement these yourself, you can learn a lot about how these array methods work.
-
20210202
pop and push: Learning Javascript's Array Methods by Building Them
I explore implementing pop and push in the fifth article of this series. Specifically, how can we add an item without using push or remove an item without using pop?
-
20210107
Managing Settings in a Large Django Project
Exploring three ways to manage Django's configuration settings when the your project gets large and complex.
-
20210104
filter: Learn JavaScript's Array Methods by Building Them
For the fourth article in the series, we explore the filter method and how we can use it to get just a subset of a large array.
-
20201216
concat: Learn JavaScript's Array Methods by Building Them
For the third article in the series, we explore the concat method and how we can abstract complicated logic into a function so we don't have to think about it.
-
20201203
map: Learn JavaScript's Array Methods by Building Them
Next in the series exploring JavaScript's array methods - map. Perhaps one of the most commonly used and powerful of JavaScript's array methods.
-
20201116
forEach: Learn JavaScript's Array Methods by Building Them
First in a series of articles exploring JavaScript's array methods, including a walk through of how to build your own. This article covers the forEach method.
-
20201110
Don't Learn Another Framework. Do This Instead.
Too many developers spend their nights and weekends learning a new programming language or the latest framework when they'd be better off learning something else.
-
20200204
What is Gatbsy.js, Really?
Gatsby.js is often described as a static site generator, but it's really so much more than that.