Skip to content

Instantly share code, notes, and snippets.

@raynimmo
raynimmo / osx-network-list
Created October 1, 2015 06:35
OS X display previous network connections log
/*
* 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
@raynimmo
raynimmo / scroll-position
Created July 6, 2015 16:53
getting the browsers scroll position
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;
@raynimmo
raynimmo / gist:4558b50feeda5dc47e6e
Last active April 14, 2016 15:46
searching for hacked files on the server
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';
*/
# 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
#!/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.
@raynimmo
raynimmo / PHP country dropdown
Created January 7, 2015 07:48
simple PHP country name SELECT element
function displayCountryList() {
$countries = array("AF" => "Afghanistan",
"AX" => "Åland Islands",
"AL" => "Albania",
"DZ" => "Algeria",
"AS" => "American Samoa",
"AD" => "Andorra",
"AO" => "Angola",
"AI" => "Anguilla",
"AQ" => "Antarctica",
Verifying that +raynimmo is my openname (Bitcoin username). https://onename.io/raynimmo
@raynimmo
raynimmo / gist:7f7521e6104b3f96ec85
Created October 11, 2014 16:48
detect iOS and do something
(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..
@raynimmo
raynimmo / gist:6c85acf28f2c9a747764
Created October 11, 2014 16:46
initialise fittext.js
(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(){
@raynimmo
raynimmo / s9y-to-drupal.php
Last active September 14, 2016 05:10
Import blog posts from Serendipity to Drupal. Quick and dirty import direct from database.
<?php
//create temporary data store
/*
CREATE TABLE blogdata (
id int(11),
title varchar(200),
timestamp int(10),
body text,
done int(3) default '0'
);