Share mouse and keyboard between different computers
September 15, 2005 by kdnewmanWigits – Konfavulator
September 15, 2005 by kdnewmanReach for the moon with Google
September 15, 2005 by kdnewmanResource links
September 15, 2005 by kdnewmanScriptSearch.com: Your Ultimate Resource for scripts, source code, books, examples, help and more!
MacUpdate: Macintosh Software & Games
EarthWeb.com: The IT Industry Portal — JavaScripts
Source Code Encrypter
Webmonkey: The Web Developer’s Resource
Hotscripts.com – The net’s largest PHP, CGI, Perl, JavaScript and ASP script collection and resource web portal
Multimap.com – Online Maps to Everywhere
TinyURL!Aerial Photography Stock
Domain name registration and website hosting
Flash Kit, A Flash Developer Resource – Online resource for Macromedia Flash Tutorials SWF FLA images clip art Sounds WAVS Animations Help and Support
Chattyfig : home
XE.com – The Universal Currency Converter ®
Press: CyanBlue’s 500 Useful Threads List
Free Translation and Professional Translation Services
ICD Photos – award-winning 12p prints + 200MB online photo albums for sharing
Guardian Unlimited
Frames in HTML documents
The IFrames Lowdown
BBC – bbc.co.uk homepage – Home of the BBC on the InternetDownload.com
stock.xchng – the leading free stock photography site
Pantone chart
DaFONT :: Bitmap | Pixel | Screen Fonts | Alias Fonts (page 1/30)
Online Conversion – Convert just about anything to anything else
ColorCombos.com – Web Color Combinations Tool and Library
Simplewire : SMS Software Development Kit
Flash Classes!!!
mod_rewrite – Apache HTTP Server
BJC Components API Documents
Hosting Unlimited .:. Basic Hosting Package
MySQL Reference Manual
PHP: Hypertext Preprocessor
JavaScript Source: Free JavaScripts, Tutorials, Example Code, Reference, Resources, And Help
FavIcon from Pics — favicon.ico for your website
Main Page – Wikipedia, the free encyclopedia
Hybrid City – Flash 8
September 15, 2005 by kdnewmanThis is one of the first flash 8 sites created. it is HUGE, so be patient, also the japanese girl who guides you can be a bit annoying, but it’s brilliant, some lovely effects using the new features of flash 8. very nicely designed and put together. Prepare for a lot of loading but very nice.. http://www.hybridcity.jp/
Underworld Evolution Trailer – Flash 8
September 15, 2005 by kdnewmanA little flash 8 trailer that macromedia made for sony is here, this uses the some of the new features very subtly, good piece of work. http://www.sonypictures.com/movies/underworldevolution/
phpMyAdmin in flash
September 15, 2005 by kdnewmanJCB song – nice animation
September 15, 2005 by kdnewmanPenner colour equations – flash script .as
September 15, 2005 by kdnewman//create a negative image – invert all colors
Color.prototype.negative = function () {
var trans = new Object();
trans.ra = trans.ga = trans.ba = -100;
trans.rb = trans.gb = trans.bb = 255;
this.setTransform(trans);
}//Robert Penner June 2001 – www.robertpenner.com
//tint an object with a color just like Effect panel
//r, g, b between 0 and 255; amount between 0 and 100
Color.prototype.setTint = function (r, g, b, amount) {
var percent = 100 – amount;
var trans = new Object();
trans.ra = trans.ga = trans.ba = percent;
var ratio = amount / 100;
trans.rb = r * ratio;
trans.gb = g * ratio;
trans.bb = b * ratio;
this.setTransform(trans);
}//Robert Penner June 2001 – www.robertpenner.com
//brighten an object just like Effect panel
//bright between 0 and 100
Color.prototype.setBrightness = function (bright) {
var percent = 100 – Math.abs(bright);
var offset = 0;
if (bright > 0) offset = 256 * (bright / 100);
var trans = new Object();
trans.ra = trans.ga = trans.ba = percent;
trans.rb = trans.gb = trans.bb = offset;
this.setTransform(trans);
}//Robert Penner June 2001 – www.robertpenner.com
//push an object’s colors around – interesting fx
//r, g, b between -255 and 255
Color.prototype.setTintOffset = function (r, g, b) {
var trans = new Object();
trans.rb = r;
trans.gb = g;
trans.bb = b;
this.setTransform(trans);
}//Robert Penner June 2001 – www.robertpenner.com
//push an object’s brightness around – fx like eneri.net
//offset between -255 and 255
Color.prototype.setBrightOffset = function (offset) {
var trans = new Object();
trans.rb = trans.gb = trans.bb = offset;
this.setTransform(trans);
}//Robert Penner June 2001 – www.robertpenner.com
//reset the color object to normal
Color.prototype.reset = function () {
var trans = new Object();
trans.ra = trans.ga = trans.ba = 100;
trans.rb = trans.gb = trans.bb = 0;
this.setTransform(trans);
}//Robert Penner June 2001 – www.robertpenner.com
// EXAMPLE ON A MOVIE CLIP
onClipEvent (load) {
meCol = new Color(this);
meCol.negative();
}
Days to hours – php script
September 15, 2005 by kdnewmanfunction format_uptime($seconds) {
$secs = intval($seconds % 60);
$mins = intval($seconds / 60 % 60);
$hours = intval($seconds / 3600 % 24);
$days = intval($seconds / 86400);
if ($days > 0) {
$uptimeString .= $days;
$uptimeString .= (($days == 1) ? ” day” : ” days”) . “, “;
}
if ($hours > 0) {
$uptimeString .= $hours;
$uptimeString .= ((hours == 1) ? ” hour” : ” hours”) . “, “;
}
if ($mins > 0) {
$uptimeString .= $mins;
$uptimeString .= (($mins == 1) ? ” minute” : ” minutes”);
}
if ($secs > 0) {
$uptimeString .= “, ” . $secs;
$uptimeString .= (($secs == 1) ? ” second” : ” seconds”);
}
return $uptimeString;
}