Skip to content

Instantly share code, notes, and snippets.

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])
@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>
#!/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
pingServerTimer = [NSTimer timerWithTimeInterval:2 target:self selector:@selector(pingServer:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:pingServerTimer forMode:NSRunLoopCommonModes];
$(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';
});
});
});
@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
@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 / Calendar.cfm
Created May 21, 2012 06:40 — forked from anonymous/Calendar
Calendar
<cfoutput>
<table border="1" width="100%" height="100%">
<tr>
<cfloop index="x" from="1" to="7">
<th>#dayOfWeekAsString(x)#</th>
</cfloop>
</tr>
</cfoutput>
<cfset firstOfTheMonth = createDate(year(now()), month(now()), 1)>
%table
%tr
%td This is cell 0,0
%td This is cell 0,1
%tr
%td{colspan: 2}
%table
%tr
%td This is a cell on its own in a table all its own.
@advorak
advorak / ERROR
Last active December 10, 2015 06:58 — forked from RemiBa/ERROR
NoMethodError in OrderitemsController#create
undefined method `stringify_keys' for #<Order:0x2c630a0>
Application Trace | Framework Trace | Full Trace
app/controllers/orderitems_controller.rb:11:in `create'