Code In Focus
Home
Blog
About
Code In Focus
Categories
Guides (5)
Postmortem (1)
Featured Tags
jenkins (4)
java (3)
docker (2)
kubernetes (2)
maven (2)
nodejs (2)
ci (1)
javascript (1)
kiss (1)
software (1)
typescript (1)
yagni (1)
Recommend Series
Jenkins-Pipelines (4)
Software-Development (1)
Blog
8 posts
Here I’m publishing my ideas, thoughts or simply rants.
««
«
1
2
»
»»
Navigating the Job Search as a Senior Software Developer
Mar 16, 2024
8 minutes read
After parting ways with my last job, I found myself navigating the uncertain waters of job searching. In this article, I’m sharing the lessons I’ve learned and the advice I’ve collected from others along the way. It’s a personal roadmap filled with actionable strategies and reflections, crafted to support anyone facing similar challenges.......
job search
Circular Dependencies
Sep 6, 2021
5 minutes read
Updated on January 3, 2023 What are Circular Dependencies? A circular dependency is when one of your modules imports another modules, which directly or via other modules imports the first module. Examples: Direct reference: A -> B -> A // a.js import { b } from './b.js' // b.js import { a } from '.......
guides
software-development
javascript
typescript
nodejs
The tale of misbehaving Node.js microservice - Postmortem
Apr 7, 2021
3 minutes read
“You don’t build production shit on your machine!” - Yuval Oren The problem About a month ago we started getting weird issues with one of our Node.js services in change of extracting data from the database to our analytics platform. After a while, we discovered it did extract only partial data, producing no errors.......
postmortem
docker
nodejs
ci
You Aren't Gonna Need It
Oct 21, 2020
2 minutes read
Let me tell you a story. Imagine that you are working on your application and you need to implement a very important feature. Like any engineer who loves his trade, your mind explodes with multiple ideas how can you make it better. You brew some ideas, add some improvements, spent twice as much time as you should, but…......
software
yagni
kiss
Building Docker Images in Jenkins on Kubernetes
May 5, 2020
4 minutes read
This is a fourth post in a series, describing the problems my team has faced during implementation of Jenkins pipelines in Kubernetes. Jenkins Java Centric Pipelines in Kubernetes Building Maven Projects in Jenkins Docker workers Using Maven and Jenkins to perform modular Java builds Building Docker Images in Jenkins on Kubernetes (This article) Why would we want to build Docker images in Kubernetes Often Kubernetes is the platform of choice both for the production environments and the CI(/CD) pipelines that we use for our development processes.......
guides
jenkins-pipelines
jenkins
java
kubernetes
docker
««
«
1
2
»
»»