![]() |
![]() ![]() |
|
February 28, 2005Growl 0.6 Released
Links
Posted by Egon Kuster at 08:34 PM
February 26, 2005Mac Media Projects
Links
Posted by Egon Kuster at 03:40 PM
February 24, 2005Heavy-weight Thin ClientsHere is another article in the series of articles that I have posted about using Javascript, CSS and XHTML to create a more responsive web-based application. This article is better than most as it describes the environment and technologies used much better than others and also contains a quick analysis of why this approach is good. The author seems to refer to something called Ajax, which I believe is what he calls this approach to web development. The confusing aspect is that it talks about Ajax as though it is something that you can download and program to. Nevertheless it is still a good article that discusses the technologies and why you would use this approach to web development.
Links
Posted by Egon Kuster at 06:18 PM
February 19, 2005The Ultimate Office Chair
Links
Posted by Egon Kuster at 06:30 PM
Top 100 Gadgets of All TimeHere is a great article with a whole list of gadgets that have been created over the past 100 or so years. Includes such items as the Sony Walkman and the Swiss Army Knife. Each item has a short blurb with the history of the item. It is a great trip down memory lane.
Links
Posted by Egon Kuster at 06:03 PM
February 12, 2005JSR 207: Business Processes in Java
“The specification will define metadata, interfaces, and a runtime model that enable business processes to be easily and rapidly implemented using the Java language and deployed in J2EETM containers. Process Definition for Java will provide a functional foundation upon which J2EE programmers can implement business processes. This foundation will support tasks commonly encountered when programming business processes, for example parallel execution and asynchronous messaging, while leveraging the programming constructs of Java. As such, the foundation can also be used to build Java implementations of business process initiatives such as BPEL4WS, WSCI, and W3C Choreography.” I will try and monitor this specification and provide any updates as it develops.
Links
Posted by Egon Kuster at 11:51 PM
| Comments (0)
Mac: Two Finger ScrollingThe new powerbooks recently released by Apple have a new feature, trackpad scrolling. This is great but all us who have a powerbook pre 2005 this feature is out of reach... or is it. Here is an article that describes how to apply the same driver to pre 2005 powerbooks. I have applied this to my powerbook that was purchased late 2004 running 10.3.8 with no problems whatsoever. This patch will not work on all laptops, to check enter the following into your terminal application: ioreg -l | grep “W Enhanced Trackpad” The output of this command should be '“W Enhanced Trackpad” = 1'. If you do not get this it means that your trackpad is not compatible or you are running the SideTrack utility. If you do get the right output then go to this this page and download the altered driver and follow the simple instructions. To install the driver once downloaded you use the following commands to change the ownership on the driver, unload the existing driver and then load the new driver: sudo chown -R root:wheel ./AppleADBMouse.kext
sudo kextunload -b com.apple.driver.AppleADBMouse && \
sudo kextload ./AppleADBMouse.kext
I must warn you that you are using terminal to modify the state of the mouse driver so please be careful and follow the instructions carefully.
UPDATE - There is an installer now and is called iScroll2
Links
Posted by Egon Kuster at 11:15 PM
IBM Web Tools for Eclipse
Be ready to download lots of things for this as there are about 5 different support packages that need to be installed for the toolkit to work within Eclipse. In addition to these there is also a large number of third-party support downloads so be ready for quite a large download if you do not have these files already. There must be an easier way to install this plugin. Links IBM Web Tools for Eclipse Page
Posted by Egon Kuster at 08:22 PM
February 04, 2005Street Level Photos of Businesses in the US Yellow Pages
Links
Posted by Egon Kuster at 11:09 PM
New Feedburner RSS FeedI have added a new RSS feed provided by FeedBurner to my site. This reduces the load on my site and also maintains some statistics for me so please use rather than the direct RSS feeds.
Posted by Egon Kuster at 08:54 PM
Separating Data, Style and Behavior on Web PagesOne of my favorite sites A List Apart has another great article about using JavaScript on web pages. This article identifies a potential way to separate your XHTML data that contains the content and semantic pages structure, CSS presentation data, and JavaScript behaviours. The described solution is to get JavaScript to attach its own behaviours to XHTML elements by manipulating the page's DOM. For example with the following XHTML form: <textarea class=“large” maxlength=“300” required=“true”> </textarea> You could add this JavaScript to validate the form without having to embed the JavaScript within the XHTML. function validateForm()
{
var x = document.forms[0].elements;
for (var i=0;i<x.length;i++)
{
if (x[i].getAttribute('required') && !x[i].value)
// notify user of error
}
}
var x = document.getElementsByTagName('textarea');
for (var i=0;i<x.length;i++)
{
if (x[i].getAttribute('maxlength'))
x[i].onkeypress = checkLength;
}
function checkLength()
{
var max = this.getAttribute('maxlength');
if (this.value.length > max)
// notify user of error
}For a better understanding have a read of the article. Links
Posted by Egon Kuster at 07:30 PM
February 03, 2005xNAL: Name and Address Standard
xNal is broken up into two standards:
Links
Posted by Egon Kuster at 10:50 PM
XForms Beta ReleaseMozilla Foundation has announced the beta release of XForms 1.0 Recommendation. XForms is a new XML standard being developed by the members of the Mozilla Foundation to define web forms that are mode extensible and greater functionality than the current HTML forms. Links
XForms 1.0 Beta Press Release
Posted by Egon Kuster at 09:13 PM
Rainbow: Old Childrens TV ShowThis is absolutely wonderful. Rainbow is an old TV Show for kids. Apparently according this this website this video is from the original script. However, it is completely full of innuendo and completely hilarious to any adult out there who understands the references. Please note although not explicit the content may offend some sensitive people out there. Links
Posted by Egon Kuster at 06:41 PM
February 01, 2005JSON: JavaScript Object Notation - Lightweight Data Inter-change FormatI have been given a link to JSON (JavaScript Object Notation), which is a project to create a data interchange format that is as language independent as XML but not as heavy in the bandwidth and parsing requirements. JSON is based on the JavaScript Programming Language and has bindings in the following programming languages:
Here is a sample JSON message:
{
The same text expressed as XML:
<!DOCTYPE glossary PUBLIC "-//OASIS//DTD DocBook V3.1//EN">
Links
Posted by Egon Kuster at 11:49 AM
| Comments (0)
|
![]() |
|
![]() |
||
![]() |
![]() |
|