26 March, 2016

Processing - cross platform

Processing can export to Windows and Linux. For a Mac you need a developer license. Alternative: publish in Python. In the wiki it's said that you need to run OS X in order to export to that OS.

02 March, 2016

WordPress Xampp on Mac - how to install themes or plugins

On a Mac WordPress via Xampp you cannot install themes or plugins because of the settings. In a terminal do like this:

# sudo -i
# (write your password)
# cd /Applications/Xampp/xamppfiles

Now find out where your WordPress files are and cd to the relevant folder, then do something like this:

# chmod -R 777 wordpress/
# chown daemon:daemon wordpress/

Now ... this is a quick and very, very dirty fix. In a production environment the folders should have chmod 755 and the files chmod 644.