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 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( | |
'.', | |
'..', |
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
{ | |
"cmd": ["coffee", "--compile", "--output", "../", "$file_name"], | |
"path": "/usr/local/bin:$PATH", | |
"selector": "source.coffee", | |
"working_dir": "$file_path" | |
} |
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
{ | |
"cmd": ["if [ \"$file_extension\" = \"sass\" ]; then sass --watch $file_name:../${file_base_name}.css --style compressed; elif [ \"$file_extension\" = \"slim\" ]; then slimrb -p $file_name ../$file_base_name.html; fi"], | |
"selector": "source.slim,source.sass", | |
"working_dir": "$file_path", | |
"path": "/usr/local/bin:$PATH", | |
"shell": true | |
} |
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 getCaret(node) { | |
if (node.selectionStart) { | |
return node.selectionStart; | |
} else if (!document.selection) { | |
return 0; | |
} | |
var c = "\001", | |
sel = document.selection.createRange(), | |
dul = sel.duplicate(), | |
len = 0; |
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
#ruby | |
require "rubygems" | |
require "net/http" | |
require 'nokogiri' | |
#API | |
PARAMS = %w(title website description) | |
API_KEY = "YOUR KEY" | |
LOCATION = "moscow" |
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 |
NewerOlder