The Coreteam Blog

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.

Filter by

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

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

Cost Effective Docker Jobs on Google Cloud

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.

No items found.

August 29, 2017

JS Testing Survival (Mocha, Chai, Sinon)

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

REST Endpoints Design Pattern

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

Concurrency – Watch out for globals in node.js AMD modules!

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.