Skip to content

Instantly share code, notes, and snippets.

View gigasquid's full-sized avatar

Carin Meier gigasquid

View GitHub Profile
@gigasquid
gigasquid / sort-users.clj
Created June 16, 2011 01:45
Sort Users 4Clojure
(defn users-comp [x y]
(let [xsolved (count (:solved x))
ysolved (count (:solved y))
xlastlogin (:last-login x)
ylastlogin (:last-login y)]
(cond (> xsolved ysolved) 1
(< xsolved ysolved) -1
(and xlastlogin (nil? ylastlogin)) 1
(and ylastlogin (nil? xlastlogin)) -1
(and xlastlogin ylastlogin (.after xlastlogin ylastlogin)) 1
@gigasquid
gigasquid / roman_number_converter.rb
Created May 18, 2011 04:17
Roman Number Calculator
# Given a integer between 1 and 50 convert it to its Roman Numeral
def convert_to_roman (arabic)
ones_translation =
[ 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX']
tens_translation =
[ 'X', 'XX', 'XXX', 'XL', 'L']
tens = ""
@gigasquid
gigasquid / mymethodTest.js
Created May 5, 2011 16:41
Example Spec File for Ajax Mocking with Jasmine
describe("Mocking Ajax Calls", function() {
beforeEach(function() {
loadFixtures('test.html');
//mocking ajax call with Jasmine Spies
var fakeData = "You can put your return data here";
spyOn($, "ajax").andCallFake(function(params) {
params.success(fakeData);
});
});
@gigasquid
gigasquid / mymethod.js
Created May 5, 2011 16:39
Example File for Ajax Mocking with Jasmine
function mymethod()
{
var url = contextPath + "/bar.ajax";
$.ajax({
type: "POST",
url: url,
data: { type: "test"},
success: function(json){
$('#mydiv').html("Happy Face");
@gigasquid
gigasquid / aprilshowers.clj
Created April 3, 2011 21:02
April Showers Bring May Flowers
;;;;April Showers bring May Flowers
(ns my.april.showers)
(def sleep-time 20)
(def frame (java.awt.Frame.))
(defn show-frame [frame x y]
(doto frame
(.setVisible true)
(.setSize (java.awt.Dimension. x y)) ))
@gigasquid
gigasquid / bowling.clj
Created March 30, 2011 16:17
First Clojure Kata for Bowling
(ns bowling-game.game)
(defrecord Frame [pins-hit-list])
(defrecord Game [frame-list])
(defn construct-frame [pins]
(Frame. [pins]))
(defn construct-empty-frame []
# An example of Mutual Recursion.
# A simple lexer for our parser. We only return tokens for :numbers
# and +, - and new lines.
class Lexer
attr_reader :token, :type
def initialize(stream)
@stream = stream
@tokens = []