$ vagrant box add laravel/homestead https://atlas.hashicorp.com/laravel/boxes/homestead --insecure
php app/console cache:warmup --env=prod --no-debug
and after:
rm -rf app/cache/*; chmod -R 777 app/cache
- 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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> |
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
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0 | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
- ( Intro to Computer Science ) - https://www.udacity.com/courses/cs101
- ( Inform谩tica 101 Stanford) - https://www.coursera.org/course/cs101
- ( Aprende a Programar: Los Fundamentos ) - https://www.coursera.org/course/programming1
- ( Introduction to Programming in Java ) - http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-092-introduction-to-programming-in-java-january-iap-2010/index.htm
- ( Google's Python Class ) - https://developers.google.com/edu/python/
- ( Introducci贸n a la Programaci贸n Interactiva en Phyton (Parte 1) ) - https://www.coursera.org/course/interactivepython1
- ( Design of Computer Programs ) - https://www.udacity.com/courses/cs212
- ( Aprendiendo a Programar: Elaboraci贸n de C贸digo de Calidad ) - https://www.coursera.org/course/programming2
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
{!! Form::select('mark', ["" => "Selecciona una marca"] + App\Models\Marcas::lists('mark', 'id')->all(), (isset($cars)) ? $cars->marca->id : null, ['class' => 'form-control car_mark']) !!} |
Only files under 25 MB can be previewed with the Google Drive viewer.
Google Drive viewer helps you preview over 16 different file types, listed below:
- Image files (.JPEG, .PNG, .GIF, .TIFF, .BMP)
- Video files (WebM, .MPEG4, .3GPP, .MOV, .AVI, .MPEGPS, .WMV, .FLV)
- Text files (.TXT)
- Markup/Code (.CSS, .HTML, .PHP, .C, .CPP, .H, .HPP, .JS)
- Microsoft Word (.DOC and .DOCX)
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
var express = require('express'); | |
var app = express(); | |
app.get('/', function(req, res){ | |
res.send('Hola mundo!'); | |
}); | |
app.listen(3000, function(err){ | |
if(err) return console.log('Hubo un error'), process.exit(1); |