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
/* | |
* Enter in to terminal for listing of recent wifi connections | |
*/ | |
defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences| sed 's|\./|`pwd`/|g' | sed 's|.plist||g'|grep 'LastConnected' -A 7 |
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 getScrollXY() { | |
var x = 0, y = 0; | |
if( typeof( window.pageYOffset ) == 'number' ) { | |
// Netscape | |
x = window.pageXOffset; | |
y = window.pageYOffset; | |
} else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) { | |
// DOM | |
x = document.body.scrollLeft; | |
y = document.body.scrollTop; |
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
grep -rnw /mnt/home -e "return base64_decode" | |
/* | |
$str_to_find[]='base64_decode'; | |
$str_to_find[]='edoced_46esab'; // base64_decode reversed | |
$str_to_find[]='preg_replace'; | |
$str_to_find[]='HTTP_REFERER'; | |
$str_to_find[]='HTTP_USER_AGENT'; | |
*/ |
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
# Replace any brackets with real values | |
# Try to ssh in to DREAMHOST (ensure it no longer asks for a PW); you may want to restart Terminal | |
ssh [user]@[host] | |
cd ~ | |
mkdir [mydomain_com].git | |
cd [mydomain_com].git | |
git init --bare | |
vi hooks/post-receive | |
# Enter the code from the "post-receive" file (in this gist); save + quit |
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/sh | |
# | |
# This hook does two things: | |
# | |
# 1. update the "info" files that allow the list of references to be | |
# queries over dumb transports such as http | |
# | |
# 2. if this repository looks like it is a non-bare repository, and | |
# the checked-out branch is pushed to, then update the working copy. | |
# This makes "push" function somewhat similarly to darcs and bzr. |
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 displayCountryList() { | |
$countries = array("AF" => "Afghanistan", | |
"AX" => "Åland Islands", | |
"AL" => "Albania", | |
"DZ" => "Algeria", | |
"AS" => "American Samoa", | |
"AD" => "Andorra", | |
"AO" => "Angola", | |
"AI" => "Anguilla", | |
"AQ" => "Antarctica", |
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
Verifying that +raynimmo is my openname (Bitcoin username). https://onename.io/raynimmo |
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($) { | |
//check for iOS | |
var is_uiwebview = /(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent); | |
var is_safari_or_uiwebview = /(iPhone|iPod|iPad).*AppleWebKit/i.test(navigator.userAgent); | |
if(is_uiwebview || is_safari_or_uiwebview) { | |
console.log("iphone/ipad/ipod detected"); | |
//do something such as.. |
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($) { | |
// fittext.js plugin | |
$.fn.fitText = function(kompressor, options){ | |
var compressor = kompressor || 1, | |
settings = $.extend({ | |
'minFontSize' : Number.NEGATIVE_INFINITY, | |
'maxFontSize' : Number.POSITIVE_INFINITY | |
}, options); | |
return this.each(function(){ |
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 | |
//create temporary data store | |
/* | |
CREATE TABLE blogdata ( | |
id int(11), | |
title varchar(200), | |
timestamp int(10), | |
body text, | |
done int(3) default '0' | |
); |