28th August
Book Recommendations

Sorry about the posting confusion this week. I’ll be out on Monday here and on Critical Futures, but everything will be back to normal on Tuesday.

This is a post that I’ve been working on for a while, and I’m not sure that it’s done but I’m fresh out of ideas for more book recommendations. But then, this is a blog, and there’s a comment form for a reason, so if I’ve been remiss and forgotten something important, please do remind me. Enjoy!

I have perpetual fears about not being well read enough. I think this is mostly an existential problem, as I read a bunch, and I’ve read a lot of stuff in my day. But there’s always more, particularly as I think about shifting my academic/intellectual specialty. In any case, I found myself a few weeks ago recommending a science fiction novel that I had read,1 and I thought it might be good to post a list of recommendations. Not just “books I like,” but “books I’d tell you to read if you were looking for something specific.”

For people who like military SF and some people who like Heinlein, John Scalzi’s Old Man’s War is a great deal of fun.

For a great novella/tightly wound plot, Samuel R. Delany’s Empire Star and for lingustic sf, the other half of the book, Babel-17. I’m a huge fan. For anyone interested in urban systems and community, Times Square Red/Times Square Blue Amazon is a great read, and is incidentally the most cited source of my college career.

For a very smart, but also very comforting and enjoyable space opera trilogy, Melissa Scott’s Five-Twelfths of Heaven Trilogy can’t be beat. Her Trouble and her Friends is also a great example of what cyberpunk can be when it’s not trying too hard to be the next New Thing.

I don’t find myself in a position to recommend mainstream fiction very much, but I am a big fan of Anne Lamott’s All New People, and Barbara Kingsolver’s Prodigal Summer, which are both clever and fun, and are unabashedly delightful.

Books about writing? Five or more years ago, I would have had a list of books about writing, but as a genre I’m not particularly convinced of their worth/utility or frankly interesting-ness. Anne Lamott’s Bird by Bird, is simply amazing, though not particularly for the specific writing related hints. I’ve always thought that Stephen King’s writing book is pompous and sort of unfocused, but admittedly I couldn’t even force myself to finish it.

That’s what come to mind, do you all have any good recommendations?



Notes:
  1. I’m not above recommending a book on reputation alone, though I try to disclose this. 

permalink one comment
tagged:

27th August
Writing and Research

Ed: I so I totally meant to post this on Monday instead of this post, but the wires got crossed, and Monday’s post got out early. Sorry. –ty

The one thing that really undermines my argument against preemptive rewriting is the fact that I’m a compulsive outliner, at least for some things.

Since I’m currently in the “planning a new story/project” phase1 I’ve been thinking about the outlining process a bit.

The difference between blogging and writing is that in a blog post I maybe scribble something on a paper ahead of time, but the rhetorical thread comes out of my fingers and on to your screens pretty much straight through.2 Blogging is very much like the research process of fiction writing, in that it’s a process of taking an idea and figuring out what it means, and a lot of the possibilities in whatever thing or situation (blog and fiction respectively). In blogging, you pray someone’s interested or you’ve written something that gets folks irked enough to respond, in fiction you take all this thought work and then write about only the things that really need writing about.

And then I realized the other day, that I write the outlines of my stories–indeed my entire personal wiki notepad–to you, dear blog readers. At some point years ago I got a pretty good idea of who “you” are, and as a result generally my blog posts are all addressed to the same positional reader (even though that reader/group has changed a bit, and my conception of “the reader” has always been pure fantasy on my part.) Even though I’m the only one that reads this document, all the parts are written to the same person. It’s all very strange.

But I digress. Research.

I think the sort of stock advice to the new writer doing research is “don’t get too caught up in planning, writing is about writing, not planning to write,” and while I do think that the reminder to always keep the writing in mind, at the same time, there’s something really important and intense about the planning process that shouldn’t be ignored. It’s a lot of work, there are a lot of words that go into getting a story to the point where you can even think about starting to write in ernest. In the end I think it’s not so much about what you outline or what you read up on, as the act of doing it. The time spent in your head thinking about this world, and this idea.

Speaking of thought work, I have some to do.

Onward and Upward!



