Skip to content

Instantly share code, notes, and snippets.

View UnidentifiedContributor's full-sized avatar
🔥
Can't stop, won't stop

Anonymous Developer UnidentifiedContributor

🔥
Can't stop, won't stop
  • Portland, OR
  • 08:00 (UTC -07:00)
View GitHub Profile
@UnidentifiedContributor
UnidentifiedContributor / celestial.zsh-theme
Last active February 9, 2017 21:18
Nexxy's Celestial Zsh Theme — Based on "blinks" from oh-my-zsh themes
# based on "blinks" from oh-my-zsh themes by @blinks
# https://github.com/robbyrussell/oh-my-zsh/blob/master/themes/blinks.zsh-theme
#
# install (with oh-my-zsh already installed):
# 1. place in $ZSH_CUSTOM as 'celestial.zsh-theme'
# 2. edit ~/.zshrc to include `ZSH_THEME="celestial"`
# 3. open a new terminal window
function _prompt_char() {
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then

Keybase proof

I hereby claim:

  • I am emilyrose on github.
  • I am emilyrose (https://keybase.io/emilyrose) on keybase.
  • I have a public key whose fingerprint is 3D2D AA63 B2F0 8904 1E2D AD31 067A E905 4C54 1764

To claim this, I am signing this object:

@UnidentifiedContributor
UnidentifiedContributor / index.ejs
Created December 20, 2014 11:11
Output JSON to EJS
<html></html><script>var somevar = <%- somevar %></script><body></body></html>
var irc = require('irc')
var bans = [ ]
var client = new irc.Client('irc.freenode.net', 'xyxne', {
userName : 'nexxy'
, realName : 'b& hammer bot'
, debug : true
, floodProtection : true
, floodProtectionDelay : 5000
@UnidentifiedContributor
UnidentifiedContributor / gist:fe38eb13ce2acc077790
Created October 1, 2014 00:07
Mike is a big supporter of women in tech.
23:45 < `mike`> hi
23:45 -!- ssarah [~ssarah@230.115.249.5.rev.vodafone.pt] has quit [Ping timeout: 260 seconds]
23:45 < `mike`> i am currently implementing a redirect
23:45 -!- wraithgar [~Gar@68-113-20-60.dhcp.knwc.wa.charter.com] has joined #Node.js
23:45 < `mike`> www.myurl.com/path redirects to www.myurl/?config=path
23:45 < `mike`> can i populate the query variable without rewriting?
23:45 -!- RogerWS [~rogerws@wsip-70-166-130-12.fv.ks.cox.net] has joined #Node.js
23:45 -!- williamcotton [~williamco@c-24-5-80-236.hsd1.ca.comcast.net] has quit [Ping timeout: 244 seconds]
23:45 <@nexxy> that sounds backwards
23:45 -!- ssarah [~ssarah@230.115.249.5.rev.vodafone.pt] has joined #Node.js
@UnidentifiedContributor
UnidentifiedContributor / screen_away.pl
Created January 12, 2014 02:19
IRSSI Screen Away
use Irssi;
use strict;
use FileHandle;
use vars qw($VERSION %IRSSI);
$VERSION = "0.9.7.1";
%IRSSI = (
authors => 'Andreas \'ads\' Scherbaum <ads@wars-nicht.de>',
name => 'screen_away',
@UnidentifiedContributor
UnidentifiedContributor / awayproxy.pl
Created January 12, 2014 02:17
IRSSI Away Proxy
# vim:syntax=perl
# vim:tabstop=4
# vim:shiftwidth=4
# vim:foldmethod=marker
# vim:foldenable
# vim:enc=utf-8
########################################################################################################
## WARNING!! BAD ENGLISH BELOW :P
##
## This script is designed for those who have been using muh irc bouncer.
[21.38.20] <@nexxy> I used to have port scanners written in mIRC script :(
[21.38.30] < melfy> thats just sad sir
[21.38.36] < othiym23> how very completely unsurprising
[21.38.37] < myndzi> i have literally hundreds of kb of stuff just laying around
[21.38.42] <@nexxy> melfy, sir?
[21.38.44] < myndzi> and almost none of it is haxory :P
[21.38.45] * othiym23 &
[21.38.48] <@konobi> myndzi: -.-
[21.38.53] < superjoe> in groove basin, we have a mode where it keeps a
playlist of size 10 or so full, and it uses a method of
var five = require('johnny-five');
var board = new five.Board();
board.on('ready', function() {
var red, green, blue;
red = new five.Led(3);
green = new five.Led(5);
@UnidentifiedContributor
UnidentifiedContributor / ninja-rfid.js
Created February 18, 2013 00:49
Barebones RFID module example.
var
serialport = require('serialport')
, stream = require('stream')
, util = require('util')
;
util.inherits(rfid, stream);
module.exports = rfid;
function rfid(opts, app) {