- merge posts with resolution of urls
- write
times
param into wait function (to test only some posts)
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
#!/usr/bin/env node | |
const exec = require('child_process').exec; | |
const spawn = require('child_process').spawn; | |
const R = require('ramda'); | |
const myInstance = 'your instance id'; | |
const myKey = 'absolute path to your private key'; | |
const myUser = 'username associated with the key pair'; | |
function isInstanceOff(instanceJson) { |
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
Start gist |
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
<html> | |
<head> | |
<link href="stylesheets/skins.css" media="screen" rel="stylesheet" type="text/css"></link> | |
<script src="http://vjs.zencdn.net/c/video.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
</head> | |
<body> | |
<video controls class="video-js vjs-default-skin"> | |
<source type="video/mp4" src="http://video-js.zencoder.com/oceans-clip.mp4"></source> | |
</video> |
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/bash | |
# Deletes all branches already merged with master | |
git checkout master | |
git pull | |
for BRANCH in `git branch`; do | |
git branch -d ${BRANCH} | |
done |
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
(require 'textmate) | |
(textmate-mode) | |
(global-set-key (kbd "M-t") 'textmate-goto-file) ;; for Aquamacs... |
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
it("adds zero-width breaking spaces betwee<wbr>n special characters in the 'content'", function() { | |
expect(EM.Text.fromBBF({content:"<span class=\"some-class\" style=\"font-size:10\" special chars %^&*"}).get('content')) | |
.toBe("something containing special chars %<wbr>^<wbr>&<wbr>amp;<wbr>*"); | |
}); | |
it("preserves the original content in 'raw_content'", function() { | |
expect(EM.Text.fromBBF({content:"something containing special chars %^&*"}).get('raw_content')) | |
.toBe("something containing special chars %^&*"); | |
}); |
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
[core] | |
editor = emacs -nw --no-init-file --no-site-file --load ~/.emacs.minimal |
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
;; taken from http://snarfed.org/minimal_emacs_for_fast_startup | |
; cutoff for word wrap | |
(setq-default fill-column 79) | |
; F12 toggles auto-fill mode | |
(global-set-key [f12] 'auto-fill-mode) | |
; C-- keybinding for undo (removes the shift) | |
(global-set-key [(control -)] 'undo) |
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
WARN_ME="\n\ | |
!WARNING! \n\ | |
This change may contain a debugger line. Please make sure this is not the case before pushing. \n\ | |
!END WARNING! \n" | |
if git show | grep -q "debugger" | |
then | |
echo $WARN_ME | |
fi |
NewerOlder