Notes:
  1. It’s true that I’m not exactly finished with any of the existing stories/projects, I’ve realized that my slate of open projects are: Station Keeping (which is always ongoing, and I’m 8 episodes away from being done with the second season), Trailing Edge (which I thought was going to be a novel-scope project, but I was so wrong, and it turns out that I’m close to being done and taking a break), and I have another Knowing Mars story or two that I’m not particularly interested in writing just yet. And since I’m my own writing boss, I can work on a new story. 

  2. I write non-time sensitive entries in batches and post them later, mostly because I want to get blog posts going live up in the morning, and don’t want to have to cram to get them done every night, and I like this rhythm, but the it’s still very off the cuff, and minimally edited. But you knew that. 

permalink zero comments
tagged:

26th August
10 Shell Tips

10 pearls of collected wisdom for the aspiring terminal/console/command line user. This assumes *NIX but little actual command line experience.

  1. Customize your your .bash_profile or .bashrc files and continue to tweak this file as you learn more about how you use the shell. I even have a line in my profile that makes it easier for me to edit this page.
  2. Never open files unless you have too. tools like less, more, cat, and grep should be enough to keep you going for most routine checks.
  3. Having said that, getting to know your text editor really well should be on the top of your list of things to do. There’s something to be said for learning how to use vim, though I can understand if you might want to use something a little less sharp around the edges.
  4. It’s good to be able to hack your way through bash/shell scripting and at least one other general purpose scripting/programing language. Like Perl or Python, but Ruby and PHP would work. Power users don’t necessarily need to be able to write brilliant programs, they just need to figure out how to glue other programs together.
  5. Familiarize yourself with your operating system’s package manager, or get macports if you’re on a mac. Or get an operating system with a better package manager. To my tastes this means means getting a debian-based linux distribution, but there are others if this won’t work for you. These package installers make it so much easier to install software and have it work because other people do the testing. Compiling things on your own is ok, but package mangers are better. Learning how to use the cpan shell and ruby gems falls under this imperative.
  6. Do first and script second. While you may be tempted to write nifty little scripts for all the things you think you’re going to do, don’t. Work first and figure out what your habits are and then write the scripts/macros/short cuts that will best serve you. That way you’ll use them.
  7. Figure out how to schedule tasks/automate background tasks. If there’s an internet connection, and probably even if there isn’t, my computer checks my email every 8 minutes or so. Because I have a little “check email and tell tycho if there’s anything new” script set to run in a launchd deamon. You could use cron if you’re not using a mac, but the general idea is that if there are things that you know need to be done, regularly, you just tell the computer to do them, and then you don’t have to worry about it.
  8. Read the manuals and google for help, but also relax. The terminal lets you do a lot of new things, and it saves you a lot of time. It’s also hard to learn and a lot of die-hard terminal users are also, to be blunt, assholes. I don’t want to recount the number of times that I’ve seen people rant on about proper forum, and how new folk ask too many questions. This is dumb, new people always ask questions, and the truth is that some things aren’t well documented. Also a lot of terminal assholeishness comes from a period of time, when certain operations took a lot of CPU power, and CPU power was more at a premium than it is today. Most contemporary computers, even ones that are a few years old, run so fast that even inefficient terminal applications still run incredibly fast on modern hardware, and can outperform the best GUIs. You’ll learn later.
  9. Remember the Unix Philosophy. Basically that programs should do one thing well, and not complicate themselves with doing more than one thing. If you know that this is how things can and should work and you can learn how to work with this, then you’re in good shape. (It’s also ok to bend it a little bit, from time to time.) Also, if you’re an oddball like me–and using the command line for something, like writing fiction–slowly get a sense of what existing tools do, and figure out if its useful to you. Also know that just because something’s cool it doesn’t mean that it’s going to be useful for you.
  10. Customize the appearance of your console window. Apple stocks everything with an ugly black text on white background thing, which makes my head hurt from the squinting. Readably sized fonts, good coding fonts, anti-assailing, colorizing your prompt, light text on dark backgrounds, and some transparency all make the terminal more functional and elegant.

permalink zero comments
tagged:

25th August
Upcoming

I just wanted to pop in out of lecture mode (sigh) and give a brief sort of “meta report,” of what I’m working on, where I am in life, and what my plans are for the blog are in the next little bit.

First off, as next Monday is a national holiday (whew) and I’m going to be out of town doing family stuff for the long weekend, I’m not going to have a Critical Futures post on monday. The current story, “Visa Riots” (in Trailing Edge) will run through Wednesday (6 parts) and then I’ll have a little two part Station Keeping story so we’ll be able to start September with a new section of something fun.

