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 res = { | |
'status': 'error', | |
'message': 'No use case for what went wrong' | |
}; | |
if( !("username" in request.params) ) { | |
res.message = "No username provided"; | |
} | |
if( !("password" in request.params) ) { |
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 gulp = require('gulp'); | |
var browserSync = require('browser-sync').create(); | |
var ngrok = require('ngrok'); | |
gulp.task('default', function() { | |
browserSync.init({ | |
server: { | |
baseDir: "./public" | |
} |
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
// SASS mixin duplicating rucksack's cool cool solution on creating responsive font sizes. | |
// | |
// The calculation is: | |
// min-size + (min-size - max-size) * ( (100vw - min-width) / ( max-width - min-width) ) | |
// | |
@mixin font-responsive($fmin, $fdiff, $breakmin, $breakdiff) { | |
font-size: calc( #{$fmin} + #{$fdiff} * ((100vw - #{$breakmin}) / #{$breakdiff}) ); | |
@media(max-width: $breakmin) { | |
font-size: $fmin; | |
} |
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
# Credits go to: | |
# https://gist.github.com/kconragan/2510186 | |
defaults write com.sublimetext.3 ApplePressAndHoldEnabled -bool false | |
# Note: replace com.sublimetext.3 with whichever version of Sublime Text you are running | |
# eg. 'com.sublimetext.2' | |
# Alternately, if you want this feature disabled globally, you can enter this: |
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 path = { | |
watch: [ | |
'file(s) you want to watch' | |
// example: '**/*.html' | |
] | |
}; | |
// Include gulp | |
var gulp = require('gulp'); | |
var plugins = require('gulp-load-plugins')(); |