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
# frozen_string_literal: true | |
# This incorporates sorting transaction callbacks for `belongs_to` to avoid | |
# accidental deadlocks due to `touch: true` configuration. | |
# | |
# This sort the `updated_at` queries first by table name. As records within a | |
# single table could also appear in any order it also sort by id. Lastly, | |
# it sorts looking up the longest `belongs_to` chain that a model can appear in | |
# and update the deepest models first. |
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 |
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 |
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 |
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 |
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 | |
# |
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 |
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 |
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 |
NewerOlder