This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ext/edgelist.c b/ext/edgelist.c | |
index 2cb7dd0..ff8cef8 100644 | |
--- a/ext/edgelist.c | |
+++ b/ext/edgelist.c | |
@@ -3,8 +3,6 @@ | |
#include "vdefs.h" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ext/edgelist.c b/ext/edgelist.c | |
index 2cb7dd0..ff8cef8 100644 | |
--- a/ext/edgelist.c | |
+++ b/ext/edgelist.c | |
@@ -3,8 +3,6 @@ | |
#include "vdefs.h" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Of Boldness | |
[...] There is in human nature generally more of the fool than of the wise; | |
and therefore those faculties by which the foolish part of men's minds | |
is taken are most potent. Wonderful like is the case of boldness in | |
civil business: what first? boldness; what second and third? | |
boldness. And yet boldness is a child of ignorance and baseness, far | |
inferior to other parts. But nevertheless it doth fascinate and bind | |
hand and foot those that are either shallow in judgment or weak in | |
courage, which are the greatest part; yea and prevaileth with wise men |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Combining Tony Wright's post on startup acquisition rate (http://is.gd/101m1) | |
and Evan Miller's post on statistical significance in percentage ratings | |
(http://bit.ly/19CJAd). | |
Results: | |
{"CA"=>[2739, 188, "5.98%"], | |
"NY"=>[692, 34, "3.54%"], | |
"MA"=>[386, 20, "3.38%"], | |
"TX"=>[323, 19, "3.80%"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Firefox 3.5 Linux / iGoogle application errors. | |
* Error: Q is undefined | |
Source File: http://95.ig.gmodules.com/gadgets/ifr?view=home&url=http://brendan.ilike.com/gadget/ilike/ig&nocache=1&up_path=/&up_search=&up_page=&up_gs=fetched&up_hide_upsell=0&up_linking_state=fetched&up_ilike_user_id=IB4kOHPyq3Cpxx0DpYFzYA%3D%3D+&up_ilike_screenname=PFw6RyVwrfVv8liQGXLrLQ%3D%3D+&up_fb_user_id=g4JFpek56mEKzA0wH6vCVA%3D%3D+&up_chart=0&up_client_id=null&up_geoip=Kirkland,+WA&up_country=US&up_ae_going=10120612_10429%7C10121094_12404%7C1455232_21044&up_ae_want=10120508_12553%7C10121128_21044&up_ig_owner_id=70d5e7f6-6054-11de-8abd-0015f2c0fbfd&up_tab=Concerts&lang=en&country=us&.lang=en&.country=us&synd=ig&mid=95&ifpctok=-6830605585196614192&exp_split_js=1&exp_track_js=1&exp_ids=17259&parent=http://www.google.com&refresh=3600&libs=core:core.io:core.iglegacy#st=c%3Dig%26e%3DAPu7icq%252Bk4JlVv3xAyzy%252B0DyXbRxX0z/ixcFKMK2k4W%252B%252BvzUz%252B5oeC9u0j8Y1Qi%252BfJV/upwtRsQXbn%252BgHE3ZAuEeAoGGMUUSBMwg3SHxKfV6QpoXptnb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns markymark | |
(:use | |
[clojure.contrib pprint] | |
[com.lithinos.clj-peg core string-wrapper])) | |
(make-parser | |
{:main markdown | |
:doc "blah" | |
:rules ( | |
Doc <- (+ Newline) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; This works | |
(require '[clojure.contrib.test-is :as clojure.test]) | |
(clojure.test/report clojure.core/*clojure-version*) | |
; This is broken | |
(do (require '[clojure.contrib.test-is :as clojure.test]) | |
(clojure.test/report clojure.core/*clojure-version*)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Restaurant < ActiveRecord::Base | |
has_many :restaurant_cuisines, :dependent => :delete_all | |
has_many :cuisines, :through => :restaurant_cuisines | |
end | |
class Cuisine < ActiveRecord::Base | |
has_many :restaurant_cuisines, :dependent => :delete_all | |
has_many :restaurants, :through => :restaurant_cuisines | |
end |
OlderNewer