Skip to content

Instantly share code, notes, and snippets.

;(function ($, window, document, undefined) {
var pluginName = 'name', defaults = {};
function Plugin (element, options) {
this.element = element;
this.settings = $.extend({}, defaults, options);
this.init();
}
function printObject(o) {
var out = '';
for (var p in o) {
out += p + ': ' + o[p] + '\n';
}
console.log(out);
}
@raynimmo
raynimmo / timestamp.js
Created January 23, 2018 00:47 — forked from hurjas/timestamp.js
Print out a nicely formatted timestamp in JavaScript.
/**
* Return a timestamp with the format "m/d/yy h:MM:ss TT"
* @type {Date}
*/
function timeStamp() {
// Create a date object with the current time
var now = new Date();
// Create an array with the current month, day and time
@raynimmo
raynimmo / .htaccess
Created January 19, 2018 21:43 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
@raynimmo
raynimmo / server-file-sorting.txt
Last active January 25, 2018 14:30
A collection of terminal commands for sorting output on the server
ls - l
Display output in long list format
ls -lt (r) for reverse
Display long list format and sort by last modified time/date
ls -Rt
Recursive into directories
ls -lh
@raynimmo
raynimmo / dreamhost-git.txt
Last active August 26, 2017 05:44
Enabling git repo on dreamhost
// ssh into server
cd $HOME/<site root folder>
git config --global user.name "user name"
git config --global user.email "user email"
git init
git add .
git commit -m "Init."
//open terminal on localhost
ssh-keygen -t rsa -b 4096 -C "Git repo name"
@raynimmo
raynimmo / git-log-formats.txt
Last active April 21, 2018 14:11
Git log formatting
// for placeholders, see https://git-scm.com/docs/pretty-formats
// short format, coloured
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
// display files changes in each commit
git log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
@raynimmo
raynimmo / cron-cache-warmer.sh
Created September 14, 2016 05:05
Cron cache warmer
wget --quiet http://example.com/sitemap.xml --output-document - | egrep -o "http://example.com[^<]+" | wget -q --delete-after -i -
@raynimmo
raynimmo / mysql-disk-size-queries.sql
Created September 1, 2016 15:26
MySQL queries for displaying allocation/usage of disk space for a database and its tables.
/* View all tables with disk allocation/sizes shown */
SELECT
table_name,
data_length/1048576,index_length/1048576,
(data_length+index_length)/1048576 as data_used,
data_free/1048576 as data_free,
(data_length+index_length+data_free)/1048576 as disk_used
FROM information_schema.tables where table_schema = 'main'
@raynimmo
raynimmo / mamp-osx-not-working.txt
Created August 11, 2016 06:17
killand reboot MAMP on OSX when mysql is hung
// Quit MAMP
// Open terminal, enter..
// List all mysql processes and their status and resource usage
ps aux | grep mysql
// The lsof (list open files) command returns the user processes that are actively using a file system.
// It is sometimes helpful in determining why a file system remains in use and cannot be unmounted.
lsof -i