#Glossary
- LC-{PERIOD} Last commit on {PERIOD}
- LS Low Support
http://dev.mysql.com/doc/refman/5.7/en/storage-requirements.html | |
Column type Storage required | |
DATE 3 bytes | |
DATETIME 8 bytes | |
TIMESTAMP 4 bytes | |
TIME 3 bytes | |
YEAR 1 byte |
http://dev.mysql.com/doc/refman/5.7/en/storage-requirements.html | |
Column type Storage required | |
DATE 3 bytes | |
DATETIME 8 bytes | |
TIMESTAMP 4 bytes | |
TIME 3 bytes | |
YEAR 1 byte |
// Somewhere in your controllers for this given example | |
// Example functions | |
$scope.itemOnLongPress = function(id) { | |
console.log('Long press'); | |
} | |
$scope.itemOnTouchEnd = function(id) { | |
console.log('Touch end'); | |
} |
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"sourceMap": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"removeComments": false, | |
"noImplicitAny": false, |
var _ = require('lodash'); | |
/*** | |
* | |
* parser used to work with http://gruntjs.com/api/grunt.option | |
* | |
* | |
* Author [email protected] | |
* | |
* - supports boolean params |
#Glossary
//converts a $color into a contrast color | |
@function mr-smart-contrast($color) { | |
@if (lightness($color) > 50) { | |
@return rgba(0,0,0,0.9); // Lighter backgorund, return dark color | |
} @else { | |
@return rgba(255,255,255,0.9); // Darker background, return light color | |
} | |
} |
This is the follow up to a post I wrote recently called From Require.js to Webpack - Party 1 (the why) which was published in my personal blog.
In that post I talked about 3 main reasons for moving from require.js to webpack:
Here I'll instead talk about some of the technical challenges that we faced during the migration. Despite the clear benefits in developer experience (DX) the setup was fairly difficult and I'd like to cover some of the challanges we faced to make the transition a bit easier.
docker-gen is able to generate a nginx configuration | |
https://github.com/jwilder/docker-gen/blob/master/templates/nginx.tmpl |
//import these libraries | |
import java.util.ArrayList; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonArray; | |
import com.google.gson.JsonObject; | |
import com.google.gson.JsonParser; | |