Stock Quote app

Blogged by webmilhouse as Flash — webmilhouse Thu 29 Apr 2004 7:27 am

Been having fun with Flash MX 2004 Pro, and using web services to update data components. I took the tutorial and here is the result:

Stock Quote App

This connects to the WSDL on SwanandMokashi.com. It then takes the output and displays it in a simple DataGrid component. Fun!

Using mod_gzip to compress HTML content

Blogged by webmilhouse as Linux — webmilhouse Wed 28 Apr 2004 9:03 am

A good article on the basics of serving up content that is compressed before it is sent to a browser, saving bandwidth.

Read the article here.

Interesting Look at Garbage Collecting in OO

Blogged by webmilhouse as Java — webmilhouse Wed 28 Apr 2004 6:39 am

An interesting article on the history and techniques of garbage collection has been posted on OS news. It describes the implementations in Java and .NET. It is a good overview with references to more specific content at the end.

Read the article here.

Move multiple files by date with find

Blogged by webmilhouse as Linux — webmilhouse Tue 27 Apr 2004 11:43 am

To do this, try this:

find * -mtime +480 -exec mv {} ../archive/ \;

This is a find all (*) in the current directory, with the time set to 480 days ago (-mtime +480) and then executing a move command (-exec mv) on the current file {} and move that file to ../archive/, with the last part (\;) means to do this for each match. You can change -exec .. to just -print and it will print out what was found (or -exec ls -la).

Common Security Vulnerabilities in E-commerce

Blogged by webmilhouse as ColdFusion — webmilhouse Tue 27 Apr 2004 6:39 am

SecurityFocus has a good article on the most common forms of security vulnerabilities for e-commerce systems, but I think that a lot of web apps may be vulnerable to some of these as well (think sql injection, session hijacking, and so forth).

Here is the article on SecurityFocus.

One of the links at the bottom of the article is for the Open Web Application Security Project (OWASP), an open forum to discuss web application security.

Check out OWASP here.

Load Balancing with Windows 2003

Blogged by webmilhouse as ColdFusion — webmilhouse Mon 26 Apr 2004 7:01 am

Here is a good article from Brandon Purcell (Macromedia) on setting up a couple of Windows 2003 servers with the built-in Network Load Balancing (NLB) for clustering Jrun/Coldfusion servers.

Read the article here.

Fuel efficient house

Blogged by webmilhouse as General — webmilhouse Tue 20 Apr 2004 4:04 pm

I am totally doing this to my house: Check out the article here.

I am really tired of paying propane and electricity bills.

New Video Tutorials from Macromedia

Blogged by webmilhouse as ColdFusion — webmilhouse Mon 19 Apr 2004 6:57 am

Check out these free video tutorials on the basics of ColdFusion and some more advanced concepts:

Here is the link to macromedia.

All the videos are done in Flash.

Globalization and Character Set

Blogged by webmilhouse as ColdFusion — webmilhouse Thu 15 Apr 2004 6:43 am

There is a good article over at CFDJ that describes the different character encodings for anyone having to add different language capabilities to their website.

Read the article here.

Verisign Root CA expiration

Blogged by webmilhouse as Web Development — webmilhouse Mon 12 Apr 2004 2:01 pm

Even though this was posted on January 8, 2004, the root expiration of the Verisign certificate is still causing problems at my work.

Here is the slashdot story.

Here is the link to the Verisign explanation.

Here is how to fix it from Verisign.

Collaboration and Software Development

Blogged by webmilhouse as Web Development — webmilhouse Mon 12 Apr 2004 8:55 am

A great article on why the current collaboration tools used are insufficient for their task, and what we can do about it.

Read the article here.

Linux Tools Roundup

Blogged by webmilhouse as Linux — webmilhouse Wed 7 Apr 2004 7:19 am

DMIDECODE: There is a great tool to dumping the computer’s DMI (SMBIOS) table information into human readable form.

Here is the link: www.nongnu.org/dmidecode/

SCREEN: Also, there is a nice overview of what the command ’screen’ can do on a Linux system no Linux.com.

Read the article here.

SYSADMIN TOOLS: There is another good article on linux.com that has some interesting tools I don’t use.

Read the article here.

CSS Zen Garden

Blogged by webmilhouse as Web Development — webmilhouse Mon 5 Apr 2004 8:24 pm

Found a great site that has a lot of beautiful CSS designs all using the same XHTML code, just different stylesheets. The designers are amazing, thinking of things I would never think of.

Go to www.csszengarden.com

Using *NIX tools to secure Windows

Blogged by webmilhouse as General — webmilhouse Mon 5 Apr 2004 4:12 pm

A great article from SecurityFocus about using common *Nix tools to add layered security in front of MS Exchange and other vulnerable MS Groupware tools.

Here is part 2 of the series.

Proudly powered by wordpress 2.7 - Theme based on Back in Black 2 by neuro, modded by me.