Skip to content

Instantly share code, notes, and snippets.

View SomeKittens's full-sized avatar

Randall Koutnik SomeKittens

View GitHub Profile
@SomeKittens
SomeKittens / gist:3940292
Created October 23, 2012 17:44
Brief product description/needs
Hi all! I'd like your input on something:
I'm about to start building my first big project. I've built smaller things before, but they were all for Joomla. I'd like to expand my knowledge with an ambitious project.
Here's what we're aiming to build:
-A search engine that only searches our database (no web crawling, etc).
-A payment system to purchase what our users find.
I'm looking for whatever will allow us to get this up and running quickly, but allow for further customization later. Good documentation/tutorials are a must. It doesn't need to do the above (we're big fans of writing our own code for core functions).
@SomeKittens
SomeKittens / index.js
Created November 9, 2012 22:29
index.js for my blog framework
"use strict";
//Require other files
var server = require("./server");
var router = require("./router");
var requestHandlers = require("./requestHandlers");
//Create autoloader/handler
var handle = {};
handle["/"] = requestHandlers.home;
handle["/admin"] = requestHandlers.admin;
@SomeKittens
SomeKittens / Universal Language draft
Created November 27, 2012 23:47
Blog rough draft
What if you could use the same language anywhere you go? Server/clientside, desktop, mobile, game dev, physics simulators, EBook readers, etc. This sounds like a pipe dream, and it is in a way. If it was possible, what would we want the language to look like? It would have to be:
Fast
Open and Extensible
Simple, yet powerful
Easy to debug (If it's appropriate to yell "HEEEEY MACARENA" at the end of your message, it might be too complicated).
Language nesting (You can write the language in the language)
Well-documented
(An argument could be made for rapid prototyping, but this usually relies more on libraries than the language).
@SomeKittens
SomeKittens / gist:4503031
Created January 10, 2013 15:47
Better fib generator in js
//This one caches the previous results so we're not constantly re-calculating things we already know
//Fiddle: http://jsfiddle.net/somekittens/7R5bs/
function fibDriver(n) {
return n === 0 ? 0 : fib(0, 1, n);
}
function fib(a, b, n) {
return n === 1 ? b : fib(b, a + b, n-1);
}
@SomeKittens
SomeKittens / System.out
Created March 2, 2013 19:52
Rebol script to execute JavaScript's `console.log`. In other news, I really need to get a life.
parse js [
thru {console.log("} copy message to {");} (print message)
]
@SomeKittens
SomeKittens / IHATEYOU.sh
Last active December 16, 2015 01:19
Ever wanted to yell at your terminal? Now you can!
#!/bin/bash
#Needed to provide alias expansion (so we can use those aliases after the script's finished)
shopt -s expand_aliases
while read x;
do
a=`echo $x | tr '[:lower:]' '[:upper:]'`;
#Added because the script was picking up empty lines
if [ "$a" != '' ]
@SomeKittens
SomeKittens / gist:6067493
Created July 24, 2013 01:32
Rebase reminding commit hook
#!/bin/sh
# Reminds the coder to rebase on master
echo "Don't forget to rebase on master!"
@SomeKittens
SomeKittens / generator.js
Created August 2, 2013 17:33
Rough draft of a HN Markov generator.
var mysql = require('mysql');
var connection = mysql.createConnection({
user : 'root',
password : 'root',
database : 'hnmarkov'
});
Array.prototype.random = function () {
return this[Math.floor(Math.random() * this.length)];
};
@SomeKittens
SomeKittens / gist:6724843
Created September 27, 2013 06:30
lottery
TAKE ONE:
I love Legos. Always have, always will.
Back when I was younger, I could build anything with Legos. If I could dream it up, the parts I needed were somewhere in that never-ending bin of childhood glee. Despite being nothing more than a few pennies of plastic, these magic bricks synergistically assembled into futuristic spaceships, mechanized armies, towering skyscrapers and much more.
Sadly, I grew older. Reality began to encroach on my well-laid plans for conquest of the universe. My insatiable desire to create never left, and so I turned to programming. In fact, the new constraints reality inflicted added to the challenge, and I enjoyed creating all the more for it. The best part was that it was so wonderfully real - I could run my program and watch all the parts come together and do something.
The funny thing about all of this is that the desire to build, while strong, was not the root of my creative drive. What propelled me more were ideas. I've always had crazy ideas. Some are o
@SomeKittens
SomeKittens / troll.js
Created October 21, 2013 22:12
Slowly removes the page
document.addEventListener('click', function() {
window.setTimeout(function() {
var all = document.querySelectorAll('*');
all[Math.floor(Math.random() * all.length)].style.display = 'none';
}, Math.floor(Math.random() * 5000));
});