#module [ruby] ...
Ruby On Programming puzzle
by michal-pochwala.myopenid.com,
August 25, 2011 01:29
#module [ruby] ...
Ruby On Programming puzzle
by michal-pochwala.myopenid.com,
August 25, 2011 01:29
Optimization for seleting p...
#my try [ruby]
def randomize_case(string)
string.each_char.inject(""){ |result,char| result+ ((rand(2)) == 0 ? char.downcase : char.upcase) }
...
Ruby On Randomize case
by michal-pochwala.myopenid.com,
August 22, 2011 08:06
I am beginning with ruby so...
PHP On search with clean URL's
by michal-pochwala.myopenid.com,
August 19, 2011 02:01
edit:
I did some refactori...
<?php ...
PHP On search with clean URL's
by michal-pochwala.myopenid.com,
August 19, 2011 01:59
I did some refactoring, to ...
class HTMLTableFluentBuilder{
private var $title;
...
PHP On Improvised PHP class could ...
by michal-pochwala.myopenid.com,
August 03, 2011 05:22
I prefer to use fluent buil...
package reversestring; ...
Java On Reverse a String for demons...
by michal-pochwala.myopenid.com,
October 19, 2010 17:15
An example is too simple to...
<?php
class SelectComponent{
...
PHP On HTML Select Menu Template
by michal-pochwala.myopenid.com,
August 26, 2010 09:07
I think it is a nice approa...

Optimization for selecting ...