News
Git Lab Act 2: Still an Open Book
1+ hour, 5+ min ago (1621+ words) By: Alan Shimel on May 18, 2026 When Git Lab CEO Bill Staples announced "Act 2" a few days ago, most of the headlines focused on the obvious stuff. Layoffs. Restructuring. Geographic pullbacks. AI agents. Efficiency. The usual collection of terms that now…...
source Command in Linux: Usage and Examples
8+ hour, 4+ min ago (1076+ words) Home " Linux Commands " source Command in Linux: Usage and Examples Shell setup files only change your current terminal when the shell reads them in the current process. The source command in Linux is the Bash-friendly way to load variables, aliases,…...
Introducing Agent Note: saving the why behind AI-assisted code in Git
5+ hour, 46+ min ago (1041+ words) Hi, I'm wasabeef. I have been using coding agents such as Claude Code, Codex CLI, Cursor, and Gemini. .. Tagged with agents, ai, git, showdev....
How I shipped my first Git Hub release (and what I learned)
9+ hour, 34+ min ago (465+ words) Software development and I have never really been the best of friends " which is exactly why I avoided going too deep into it for a long time. But as I work towards becoming a junior IT specialist, I've been forcing…...
What I learned opening my first sixty open source pull requests
16+ hour, 58+ min ago (428+ words) The version of this I want to write is the version I wish I'd read at the start. Not "fork the repo, read CONTRIBUTING. md, be respectful," you already know that. The version where I tell you about the things…...
The dot-github Repo Pattern
18+ hour, 13+ min ago (22+ words) A Sneaky (Anti-)Pattern Hides Your Whole Codebase Under One Top-Level Directory If you put. .. Tagged with github, tutorial, showdev, tooling....
Top 10 Sites To B*. +uy Old Github Accounts In 2025-26 (6 Photos)
1+ day, 7+ hour ago (264+ words) Old Git Hub accounts are often discussed in terms of experience, trust, and long-term activity. Many developers consider aged accounts useful because they reflect consistent usage and platform involvement over time. What Are Old Git Hub Accounts? Old Git Hub…...
How I used Claude Code and git worktrees to ship 2 features and fix 3 bugs in one day
1+ day, 22+ hour ago (1020+ words) I want to share an interesting workflow I experimented with recently while working with Claude Code and git worktrees. I had a lot on my plate with deadlines approaching. I had to fix 3 bugs and complete 2 feature implementations. And it…...
Blocking Secrets Before They Hit the Repository: Building a Pre-Commit Hook With ML
2+ day, 7+ hour ago (1374+ words) here are two places you can catch an exposed secret. After it's in the repository " in a CI/CD pipeline scan, a periodic audit, or a breach notification from a security researcher who found it in your public history. Or…...
30 Linux Commands Every Developer Should Know
2+ day, 10+ hour ago (1079+ words) These are the commands I use every single day on my VPS. File Operations # Find files by name find. -name "*. js" -type f find /var/log -name "*. log" -mtime -7 # Modified in last 7 days # Search file contents grep -r "TODO" src…...