Exploring multisensory descriptions in Inform7

Over the past week I’ve been experimenting with different ways to make an interestingly playable game where the player’s point of view can be multisensory in various ways. So, for example, a character who is hearing and sighted would experience visual, sound, touch, and scent based room descriptions, while a Deaf character would not get the sound descriptions.

One way is to use Touchy Feely extension by Quantum Games. I ended up forking this and adding a few things to fix a couple of errors in the extension, and then adding more options as default descriptions for items. This extension builds in some commands like smell, touch/feel, listen, and taste. You can set the sound of a room, a person, or an object very easily just like you set the (visual) description.

With those rules, and a few others, I started writing rooms like this:

The Bedroom is a room.
The description of the bedroom is
"[if the player is sighted]A small room with white walls and some posters hanging up. The bed has a colorful striped bedspread and paisley sheets. The doorway is in the west wall.[end if]
[if the player is hearing] There is an air filter humming loudly in the corner.[end if]
[if the player is not sighted and the player is not hearing] A small room with a bed in it. The west wall has a wide doorway.[end if]"

The sound of the bedroom is "A loud air filter in the corner fills the room with white noise."
The scent of the bedroom is "The air in here seems very clean and fresh."
The bed is scenery in the bedroom. The description is "A soft, comfy bed. You give it an experimental bounce."
The pillow is scenery in the bedroom. The description is "A nice, soft, squishy pillow."
The bedspread is scenery in the bedroom.
The bedsheet is scenery in the bedroom.
The air filter is scenery in the bedroom.
The doorway is scenery in the bedroom.
The walls are scenery in the bedroom.

Things that are scenery aren’t described until you examine them. I wrote a general search command called (explore, or tap ) which conveniently lists all these “scenery” aspects of a room for non-sighted characters. Sighted characters have to examine them one at a time.

The problem with this method is that it is clunky and I’m repeating various elements of the room description. Ideally, I’d be able to replace a bunch of Inform7 behavior so that:
– Each room (and thing) can have a visual, sound, etc description.
– The game checks if the player has those senses
– The game concatenates the various sensory descriptions appropriately

This turns out to be difficult. I got into reading the Standard Rules (which, from the Inform7 IDE, you can see as an extension) and then realized what I wanted to do was basically happening in the Carry out looking (this is the room description body text rule): section of code. I thought maybe I could hack in a check on the sound of the room and print that.

But! This code refers to the Inform6 core of the game, with

To print the location's description:
(- PrintOrRun(location, description); -).

I tried copying THAT and doing something like PrintOrRun(location, sound), which didn’t work because location and description here are constants from Inform6, I think.
Not sure how to pursue this further. Maybe in future as I get more familiar with the guts of Inform.

So, I tried another way. I suppressed the room description body text rule like so:
The room description body text rule is not listed in any rulebook.
And copied it and pasted it into my example game with a slightly different name.

Carry out looking (this is the room descriptions body text rule):
if the player is sighted:
if the visibility level count is 0:
if set to abbreviated room descriptions, continue the action;
if set to sometimes abbreviated room descriptions and
abbreviated form allowed is true and
darkness witnessed is true,
continue the action;
begin the printing the description of a dark room activity;
if handling the printing the description of a dark room activity:
now the prior named object is nothing;
say "[It] [are] pitch dark, and [we] [can't see] a thing." (A);
end the printing the description of a dark room activity;
otherwise if the visibility ceiling is the location:
if set to abbreviated room descriptions, continue the action;
if set to sometimes abbreviated room descriptions and abbreviated form
allowed is true and the location is visited, continue the action;
print the location's description;
if the player is hearing:
say "[sound of the location][paragraph break]";
otherwise:
say "[feel of the location] [scent of the location] [taste of the location] [paragraph break]";

Because I’m not using the “print” function the sound and other sensory qualities of the room are described under the actual room description. That might be OK but now I need to learn how to elegantly write a room description that is broken out into visual, sound, and other qualities. I also need some kind of bare bones description that doesn’t show to the player unless the player character is deaf-blind. This will take some practice to learn to write well, and some more refining of how I show which bits of the descriptions.

Note that I will probably be adding in low vision and hard of hearing (by taking the visual and sound descriptions and munging them a bit.)

Happy Discardia!

