A few simple commands are required to convert DMG files to ISO format: sudo apt-get install dmg2img dmg2img file-to-convert.dmg mv file-to-convert.img image.iso
Convert DMG to ISO Ubuntu
CSS rotate or spin image
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…
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
ClickHandler for AnchorElement in GWT
ClickHandlers can only be added to Anchors in GWT, and not AnchorElements. The solution however is to wrap the AnchorElement in an Anchor and add the ClickHandler to the Anchor:…









