Skip to content

Instantly share code, notes, and snippets.

View Krutonium's full-sized avatar
🎮
Streaming

Krutonium Krutonium

🎮
Streaming
View GitHub Profile
# get current branch in git repo
function parse_git_branch() {
BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ ! "${BRANCH}" == "" ]
then
STAT=`parse_git_dirty`
echo "[${BRANCH}${STAT}]"
else
echo ""
fi

Keybase proof

I hereby claim:

  • I am krutonium on github.
  • I am krutonium (https://keybase.io/krutonium) on keybase.
  • I have a public key ASAGt7rpJTvpoOY5cZBMFeve7cI7WZJjNN4bU6zQG_utWQo

To claim this, I am signing this object:

using System;
using System.IO;
namespace Translator
{
class Program
{
static void Main(string[] args)
{
if(args.Length == 0)
@Krutonium
Krutonium / HelpMe.cs
Created May 16, 2020 06:17
Doors aren't opening.
using Sandbox.Game.EntityComponents;
using Sandbox.ModAPI.Ingame;
using Sandbox.ModAPI.Interfaces;
using SpaceEngineers.Game.ModAPI.Ingame;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System;
using VRage.Collections;
@Krutonium
Krutonium / RebootHitron.cs
Created March 6, 2017 03:47
Simple piece of code to reboot my misbehaving Hitron GCN3 Modem.
using System;
using System.Net;
using System.Net.Http;
namespace RebootModem
{
class MainClass
{
public static void Main(string[] args)
{
@Krutonium
Krutonium / RGB.md
Last active June 16, 2022 22:49
My Adventure with RGB

On 03/03/2021 I discovered that my local dollar store had $4 strips of RGB lights. They could be controlled with an IR remote, similar to an old TV.

I purchased it, and immediately stripped the shrink wrap off the controller. I discovered 2 things from this:

  1. If I want to control the the RGB strip, I'm going to need to remove it
  2. It's actually pretty simple!

1 is because it has no reverse power protection as far as I can tell, so applying power to any of the colors could cause the microcontroller to turn on, and then switch everything to white - Spreading the power based love, as it were. 2 is because the way it works, well, is simple! You supply 5V on one line, and ground the color you want. Presumably you could use somthing akin to PWM to control the intensity.

@Krutonium
Krutonium / README.MD
Created February 24, 2024 02:25
Flake to build a NixOS Gnome ISO that is bCacheFS ready with the latest kernel

Build

nix build .#nixosConfigurations.exampleIso.config.system.build.isoImage Then dd it to your least favorite USB Stick for usage.