Originally posted on dev As a developer, I am constantly on the lookout for solutions that can help me improve my daily workflow, so I try to keep up with the novelties on the market (another reason is to later brag about using them before it was cool). Today I prepared for you my pick...
Tag: developer
7 VS Code Extensions for Frontend Developers
Originally posted on dev. As a developer, you’re always looking for cutting-edge tools, tricks, and extensions to improve your productivity and efficiency. Being able to manage your time better is a valuable skill for software engineers. Therefore, here’s a list of Visual Studio Code extensions that help frontend developers (and not only!) to increase their...
developer-roadmap: Roadmap to becoming a web developer in 2020
Originally posted on Github Below you find a set of charts demonstrating the paths that you can take and the technologies that you would want to adopt in order to become a frontend, backend or a devops. I made these charts for an old professor of mine who wanted something to share with his college...
Essential Books That Every Programmer Should Read
Never ask advice of someone with whom you wouldn’t want to trade places — Darren Hardy The idea to collect a list of books that knowledgeable, experienced and well-known programmers recommends to read comes to me from The long Journey to Ruby Mastery conference talk by Bozhidar Batsov. Here I share what I have found so far: the books recommendations...
Defining Your Domain
On making sense of everything you know, and don’t, as a software developer Being a software developer is about more than just knowing how to crunch long lines code. Sure, that is one aspect of it, and a very important one at that, but there’s a lot more that you need to know in order...
Async programming basics every JS developer should know in 2018
This article is aimed at people starting out with asynchronous coding in javascript so we would keep things simple by avoiding big words, arrow functions, template literals etc. Callbacks are one of the most used concepts of modern functional javascript and if you’ve ever used jQuery, chances are you’ve already used callbacks without even knowing...
Minimum Cost Path Analysis (Python)
Multi-dimensional arrays and Matrices are popular interview topics in programming technical interviews. Although practical applications for such questions may be a stretch at times, such questions do test an interviewees ability to work with different data types, as well as the ability to consolidate code into concise chunks. One question in this group that I...