Discover the latest industry processes, get ahead with cutting‑edge insights, and be in the know about the newest trends in GenAI and deep-tech space.
Business
Culture
Development
Management
Mentorship
June 22, 2020
Software developer mentorship today has issues. Hiring junior software developers and mentoring them to become mid and senior developers is an important goal for many if not all companies. In an ideal world, we would see a lot more mentorship happen in practice.
MVC
Debugging
Startup
Frontend
Node JS
Javascript
Google Cloud Platform
Recruiting
HR
Docker
Travel
Lifestyle
Mentorship
Tech Debt
Management
DevOps
AWS
Development
Culture
Business
DevOps
Docker
Google Cloud Platform
October 18, 2017
Recently I wanted to run some jobs. I’m a huge advocate of using docker, so natrually I was going to build a docker image, to run my python scripts, then I wanted to schedule said job to run once in a while.
August 29, 2017
This post is a simple guide to JS testing with Mocha, Chai, Sinon on CircleCI. It will show you how to setup for testing, some great tips for good coverage and more.
Development
Javascript
Node JS
May 24, 2017
In this post I’ll present a suggested design pattern and implementation for this design pattern using a Node + Express REST API with ES Classes. Personally, I hate writing the same code again and again.
Development
Javascript
Node JS
February 4, 2017
Globals, or global variables are known to be risky.However using the ‘var’ keyword should ensure file level definition.As such shouldn’t it be safe to use module level variables? The answer is no, and it should be avoided at all costs.