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
void replace_string_in_place(std::string& subject, const std::string& search, | |
const std::string& replace) { | |
size_t pos = 0; | |
while ((pos = subject.find(search, pos)) != std::string::npos) { | |
subject.replace(pos, search.length(), replace); | |
pos += replace.length(); | |
} | |
} |
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
@screenMobile: 320px; | |
@screenTablet: 768px; | |
@screenDesktop: 992px; | |
@screenLarge: 1200px; | |
@screenExtraLarge: 1600px; | |
.mobile(@rules, @invert: false) { | |
.mixin (@invert) when (@invert = false) { | |
@query: ~"(min-width: @{screenMobile})"; | |
@media @query { |
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
function commit-empty-dir -d "Create .gitignore file in empty directories to commit them" | |
sudo find . -type d -empty -exec touch '{}'/.gitignore \; | |
end |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIBlueColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw | |
LjIwODQ2NzE3NjIgMC4yMzQ4MDUxMDg3IDAuNjM4OTU3Njc5MwAQAYAC0hAREhNaJGNs | |
YXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hp |
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
source ~/.ssh_aliases | |
source ~/.bash_profile | |
source ~/.functions | |
source ~/.aliases |
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
set mousemodel=extend | |
set ai | |
set ruler | |
filetype plugin on | |
set number | |
syntax on | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab |
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
alias god=whoami | |
alias cjpeg="sh ~/cjpeg" | |
alias lsd="ls -d -- */" | |
alias subl=sublime | |
alias deepthroat="cd ~/../../../.." |
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
function mkd () { | |
mkdir -p "$@" && cd "$@" | |
} | |
function slow_internet() { | |
sudo ipfw pipe 1 config bw 128Kbit/s delay 200ms && sudo ipfw add 1 pipe 1 src-port 80 | |
} | |
function get_file_size () { | |
ls -lah $@ | awk '{ print $5}' |
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
<? | |
function getFeed($feed_url) { | |
$content = file_get_contents($feed_url); | |
$x = new SimpleXmlElement($content); | |
$feed = array(); | |
$str = ""; | |
foreach($x->channel->item as $entry) { | |
if (count($feed) < 5) { | |
$f = "<li><a href='$entry->link' title='$entry->title'>$entry->title</a></li>"; |
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
<?php | |
// Run with shell as `php -a scanimages.php` | |
// If you want to check your actual place, use `pwd` | |
define(PATH, "/Users/rozzy/Source/Web/mypath/"); | |
$all_files = scandir(PATH); | |
$may_content = $matches = $end_f = array(); | |
foreach ($all_files as $value) { | |
$exclude = array( | |
'.', | |
'..', |
NewerOlder