(skip)
05/01/2002 - 05/31/2002 06/01/2002 - 06/30/2002 07/01/2002 - 07/31/2002 08/01/2002 - 08/31/2002 09/01/2002 - 09/30/2002 10/01/2002 - 10/31/2002 11/01/2002 - 11/30/2002 12/01/2002 - 12/31/2002 01/01/2003 - 01/31/2003 02/01/2003 - 02/28/2003 03/01/2003 - 03/31/2003 04/01/2003 - 04/30/2003 05/01/2003 - 05/31/2003 06/01/2003 - 06/30/2003 07/01/2003 - 07/31/2003 08/01/2003 - 08/31/2003 09/01/2003 - 09/30/2003 10/01/2003 - 10/31/2003 11/01/2003 - 11/30/2003 12/01/2003 - 12/31/2003 01/01/2004 - 01/31/2004 02/01/2004 - 02/29/2004 03/01/2004 - 03/31/2004 04/01/2004 - 04/30/2004
Overview of (Windows) outlining programs. -m
Jon Udell writes about business editing of XML including XForms and the enigmatic XDocs. -m
Bob DuCharme posts some interesting statistics on the use of <html:a> in the real world. -m
Googling Your Email
Jon Udell looks at Zo�, an application to, well, google your email. -m
The trouble with DRM
"Despite marketing, DRMP is a licensing technology, not a security technology"
"The DRMP system is based on the premise that unlicensed use of software or data should make computers stop working. You could also argue that bridges should be designed to fall down if someone is detected crossing without paying the toll."
-m
Another in-the-browser WYSIWYG XML editor. This one looks IE6-specific. Hmmm, big surprise! -m
Xopus hacking
Xopus is unique editor--it takes advantage of the existing DOM, CSS, JavaScript, and XML support in modern browsers. (Try the demo; Yep, that's a splash screen. Yep, you can click on most anything and type. Yep, that's a save button that shows the edited XML.)
The code, which is open sourced and available, has some interesting features, like support for XInclude and XML Schema (Yep, in JavaScript).
This is the ultimate in cross platform. One limitation of a browser application, however, is non-access to the file system. But that's easily taken care of with a bit of CGI code, like this:
(warning: first Python project ahead)
#!/usr/local/bin/python
print "Content-type: text/html"
print "<html><head><title>File Access</title></head><body><pre>"
import sys
sys.stderr = sys.stdout
output = open("/var/www/cgi-bin/data/result.xml", "w")
output.write(sys.stdin.read());
output.close()
print "Done</pre></body></html>"
Palm takes on the biggest competitor yet: scrap paper -m
Find out using the DuCharme method.
mdubinko@yahoo.com
For external use only. I doubt the enforcability of click-through licenses anyway. Copyright 2003 Micah Dubinko. All rights reserved.