Robert Devenyi - Programmer / Software Developer
|
|
Recent Blog Postings
JQuery Easy Slider 1.7 - With Text Labels
The Easy Slide plugin is a great light weight JQuery plugin used for displaying a series of photos, content or panels. In the latest addition they offer the ability to include numbered linked panels instead of small squares. I had the need to change the
How software acts like a virus that attacks the human body and how minor changes in your software can protect you
This post will talk about how software acts like a virus that attacks the human body and how minor changes in your software can protect you. With a simple SMF registration example.
The debate over custom software versus prebuild software has been shif
PHP - retrieve newest file on remote server through FTP
Ever needed a simple script that could FTP into a directory and retrieve the newest file? This PHP script does exactly that,
<?php
$ftp_server="localhost";
$ftp_user_name="username";
$ftp_user_pass="password";
$conn_id = ftp_connect($ftp_server
|