Skip to content

Instantly share code, notes, and snippets.

https://docs.google.com/document/d/1-YVGJVOIfAKNQ4WrqJIilRCemYPLO5ZnujufqQTUFts/edit?usp=drivesdk
<html>
<head></head>
<body>
<div id="content">
<p>Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.</p><p>Efficiently unleash cross-media information without cross-media value. Quickly maximize timely deliverables for real-time schemas. Dramatically maintain clicks-and-mortar solutions without functional solutions.</p><p>Completely synergize resource sucking relationships via premier niche markets. Professionally cultivate one-to-one customer service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.</p><p>Objectively innovate empowered manufactured products whereas parallel platforms. Holisticly predominate extensible testing procedures for reliable supply chains. Dramatically engage top-line web services vis-a-vis cutting-edge deliverables.</p><p>Proactively envi
@ECHO OFF
:: We want to disable ie11blacklist checks http://blogs.msdn.com/b/ie/archive/2014/08/06/internet-explorer-begins-blocking-out-of-date-activex-controls.aspx
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext" /v VersionCheckEnabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Internet Explorer\VersionManager" /v DownloadVersionList /t REG_DWORD /d 0 /f
del “%LOCALAPPDATA%\Microsoft\Internet Explorer\VersionManager\versionlist.xml”
This file has been truncated, but you can view the full file.
npm info it worked if it ends with ok
npm verb cli [ 'node',
npm verb cli '/Users/nowell.strite/npm/bin/npm',
npm verb cli 'i',
npm verb cli '--loglevel=silly' ]
npm info using npm@2.0.1
npm info using node@v0.10.32
GFS: open done null 11
GFS: close 11
GFS: open done { [Error: ENOENT, open '/Users/nowell.strite/src/x-web/x-web-theme-eon/AUTHORS']
<Response>
<Say voice="alice">
Thanks for the call. Configure your number's voice U R L to change this message.
</Say>
<Pause length="1"/>
<Say voice="alice">
Let us know if we can help you in any way during your development.
</Say>
</Response>

Please publicly post the following Gist, and name it keybase.md:

Keybase proof

I hereby claim:

  • I am nowells on github.
  • I am nowells (https://keybase.io/nowells) on keybase.
  • I have a public key whose fingerprint is 824F 1285 94B7 C4E3 2B7C 5CE6 8FBD 1246 D603 B08B
@nowells
nowells / git-mergepr
Last active December 25, 2015 17:09
#!/usr/bin/env ruby
begin
require 'rubygems'
require 'shellwords'
require 'json'
require 'colorize'
rescue
abort("Please run 'gem install json colorize'")
end
@nowells
nowells / git-dependancies.rb
Created December 1, 2011 18:51
A tool to display all branches that have dependancies in your repository and list out what branches have been merged and are therefore dependancies.
#!/usr/bin/env ruby
begin
require 'rainbow'
rescue LoadError
module Rainbow
def color(color)
self
end
def background(color)
@nowells
nowells / git-merge-master-everywhere.rb
Created November 18, 2011 01:02
git merge master to all branches
#!/usr/bin/env ruby
require 'net/smtp'
def run(command)
output = `#{command} 2>&1`
if not $?.success?
raise Exception, "Command Failed '#{command}': #{output}"
end
output
from django.http import HttpRequest
class PickleableHttpRequest(HttpRequest):
def __init__(self, request=None, attributes=None):
super(PickleableHttpRequest, self).__init__()
if request:
if not isinstance(request, HttpRequest):
raise Exception('Request supplied is not a valid HTTP request object.')