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

posts brought to you by the category “speak now”

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 “software” ←   → posts brought to you by the category “standards”
 

I don't know either Anil or Paul personally though they seem like perfectly nice fellows.

But oh my god, two serious and earnest keeners should never be stuck in the same room together lest they fall prey to the kind of breathless blowhard-ism witnessed in this piece. I can't speak to the practice of journalism or about Windows scripting and I still think Amazon is evil. But I will not let go of the conviction that the de-rigeur stoneness of the stone -ness concerning permalinks and the inherent reverse chronology of weblog posts is still a crock of shit. Carry on, now.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/10/01/5251/

pubdate

http://www.aaronland.info

created

2003-10-01T19:58:40-04:00

last modified

2003-10-26T20:29:47-05:00

revision

1.12

changes

http://www.aaronland.info/weblog/2003/10/01/5251/changes.html

categories

license

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

external links

[x]
 

Passepartout is not a word processor

You do not use Passepartout for writing text, because it is only a layout editor. Basically speaking, Passepartout is in the business of taking the different parts that make up a page, such as text, photos, graphics, and "gluing" them on piece of paper. Passepartout can import from several different bitmapped image formats as well as EPS files. You write the text in your favorite text editor (e.g. Emacs or VI) in an XML-based format. The XML file is then typeset using a typesetting engine called xml2ps.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/09/25/5240/

pubdate

http://www.aaronland.info

created

2003-09-25T20:05:28-04:00

last modified

2003-10-11T10:36:34-04:00

revision

1.7

changes

http://www.aaronland.info/weblog/2003/09/25/5240/changes.html

categories

license

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

external links

[x]
 

Norm Walsh : Vicious Circle

I maintain however, that using [URLs] as names is confusing because it violates the niave users expectation that they're addresses.

Meanwhile, I am distilling some especially choice words for the numb nuts who think that the best way to handle the problem of resolving URNs is to start hacking the DNS table...

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/07/30/5172/

pubdate

http://www.aaronland.info

created

2003-07-30T14:27:58-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2003/07/30/5172/changes.html

categories

license

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

external links

[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've been thinking about wearing suits, these days.

But I think it's probably just an ill-considered coping mechanism to deal with what's been an otherwise lame month, driving behind a high-end S.U.V. that had a "New York State Terrorist Hunting Permit" sticker and going to a bookstore with a karaoke machine in full effect...

meta

[x]

permalink

http://www.aaronland.info/weblog/2003/04/26/5017/

pubdate

http://www.aaronland.info

created

2003-04-26T03:46:38-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2003/04/26/5017/changes.html

categories

license

http://creativecommons.org/licenses/by-nd-nc/1.0/
[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

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]
 

Me : sql-abstract-_recurse_where-order-by.diff

Adds hooks to pass ORDER BY style parameters to the SQL::Abstract _recurse_where() method which is called by the where() which is called by the Class::DBI::AbstractSearch search_where() method, which I'm trying to tie into the Mail::Miner::Mail select() method so that it can stop using the Class::DBI retrieve_all() and search_like methods. The former has no simple way of defining an as-needed ordering criteria and the latter has no way of returning all the records in a table since it will freak out if you tell it to search where 1=1 . I still need to teach _recurse_where to DWIM when it encounters % characters...

refers to

meta

 

Rodrigo Loyola : Subway...

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/10/29/4681/

pubdate

http://www.aaronland.info

created

2002-10-29T15:19:35-05:00

last modified

2003-10-11T10:45:50-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/10/29/4681/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 : noassitall

No ass at all.
ex. My man has noassitall.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/08/14/4559/

pubdate

http://www.aaronland.info

created

2002-08-14T19:36:04-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/08/14/4559/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 : cupidity

Cupidity \Cu*pid"i*ty\ (k?-p?d"?-t?), n. [F. cupidite, L. cupiditas, fr. cupidus longing, desiring, fr. cupere to long for, desire. See {Covet}.] 1. A passionate desire; love. [Obs.] 2. Eager or inordinate desire, especially for wealth; greed of gain; avarice; covetousness. With the feelings of political distrust were mingled those of cupidity and envy, as the Spaniard saw the fairest provinces of the south still in the hands of the accursed race of Ishmael. --Prescott. web1913
cupidity n : extreme greed for material wealth [syn: {avarice}, {avariciousness}, {covetousness}] wn

