del.icio.us bookmarks - 2006-01-19

Posted by Delicious auto poster Fri, 20 Jan 2006 07:19:19 GMT

  • Rails RSS2.0 and Atom1.0 feed templates
    • Some xml feed templates that work well for rails. These uses the great XML::Builder library that comes with rails. With these you use an .rxml file for your view instead of your normal .rhtml file.
    • Posted: Thu Jan 19 19:41:47 GMT 2006

Click here for all of my del.icio.us bookmarks.

no comments

del.icio.us bookmarks - 2006-01-14

Posted by Delicious auto poster Sun, 15 Jan 2006 07:19:27 GMT

  • History of the BASIC family of languages
    • Visual Basic 4.0 is introduced. It includes object capabilities, if you define “object capabilities” to mean “something sort of like object capabilities, but not really”.
    • Posted: Sat Jan 14 15:54:51 GMT 2006

Click here for all of my del.icio.us bookmarks.

no comments

del.icio.us bookmarks - 2006-01-10

Posted by Delicious auto poster Wed, 11 Jan 2006 19:01:48 GMT

Click here for all of my del.icio.us bookmarks.

no comments

del.icio.us bookmarks - 2006-01-05

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

del.icio.us bookmarks - 2006-01-03

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

Ruby Script to Create an Empty Copy of Thunderbird's Folder Structure

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 , ,  | no comments | no trackbacks

del.icio.us bookmarks - 2006-01-01

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

del.icio.us bookmarks - 2005-12-30

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

del.icio.us bookmarks - 2005-12-21

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

del.icio.us bookmarks - 2005-12-20

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

Older posts: 1 ... 25 26 27 28 29