Skip to content

Instantly share code, notes, and snippets.

View CampAsAChamp's full-sized avatar
💻

Nick Schneider CampAsAChamp

💻
View GitHub Profile
Steps:
1. Install driver from http://zadig.akeo.ie/
a. Note that you want the device in boot loader mode (fn+k is default)
b. also note that you want to select libusb-win32 (vx.x.x.x)
2. That will install the drivers
3. Next download https://github.com/qmk/qmk_toolbox/releases
4. Go build the keyboard layout like you would from the README.md : https://github.com/qmk/qmk_firmware/tree/master/keyboards/xd75
5. Take your .hex file and put that into local file text box.
6. The microcontroller should be atmega32u4
@nicinabox
nicinabox / lets split build guide.md
Last active January 28, 2023 04:10
This guide covers building a Let's Split v2.

This guide has moved

To improve collaboration this guide is now available on GitHub.

Continue reading

@muammar
muammar / getFirafonts.sh
Created May 23, 2016 08:41
Download and install Fira fonts in Linux or Mac OS X
#!/bin/bash
## cf from http://programster.blogspot.com/2014/05/ubuntu-14-desktop-install-fira-sans-and.html
cd /tmp
# install unzip just in case the user doesn't already have it.
if [[ `uname` = Linux ]]; then
sudo apt-get install unzip -y
wget "http://www.carrois.com/downloads/fira_4_1/FiraFonts4106.zip"
@xPaw
xPaw / steam_quick_queue.user.js
Last active November 21, 2023 00:15
⚠ This script has been integrated into SteamDB browser extension!
// ==UserScript==
// @name Steam Queue Auto Discoverer
// @description Discover the Steam queue three times to get the sale cards
// @version 2.3.0
// @namespace https://gist.github.com/xPaw/73f8ae2031b4e528abf7
// @icon https://store.steampowered.com/favicon.ico
// @match https://store.steampowered.com/explore*
// @grant none
// ==/UserScript==
$LShift::
$RShift::
Key := SubStr(A_ThisHotkey,2)
Send, {%Key% Down}
KeyWait, %Key%
Send, {%Key% Up}
If ( A_PriorHotkey == A_ThisHotkey )
SendRaw, % InStr(Key,"L") ? "(" : ")"
Return
@ofca
ofca / gist:1712605
Created January 31, 2012 20:06
AutoHotKey script which allow using i, j, k, l as arrows keys when CapsLock in on.
; ----------------------------------------------------------------------------
; j,k,l,i = arrows
; ----------------------------------------------------------------------------
$j::
GetKeyState, state, CapsLock, T ; D if CapsLock is ON or U otherwise.
if state = D
Send {Left}
else