Show Git Branch & Status in Bash Prompt
Bash prompt customization for instant Git context
A well-configured bash prompt displaying git repository information can dramatically improve your development workflow.
Bash prompt customization for instant Git context
A well-configured bash prompt displaying git repository information can dramatically improve your development workflow.
Boost SEO with breadcrumb schema and structured data
Breadcrumb navigation combined with proper schema markup is one of the most effective yet underutilized SEO techniques that can significantly improve your website’s search visibility and user experience.
Choosing between Snap and Flatpak for Linux apps
Universal package managers have transformed Linux software distribution, making cross-distribution compatibility a reality. Snap and Flatpak emerged as the leading solutions, each bringing distinct philosophies to solving dependency hell and distribution fragmentation.
Structure your Go projects for scalability and clarity
Structuring a Go project effectively is fundamental to long-term maintainability, team collaboration, and scalability. Unlike frameworks that enforce rigid directory layouts, Go embraces flexibility—but with that freedom comes the responsibility to choose patterns that serve your project’s specific needs.
Python DI patterns for clean, testable code
Dependency injection (DI) is a fundamental design pattern that promotes clean, testable, and maintainable code in Python applications.
How I fixed network problems in Ubuntu
After automatically installing a new kernel, Ubuntu 24.04 has lost the ethernet network. This frustrating issue occurred for me a second time, so I’m documenting the solution here to help others facing the same problem.
Automate Hugo deployment to AWS S3
Deploying a Hugo static site to AWS S3 using the AWS CLI provides a robust, scalable solution for hosting your website. This guide covers the complete deployment process, from initial setup to advanced automation and cache management strategies.
Master DI patterns for testable Go code
Dependency injection (DI) is a fundamental design pattern that promotes clean, testable, and maintainable code in Go applications.
Essential shortcuts and magic commands
Jumpstart the Jupyter Notebook productivity with essential shortcuts, magic commands, and workflow tips that will transform your data science and development experience.
Short post, just noting the price
With this crazy RAM prices volatility, to form and have a better picture, let’s track the RAM price in Australia ourselves first.
Speed up Go tests with parallel execution
Table-driven tests are the idiomatic Go approach for testing multiple scenarios efficiently.
When combined with parallel execution using t.Parallel(), you can dramatically reduce test suite runtime, especially for I/O-bound operations.
Build AI search agents with Python and Ollama
Ollama’s Python library now includes native OLlama web search capabilities. With just a few lines of code, you can augment your local LLMs with real-time information from the web, reducing hallucinations and improving accuracy.
Pick the right vector DB for your RAG stack
Choosing the right vector store can make or break your RAG application’s performance, cost, and scalability. This comprehensive comparison covers the most popular options in 2024-2025.
Build AI search agents with Go and Ollama
Ollama’s Web Search API lets you augment local LLMs with real-time web information. This guide shows you how to implement web search capabilities in Go, from simple API calls to full-featured search agents.
RAM prices surge 163-619% as AI demand strains supply
The memory market is experiencing unprecedented price volatility in late 2025, with RAM prices surging dramatically across all segments.
Auto-generate OpenAPI docs from code annotations
API documentation is crucial for any modern application, and for Go APIs Swagger (OpenAPI) has become the industry standard. For Go developers, swaggo provides an elegant solution to generate comprehensive API documentation directly from code annotations.