Skip to content

Instantly share code, notes, and snippets.

View gvn's full-sized avatar
🥀
technopagan is the term

Gavin Suntop gvn

🥀
technopagan is the term
View GitHub Profile
@cadecairos
cadecairos / docker-compose.yml
Last active November 19, 2015 22:18
Instant Webmaker API+ID+LOGINAPI services using Docker Compose
webmaker:
image: cade/webmaker-api:latest
env_file: compose.webmaker.env
net: "host"
id:
image: cade/webmaker-id:latest
env_file: compose.id.env
net: "host"
loginapi:
image: cade/legacy-webmaker-login:latest
@grantland
grantland / AGB-001_Light_Mod.md
Last active January 25, 2023 15:12
AGB-001 Front/Backlight Mod Instructions

AGB-001 Front/Backlight Mod Instructions

AGB-001 Backlight Mod

Requirements

  • AGB-001
  • ASS101 screen
@k88hudson
k88hudson / gist:16e0b6a720f33e1f7c3e
Last active August 29, 2015 14:23
Webmaker Android intl QA

Sign up

  • open the app (or log out from the 'MAKE' tab, if already signed in)
  • make sure you are on the screen that says the equivalent of "Join Webmaker" on the button at the bottom
  • tap the "Terms" and "Privacy Policy" links at the very bottom
  • enter an invalid username by adding a @ in the Username field, check the error message you see
  • change to a valid username
  • start typing an email address, check the message you see
  • start typing a password, check the message you see
  • press 'Join Webmaker'
@thisandagain
thisandagain / .aliases
Created February 12, 2015 02:23
ADB Aliases
alias devices='adb devices'
alias logcat='adb logcat CordovaLog:D *:S'
alias forward='adb forward tcp:6000 localfilesystem:/data/local/debugger-socket'

Stealing WiFi

/etc/hosts

This will let you access any google owned site. This includes: youtube, google cache, google translate, google search, gmail, google news, etc.

  • Install the HTTPS Everywhere extension
  • Add these rules to your /etc/hosts file
@aaronbronow
aaronbronow / .vimrc
Last active May 25, 2018 05:48
My vimrc
execute pathogen#infect()
syntax on
filetype plugin indent on
filetype plugin on
"let g:NERDTreeDirArrows=0
let g:NERDTreeDirArrowExpandable="+"
let g:NERDTreeDirArrowCollapsible="~"
"set encoding=utf-8
" set tabs to spaces
@L422Y
L422Y / osx_automount_nfs.md
Last active March 22, 2024 13:44
Automounting NFS share in OS X into /Volumes

I have spent quite a bit of time figuring out automounts of NFS shares in OS X...

Somewhere along the line, Apple decided allowing mounts directly into /Volumes should not be possible:

/etc/auto_master (see last line):

#
# Automounter master map
#

+auto_master # Use directory service

@cemckinley
cemckinley / html5-video-fun.md
Created August 6, 2013 23:38
A list of findings/issues for HTML5 video, updated when I have time. Last updated: 8/6/13

##HTML5 Video Fun

Implementing cross-platform HTML5 video is actually less fun than you think.

Summary Resources

The following are good resources for general HTML5 Video info:

@austinhappel
austinhappel / convertAudio.sh
Last active May 14, 2021 15:50
Converts wav, ogg, mp3 to al html5-friendly formats: wav, ogg, mp3. Requires ffmpeg to be installed globally and available via `ffmpeg`.
#!/bin/bash
printf "This baby converts your folder of .wav, .ogg, and .mp3 files into all the formats needed for HTML5 audio!\n\n"
printf "Usage: cd /folder/to/files && sh path/to/convertAudio.sh\n\n"
printf "Defaults to 128k bitrate.\n\n"
echo "Choose what format are your files in:"
echo "1) wav"
echo "2) ogg"
echo "3) mp3"
@brettz9
brettz9 / navigator.language.js
Last active January 3, 2019 17:19
navigator.language
// Defined: http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#navigatorlanguage
// with allowable values at http://www.ietf.org/rfc/bcp/bcp47.txt
// Note that the HTML spec suggests that anonymizing services return "en-US" by default for
// user privacy (so your app may wish to provide a means of changing the locale)
navigator.language = navigator.language ||
// IE 10 in IE8 mode on Windows 7 uses upper-case in
// navigator.userLanguage country codes but per
// http://msdn.microsoft.com/en-us/library/ie/ms533052.aspx (via
// http://msdn.microsoft.com/en-us/library/ie/ms534713.aspx), they
// appear to be in lower case, so we bring them into harmony with navigator.language.