Archive for the ‘Meta’ Category

Thoughts

2003-08-21 09:01

Thanks to Jeff, I learned how to do cross platform image rollovers.

function logoChange(imageSrc) {
	document.getElementById("logo").src = imageSrc;
	return true;
}

Next, I have to get my résumé properly centered in Mozilla, like it is in IE.

What do I like about Firebird?

  • It’s free.
  • Unzip and it works. No installation.
  • Popup blocking.
  • Tabbed browsing. Ctrl-Click on a link = open in a new tab, leaving the current tab on top.
  • Open folders of bookmarks in tabs. Great for reading your morning comics and news.
  • Type in page find. Great when used in conjunction with Google.
  • Select and search. Ditto on Google.
  • Ability to turn off selective JavaScript behaviours.
  • Works mostly like IE. Notably, Alt-D = Address bar. Ctrl-Enter = complete .com address.

What’s missing?

  • Switch to turn off image resizing. Found it, it’s in the geek-tweak settings.
  • Too much real-estate taken up by controls, even in full screen mode. None of the skins quite fix this problem. I may have to write my own.
  • Ability to turn off animated images.
  • Font is that garish bold thing that Netscape uses. I can probably turn this off using a skin or the userChrome.css file.
  • The interface lacks accelerator keys in numerous places.

Friday was weird… being up at 04:00 always gets me feeling a bit alone… probably half solitude, and half lonely. It brought back a lot of memories of being in London, when I’d frequently be alone in my room writing letters to friends. It used to be how my life was, and I liked my life then. It is no longer how my life is in general. Besides being with Dina, I’m constantly around friends. I like my life better now.

Early To Rise From The Ashes Into Flames

2003-08-15 09:04

Downloaded Mozilla Firebird. Pretty good browser. Just need a few small tweaks, and I’ll be willing to use it over IE.

I like Firebird enough that I finally sat down and fixed the display of the Page HeaderCurrently the black strip at the top of the page with the site logo and “Email Me” link. under Mozilla browsers. The <p> that contains the logo and link needed

height: 35px; /* For Mozilla: Same height as the logo */

and

margin-top: 0; /* For Mozilla: Despite the fact that the body has margin: 0; */

Guess that’s the next phase in my web programming development: learning to care about cross-browser compatibility.

Also stopped the horizontal scroll bar from appearing on the blog pages. Two culprits: one, a

width: 105%;

was understandable. The other,

text-align: justify;

causes IE6.0SP1 to display it, but not other browsers. Weird.

Am downloading the ISOs for Red Hat. So far, WinXP hasn’t crashed. On the other hand, I just watched the IE/Explorer dialog display:

1 Hour 0 Minutes Remaining

1 Hour Remaining

60 Minutes Remaining

Car noise was but a pebble in the brakes.

Signed the lease for another year at the same place.

Got my new business cards for work. Finally. Ironic for reasons I can’t mention.

Heard back from Heidi again. I’ve been hashed into the “sin” bucket in her memory.

<sigh />

Wasn’t quite what I was hoping for, but it wasn’t unexpected either. In fact, I’m so unhappy about it that the part of me that enjoys tempting people is neither proud nor guiltily ashamed; it’s just staying quietly in it’s little corner of my mind/personality.

Another possibility is that, all along, I never even had cards to play. That would probably be the worst outcome, since it would mean that I was manipulated and lied to all along. I try not to think of that much, mostly for my own self esteem.

Nadine used to tell me that I sounded like Kermit D. Frog. I never told her that I liked this song.

It’s not that easy being green;

Having to spend each day the color of the leaves.

When I think it could be nicer being red, or yellow or gold,

or something much more colorful like that.

 

It’s not easy being green.

It seems you blend in with so many other ord’nary things.

And people tend to pass you over ’cause you’re

not standing out like flashy sparkles in the water

or stars in the sky.

 

But green’s the color of Spring.

And green can be cool and friendly-like.

And green can be big like an ocean, or important like a mountain,

or tall like a tree.

 

When green is all there is to be

It could make you wonder why, but why wonder why?

Wonder, I am green and it’ll do fine, it’s beautiful!

And I think it’s what I want to be.

From “The Sesame Street Book and Record”.

‘Green’ is ©1970 Jonico Music, Inc.

Jeff: One entry, no “points of ellipses” Fine, only one…

More Geek Tweak

2003-08-15 09:01

