close dialogue

Hello smile

I'm Siobhan Curran/Kisa Naumova, and this is my weblog. I tend to write about stuff like crossdressing, Macs, code, cats, wine and Second Life, but in general it's just an ongoing conversation about all sorts of stuff. If you'd like to know a little bit more about what this all is, I recommend starting on this page which has a little bit of info on who I am, and what I'm trying to do — or you could dive into my five years worth of archives if you like.

Otherwise, feel free to close this box and explore...

Wednesday, 21st December, 2005

Global Frustration

I've been wanting to register a couple of domain names recently. One of which will involve me putting my academic head on and getting in touch with someone in a London Univeristy to see if he'll transfer his now-inactive domain to me *crosses fingers*. The other would have involved a bit of international dealing.

However, whilst trying to find somewhere that could sell me a domain name in the Netherlands Antilles, I found some rules on the country's domain name registrar:

There is among other things required of the requesting organisation or entity that these an effective official establishment has on one of the islands of the Netherlands Antilles and is registered at among other things the chamber of commerce.

(Excuse the translation :unsure: Babelfish is good, but not perfect)

So basically, if I want to register a .an, I have to go there and set up a company? Poo.

For those entities or organisations which are not registered for example official at the chamber of commerce, or they want register that from the foreign country a field name, a possibility has been nevertheless created within An-domein the field name being able register. This is possible in the form of and so-called "third-level domeinnaam". These are in principle of the form <naam>.com.an, or <naam>.net.an or <naam>.org.an or <naam>.edu.an

So I could have a .net.an for example?

That's not really any use. I wanted to register si.obh.an :biggrin:

More Presents Like This, Please

tagphoto

(via flickr.com/people/si08han)

More Presents Like This, Please

The advantage of being 'out' to all your friends, is that they buy you things that you like for Christmas :biggrin:

Amen to that. :smile:

Interlocutors

Sometimes, when I'm particularly bored, I like to read some of the spam messages that get through the net. Recently, I've been noticing random images arriving — usually some modded-cartoon of (perhaps) Bart Simpson with his willy out, suggesting that I too can be like Bart and have a large yellow knob...

The one that just arrived in my inbox though, well, I have to say it's quite possibly the most badly written piece of crap I've ever read. And it's hilarious :biggrin:

It's obviously some kind of virus thing — and we all know, kids, not to open attachments if we don't know what they are don't we? — but the chances of me reading this, and thinking (a) it's legit, and (b) it's something I'd like to try, are less than zero.

Download you can directly in this letter I have attached last version of the program program to the letter.

"Download you can" — I'm being spammed by Yoda :o

to see an image of the interlocutor and to pass to its picture album

WTF is an "interlocutor" ?!

To load program Yahoo-Agent and to receive the information necessary for installation, you can directly in this letter.

I can directly what in this letter?

Gloriously badly written (probably by a bot), but I betcha at least 50 squillion people have opened the attachment already, and are now pwned.

If I was a virus writer, I'd put my efforts into a good cause. One for the public good as it were. I'd write a virus that said "By opening this attachment, you have waived all rights to own a computer — and for the good of the Internet, I will now destroy your machine"

Hi Siobhan,

It's strange how definite and indefinite articles get omitted in most dodgy emails (I have attached (..) last version of the program). Oriental languages, generally, use no definite articles. Having said this, I do not see oriental people as likely virus writers as they are far too busy working.

By the way, I see Elton has donned a wedding dress for the occasion; I guess the next stage will be when a straight guy in a straight wedding does the same.

Merry Chrissies sister

Susan

gravatar

Susan

How Not To Spell

tagphoto

(via flickr.com/people/si08han)

How Not To Spell

Every year, my next door neighbour sends me a card, and each year how he spells my name gets progressively weirder

Wait until it's paraphrased into something ridiculous, like "Grim". Or, when my cousins send me cards (22 years running, mind you) and spell it "Denial".

Looks like a dyslexic vote on The Weakest Link, Siobhan

gravatar

Susan

I've said it before and I'll say it again: That's the worst spelling of Siobhan I've ever seen! :biggrin:

It would be nice to get things you actually want for Christmas. Good going there Siobhan. Sorry to hear about the .an requirements. That would have been cool. But feh. At least someone has figured out how to misspell your name. They care that much.

"Christmas has an 'H' in it Mr. Baldrick. Also an 'R'. And an 'I' and an 'S' and a 'T'. Also an 'M' and an 'A' and another 'S'. And oh look, you've missed off the 'C' at the beginning too. Well done Mr. Baldrick, you've managed to spell Christmas without getting any of the letters right at all!"