refers to

meta

[x]

permalink

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

pubdate

http://www.aaronland.info

created

2002-07-02T21:01:40-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/07/02/4439/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 : wastrel

Wastrel \Wast"rel\, n. 1. Any waste thing or substance; as: (a) Waste land or common land. [Obs.] --Carew. (b) A profligate. [Prov. Eng.] (c) A neglected child; a street Arab. [Eng.] 2. Anything cast away as bad or useless, as imperfect bricks, china, etc. [Obs. or Prov. Eng.] web1913
wastrel n : someone who dissipates resources self-indulgently [syn: {waster}] wn

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/06/28/4427/

pubdate

http://www.aaronland.info

created

2002-06-28T09:48:23-04:00

last modified

2003-10-11T10:50:04-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2002/06/28/4427/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 : gregarious

Gregarious \Gre*ga"ri*ous\, a. [L. gregarius, fr. grex, gregis, herd; cf. Gr. ? to assemble, Skr. jar to approach. Cf. {Congregate}, {Egregious}.] Habitually living or moving in flocks or herds; tending to flock or herd together; not habitually solitary or living alone. --Burke. No birds of prey are gregarious. --Ray. web1913
gregarious adj 1: tending to form a group with others of the same kind; "gregarious bird species"; "man is a gregarious animal" [ant: {ungregarious}] 2: seeking and enjoying the company of others; "a gregarious person who avoids solitude" wn

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/05/12/4329/

pubdate

http://www.aaronland.info

created

2002-05-12T10:31:43-04:00

last modified

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

revision

1.10

changes

http://www.aaronland.info/weblog/2002/05/12/4329/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 : eschew

