Articles in the Software category

  1. The Rise of Serverless Architecture: Benefits and Challenges

    Posted on in Software

    Serverless architecture has become a game-changer in the world of software development and cloud computing. By abstracting away server management, serverless architecture allows developers to focus on writing code without worrying about the underlying infrastructure. This article explores the benefits and challenges of serverless architecture, providing insights into why it …

  2. Microservices Architecture: Benefits and Challenges

    Posted on in Software

    Microservices architecture has emerged as a popular approach to designing and building scalable, flexible, and resilient applications. Unlike traditional monolithic architecture, microservices break down an application into smaller, loosely coupled services that can be developed, deployed, and scaled independently. This article will delve into the benefits and challenges of microservices …

  3. Quick and Efficient Subversion Repository Setup with SSH

    Posted on in Software

    Setting up a Subversion (SVN) repository can be streamlined by using SSH, especially when developers already have system accounts. This method bypasses the complexity of setting up WebDAV with Apache.

    Steps to Set Up Subversion with SSH

    1. Create the Repository:

      sudo svnadmin create /var/svn
      

      This command initializes a new …

  4. Disabling Wordpress

    Posted on in Software

    A brief migration announcement explaining why the site moved from WordPress to Pelican.

  5. Implementing 'git show' in Mercurial

    Posted on in Software

    One of my frequently used git commands is 'git show <rev>'. As in, "show me what the heck this guy did here." Unfortunately, Mercurial doesn't have the same command, but it's easy enough to implement it using an alias in your .hgrc.

    The command you would run from the command …

  6. Getting Started With Pelican

    Posted on in Software

    I've been using WordPress on this site since 2007. After all this time, I've decided I want to try something new. So, I've decided to go in a completely different direction and start serving static content. There are three things driving my decision to change:

    • The existing site is really …
  7. Mutt: Deleting Messages Older Than 30 Days

    Posted on in Software

    I tend to clear out large chunks of email all at once. The most common thing I do is clear out all mail older than 30 days.

    In mutt do the following:

    1. Shift-D to delete messages matching a pattern. This will return a prompt that says Delete messages matching:.
    2. ~d …
  8. Google Chrome Stuck Overseas

    Posted on in Software

    I recently spent six weeks in Sydney working for my new job. Naturally, while I was there, I let Google Chrome's omnibox redirect my searches to Google Australia. Fast forward a few weeks, and I'm back in the States, but Chrome is living in the past. After trying just about …

  9. Mutt: Tagging Messages Based on Message ID

    Posted on in Software

    I recently needed to tag the first 5,389 messages in a mailbox using Mutt. This is much easier than you might think.

    1. shift-t - By default, the command to tag messages based on a pattern is bound to shift-t. If you've changed this in your muttrc, use whatever you've bound …
  10. Comments in .vimrc

    Posted on in Software

    If you need to comment something out of your .vimrc, start the line with a double quote (").

    "autocmd BufRead *.xml :source ~/.vimrc.xml
    

    It's embarrassing to admit how long it takes to find the answer to that question.

Slaptijack's Koding Kraken