Skip to content

Instantly share code, notes, and snippets.

View hakunin's full-sized avatar

Michal Hantl hakunin

  • Ostrava, Czech Republic
  • 16:48 (UTC -12:00)
View GitHub Profile
include PocketRuby
class PlanningGame < Application
# domain objects
class Programmer < Record
Block.describe(self, {
:name => Title,
:special_skills => Text,
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>
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 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
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
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:
1. scope variable accesibility
...
var color = 'green';
var fun = function() { alert(color) }
..
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
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 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)