Journaling on estrip is easy and free. sign up here

Zobar's Journal

zobar
My Podcast Link

05/28/2006 12:28 #37331

crazies
Category: hate mail
Last night I was talking to some people about the kinds of anarchists, lunatics, and terrorists who perennially leave us messages in our mailbag, email inboxes, and voice mail systems. Eventually we decided that, while we don't have the room to print them, we could at least put the more entertaining voice mails on our website. Thus:

What's happening, man? My name is MC Moses, and I was calling in response to the article in the Artvoice, and what I was wondering is why on earth would you people put an article about some poseur by the name of MC Sick? That motherfucker be acting like he's from the Bronx, and he be from Long Island. I don't know if you motherfuckers have a clue, but there's a major difference between being from Long Island and being from the Bronx, you know what I'm saying? I mean, I'm from Brooklyn, and I've got all these DJs that throw down fat beats, and I didn't see or hear anything about my name in that article, and I'm pissed off, so you better call my DJ back [phone number omitted]. You better call him back and straighten this out, because there ain't no way you guys are going to print an article about Buffalo hip-hop and not include my motherfucking name, know what I'm saying? Because I get down, I get funky, and I get motherfucking live, alright? So you motherfuckers need to recognize that what I do is motherfucking cut, alright? So call my motherfucking DJ back, because I'm pissed off and we need to straighten this shit out, you know what I'm saying?


'Letters,' v5n17 in response to 'This Is Buffalo Hip-Hop,' v5n16 .


I see Bruce Jackson is writing the same things, over and over and over now, and week after week. And of course, a nice little touch: bring back the Peace Bridge. He's like a two-issue person. If you could pass that along to Doctor, Mister, whatever, Shithole Jackson, tell him to kill himself, because he's clearly no use in this world. And, you know, your paper is shit. It's not even worth being free. You're not the Beast. The Beast is amusing. Yours is annoying. The Buffalo Current made me wince, and thankfully that died. Maybe your paper will die. Maybe you will all kill yourselves. The Buffalo News is not much better. I'd be willing to raise money to send him back to Guatemala. I'll sell t-shirts, pass that along to him. Nick Beat- was that his name at UB? Yeah, Nick Beat. OK, your paper is shit. It's absolute shit. You just run every issue into the ground. Oh, and by the way, the Elmwood Avenue hotel- why don't you point out that you have lots at stake in it? That's why you're in favor. Otherwise, you're opposed to everything, development... I hope somebody builds a Walgreen's right on top of your heads, and smothers you and kills you. A big old Walgreen's. And a Rite-Aid, and a Wal-Mart, and an airport, and kills you because you're useless. Your paper is shit. You sell casinos advertising, yet you rail against it. How about Ralph Wilson? Those are OK. I think all the money for the Bills goes to Michigan, Detroit, doesn't it? Sabres money goes to Rochester, to Golisano. And the Bisons? I think the Riches hang out in Florida. That don't matter, does it? Because you're pretty much whores. You sell out to the highest-- 'End of messages.'


'Letters,' v5n19 in response, perhaps, to 'Sweet Nothings: When "Dead Deals" Are Better Than "Done Deals,' v5n10 , part of Bruce Jackson's interminable Casino Chronicles series.

- Z
zobar - 05/30/06 10:04
That's certainly possible. Much has been made of the rivalry between us [at least by the Beast], and I don't think a single issue goes by without them mentioning how awful they think we are. For our part, we believe our readership [270,000] speaks for itself.

On the other hand, calling people up and leaving crabby messages isn't really their MO. They would much prefer to pull an elaborate prank. Then they'd have something to write about, and they wouldn't have to [God forbid] leave the office.

- Z
libertad - 05/29/06 19:48
I wonder if any of those letters you are receiving are from the Beast?

05/28/2006 09:05 #37330

feels like
somebody puked on my pillow and called it my head. Nice meeting all y'alls and hanging out.

Usually when I go to a party of people I haven't met I just kind of hang out in the corner and quietly eat all the nachoes. But since I've been following all of your lives, loves, and recipes online for the last couple months, I felt it much easier to talk to people.

- Z
imk2 - 05/28/06 11:04
it was nice meeting you and dragonlady! glad you guys came. get ready for the pool party coming up this summer!

05/27/2006 22:11 #37329

yo
hey guess what guys i'm at (e:paul) 's house and he's having a party.

image

- Z


05/26/2006 18:19 #37328

call me
Category: javascript
This post is extremely nerdy, so for those of you who don't care about Javascript's object model, have a good weekend, you may skip the rest of the post.

OK, so now that I'm talking to the nerds, here's some neat Javascript voodoo. I really like monkeying around with runtimes, and one reason that I like Python so much is that it lets you do all kinds of perverse things to the runtime with some very elegant effects. One thing it lets you do is define "callable" objects - objects that you can call like any plain old function. Classes, eg, are callable; this invokes the constructor and returns a new instance of the class. This maintains a similar syntax to other languages, except it's cleaner:

