Skip to content

Instantly share code, notes, and snippets.

View vaporic's full-sized avatar
🏠
Working from home

Hugo Epinosa vaporic

🏠
Working from home
View GitHub Profile
@vaporic
vaporic / sublime-prefs.json
Created February 7, 2016 14:02 — forked from marulango/sublime-prefs.json
Mi configuración de ST3
{
"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,
@vaporic
vaporic / .htaccess
Last active February 7, 2016 14:05
.htaccess wordpress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
@vaporic
vaporic / sitios.md
Last active January 8, 2016 17:13 — forked from sergiodxa/sitios.md
Sitio que sigo por RSS
@vaporic
vaporic / deploy_symphony.md
Last active February 7, 2016 14:18
Deploy symphony production

php app/console cache:warmup --env=prod --no-debug

and after:

rm -rf app/cache/*; chmod -R 777 app/cache

@vaporic
vaporic / install_homestead.md
Last active October 24, 2015 18:52
Install Homestead VirtualBox
@vaporic
vaporic / install_laravel.md
Last active October 23, 2015 17:51
Installer Laravel

composer global require "laravel/installer=~1.1"

Keybase proof

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:

@vaporic
vaporic / autofocus-angular.js
Created October 8, 2015 18:06
Autofocus AngularJ
.directive('autoFocus', function($timeout) {
return {
restrict: 'AC',
link: function(_scope, _element) {
_element[0].focus();
}
};
})
@vaporic
vaporic / stack_tech.md
Last active October 23, 2015 18:46
ChillAndGo - Stack Tech
  • FrontEnd
    • HTML5
    • CSS3
    • Stylus
    • Angular JS
    • Gulp
    • jQuery
  • BackEnd
    • Django 1.8.4
  • PostgreSQL o MySQL
@vaporic
vaporic / datepicker.js
Last active February 29, 2016 05:40
DatePicker Jquery UI en Español
$.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',