Ebeneezer Blackadder

How about a virus in which every time the computer owner (previously!) tries to install or run a program, a little window that pops up and says 'You must check with the new administrator of your computer before using any program, as you are obviously too incompetent to use a computer unauthorized'? LOL!

It absolutely amazes me, the people that will open any damn thing that arrives in their inbox from any damn person, whether they know them or not!

In the old days, when I was still on the 'blackhat' side of things, before ethics entered the picture, and even before learning anything about utilizing exploits, etc. I would hang out on ICU, find new dumbasses, and send them various cleverly disguised programs in which I had secretly attached trojans in the background (such as BO2K). The programs that I would send them were altered in such a way that the user would actually GET a functional program, but in the background, a trojan would also secretly install itself, effectively giving me control of their computer. Anyways, it never ceased to amaze me the sheer number of people that would open these '.exe' programs from someone that they never even met before and having absolutely NO virus protection on their computers whatsoever. I had an awful lot of fun taking over people's computers in those days! Thanks guys!

These days, I am on the other side now. I don't do things like that to people's computers anymore and am much more interested in helping them SECURE their computers. Nevertheless, the sheer ignorance of some users will never cease to amaze me!

I'm glad to hear that you know better! LOL!

Grepping For Comments

My friend NRT was talking today about trackbacks and comments. I've never fully got my head around how trackbacks work long enough to write something that would enable them, so the majority of it went over my head. But I was prompted by him noting how many comments he's had to try and find a way to work out how many I've had...

Comments in this weblog are indicated in the main source files by a little HTML comment — in the tradition of -----BEGIN STUFF----- [...] ------END STUFF------. SO I figured I could just grep the source folders, count the lines returned, and there would be my answer...

Actually, it was harder than that — I could easily return the number of instances of the, um, "comment comment" in each file, but I'd have to add them all up at the end.

So I wrote a script :biggrin:

#!/bin/bash

Y=0
for X in $(grep -rch "$2" $1)
do let "Y += $X"
done
echo $Y

...which I call with two arguments: the top level folder, and the text to search for. Clever no? :smile:

I'm really enjoying doing things in scripts at the moment. When I was younger, this was the only way you could get computers to do things. You either had to write something, or listen to half an hour's worth of "bbzzzzzzzzzzzzzzzipssss" from a tape and watch flashing colours on your TV.

I remember, for example, spending days trying to get my head round the functions you had to call to get the AMX Mouse on a BBC B working properly, because I wanted to write a programme that drew long pictures of bricks so that I could cover the walls of a model I was building at the time.

It was very clever — you clicked on the screen and it drew a brick. But it wouldn't cut off half a brick. And if you wanted to start again, you clicked the icon that looked like a demolition ball.

...

In case you were wondering, BTW, this year, the total number of comments is 2,699. Not bad I feel :unsure:

shame i couldnt help on the .an domain, i am one island to the left of the antillies to be of any use and we have our own country code of .aw, and i work for the registrar...

gravatar

graeme

You're kidding! ".aw" That's so sweet! :biggrin:

Retro Mice

Oh boy, just went on a search for "AMX Mouse" to see if I could find anything related (I think I have on in the loft BTW), and came across a review of the AMX Mouse in "Sinclair User", c1986...

http://www.sincuser.f9.co.uk/047/amx.htm

My favourite quote so far in reading it has to be...

Who needs a Macintosh, ST, or Amiga when you can use the Spectrum?

Wonderful! :biggrin:

(A la Clarkson)

"Who needs the Ford GT40, the Aston Martin Volante, or even the Porsche Boxter when you can use.....the Sinclair C5"

LOL well Gryham's better than what my ex's own family actually call him as in GAYbriel instead of Gabriel, charming!!!!!

Yes I love spam mail, and no thank you I dont need Viagra but yes bigger tits would be nice (any tits would be nice.)

This is a comment i.e. I'm writing about something in your blog, in your blog (if that makes sense).

If I wrote about something here, but did so in my own blog, if your blog accepted trackback pings I could then post a notification here that there's more on the same subject at [link]. That notification is a trackback. It's a lot like Technorati, but directly linked to the appropriate entry.

I like the idea, but I'm afraid it's underused by genuine bloggers and overused by sp*mmers, so I've stopped accepting trackbacks.

Gryham.

Is your neighbour an Aussie?