I did some decluttering today, setting out some clothes and books on the free shelf outside and throwing a bunch of things away. There are also several bags of things to go elsewhere (to friends, to my sister, birthday presents for birthdays coming up, stuff that needs some sort of errand to deal with it) so that those things aren’t on the living room floor.

From underneath the bed I hauled out a box the size of a couple of shoeboxes full of junk that had been cleaned out of drawers probably years ago. More than half of it was trash and the rest is now put away.

Cleaned out under the kitchen sink where it smelled funny and was full of junk. Cleaning supplies are more organized now. Half the paper bags stashed down there are now recycled.

I also ironed my handkerchiefs, which I find oddly satisfying, and laid them neatly into a tiny cherrywood drawer.

Huzzah!

Danny just came in, looked around, and went, “Holy shit! Low level defragmenting, reformatting!” (Very true. That’s exactly what it’s like.)

In game progress, I added a ticket reader and BART ticket. The ticket is a device, which may seem odd, but swiping it turns it on and off to signify if you’ve paid or not. There are “switching on” and “switching off” actions in Inform7, and they’re separate, so they needed some extra logic to handle a new more generic verb (swipe) that flips the state from one to the other, depending, while not giving any weird extra messages about it.

So many good ideas in the last few days – I have a big file of ideas to stuff into the story and its infrastructure.

It’s helping to scope out issues to work on in github, with milestones, so that I can bite off small things to work on when I’m tired or only have half an hour. The complicated stuff has to wait for the weekend.

While reading the Standard Rules defined in Inform7 I came across this amazing line of code:

The darkness witnessed is a truth state that varies.

Kind of spooky, isn’t it?!

Rewiring brain for new code

What can I say – I worked on my game all day again today. It was great. The feeling of seeing the entire huge structure holographically and knowing (more or less) what to do and how to break it down into pieces is just glorious. I’m all fizzy with ideas at really random times.

I spent some time trying to understand some excellent advice on the interactive fiction forum and halfway got there. Then needed to chill out a bit and let it percolate, so I worked through some of the examples in the inform7 manual and played around. At some point I realized a different way to approach the problem and plunged back in, making my magic elevator a room again instead of a vehicle.

Finally got that working around 6pm. But only imperfectly. Then had another epiphany, threw it out and refactored it again and now it is seamless! I thought of some good improvements and noted them as issues for later.

However, I still have to solve the original hard problem because my rideable vehicle (ie a wheelchair) has to be able to enter and exit another vehicle (the train.) It’s still satisfying to have the elevators work so neatly, in the meantime.

Danny and I went grocery shopping, he cooked (lamb with mint sauce and roast potatoes) and I cleaned up. He is still muttering into his beard about Lisp and stuff but I was too sunk into my own thing to know what about. A cosy and fabulous weekend.

Coding, swimming, biergarten, chocolate

A really nice day. I worked on my game nearly all day and the time just flew. I’m feeling deeply obsessed! Danny is obsessed with Lisp and Scheme so we are just quietly muttering to ourselves like toddlers doing parallel play.

Yatima took me swimming at the JCC and I did some real laps. First time in a long time too. It’s good going with someone else, it’s just more motivating and feels like nice social time rather than a boring lonely chore. The JCC is pretty nice, especially the locker room which has a sauna and steam room. I steamed, then saunaed. Sauna is my favorite, getting into a sort of dead horse pose with my legs going up the wall, feels great on my ankles.

Then Danny and I went off to Biergarten to hang out with friends and I let all the kids (maybe 8-11 year olds? ) try my powerchair and they were all taking turns zooming around (the bold ones) or cautiously spinning on speed 1 (the shyer ones) It’s fun to see how their faces light up and they are like OMG I’M DRIVING! I’M A ROBOT! WHEEEEE! at 4 miles an hour, which is pretty much how I feel in the chair as well. They were going around the little park there on Octavia and even took it over to get ice cream. Anyway, I thought it was super fun (always have) and it is sort of normalizing disability & mobility stuff and they’re not going to harm anything… they were reasonably cautious and didn’t run anyone over. Really… is there anything nicer than the feeling of indulging children, especially when it is a crowd of benevolent adults looking on all sharing that feeling.

