Skip to content

Instantly share code, notes, and snippets.

View msz's full-sized avatar
⚗️
doing a̶̭͐̆͜l̷̡̧̟͚͊́̇̂ć̵̪̋̈́h̶͙̥͎̓́ȩ̷̪̈́̽̏m̴̢̥͇͒͗͜ÿ̴̪́͐

Michał Szewczak msz

⚗️
doing a̶̭͐̆͜l̷̡̧̟͚͊́̇̂ć̵̪̋̈́h̶͙̥͎̓́ȩ̷̪̈́̽̏m̴̢̥͇͒͗͜ÿ̴̪́͐
View GitHub Profile
@onebytegone
onebytegone / teensy-nkro.md
Created September 19, 2019 21:22
Patch teensyduino for NKRO on Teensy 3.2

Patching teensyduino to support NKRO for Teensy 3.2

  1. Install Arduino IDE

  2. Install teensyduino using its installer

  3. Run the following:

    cd /Applications/Arduino.app/Contents/Java/hardware/teensy
    git init
    git add -A
    
#!/usr/bin/env bash
# Original Source: http://blog.nonuby.com/blog/2012/07/05/copying-env-vars-from-one-heroku-app-to-another/
## Usage: heroku_env_copy [options] SOURCE TARGET
##
## NOTE: This script will only output the command, you should run it yourself.
##
## Options:
## -h, --help Display this message.
##
@sneal
sneal / configure-winrm.ps1
Last active May 13, 2023 15:04
Configure WinRM for Vagrant
netsh advfirewall firewall set rule group="remote administration" new enable=yes
netsh advfirewall firewall add rule name="Open Port 5985" dir=in action=allow protocol=TCP localport=5985
winrm quickconfig -q
winrm quickconfig -transport:http
winrm set winrm/config '@{MaxTimeoutms="7200000"}'
winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="0"}'
winrm set winrm/config/winrs '@{MaxProcessesPerShell="0"}'
winrm set winrm/config/winrs '@{MaxShellsPerUser="0"}'
winrm set winrm/config/service '@{AllowUnencrypted="true"}'