Skip to content

Instantly share code, notes, and snippets.

View AzureKitsune's full-sized avatar

Alex AzureKitsune

  • 06:30 (UTC -05:00)
View GitHub Profile
@browserdotsys
browserdotsys / corsair_jpeg_util.py
Created May 21, 2023 18:15
Small util to display JPEGs on a Corsair iCUE H150i ELITE LCD display
#!/usr/bin/env python3
import pyshark
from dataclasses import dataclass
import argparse
import hid
import time
VID = 0x1b1c # Corsair
PID = 0x0c39 # Corsair LCD Cap for Elite Capellix coolers

Ultimate Beginner's Guide to Proxmox GPU Passthrough

mirror of The Ultimate Beginner's Guide to GPU Passthrough (Proxmox, Windows 10) by /u/cjalas

>Welcome all, to the first installment of my Idiot Friendly tutorial series! I'll be guiding you through the process of configuring GPU Passthrough for your Proxmox Virtual Machine Guests. This guide is aimed at beginners to virtualization, particularly for Proxmox users. It is intended as an overall guide for passing through a GPU (or multiple GPUs) to your Virtual Machine(s). It is not intended as an all-exhaustive how-to guide; however, I will do my best to provide you with all the necessary resources and sources for the passthrough process, from start to finish. If something doesn't work properly, please check /r/Proxmox, /r/Homelab, /r/VFIO, or

@finity69x2
finity69x2 / nws_wx_alert_rest.txt
Last active November 9, 2022 00:06
Home Assistant Configuration for Adding Weather Alerts from the US NWS using a REST Sensor
This will allow several functions including a persistent pop-up notification on your HA front end, a notification to whichever notify service you use (I’m using Pushbullet in this example), and, if you use another custom component (https://community.home-assistant.io/t/echo-devices-alexa-as-media-player-testers-needed/58639), it will also trigger an announcement to all of your Echo devices.
You next need to find either your NWS Zone ID or County ID. It is better to use both ID's here.
You can find your Zone or County ID by going to https://alerts.weather.gov/, scroll down to your state and click on the “zone list” and/or "county list" then look for the entry for your county.
Once you have your desired ID you create a sensor, replacing my id (INZ009, INC033) with yours. The ID is case sensitive!
Then when you have your ID's, enter them into the configuration below.
@bgauduch
bgauduch / multiple-repository-and-identities-git-configuration.md
Last active July 17, 2024 12:57
Git config with multiple identities and multiple repositories

Setup multiple git identities & git user informations

/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉

Setup multiple git ssh identities for git

  • Generate your SSH keys as per your git provider documentation.
  • Add each public SSH keys to your git providers acounts.
  • In your ~/.ssh/config, set each ssh key for each repository as in this exemple:
@matthewzring
matthewzring / markdown-text-101.md
Last active July 22, 2024 02:03
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

@robmikh
robmikh / MainPage Excerpt
Created April 6, 2016 02:18
Using the InvertEffect with Windows.UI.Composition
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
InitComposition();
}
//
@aheadley
aheadley / rb1.md
Last active September 18, 2020 23:34
Hyperdimension Neptunia Rebirth: Item Locations

Rebirth 1 (no DLC)

Name HP Drops XP Credits
Virtua Forest --- --- --- ---
Dogoo 666 [Dogoo Jelly] 2 1
Tulip 700 [Yellow Petal] 3 4
Dogoo-Man 850 [Dogoo-Man Jelly] 5 5
Boxer-X 1216 [Boxer-X Soul] 8 12
Monster Cave --- --- --- ---
@ePirat
ePirat / spec.md
Last active June 30, 2024 17:00
Icecast Protocol specification

Icecast protocol specification

What is the Icecast protocol?

When speaking of the Icecast protocol here, actually it's just the HTTP protocol, and this document will explain further how source clients need to send data to Icecast.

HTTP PUT based protocol

Since Icecast version 2.4.0 there is support for the standard HTTP PUT method. The mountpoint to which to send the data is specified by the URL path.

@ceee
ceee / AudioBackgroundTask.cs
Created July 17, 2014 15:42
Memory efficient TTS background audio in WinRT
using Newtonsoft.Json;
using Poki.Utilities;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Xml.Linq;