View gist:475f6d1cdbeee99479fb72ee1e26b53c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.git | |
.gitignore | |
.cache | |
docker-compose.yml | |
### Git ### | |
# Created by git for backups. To disable backups in Git: | |
# $ git config --global mergetool.keepBackup false | |
*.orig |
View gist:91dbe6031d099527bbc6c5a75e51d505
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This avoid Deadlock | |
module ActiveRecord | |
module ConnectionAdapters | |
class Transaction | |
def before_commit_records | |
return unless records && @run_commit_callbacks | |
records.uniq.sort_by(&DeadlockPreventionOrder).each(&:before_committed!) | |
end |
View gist:1304e3ebde7c937a987c8bb9fee83830
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Validator | |
def self.included(klass) | |
klass.extend ClassMethods | |
end | |
module ClassMethods | |
def inherited(child_class) | |
child_class.instance_variable_set :@required_fields, self.required_fields | |
end |
View gist:090c9da3fa5b6d84721988772ad92a3d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cree estos directorios en donde tiene su app: | |
# docker | |
# mysql | |
# mysql_data (vacio) | |
# mysql_init | |
# initial.sql (puede estar en gz) o si quiere no existir, es la db por defecto | |
# php | |
# php-overrides.ini # cualquier configuracion del php.ini que quiera | |
# ejecutar |
View zpreztorc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Sets Prezto options. | |
# | |
# Authors: | |
# Sorin Ionescu <sorin.ionescu@gmail.com> | |
# | |
# | |
# General | |
# |
View .slate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config defaultToCurrentScreen true | |
config nudgePercentOf screenSize | |
config resizePercentOf screenSize | |
config secondsBetweenRepeat 0.1 | |
config checkDefaultsOnLoad true | |
config focusCheckWidthMax 3000 | |
config windowHintsDuration 5 | |
config windowHintsSpread true | |
config windowHintsOrder persist | |
config windowHintsShowIcons true |
View 0_reuse_code.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
View gist:3789979
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
App::uses('AppModel', 'Model'); | |
/** | |
* Setting Model | |
* | |
*/ | |
class Setting extends AppModel { | |
/** | |
* Display field |
View gist:3725272
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# modo de uso de emails | |
options = {} | |
gmail.emails(options) do |email| | |
# aqui tengo cada email.. | |
end | |
# Quiero crear un metodo llamado search que me llame emails de un modo particular, la idea es que esto funcione: | |
gmail.search('pepito moreno') do |email| | |
# aqui tendria cada email, igual que si hubiera llamado gmail.emails |
NewerOlder