When using Bootstrap you might want some page elements to react on the viewport. The best method will still be using the fluid grid system, so try to setup your page using the grid system. But in some cases you want to use a CSS class and/or Javascript to tweak your layout. Continue reading
Xcode 7 iOS Simulator shortcut in Applications
Sometimes you want to open Xcode’s iOS Simulator without opening Xcode. Run the following command in Terminal to create a shortcut link in your Applications folder. Note that it is for Xcode 7.
ln -s /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app "/Applications/iOS Simulator.app"
JpegOptim installeren in OS X
Met jpegoptim kun je via een Terminal commando snel en eenvoudig afbeeldingen optimaliseren. De tool is standaard niet beschikbaar in OS X, dus deze moet je zelf installeren.
Op jpegoptim te installeren heb je een package manager nodig. Een veel gebruikte package manager is Homebrew. Dit artikel gaat er vanuit dat je Homebrew al hebt geïnstalleerd. Zo niet dan moet je Homebrew installeren op OS X. Continue reading
OS X Homebrew installeren
Om Unix tools op OS X te installeren heb je een package manager nodig. Helaas heeft OS X standaard geen package manager, maar deze is vrij eenvoudig te installeren. Homebrew is hiervan de bekendste, maar je kunt ook MacPorts of Fink gebruiken. Continue reading
Xcode 6 iOS Simulator shortcut in Applications
Sometimes you want to open Xcode’s iOS Simulator without opening Xcode. Run the following command in Terminal to create a shortcut link in your Applications folder. Note that it is for Xcode 6.
ln -s /Applications/Xcode.app/Contents/Developer/Applications/iOS\ Simulator.app /Applications/iOS\ Simulator.app
Ringtone ‘The Phone’
Momenteel is het programma ‘The Phone‘ op de televisie te zien. Een spel waarin Eddy Zoëy twee willekeurige personen (die zich hebben opgegeven voor een mysterieus spel) op een willekeurig moment opbelt en ze de vraag stelt of ze mee willen doen aan het spel. Bij akkoord moeten de twee personen elkaar eerst zien te vinden. Daarna moeten de kandidaten vijf sleutels zien te vinden waarna een kluis met inhoud (beginnende bij €25.000,-) kunnen openen. Continue reading
Form captcha
Form can generate spam if they’re not well programmed. A method to block spam is by adding a captcha field. This will generate a (image) code and add it to the session. Every page load the code will be renewed. Visitors must enter the code inside an input field and the submit php code must check the user’s input with the session value. Continue reading