You are here |
sam.hooke.me | ||
| | | |
tjvantoll.com
|
|
| | | | LESS is a CSS pre-processor written in JavaScript. Unlike its main competitor SASS, it has the ability to run both on the client side via a simple | |
| | | |
gauge.sh
|
|
| | | | Statically detect missing 3rd party dependencies Gauge is solving the monolith/microservices dilemma. We're building tools to untangle codebases through incremental modularization. Our open-source toolkit supports defining and enforcing rules for interfaces and dependencies. By focusing on high cohesion and loose coupling, you can unlock a codebase that your engineers and AI love to work in. Improve quality and developer velocity at the same time. | |
| | | |
www.brandonpugh.com
|
|
| | | | TLDR: Git hooks are an awesome way to automatically verify your code as you commit your changes I'm sure we've all been there where we accidentally committed a change that we were supposed to undo or wasn't ready to be pushed and don't realize it until the build breaks or QA finds a bug. The first step I take to avoid committing anything unintentionally is instead of just running git add -A I make sure to review all the changes in the files I'm potentially committing. This is where a graphical tool like Gitk or SmartGit comes in handy as they allow you to click on your modified files and easily view a diff and then select which changes to stage. Unfortunately changes still slip through as happened to me yesterday when a change of mine got pushed all the way to Test before it was noticed. This led me to create an additional safety net. | |
| | | |
jessitron.com
|
|
| | This post builds on the excellent tutorial from Tania Rascia: Create and Deploy a Node.js, Express, & PostgreSQL REST API. I want to build a little web app that can store some data! ...without installing anything new on my computer. Here's how to configure VSCode Remote Containers to do that. Installed on my machine: DockerVSCodeVSCode... |