<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Posts on a blog</title>
    <link>https://blog.rldn.net/posts/</link>
    <description>Recent content in Posts on a blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 14 Dec 2024 02:50:02 -0500</lastBuildDate><atom:link href="https://blog.rldn.net/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Nixos Always Latest V2</title>
      <link>https://blog.rldn.net/posts/nixos-always-latest-v2/</link>
      <pubDate>Sat, 14 Dec 2024 02:50:02 -0500</pubDate>
      
      <guid>https://blog.rldn.net/posts/nixos-always-latest-v2/</guid>
      <description>Another day another prusa-slicer update. This is a more complex example of overriding a nixos package. at both the attribute, and override level. Showing you can run anything on nix. Including old old old curl so that prusa-slicer can use it properly.
 mog_prusa-slicer = (pkgs.prusa-slicer.overrideAttrs (old: rec {  version = &amp;#34;2.9.0-beta1&amp;#34;;  src = pkgs.fetchFromGitHub {  owner = &amp;#34;prusa3d&amp;#34;;  repo = &amp;#34;PrusaSlicer&amp;#34;; # hash = lib.fakeHash;  hash = &amp;#34;sha256-2QbSeOHBQDrfsNOq1SjhmhyMSRyhPTMew7MNC1P1cRk=&amp;#34;;  rev = &amp;#34;version_${version}&amp;#34;;  };   buildInputs = old.</description>
    </item>
    
    <item>
      <title>Prusa Out of Filament</title>
      <link>https://blog.rldn.net/posts/prusa_out_of_filament/</link>
      <pubDate>Mon, 09 Dec 2024 17:04:30 -0500</pubDate>
      
      <guid>https://blog.rldn.net/posts/prusa_out_of_filament/</guid>
      <description>Prusa XL printer does not issue an alert to octoprint when the filament sensor goes off. It will just beep and beep as it sits and waits for me to come and reload the filament. This has lead me to some failed prints and juge slow down.
I use octoprint and home assistant to manage my printer. Octoprint has a great plugin for mqtt that shoots over positionUpdates to home assistant.</description>
    </item>
    
    <item>
      <title>Radicle Utils</title>
      <link>https://blog.rldn.net/posts/radicle-utils/</link>
      <pubDate>Thu, 21 Nov 2024 23:08:45 -0500</pubDate>
      
      <guid>https://blog.rldn.net/posts/radicle-utils/</guid>
      <description>I have been playing with radicle which is a decentralized git forge. I was able to set up my own ci and artifact storage that I think works well into it. It now replicates my complete github flow I used beforehand. The project is still very alpha but I would highly reccomend it. I made a repo radicle-utils this has all my customizations and hacks to make things work.</description>
    </item>
    
    <item>
      <title>Hugo OLD</title>
      <link>https://blog.rldn.net/posts/hugo_old/</link>
      <pubDate>Mon, 18 Nov 2024 07:08:13 -0500</pubDate>
      
      <guid>https://blog.rldn.net/posts/hugo_old/</guid>
      <description>The theme I use is incompatible with latest version of hugo. In most distributions this would be very frustrating. In Nixos its as easy as
~/.bin/hugo_old
#!/usr/bin/env bash nix run github:NixOS/nixpkgs/nixos-22.05#hugo -- $* and now I can run a very old version of the software without having to deprecate anything else.</description>
    </item>
    
    <item>
      <title>Radicle: Distributed Git Forge</title>
      <link>https://blog.rldn.net/posts/radicle/</link>
      <pubDate>Mon, 18 Nov 2024 06:59:29 -0500</pubDate>
      
      <guid>https://blog.rldn.net/posts/radicle/</guid>
      <description>radicle Radicle is a decentralized git forge. It is still very new as you can see from what I had to do to get it running but I am hopeful it could eventually replace github at least for me. my node is here radicle I am still working on the best way to house artifacts, but the ci is running and running with devbox support so easy to have standard reproducable environments.</description>
    </item>
    
    <item>
      <title>Home Assistant Auth</title>
      <link>https://blog.rldn.net/posts/home-assistant-auth/</link>
      <pubDate>Sat, 06 Jan 2024 19:06:09 -0500</pubDate>
      
      <guid>https://blog.rldn.net/posts/home-assistant-auth/</guid>
      <description>I have recently fallen in love with Authelia and using it with ldap to be my soul source of authentication across all my apps. Getting AudioBookshelf, using oidc, and Jellyfin , using ldap directly where not that difficult.
However Home-Assistant seemed to be a bit more difficult. I found this post which made me think it would be a complete dead end. I then found hass-auth-header which seemeed to work well, except it does not seem to work with the mobile clients.</description>
    </item>
    
    <item>
      <title>Gnome Console set max buffer length</title>
      <link>https://blog.rldn.net/posts/gnome-console-longer/</link>
      <pubDate>Thu, 21 Sep 2023 00:36:20 -0400</pubDate>
      
      <guid>https://blog.rldn.net/posts/gnome-console-longer/</guid>
      <description>Gnome Console no longer easily let&amp;rsquo;s you set a longer scroll buffer. It&amp;rsquo;s default length is just 10,000 lines which can be lacking at times. You can still configure it via gsettings though
gsettings set org.gnome.Console scrollback-lines 9223372036854775807 set its to the max it can be as its an int64 number.</description>
    </item>
    
    <item>
      <title>Nixos Always Latest</title>
      <link>https://blog.rldn.net/posts/nixos-always-latest/</link>
      <pubDate>Tue, 05 Sep 2023 03:31:35 -0400</pubDate>
      
      <guid>https://blog.rldn.net/posts/nixos-always-latest/</guid>
      <description>Nixos often has the latest versions of packages. Especially if you pull from unstable or directly from github, but there are times when the most bleeding edge of software has not been packaged yet. Nix does provide an easy fix though. For example I want to run the latest version of prusa-slicer I can do this easily by doing the following.
let  mog_prusa-slicer = pkgs.unstable.prusa-slicer.overrideAttrs (oldAttrs: rec {  version = &amp;#34;2.</description>
    </item>
    
    <item>
      <title>Nixos debian backup</title>
      <link>https://blog.rldn.net/posts/nixos-nspawn/</link>
      <pubDate>Sat, 02 Sep 2023 22:39:28 -0400</pubDate>
      
      <guid>https://blog.rldn.net/posts/nixos-nspawn/</guid>
      <description>Often it is helpful to have a non nix environment to test things in, my go to choice is debian. this is my config. it just starts a debian instance via nspawn so its very fast.
First get the image and their public key from here hub nspawn
sudo sudo gpg --no-default-keyring \  --keyserver=keys.openpgp.org \  --keyring=/etc/systemd/import-pubring.gpg \  --search 9E31BD4963FC2D19815FA7180E2A1E4B25A425F6  sudo machinectl pull-tar \  --verify=signature \   https://hub.</description>
    </item>
    
    <item>
      <title>First Post</title>
      <link>https://blog.rldn.net/posts/first-post/</link>
      <pubDate>Sun, 27 Aug 2023 23:25:56 -0400</pubDate>
      
      <guid>https://blog.rldn.net/posts/first-post/</guid>
      <description>Hello world! Starting a blog up again in a goal of not being so lame.</description>
    </item>
    
  </channel>
</rss>
