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/sh | |
# /etc/ppp/ip-up example script | |
# must have 0755 permissions | |
# must be owned by root | |
/sbin/route add -net 192.168.50 -interface $1 |
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
$ git config --global alias.branch-hof '!git for-each-ref --shell --format="printf '\''%%30s %%40s %%25s\n'\'' %(authorname) %(refname:short) %(committerdate:relative)" --sort=committerdate refs/remotes/origin | sh' |
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
if (window.history && history.replaceState && (location.search.match(/utm_/) || location.hash.match(/utm_/))) { | |
search = location.search.replace(/(\?|\&)?utm_[a-z]+=[^\&]+/g, '') | |
hash = location.hash.replace(/(#|\&)?utm_[a-z]+=[^\&]+/g, '') | |
history.replaceState({}, '', location.pathname + search + hash); | |
} |
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/sh | |
# exit the script if any statement returns a non-true return value | |
set -e | |
# exit the script on dereferencing uninitialised variables | |
set -o nounset | |
self=$(basename $0) | |
origin=$(cd "$(dirname "$0")"; pwd) |
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
[alias] | |
plog = log --graph --pretty=format:'%Cred%h%Creset %C(cyan)%an%Creset %C(yellow)%d%Creset %s %C(green)(%cr)%Creset' --abbrev-commit |
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
#include "PackedArray.h" | |
#include <assert.h> | |
void __PackedArray_pack_1(uint32_t* __restrict out, uint32_t offset, const uint32_t* __restrict in, uint32_t count) | |
{ | |
uint32_t startBit; | |
uint32_t packed; | |
const uint32_t* __restrict end; |
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
def compass_sass_engine_options | |
fail "configuring Compass with 'relative_assets = true' doesn't make much sense in the context of nanoc" if Compass.configuration.relative_assets? | |
options = Compass.sass_engine_options | |
options[:load_paths].each do |x| | |
class << x | |
alias _inspect inspect | |
def inspect | |
_inspect.gsub(/:0x\h+/, '') |
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
" -- tabular settings ---------------------------------------------------------- | |
nnoremap <silent> <Leader>a= :Tabularize /=<CR> | |
vnoremap <silent> <Leader>a= :Tabularize /=<CR> | |
nnoremap <silent> <Leader>a: :Tabularize /:\zs<CR> | |
vnoremap <silent> <Leader>a: :Tabularize /:\zs<CR> | |
" auto align on pipes | |
inoremap <silent> <Bar> <Bar><Esc>:call <SID>pipe_align()<CR>a | |
function! s:pipe_align() |
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
#ifdef _WIN32 | |
int stfuHook(int, char*, int* returnValue) | |
{ | |
if (returnValue) | |
*returnValue = 0; | |
return true; | |
} | |
#endif |
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
/Wall /we4013 /wd4820 /we4289 /wd4342 /wd4347 /wd4514 /we4545 /we4546 /we4547 /we4548 /we4549 /we4619 /we4623 /we4625 /we4626 /wd4710 /we4836 /we4905 /we4906 /we4928 /we4946 /wd4986 /wd4350 |