Then Cory taught me a 1 minute physical therapy exercise to detach your nerve fibers from the fascia or something like that, sounds great, fucking bring it because my leg nerve is horrible. Fuck a fascia, fuck a leg nerve, fuck a sciatica, etc. Also every tendon. So we did a weird little leg kicking ankle flexing dance sitting on the picnic table with me going Ow! fuck! ow!!!!! and then notching down my flexing ambitions even for the 1 minute thing. I will be giving it a try (adding it to my pantheon of other one minute exercises which I can invoke while feeling restless or painful). Cannot tell if it just helped or if the buzzing feeling now is OMINOUS and means doom. Always hard to correlate but time will tell.

Home again to deeply contemplate how I can modify the “implicitly pass through other barriers rule” so that my wheelchairs and elevators in the game work together correctly. Danny is in the process of maybe realizing that using gnu stow may do what he was about to write in Lisp. He sounds a little sad about this.

On the bus on the way home I was chatting with a guy in the front of the bus with me (also in a powerchair) and we were like both eyeing each others gear. He and his friend were from Ireland. Then he was like do you like chocolate? Being kind of high (I wasn’t while I was at the bar, but then, figured why not make the bus ride more tolerable…Vape in my pocket…. what the heck) I was like “Oh ummm well yeah, why, is my face covered in ice cream because I was actually just eating chocolate ice cream”. No it was not but he gave me a fancy chocolate bar from Dandelion. As pickup lines go this is a pretty good one and I did not know how to refuse the badass chocolate bar. I mean. Also, he complimented my sexy wheels and told me to share the chocolate with someone I love and I was like Um like maybe my husband who is sitting right there LOL. Now I have this awesome chocolate and we need to be friends but I was too stoned to do anything clever like exchange social media names or whatever, instead, staring at the chocolate bar like a doofus and mumbling. The end!

Oh but one more thing. This flyer from yesterday’ event for Public Domain Day at the Internet Archive, of things created in 1923 newly (re)entering the public domain. It’s a nicely printed large yellow poster or broadsheet by queer.archive.work, with a photo of a sculpture by Nancy Elizabeth Prophet, with a poem by Jean Toomer handwritten over it:

Within this black hive to-night
There swarm a million bees;
Bees passing in and out the moon,
Bees escaping out the moon,
Bees returning through the moon,
Silver bees intently buzzing,
Silver honey dripping from the swarm of bees
Earth is a waxen cell of the world comb,
And I, a drone,
Lying on my back,
Lipping honey,
Getting drunk with that silver honey,
Wish that I might fly out past the moon
And curl forever in some far-off farmyard flower.

I have that book somewhere. It’s a good one!

The magic spells of engineering

Last night we watched the first two classes of Hal Abelson teaching Structure and Interpretation of Computer Programs in 1986 and they were sooooo amazing.

Danny remarked that this is a great example of teaching a beginning lesson in a language with math while most other intro-to-a-language-via-maths fall flat.

All the stuff about magic is just beautiful (and true).

So as opposed to other kinds of engineering, where the constraints on what you can build are the constraints of physical systems, the constraints of physics and noise and approximation, the constraints imposed in building large software systems are the limitations of our own minds.

So in that sense, computer science is like an abstract form of engineering. It’s the kind of engineering where you ignore the constraints that are imposed by reality.

Sweet that you can download text or PDF of the transcript of the lecture.

Meanwhile, in the night during some dark hour when my knees hurt and I couldn’t sleep I decided to change the scope of my mapping in this transit game, at least at first, and rather than make a perfect walkable (rollable) simulation of the geography of each station (or even this first one) I will abstract it a lot more. It could still be expanded later, but the hugeness of the map started to drag me down and I’d like to get the mechanisms working before that kind of precision. I have often felt that I have to throw out all the code at least 3 times before I know how I want to approach a project and I believe this makes 3. But, that means I’m not sticking it up on github yet until I have a clearer vision and a better prototype.

Progress on BART interactive fiction

I threw out the first prototype trying to write a train simulation from scratch and started over using Emily Short’s Inform7 extension Transit System. Now, I have two working train lines, the Red Line going from Daly City to Richmond, and the Yellow Line going from Daly City to Antioch. I could not quite figure out how to make the trains go north and then turn around and come south again and still be able to tell the direction of the travel from the platform. I’m leaning towards having separate north and south lines for each train, arriving at their correct platforms within the station.

Then, because I went all through the 24th St Mission station (the agent kindly let me in free to take notes!) I thought more about the level of detail for the game. I could stick with a very simple model or could make it very walkable in a way that means by playing the game you’d learn the geography. Leaning towards starting simple but having a placeholder for each station, then expanding the station descriptions and maps gradually as I go.

I also implemented (early this morning!) player choice for mobility and sightedness. I may write something for cane use but I sort of don’t want to write service dog, maybe because I know almost nothing about them but also because I am not super fond of dogs. It could be an expansion later. But, I’m figuring out how to make the choices impact each room, thing, and the player experience. I may write a “tap” command that would work like an extra sense in the Touchy Feely sensory extension. I could replace “look” with “tap” for example but I’m leaning towards, “look” will say something either practical or snarky (randomly). The practical would encourage the blind or low vision character to listen, tap (with cane), feel, smell. I have to figure out what “examine” would be understood as (feel for objects, tap for a room, maybe, and “listen attentively” if it’s an NPC). I ended up last night late reading blind wheelchair user forums for thoughts on handling blind/low vision plus manual or powerchair use together in descriptions of rooms or actions.

Coming this weekend an initial github repo with (playable) early versions of the game for testing. There will not be much game there yet but the mechanisms will work and you can board trains and walk (or roll) around.

Notes on 24th street station, I spent my lunch hour there yesterday taking notes and drawing maps. I sat one bench over from the Raccoon McDonalds guy while I ate my burrito and scribbled in my notebook in the Northeast plaza. A lady was selling tamales there – we smiled at each other a lot as i ate my delicious burrito – I saw someone with a chihuahua in a sweater, Lots of music in the background including, in El Farolito, some mariachi guys who wandered in with guitars, accordion, and a big speaker on a hand truck, the murals, rather a lot of pigeons, the tall washingtonia palms, the chinese donut place, silver stone coffee tea cafe, the Southwest corner plaza and its lively market scene, construction going on in the concourse level, saxophone player in the stairwell, the lovely arched ceilings that make me think of how some airport architecture is, like a hangar or wings, the abstract concrete bas reliefs in both majestic stairwells and the strange ridging of the walls (for decoration? for acoustics?) Anti pigeon nails everywhere in high up places. Of course the elevators…. And the platform with its brown and orange tile, its mysterious locked rooms, its beige “contact agent” phones which I longed to pick up but did not quite dare.

The game will have magic, and time travel, by the way! Working title, “Transitory”.

Messing with Inform7 today

Thinking about this because I started showing Inform7 to my son. Inform7 is very elegant game programming language and interactive development environment. I recommend it! I think he will be teaching me some Unity in return…

Years ago I did a lot of coding for a MUD, a text based multiplayer interactive fiction game. After playing lots of MUDs, MUSHes and MOOs through the 90s I am not quite sure when I started coding but seems like late 90s, mostly for a MUD called Arcane Nites. It was fun being an “immortal”, helping new players and acting as a game moderator to resolve disputes and stop abusive or spammy behavior, often along with another immortal, an enormous macho giant named Stomp, who I only later realized was a woman older than me, old enough to be a grandma. Also later I heard from players who were like, 12 year olds at the time (which explains the frequent need for moderation). (Hi, y’all!)
In fact, I wrote a lot of code while pregnant or while actually wearing my son in a front carrier. Gaming is truly in his blood!
I remember working on some kind of in-game messaging or bulletin board system; little projects like expanding the “socials”, actions you could take in game, and having great time writing them to look properly grammatical depending on whether you were doing the action, seeing the action, or experiencing the action on yourself. I wrote code to made liquid containers behave properly with different liquids, and I think I got obsessed for a while with adding other physical properties to objects but don’t remember much of that.
But, the main fun of MUDs for me was writing new areas of the game. I’ve talked about this before but I wrote one based on the Chinese classic, Hong Lou Meng, translated a few different ways, “Story of the Stone” or “Dream of the Red Chamber” or “Dream of Red Mansions”. I had three different translations of it, drawing up elaborate character lists, geneologies, and so on to keep track of the different names of characters across the translations. In my version, you could walk around a small part of the town and the two houses of the Jia (or Chia) clan and the extensive gardens behind the houses. There were supernatural elements – you could end up in realm of the Stone itself, and there was also a dreamlike, kind of racy cave sequence where you traveled in time, or something, and ended up finding Hsi-men Ching and Golden Lotus from Jin Ping Mei.

