-
Diamonds are not actually that rare, except that most diamond production is owned by a single cartel (De Beers) which constrains the output to prop up prices and create the appearance of scarcity:
Natural diamonds aren't particularly rare. In 2006, more than 75,000 pounds were produced worldwide. A diamond is a precious commodity because everyone thinks it's a precious commodity, the geological equivalent of a bouquet of red roses, elegant and alluring, a symbol of romance, but ultimately pretty ordinary.
Credit for the modern cult of the diamond goes primarily to South Africa-based De Beers, the world's largest diamond producer. Before the 1940s, diamond rings were rarely given as engagement gifts. But De Beers' marketing campaigns established the idea that the gems are the supreme token of love and affection. Their "A Diamond Is Forever" slogan, first deployed in 1948, is considered one of the most successful advertising campaigns of all time. Through a near total control of supply, De Beers held almost complete power over the diamond market for decades, carefully hoarding the gemstones to keep prices—”and profits—”high. While the company has lost some of its power to competitors in Canada and Australia over the past few years, it still controls almost two-thirds of the world's rough diamonds.
-
Diamonds will soon be easily producible in a lab, which will be excellent for industry
With a cheap, ready supply of diamonds, engineers hope to make everything from higher-powered lasers to more durable power grids. They foresee razor-thin computers, wristwatch-size cellphones and digital recording devices that would let you hold thousands of movies in the palm of your hand. "People associate the word diamond with something singular, a stone or a gem," says Jim Davidson, an electrical engineering professor at Vanderbilt University in Tennessee. "But the real utility is going to be the fact that you can deposit diamond as a layer, making possible mass production and having implications for every technology in electronics. -
Unlike diamonds that come from the dirt, man-made diamonds aren't socially nor environmentally destructive
Like most open-pit mines, diamond mines cause erosion, water pollution and habitat loss for wildlife. Even more troubling, African warlords have used diamond caches to buy arms and fund rebel movements, as dramatized in the 2006 movie Blood Diamond. Actor Terrence Howard wears a diamond lapel pin with Apollo stones. He told reporters, "Nobody was harmed in the process of making it."
A syntax makeover
Now, I can be a stickler for syntax. As I've said before, syntax matters. It changes the way we interact with the system, it changes what is done, how it is done, and what can be done. Take, for example, the old syntax: [sourcecode language='ruby'] class Posts include ROXML xml_attribute :user xml_attribute :tag xml_object :post, Post, ROXML::TAG_ARRAY end [/sourcecode]Read-only-ability
There's something important missing in those definitions above. Quick, is:user
modifiable, or no? What about :tag
and :post
? Surely it's one or the other, but which?
It turns out that the attributes above are writable, which is the default. To override this you'd have to write the following:
[sourcecode language='ruby']
xml_attribute :user, ROXML::TAG_READONLY
[/sourcecode]
As syntaxes go, this is a pretty obtuse barrier to const-correctness, and will likely lead to most developers simply leaving their attributes writable, even when more restrictive setting would be correct. The Ruby community may have cast aside strict typing, but const-correctness is still a very important part of object-oriented programming, what with factoring being all about minimum exposure and minimum coupling, and it ought to be treated as such.
The solution is to treat writability the same way the standard attr
methods do, by making it a key part of the declaration name. The type name is relegated to a parameter, which gives us flexibility we'll exploit later. In short, you end up with this:
[sourcecode language='ruby']
# read-only:
xml_reader :user, :attr
# writable:
xml_accessor :user, :attr
[/sourcecode]
Object-tivity
Now you may notice above that:attr
declares the referenced type as the second argument. This is consistent throughout and there are several more types. They are:
-
:attr
: an xml attribute on the current node, returned as text -
:text
: the contents of a named sub-node, returned as text -
:content
: the contents of the current node, returned as text -
Object
: Any ROXML object can be provided to declare sub-types, including recursive types (provided recursion terminates) -
[Object]
,[:text]
: Put the type in an Array to declare that there are multiple instances of this type which should be provided in a collection -
{}
: A hash type can be populated with sub-nodes and attributes, in various ways
:text
is the default, if no type is declared,
Named args & TAG_what?
The old ROXML uses only positional arguments and theseTAG_
constants to declare aspects of the declaration. But the ROXML::TAG_
stuff is unnecessarily heavyweight, so the new ROXML uses symbols instead, e.g. :cdata
rather than ROXML::TAG_CDATA
.
Likewise, many optional arguments are now named, rather than positional. So rather than have to put in the default values for these parameters, or nil
, you can simply omit them. So these:
[sourcecode language='ruby']
xml_text :name, 'NAME', ROXML::TAG_CDATA & ROXML::TAG_READONLY, 'USER'
xml_text :name, nil, ROXML::TAG_READONLY, 'USER'
[/sourcecode]
Become:
[sourcecode language='ruby']
xml_reader :name, :from => 'NAME', :in => 'USER', :as => :cdata
xml_reader :name, :in => 'USER'
[/sourcecode]
The options map as follows:
-
:in
: Previously 'wrapper' -
:from
: Previously 'name' -
:else
: Used to declare a default value in case the entity is missing; previously unavailable -
:as
: Previously 'options'. Can be passed as a singly symbol, or multiple in an array
Hash attack!
One of the more important additions is theHash
base type mapping. Hash declarations have a syntax of their own which enable you to pull from attributes, contents, names and sub-nodes of a series of entries. This can be super-useful for web-services which provide collections of named attributes, which fit naturally in this type. The ROXML documentation covers these cases well.
Here's a few example of the syntax:
[sourcecode language='ruby']
xml_reader :definitions, {:attrs => ['dt', 'dd']}
xml_reader :definitions, {:key => {:attr => 'word'},
:value => :content}, :in => 'definitions'
[/sourcecode]
Blocks, yo
As xml is by its very nature textual, it may be necessary to coerce it into a certain type or otherwise modify the data before it makes proper sense in the context of an object. As such you can supply a block which enables you to modify the incoming text, for example: [sourcecode language='ruby'] xml_reader :count, :attr do |val| Integer(val) end [/sourcecode]Under the hood
Finally, an invisible improvement is that I've moved it over to libxml-ruby rather than REXML, for the sake of performance. So it should be significantly zippier on large sets of data, though to be honest I've done no profiling to confirm this.Wrapping up...
So there you have it. You can get the gem from my github. You can see the docs here. I'll see if I can get this onto the official rubyforge site as well. The code is fresh, and while I've increased testing on it significantly (up to 131 assertions from the initial 25), there's plenty of possibility for bugs therein. Please just send me a message or pull request on github if you run into anything. Finally, I'd be remiss if I didn't thank Anders Engstrom, Zak Mandhro and Russ Olsen for their prior work on ROXML, which made this all a lot easier to get going. Thanks guys.
As the taker of the photo (seriously), I have other thoughts on the subject. I don't agree that governmental health care reform is the way to go, without knowing more about the specific legislation. I looked up the one you mention, and found not a lot to like. Specifically, this is a big problem:
This is a problem because health insurance itself is largely the culprit in our broken system. To make a Massachusetts-style health insurance mandate would only reward those who screwed things up in the first place, while perpetuating an inefficient system. My point in taking the picture was that insurance itself has got way out of hand, because it complicates the whole process. The key problem here is that health insurance isn't used as "insurance" per se. Proper insurance (fire, flood, car, &c) covers unlikely but potentially devastating expenses. But regular health insurance covers far more, and inserts itself into almost every health transaction, to our detriment:In exchange for all of this consumer support, the Wyden-Bennett plan would require individuals to have health insurance (an individual mandate), which must be purchased from a state-run purchasing pool that would require health policies to have substantial benefits (rich benefit mandates) and offer a choice of private policies. - source
As it is, some 40-50 cents on the dollar goes to wrangling with insurers about payment, this is wasted value which the consumer never sees, and which drives up medical costs. The alternative I favor is the system put forth by Dr. Garrison Bliss, which has 3 parts:"Insuring primary care is like insuring lunch. You know you're going to need it. You know you can afford it. Why on earth would you pay a third party to pay the restaurant on your behalf, adding overhead and taking a big chunk out of the money you pay—”and because of the process, have to wait a week to get a table and then have only 10 minutes to eat?" - source
- A High-deductible health plan, i.e., insurance which only kicks in for catastrophic problems, such as cancer or a bad car accident. The premiums are much lower because the deductible is much higher (on the order of $1.5k).
- A Health Savings Account, which you and your employer contribute to tax-exempt, and from which you pay most of your medical expenses. You can afford to have money here because your premiums are so much lower.
- An enrollment with a Direct Primary Care provider, such as Dr. Garrison's Qliance, where you pay a fixed rate (in this case ~$50/month, though it could go lower), and in return get real relationship with, and 24hr access to, a primary care physician, and other services (x-rays, labwork, at-cost pharmacy) which makes your primary care physician much more than just someone who refers you to a specialist after 10 minutes.
Just to be clear, in the above system, the cost-savings and added benefits work out as follows:
- By removing multiple rounds of insurer paperwork from each transaction you save a large portion of the 40-50% currently spent on administrative costs.
- By maintaining a close relationship with a primary care doctor, on an enrollment basis, you greatly reinforce incentives to engage in preventative care, thus in many cases avoiding major health expenses by nipping them in the bud.
- Many lower-level emergencies which might otherwise send you to the (expensive) emergency room can instead be handled by your DPCp.
- As your DPCp is paid on a monthly basis, rather than per-procedure, they have no incentive to cajole you into unnecessary tests or procedures. This cuts down on medical expenses in general, by reducing unnecessary ones.
My response: This is a troubling statement. I'll try to explain why... Speech is not just speech. It is a million little steps which translate one person's thoughts into corresponding thoughts in another person's head. Money is one path through which a person's ideas and intentions travel. For example, if I want to communicate in another language, I must have a translator. If one isn't available for free (i.e., doesn't volunteer), then I must hire one in order to express my message in that language. If the government limits my ability to give a translator money in order to speak for me, then they have limited my right and ability to speak. The same is true of other forms of expression which require a purchase, such as advertising. So ultimately, when I give my money to a group which I support, they are acting for me, and by proxy expressing my speech. I support Ron Paul, and he, quite literally, speaks for me in the Republican debates, and in his ads. If you legislate my right to act through him, you limit my very ability to express myself. IMO, liberals are taking the wrong approach by going for public financing. Other people, such as Lawrence Lessig, are doing a much better job of approaching the problem without potentially destroying our speech rights. The problem here is quid-pro-quo (whether it be votes or access), and as he cites, interesting work is being done to break that (quid-pro-quo) link, without limiting the speech that occurs through dollar-voting on the part of citizens.Money is not free speech.
- Load up boingboing, one of the more interesting blogs on the internet, to see what they've scared up recently.
- Notice an article on the holographic projection of sea-life on a recent Diesel fashion show. Sounds interesting...
- Follow the link over to youtube, to get a look at the effects
- You're a sucker for distorted vocals and dirty beats (see Vitalic, Battles), so you immediately notice the first song on play in the video, and suddenly you must know the answer to the question: who are these people?
- Search for some of the lyrics. Nope not good enough. Try again. And again.
- Bingo
- You ask yourself, who the heck is this "Walter Meego" guy?
- Look up "his" wikipedia page.
- Oh it's actually a them (who thought up that band name?). And they're from Chicago. Independent until recently, only E.P.s so far. The person who wrote the "style" section is laughably amateur, not at all in wikipedia style. This means the page doesn't get much traffic. Not surprising considering the other facts.
- Hop over to their myspace page, looking for more music to sample. They say they are working on a full-length album, good for them. You're much more impressed with "Romantic," the song from the video, than their other stuff, but that's life. Hopefully the eventual album is more in that style. Not touring much at the moment, unfortunately. You've discovered them just a bit too late to reasonably tip-off your NY-habiting friend about their show there that very night.
- Check if youtube has any videos of theirs, to get more a feel for their style
- First up, a video which appears to have been made in a dorm room, and includes a synchronized dance scene ala the macarena. The whole thing is kind of flippant and uninteresting. Okay okay they're independent, you get it. You just have such high expectations after seeing such great stuff from other bands.
- Second up, for the song which tipped you off, is a video involving ninjas playing in a theme park, playground, rollerskating, and getting rejected by the girls they make advances on. This is, put simply, an abomination. It runs totally counter to the song, trivializing the depth and sorrow of it in again, a flippant way. A commenter captures this in more than one language: I don't like this video. I love the song. I'm just so frustrated I'm gonna say this in swedish because I'm way too frustrated to think right now. Videon gör inte låten någon som helst rättvisa! What were you thinking? You've made light of the song and yourself with this video! C'mon u guys got some serious potential! Silly video and so's the other one.
- Disappointing, yes, but not a deal-breaker, after all, it's just the music you're there for. Still, someone needs to give these guys a talking to. Competition in the music industry is fierce, and videos are one of the best ways to spread the word. If your talent doesn't translate into the visual realm, find someone whose does.
- Head over to Amazon to pick up an E.P. Think twice and go to the band's website. They probably keep more of the money that way.
- Hmm... Romantic was the song you liked, but the Romantic EP is stuck together with "Wanna be a star" which is a bit more straightforward in just about every way... beats, lyrics. Definitely a B-side. But the sample remix isn't terrible. Ah well. If you were playing the iTunes game you may wait and purchase by the track, but you're not, so platters it is.
- Reflect on how awesome it is that you just used a fashion show soundtrack together with a host of internet tools as a music recommendation system to find a promising, yet (deeply?) flawed, relatively unknown band.
- Write a blog post about it.
One could go further and say that ideas are inherent to reality. That what we do is just pick up the pieces of a story folded all around us. So one can tell you not to think, blow out the brains of the one who does, but they can not destroy the reality which we fight to carry out, to honor, to realize.
I've recently moved to Seattle, and while the trip itself is something I should take the time to write about, since then I've had a really excellent time of getting to know a new place, finding and settling in a house, and meeting new people. Aside from all that, I love the city, but have had trouble explaining why. Today I had an experience which I think conveys the beauty of Urban life.
I've rented a place in a neighborhood called Capitol Hill, an interesting area across the freeway from downtown proper. I've all my things, save any furniture, which didn't make it into the car for the roadtrip up here. Anyhow, no furniture means no bed. It didn't take long to learn that the tile floor would be inhospitable, so after a brief stint sleeping on a mat of some of my clothes, and a longer one on a cot borrowed from a co-worker, as of today, I returned home to find the bed I had ordered over the weekend. Seeing as how I'd never owned a bed larger than a twin, I didn't have the sheets for the new one, so I set off, at 8:20, to get some sheets downtown from a certain store, knowing full well they were closing at 9:00.
Simply enough, I walk to the bus stop, hoping my timing will be right, but when I check, the schedule says that a bus had just past 5 minutes ago and another wouldn't come by for 30 more, too late to make it. Undeterred, I walked down the street towards another stop, where I know I can catch other routes downtown. Two blocks later, at an intersection, my bus zooms by, late. The light changes before I have time to cross and, flustered, I cross the other way, thinking the bus would be gone before I made it over to the bus stop.
I'm wrong, so when the light changes again, I'm on the wrong side of the street from where the bus still sits. In a moment, I'm running down the street, hoping to cross and catch it at the next intersection. Then, tradgedy strikes; As I'm running, I suddenly realize my phone is no longer in my pocket! How could this be?!? I'm forced to turn around the find it, as it's quite dear to me. I use it to take my pictures.
It turns out that my shorts, which I'd had for a while but were fine, except for having holey pockets, had gone from bad to worse and my phone could now fall out! Luckily it was an inexpensive lesson, as I found my phone, relatively unharmed a few feet away.
Knowing I'm pressed for time, I run to the next bus stop, where I'm glad to see that I have just a few minutes before the next bus arrives. So I sit and wait, and pretty soon four soccer players walk past. Then, there's a guy posting flyers on utility poles and trying to chat up women. The first one doesn't respond and he lurks behind her angrily for a short while, saying "You could at least smile, I'm never gonna see you again," but a few minutes later he's talking to another girl about cell phones and how mothers are sometimes wrong.
Late again, the bus eventually arrives, but now I'm pressed as ever for time. Less than 10 minutes later, I'm at my intersection, so I exit the bus and run through a crowd of sedentry folks waiting for the bus, over to the store which is due to close in 5 minutes. I make it, and after spending a few minutes comparing the merits of egyptian cotton to regular cotton, and 200 thread count to 350, I pick a few things and head to the counter, where the checkers are surprised to see a customer (and not just any customer, mind you ;-)) is in the store. One of them unlocks the door, and after regaining my bearings, I'm off to catch the bus back to Capitol Hill, carrying a rather large bag of bedding.
Pretty soon I see my bus down the street and, once again, this time with loot in hand, run toward it. I'm too late to catch it, and once again something falls out of my pocket. Luckily I've learned my lesson so it's just 2 dimes. While I pause to collect them, I realize that the bus I've just missed has another stop a block away, where a whole crowd of people are waiting for it.
I line up behind one of the people and notice that I'm not the only one carrying a big bag. Most everyone there had a large bag or suitcase or something. So, with nothing better to do in line, I ask one someone with a bag, "What's with all the suitcases and stuff?," to which she replies, "We're homeless, and we're heading down to a Church." Huh. Homeless people in Seattle seem much more "normal" than homeless people in Austin, which mostly are kooky or lazy (Seriously, ask another Austinite). Anyway, I finally get in the bus thinking that I blend in pretty well with these normal-looking, bag-carrying homeless folks, and I'm wondering if anyone thinks I'm homeless. I have time to reflect on that because one of the homeless ladies, who has a cast on her foot, is using the lift to get in, while another homeless lady yells at her (hollers, really), saying "What're you doing?! You don't need that, why I oughta woop your ass! You're holding up the bus!".
After other sights and sounds on the way back, I finally make it back home, and am glad to have sat by some rather polite people, who may or may not have thought me homeless.
So there you have it. It may not sound glorious, but I promise, it was.
PS. I don't want it to be thought that I'm disrespecting the homeless folks. Personally I think it's rather sad that so many people cloak their disdain by "feeling sorry". I give them the respect of treating them just as I treat everyone else.
After reflecting on my previous post, I now plan to make an effort to write more often when I'm excited than when I'm frustrated.
I was reading about "Template metaprogramming" on Wikipedia tonight this morning and I noticed this line which got me chuckling.
The syntax and idioms of template metaprogramming are esoteric compared to conventional C++ programming, and advanced, or even most non-trivial, template metaprogramming can be very difficult to understand.
Maybe it's just late early, but lines like that get me thinking of the person who must have written it. I can see him hunched over the keyboard now, his little mustache twitching as he types, his glasses illuminated by the screen.