today | current | recent | random ... categories | search ... mail | who ... syndication | wtf

posts brought to you by the category “whoami”

Das eez kaput! Sometime around 2002 I spaced the entire database table that mapped individual entries to categories. Such is life. What follows is a random sampling of entries that were associated with the category. Over time, the entries will be updated and then it will be even more confusing. Wander around, though, it's still a fun way to find stuff.

posts brought to you by the category “who's on first?” ←   → posts brought to you by the category “why can't we all just get along?”
 

Brandon Dolye : XML Résumé Library 2.0 [Relax NG] Schema

This is a work in progress

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2004/02/13/5396

pubdate

http://www.aaronland.info/weblog/2004/02/13

created

2004-02-13T21:44:04-05:00

last modified

2004-02-13T21:44:04-05:00

revision

1.1

changes

http://www.aaronland.info/weblog/2004/02/13/5396/changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

“[A] tool for zooming in and out of a work to arbitrary heights.”

 

In its most literal sense, this means that the computer will draw me a map of every nation or street mentioned in this work ... and those of anyone else who wants to wade in, I'll be able to create maps like those of Moretti's automatically, showing the context of my own thoughts, my own ontologies connected with others, both present and historical, and they'll be able to do the same.

It would be curious to see what happened if you could ping, say, the del.icio.us API and return a list of tags for a given URL .

 

refers to

meta

 

Excerpted : "The wonkish waters of RDF mailing lists"




Subject: [N3] equivalencies



From: Aaron Straup Cope 



Date: 22 Jul 2003 15:01:10 +0000







I'm wondering if you can answer a question for me and save me the



trouble and wading in to the wonkish waters of one or more RDF mailing



lists.







The question is premised on two assumptions :







1) The RDF that describes a thing is *not* public. That is I do not want



to share it and make it available to some other bot scraping the



network. If that makes a me a bad citizen, I'll live. 







All of which means I use URNs to describe things:







 
@prefix uwh: \



   <urn:aaronstraupcope:knows:who:> .









2) At some point, I need to be able to resolve all that gibberish. I



need be able to tell the processor about something like this:







 
@prefix awh: <user:pswd@http://private.aaronstraupcope.com/knows/who/>









Or simpler yet :







 
@prefix awh: <file:/home/asc/knows/who/> .









Still with me? Here's the question. Does the spec DWIM (Do What I Mean)



when I say the following:







 
uwh: = awh: .









That is, will a fully compliant processor be able to figure out that



when it comes time to merge a bunch of RDF documents will fetch stuff



from awh: namespace when it encounters things in the uwh: namespace?







If I feed what I've described to cwm I get the following:







 
<rdf:Desription rdf:about="urn:aaronstraupcope:knows:who:">



  <equivalentTo 



    xmlns="yadda/yadda/daml+oil#" 



    rdf:resource=



    "user:pswd@http://private:aaronstraupcope.com/knows/who/" />



 </rdf:Description>









So it validates. But do I have to specify an equivalently for each



property (e.g. uwh:asc, uwh:bob) or does the spec just, well, DWIM?







Thanks, 



meta

[x]

permalink

http://www.aaronland.info/weblog/2003/07/22/5155/

pubdate

http://www.aaronland.info/weblog/2003/07/22

created

2003-07-22T18:52:41-04:00

last modified

2003-10-11T10:37:59-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2003/07/22/5155//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/
[x]
 

Kake Pugh : How to Avoid Writing Code

The reason that Class::DBI and the Template Toolkit work so well together is simple. Template Toolkit templates can call methods on objects passed to them--so there's no need to explicitly pull every column out of the database before you process the template--and Class::DBI saves you the bother of writing methods to retrieve database columns. You're essentially going straight from the database to HTML with only a very small amount of Perl in the middle.