I’ve been hard at work planning a new novel, writing more Station Keeping. I’ve also been working a lot, but my current employment situation is going to be changing significantly in September (I’m in a “hurry up and wait,” situation, but I remain optimistic.) In any case, the next job will be more flexible, whatever it is, and I’m pretty confident that the impending changes in my life that happen this fall will be exciting and productive.

In terms of the blog, I’ve decided that unless something seems really important I’m not going to talk about things I’m writing and the writing process. I might still post book reviews and thoughts on reading, but I’ll probably tone that down as well. I’m not sure that it’s been helpful to my process and workflow to spend time reflecting on these sorts of things, and I’d rather spend my blogging time talking about other things, like…

Knitting and technology. I’m starting to knit more again, and I’m pretty aware that you all in blogland are–at least for the moment–primarily knitters. So, I think blogging about knitting will be helpful and fun.

In terms of technology, I’ve been through a couple of phases about my writing about technology for this blog, and I’ve not been incredibly happy with my previous modes. I think writing about material technology gadgets/hardware, endorses consumerism in a way that I don’t thinks interesting or fun. And while I remain interested in productivity and technology, writing about being productive isn’t productive (ie. productivity porn) and in my experience always gets hung up on fadish systems or tools, and that’s not interesting. So I’ll probably continue to blog about producivity, but much less than I have been.

I’m interested in writing more about open source stuff. My post about drupal was a lot of fun, and I’ve had some other thoughts which will (hopefully) germinate into full grown posts in the next couple of weeks.

I understand that the geeks might not get the knitting and the knitters might not get the tech stuff but stay tuned in any case, I’m a generalist in both camps, and I promise to be enthusiastic.

Also I have a little script to ease in the posting of links and other miscellany that I find along my travels through cyberspace, I just have to get better at using it. That should help even out any over specialization that I might be prone to.

So that’s what’s on my plate and mind. What’s on yours?

On/up!

permalink one comment
tagged:

22nd August
The Things That Make Me Weak and Strange

I read Cory Doctorow’s recent story on the new tor.com site, “The Things that Make Me Weak and Strange Get Engineered Away,” and it left a funny taste in my mouth.

The story is well told, and I read a lot of Cory’s stories and listen to his podcast and so forth, and as a result I’m pretty familiar with the kinds of issues that he’s writing about, because I’ve heard him talk about a lot. Which is fine, just back drop. Anyway, this is a story about a future police state where dissidents go missing all the time, where everyone’s spying on everyone else, and where habeas corpus and due process are suspended/withdrawn.

You may choose to call this the logical extreme of the “post 9/11″/war on terror policy that’s given us the TSA and the Department of Homeland Security. I think that’s pretty clearly the intention of the story.

You may also choose to think of this story as depicting fascism. Which it does, basically. I think this is a pretty dangerous, move and though I was initially struck by a few other jarring aspects of the story, when I thought about it more, I realized that the combination of “the logical extreme of post-9/11 fear” and “fascism,” was pretty troubling.


SPOILER ALERT

I should interject and this is a bit of a spoiler that the story has a dark ending where, the character is given the choice to either go back to his old life as a double agent or get sent back to the gulag. And he’s going to go back as a double agent, but he doesn’t and before he can tell anyone what’s up he gets taken back by the police and it ends.


Here’s the thing, fascism has never appeared without the assistance of some sort of violent extra-legal action. Hitler had the SS and he bombed the parliament. Franco overthrew the government in a war. Mussolini had a personal police force with which to wreak havoc. We could think of other examples, but really I don’t think that this is a terribly original process. I think it’s fairly safe to say that fascism isn’t the result of slowly eroding the liberty of a fearful population until people wake up one morning and realize that they’re slaves, but rather a process of creating fear and then grabbing power for a falsely relieved population.

I know that this is a cautionary tale and that this story takes a current phenomena to a logical extreme to inspire us to get upset about the little erosion of civil liberties. The thing is that false consciousness (and fascism as an extension) isn’t something that you have to slowly lull people into, it’s something that’s always already active in the political sensibilities of a people. Better, I think to get mad about surveillance and an erosion of privacy not out of grief for a lost freedom, but because oppression and societal norms needn’t be fascist to impinge upon the quality of our lives or do harm. And always be vigilant in the crusade against false consciousness and fascism, but don’t become confused into thinking that the vestiges of fascism are it’s cause or sole offense.

Onward and Upward!

permalink zero comments
tagged:

< Previous Entries