Figured out JavaScript for the mouseover on Mozilla instead of IE. One would think that rollovers would be an easy thing to do. This is what I came up with… if anyone has suggestions for better, I’m all ears.

if (document.images) {
	logoRed = new Image;
	logoWhite = new Image;

	logoRed.src = '/images/varacalli-logo-with-home-red.gif';
	logoWhite.src = '/images/varacalli-logo-with-home.gif';
} else {
	logoRed = '';
	logoWhite = '';
	document.logo = '';
}

function logoChange(imageSrc) {
	var bWorked = true;
	// This one works on IE
	try {
		document.all.logo.src = imageSrc;
	} catch (ex) {
		bWorked = false;
	}

	// This one works on Mozilla
	if (!bWorked) {
		try {
			document["logo"].src = imageSrc;
		} catch (ex) {
			// Do Nothing. Ignore error.
		}
	}
	return true;
}

function logoHighlight() {
	return logoChange(logoRed.src);
}

function logoNormal() {
	return logoChange(logoWhite.src);
}

Development vs. Writing

2003-07-27 09:17

Photograph: Looking Up Building, Boston, 2003-05, © Nick Varacalli. There are times that I use my blog as a means of expressing myself, writing can be fun and therapeutic. Other times, it’s a way to learn about various technologies. I’m currently in the mood to do the latter.

I’ve ditched VSS, and have installed SubVersion and TortoiseSVN. I’m using NAnt as a build system, instead of a homebrewIt had a kick-ass UI. Maybe I should write one for NAnt. system of batch files and XML. I’ve signed up for SourceForge, and hope to contribute to both NAnt and NAntContrib. After that, integrating NUnit, NDoc, and FxCop.

Although I’m currently using a pre-processor, I’m unhappy with it. I have to build my web site by running the pre-processor before I can view my changes. I think I need to figure out how to write a handler for my un-pre-processed files so that my local web-server will run the processing step before displaying the files.

Theoretically, I shouldn’t need a preprocessor, I should just be writing the whole site as XML fragments, then use/write a utility to aggregate the XML into XHTML. An additional advantage of that is I can start publishing an RSS feed.

I’m shifting from a writing bent to a technical bent because I may need to learn some of these tools and technologies for work. Also, work is digging into my writing time. As a geek, writing software, or other facets of development, is much easier than writing prose.

Meta

2003-07-27 09:16

More colour-coding to paragraphs. e.g.:

Development related stuff that is not really techie enough for Thoughts On Development.

Meta content… like this whole entry.

Eventually, this will be part of the RSS category, if I ever get to that.

Update: 2004-06-25: Removed all the colour-coding. It just wasn’t working for me.

Hobbies

2003-07-27 09:14

Been thinking about some of my hobbies lately.

Blogging… it’s fun, but it takes more time than I want it to. It’s too hard to do it right. The tools aren’t there. I know enough about computers that I want/try to write my own tools and infrastructure. While thinking of this, I came to the epiphany that Source Code Control should be something that is part of the OS, completely and utterly transparent to the end user until they need it. I’ve been thinking of how computers should work, and am coming to the conclusion that the information age will come of age in about 3 to 4 decades from now, once we’ve fixed the reliability and interface problem. That’s a topic for another time.

The question with computers for me: Is the effort I put into it worth it?

I enjoy doing things on the computer. The software I need/want isn’t always available, so I cobble together my own. I’m doing something I like, I’m learning fun stuff in the process, and I’m learning skills that are relevant to my job/career as I do it. The problem is that my anal retentive qualities take over at times, and I spend more time on the infrastructure I require than on the task itself. Am I coming out net positive in the end?

I don’t know.

Another thing that I do is read a lot. I’ve always been a bit of a bookworm, and it’s become more pronounced of late. On one hand, it’s good clean fun, mind expanding, relaxing. On the other hand, it’s solitary, and burns through time and money. Should I be spending more time with my friends and family?

I dunno.

Meta

2003-07-14 09:18

Adding colour-coding to paragraphs. e.g.:

Poker related stuff.

Boring personal shit (class="contenttypeboringpersonalshit")

Update: 2004-06-25: Removed all the colour-coding. It just wasn’t working for me.

Pictures. Moved. Work.

2003-06-02 09:23

Photograph: Falling Balcony, Cambridge, 2003-05, © Nick Varacalli. Updated the pictures page. Added all the pics that I’ve been uploading for the blog. Changed the layout.

The web hosting transition is done, modulo getting the dns entries to propagate out. Site is up, mail is flowing. I can now easily check my web logs for referrers, visitors, and all sorts of other stats.