Eschew from old French eschever, "to flee from" (Job 1:1, 8; 2:3; 1 Pet. 3:11). easton
Eschew \Es*chew"\ (es*ch[udd]"), v. t. [imp. & p. p. {Eshewed} (-ch[udd]"d); p. pr. & vb. n. {Eshewing}.] [OF. eschever, eschiver, eskiver, F. esquiver, fr. OHG. sciuhen, G. scheuen; akin to E. sky. See {Shy}, a.] 1. To shun; to avoid, as something wrong, or from a feeling of distaste; to keep one's self clear of. They must not only eschew evil, but do good. --Bp. Beveridge. 2. To escape from; to avoid. [Obs.] He who obeys, destruction shall eschew. --Sandys. web1913
eschew v : avoid and stay away from deliberately; stay clear of [syn: {shun}] wn

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/05/10/4317/

pubdate

http://www.aaronland.info

created

2002-05-10T22:45:01-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/05/10/4317/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 : brio

brio n : quality of being active or spirited or vigorous [syn: {animation}, {spiritedness}] wn

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/05/07/4306/

pubdate

http://www.aaronland.info

created

2002-05-07T09:58:42-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/05/07/4306/changes.html

categories

license

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

external links

[x]
 

So, do you think Bill Guerin was asking Josie

to sign his stick?
"Penalties," sighed former Nordiques coach Michel Bergeron . "Five for Boston, hostie, none for Montreal. It was like that when I was in Quebec ."
And in case you think it's just me, you should also know that the jurors in the double murder trial of the head of the Quebec chapter of Hell's Angels were let out of their deliberations early yesterday so that they might...yes, watch the hockey game .

refers to

meta

 

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

If you are a spoil-sport, you are borejoysy
ex. I dont want to go to the barn dance, I'm feeling rather borejoysy

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/04/19/4243/

pubdate

http://www.aaronland.info

created

2002-04-19T07:49:49-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/04/19/4243/changes.html

categories

license

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

external links

[x]
 

Me : Net::Google.pm 0.4

Added hooks to the spelling and cache interfaces. Please note that Net::Google now has a home on the CPAN , but it will probably be a day or so before this version shows up. Note also that since I appear to be too stupid to figure out how to package things so that the CPAN links work, docs can be found over here .

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/04/14/4219/

pubdate

http://www.aaronland.info

created

2002-04-14T21:40:52-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/04/14/4219/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 : dorkano

Female form of the word "dork." As in the possible Spanish form. Dorkano for males. Used meaning stupid (in a funny way) or just not thinking. This is not a mean term, but rather a term to jokingly make fun of someone and bring attention to her action that caused her to look so goofy.
ex. Sally couldn't believe what a dorkano her friend was when he licked the ice cream store sign's large ice cream cone.

refers to

meta

[x]

permalink

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

pubdate

http://www.aaronland.info

created

2002-03-03T13:32:13-05:00

last modified

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

revision

1.9

changes

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

categories

license

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

external links

[x]
 

We were lucky enough to be staying with friends in the West Village.

I've never really believed the Village went beyond 6th Avenue but whatever. Over dinner, the first night, I asked one of my hosts why he'd chosen New York City and he talked about it being the only Real City, with the possible exception of Chicago, in the U.S. Not Boston?, I asked. Boston is really nice, he replied, but it's just a big town. That comment came to mind during a momentary loss of clarity when I caught myself thinking : Huh, it seems like the city has mellowed since I was here last. Then I remembered that I was basically walking around Beacon Hill. Otherwise, there isn't too much to report. I spent most of my time working. Eventually, my hands started to hurt so I went and stood outside the apartment where my great-aunt lived for 30 years and where I learned to appreciate art and food and life in general. Afterwards, we walked down to the Prada store which should really be selling consumer electronics and where I already knew I wasn't allowed to take pictures. Dumb asses. Resistance is futile .

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/02/21/3988/

pubdate

http://www.aaronland.info

created

2002-02-21T18:58:34-05:00

last modified

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

revision

1.10

changes

http://www.aaronland.info/weblog/2002/02/21/3988/changes.html

categories

license

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

external links

[x]
 

Radio Crankypants #12 : for category in aaronland.getCategories() redux

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2002/01/15/3841/

pubdate

http://www.aaronland.info

created

2002-01-15T06:41:58-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2002/01/15/3841/changes.html

categories

license

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

external links

[x]
 

Radio Crankypants #9-10

Know thy own self, or atleast your market. At the end of the day, I guess the biggest problem I have with UserLand products, to date, is that I am not their market. It is clear that Radio UserLand is a pretty spiffy and powerful little tool. And in a power to the people sort of way, I would probably recommend it highly in most circumstances. The sticking point, for me, is not necessarily that everything is sent across the network in clear text; the issue is that lots of people don't have a problem with this. But I do and if I were managing geek central in any kind of corporate environment, I simply would not recommend Radio. Never mind the debate about whether or not your employees should be allowed to run off at the mouth versus the need to ensure that everyone stays "on the bus" using a workflow mechanism. The problem is that Radio passes potentially sensitive information in a way that exposes it for all the world to see. Update : To be clear, none of the other tools that Michael mentions are inherently more secure than Radio. It's not a widget problem, so much as a transport problem. Radio does FTP rather than SCP or FTPS for file transfers. HTTP instead of HTTPS for (XML over) HTTP requests. There was an effort, maybe a year and a half ago, to teach Frontier to speak SSL but I don't know what ever came of it. What something like Movable Type has over Radio is that it runs behind Apache which is commonly built with mod_ssl. Secondly, the interface for Net::FTP and Net::SCP are exactly the same which means that all a (MT/Perl) developer needs to do is try to load the latter and if that fails, and the configs don't explicitly say to bail, load the former. It would likely be possible to set Apache up as a proxy for Manila to ensure that everything comes in and out of localhost on port 443. This is done in the Zope-world all the time. But in order to really do this hack properly, you also have to add kernel hacks/configs to make sure that traffic to the port that Radio is actually sitting on is only allowed from inside your network and on port 443. Which makes it "do-able" under OS X, nightmarishly complicated under Windows and probably impossible in Classic, where there isn't even a port for Apache. As far as the file transfers go, if someone wrote glue for the various SCP applications (Putty on Windows, NiftyTelnet on Classic and scp on OSX ) then it looks like Radio is actually rigged so that you could write a user.html.callbacks.fileWriters callback without too much trouble. It is unclear to me whether or not there is also a callback framework for "fileReaders". I haven't read the docs yet and there is no fileWriters.ftp.read table in my ODB. 10) Apparently, you can not blog to the past

refers to

meta

 

Me : WWW::Pseudodictionary.pm 0.1

The girl with a not so hidden agenda wondered aloud this morning :
[W]ho in the hell does the word of the day??? agitprop??? gah!
And while I confess to not being entirely sure what she's talking about it did remind me that I had written a whole whack of code for munging the data files at pseudodictionary.com . Since then, however, they've rejigged their back-end but with a little help from the mighty mighty HTML::Parser I was able to whip up a package that exports a single class method named random which returns a hash reference :







asc @ localhost in /home/asc/bin/perl/pseudodict



144 ->./parse-random



$VAR1 = {



          'example' => 'ex. My new job allows me to clock dollars.',



          'permalink' => 'http://pseudodictionary.com/word.php?id=5911',



          'submitter' => 'Jerome Greco',



          'id' => '5911',



          'www' => 'http://jgreco.homestead.com/jeromespage.html',



          'word' => 'clock dollars'



        };







I fear that if 2001 was the year of writing code, 2002 is going to be the year of the pedant ...

refers to

meta

 

David Rees : "I think one of the frustrating things for a lot of people in this situation

is you just don’t even know what to hope for. It’s not like I had this un-ambiguous thing of ‘Oh my god, we must stop bombing and turn it over to the World Court.’ So these were more just personal comics about how I’d been feeling about the whole situation. And I was drinking heavily when I made them, frankly. I’ve gone through a lot of Jim Beam in the evenings, because I’ve been working whole days in a midtown Manhattan office, listening to sirens and re-booting cnn.com, which is like the worst thing you can do to yourself psychologically." I'm not really sure what to make of the power of pop-culture comment -- wonder twin powers, anyone? -- but there you go.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/11/01/3588/

pubdate

http://www.aaronland.info

created

2001-11-01T14:25:58-05:00

last modified

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

revision

1.10

changes

http://www.aaronland.info/weblog/2001/11/01/3588/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 tremulous

| source : web1913 | Tremulous \Trem"u*lous\, a. [L. tremulus, fr. tremere to tremble. See {Tremble}.] 1. Shaking; shivering; quivering; as, a tremulous limb; a tremulous motion of the hand or the lips; the tremulous leaf of the poplar. 2. Affected with fear or timidity; trembling. The tender, tremulous Christian. --Dr. H. More. -- {Trem"u*lous*ly}, adv. -- {Trem"u*lous*ness}, n. | source : wn | tremulous adj : (of the voice) quivering as from weakness or fear; "the old lady's quavering voice"; "spoke timidly in a tremulous voice" [syn: {quavering}]

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/09/03/3333/

pubdate

http://www.aaronland.info

created

2001-09-03T14:48:50-04:00

last modified

2003-10-11T11:07:54-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/09/03/3333/changes.html

categories

license

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

external links

[x]
 

developerWorks : Automating UNIX system administration with Perl

"A big reason that UNIX administration is challenging is that every UNIX vendor believes standards are for weak-minded fools. ... If you are serious about automating system administration, cfengine is a tool you should know. Ignoring cfengine is a viable option only if you like to spend your days in the vi editor." via qube corner

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/07/20/3195/

pubdate

http://www.aaronland.info

created

2001-07-20T07:37:22-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2001/07/20/3195/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 redolent

| source : web1913 | Redolent \Red"o*lent\ (-lent), a. [L. redolens, -entis, p. pr. of redolere to emit a scent, diffuse an odor; pref. red-, re-, re- + olere to emit a smell. See {Odor}.] Diffusing odor or fragrance; spreading sweet scent; scented; odorous; smelling; -- usually followed by of. ``Honey redolent of spring.'' --Dryden. -- {Red"o*lent*ly}, adv. Gales . . . redolent of joy and youth. --Gray. | source : wn | redolent adj 1: serving to bring to mind; "cannot forbear to close on this redolent literary note"- Wilder Hobson; "a campaign redolent of machine politics" [syn: {evocative}, {redolent of(p)}, {remindful}, {reminiscent}, {reminiscent of(p)}] 2: (used with `of' or `with') noticeably odorous; "the hall was redolent of floor wax"; "air redolent with the fumes of beer and whiskey" [syn: {redolent(p)}, {smelling(p)}] 3: having a strong distinctive fragrance; "the pine woods were more redolent"- Jean Stafford [syn: {aromatic}]

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/07/01/3141/

pubdate

http://www.aaronland.info

created

2001-07-01T03:18:39-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2001/07/01/3141/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 rotund

| source : web1913 | Rotund \Ro*tund"\, a. [L. rotundus. See {Round}, and cf. {Rotunda}.] 1. Round; circular; spherical. 2. Hence, complete; entire. 3. (Bot.) Orbicular, or nearly so. --Gray. | source : web1913 | Rotund \Ro*tund"\, n. A rotunda. [Obs.] --Burke. | source : wn | rotund adj 1: spherical in shape 2: full and rich; "orotund tones"; "the rotund and reverberating phrase" [syn: {orotund}, {round}] 3: excessively fat; "a weighty man" [syn: {corpulent}, {obese}, {weighty}]

refers to

meta

[x]

permalink

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

pubdate

http://www.aaronland.info

created

2001-06-07T07:01:32-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2001/06/07/3093/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 bailiwick

| source : web1913 | Bailiwick \Bail"i*wick\, n. [Bailie, bailiff + wick a village.] (Law) The precincts within which a bailiff has jurisdiction; the limits of a bailiff's authority.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/05/02/3017/

pubdate

http://www.aaronland.info

created

2001-05-02T04:17:50-04:00

last modified

2003-10-11T11:12:59-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2001/05/02/3017/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 patrician

| source : web1913 | Patrician \Pa*tri"cian\, n. [L. patricius: cf. F. patricien.] 1. (Rom. Antiq.) Originally, a member of any of the families constituting the populus Romanus, or body of Roman citizens, before the development of the plebeian order; later, one who, by right of birth or by special privilege conferred, belonged to the nobility. 2. A person of high birth; a nobleman. 3. One familiar with the works of the Christian Fathers; one versed in patristic lore. [R.] --Colridge. | source : web1913 | Patrician \Pa*tri"cian\, a. [L. patricius, fr. patres fathers or senators, pl. of pater: cf. F. patricien. See {Paternal}.] 1. (Rom. Antiq.) Of or pertaining to the Roman patres (fathers) or senators, or patricians. 2. Of, pertaining to, or appropriate to, a person of high birth; noble; not plebeian. Born in the patrician file of society. --Sir W. Scott. His horse's hoofs wet with patrician blood. --Addison. | source : wn | patrician adj 1: of the hereditary aristocracy or ruling class of ancient Rome or medieval Europe; of honorary nobility in the Byzantine empire [ant: {plebeian}, {proletarian}] 2: belonging to or characteristic of the nobility or aristocracy; "an aristocratic family"; "aristocratic Bostonians"; "aristocratic government"; "a blue family"; "blue blood"; "the blue-blooded aristocracy"; "of gentle blood"; "patrician landholders of the American South"; "aristocratic bearing"; "aristocratic features"; "patrician tastes" [syn: {aristocratic}, {aristocratical}, {blue}, {blue-blooded}, {gentle}] n 1: a person of refined upbringing and manners 2: a member of the aristocracy [syn: {aristocrat}, {blue blood}]

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/04/29/3005/

pubdate

http://www.aaronland.info

created

2001-04-29T10:25:10-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2001/04/29/3005/changes.html

categories

license

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

external links

[x]
 

Me : "RSSBlog.pm is largely a repackaging of code originally written

by Jonathon Eisenzopf for his Weblog tool. I wrote RSSBlog because I wanted to be able to use the syndication/templating code he wrote via modules in my own programs." All of which means that, as soon as I suss the templates, there will be a gazillion and one ways to read this weblog. On the to-do list : widgets to publish RSS to a Manila server, a Blogger server, a Jabber server, etc...

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/02/01/2787/

pubdate

http://www.aaronland.info

created

2001-02-01T12:41:28-05:00

last modified

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

revision

1.10

changes

http://www.aaronland.info/weblog/2001/02/01/2787/changes.html

categories

license

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

external links

[x]
 

Suwon City : Vision on Restroom Culture in the 21st Century

"Several problems centering a restroom which has obtained a major status as the third living space have started to be emerged as a critical element deciding the quality of a modern life. Studies on restrooms, therefore, should be made seriously that much."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2001/01/06/2729/

pubdate

http://www.aaronland.info

created

2001-01-06T01:04:11-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2001/01/06/2729/changes.html

categories

license

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

external links

[x]
 

Mike Hall : JavaScript Crunchinator

"This is not a script you would include on a web page. Instead it's a utility that you can use to reduce files sizes by compressing JavaScript code. By removing comments and extraneous spacing you may significantly improve download times on pages that use long scripts."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/11/07/2569/

pubdate

http://www.aaronland.info

created

2000-11-07T18:54:06-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/11/07/2569/changes.html

categories

license

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

external links

[x]
 

Why do people feel the need to override the UNIVERSAL::can method?

Must .... bang ... head

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/11/02/2552/

pubdate

http://www.aaronland.info

created

2000-11-02T15:24:37-05:00

last modified

2003-10-11T11:20:40-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/11/02/2552/changes.html

categories

license

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

external links

[x]
 

Oh fuck it.

I'm just going to break it and see how long it takes to fix... I will put all the foofy dhtml stuff and permanent links back when I finish tweaking the backend templates. Obviously some re-thinking is in order. My apologies if I've upset your surfing routine. Breakage-reports are appreciated.

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/11/01/2546/

pubdate

http://www.aaronland.info

created

2000-11-01T03:24:21-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/11/01/2546/changes.html

categories

license

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

external links

[x]
 

Chappaquiddick

Orange plaid couch / Plastic trees and shaggy crochet / Estimated time to empty is 0:11

refers to

meta

 

TechNetCast : Future of BSDs

"Where is BSD headed? Will a common FreeBSD/BSDI release signal a new era for BSD? Is there something the BSD can (should) do about the BSD Mania? What new technical developments will help BSD moving forward? Panel, with Jordan Hubbard, FreeBSD, Wilfredo Sanchez, Apple Computer (Core OS Group), Charles Hannum, NetBSD core developer, Kevin Rose, Marketing Director, BSDi."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/08/29/2439/

pubdate

http://www.aaronland.info

created

2000-08-29T13:53:03-04:00

last modified

2003-10-11T11:22:31-04:00

revision

1.10

changes

http://www.aaronland.info/weblog/2000/08/29/2439/changes.html

categories

license

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

external links

[x]
 

Bill Lessard on the perception and reality of dot-com perks

Mr. Lessard is part of NetSlaves gang who, incidentally, awarded their Shut the Fuck Up award to Jakob Neilson this week. (real audio)

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/08/23/2423/

pubdate

http://www.aaronland.info

created

2000-08-23T04:39:18-04:00

last modified

2003-10-11T11:22:47-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/08/23/2423/changes.html

categories

license

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

external links

[x]
 

RSS 1.0 Specification Proposal

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/08/14/2385/

pubdate

http://www.aaronland.info

created

2000-08-14T08:54:17-04:00

last modified

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

revision

1.10

changes

http://www.aaronland.info/weblog/2000/08/14/2385/changes.html

categories

license

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

external links

[x]
 

It is a computer in name only.

People are making the same arguments about the Cube that they made about the iMac before it actually shipped. Do you remember how everyone bitch moaned about what lame specs the iMac had -- and still does -- relative to new PCs, not to mention new Macs? These things are *not* about specs. Desktop machines have reached the point, for the time being, where they have far more computrons than people ( the ones who don't sit in front of their computers all the time, with lives ) need or even care about. They are about being blue and having mice that fit perfectly in the hands of seven year olds. It is about owning a product that you imagine having the same cultural and design longevity as those fifties stainless steel car toasters . With the exception of the Performa Years , Apple has always understood that better than anyone else . The hockey pucks suck, they really do, but they'll be all the rage when the kids who've grown up with them hit their thrities. The Cube is the same thing, just for a different crowd . It's called lifestyle porn .

refers to

meta

 

project-flash

"is a new shell replacement for Windows 98 made from Macromedia's Flash 4 vector based technology."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/07/12/2283/

pubdate

http://www.aaronland.info

created

2000-07-12T18:58:20-04:00

last modified

2003-10-11T11:25:07-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/07/12/2283/changes.html

categories

license

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

external links

[x]
 

WebNap

is "a web-based Napster-compatible client in PHP." How cool is that?

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/07/11/2277/

pubdate

http://www.aaronland.info

created

2000-07-11T15:07:01-04:00

last modified

2003-10-11T11:25:13-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/07/11/2277/changes.html

categories

license

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

external links

[x]
 

Perl for Zope (zope-perl)

"Python programmers will be able to directly take advantage of the large collection of reusable Perl program modules, like DBI, found on CPAN. Perl programmers will be able to program and customize the Zope web application server using their favorite language." Yipppeeee! via rc3

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/05/25/2143/

pubdate

http://www.aaronland.info

created

2000-05-25T15:42:28-04:00

last modified

2003-10-11T11:26:55-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/05/25/2143/changes.html

categories

license

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

external links

[x]
 

Patrick Combs' 95 000$ Adventure

This guy definitely deserves to win some kind of Shit Disturber of the Year Award. This is a great story. via hyperbole

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/05/11/2088/

pubdate

http://www.aaronland.info

created

2000-05-11T14:15:19-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/05/11/2088/changes.html

categories

license

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

external links

[x]
 

An HTML to XHTML converter

from the nice people at O'Reilly. Pass the source, please.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/05/03/2061/

pubdate

http://www.aaronland.info

created

2000-05-03T06:33:08-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/05/03/2061/changes.html

categories

license

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

external links

[x]
 

Bill Humphries : Just what kinds of thugs are our business schools educating?

"People write business plans, and VCs fund them and they don't even pause to think about the ethics of what they are doing. In my opinion, the Doubleclicks of the world are at the same moral level as the snitch, the jailhouse informant, or a political officer. Can we send these jerks to bed without their stock options."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/04/21/2030/

pubdate

http://www.aaronland.info

created

2000-04-21T20:46:20-04:00

last modified

2003-10-11T11:29:20-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/04/21/2030/changes.html

categories

license

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

external links

[x]
 

Even if I could blog from the hot-tub

I wouldn't.

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/04/21/2029/

pubdate

http://www.aaronland.info

created

2000-04-21T07:13:17-04:00

last modified

2003-10-11T11:29:21-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/04/21/2029/changes.html

categories

license

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

John Raulston Saul

"Let me put this argument a different way. So long as an NGO -- which could also be defined as a corporation of social reformers -- remains outside the democratic system, it has no real political levers. Its activists are not there, in the people's chamber, to clarify the cause. And there is no practical link between the problem they are devoted to -- no matter how obvious the problem -- and the real action required to deal with it. PR victories -- which NGOs so often win -- cannot be converted automatically into law. Nor should they be. Again, we live in democracies. But the result is that there are no direct practical links between the public debate and government action. The public therefore becomes discouraged about the effectiveness of politics because politics appear to be unresponsive to the public debate. And because of their disconnection from the formal political process, the corporations of social reformers themselves begin to look naive. All of this results in what René-Daniel Dubois calls "la perte d'une culture partagée" -- a fractured culture or a fractured society."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/03/24/1915/

pubdate

http://www.aaronland.info

created

2000-03-24T06:38:31-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/03/24/1915/changes.html

categories

license

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

external links

[x]
 

I was going to spend the weekend

working on the never-ending upgrade of my own weblog software. I think, instead, I'm going to turn my computer off and sit around reading and scratching my ass. It's getting just plain weird out here or, as the one who knows all says : "There are very few despondent weblogs, though I bet there are more than a few despondent webloggers."

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/02/19/896/

pubdate

http://www.aaronland.info

created

2000-02-19T13:16:13-05:00

last modified

2003-10-11T11:33:46-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/2000/02/19/896/changes.html

categories

license

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

Crosswords

"is a single- or multi-player crossword puzzle game for the Palm Pilot family of "connected organizers." It is played by the same rules as Hasbro's "Scrabble"(tm) game, but is not affiliated with nor endorsed by Hasbro in any way." Yes! Who knew that ictic is actually a word. Clever computer.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/02/07/859/

pubdate

http://www.aaronland.info

created

2000-02-07T14:43:43-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/02/07/859/changes.html

categories

license

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

external links

[x]
 

Speared Peanut : I Hate Mosquitos

"Squish that buzzer with malice."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/2000/01/04/780/

pubdate

http://www.aaronland.info

created

2000-01-04T18:28:10-05:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/2000/01/04/780/changes.html

categories

license

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

external links

[x]
 

The Global Film School

"As the film and television production community embraces digitization, it is our obligation as teaching institutions to ensure that the next generation of storytellers are able to work freely, creatively and efficiently in any environment whether that is physically on a film set or virtually at a computer terminal." I'm normally not a big fan of "distance-education" but, at a glance, online film and television studies seems like an endeavour that could become greater than the sum of its parts. What I really want to know, howver, is how the web designers for this site talked their way into using "lateral scrolling" (ick!)

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/12/23/764/

pubdate

http://www.aaronland.info

created

1999-12-23T09:38:25-05:00

last modified

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

revision

1.8

changes

http://www.aaronland.info/weblog/1999/12/23/764/changes.html

categories

license

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

external links

[x]
 

Linda Seebach : Joining a digital library

see also : librarian.net My top eight things to say about [netlibrary] .

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/12/13/728/

pubdate

http://www.aaronland.info

created

1999-12-13T09:59:14-05:00

last modified

2003-10-11T11:37:42-04:00

revision

1.8

changes

http://www.aaronland.info/weblog/1999/12/13/728/changes.html

categories

license

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

external links

[x]
 

George M. Kraw : Vive La McDomination!

"In fact, an American-based legal system isn't being imposed on France or any other country. But providers and consumers of legal services are creating an international legal order that is largely based on American and common law principles. It is more "market driven" by consumers than "law driven" by legislative authorities enacting statutes." Okay, so what exactly is a legal system if it's not driven by law? The whole concept of law becomes essentially moot if it is just another service industry.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/12/09/717/

pubdate

http://www.aaronland.info

created

1999-12-09T23:21:47-05:00

last modified

2003-10-11T11:37:53-04:00

revision

1.8

changes

http://www.aaronland.info/weblog/1999/12/09/717/changes.html

categories

license

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

external links

[x]
 

Has Ron Harris got a deal for you

"This is Darwin's natural selection at its very best. The highest bidder gets youth and beauty. ... It is not my intention to suggest we make a super society of only beautiful people. This site simply mirrors our current society, in that beauty always goes to the highest bidder."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/10/23/584/

pubdate

http://www.aaronland.info

created

1999-10-23T18:53:58-04:00

last modified

2003-10-11T11:40:09-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/1999/10/23/584/changes.html

categories

license

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

external links

[x]
 

Feeling lonely or neglected?

Don't fret about it, just file an IPO .

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/09/19/469/

pubdate

http://www.aaronland.info

created

1999-09-19T16:10:39-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/1999/09/19/469/changes.html

categories

license

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

external links

[x]
 

United States v. Baugh

"A federal appeals court overturned 70 protesters' convictions for demonstrating without a permit Wednesday, saying the government can't make free speech conditional on a promise not to trespass."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/08/26/387/

pubdate

http://www.aaronland.info

created

1999-08-26T19:55:53-04:00

last modified

2003-10-11T11:44:31-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/1999/08/26/387/changes.html

categories

license

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

external links

[x]
 

What's the Plural of Virus?

"Another theory holds that virus, being a 2nd declension neuter--which we are 100% certain of because its nominative singular is -us and its genitive singular is -i--must go to *vira in the plural as do its -um neuter brethren in the 2nd declension. However, that assumes that it works like a -um form, not as a -us form does. And it really seems to do neither. If it were a -us form (again, as a 2nd declension nominative), then its vocative would have to be *vire; but it's really only virus. You also expect an accusative form *viros, but that too is missing; it's still just virus in the accusative. And if it were a -um form, then its vocative would have to be *virum. But it's not--here again, it's only virus. (Vocative examples of virus are not particularly common. Apparently the Romans seldom addressed their slime in a personal fashion. :-)" It all starts to sound like new math to me.

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/08/09/308/

pubdate

http://www.aaronland.info

created

1999-08-09T12:00:00-04:00

last modified

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

revision

1.9

changes

http://www.aaronland.info/weblog/1999/08/09/308/changes.html

categories

license

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

external links

[x]
 

Melamid on art and religion

"I truly believe that art has become a religion. . . . If you like the Mona Lisa, God bless you, there's nothing wrong with that -- just as you can believe in Jesus, or in any God you want. But the organized church of art, those education departments that try to convince people by force of persuasion that this or that is good art, doesn't leave you any room or choice to say if something is good or bad. . . . They used to beat up children, now they show them paintings."

refers to

meta

[x]

permalink

http://www.aaronland.info/weblog/1999/07/04/129/

pubdate

http://www.aaronland.info

created

1999-07-04T19:52:13-04:00

last modified

2003-10-11T11:48:40-04:00

revision

1.9

changes

http://www.aaronland.info/weblog/1999/07/04/129/changes.html

categories

license

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

external links

[x]
 
posts brought to you by the category “software” ←   → posts brought to you by the category “standards”
 

wtf?