Archive for the 'Web Development' Category

Install the MySql JDBC Adaptor on a Mac

It is fairly easy to install the JDBC adaptor on a Mac, you just need to know where to copy the jar file.
Go to MySQL Downloads and download the ZIP archive of the latest stable release of MySQL Connector/J. At time of this writing this is version 5.1.
Assuming this file was downloaded in a folder [...]

Useful Javascripts

Walter Zorn has useful javascripts for vector graphics, drag and drop, tooltips and image rotation.
YUI-EXT is a comprehensive Javascript library for developing web applications.
Vector graphics class for Ext
Tree panel with context menu
Drag and drop in a grid
Modern Blue Design has an interesting article on how to fight spam using CSS

Best Web 2.0 Web Sites

Real World Software Development has a comprehensive list of web 2.0 web sites including bookmarking sites, social communities, email, image and video sharing, and the list is getting longer.
One application that has been omitted from all the lists I’ve seen so far is Outlook Web Access from Microsoft. Sure, it needs a Microsoft Exchange server [...]

Playing with Ruby

If you’d like to give Ruby a go, heres a quick tutorial on how to get it up and running on your PC.
First off, you have a choice of two development environments:

Instant Rails, the command line environment, or
RadRails, the Eclipse based IDE (Integrated Development Environment).

Cool WordPress Plugins

Some very cool WordPress plugins to spice up your blog.

Moblogging with Wordpress 2.0

Moblogging is posting articles to the internet from a mobile device such as your mobile phone, PDA, or laptop.
By default, Wordpress comes with the functionality to let you post items from your email account or mobile phone. However there are some limitations, for example the default wp-mail.php file doesn’t support attached images or files, [...]

Installing Postie for Wordpress

I’ve been keeping notes while setting up Wordpress on my PC at home. What I really want is to be able to moblog – post articles from my phone. Its been difficult, but it looks like its just about starting to work. The hard part is getting the Postie mail plugin to work with Wordpress [...]

Software Development Tools

Some interesting new development tools and platforms are available these days.
Microsoft is providing beta versions of its Visual Studio 2005
Mono is an open source IDE for developing .NET client and server applications on Linux, Solaris, Mac OS X, Windows, and Unix. from http://www.mono-project.com/
Grasshopper is a Visual Studio .NET plug-in which enables you to use C# [...]

File Storage Sites

When email limits the size of files you want to send to someone, try one of these file transfer websites.

http://www.filesend.to 5 files, 100MB, 5 downloads, 3 days retention
http://okurin.bitpark.co.jp/ 250MB, 10 downloads, 5 days retention
www.filebank.co.jp 10 files, 100MB, 5 downloads, 3days retention
www.fileocool.com 100MB per file, 5 downloads, 7 days retention
www.datadeliver.net 10 files at a time, 100MB, [...]

Open Internet Explorer from MS-Access

Database Journal shows how to open a web page from inside MSAccess.
Public Function UpdateOrderInfoWebSite() As Long
On Error Resume NextDim objDoc As SHDocVw.InternetExplorer
Dim sURL As String
Dim lOrderID As LonglOrderID = Forms!frmOrder!txtOrderIDConst cURL As String =”http://localhost/Orders/Process.asp”
sURL = cURL & “?ID=” & lOrderID
sURL = sURL & “&SDate =” & Forms!frmOrder!txtStatusDate
sURL = sURL & “&SID =” & Forms!frmOrder!cboStatusID
sURL = [...]