Skip to content

Instantly share code, notes, and snippets.

@advorak
advorak / home.css.scss
Created May 21, 2012 05:47 — forked from anonymous/home_controller.rb
Calendar for the current month
// Place all the styles related to the home controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
#monthName {
text-align: center;
position: absolute;
top: 0;
display: inline;
a {
text-decoration: none;
@advorak
advorak / appify.sh
Created November 29, 2011 02:43 — forked from mathiasbynens/appify
appify — create the simplest possible Mac app from a shell script (adds an application icon)
#!/bin/bash
if [ "$1" = "-h" -o "$1" = "--help" ]; then cat <<EOF
appify v3.0.0 for Mac OS X - http://mths.be/appify
Creates the simplest possible Mac app from a shell script.
Appify takes a shell script as its first argument:
`basename "$0"` my-script.sh
$(document).ready(function() {
$('a.pastEvents').click(function() {
$('ul#pastEvents').empty();
var html = '';
$.getJSON('/events/past_events.json', {}, function(data) {
$(data).each(function(entryIndex, entry) {
html += 'andy';
});
});
});
pingServerTimer = [NSTimer timerWithTimeInterval:2 target:self selector:@selector(pingServer:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:pingServerTimer forMode:NSRunLoopCommonModes];
#!/usr/bin/env ruby
# Greed is a dice game where you roll up to five dice to accumulate
# points. The following "score" function will be used calculate the
# score of a single roll of the dice.
#
# A greed roll is scored as follows:
#
# * A set of three ones is 1000 points
#
# * A set of three numbers (other than ones) is worth 100 times the
@advorak
advorak / gist:833794
Created February 18, 2011 15:13 — forked from dtolj/gist:833771
[myxml]
<item>
<title>Book1</title>
<author>Bob</author>
<link>http://url1.com</link>
</item>
<item>
<title>Book2</title>
<author>Bob</author>
<link>http://url1.com</link>
params[:id] = 1
Artist.where("lastname LIKE '(?)*'",params[:id])
# This generates the following query:
# SELECT "artists".* FROM "artists" WHERE (lastname LIKE '('a')*')
# Note how you don't want the apostrophe within your "where" query ...
Artist.where("lastname LIKE ?",params[:id])