Wednesday, January 6, 2016

CSS - Creating High Resolution Background Images with CSS

http://www.sitepoint.com/watch-creating-high-resolution-background-images-with-css/

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

Friday, December 11, 2015

GRADLE - delete whole directory with all subdirectories

Override clean task:

clean {
    delete += 'dist'
}

If you do like this it will remove all files but leaves empty sub-directories:(!!!!!!)
clean {
    delete += fileTree('someDir')
}
or
clean {
    delete += fileTree('someDir').include('**/*')
}

Saturday, December 5, 2015

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/

Thursday, November 26, 2015

IDIOM - ready to take on the world

ready to take on the world - is an idiom

It means:

"to try to do a lot/too much"
"to try to fight with everyone"
In this particular case it probably means "trying to do too much".