Public Gists by fabiokung

Gravatar
Mon Aug 03 08:40:58 -0700 2009
1
2
3
Lean Software Development: An Agile Toolkit by Mary Poppendieck
http://www.amazon.com/gp/product/0321150783/
 
Gravatar
Tue Jul 28 13:49:26 -0700 2009
1
2
3
class ArcoIris
  include Enumerable
 
Gravatar
Wed Jul 22 14:00:38 -0700 2009
1
2
3
Scala:
( _.bla() )
 
gist: 73771 Rake tasks for cucumber wit...
Gravatar
Wed Mar 04 00:31:00 -0800 2009
1
2
3
require 'cucumber/rake/task'
 
namespace :cucumber do
Gravatar
Mon Mar 02 08:52:42 -0800 2009
1
2
3
def method_missing(name, *args)
  puts "<#{name}>#{args[0]}"
  yield if block_given?
gist: 36906 WebAppDeployer for jetty, w...
Gravatar
Tue Dec 16 17:31:34 -0800 2008
1
2
3
// WebAppDeployer for jetty, which supports different war folders for different virtual hosts
 
package br.com.caelum.jetty;
Gravatar
Mon Nov 24 10:35:32 -0800 2008
1
2
3
<path id="lib.classpath">
  <pathelement location="${build.lib.dir}/retroweaver-2.0.5.jar"/>
  <pathelement location="${build.lib.dir}/retroweaver-rt-2.0.5.jar"/>
Gravatar
Mon Sep 22 10:16:51 -0700 2008
1
2
3
public class Sistema {
 
  public void cadastra(Usuario usuario) {
Gravatar
Mon Sep 22 09:58:36 -0700 2008
1
2
3
public class Sistema {
 
  @EnviaEmail(Emails.CONFIRMACAO)
Gravatar
Mon Sep 22 09:43:50 -0700 2008
1
2
3
public class Bicicleta {
  @Transient
  private double velocity;
Gravatar
Mon Sep 22 09:36:11 -0700 2008
1
2
3
@Entity
public class Carro {
  // ...
gist: 9754 http://jira.codehaus.org/br...
Gravatar
Tue Sep 09 13:16:54 -0700 2008
1
2
3
$ jruby -J-Xss256k -d -e "require 'java'; require 'servlet-api-2.5.jar'; module A; include Java::JavaxServletHttp::HttpServletResponse; end"
/Users/fck/Development/Ruby/jruby-1.1.4/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/module.rb:16 warning: instance variable @java_aliases not initialized
/Users/fck/Development/Ruby/jruby-1.1.4/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/module.rb:16 warning: instance variable @java_aliases not initialized
Gravatar
Tue Jul 29 14:35:20 -0700 2008
1
2
3
AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.configure();
cfg.addAnnotatedClass(Produto.class);