This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "", | |
"preferGlobal": false, | |
"version": "0.0.1", | |
"author": "Bill Glover <[email protected]>", | |
"description": "", | |
"contributors": [ | |
{ | |
"name": "Bill Glover", | |
"email": "[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync | |
xrandr --addmode VBOX0 1368x768_60.00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export EDITOR=vim | |
GREEN="\[\e[0;32m\]" | |
BLUE="\[\e[0;34m\]" | |
RED="\[\e[0;31m\]" | |
YELLOW="\[\e[0;33m\]" | |
COLOREND="\[\e[00m\]" | |
# Aliases | |
alias c='clear' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mogrify -path ./output -distort barrel '0.06335 -0.18432 -0.10618' ./*.JPG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -pattern_type glob -framerate 30 -i '*.JPG' -s:v 1920x1080 -profile:v high -crf 18 -pix_fmt yuv420p -r 30 -movflags faststart -bf 2 -g 15 -shortest youtube.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://chinesepod.com/oauth/request_token | |
http://chinesepod.com/oauth/authorize?oauth_token=1cd233ac7212009a199be7e7b25a605a | |
http://chinesepod.com/oauth/authorize/1cd233ac7212009a199be7e7b25a605a | |
http://chinesepod.com/oauth/authorize/1cd233ac7212009a199be7e7b25a605a/1 | |
http://chinesepod.com/oauth/access_token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://chinesepod.com/api/course/getUserCourses?count=10&page=0&lastitem=0&format=json | |
http://chinesepod.com/api/lesson/getUserLessons?status=active&service=lesson&count=20&page=0&lastitem=0&format=json | |
http://chinesepod.com/api/lesson/getLesson?format=json&id=1796 | |
http://chinesepod.com/api/lesson/getLesson?format=json&id=1794 | |
http://chinesepod.com/api/tool/getFlashcard?format=json&count=100000 | |
http://chinesepod.com/api/user/logout-for-iphone?a_token=4f405fd2cb805e09898066d056419cf2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
#SingleInstance, force | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
; Ctrl + Alt + Left = previous track | |
^!Left::Media_Prev | |
; Ctrl + Alt + Right = next track | |
^!Right::Media_Next |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance, force | |
#NoEnv | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
#MaxHotkeysPerInterval 350 | |
WheelUp:: | |
Send {WheelDown} | |
Return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
#SingleInstance, force | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
; AppsKey + v - paste plain text | |
AppsKey & v:: | |
TempText := ClipBoard | |
If (TempText != "") | |
PutText(ClipBoard) |
OlderNewer