Stir-Fried Stochasticity Ep 04 (“TuberculosisBurgers”) is up…

Oh, I forgot to mention here that Episode 4 is up at http://www.dogphilosophy.net, where I’m trying out the “Powerpress” plugin for WordPress to see how it works out. Please give it a listen and let me know how it is.

I’m still plotting to expand out to three different podcasts/oggcasts or so, including of course the current Stir-Fried Stochasticity podcast (Science news direct from primary sources: scientific publications), an intermittent “Perceptive Peripatetic” series literally based on random things that I happen to run into as I wander around which happen to amuse, interest, or inspire me, and a “The Computer Is My Friend” free-fun-with-computer-nerd-stuff podcast. Upcoming episodes being considered for each include:

    Stir-Fried Stochasticity

  • Episode 5: This Episode Is Garbage (concerning Landfills)
  • Episode something-higher-than-5: “Two Mass Spectrometers, High Performance Liquid Chromatography, and a Female Donkey” (concerning exactly what it says…)
  • Episode also-something-higher-than-5: “Is there anything Beer cannot do?” (concerning some interesting beer-related publications I’ve collected)
  • Various other papers from various fields have also been collected for consideration. Suggestions are welcome.

    Perceptive Peripatetic

  • “The Firebreathing All-Devouring Skybeast of the Gulf” (inspired by a photo I took recently, if I can get it to turn out the way I want it.)

    “The Computer Is My Friend”

  • Episode 01: “Freetarded” podcasting (concerning practical, ethical, legal, and technical stuff I’ve run into and considered while trying to support this new podcasting hobby of mine – hopefully useful for anyone else interested in producing their own audio and/or video for the web and for public participation.)
  • Episode sometime-after-01: “Enterprise Linux Must Die” (Tentative plot: it’s actually “pro-Linux” but is a rant against “Enterprise” distributions, or at least one in particular, and some praise for “rolling releases”).
  • Episode also-sometime-after-01: “Freetarded” mobility (concerning Android, Meego/Maemo, and my quest to get as much functionality on my cellphone while remaining as “Legally Free” as possible. Might possibly include instructions for making an external microphone adapter for various cellphone models, and might also include some (optional) video content.
  • Episode yet-another-sometime-after-01: Where? (Concerning geolocation, geolocated digital photos, other geolocated media, “geotagging” in general, and some verbal chastisement for people who say they are “geotagging” but [in my opinion] are not.)

The schedule for all this is still unspecified (but far quicker than “another year” until the next episode, at least), and as usual is heavily influenced on what anybody who is willing to listen might be interested in. I may be doing this for fun rather than profit, but the fun will be greatly enhanced if I’m not just sitting here talking to myself. Feel free to post in the comments (anonymously if you prefer – just put a fake email address in the field that asks for it.)

What I did on my summerMemorial Day Vacation

Disgusted with my out-of-shape state, lately I’ve been trying to spend time in the Big Room more often. I hate exercise-for-the-sake-of-exercise, but I do enjoy getting out and exploring, so muscle-powered travel around the Big Room is a convenient fitness-improving activity. As we have a spiffy wooden kayak I’ve named “The Ascospore“, and live near a decent-sized body of water that I’ve not sufficiently explored, getting out and doing some lake-spanking was a Moral Imperative.

(If you’re reading this entry via RSS, you probably don’t see the map and the associated photographs below, so please follow the link to view this post directly…)

Also, here’s a direct link to the KML file if you want to pull it into a full Google Earth session for browsing…

Only 9¼ miles, but that’s not too bad. The Memorial-Day motorboaters were making a lot of waves, which were kind of fun but made the paddling somewhat slower and more strenuous than it would otherwise have been.

Oh, yeah, and I discovered that digiKam not only has a set of geolocation functions, but even has a plugin that will generate a KML file out of the track and photos, which I used for this map – I just had to edit the descriptions and picture titles and such to add whatever else I wanted. Very nice. On the other hand now I’m reminded that I need a better digital camera…

Of course, nerd that I am, I spent a good portion of the trip looking at the greenish water and cursing once again my lack of a decent microscope. There must be a huge variety of tiny little things in there. It also occurs to me that I know very little about diatoms, for example. But now my mind is obviously wandering due to sleep deprivation and it’s time for bed. Hopefully the embedded map works right. Let me know if not.

Linux on the EeePC 901 a fortnight later…

'Penguin Powered!' stickersLife’s been a couple of weeks of hectic mess, but we’re still here. I’ve also now had “Bit” for about a fortnight. I still love it.

I did run into an odd problem, though. People occasionally report that they have trouble getting their Linux boxen to connect to encrypted networks. Even when “regular” encrypted networks work, sometimes people say they have trouble connecting to the hardcore “Enterprise”-grade networks running certain varieties of the WPA2 encyrption, as is in use for example on campus where I work.

I, however, had no trouble with these. I’ve got WICD installed, and I can just pick the network I want out of the list that pops up, enter the relevant password/”key” information for whatever encrypted network I want, and hit “connect”. No problems at all. It’s the plain, unencrypted “public” networks I had trouble with.

Apparently, the wireless network card in the EeePC 901 is based on the relatively new Ralink RT2860 chipset. Ralink provides native Linux drivers, which so far work impressively well. The one problem they have turns out to be that the drivers don’t respond to the old-school “iwconfig” program that everything expects to use to tell a wireless card to connect to a public wireless network. Since WICD expects to be able to do this, connections to unencrypted networks were failing silently. Hopefully this single irritating quirk in the drivers will be corrected – or perhaps a workaround implemented in WICD.

Meanwhile, there’s a workaround – you can use another tool that comes in the same package as iwconfig called “iwpriv” to set the network information. I whipped up a quick script that I can feed the name of the network and channel I want to connect to and it sets the card appropriately. THEN when I push the “connect” button in WICD, it works.

I was glad for the wireless networking performance today when some jerk set off the fire alarm in the building where I work (for about the 4th or 5th time in the last 6 months or so) and we all had to shuffle outside and sit around at a “safe” distance from the building while we waited for someone to decide there wasn’t really a fire and let us back in. I was able to stay on the wireless network from a fair distance outside the walls, and was thus spared the tragic fate of losing my connection to the InterTubes and having to interact with the real world…

If you have a use for it, the pathetically simple little script I use is:
#!/bin/sh
#call with: raconnect.sh (ssid) (channel)
iwpriv ra0 set EncrypType=NONE
iwpriv ra0 set AuthType=WEPAUTO
iwpriv ra0 set SSID=$1
iwpriv ra0 set Channel=$2

The way I use it is I pop up WICD and find the network I want to connect to. Let’s say it’s called “PublicNet” on channel 1. I tell the computer to run “raconnect.sh PublicNet 1”. Then I can push the connect button in WICD and it seems to work fine. (It may be that you can leave out the Channel line, I haven’t tried that yet.)

That’s really the only problem I’ve run into so far. Otherwise, everything just plain works that I’ve tested at this point. I even loaded, geotagged, cleaned up, and posted the most recent few photos I put on Panoramio entirely on this little machine. I was right, incidentally – fixing the “GigantoFonts” problem solved the problem of Google Earth popping up too big. The Linux version runs just fine now on my EeePC 901.

I should probably post something that isn’t me blathering about my cool new toytool, though. Anybody want to know anything?

Im Name des Nudelmonster – this thing is TINY!

TINY, I say! I mean, I knew it would be small, but, wow, talk about “ultraportable”.

The as-yet-unnamed EeePC 901 arrived today, and I’m going through some testing and updating before I try out Arch Linux on it. Checked the factory RAM, upgraded it to the current BIOS, now testing the upgraded 2GB RAM. Once done, the install begins…

This keyboard is even tinier than I expected, but I think I’ll be able to get used to it. It looks like replacing the factory 16GB SSD with a 32GB SSD currently costs about $100. If estimates on the longevity of modern SSD’s is correct, it looks like the factory drive should survive at least a year or three of serious use before starting to have trouble (some estimates go up to well over a decade – not sure I would trust that much optimism, though). Hypothetically, I ought to be able to pick up a larger replacement drive for $50 or less by the time I start having trouble with the old one. Hopefully. Though in the worst case, in a year or two a nice ARM-based replacement for about the same price…

Hooray! Memtest+ test passed! Time to install…

Happy “Cheap Peeps Day”, Everyone!

No, no, don’t panic, this isn’t another “all manner of strange things involving Marshmallow Peeps®” post, even though I can’t help thinking of the day after Easter as “Cheap Peeps Day”.

Today’s not a bad day. I got new glasses again – the replacements for the defective lenses finally showed up today. Sadly, the new right-side lens has the same kind of “fine stress-cracks” defect as the previous lenses, but at least it’s only one lens, and this time is much less severe. They’re still a big improvement on my old glasses, and I can wear them while they order a replacement lens again.

picture of an Asus EEE PC 901 Linux netbookPlus, I may have located my new netbook. Commenters here (thanks defcronyke and TomJoe!) had praise for the original Linux Netbook manufacturer, Asus. I’m currently drooling at the EEE PC 901. It’s $10 more than the Sylania G Meso that I wanted but couldn’t find actually in stock anywhere (they were supposedly available a few days ago, so I’m guessing they’re just very popular, and sold out very quickly. [YOU HEAR THAT, RETAILERS?!?!?]). However, along with that extra $10 it comes with built-in bluetooth (Hooray – bluetooth tethering, chan_mobile, and the Bluetooth GPS units I have will be useful!), RAM that can be upgraded without the warranty-voiding case-cracking required to upgrade the Sylvania G Meso, and a bigger, longer-lasting battery pack. Plus, it’s actually in stock at least at Amazon.com. They even have it in the less-likely-to-warp-if-I-accidentally-leave-it-in-front-of-a-sunny-window plain white color I wanted.

I’ve still got a little bit of reluctance to switch to a “solid-state” flash-memory drive rather than an old-school mechanical one – they have less capacity, and more importantly each individual sector on a Solid-State Drive wears out and stops working after it’s written to for a certain number of times. Internally, the solid-state drives are supposed to do some behind-the-scenes tricks to spread disk writes around so that the same sectors aren’t constantly being re-written (“wear leveling”), so supposedly the modern drives should last at least around 5 years of “typical use”. Still, that means I probably wouldn’t want to run Gentoo on it – compiling involves lots of temporary file write-and-delete cycles. Oh, well – I’ve been wanting an excuse to try out Arch Linux anyway. It appears to have the same “rolling release” methodology that Gentoo does, with a decent package manager and yet the same kind of ability to custom-compile packages elsewhere to install that Slackware’s “SlackBuild” system enables, so I could still do the “compile just the features I want, optimized for the Atom processor and for minimum size” sort of trick that I could do with Gentoo.

Application of what I like to call “Intentional Computing” philosophy ought to be able to turn a machine like this into a potent portable premium performance powerhouse of…um…something beginning with “p”.

Anyway, I think the only other route I’d consider for getting a Linux netbook would be a Dell Mini 9, which is on sale right now ($50 off). However, it’d still take what appears to be one to three weeks to actually get the machine into my impatient nerd-hands from Dell, and features equivalent to the EEE PC 901 look like they’d still cost about $100 more (at least) from Dell, even with the sale going on.

Any thoughts before I commit myself*?

*– Yes, I know that can be interpreted in multiple ways. Most of them probably apply anyway, though, so I don’t care…

SHENANIGANS! It’s a freakin’ anti-Linux conspiracy…

My last post mentioned that I’m actually in the market for a much-needed Linux netbook. My problem is that the combination of FUD and bribery (“we’ll give you a huge discount AND continue paying you to put up the ‘[company] recommends Microsoft’ advertisements on your website!”) seems to have killed off my choices at the retail level (all Microsoft), and perhaps has made it difficult to even order online.

Dell and HP take almost two weeks (“estimated”) to get me a Linux netbook, and I’d rather not wait that long. I thought perhaps the stock Sylvania G Meso, which seems to be getting very good reviews for the price, might be something I could at least order and get within a few days. However…nobody online seems to stock them either, unless they charge an extra $100 for them.

Here’s the query I just sent to Sylvania Computers (now known as “Digital Gadgets”):

I’m having a great deal of trouble actually finding what I want: your Sylvania G Meso with Ubuntu.

Of your “Where to buy” links:

  • MicroCenter” only carries the “Magni Elite” rather than the G Meso, and only with Microsoft Windows.
  • DataVision” wants $100 extra for the one color (yellow) that is actually in stock (the others, including those at the correct $269 price, are “pre-order”).
  • RCSNet only has the “XP” version in stock for the extra $30 – the others are “pre-order” (correction – I missed that they claim to have one color – “pink” – actually in stock).
  • Amazon.com lists the model that I want, but says “Usually ships in 1-2 MONTHS

Does anyone actually stock the $269 Ubuntu Sylvania G Meso?

A second question, less urgent: I would have preferred to be able to upgrade to 2GB of RAM (without voiding the warranty) – will this be possible in the near future?

P.S. you might want to put a redirect on “sylvaniacomputers.com” to “digitalgadgets.com” – a lot of the laudatory articles about the Ubuntu Sylvania G Meso still link to “sylvaniacomputers.com”.

Thanks

At this point, I’m seriously considering offering to drive to Dell’s corporate headquarters (about 3-4 hours drive from here) next weekend to pick up a Mini 9 even if I have to assemble the freakin’ thing myself in their waiting room rather than wait for their factory to get around to it, if it’ll get me a functional netbook within a week.

Otherwise, perhaps being sufficiently secure in my masculinity to order a pink netbook (and a can of spray-paint? A coating of “magnetic”, “chalkboard”, or “dry-erase marker” enamel might be fun) may be my only chance of getting a Linux netbook in a decent time-frame.

The alternative is to pay the Microsoft tax and get a retail unit, then upgrade it to Linux and try to get a tax refund (while Microsoft continues bragging that in “brick and mortar” stores where there seem to be absolutely no Linux boxes, Linux only sells 1 out of 20 netbooks*…). No waiting, and I can just take it back and exchange it if the hardware’s defective. Somebody please talk me out of this last option…

* What impresses me is that we’re talking about a study Microsoft bought, that looks at a market that seems to actually stock near 0% Linux netbooks, and even there Linux still makes up one in twenty sales…

I ♥ the Minister of Domestic Affairs

The Minister of Domestic Affairs has given the go-ahead to find myself a netbook to take the place of my gigantic beast of an aging laptop. Now I just have to figure out which one to go for.

A white 'Sylvania G Meso' netbookI’ve got the selection narrowed down to four possibilities. Irritatingly, I cannot seem to find Linux-based netbooks in retail outlets thus far. I tend to prefer to get things like this retail, so that if I start them up and find they’re defective (or if they die in the first few days), I can just take it back and exchange it, rather than calling some call-center halfway around the globe, sitting on hold for an hour, dealing with some schmuck going through the “did you plug it in? Did you turn it on?” script, finally getting an RMA#, and then paying to ship the thing back and being without a computer for 2-4 weeks until the replacement arrives.

Currently, my first choice is the Sylvania G Meso Linux version, which seems to be a very good value and is well-supported by Linux – plus for a computer that I have to order, I should be able to get it shipped quickly. My second and third choices would be either a Dell Mini 9 or HP Mini 1110NR. Those give me more customization options (and the HP keyboard is perhaps one of the most usable “small netbook” ones), but Dell and HP would take almost 2 weeks after taking my money to finally get the thing assembled and sent to me.

The last option would be to go to Wal-Mart® or similar cheap-electronics place and get an Acer Aspire One crippled with a “Windows XP Home” OS, and take it home in a lead-lined box until it can be overwritten with a real OS (and then perhaps argue with Acer about getting a refund for the unused and unwanted Windows license.).

Some people probably think I’m insane for wanting a tiny little netbook (and I do specifically want the smallest netbook I can reasonably use – I’ll actually take the 8.9″ version over the 10″ version) to replace a laptop. Thing is, Intel Atom 270N-based netbooks should be somewhat better-performing than my old full-size laptop with its old “Turion 64 ML-30” processor (same clock speed as the Atom, with less than half the bus speed and an order of magnitude higher power consumption…) and will have a much better-supported graphics chipset. My view of Google Earth might be a bit more constrained than on my big 1280×768 giganto-laptop screen, but it ought to be smoother…

Anybody have any suggestions? The actual distribution of Linux that it comes with is essentially irrelevant, as I’ll almost certainly replace it with either Gentoo (if it has a large, standard hard drive) or Arch (if it has a solid-state drive).

Another Asterisk post to follow, later, too. Keep watching…

This Week = No Fun, but here’s an update anyway…

Busy week with unpleasant surprises, but I ain’t dead yet. You’re probably wondering what a hot dog that’s apparently eagerly anticipating eating itself has to do with that. The answer is: nothing, but it does relate to something I have been intending to post about for a long time, but haven’t since I didn’t have access to the paper…

So, in lieu of blasting out Twitter®-style updates on my Laconica feed that nobody reads anyway (a few people no doubt see the echo of them on Twitter® itself, but I don’t know if anyone cares…), here are a couple of what-I’m-doing-now updates before I go to bed:

  • I just shot off an email to the webmaster (the only contact I could find who might have the relevant information) of the Institute of Brewing and Distilling, trying to get access to a classic paper published in the Journal of the Institute of Brewing and Distilling for the upcoming “On the Shoulders of Giants” carnival.
  • There’s no way I can afford the ~$300US that it would cost to join the group, nor even at the moment to pay the typical $30 or so that greedy paywall-imprisoned publishers charge for individual articles. However, they appear to be opening up their archives to the public, for which I think they deserve substantial praise. Still, they haven’t worked their way back to the first few decades of the 20th century yet, so I had to email and ask if there was a way to get the article in question. If not, I’ll see if there’s any way to get it through inter-library loan in time.

  • “Small Things Considered” asks “What Microbiological Discovery in 2008 Did You Find Especially Interesting?” Which brings us to the “self-eating” thing.
  • The paper on caffeine’s induction of macroautophagy (“self-eating”) in yeast (and what happens when benzoic acid is also present) finally escaped from the paywall prison in January, and I now have a copy. I at least thought it was full of interesting implications (along with some useful knowledge), so I’ll hopefully be posting about it soon.

  • I’m also a computer nerd
  • Particularly when it comes to things like Linux. I’ve been thinking of trying to do some recordings on a couple of practical subjects that interest me for “Hacker Public Radio”

  • And of course, I still need to do some Xanthomonas snot Xanthan Gum experiments.

I am an attention-whorewilling to listen to my readers’ interests, so if anyone has suggestions or comments feel free to post them…

Stir-Fried Random Ep 02:Sex, Violence, and Cinnamon Bears, y’all!

Only about five more days until the next “Giant’s Shoulders” blog carnival. I still need to pick a paper. ARGH!
(UPDATE 20081126: I’ve removed the embedded flash player – it seems to ignore me when I explicitly tell it NOT to automatically start playing rather than waiting until you intentionally hit “play”. Sorry for anyone annoyed by the autoplay. The embedded player will not return until I solve this.)

Meanwhile, here’s this week’s episode of “Stir-Fried Random”, weighing in at a MASSIVE 12 WHOLE MINUTES or so. As before, there’s an “<audio>” tag pointing directly at the Ogg Vorbis audio for those of you running a beta of the Firefox 3.1 series, a recent version of Opera, or (I believe) the current Safari on a system with the Ogg Vorbis Quicktime component installed. There is also the usual embedded Flash®-based mp3 player and direct download links for both versions.

Somebody please let me know if I’m making a fool of myself here… Anyway, here are the show notes:
Continue reading Stir-Fried Random Ep 02:Sex, Violence, and Cinnamon Bears, y’all!

Stir-Fried Random: Alferbeetagama!

(Update 20081104T1050: added a minimal embedded flash-based player at the bottom of the post, if you’re willing to settle for mp3 quality and want to listen from your web browser…)
(Update again 20081126: I wish I had realized before that the stupid thing was autoplaying despite explicitly including “autoplay=false” in the parameters. I’ve removed the embedded player again until I find a way to prevent autoplaying. Sorry about anyone that was annoyed by this.)

I was going to post this last night, but there appears to have been another bout of database connection errors again at my ISP (“host blocked due to too many connection errors”). I’m guessing either someone is DOS’ing the database server or one of the other users had some very badly behaved custom code running. They’ve got it fixed now, so here we go…

After staying up too (insert profanity here) late again despite having to get up extra-early this morning to vote before work…here’s the first real episode of Stir-Fried Random. Still only about 10 minutes long – I’d like to make it longer, but it’ll still probably take a few episodes of building up to it. An actual shiny new <audio> tag is included for those with bleeding-edge browsers that support it (let me know if it works – hypothetically the 3.1 Beeta[sic] version of Firefox and I believe the most recent Opera support this.). Otherwise, direct-download is available below the show notes:
Continue reading Stir-Fried Random: Alferbeetagama!