Skip to content

Instantly share code, notes, and snippets.

View imlinus's full-sized avatar

Linus imlinus

  • bitwise
  • Sweden
  • 23:13 (UTC +02:00)
View GitHub Profile
@crazy-max
crazy-max / Caddy.env
Last active February 19, 2024 13:23
Proxmox web interface through Caddy as reverse proxy with Let's Encrypt
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_HOSTED_ZONE_ID=

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

@AdamHjerpe
AdamHjerpe / _flatuicolors.scss
Created October 17, 2013 21:35
All the colors from flatuicolors.com put into variables with RGBA default and HEX fallback.
//////////////////////////////////////////////////////
// All colors courtesy of http://flatuicolors.com/ //
// Colors can be seen at that url too :) //
// Order goes: Light color first, darker second //
//////////////////////////////////////////////////////
// Green-Blue
$turquoise: #1abc9c rgba(26, 188, 156,1.0);
$green-sea: #16a085 rgba(22, 160, 133,1.0);
// Green
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream