technonaturalist

image link to hive image link to ko-fi

BlenderAdventures Pt 1

Sunday, 24 June 2012 @ 10:13pm

That would be Blender the open source 3d application not the kitchen appliance.

2012-06-22: I want to split out the Lightwave viewports and have one view on the big screen so I can see a big picture of what’s going on and work on smaller zoomed in sections on my Cintiq. Lightwave can’t do that. Wonder if Blender can because it’s all open sourcey and whatnot and it’s statistcally improbable that I’m the only person on the planet that would want to do such a ridiculous thing. Find out it can, download. Messed around a little with menus (most important thing was change the rotation thing from turntable to trackball so it would move in a way I was used to) and made a mutant cube.

Skate ramp

Friday, 22 June 2012 @ 2:16pm

Because my wonderful husband is an impatient git (whom I love very much by the way), the photos are unprocessed so may be a bit dark on some monitors. These are WiP shots of the skate ramp that’s being built in the front yard. Not so many photos as I was kind of keeping an eye on 5 kids at the time and also I need to get a photo of the state the thing is in right now as I don’t have one for some reason, thought I did.

Brain implosion imminent. Or what's been happening.

Thursday, 21 June 2012 @ 5:03pm

My head. It’s so full of stuff that I have a very mild persistant headache. The cold isn’t helping either, it makes my shoulder hurt. I’m glad I don’t live somewhere that’s actually cold.

Following is a thought dump so I can work out what I’m doing and so anyone that cares can now know why techno was gone for the last month and why I’ve been in such a ridiculous distracted foul mood.

Drupal 7 notes: html5 placeholder text

Friday, 25 May 2012 @ 2:03pm

Fairly straightforward. Mostly here as a reminder for how to do webforms; (example has a theoretical nid of 1 and a theoretical form field called “message” and the “submitted” part stymied me for a bit).

template.php

<?php 
function mytheme_form_webform_client_form_1_alter(&$form, &$form_state, $form_id) {
    $form['submitted']['message']['#attributes']['placeholder'] = t('Type your message here...');
} 
?>

Could also use a switch in hook_form_alter(). One of these days I’ll think about finding out if there’s any difference performance-wise in using a big switch with many form alterations or several smaller hook_form_form_id_alters.

Sunday lazy sunday

Sunday, 20 May 2012 @ 12:10pm

[minor pseudonymising edits during Drupal to hugo migration for all the good that will do now]

Last night, I was on a roll. I went to bed slightly later than intended.

This morning, 3yo woke me up repeatedly. First, sometime before the sun came up. Then shortly after the sun came up and the blue light was caning my eyes. Then after the sun came up. And shortly after JJ staggered out of bed I did the same seeing as I couldn’t sleep anyway.

You will be assimilated...

Sunday, 13 May 2012 @ 11:51am

Or not. Short version, according to last night’s bizarro dream, there’s going to be a merger between “this” world and “some other dimension/universe” soon if it’s not happening already.

Now that I’m awake I’m wondering if it was Yet Another Incarnation of the Crazy Dog House, though I don’t recall seeing a cliff this time. One day I should probably try to explain The Crazy Dog House, which appears to be a stupidly large mansion not a doghouse.

Camel barge

Monday, 7 May 2012 @ 5:54pm

[minor pseudonymising edits during Drupal to hugo migration for all the good that will do now]

Me: Here [3yo], a green nappy to go with your camo.
3yo: Camo! What’s camo?
JJ: Camoflage.
2yo: Camel barge? What the?!

Funding, distribution and musings on my sanity (or lack thereof)

Wednesday, 2 May 2012 @ 2:07pm

Business has been going pretty well. This is great, and it also means I haven’t had a chance to work much on AR. I’ve been proofing and editing the scripts in between banging my head against code and deciphering client requests, and spent a whack of Sunday working on Red, but I’m pretty sure at this stage that I won’t be ready to animate the first ep by the end of the year. I am refusing to have panic attacks about it.

New camera, more aquaponics photos

Friday, 20 April 2012 @ 10:11pm

We finally bought a NAS, it’s living next to the router (which makes logical sense as it has to plug into the router). I’m currently copying all the music and photos onto it and will probably delete them off my computer as part of my cleanup process (moving a bunch of Stuff off the 250Gb ssd to the 2Tb sata).

Moving the iPhoto database was nice and easy (drag, hold down alt when opening iPhoto, selecting where the library had been moved to, delete the original file), and it kind of needed to go elsewhere as it’s 53Gb and going to blow out as I’m shooting RAW.

Sprat does not share my scss enthusiasm

Saturday, 7 April 2012 @ 8:22am

[reformatted the code during migration to make it slightly easier to read, this was a copy/paste from some text conversation and all formatting was lost]

ryivhnn 6/04/12 10:23 PM hee hee other cool thing with sass, i do this:

@mixin inline-block {
 display: inline-block;
 margin: 0 -2px;
 vertical-align: top;
}

and then when i need things inline-blocked etc (in a few places) i do:

#container {
    .stuff-what-needs-inlining {
        @include inline-block;
    }
}

Darqx 6/04/12 10:24 PM i look at that and see what looks to be php mixed with css and want to run away screaming