This file contains 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
# inside rails controller, to check http headers | |
request.headers.each do |k,v| | |
logger.debug "#{k} -> #{v}" | |
end |
This file contains 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
<p id="flash" class="<%= flash.keys.first.to_s %>"><%= flash.values.first %></p> |
This file contains 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
# using Paginator with MongoMapper | |
# index action in a controller | |
def index | |
@pager = Paginator.new(User.count, 20) do |offset, per_page| | |
User.all(:offset => offset, :limit => per_page, :order => "created_at DESC") | |
end | |
@users = @pager.page(params[:page]) | |
respond_to do |format| | |
format.html # index.html.erb |
This file contains 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
$ git diff | |
diff --git a/init.rb b/init.rb | |
index f0a5316..29f7a2d 100644 | |
--- a/init.rb | |
+++ b/init.rb | |
@@ -73,6 +73,14 @@ Redmine::WikiFormatting::Macros.register do | |
:id => attach.id, | |
:filename => attach.filename | |
+ thumb_filename = "#{tw}_#{th}_#{attach.disk_filename}" |
This file contains 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
// Original source from here | |
// http://d.hatena.ne.jp/matsu4512/20090424/1240541319 | |
package { | |
import flash.display.Bitmap; | |
import flash.display.BitmapData; | |
import flash.display.Sprite; | |
import flash.display.StageAlign; | |
import flash.display.StageScaleMode; |
This file contains 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
// based on the java source listed here http://d.hatena.ne.jp/fits/20081126/1227660571 | |
package sample.event | |
class EsperEvent(val name: String, val point: Int) { | |
def getName:String = name | |
def getPoint:Int = point | |
} |
This file contains 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
require 'em-http' | |
EventMachine.run { | |
http = EM::HttpRequest.new("http://127.0.0.1:8000/").get | |
puts 'starting...' | |
buffer = "" | |
http.stream do |chunk| | |
buffer += chunk | |
while line = buffer.slice!(/.+\r?\n/) | |
puts line |
This file contains 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
# a fix for installing nqc onto snow leopard | |
$ diff -r nqc-3.1.r6 nqc-3.1.r6.fix | |
diff -r nqc-3.1.r6/rcxlib/RCX_USBTowerPipe_osx.cpp nqc-3.1.r6.fix/rcxlib/RCX_USBTowerPipe_osx.cpp | |
331c331 | |
< pipe->ReadCompletion(result, (UInt32)arg0); | |
--- | |
> pipe->ReadCompletion(result, (UInt64)arg0); | |
Only in nqc-3.1.r6.fix/rcxlib: RCX_USBTowerPipe_osx.cpp~ |
This file contains 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
Variable X = new Variable("X"); | |
Query q4 = | |
new Query( | |
"descendent_of", | |
new Term[] {X,new Atom("ralf")} | |
); | |
java.util.Hashtable solution; | |
solution = q4.oneSolution(); |
This file contains 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
/* just a snippet */ | |
var client_ids = [a, b, c]; | |
for (var cid in client_ids) { | |
socket.clients[client_ids[cid]].send('hello'); | |
} | |
OlderNewer