Skip to content

Instantly share code, notes, and snippets.

;;;; Packages
;;; Management Setup
(custom-set-variables
'(package-archives
(quote
(("melpa" . "http://melpa.org/packages/")
("melpa-stable" . "http://stable.melpa.org/packages/")
("gnu" . "http://elpa.gnu.org/packages/")))))
function getEventData() {
var data;
var eventItems;
$.ajax({
url: 'includes/blox/list.inc.php',
async: false,
data: {
'client': 1
},
@jessie-ross
jessie-ross / ssh-copy-id
Created October 4, 2012 09:44
ssh-copy-id
#!/bin/sh
# Shell script to install your public key on a remote machine
# Takes the remote machine name as an argument.
# Obviously, the remote machine must accept password authentication,
# or one of the other keys in your ssh-agent, for this to work.
ID_FILE="${HOME}/.ssh/id_rsa.pub"
if [ "-i" = "$1" ]; then
@pageWidth: 1000px
@columns: 4;
@gutterWidth: 60px;
@totalGutterWidth: ( @columns - 1 ) * @gutterWidth;
@columnWidth: ( @pageWidth - @totalGutterWidth ) / @columns;
@media screen and (max-width: 500px /* @columnWidth * 3 + @gutterWidth * ( 3 - 1 ) */ ) {
.span-1 {