Archives
A great presentation by Ilaj Grigorik Intelligent Ruby: Getting Started with Machine Learning from Ilya Grigorik on Vimeo.
A friend of mine, just tossed me this link.. http://ideone.com/ What makes Ideone different from any other pastebin is its compiler feature; Supporting about 20 programing language, you will be able to live compile (of course with some limitations) your code. Let’s find out the perl version running on that server [sourcecode language="c"] print $]; [...]
It was about time, that the PHP team finally included a max_file_uploads directive to limit the number of file upload per request (default is of 20). (cf. http://www.php.net/ChangeLog-5.php#5.3.1) Until PHP 5.3.1, it was possible to send an X number of file upload request thus creating an X amount of temporary file on the targeted system.. [...]
For those who are subject to dynamically assigned DSL IP, you would probably be familiar with a site such as http://myip.dk Here is a small script I use to fetch my public IP for other script processes updated “due to changes on the site myip.dk, I rewrote the script” #!/bin/bash link=`lynx -dump -listonly ‘http://myip.dk’ | [...]
One of the most annoying matter I have met when administrating a server was following and fixing messes other users (who happen to have root password) would do on the server. Random users with root passwords often know two things… “sh” and “history -c”… and of course “I didn’t do it”. Now, while it is [...]