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 | |
# zsh | |
# uninstall_oh_my_zsh | |
curl -L github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh | |
# http://bahoom.com/hyperswitch | |
defaults write com.apple.Finder AppleShowAllFiles TRUE | |
killall Finder |
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
function walkTheDOM(node, func) { | |
func(node); | |
node = node.firstChild; | |
while (node) { | |
walkTheDOM(node, func); | |
node = node.nextSibling; | |
} | |
} |
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
function dom(name, attributes) { | |
var node = document.createElement(name); | |
if (attributes) { | |
forEachIn(attributes, function(name, value) { | |
setNodeAttribute(node, name, value); | |
}); | |
} | |
for (var i = 2; i < arguments.length; i++) { | |
var child = arguments[i]; | |
if (typeof child == "string") |
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
function removeElement(node) { | |
if (node.parentNode) { | |
node.parentNode.removeChild(node); | |
} | |
} |
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
(function() { | |
document.getElementById... | |
.onclick = function() { sendHTTPRequest(); }; | |
var httpRequest; | |
function sendHTTPRequest() { | |
if (window.XMLHttpRequest) { // Mozilla, Safari, ... | |
httpRequest = new XMLHttpRequest(); |
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
function(file, index){ | |
var url = module.attr('data-upload'); | |
var xhr = new XMLHttpRequest(), | |
formData = new FormData(), | |
previewImage, | |
img; | |
xhr.upload.addEventListener("progress", function (event) { | |
$progress.stop().css('width', 0); |
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
public function curl_fetch ( $id, $since ) { | |
/*** Twitter Api v1.1 ***/ | |
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json"; | |
$count = $this->_app->count; | |
$sinceUrl = $since != false ? "&since_id={$since}" : ''; | |
$oauth_access_token = $this->_app->oauth_access_token; | |
$oauth_access_token_secret = $this->_app->oauth_access_token_secret; | |
$consumer_key = $this->_app->consumer_key; |
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
<?php | |
// /Illuminate/Support/helpers.php | |
echo app_path(); | |
echo base_path(); | |
echo public_path(); | |
echo storage_path(); |
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
set nocompatible | |
"Enable filetypes | |
filetype on | |
filetype plugin on | |
filetype indent on | |
syntax on | |
"Write the old file out when switching between files. | |
set autowrite |
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
$ipad: "only screen and (min-width: 569px) and (max-width: 1024px)"; | |
$ipad-l: "only screen and (min-width: 769px) and (max-width: 1024px)"; | |
$ipad-p: "only screen and (min-width : 481px) and (max-width : 768px)"; | |
$iphone: "only screen and (min-width: 320px) and (max-width: 568px)"; | |
$iphone-l:"only screen and (min-width: 321px) and (max-width: 568px)"; | |
$iphone-p: "only screen and (max-width: 320px)"; | |
$desktop: "only screen and (min-width: 1224px)"; |