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
include PocketRuby | |
class PlanningGame < Application | |
# domain objects | |
class Programmer < Record | |
Block.describe(self, { | |
:name => Title, | |
:special_skills => Text, |
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
class ChatDemo | |
def call env | |
Kernel.load(__FILE__) | |
method = env["PATH_INFO"].split('/').last || 'index' | |
send(method, env) | |
end | |
def index env | |
[200, { 'Content-Type' => 'text/html' }, '<html> |
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 'java' | |
require 'rubygems' | |
rb_root = File.dirname(__FILE__) | |
app_root = File.dirname(__FILE__)+'/..' | |
Dir[app_root+"/*.jar"].each { |jar| require jar } | |
require 'rack' | |
Dir[app_root+"/Java/jetty/*.jar"].each { |jar| require jar } |
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
/* this is how you make objects and classes in javascript */ | |
var Dog = function(name) { | |
this.name = name; | |
} | |
Dog.prototype.bark = function() { | |
alert('Pleased to meet you, my name is '+this.name+'.'); | |
} | |
// instantiation |
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 'java' | |
require 'rubygems' | |
rb_root = File.dirname(__FILE__) | |
app_root = File.dirname(__FILE__)+'/../' | |
$app_root = app_root | |
$rb_root = rb_root | |
# get the jars |
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
D:\michal\dev\jruby\java-mateview>rake java:test --trace | |
(in D:/michal/dev/jruby/java-mateview) | |
** Invoke java:test (first_time) | |
** Execute java:test | |
Running JUnit Tets | |
ant test | |
Buildfile: build.xml | |
clean: |
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
1. scope variable accesibility | |
... | |
var color = 'green'; | |
var fun = function() { alert(color) } | |
.. |
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
Few things to keep in mind when starting with Datamapper. | |
1. new records cannot be user in hashes | |
h = { Record.new => 1, Record.new => 2} | |
h.values # [2] | |
2. dm has associations |
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
Popularita českých osobností na Twitteru | |
======================================== | |
Jakou metodiku jsem zvolil | |
-------------------------- | |
Pro nalezení autorit jsem zvolil Pagerank algoritmus (http://en.wikipedia.org/wiki/PageRank). | |
K jeho správné funkci je třeba sestrojit orientovaný graf s vrcholy = autoritami a orientovanými | |
hranami ve směru kdo na koho odkazuje. |
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
-- This is how Haskell newb (me) writes Pascal's triangle | |
-- evolution of each row | |
pascal [1] = [1, 1] | |
pascal (x:xs) = pascal2 (x:xs) [1] | |
pascal2 (x:y:xs) o | xs == [] = (1:(x+y):o) | |
| otherwise = pascal2 (y:xs) ((x+y):o) |
OlderNewer