{{route('auth.select_user_type', 'customer')}}
return Redirect::route('login');
return Redirect::to('user/login');
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
{ | |
"AL":{ "south_west":{"lat":-88.473227, "lng": 30.223334}, "north_east": { "lat": -84.88908, "lng": 35.008028} }, | |
"AK":{ "south_west":{"lat":-179.148909, "lng": 51.214183}, "north_east": { "lat": 179.77847, "lng": 71.365162} }, | |
"AS":{ "south_west":{"lat":-171.089874, "lng": -14.548699}, "north_east": { "lat": -168.1433, "lng": -11.046934} }, | |
"AZ":{ "south_west":{"lat":-114.81651, "lng": 31.332177}, "north_east": { "lat": -109.045223, "lng": 37.00426} }, | |
"AR":{ "south_west":{"lat":-94.617919, "lng": 33.004106}, "north_east": { "lat": -89.644395, "lng": 36.4996} }, | |
"CA":{ "south_west":{"lat":-124.409591, "lng": 32.534156}, "north_east": { "lat": -114.131211, "lng": 42.009518} }, | |
"CO":{ "south_west":{"lat":-109.060253, "lng": 36.992426}, "north_east": { "lat": -102.041524, "lng": 41.003444} }, | |
"MP":{ "south_west":{"lat":144.886331, "lng": 14.110472}, "north_east": { "lat": 146.064818, "lng": 20.553802} }, | |
"CT":{ "south_west":{"lat":-73.727775, "lng": 40.980144}, "north_east": { "lat": -71.786994, "lng": 42.0505 |
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
# Font Squirrel Font-face Generator Configuration File | |
# Upload this file to the generator to recreate the settings | |
# you used to create these fonts. | |
{"mode":"expert","formats":["ttf","woff","woff2","eotz","svg"],"tt_instructor":"keep","fix_vertical_metrics":"Y","fix_gasp":"xy","add_spaces":"Y","add_hyphens":"Y","fallback_custom":"100","fallback":"times","options_subset":"advanced","subset_range":["dutch","english","french","german","hungarian"],"subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0","rememberme":"Y"} |
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
top -o vsize `monitor` | |
!! `run last command` | |
!word `run last command with beginning of "word"` | |
!word:p `lis last commands with beginning of "word"` | |
say -v whisper "whispering voice from macbook" |
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
// ----------------------------- | |
// BAD EXAMPLE: | |
// style.less | |
.gallery{ | |
margin-top: 2rem; | |
} | |
// responsive.less | |
@media (max-width: 767px) { |
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
require('./content.js') | |
console.log("entry.") | |
# 1.bundle.js | |
require.ensure ["./input.coffee", "./module-b.coffee"], (require) -> | |
a = require("./module-b.coffee"); | |
# 2.bundle.js | |
require.ensure ["./input-2.coffee", "./module-c.coffee", "./module-b.coffee"], (require) -> |
vendor.js
is ~1.6MB
, loads in ~195ms
##Step 1
.pipe(plugins.rename('vendor.js'))
+ .pipe(plugins.uglify())
.pipe(gulp.dest('./dist/scripts'));
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
<div class="m-logo"> | |
<a href="/" title="site_title - slogan"> | |
<img src="logo.png"> | |
</a> | |
<h1>site_title</h1> | |
</div> |
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
(function (root, factory) { | |
if (typeof exports === 'object') { | |
// CommonJS | |
module.exports = factory(require('b')); | |
} else if (typeof define === 'function' && define.amd) { | |
// AMD | |
define(['b'], function (b) { | |
return (root.returnExportsGlobal = factory(b)); | |
}); | |
} else { |
NewerOlder