- http://ponyfoo.com/
- http://www.2ality.com/ (acá aprendí ECMAScript 6)
- http://addyosmani.com/blog
- http://rmurphey.com/
- https://alexsexton.com/
- http://carlosazaustre.es/blog/
- http://christianheilmann.com/
- http://dailyjs.com/ (este junta articulos muy buenos de otros blogs, muy bueno para conocer más blogs de a poco)
- http://davidwalsh.name/
- http://ariya.ofilabs.com/
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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Base16 Color Schemes/base16-ocean.dark.tmTheme", | |
"draw_white_space": "all", | |
"font_face": "Source Code Pro", | |
"font_size": 14, | |
"highlight_line": true, | |
"indent_to_bracket": true, | |
"line_padding_bottom": 3, | |
"line_padding_top": 3, |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> |
php app/console cache:warmup --env=prod --no-debug
and after:
rm -rf app/cache/*; chmod -R 777 app/cache
$ vagrant box add laravel/homestead https://atlas.hashicorp.com/laravel/boxes/homestead --insecure
composer global require "laravel/installer=~1.1"
I hereby claim:
- I am vaporic on github.
- I am vaporic (https://keybase.io/vaporic) on keybase.
- I have a public key whose fingerprint is 2D8F 0EAF F666 61B4 36EA E527 E5B8 5C89 B866 65F5
To claim this, I am signing this object:
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
.directive('autoFocus', function($timeout) { | |
return { | |
restrict: 'AC', | |
link: function(_scope, _element) { | |
_element[0].focus(); | |
} | |
}; | |
}) |
- FrontEnd
- HTML5
- CSS3
- Stylus
- Angular JS
- Gulp
- jQuery
- BackEnd
- Django 1.8.4
- PostgreSQL o MySQL
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
$.datepicker.regional['es-MX'] = { | |
renderer: $.ui.datepicker.defaultRenderer, | |
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', | |
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], | |
monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', | |
'Jul','Ago','Sep','Oct','Nov','Dic'], | |
dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], | |
dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], | |
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], | |
dateFormat: 'dd/mm/yy', |