Hello 
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...
Getting My Kit Off
This may — or may not — be a good idea. Through a drunken moment of browsing on Monday night, I came across this idea to spend one day without my CSS in an attempt to "promote Web Standards [including] proper use of (x)html, semantic markup, a good hierarchy structure, and; well, a fun play on words."
In the past, I've been rather blasé about such things — in fact, I could probably cite a few clients who've insisted on me producing strict XHTML output — only to have me blow raspberries in their face.
(Why? Well, because I'm not a Pro. I do this as a hobby. If people want to pay me for it, then whoopeedo — but I like to set out just what I'm not going to give them early on in a brief. I like to think that sometimes I'm the epitamy of "style before content")
But I've been reassessing things recently. Realising that one of the things I lack more than anything else is some kind of conceptual basis to what the hell it is that I do online, was probably the driving force behind the recent redesign that I did.
Encapsulating the idea of a personal stream, and expressing it through a very 1970s-UNIXy-text-based medium is what I've been trying to achieve.
(And dresses. Of course. The expression of self through huge fuck-off skirts can never be underestimated)
But regardless of how much this is a little stunt, two things have popped into my head as a result:
The links, in the 'previous' column and the 'future' column need to be cleverly-styled lists. As they are, they don't make sense.
I have more than one <h1> on a page.
(1) is relatively easy to fix. And at some point over the next few days I'll try and do just that. A simple li { display: inline; } (with some other things) should do the trick.
But (2) is more complicated. I spent a lot of time last night reading through various arguments and examples of why you should only have one <h1> on a page ... and came to the conclusion that what I do is a Special Case™
Technically — you could argue — this page should start off with:
<h1>Tranniefesto: A Crossdressing Adventure</h1>
And then every new thing I try and shift the conversation towards should be a <h2>.
But I'd disagree. The title of this weblog is "Tranniefesto: A Crossdressing Adventure" — and I do, indeed have that in my <title> tag. But the individual <h1>s are me trying to hold court.
Semantically then, this page reads as this:
<preliminary stuff>
<fanfare>This is Siobhan's Weblog</fanfare>
</preliminary stuff>
<start talking>
<set the theme>And right this second, she's thinking about this
</set the theme>
---STUFF---
<change the subject>But wait — she's on to something else now
</change the subject>
---ETC---
</end talking>
Am I boring everyone yet?
FFS
ula
I just refreshed the page, like, three times in an attempt to make it pretty again.
The expression of self through huge fuck-off skirts can never be underestimated
The huger and fuckier-offier the better.
"Hi Kath. Feel free to join in"
Ooh, that's new. ![]()
Ula, You're absolutely right. The sooner we point this out to these delusional colonials the better. "2 minutes and three seconds past 1 on the Aprilth of 5, oh-6" is just ludicrous ![]()
Tiff, patience hon.
Natasha, indeed. And I'm still waiting for ParcelForce to deliver what I'm hoping will be the hugiest and fuckie-offiest dress EVER ![]()
Kath, that's been there at least a couple of days. Shows how much attention you pay ![]()
Hmm... so remind me of the point again? There is a reason for using formatting. It makes the page useable and readable, and without the css your page becomes hard to use.
Your design may not have been "pure" as far as the coding nazis are concerned, but at least I could see the difference between our comments and your replies.
Yes there is a need for clean design, and making sites accessible. But a lot of this "My Code is Holier than Your Code" rubbish is just annoying ubergeekery.
without the css your page becomes hard to use.
I guess that in some respects, this is the exact point. I spent a lot of time yesterday evening worrying about this — tweaking things left, right, and centre to see if I could make it less so — but in the end decided to just go ahead and expose some of the fundamental flaws in the way that I do things.
Call it an experimental exercise if you like — the only beneficiary of it being myself.
Whereas a lot of people who are doing this today are making the point that accessibility is important within web design, and that clean, understandable code is essential for (a) web users who (for whatever reason) aren't using a bells-and-whistles browser, and (b) non-human users — like Googlebot for example — to understand what a web page is about (thus making searching easier for all), for me, what I'm currently getting out of this is a chance to see just where and why my approach to all of this doesn't work.
"Debugging in public", perhaps.
I mean, you're absolutely right — without the CSS there's no way to differentiate between what I write, and what everyone else writes. And considering how much emphasis I put on that as being one of the core defining things about how 'conceptually' my weblog works, that's a pretty serious design flaw.
Without something like this, I suppose I could just coast along relying on hacks and workarounds to visually translate something into something meaningful — but (and I suppose I'm trying to answer the obvious "But why does it matter?" question here) I want it to make sense ... from the ground up.
So the big question that's racking my brain at the moment, is "What tag should I wrap around comments to indicate that's what they are?" <blockquote> doesn't feel right — because I'm not quoting someone.
Well, at the very least it should load faster.
But who's in that much of a rush?
What tag should I wrap around comments to indicate that's what they are
Erm.. Italics?
Oh puh-lease ![]()
What tag should I wrap around comments...
What about <cite>? or just a 'p' tag with a class of 'comment'?
Got to say, I freaked when I first saw the page — scary! Now, changing the subject...
Oh dear, oh dear.
E4, Tuesday — "Boys will be girls"
I think I'll be watching this one through the gaps in my fingers, or possibly from behind the sofa!
Alli' Cat'
You know, despite your objections, <blockquote> is probably the most appropriate thing to use (forget <cite>, it slipped my mind that it's 'in-line' and not 'block-level'). After all, your page is quoting a comment someone has left. If you do use it though, you'd better make sure your styling handles 'nesting'; some people [blush] have been known to use this tag in comments.
Alli' Cat'
Cite should really be used to label the reference for the citation (or use the cite attribute of the blockquote tag) and blockquote to encapsulate the citation concerned. Blockquote "would" be suitable, although the validity of usage is a bit borderline...and I've used the markdown tag for blockquote to get an idea what it would look like here....
some people [blush] have been known to use this tag
Yes, *cough*. Not to mention the regex I have to do to make sure that those certain people don't screw up my XHTML by not putting <p>s inside their <blokequotes>s ![]()
After all, your page is quoting a comment someone has left.
This was the conclusion a friend and I came to earlier. Since there isn't a tag that I can use that says "this chunk was written by someone other than the author and is not a quote by her", we squirmed our wawy into thinking that (as you said) it was still me publishing it, so technically I'm quoting other people when they leave comments.
But never mind eh?
although the validity of usage is a bit borderline
Exactly hon. And although I've kinda caved into myself today (I'm using <cite>s) I think I really need to think this one through.
web = compromise
Plus it:
a) isn't pretty
b) is a pain in the ass
That's my $0.02 USD
Typical
You spend all afternoon taking pictures of yourself in big dresses, and the only half-decent one that comes out of the whole shebang is one you get just as you're loading the photographs off the camera onto your Mac
Apple — Boot Camp — Public Beta
Woah :-o Didn't see that one coming.
You will need:
"A printer for the included instructions (You'll want to print them before installing Windows, really.)"
(Becky, you're the only one I know with an Intel Mac — wanna try it out for me?)
people on generic hardware might be interested in http://forum.osx86project.org/ and (ahem...cough) a search in alt.binaries.mac.osx.apps or alt.binaries.warez.ibm-pc.os for the phrase MACOSX86 — not that I am going to try any of that of course...
My PC mag was running a competition for the first person to get Windows running on a Mac.. guess that's ended that one then.
but this is the other way round — running OSX on generic intel hardware (and apparently runs better than genuine mac hardware if the noise on the forums is to be believed).
also try http://maxxuss.konglish.org/ but dont expect the URL to stay live for long.
or if you just want the "look" of OSX... http://osx.portraitofakite.com/
Heheh, I came to this page after I'd read the article (which inspired me to blog something else!).
I'm kinda tempted, but I'm not sure I need a PC laptop.
It's more tempting than it was before, because it looks like Apple have done all the hard work. They must have been quietly working on this for ages. Wouldn't it have been fun if Apple had annouced it a couple of weeks ago and won the competition?
Can you stick a "ti" in competion for me? ![]()
No probs — and can you just double-check that I spelt "applause" properly. The more I look at it, the less it looks write ![]()
Some Thoughts
As interesting an experience as this is, I can't wait until midnight so I can have my stylesheets back.
As the dual-boot functionality is only available to Intel Macs, is this the first signs of the deprecation of my G5, G4 and G3s?
Lamenting that I was using my last cotton bud to clear the last transvestiges of eyeliner from my eyes, before going out to the shops, it suddenly dawned on me that going to the shops meant I could buy new cotton buds.
I took hundreds of photographs this afternoon — all from different angles. But the only ones I felt happy with were all from the 'slightly to the left' angle that I always seem to come back to.
Vest-tops are great
Although I probably wouldn't need the heating on full blast if I didn't spend most of the day pottering around the house in just a vest-top and stockings.And panties. I had panties on as well. Just to clear that up.
web = compromise
Phew. Yes.
My god, you're a fountain of quotables.
Ooh, that Flyakite thing makes me happy!
And I wish I had a new camera so I could take pictures that were good. Ugh.
whoa... was I really just listening to Death Cab For Cutie, in iTunes, on OSX — but not really??
It's also showing that there is a huge role for CSS.
I honestly can't see the point of Windows for the Mac cos if you're gonna run windows on the thing might as well have bought a PC from Dell/Tiny/IBM. I thought one of the major complaints against MS Windows and all it's work was that from a structual point of view it was clumsy, sprawling and inefficient.
Yes, but (as die-hard non-switchers often point out) some things only run in Windows. There's lots of specialised software (and some non-specialised stuff) that'll only run on one platform. So being able to boot into both is a big plus.
Actually, just thinking about it, a Mac is now the first and only machine that can run MacOS, Linux and Windows natively. Or is that wrong?
Bootcamp on Macbook Pro — a photoset on Flickr
Just while we're all in a XP-on-Mac frenzy...
I've just realised we need to change our IT policy at work and stop buying those stupid ugly boxes that will only run Linux and Windows ![]()
JoH
Love the greyscale 'windows' logo
JoH
Actually, I'm really confused about the whole platform/hardware thing now (more than I'm confused with the whole gender thing too).
I wish for the good old days when Macs were Macs and PCs were PCs and there were no surprises under the bonnet when the lights went down.
sigh
no surprises under the bonnet when the lights went down
There's a tranny-based joke to be made there, I feel.
and whaddya know...I had absolutely no intention of setting that up when I made that comment...oh no sireee...none what-so-ever...nope...completely innocent me...
Fudge packer ![]()
Grrr...Kath's just reminded me that I can't go to the Death Cab concert I was supposed to go to tonight. ![]()
oi it's 12.03 where's the CSS?
JoH
Following the Boot Camp excitement I thought it could get better — but Doctor Who's back on April 15th at 7.15 — my life, insignificant as it is, is complete ![]()
JoH
Sorry — I was watching The Hunt For Red October ![]()
That's better
JoH
I think the way to tackle Boot camp would be to simply not allow Windows to access the Internet. Use it for specialist software (clicker, the grid, Board maker etc) and then use the Mac OS for all other apps.
Ahem, thanks again.
I was watching The Hunt For Red October
It's not really like that btw — well, sort of.
some things only run in Windows. There's lots of specialised software (and some non-specialised stuff) that'll only run on one platform. So being able to boot into both is a big plus.
The games! The games! Won't somebody think of the games!
I've finally made my mind up on the comments issue — It should be a 'div', and here's my reasoning:
What comprises a 'comment'? There's a 'citation' ('so and so' said), there's the comment itself and there's the 'icon' thingy. So, a 'comment' actually consists of several 'elements'. Therefore, in order to group the whole thing into a discrete 'unit', these elements need a 'container'. This restricts our choices to either 'div' or 'span'. However, 'span' is an 'inline' element which is not appropriate; a 'comment' should render as a 'block'. So now we only have one choice left: use a 'div'.
[bows gracefully, stands back and waits to be shot down in flames!]
Alli' Cat'
"Hugiest and fuckiest offiest". LOL! That's the best new phrase of 2006 so far ![]()






ffs indeed... i am fed up with north americans telling me for the past 3 or 4 days that at some point tomorrow it will be 01:02:03 04/05/06 WHEN THAT WILL BE NEXT MONTH!
OK, i'll calm down now...