Skip to content

Instantly share code, notes, and snippets.

View pbalduino's full-sized avatar

Plínio Balduino pbalduino

View GitHub Profile
@pbalduino
pbalduino / thread-macro.clj
Last active August 29, 2015 14:22
-> e ->>
(defn minha-funcao [a b]
(println "a =" a "- b=" b))
(-> "valor"
(minha-funcao "outro"))
; a = valor - b= outro
(->> "valor"
(minha-funcao "outro"))
; a = outro - b= valor
@0x41e class Foo
att_accessor :foo
def initialize()
@foo = []
end
end
x = Foo.new
@pbalduino
pbalduino / udptest.clj
Created May 23, 2016 18:06
A small test with UDP
(ns udptest.core
(:import [java.net DatagramSocket
DatagramPacket
InetAddress]
[java.io BufferedReader
InputStreamReader]))
(set! *warn-on-reflection* true)
(defn- client []
class Rails::Boot
def run
load_initializer
Rails::Initializer.class_eval do
def load_gems
@bundler_loaded ||= Bundler.require :default, Rails.env
end
end
@pbalduino
pbalduino / preinitializer.rb
Created July 12, 2016 14:29
config/preinitializer.rb
begin
require "rubygems"
require "bundler"
rescue LoadError
raise "Could not load the bundler gem. Install it with `gem install bundler`."
end
if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.24")
raise RuntimeError, "Your bundler version is too old for Rails 2.3." +
"Run `gem install bundler` to upgrade."
@pbalduino
pbalduino / environment.rb
Created July 12, 2016 14:31
config/environment.rb
# Be sure to restart your server when you modify this file
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.10' unless defined? RAILS_GEM_VERSION
# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Rails::Initializer.run do |config|
# Settings in config/environments/* take precedence over those specified here.
@pbalduino
pbalduino / environment.rb
Created July 12, 2016 14:34
config/environment.rb
# Be sure to restart your server when you modify this file
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.10' unless defined? RAILS_GEM_VERSION
# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Rails::Initializer.run do |config|
# Settings in config/environments/* take precedence over those specified here.
@pbalduino
pbalduino / Gemfile
Created July 12, 2016 14:35
Gemfile
source 'http://gemcutter.org'
gem "bj"
gem "hpricot", "~> 0.6"
gem "sqlite3-ruby", "~> 1.3.1", :require => "sqlite3"
gem "aws-s3", :lib => "aws/s3"
gem "rails", "= 2.3.10"
gem "authlogic", "~> 2.1.6"
group :development, :test do
gem 'mongrel', :require => false
@pbalduino
pbalduino / star.logo
Created August 1, 2016 14:58
A little star with Logo