Skip to content

Instantly share code, notes, and snippets.

View nickserv's full-sized avatar

Nicky McCurdy nickserv

View GitHub Profile
@nickserv
nickserv / hash_wrapper.rb
Last active December 20, 2015 11:59
A simple wrapper class around a Hash in Ruby
class HashWrapper
# Create a new HashWrapper that wraps around a new empty Hash
def initialize
@hash = {}
end
# Get the value of a key
def [](key)
@hash[key]
@nickserv
nickserv / countdown.rb
Created August 1, 2013 18:15
A simple 5 second countdown in Ruby using carriage returns
$stdout.sync = true
5.downto(0).each do |index|
print "\rCountdown: #{index}"
sleep 1
end
print "\r"
@nickserv
nickserv / borg.py
Last active December 23, 2015 21:19
Python: Borg Pattern
# See http://code.activestate.com/recipes/66531/
class Borg:
__shared_state = {}
def __init__(self):
self.__dict__ = self.__shared_state
@nickserv
nickserv / StringBuilderExample.java
Last active December 24, 2015 06:49
Java: StringBuilder Example
import java.lang.StringBuilder;
public class StringBuilderExample {
public static void main(String args[]) {
String s = "";
s += "I have ";
s += 50;
s += " cats.";
System.out.println(s);
@nickserv
nickserv / euler1.hs
Created November 18, 2013 20:26
Haskell practice
divisible x y = x `mod` y == 0
main = print $ sum [x | x <- [1..999], x `divisible` 3 || x `divisible` 5]
@nickserv
nickserv / .gitignore
Created January 2, 2014 23:08
Example: Using bower with an npm package
node_modules
bower_components
@nickserv
nickserv / spellchecker.sh
Created January 5, 2014 08:26
Simple spellchecker as a shell script
#!/bin/bash
# See the original at http://www.usrsb.in/The-First-Spellchecker--In-6-Lines-.html
checked_file=$1
dictionary_file=/usr/share/dict/cracklib-small
cat $file_to_check |
tr A-Z a-z |
tr -c a-z '\n' |
sort |
@nickserv
nickserv / find_git_repo.rb
Last active January 22, 2021 10:43
Ruby script: Find the current git repository
# Script: Find the current git repository
# Based on https://github.com/mojombo/grit/pull/178 by https://github.com/derricks
# Be sure to "gem install grit" before running this script
require 'grit'
# Returns true if the given path represents a root directory (/ or C:/)
def root_directory?(file_path)
# Implementation inspired by http://stackoverflow.com/a/4969416:
# Does file + ".." resolve to the same directory as file_path?
@nickserv
nickserv / gist:8482253
Last active January 3, 2016 15:19
Homesick: New git interface idea

Homesick: New git interface idea

Before

18 commands:

homesick cd CASTLE              # Open a new shell in the root of the given castle
homesick clone URI              # Clone +uri+ as a castle for homesick
homesick commit CASTLE MESSAGE  # Commit the specified castle's changes
homesick destroy CASTLE         # Delete all symlinks and remove the cloned repository
homesick diff CASTLE            # Shows the git diff of uncommitted changes in a castle
@nickserv
nickserv / .gitignore
Last active March 17, 2017 19:12
FizzBuzz in various languages
*.class
a.out
fizzbuzz