Simply add the spin class to the image, and change the value of the text highlighted in red to increase or decrease the rate of spin. .spin { animation: roll 8s…
CSS rotate or spin image
Adjust Bootstrap Navbar breakpoint
Sometimes the Bootstrap Navbar collapses into the minified version too early, or too late. The following snippet allows you to adjust at what point the collapsing takes place (courtesy of…
No wrap text CSS
If you would like to display some text without line breaks within that text, you can apply the following CSS to the p or span element surrounding the text in…
Docker no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS?
Just after installing Docker, and you try to pull a pre-built image, you might receive the the following error: no such file or directory. Are you trying to connect to…
Add title to disabled button bootstrap
A silly little one here: Your bootstrap button (or nasty default HTML button) is disabled, but you need to add a title to it. The solution: simply add a div…
Change default upload size PHP WordPress Ubuntu
To edit the default upload size for WordPress on Ubuntu, edit the following file: /etc/php5/apache2/php.ini Search for upload_max_filesize and change this to the desired value. Reload Apache with service apache2 reload
Download entire website including css, js, and images in Ubuntu
wget –mirror -p –convert-links -P LOCAL-DIR/ WEBSITE-TO-COPY
Center an image with CSS
Nice and simple. In your CSS: img.center { display: block; margin-left: auto; margin-right: auto; } And then in your HTML: Courtesy of about tech
Install Wine 1.7 on Ubuntu 14.04
Step 1 sudo add-apt-repository ppa:ubuntu-wine/ppa Step 2 sudo apt-get update Step 3 sudo apt-get install wine1.7 winetricks
Difference between XMS and XMX flags for java
The Xmx flag specifies the maximum memory allocation pool for the Java Virtual Machine (JVM), while Xms specifies the initial memory allocation pool. That means your JVM will be started with Xms…