Whether or not I’m tired / dazed after work has less to do with the amount of work I do, and more with whether or not I finish popping my stack by the end of the day. Two hours alone in the morning at work is very productive, BTW…

Moving

2003-06-01 09:24

Photograph: House Detail, Cambridge, 2003-05, © Nick Varacalli. Have a new web host, dr2.net. Inexpensive, unlimited email accounts, decent amount of space and bandwidth. It’s not ASP.Net, so it’s time to learn PHP, MySQL, and a bunch of other technologies. It’s going to take a little while to get the dns crap sorted out, so if Dina and I are unresponsive for the next little while, you now know why. Now the web site should be immune to the next installation of the roadrunner–>mediaone–>attbi–>comcast–>??? debacle.

It also means that if you’ve bookmarked these pages, you’ll probably have to change your bookmarks, since, under attbi, the browser address bar displayed http://home.attbi.com/~envy/. Once the change is sorted out, it should properly display http://www.varacalli.com.

Meta

2003-04-23 09:40

Photograph: Bridge Over The Tiber, Rome 2001-01, © Nick Varacalli. Having the laptop, my palm / phone on a trip was pretty good. The only thing that I need to do now is to put the synchro software for the palm on the laptop, and I’ll be all set… I won’t have to worry about losing data on my palm due to the low signal drains battery and wipes out data bug. Thankfully, the signal in Vegas on the strip was great, and I was paranoid about checking the signal and charging. Talked to another palm user. She’s run into the bug too. Hasn’t found a fix either. Been taking trip notes on my Palm all weekend long, and actually started collating the thoughts into the blog entry at various points in Vegas and on the way home. That’s probably why the entries are in really messed up tenses…

Obsessing

2003-03-09 10:23

CSS / XHTML are fun, though still frustrating at times. I think I’m done making changes to the look and feel. My résumé is pretty much done modulo proofing by friends. I think that it actually looks pretty slick, although the verbiage is a bit awkward in places.

I actually downloaded Mozilla 1.21, Netscape 7.02, and Opera 7. The pages look pretty good in Opera. Things look almost the way they do in IE, and the way I think they should look based on the way I read the CSS specs. The popup blocking may be enough to make me use it as my main browser.

Netscape and Mozilla have problems rendering some things, especially the header with the site logo and email link. They seem slow and slugging compared to IE and Opera. If I get motivated, I may try to fix things, but I’m not sure I care enough. Maybe they’ll eventually fix their rendering engine.

Redesign

2003-03-04 10:27

Time for a bit of a visual change. Updated to XHTML 1.1. Validated XHTML 1.1 and CSS compliance. Next, updating my CV, and using CSS instead of tables for layout (only in a few places, such as the blog titles, the page titles, and the main page).

Valid Markup Valid CSS

Meta

2003-01-09 11:06

A lot of blog fodder today. I like the phrase “blog fodder”. <grin />

Tips

2002-12-24 01:20

Experimenting with styles to indicate that tipsLike this. are available for mousehover.

Tips

2002-12-11 01:06

I like the mouseover title thing. I think I’m going to make use of it more often. Hopefully, it’ll let me continue a parenthetical / stream of consciousness type writing style, without detracting from the narrative.

Readership

2002-12-11 01:03

My ‘buddy’Person dedicated to answer all the little questions that I have. at NeWCo, was showing me around the office. When we got to his desk, I saw a printout of this page. Oh my. He mentioned the ‘pigfucker’ reference, remembered that my wife’s name is Dina, and chided me for not going water-skiing. Interesting start with my new co-workers.

Update 2002-12-14: Looks like the archive page was down. I guess the main pigfucker reference wasn’t read. It may be now.

Meta

2002-12-02 00:44

If I think of something, can’t blog that day, then don’t remember it 3 days later, was it really worth blogging to begin with? Are notes to myself in my Treo cheating?

Archive

2002-11-24 00:40

I eventually want to change the format of this page, it’s getting too long. In the meantime, I’ve split older stuff off into an archive. Also made it easier to comment on each thought.

Feedback

2002-06-11 22:17

Feedback has been getting back to me through the weirdest channels. Use the Email Me link in the top right corner of the page.

Update: 2005-08-12: The blog now has comments enabled. Use that.

Web Learning

2002-04-04 12:00

Upgraded the site to XHTML 1.0 Strict. Hopefully, none of my three reader’s browsers will complain.