Why did the R.L. Denim owners begin paying maternity leave, stop beating
workers, and, yes, supply soap and toilet paper? Because when an overworked
18-year-old died, the NLC, other groups, and individuals writing
letters begin to put pressure, not on the factory, but on the retailer
ordering from the factory.
(More...)
Handmade toys may soon be illegal in the United States.
That's the bad news. The good news is that they would already be illegal, if toymakers and others hadn't gotten together and fought back. Now they need our help.
(More...)
Imagine if you could only fill your car with gas from Exxon. Or only get an oil change at the dealership. Or if it was illegal to open the hood of your car unless you worked for the manufacturer. Even if you had no desire to be your own car mechanic, these rules would seem a bit draconian.
So why this paroxysm of intellectual property law for computer software?
(More...)
updated: 2009 Jan 13 08:21
|
begun: 2009 Jan 13, 10:15 Tue |
tags: family
The Powell family would like to offer our thanks
to the royal personages who mysteriously graced
our neighborhood the other day. Your gracious
generosity will not be forgotten; our only regret
is that we apparently can't thank you in person.
Yet.
If you think it through, a partial support for abortion is intellectually more frightening than a full stamp of approval. In fact, partial support for abortion should frighten pro-abortion people too.more »
So I'm helping to start a food co-op here in Lafayette, IN, called City
Foods.
Here's our mission statement:
Our mission is to serve the nutritional, social, and economic needs of our
members and community by providing a market for local, fair-trade, sustainable,
independent, and healthful goods and services in a friendly, cooperative
environment.
And here's some other helpful info. Stay tuned for more updates.
Syntax highlighting is the joy of text editing. Consider
these two screenshots:
(That's the xterm16 colorscheme with transparency turned
on, using the mrxvt terminal with transparency on, a
tint of #000020, and shading of 85.
Background image: "View on Dubrovnik".)
Anyhow, as you can see, even the sparse syntax of
Marxdown is far easier to read when the
syntax is highlighted in different colors. You can even get
things like bold highlighting, even though the
underlying file is still clean, plain text. Mere asterisks
let Vim know to color a word bold. No hidden codes are
required; what you see is what's really in the file, but Vim
can add colors. Vim isn't the first or only program out
there that does syntax highlighting, of course. Any
reputable text editor should do it.
My contributions
There many kinds of plain text in the world. This file uses
Markdown syntax, but a PHP file would need PHP syntax, a CSS
file would need CSS syntax, and so on. Each kind requires
its own "syntax file", so Vim knows how to treat it.
Vim comes with quite a pile of syntax files, and the
community has contributed even more at the Vim
site under "Scripts".
Every so often, however, I come across a kind of file that
no one has needed syntax highlighting for yet. Fortunately,
it's relatively straightforward to write your own syntax
file. Here are the ones I've written, and uploaded.
When you get hooked on plain text, you start trying to do
everything with it. Tab-separated files are a simple way to
store simple data. But I wanted each column to be a
different color.
At the time, I was using a collection of shell scripts
called NoSQL to access these tables, so I named the syntax
file nosql.vim. I still use NoSQL for some old scripts, but
lately I've needed the power of perl (DBI and DBI::AnyData)
to access these files. DBI is a neat perl module because the
syntax is the same whether you're talking to a MySQL
database or a plain text TSV.
Anyhow, with this syntax file, columns appear in different
colors. Keeps things sane.
I've just this morning finally put up my syntax file for
DokuWiki, the wiki I currently
use for Wineskin Media. It's not
from scratch, just a modification of a Wikipedia syntax
file, but if you happen to use DokuWiki, you may find it
useful.