Posts
All the articles I've posted.
-
Number Extensions in Javascript
2 min readNumber benefits from several changes in ES6, providing several of new methods saving us from writing your own potentially error prone implementation.
-
New Blog, New Domain
1 min read -
CSS Grid on Production
2 min readCSS Grid which allows far greater control than we've ever had before
-
New interesting data structures in Python 3
5 min readtake a look at some data structures that Python 3 offers, but that are not available in Python 2
-
Keyword argument demystify
3 min readThere’s a lot of baffling among Python programmers on what exactly 'keyword arguments' are
-
Looping techniques in Python
1 min readPython has multiple techniques for looping over data structures
-
Enhance your tuples
1 min readStandard Python `tuple`s are lightweight sequences of immutable objects, yet their implementation may prove inconvenient in some scenarios
-
Get more with collections!
1 min readIn addition to Python's built-in data structures (such as `tuple`s, `dict`s, and `list`s), a library module called `collections` provides data structures with additional features, some of which are specializations of the built-in ones