Skip to content

Instantly share code, notes, and snippets.

View steadystatic's full-sized avatar

Mike Wabst steadystatic

View GitHub Profile
@steadystatic
steadystatic / gist:6879676
Last active December 24, 2015 23:19
Vim macro idea
/media-external search for media external item
6w go 6 words ahead for the id
vt""ay yank the id to reference into the 'a' register
ctrl-w l switch to other xml pane
:0 go to the top
:/ctrl-r a paste the media overlay id we need to search for from 'a' register
*****IF FAILS GO TO LAST LINE IN MACRO AND REPEAT******
bhvT,"by select the words before between the commas to grab the description and yank it into the 'b' register
@steadystatic
steadystatic / gist:6884435
Last active December 24, 2015 23:59
Attempt at a quick vim function
function TitleGrab()
try
let @x = /media-external
6wvt""ayl:0
/a
let @y = bhvT,"byh€ku/overlay
4wvt]"cy/€kb:0
/c
/textDefault
3wab/labelDefault
@steadystatic
steadystatic / overlayfunction
Last active December 25, 2015 00:29
Grabs titles from a csv file for an xml file
function! TitleGrab()
let currentLine = line('.')
let bottomLine = line("$")
while currentLine <= bottomLine
try
let @x = '/media-external
6wvt""ayl:0
/a
'
let @y = 'bhvT,"byh/overlay
@steadystatic
steadystatic / gist:6921730
Created October 10, 2013 16:52
css update vim function
map <leader>x :call CSSXMLUpdate()<CR>
function! CSSXMLUpdate()
let currentLine = line('.')
let bottomLine = line("$")
while currentLine <= bottomLine
try
let @x = 'jvt,"ayt,llvt,"byt,llvt,"cyt,llvt,"dyt,llvt,"eyt,llvt,"fyt,llvt,"gy0'
let @y = 'l:0
/a
# setup msmtp for sending out email
# as an alternative to sendmail
# i prefer this because it is easier to install and configure than sendmail
# especially when using Gmail smtp servers
sudo -i
apt-get install msmtp
ln -s /usr/bin/msmtp /usr/sbin/sendmail
touch /var/log/msmtprc && chmod 666 /var/log/msmtprc
vim /etc/msmtprc
# config options: http://msmtp.sourceforge.net/doc/msmtp.html#A-user-configuration-file
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Stripe Getting Started Form</title>
<!-- The required Stripe lib -->
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
<!-- jQuery is used only for this example; it isn't required to use Stripe -->
@steadystatic
steadystatic / bower-video-angular-updating.diff
Created December 3, 2014 20:58
bower-video-angular flash fallback fix attempt
diff --git flash.js flash.js
index ce8d6e9..f363b1f 100644
--- flash.js
+++ flash.js
@@ -1,8 +1,8 @@
"use strict";
angular.module("info.vietnamcode.nampnq.videogular.plugins.flash", [])
.directive(
- "vgFlashPlayer", ["VG_EVENTS", "VG_STATES", "$rootScope", "$window", '$timeout',
- function(VG_EVENTS, VG_STATES, $rootScope, $window, $timeout) {
javascript:uberCheck=setInterval(function(){if (document.getElementById('set-pickup-btn').className.indexOf("unavailable")===-1){var audio=document.createElement("audio"); audio.src="//bit.ly/1CqZfVJ"; audio.addEventListener("ended", function(){document.removeChild(this);}, false); audio.play(); cleanup(uberCheck);}}, 1000);
@steadystatic
steadystatic / unbrew.rb
Last active September 3, 2015 18:40 — forked from SteveBenner/unbrew.rb
Homebrew uninstall script
#!/usr/bin/env ruby
#
# CLI tool for locating and removing a Homebrew installation
# http://brew.sh/
#
# Copyright (C) 2014 Stephen C. Benner
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
@steadystatic
steadystatic / mikecraft.sh
Last active December 30, 2015 22:50
On/Off DigitalOcean Image for my Minecraft server
#!/bin/sh
PATH=/usr/local/bin:/bin:/usr/bin
if [ "$1" = "on" ]; then
tugboat create mikecraft -i `tugboat images | grep "mikecraft" | awk -F: '{print $2}' | sed 's/,.*//'` -r3 -s63 && tugboat wait mikecraft -s active && tugboat password-reset mikecraft && yes | tugboat destroy_image _mikecraft
elif [ "$1" = "off" ]; then
tugboat halt mikecraft && tugboat wait -n mikecraft -s off && tugboat snapshot `/bin/date +%s`_mikecraft mikecraft && sleep 180 && yes | tugboat destroy mikecraft
else
echo 'Turn Mikecraft on or off?'
fi