Anyway, today I went looking for these files and started converting my version of the Battle of Kurukshetra from the Mahabharata into Inform7. I don’t have a good key to the old game data files so I am having to figure out a lot of weird data! It’s fun. If I can do this successfully then I’ll put the areas up as standalone playable interactive fiction. Since in the MUDs they were written for, the “point” was not just to explore, but to kill everything and loot its corpse, taking equipment and wearing it, and so on, I will have to either figure out some different experience (perhaps a more wholesome one of puzzle or mystery solving) or write a battle system for Inform7. Or, I may just release them as areas to wander and explore. Most of the point was absorbing the atmosphere, really.

Noisebridge! Best thing ever!

On April 2nd and 3rd I am going to spend several hours teaching at least 70 high school physics students how to solder and some alluring information about contributing to open source software!

They are doing a project to design and build a solar home. If you know anything about electronics or solar energy cells please join us a do some teaching!

rowan learning to solder

I spent $250 of my own money to buy a crapload of little LED kits so they can have a conveniently teachable soldering project – that is how much I love Noisebridge, and geeky things, and teaching, and non hierarchical anarchist/mutualist community spaces!

I am thinking of the Hackability group that meets at Noisebridge to fix and mod their wheelchairs and mobility scooters! We take over a classroom, gank all the workshop tools, and get on the floor where none of us think it is weird that we scoot and crawl and roll across the floor to pick up a screwdriver just out of reach, laughing at all this solidarity! We bravely dismantle our cyborg leg-wheels and bolt them on again covered with LED lights, jazzed up with arduinos to measure battery voltage, then roll on out into the town!

potentiometer and its lever

And the fierce, fun feminist hacker hive that is a chaotic unstructured network of strength and curiosity and information sharing, that stretches from Noisebridge to sudo room and LOLSpace, and beyond!

Claudia

We need more paying affiliate members — we need you! We need your cold, hard bitcoins or your cash!

I am thinking of all the people I’ve given tours to who come in from out of town and are all starry-eyed and inspired, who meet people and go to Python and Ruby and web dev and Linux classes and eat the strange productions from the Vegan Hackers, the laptops that people at Noisebridge fix and give away, the cameraderie I always find there and the fabulous energy of young people just moving to San Francisco to do a startup or find some kind of freedom or empowerment and hope to find at least part of it at this weird ever changing junkyard coffeehouse-feeling co-op workshop. We made this place that isn’t anything like any other place and it can also be YOURS. Meddle in it!f

surface mount soldering

SUBSCRIBE to support Noisebridge’s rent, its freely provided wifi, its bins of electronics parts that anyone can rummage through and pillage, its beautiful giant robot, its classrooms and electricity, its ADA-compliant bathroom custom built specially by Noisebridge folk, its elevator, its devotion to support accessibility for all, all its copies of keys that I and others have distributed as Keys to the City, the library of excellent technical books, well used and loved and read!

Hacker moms visiting Noisebridge

Our rent went up this year, and our people’s job security and income went down. It’s exactly at that point, when the economy is hard on us all, that we need collectives and co-ops and hackerspaces. We have to band together in the best ways we can come up with.

me and maria zaghi at noisebridge

People visit Noisebridge and like it so much that they move to the Bay Area. They come to Noisebridge for education, to find peers and mentors, to teach, and sometimes to find as close as they can get to home and family when they are hackers down on their luck.

Noisebridge - looking west

They come to speak in public for the first time at 5 minutes of fame. They sound a little odd and then they turn out to be geniuses. They drudge to clean the floors and toilets and scrub the kitchen and buy toilet paper, doing the unglamorous physical domestic labor of maintaining this place that’s used heavily 24 hours a day 7 days a week.

noisebridge

We do good work together as best we can. We give a lot to our community! We give access, tools, skills, time, belief, trust, fantastic spectacles, beauty and humor and art. With a sense of wonder and playfulness people walk in and look around – I see it on their faces – like they have just had a million new ideas churn around in their heads – So many possibilities and they know they can be part of it.

Noisebridge table

circuit hacking monday

And we need widespread, ongoing support.

Donate, sign up for a monthly subscription, be a fabulous affiliate of Noisebridge!

If you can spare any, we need your exclamation points as I have used most of them in this post!!

Noisebridge tea cart

Asking for access

This week I noticed a great post by lightgetsin on asking for accessibiilty improvements in which she records the results of asking a couple of dozen sites to fix inaccessible content.

