Skip to content

Instantly share code, notes, and snippets.

@robmccormack
robmccormack / Dig.md
Created September 6, 2018 02:35
Signature

vvv

ggg

@robmccormack
robmccormack / coding.html
Last active August 29, 2015 13:56
Coding Standards Suggestion
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Project name</a>
@robmccormack
robmccormack / 0_reuse_code.js
Created February 24, 2014 01:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@robmccormack
robmccormack / index.html
Last active August 29, 2015 13:56
Twitter Bootstrap Basic Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
@robmccormack
robmccormack / twitbootcdn.html
Created September 14, 2013 12:28
Twitter Bootstrap with CDN - the easy way to build a Twitter Bootstrap
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>TwitterBootstrap 3 CDN - CodePen</title>
<meta charset="utf-8">
@robmccormack
robmccormack / mm525 strapdown.htm
Created September 6, 2013 11:42
Test of strapdown.js for mm 525
<!DOCTYPE html>
<html>
<title>Hello World</title>
<xmp theme="united" style="display:none;">
# Chapter 1
- this is imporant to know
- so is this
@robmccormack
robmccormack / openhelp.py
Created August 22, 2013 20:04
openhelp.py
import sublime, sublime_plugin
import webbrowser
# from: http://www.sublimetext.com/forum/viewtopic.php?f=2&t=2005
# https://www.google.com/search?q=car
# Sublime Text something
# sublime.status_message("User said" )
# variable is correct in class, would be wrong to put oust as gloa=bal
@robmccormack
robmccormack / tp_ok_cancel_dialog.py
Created August 22, 2013 17:57
tp_ok_cancel_dialog.py
import sublime
import sublime_plugin
import calendar
import webbrowser
# run this with at the Python console with:
# view.run_command("ok_cancel_dialog")
@robmccormack
robmccormack / tp_status_message.py
Created August 22, 2013 16:54
tp_status_message.py
import sublime
import sublime_plugin
# did it work
# run this with at the Python console with:
# view.run_command("status_message")
# filename: tp_status_message.py
class StatusMessageCommand(sublime_plugin.TextCommand):
@robmccormack
robmccormack / tp_message_dialog.py
Created August 22, 2013 16:40
tp_message_dialog.py
import sublime
import sublime_plugin
import os
# run this with at the Python console with:
# view.run_command("message_dialog")
class MessageDialogCommand(sublime_plugin.TextCommand):