This file contains 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
sleep_times=('4' '1' '2' '5' '0') | |
pids=() | |
for sleep_time in ${sleep_times[@]} | |
do | |
sleep $sleep_time & | |
pids=(${pids[@]} $!) | |
done | |
for pid in ${pids[@]} |
This file contains 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
# Ad-hoc | |
xrandr --newmode 1920x1080 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync | |
xrandr --addmode VBOX0 1920x1080 | |
xrandr --output VBOX0 --mode 1920x1080 | |
# Or in ~/.i3/config | |
# exec_always xrandr --newmode 1920x1080 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync | |
# exec_always xrandr --addmode VBOX0 1920x1080 | |
# exec_always xrandr --output VBOX0 --mode 1920x1080 |
This file contains 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
git checkout another | |
git rebase side | |
git rebase bugFix | |
git rebase master | |
git checkout master | |
git rebase another |
This file contains 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
All Autocomplete | |
CoffeeScript | |
DocBlockr | |
Markdown Preview | |
Package Control | |
Sass | |
SideBarEnhancements | |
SublimeCodeIntel | |
SublimeLinter | |
SyncedSideBar |
This file contains 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
Show hidden characters
[ | |
{ "keys": ["ctrl+d"], "command": "duplicate_line" }, | |
{ "keys": ["ctrl+shift+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys" : ["ctrl+shift+down"], "command" : "swap_line_down"}, | |
{ "keys" : ["ctrl+shift+up"], "command" : "swap_line_up"}, | |
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" }, | |
{ "keys": ["ctrl+s"], "command": "save_all" }, | |
{ "keys": ["ctrl+shift+w"], "command": "close_all" } | |
] |
This file contains 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
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://gist.githubusercontent.com/wildlyinaccurate/5539084/raw/hack.sh | sh | |
# |
This file contains 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 | |
PIDFILE=".watch.pid" | |
touch $PIDFILE || (echo "Unable to write to .watch.pid" && exit 1) | |
# Kill off old processes | |
while read pid; do | |
kill $pid | |
done < $PIDFILE |
This file contains 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
# This requires GNU sed (or any sed which supports -i) and expand | |
find . -type f -printf "sed -i 's/[ \t]*$//' %p && expand -t 4 %p > %p.tmp && mv %p.tmp %p\n" | sh | |
# It's better to be more specific about which files you want to run the replacement in, e.g. | |
find . -type f -name *.php -printf "sed -i 's/[ \t]*$//' %p && expand -t 4 %p > %p.tmp && mv %p.tmp %p\n" | sh | |
# You can use find's -regex option to match multiple extensions (you need to double-escape backslashes in bash): | |
find . -type f -regex .+\\\.\\\(php\\\|css\\\|js\\\)\$ -printf "sed -i 's/[ \t]*$//' %p && expand -t 4 %p > %p.tmp && mv %p.tmp %p\n" | sh |
This file contains 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
{ | |
"theme": "Soda Dark.sublime-theme", | |
"color_scheme": "Packages/Theme - Refined/Color Schemes/Monokai Refined.tmTheme", | |
"font_face": "Droid Sans Mono", | |
"font_size": 12, | |
"font_options": ["no_italic"], | |
"highlight_line": true, | |
"line_padding_top": 3, | |
"line_padding_bottom": 3, |
This file contains 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
=begin | |
This script will replay an Apache log file and verify whether each request | |
is cacheable by Akamai. | |
To run the script, provide the log file and your Akamai origin host name as | |
arguments, for example: | |
replayer.rb /var/log/apache/access.log http://dsd-www.example.com.edgesuite-staging.net | |
=end | |
require 'net/http' |