Skip to content

Instantly share code, notes, and snippets.

View prodis's full-sized avatar
💻
Writing code that generates business value

Fernando Hamasaki de Amorim prodis

💻
Writing code that generates business value
View GitHub Profile
@prodis
prodis / modulos_hooks_01.rb
Created March 31, 2012 20:04
Ruby Fundamental - Hooks (ganchos) de inclusão e extensão de módulos
module SomeInstanceMethods
def self.included(base)
puts "Module #{self} has been included by #{base}."
end
def some_instance_method
puts "Some instance method..."
end
end
@prodis
prodis / PogClassica.cs
Created April 15, 2012 18:15
POG clássica
try
{
// Algum código (provavelmente mais POG)
}
catch (Exception e)
{
throw new Exception(e.Message);
}
@prodis
prodis / modulos_metodos_globais_01.rb
Created April 30, 2012 11:36
Ruby Fundamental - Módulos para definir métodos globais
require 'logger'
module CoolLog
def logger
@cool_log_logger ||= ::Logger.new(STDOUT)
end
def level
@cool_log_level ||= :info
end
@prodis
prodis / Prodis.ExitPageConfirmer.js
Created May 26, 2012 08:14
JavaScript exit page confirmer object
function ExitPageConfirmer(message) {
this.message = message;
this.needToConfirm = false;
var myself = this;
window.onbeforeunload = function() {
if (myself.needToConfirm) {
return myself.message;
}
@prodis
prodis / alias_metodos_01.rb
Created October 1, 2012 00:04
Ruby Fundamental - Alias para métodos em Ruby
names = ["Akira", "Fernando", "Jose"]
names.length # => 3
names.size # => 3
@prodis
prodis / recursividade_hash_01.xml
Last active March 14, 2017 11:48
Ruby Fundamental - Usando recursividade para alterar valores de hash
<transaction>
<id>456</id>
<status>Aprovada</status>
<order_number>F2457</order_number>
<price>33.21</price>
<date_transaction>2012-12-13T12:35:30</date_transaction>
<date_release></date_release>
<payment>
<payment_method>Mastercard</payment_method>
<date_approval>2012-12-13T12:35:31</date_approval>
@prodis
prodis / .git_completation.sh
Last active December 11, 2015 21:49
Mac configuration files
#!bash
#
# bash completion support for core Git.
#
# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
# Distributed under the GNU General Public License, version 2.0.
#
# The contained completion routines provide support for completing:
#
@prodis
prodis / hash_values_01.rb
Last active December 11, 2015 23:58
Ruby Fundamental - Uma maneira não trivial de acessar valores de hash
my_hash[:status] if my_hash
# or
my_hash[:status] unless my_hash.nil?
@prodis
prodis / alias_metodos_de_classe_01.rb
Created March 29, 2013 18:18
Ruby Fundamental - Alias para métodos de classe
# You didn't write this code
class ExternalClass
def self.class_number
123 # Just to exemplify
end
def some_number
456 # Just to exemplify
end
end
@prodis
prodis / gist:5728513
Last active December 18, 2015 04:49 — forked from kincorvia/gist:4540489
# Typically in Rails to use VCR we setup the RSpec config like so:
RSpec.configure do |config|
config.extend VCR::RSpec::Macros #deprecated
end
# This gives us access to the use_vcr_cassette method:
describe Reviewed::Article do
use_vcr_cassette 'article/grill'
end