myInstance = MyClass() # python
var myInstance = new MyClass(); // Javascript
MyClass* myInstance = new MyClass(); // C++
MyClass* myInstance = [[[MyClass alloc] init] autorelease]; // Objective-C

This also makes for very elegant RPC calls. You can, eg, create a callable instance that you can use like a regular function, but takes care of all the grotty marshalling and connection management behind the scenes. Once you set it up, you can use the instance like any other function:

import xmlrpclib
server = xmlrpclib.ServerProxy('http://time.xmlrpc.com/RPC2')
print server.currentTime.getCurrentTime()

I'm writing a Javascript XML-RPC client library for work and I really wanted to be able to do something that elegant, like:

getCurrentTime = XMLRPCMethod('http://time.xmlrpc.com/RPC2', 'currentTime.getCurrentTime');
alert(getCurrentTime());

But in Javascript, you can only call things that are actual functions. However, since functions are first-class objects, you can bind your own attributes to them like any other object. You can access them from inside the body of the function by using the special variable arguments.callee:

function Greeter(yourName) {
    var result = function(timeOfDay) {
        alert('Good ' + timeOfDay + ', ' + arguments.callee.yourName);
    };

    result.yourName = yourName;
    return result;
}

greetZ = Greeter('Zobar');
greetP = Greeter('Paul');

greetZ('afternoon'); // 'Good afternoon, Zobar'
greetZ('evening'); // 'Good evening, Zobar'
greetP('evening'); // 'Good evening, Paul'

When I figured this out it blew my mind, and while I doubt its day-to-day practicality, I thought it's a handy tool for Javascripters to have. I also plan to make the XML-RPC library public, once I clean it up a bit, test it in MSIE, and finish the documentation.

- Z
carolinian - 05/27/06 18:38
In the past, I've tried to design complex OO stuff in JavaScript, spent a lot of time doing it, had it not work, and wished that netscape had instead made python the standard language of web page scripting.

Considering the number of people who are having success with OO javascript, perhaps I should try things again and give the language one last chance to redeem itself.

paul - 05/27/06 10:39
I responded to this again on my journal (e:paul), 4370 so that I could include larger code samples. It includes some objects instantiation inside of prototypes.
paul - 05/27/06 00:15
I responded to this on my journal (e:paul,4369) because the response was too long to fit in a comment. I also added the new [box] style for displaying code.

05/25/2006 07:56 #37327

i throw it a scrap and it hums
Category: computer

My computer and me are both brief in this world, both foolish, and we have earthly fates.



Yes, it's dorky to eulogize a computer, but I am a computer geek and one tends to get attached to these things . So please, a brief moment of silence for my old computer, which has served me honorably and well deserves its retirement.

...

ENOUGH! Now, we drink! We feast! We spit on the face of death for another day! BAH!

Here's my first and second impressions of the new MacBook:

The MacBook and MacBook Pro are much closer to each other than the iBook and PowerBook ever were . Both come standard with a built-in iSight camera that can be used for taking dorky pictures of yourself; both have AirPort Extreme and Bluetooth standard, and at 6 hours, the MacBook has better battery life and lower power consumption than the MacBook Pro. In fact, almost everything in the MacBook can be upgraded to bring it in line with the MacBook Pro. <geeky>The MacBook has an integrated video card which, I guess, is bad if you're playing 3D action games. Since the video card mooches off main memory I would recommend a RAM upgrade, but other than that I wouldn't sweat it. The MacBook also lacks a PCMCIA port, but I never used mine on my old computer.</geeky>

The black MacBook costs $150 more than an equally-outfitted white MacBook. I admit it, I paid the Vanity Tax. Much like the Stella , it's less about how fast it is than about how you look when you're pushing it home. Although you can't tell from the pictures , it is finished in a matte black plastic that looks like a post-WallStreet, pre-TiBook prototype, and is very classy in an understated, Little Black Dress kind of way.

The monitor is the perfect size; there are as many pixels as I am used to [1280x800] but they are made to fit on a 13.3" monitor rather than the 15" of my previous laptop. I think this is the ideal size- large enough to use, but small enough to carry around. Much has been made of the glossy, high-saturation [and presumably high-glare] screen coating, as opposed to the traditional matte, low-glare [and presumably low-saturation] screen coating. The colors are, indeed, very deep and saturated. As for the glare, I have not had a problem yet. Yesterday morning, (e:dragonlady7) was using it in a sunny window and, with the brightness turned all the way up, could still read it.

Apple finally put in a widescreen trackpad to go along with the widescreen monitor. They may have gone a little overboard, though, 'cause this thing is enormous. It still only has one button, because Apple are stubborn fucks, but it compares favorably even to the five-button + nub + trackpad that we have on the ThinkPad at work . The new trackpads accept two-fingered input, so a two-fingered tap is like the right button, and a two-fingered drag is like a two-dimensional scrollwheel. If you're used to tapping, this feels very organic and works really well.

I gotta go get ready for work now - more updates as they become available!

- Z