It was a familiar story to me, very similar to what happens when I ask for accessibility accommodations off the web. Sometimes no response at all; sometimes a few reasons why the person or company can’t be bothered; very often, outright hostility, fear, and defensiveness.

Lightgetsin’s post became very popular over the past few days and the responses were quite interesting.

The reactions on Hacker News, Asking for accessibility gets you nothing but grief, were often faily but in complicated ways, worth reading and sometimes worth arguing with. You can see from many of the responses that it is the norm for developers to think that it’s not worth it to make software or sites accessible. Their reasons vary. There are also excellent and positive comments in the Hacker News thread.

Bryant Park accessibility sign

Naomi Black from Google responded to the post in a more helpful way, pointing to Google’s accessibility page.

I’m glad that lightgetsin’s post has sparked such widely ranging discussion.

It’s always hilarious to me when people ask me for help or advice with web accessibility or want me to be on web accessibility panels at conferences. I’m a wheelchair + crutches user; I don’t surf the web with my legs! And while I want to be a good ally, frankly, I am not always, and don’t have particularly special knowledge about web accessibility. You could boil down what I know into “use alt tags on images”, “don’t autoplay stuff”, “transcribe videos”, “make the text in hyperlinks meaningful”. So I try to refer people to actual experts in the field, when I get asked.

I’m spending the morning today checking my blogs with WAVE, a tool to show errors that would break a web site reading experience for users of screen readers. I’m also going to install the WAVE Firefox toolbar, to help remind me to check my blog posts for obvious accessibility errors. I’m looking at this huge list of resources, hoping to learn a bit more: Web Design References: Accessibility.

What guides or tools would you recommend for web developers, bloggers, or software developers, to educate themselves about accessibility?

Women Who Code hack night

The Women Who Code meetup and hack night yesterday was very lively! I look forward to going again and also going to CodeChix events if I can manage it. I think there were about 50 people there, of fairly diverse backgrounds and coding in many languages. I saw several people I knew like Hilz and Adina and Amy, but most were people I’ve never met, not people who show up at conferences or usual techie events, lots of recent comp sci grads with jobs at startups. There were a few people who are company founders and just interested in meeting programmers and hanging out with us, a few people just beginning to learn to code, and several people who told their way-back-when COBOL and BASIC stories. I gave away a huge stack of geekfeminism.org stickers.

photo from the 50s or 60s of woman at computer

The meetup was at the Blazing Cloud office in the Native Sons building which is an amazingly cool building, but not accessible, so I’m glad I managed it on crutches instead of bringing my wheelchair, which even if I’d been able to get it into the building, would not have worked in the tiny crowded office with people sitting all over the floor. Blazing Cloud looked like a company focused on giving programming classes mostly Ruby and other web dev stuff. I talked with a few people at the event who complained about their CS departments only teaching Java and C and being super … well… computer-sciencey, without teaching anything they wanted to know for building web or phone apps. So it was a good match between the host for the event and the people who showed up!

I had some pizza, beer, and cupcakes as I fiddled around with vim, vundle, Supertab, and Gundo (which Oblomovka had been showing me earlier) and setting up things with ExpandDrive so I can work on my VM dev environment *from my Mac* instead of ssh-ing into the VM. I think I’m getting to like folding in vim. Hilz explained her whole emacs setup to me which is similar and I think was called tramp; basically a thing so she can edit her remote files from her normal setup. While I don’t *much* mind hauling my .vimrc after me onto every server, vim bundles look extremely cool and I like the idea that I could keep it all in just one or two places (ie my laptop and maybe my main server in case I don’t have my laptop and want to work from somewhere else.)

Then I got totally distracted talking with Jesse and Judy who were starting to make a fun app with Ruby (which I’ve only tried once at a She’s Geeky workshop). Judy is making something to tag and search Starcraft VODs. Then we got gossiping about Noisebridge which she had just been to for a Ruby class and ended up staying all night learning how to use the Cupcake makerbots.

It was a lot of fun and even if it stays such a short event I recommend it. I think it will inevitably spawn some all day hackmeets though since no one wanted to leave or stop working on their projects 1 hour into it!! Actually, I would like to invite all the Women Who Code and CodeChix people to Noisebridge, which is a fantastic hackerspace open 24/7 (with an accessible bathroom and an elevator) and to the upcoming Hackmeet unconference.