TypeScript is a superset of JavaScript that lets you write “typed” ES6 code (define numbers, strings, booleans, etc.) while still allowing it to work in any browser out there by “compiling” it to ES5/ES3. I’ll be showing TypeScript code as well in this series when it applies to a specific ES6 feature.
Saturday, January 9, 2016
TypeScript - typed JavaScript working in browser like ES5/ES3
Taken from here: http://weblogs.asp.net/dwahlin/getting-started-with-es6-%E2%80%93-the-next-version-of-javascript
Friday, January 8, 2016
CSS - online gradient generator
A good online tool to generate different kind of CSS gradients.
http://www.colorzilla.com/gradient-editor/
http://www.colorzilla.com/gradient-editor/
Wednesday, January 6, 2016
CSS - Creating High Resolution Background Images with CSS
http://www.sitepoint.com/watch-creating-high-resolution-background-images-with-css/
Sunday, January 3, 2016
Tuesday, December 22, 2015
GIT - swap origin from master to develop branch
Easy steps to swap local branches from master to develop, do it from working directory:
git fetch && git checkout develop
git remote set-head origin develop
git fetch && git checkout develop
git remote set-head origin develop
Friday, December 11, 2015
GRADLE - delete whole directory with all subdirectories
Override clean task:
clean {
delete += 'dist'
}
clean {
delete += 'dist'
}
If you do like this it will remove all files but leaves empty sub-directories:(!!!!!!)
clean {
clean {
delete += fileTree('someDir')
}
or}
clean {
delete += fileTree('someDir').include('**/*')
}
}
Tuesday, December 8, 2015
MAVEN - Guide to naming conventions on groupId, artifactId and version
Guide to naming conventions on groupId, artifactId and version
https://maven.apache.org/guides/mini/guide-naming-conventions.html
https://maven.apache.org/guides/mini/guide-naming-conventions.html
Saturday, December 5, 2015
GULP - free Gulp.js coursre from John Papa (link)
https://www.pluralsight.com/courses/javascript-build-automation-gulpjs
Friday, December 4, 2015
CSS - best place to choose right color palette for your web app
Here you will find variety of web sites samples of different color palette
http://www.colourlovers.com/
http://www.colourlovers.com/
Subscribe to:
Posts (Atom)