It should be noted that when the author says templates can call methods on objects passed to them she means both an object's accessors and it's mutators. This is not necessarily a problem if you are running your web application in a read-only situation and the web server, for example, doesn't have permissions to alter the contents of the database. But as soon as the program that processes templates has authority to muck with the database you had better have confidence in your TT kung-fu and/or the designers who are mucking with the templates. Not only could you do this :



[% some_obj.foo("bar") %]



[% some_obj.update() %]



You could also do this :



[% FOREACH this_obj = some_obj.retrieve_all() %]



 [% this_obj.foo("you lose, sucka") %]



[% END %]



(Note that retrieve_all is actually a package method but there's not much to prevent the object from calling it too.) All this with the both the EVAL_PERL and LOAD_PERL config flags explictly set to false. You can get around this, sort of, if your object doesn't have any circular relationships (e.g. A->has_a(B->has_many(A)) ) by adding a read_only method that sets a trigger to die before an object is updated or deleted. But there isn't really any way to cascade setting those triggers so there is always the possibility of mucking with the original object in a round-about fashion:



# this syntax may not be quite right



[% (foo.bars)[0].fooid.delete() %]



I've spent a little bit of time investigating ( 1 , 2 ) how to make cascading readonly objects but it's still an ugly hack that requires mucking with private functions in Class::DBI. The proper thing to do would be to abstract all of this stuff into a CDBI::ReadOnly package but that might be a while in coming yet. Know you know. via paranoidfish

refers to

meta

 

I know there is a pretty serious spelling mistake in that last post

and that one would be hard pressed to search for underground water or minerals using a chi-chi bathroom faucet. I'm leaving it there because it serves as a clever segway to mention that, last night, I managed to pick up the one pound of butter covered in black mold . Somewhere, some clever grad student actually knows how long it takes for refrigerated butter to grow mold...

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/05/25/5054/

pubdate

http://www.aaronland.info/weblog/2003/05/25

created

2003-05-25T01:56:20-04:00

last modified

2003-10-11T10:39:37-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2003/05/25/5054//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Me : add-css-links.xsl 1.0

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/04/19/5005/

pubdate

http://www.aaronland.info/weblog/2003/04/19

created

2003-04-19T22:19:51-04:00

last modified

2003-10-11T10:40:26-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2003/04/19/5005//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Me : print-n-times.xsl 1.0

This stylesheet defines a single template for printing a string (n) times. An optional separator string may also be defined which, if present, will be printed (n -1) times.

This is the sound of the Earth not moving. There are no especially exciting bells and whistles, here. But, in the last couple weeks, it is a template that a friend asked about and one that I needed for a project of my own, so I figured it was worth making modular.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/04/17/4999/

pubdate

http://www.aaronland.info/weblog/2003/04/17

created

2003-04-17T03:01:19-04:00

last modified

2003-10-11T10:40:32-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2003/04/17/4999//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Michael Schilli : Net::Amazon.pm

Net::Amazon provides an object-oriented interface to amazon.com's SOAP and XML/HTTP interfaces. This way it's possible to create applications using Amazon's vast amount of data via a functional interface, without having to worry about the underlying communication mechanism.

MT plugin authors, those of you who don't also agree that Amazon is one the evil-doers, go forth and wet yourselves with excitement!

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/03/31/4958/

pubdate

http://www.aaronland.info/weblog/2003/03/31

created

2003-03-31T05:18:32-05:00

last modified

2003-10-11T10:41:13-04:00

revision

1.8

changes

http://www.aaronland.info/weblog/2003/03/31/4958//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

xSiteable

is a complete small-to-medium-size site development kit created in XSLT ... utilizing XTM for structure, binding and other cleverness.

Apparently, this is a Windows-only thing which doesn't really make a whole lot of sense but I haven't had a chance to look at the source yet. via a frog in the valley

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/12/17/4756/

pubdate

http://www.aaronland.info/weblog/2002/12/17

created

2002-12-17T18:37:43-05:00

last modified

2003-10-11T10:44:35-04:00

revision

1.8

changes

http://www.aaronland.info/weblog/2002/12/17/4756//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

N.Y. Times : The Liberal Quandary over Iraq

This is on my reading-list so I won't comment except to say that I've been reading Samantha Power 's "A Problem From Hell" and came across the following passage yesterday:

One of the boldest features of the [ Prevention of Genocide Act ] was also one of its most novel. Instead of requiring the president to prove that genocide was being committed, which is always hard to do while atrocities are still under way and which an administration aligned with Hussein had no incentive to demonstrate, Pell's legislation reversed the burden: President Reagan was required to certify that Iraq was not using chemical weapons against the Kurds and that it was not committing genocide.

Which strikes me as something to consider given all the bad craziness coming out of Washington these days.

refers to

meta

 

Props to Elliotte Rusty Harold for outling the changes in XHTML 2.0

in bullet-form. I will reprint them here, for the curious, since Elliotte doesn't have permalinks.
  • The applet tag is repleaced with the object tag.
  • The img tag is repleaced with the object tag.
  • Forms are replaced by XForms
  • Events are replaced by XML Events
  • Frames are replaced by the as-yet unreleased XFrames
  • All deprecated tags from HTML 4 are removed.
  • The href attribute can be attached to most elements so that any element can be a link.
I wish the W3C would do this .

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/08/06/4539/

pubdate

http://www.aaronland.info/weblog/2002/08/06

created

2002-08-06T09:34:07-04:00

last modified

2003-10-11T10:48:12-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/08/06/4539//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

The dictified dictionary.com word of the day is : fanfaronade

Fanfaronade \Fan*far`on*ade"\, n. [F. fanfaronnade, fr. Sp. fanfarronada. See {Fanfaron}.] A swaggering; vain boasting; ostentation; a bluster. --Swift. web1913

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/07/30/4510/

pubdate

http://www.aaronland.info/weblog/2002/07/30

created

2002-07-30T16:18:21-04:00

last modified

2003-10-11T10:48:41-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/07/30/4510//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

ERT (Entities and Relationships on the Web)

" is a set of specifications and tools that makes it easy to create, modify and maintain via web a database described by an entity-relationship schema. Firstly, you describe the domain of interest using ERL, an XML-based language. Then ERW creates for you an SQL database and a set of forms that edit that database. Of course, ERW can be used for content management, in particular when your data is structured along complex relations."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/07/25/4499/

pubdate

http://www.aaronland.info/weblog/2002/07/25

created

2002-07-25T22:56:52-04:00

last modified

2003-10-11T10:48:52-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/07/25/4499//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Blogmapper

"lets you associate blog entries with hot spots on a map. When you click on the spots, the entries appear. ... Blogmapper can be used to map and log anything *anywhere, including your travels, and the places and things that interest you."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/07/25/4498/

pubdate

http://www.aaronland.info/weblog/2002/07/25

created

2002-07-25T12:53:36-04:00

last modified

2003-10-11T10:48:53-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/07/25/4498//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

I really don't care what you're reading

So, Amazon has a web-services interface. Aside from the fact that I don't like Amazon and only buy books from them as a last resort, I am going to leave it to someone else to write Net::Amazon . I simply can not see any compelling uses for the API that Amazon provides. Sure, some people have made some interesting hacks but nothing that gets past the gee-whiz stage. Now, I can search the Amazon database from an application, but the kinds of information it returns don't do anything to excite me. Apparently, I can also let people add stuff to a wedding registry -- which are like some kind of twisted institutional greed ritualized into normalcy, but that's an entirely other story -- using "web services" but closer inspection reveals that this just means HTML form. Go figure. The whole thing seems like a rushed, half-assed job where someone tried to combine a months worth of discussions in the "blogosphere" (SOAP vs. REST, XSLT services, am I hot or not style judging of opinion) into a single package. And the docs suck rocks.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/07/17/4471/

pubdate

http://www.aaronland.info/weblog/2002/07/17

created

2002-07-17T13:59:57-04:00

last modified

2003-10-11T10:49:20-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/07/17/4471//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Petr Cimprich : XML::Directory.pm 0.95

I mention this because I chipped in and submitted the order_by method which allows you specify the order in which the contents of a directory are returned. Previously, it would always return directories first, then files. Now you can order results by file-directory or alphabetically. The package has also been back-ported to 5.005_03 so you won't need to be running 5.6 to make use of the SAX2 widgets. In other news, I've written a SAX2 filter for pruning the results returned by the parse_dir method which I will try and upload to the CPAN today or tomorrow.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/05/03/4290/

pubdate

http://www.aaronland.info/weblog/2002/05/03

created

2002-05-03T05:56:32-04:00

last modified

2003-10-11T10:52:20-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/05/03/4290//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

The Connection : Behold the Power of Cheese

"Medieval monks counted it among the pillars of civilization, along with art, scholarship, and beer. In certain European countries, the sentiment still holds. So leave it to America to spell cheese with a 'z' and spray it from a can."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/04/16/4228/

pubdate

http://www.aaronland.info/weblog/2002/04/16

created

2002-04-16T21:36:08-04:00

last modified

2003-10-11T10:53:22-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/04/16/4228//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Bill Humphries : BlogML and the Semantic Web

"It would be a mitzvah if, when I read something and wanted to comment on it, that content becomes an entry in my weblog, and the original weblog could syndicate the responses into their weblog." This, notwithstanding issues surrounding performance and maintaining a "local" copy, could be done with XPointer and XSLT . see also : d-log's proposed BlogML DTD

refers to

meta

 

The random pseudodictionary.com word of the day is : juicewell

A great resource of creative juice, something that will keep you inspired for a while.
ex. I just saw a juicewell. Gotta go home and create somethin'.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/02/27/4011/

pubdate

http://www.aaronland.info/weblog/2002/02/27

created

2002-02-27T07:37:10-05:00

last modified

2003-10-11T10:56:59-04:00

revision

1.10

changes

http://www.aaronland.info/weblog/2002/02/27/4011//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

The random pseudodictionary.com word of the day is : needing a taco

The state of being in which a person is taking him- or herself wayyyyy too seriously. Most commonly used in the context of love and romance. (Taken from the South Park cd "Chef Aid" in which Chef gives Meatloaf a taco because he gets carried away singing about Meredith Baxter-Birney.)
ex. Now that is a man in dire need of a taco!

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/02/07/3938/

pubdate

http://www.aaronland.info/weblog/2002/02/07

created

2002-02-07T17:01:38-05:00

last modified

2003-10-11T10:58:12-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/02/07/3938//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

boo radley : "[T]he end result is a set of packages under the Dia namespace,

chiefly Dia::UMLDiagram . The module provides a read-only interface into the layers of a Dia diagram which can be manipulated for output. Currently only class objects are supported; but this provides the functionality for generation of a skeletal module."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/01/29/3901/

pubdate

http://www.aaronland.info/weblog/2002/01/29

created

2002-01-29T15:01:34-05:00

last modified

2003-10-11T10:58:49-04:00

revision

1.10

changes

http://www.aaronland.info/weblog/2002/01/29/3901//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

The dictified dictionary.com word of the day is : extempore

Extempore \Ex*tem"po*re\, adv. [L. ex out + tempus, temporis, time. See {Temporal}.] Without previous study or meditation; without preparation; on the spur of the moment; suddenly; extemporaneously; as, to write or speak extempore. --Shak. -- a. Done or performed extempore. ``Extempore dissertation.'' --Addison. ``Extempore poetry.'' --Dryden. -- n. Speaking or writing done extempore. [Obs.] --Bp. Fell. web1913
extempore adj : with little or no preparation or forethought; "his ad-lib comments showed poor judgment"; "an extemporaneous piano recital"; "an extemporary lecture"; "an extempore skit"; "offhand excuses"; "trying to sound offhanded and reassuring"; "an off-the-cuff toast"; "a few unrehearsed comments" [syn: {ad-lib}, {extemporaneous}, {extemporary}, {offhand}, {offhanded}, {off-the-cuff}, {unrehearsed}] adv : without prior preparation; "he spoke extemporaneously" [syn: {extemporaneously}, {extemporarily}] wn

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/01/26/3889/

pubdate

http://www.aaronland.info/weblog/2002/01/26

created

2002-01-26T20:41:04-05:00

last modified

2003-10-11T10:59:01-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/01/26/3889//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Me : Hello world

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/12/01/3680/

pubdate

http://www.aaronland.info/weblog/2001/12/01

created

2001-12-01T06:47:02-05:00

last modified

2003-10-11T11:02:23-04:00

revision

1.8

changes

http://www.aaronland.info/weblog/2001/12/01/3680//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

The dict-ified dictionary.com word of the day is abed

| source : web1913 | Abed \A*bed"\, adv. [Pref. a- in, on + bed.] 1. In bed, or on the bed. Not to be abed after midnight. --Shak. 2. To childbed (in the phrase ``brought abed,'' that is, delivered of a child). --Shak. | source : wn | abed adv : in bed

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/11/26/3661/

pubdate

http://www.aaronland.info/weblog/2001/11/26

created

2001-11-26T06:16:34-05:00

last modified

2003-10-11T11:02:41-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/11/26/3661//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

There's a cafe on the corner of Duluth and Hotel de Ville,

called Chez Jose, which is pretty much ground zero for what most anglophones in the city call the Plateau. (Convention says that the Plateau starts East of St. Denis, if you really want to know; Chez Jose is in what is generally known as the Portugese neighbourhood.) It's a nice, low-key place to go for a simple meal and coffee and they make killer fruity drinks. But they've got this 80s thing going. Hard. I don't think there has been one time I've gone, in the last year, when I haven't heard Video Killed the Radio Star played, often two or three times. I'm willing to cede enough ground to say that Tainted Love maybe proves that the 80s weren't all bad but I tend to think of that as the exception that proves the rule. Some things just shouldn't come back. People wearing sneakers that are fastened with velco straps, for instance. Please please please, just trust me when I say : you're not missing anything. Speaking of the 80s, I made the liner notes for the new Grim Skunk album .

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/11/10/3625/

pubdate

http://www.aaronland.info/weblog/2001/11/10

created

2001-11-10T20:06:37-05:00

last modified

2003-10-11T11:03:17-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/11/10/3625//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Two words : chmod 0777

&lt;snip>

What does that mean, exactly? I'm not fluent in file permissions; is this considered bad security juju or what?

It means that the directories/files are world writable. In a web context it means that the magic web-server user (usually "http" or "www") has permissions to write all that stuff in a www/blog form to disk (read : index.html)

It also means that any other user on the same server can affect said files. Since most installs of Apache explicitly disallow HTTP "PUT" (read:write) statements, there is some illusory protection from random people all over the Internet, proper, writing to the unprotected directory.

On the other hand, if your webhost offers shell access it would be pretty easy for a bad person, with a login, to snoop out[1] one or more [ insert insecure weblog application here ] directories. From there, they could do something like install a PHP upload form and, bang, your weblog has turned into an instant warez node[2]. Or it may suddenly be "protected" by an .htaccess file you didn't write. That kind of thing.

...

[Y]ou can solve most of these problems if your webhost filters cgi-scripts through a "cgiwrapper" that suids to user 'you'. Since you have write permissions on your own directories, you don't have to extend the privilege to the web-server or anyone else. I haven't done a survey, but I suspect that any ISP/webhost worth it's salt uses a wrapper, which makes install docs that say "0777" all the more frustrating.

[1] Due to the nature and history of Unix systems, many of the auditing tools are readily available and you can find out a whole lot despite the best efforts of security-minded sysadmins...

[2] This is probably unlikely, since PHP is usually built with limits on file uploads but you get the idea.

&lt;/snip>

see also : W3C World Wide Web Security FAQ - CGI (Server) Scripts and Practical UNIX & Internet Security, UNIX Security Checklist

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/10/09/3506/

pubdate

http://www.aaronland.info/weblog/2001/10/09

created

2001-10-09T07:19:15-04:00

last modified

2003-10-11T11:05:16-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/10/09/3506//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

DJ Adams : Summarizing Jabber-RPC

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/08/22/3299/

pubdate

http://www.aaronland.info/weblog/2001/08/22

created

2001-08-22T07:59:30-04:00

last modified

2003-10-11T11:08:28-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/08/22/3299//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

In case you thought the Dock, in MacOS X, was little more

than a flight of fancy on the part of a few engineers at Apple, witness the fisheye menu .

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/08/20/3294/

pubdate

http://www.aaronland.info/weblog/2001/08/20

created

2001-08-20T18:23:46-04:00

last modified

2003-10-11T11:08:32-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/08/20/3294//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

The dict-ified dictionary.com word of the day is spooge

| source : foldoc | spooge /spooj/ Inexplicable or arcane code, or random and probably incorrect output from a computer program. [{Jargon File}] (1995-01-12)

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/06/15/3118/

pubdate

http://www.aaronland.info/weblog/2001/06/15

created

2001-06-15T00:40:34-04:00

last modified

2003-10-11T11:11:24-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/06/15/3118//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

I'm not sure that this interface is either simple or intuitive

but it certainly looks interesting

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/06/07/3096/

pubdate

http://www.aaronland.info/weblog/2001/06/07

created

2001-06-07T04:57:51-04:00

last modified

2003-10-11T11:11:45-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/06/07/3096//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Chris Turkel : The Gimp running on Xtools 1.b10 on Mac OS X Final.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/04/03/2920/

pubdate

http://www.aaronland.info/weblog/2001/04/03

created

2001-04-03T09:35:27-04:00

last modified

2003-10-11T11:14:36-04:00

revision

1.10

changes

http://www.aaronland.info/weblog/2001/04/03/2920//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Pyrex Body Art

"Pyrex brand glass has recently become a notable contender in the race to fill newly enlarged holes." Who knew. I was just trying to find a Pyrex tea kettle like Little Erin had when we lived in the Carleton House . The Carleton House was a home like no other. It's not every apartment where you get to wake up dimly aware that you forgot to close your bedroom door (which happens to be a life-size self-portrait since there is no actual door) before going to sleep and Juan Carlos the rat, aka Mr. Mouse, is in bed with you.

refers to

meta

 

Margot Magowan : "Pussy has so much potential,

it's a shame to limit it to the immature and derisive mocking of weak boys. Let's give it a shot in the arm! I envision hit songs featuring "pussy" -- "Who Let the Pussies Out?" or "The Real Slim Pussy" or "The Real Shady Pussy." Hallmark-type cards that read "Thanks for being such a pussy!" Colloquial expressions: "You da pussy!" "Stand up and fight like a pussy!"

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/02/28/2838/

pubdate

http://www.aaronland.info/weblog/2001/02/28

created

2001-02-28T10:14:38-05:00

last modified

2003-10-11T11:15:58-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/02/28/2838//changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/

external links

[x]
 

Perlmonks : Net::Ping, The Mini-series

"I used the Perl debugger to step into Net::Ping and found that the connect() was failing with "Connection refused". What does this mean? It means that the other computer is up, is reachable, and isn't listening on TCP port 7 (and it did this all without triggering the time out). Well, that is a wonderful form of a succes