Posted by Delicious auto poster
Wed, 11 Jan 2006 18:57:06 GMT
- Collaboa.org
- Collaboa is to be a collaborative tool for developers using Subversion. Think rails version of Trac.
- Posted: Thu Jan 05 16:38:07 GMT 2006
- Maintainable Programmers [@lesscode.org]
- To conclude that if these programmers did learn language X, they would suddenly turn out maintainable code, or that if a good programmer changed camps from langauage X to language Y, the quality of his code would suddenly degrade, is fallacious.
- Posted: Thu Jan 05 22:39:19 GMT 2006
- java.net: Log4Ajax
- Logging framework for Ajax apps that can do client-side or server-side logging. Server-side appears to rely on log4j in the article, but it seems that any log4X (for any language log4 toolkit out there) could probably be substituted without too too much
- Posted: Thu Jan 05 20:46:07 GMT 2006
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 04 Jan 2006 07:19:29 GMT
- Lightbox JS
- Lightbox JS is a simple, unobtrusive script used to to overlay images on the current page. It’s a snap to setup and works on all modern browsers.
- Posted: Tue Jan 03 02:20:31 GMT 2006
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Jonathan Altman
Tue, 03 Jan 2006 04:01:00 GMT
I like to keep my work email sorted by year to keep the size of the various boxes small for perusal (oh for the day Google sells corporate gmail!). This script is part of a process to accomplish that. It mirrors your existing Thunderbird folder/mailbox structure to a different directory by creating the same directory hierarchy, creating empty mailbox folders, copying your filter rules and popstate files, and skipping the mailbox summary files.
This script may be generally useful for other purposes as well.
#!/usr/bin/env ruby
require 'find'
require 'ftools'
scriptname = File.basename(__FILE__)
unless ARGV.length == 2
$stderr.puts "Usage: #{scriptname} source_dir dest_dir"
exit 1
end
from_dir = ARGV[0]
to_dir = ARGV[1]
sub_start = from_dir.length
Find.find(from_dir) {|f|
action = ""
if (/\.dat$/ =~ f )
action = "copy"
elsif (/\.msf$/ !~ f )
File::directory?(f) ? action = "mkdir" : action = "touch"
end
if (action != "")
new_item = to_dir + f[sub_start..-1]
$stderr.print "#{action} #{new_item}..."
case action
when "copy"
File::copy f, new_item, true
when "mkdir"
File::makedirs new_item, true
when "touch"
File::open(new_item, File::CREAT|File::TRUNC|File::RDWR, File::stat(f).mode) {|file|
$stderr.puts "#{new_item} created"
}
end
else
puts "skipping #{f}"
end
}
Once you create this new tree, you can copy the insides of each account’s directory into a subfolder that you manually create inside the new tree.
As always, this recipe comes with NO WARRANTY. Always back up your data first. Etc., etc.
Tags opensource, ruby, thunderbird | no comments | no trackbacks
Posted by Delicious auto poster
Mon, 02 Jan 2006 07:20:02 GMT
- enplaned
- Pretty deep analysis of various issues in the airline industry
- Posted: Sun Jan 01 19:06:00 GMT 2006
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Sun, 01 Jan 2006 20:08:53 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Thu, 22 Dec 2005 07:19:02 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 21 Dec 2005 07:19:23 GMT
- Emily Chang – eHub
- Get your fresh hot Web2.0 buzzwords here! Pretty good coverage of new sites/tools in the web2.0 space
- Posted: Tue Dec 20 04:59:38 GMT 2005
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Sat, 17 Dec 2005 02:19:02 GMT
- XML.com: REST on Rails
- Good article about how to make a RESTful web service using Rails
- Posted: Fri Dec 16 16:40:19 GMT 2005
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Fri, 16 Dec 2005 02:19:18 GMT
- Hypercubed : Projects : Hypercubed Firefox Extensions
- Xinha Here! is a wrapper for the Xinha HTML editor that enables WYSIWYG editing in any html textarea and text input elements. Xinha Here! opens Xinha editor on the client side. This allows you to edit the fields data in a WYSIWYG on any website without co
- Posted: Thu Dec 15 16:24:25 GMT 2005
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 14 Dec 2005 02:19:53 GMT
Click here for all of my del.icio.us bookmarks.
no comments