When viewing your SSL certification details in Chrome you may notice an annoying yellow warning icon with the error message “Your connection had to be retried using SSL 3.0 This typically means the server is using very old software and may have other security issues” This warning technically doesn’t affect or hurt anything but of [...]
Connect to VNC over SSH
Connecting to your VNC server over SSH is easily done and you most likely don’t need any special software to do so. Any system that has SSH installed can connect using an SSH Tunnel. I go into more detail about the concept on a separate post about mounting OSX AFS shares over SSH. First you [...]
PHP on OSX: Can't connect to local MySQL server through socket '/var/mysql/mysql.sock'
When installing PHP and MySQL on OSX you may get the error Can’t connect to local MySQL server through socket ‘/var/mysql/mysql.sock’. Or you may also get “No such file or directory” when calling mysql_connect from a PHP page. This occurs because PHP is looking for the file mysql.sock in it’s typical installation location of /var/mysql/mysql.sock. [...]
Binding Flex TextInput UI Controls to a DataProvider
In Flex when you bind data to a UI control like a DataGrid, the grid cells refresh every time the dataSource changes. The reverse is also true if the DataGrid is enabled for editing. That is, the dataSource is also updated when you edit a cell. The TextInput can be bound as well so that [...]
Using WGET to automate web-based applications
wget in combination with cron is a useful utility for automating processes in a web application. It’s possible to run most scripting languages from the command line, but sometimes it’s tricky to get those to run correctly when they don’t have the server context. One simple way to achieve this is to write your automation [...]