code

Internal developer tools

Internal developer tools enhance engineering efficiency by addressing frequent, cross-team pain points that consume time and incur risks. Successful tools should be fast, predictable, self-service, integrated, and owned. Key ideas include local development bootstrappers, deploy tools, and secret management workflows. Avoid building full-time products from scratch unless necessary.

Clean code

Writing maintainable, readable code is an essential skill for software engineers. Not only does it make it easier to maintain and debug existing code, but it also improves collaboration and productivity within teams. Here are some top tips for writing… Read More ›

VS Code Prelaunch Tasks

To create a prelaunch task in Visual Studio Code, follow these steps: { “version”: “2.0.0”, “tasks”: [ { “label”: “build”, “type”: “shell”, “command”: “gulp build”, “isBackground”: true, “problemMatcher”: [] } ] } { “version”: “0.2.0”, “configurations”: [ { “type”: “node”,… Read More ›