<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Software on Technical Notes</title><link>http://luispa.com/en/tags/software/</link><description>Recent content in Software on Technical Notes</description><generator>Hugo -- 0.148.0</generator><language>en-US</language><lastBuildDate>Sat, 28 Sep 2024 00:00:00 +0000</lastBuildDate><atom:link href="http://luispa.com/en/tags/software/index.xml" rel="self" type="application/rss+xml"/><item><title>CRLF vs LF</title><link>http://luispa.com/en/posts/2024-09-28-crlf-vs-lf/</link><pubDate>Sat, 28 Sep 2024 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2024-09-28-crlf-vs-lf/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-crlf.svg" alt="CRLF Logo" width="150px" style="float:left; padding-right:25px" />
&lt;p>When working in software development, one of the most subtle yet crucial aspects you need to be aware of is the difference between line endings in text files between Windows (CRLF &lt;code>\r\n&lt;/code>) and Linux/MacOS (LF &lt;code>\n&lt;/code>).&lt;/p>
&lt;p>This small detail can cause big problems if not handled correctly, especially when working in mixed environments &amp;ndash; &lt;strong>version control conflicts&lt;/strong>, &lt;strong>script incompatibilities&lt;/strong>, &lt;strong>compilation or execution issues&lt;/strong>. I wrote this post to have a handy reference for dealing with this topic, including a few tricks.&lt;/p>
&lt;br clear="left"/></description></item><item><title>Git Multi-Account</title><link>http://luispa.com/en/posts/2024-09-21-git-multicuenta/</link><pubDate>Sat, 21 Sep 2024 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2024-09-21-git-multicuenta/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-git-multi.svg" alt="GIT multi-account Logo" width="150px" style="float:left; padding-right:25px" />
&lt;p>This post will walk you through the process of setting up and using multiple accounts with one or more Git providers (GitHub, GitLab, Gitea). I describe the two options I recommend: &lt;strong>HTTPS + Git Credential Manager&lt;/strong> and &lt;strong>SSH multi-account&lt;/strong>.&lt;/p>
&lt;p>The first, HTTPS + Git Credential Manager, is the one I use most, because it&amp;rsquo;s compatible with CLI and/or GUI tools like Visual Studio, VSCode, Git Desktop, Gitkraken, etc. The second option, SSH multi-account, I delegate to &amp;ldquo;headless&amp;rdquo; machines, servers I connect to remotely via CLI or VSCode remote that need to clone repositories and work on them.&lt;/p>
&lt;br clear="left"/></description></item><item><title>Home PBX</title><link>http://luispa.com/en/posts/2024-07-13-asterisk/</link><pubDate>Sat, 13 Jul 2024 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2024-07-13-asterisk/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-asterisk.svg" alt="asterisk logo" width="150px" height="150px" style="float:left; padding-right:25px" />
&lt;p>&lt;a href="https://www.asterisk.org/">&lt;code>Asterisk&lt;/code>&lt;/a> is a free software program (under GPL license) that provides PBX (Private Branch Exchange) functionality. You can connect phones to make calls between them within your home (or office) and even access external communications, to the PSTN (like Movistar) or by connecting to a VoIP provider or ISDN links (basic or primary).&lt;/p>
&lt;br clear="left"/></description></item><item><title>Software KVM</title><link>http://luispa.com/en/posts/2024-06-13-kvm/</link><pubDate>Thu, 13 Jun 2024 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2024-06-13-kvm/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-barrier.svg" alt="barrier logo" width="150px" height="150px" style="float:left; padding-right:25px" />
&lt;p>In environments where you need to operate multiple computers simultaneously, efficiency is key. There are several products that mimic the functionality of a KVM switch (Keyboard, Video, Mouse), which historically allowed you to use a single keyboard and mouse to control multiple computers by physically turning a dial. In this post I describe how I install and use Barrier, a software KVM solution, without the need for additional hardware.&lt;/p>
&lt;p>My use case involves controlling three computers with a single keyboard and mouse. Two of them are desktops &amp;ndash; a Mac and a Windows PC. The third is a Windows/Linux laptop. The difficulty lies with the Mac, where I encountered a curious and nearly insurmountable challenge.&lt;/p>
&lt;br clear="left"/></description></item><item><title>Terminals with tmux</title><link>http://luispa.com/en/posts/2024-04-25-tmux/</link><pubDate>Thu, 25 Apr 2024 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2024-04-25-tmux/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-tmux.svg" alt="tmux logo" width="150px" height="150px" style="float:left; padding-right:25px" />
&lt;p>&lt;a href="https://github.com/tmux/tmux/wiki">&lt;code>tmux&lt;/code>&lt;/a> is a terminal multiplexer that allows you to have multiple sessions (shells) in a single window. From your Mac, Linux, or even Windows (with WSL) terminal, in a single window you can have multiple active sessions, switch between them, view them simultaneously, enter one and disconnect (they keep running in the background), and reconnect to it in the future.&lt;/p>
&lt;br clear="left"/></description></item><item><title>Customizing VSCode</title><link>http://luispa.com/en/posts/2023-06-20-vscode/</link><pubDate>Tue, 20 Jun 2023 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2023-06-20-vscode/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-vscode.svg" alt="vscode logo" width="150px" height="150px" style="float:left; padding-right:25px" />
&lt;p>In this post I cover how to customize VSCode. I work with GitHub in a cross-platform, multi-account environment and want to sync my settings, use the same extensions, and leverage licenses. I explain the multi-account topic, synchronization of my global and per-project preferences (settings), and extensions.&lt;/p>
&lt;p>I normally use Windows, Linux, and macOS, and I&amp;rsquo;ve chosen VSCode as my editor/IDE. The goal is to have a unified work experience &amp;ndash; launch VSCode on any operating system, clone a personal or professional project, keeping the same extensions and settings, and even using the options to connect to a host, tunnel, WSL, etc.&lt;/p>
&lt;br clear="left"/></description></item><item><title>Git Cheat Sheet</title><link>http://luispa.com/en/posts/2021-10-10-git-cheatsheet/</link><pubDate>Sun, 10 Oct 2021 00:00:00 +0000</pubDate><guid>http://luispa.com/en/posts/2021-10-10-git-cheatsheet/</guid><description>&lt;img src="http://luispa.com/img/posts/logo-git-cheatsheet.svg" alt="GIT Cheatsheet Logo" width="150px" style="float:left; padding-right:25px" />
&lt;p>This post contains &lt;strong>my GIT cheat sheet&lt;/strong>, various reminders I use as a programmer — common commands or situations. It comes in handy for example when I accidentally delete a file and want to recover it, check a previous version of code, or ignore a modification in a specific file.&lt;/p>
&lt;br clear="left"/></description></item></channel></rss>