Posts with mood frustrated (13)

frustrated links
Mood: frustrated
Posted on 2012-02-24 14:53:00
Tags: links
Words: 189

It's Friday! It is Friday, right? TGIF.

Serious links:

- Mitt Romney's Tax Plan Is a Mathematical Disaster - you mean cutting everyone's taxes by 20% won't help the deficit? I'm shocked!

- Aside from the recent dustup with Planned Parenthood, the Susan G. Komen foundation has a nasty habit of "blaming the victim" when it's pretty clear that, while mammography is better than nothing, it's definitely not a panacea for the quickly metastasizing cancers that tend to be more fatal.

- Rick Santorum Wants Your Sex Life to Be 'Special'...and I want Rick Santorum to stop talking about my sex life. (of course he's not talking about me, he wants my sex life to be nonexistant, I assume)

- Why Do We Still Care About the Dow? - even just as a stock market index, it's pretty terrible.

- Contraception’s Con Men

--
Less serious links:

- What Jeremy Lin Teaches Us About Talent - spoiler: it teaches us that sports teams are terrible at predicting it!

- Now George Lucas says that Han never shot first, you were just confused. Le sigh.

- How Much Would it Cost to build the Death Star? - it would cost a lot.

2 comments

401's, why have you forsaken me? (adventures in #webOS)
Mood: frustrated
Posted on 2011-08-28 12:33:00
Tags: essay palmpre programming
Words: 671

TL;DR - 401 errors are important! Handle them correctly!

I've started work on porting LJ for WebOS (LiveJournal client) to Enyo and the TouchPad...and it is not going well.

A little background: An XmlHttpRequest is a neat Javascript feature that let's you fetch web pages or other URLs in the background without requiring a page reload. (it's the "X" in "AJAX") Key to the whole app working is being able to access protected posts, and to do this, I have to use an XmlHttpRequest to fetch a post's webpage while adding "auth=digest" to it, saying I want to see the page as a logged-in user sees it. The dance continues with LJ returning a 401 Unauthorized HTTP error, but this has the necessary information to do another request with the proper authentication. (see the Digest authentication section of RFC 2617)

This is all a bit clumsy, but worked great in the existing LJ for WebOS. Last night I got to the point where I was actually trying to get posts in the new version. First up was developing in Chrome - one of the nicest part of the new webOS framework is that it's easy to test most things in Chrome instead of having to fire up the emulator and install it, etc. I noticed that when I tried this code for the first time, I got a bunch of popups in the browser asking for a username and password for various LJ sites. If I hit Cancel on all of them, things seemed to work - the code then saw the 401 error and proceeded to authenticate normally.

This seemed odd, to say the least, so I did a quick search which led me to this StackOverflow page (yay StackOverflow!), which says that's it's a known issue in Chrome and the only way to work around it doesn't work in my case (because I need to know what the headers on the 401 error are).

Well, that's pretty annoying, and seems clearly wrong to me - the user didn't go to this page, so why is she being asked for a username/password? I could see that you might want the option to do this in some cases, but the default should be off.

So I was already a bit irritated and, after a little bit more work, decided to try it in the webOS TouchPad emulator. I watched the logs scroll by as it got to the point that it did the first request for the post pages and then...nothing. Only when I quit the app by throwing the card away did I get some not-really-sensical error indications in the log.

I rebooted the emulator (as it seems to have a problem once you do too many HTTP requests or something), and the same thing happened. I was a bit at a loss - since I wasn't getting any of my log messages I couldn't see at all what was going on. Finally I fired up Wireshark to see the HTTP requests that the emulator was making to see if there was a clue there.

Much to my surprise, I saw it requesting the same pages over and over again! It would do a request, get back a 401 Unauthorized response, and then do a request again, seemingly trying to authenticate with an empty username and who knows what password.

I looked through my code and tried a few things to make sure that I wasn't causing this, but after some more searching I found a private thread confirming this behavior and that it was a bug.

*sigh* I can't make any more progress while this bug exists, and who knows when (or if?) it will be fixed in the OS. So, if anyone asks, this is why LJ for WebOS isn't on the TouchPad, and I guess I'll move on to other projects for now...

(this probably also mean that running the phone-sized version on the TouchPad won't work either, so...sorry about that. I don't have the heart to try it out right now.)

2 comments

Public life/private life
Mood: frustrated
Posted on 2011-05-11 22:58:00
Tags: essay gay
Words: 94

This article bothers me. Obviously I disagree with the guy, but "being against gay marriage" isn't nearly bad enough to disqualify you from representing the USA, assuming he didn't let it interfere with his duties (and there is no indication that it would have). Yeah, he wasn't fired, but I'd like to know who pressured him to resign.

I live in a country where I can disagree with others on controversial issues and still work with them. One's personal life and views should be reasonably separate from one's public life!

Posted via LJ for WebOS.

8 comments

Why so few webOS 2.0 apps?
Mood: frustrated
Posted on 2011-03-15 10:37:00
Tags: essay palmpre
Words: 276

(in response to this Precentral article)

As a developer that has apps that run on webOS 1.4.5, here are my current development choices:
1. Work on them using only 1.4.5 APIs, which means any webOS device out there can use my app. (possibly excepting people on Tercel in Mexico - what's up with that?)

2. Use some of the nifty new webOS 2.0 APIs. This means that the vast vast majority of webOS users won't be able to use the app. I don't even have a device that runs webOS 2.0 to test on.

3. Spend time trying to port them to Enyo, which is very clearly the future.

Right now my time is divided between 1 and 3. Using Metrix, I can see that somewhere around 2% of my users are running webOS 2.0+. Not to mention, even if I spent time adding webOS 2.0 specific features, those won't be highlighted in the App Catalog as far as I know.

So...yeah. There's very little incentive to spend time on webOS 2.0 right now.

--

An aside:

I have two free apps in the catalog - PasswordHash (a simple utility for generating passwords based on a master password and domain) and GAuth (generates codes for Google's two-factor authentication). PasswordHash was my first webOS application and it's really only useful if you use that password-generating scheme. GAuth is useful for anyone that uses Google's two-factor authentication. Guess which app is more popular?

Mind-bogglingly enough, PasswordHash gets downloaded ~7 times/day while GAuth is only downloaded ~2-3 times/day. (actually, PasswordHash had a day two weeks ago when it got 84 downloads!) Maybe people are misunderstanding what PasswordHash does and then deleting it?

0 comments

More health woes
Mood: frustrated
Posted on 2011-03-07 11:04:00
Tags: health
Words: 45

Not only was David (and I, to a lesser extent) sick this weekend, last night I broke a tooth! So I'm at the dentist getting a filling that hopefully won't fall out. At least my rash is going away...for now.

Posted via LJ for WebOS.

0 comments

just some links: movies, money, voting
Mood: frustrated
Posted on 2010-11-29 16:21:00
Tags: politics links
Words: 126

Animated Films for Grown-Ups - I really liked Spirited Away, and I think I need to watch more of these.

The best investment advice you'll never get - surprisingly interesting article wrapped around "index funds, not managed funds".

What Voters Really Care About - I'm not sure how trustworthy the results are. (since it's easy to ask this question but very hard to see how it would play out in practice) Still, it surprises me that "cheating on taxes" is worse than "convicted of violent crime"! And "homosexual" only makes it slightly less likely to get votes, except for Republicans. (and "believe in evolution" is pretty negative for voters over 65...)

XKCD strips classified by topic - good excuse to go back and view my favorites again, like this one!

8 comments

There is a difference between Republicans and Democrats, part 0x23fb
Mood: frustrated
Posted on 2009-01-13 11:00:00
Tags: politics
Words: 409

Republicans:

Ken Blackwell, who is running to be the head of the RNC (which effectively makes him the leader of the party), said the following:

MS: Did you choose to be heterosexual? Did you wake up one day and say I want to be heterosexual?
KB: The answer is that I've never had to make the choice because I've never had the urge to be other than a heterosexual, but if in fact I had the urge to be something else I could have in fact suppressed that urge.
...
MS: But you realize people were insulted when you compared [homosexuality] to arson and kleptomania. I would like you to explain that because, how does that get into this whole "choice" issue? I mean, kleptomania is a compulsion.
KB: Well, the fact is, you can choose to restrain that compulsion. And so I think in fact you don't have to give in to the compulsion to be homosexual. I think that's been proven in case after case after case...
...
KB: If in fact you would feel better for me to say to you that, one, I believe homosexuality is a compulsion that can be contained, repressed or changed, and that makes you feel better, then that is what I'm saying in the clearest of terms.
(MS is Michelangelo Signorile, KB is Ken Blackwell - see full interview with audio) And, not that this is news, Mike Huckabee and Ann Coulter compete to be the least gay-friendly, or as they call it, "pro-sodomy", because how I have sex is vastly more important than the fact that I love a guy. (not addressed, but I assume they're against sodomy for straight couples as well?) I didn't realize that Huckabee pushed an amendment to ban sodomy in the state of Arkansas when he was governor.

I would argue the Republican party is getting more homophobic than it was under Bush - he didn't do much for us but he didn't seem to have a problem with gay people per se. Ken Blackwell is saying just being gay, even if you never have sex, is wrong.

Democrats:

Obama is set to repeal Don't Ask, Don't Tell. Obama wants to publish some secret legal opinions.

I should really make a collection of these that I can point people to when I hear that the Republicans and Democrats are the same. (not that I hear this much anymore, but that's what a lot of people thought in 2000)

4 comments

why is my laptop crashing?
Mood: frustrated
Posted on 2008-08-19 09:36:00
Tags: worldofwarcraft computer
Words: 569

Executive summary: my laptop is now nigh-unusable for playing WoW.

Background: A while ago, I was having weird crashing problems with WoW where it would just quit to the desktop, no error indication or anything. I tried fixing it by reverting from Mac OS X 10.5.3 to 10.5.0 and that sorta seemed to help. Then, my account got hacked so I figured it was a good time to reinstall the OS and WoW completely, which I did.

Now the problem is somewhat different - when I crash, I get an error message (SFile2-Core.cpp line 1002: Failure to read data). It's mostly the same in that it only ever happens when I'm in the Outlands, and it usually happens after 30 minutes or so of play the first time, and then in rapid succession thereafter. If I quit for a while and come back later, it goes back to 30 minutesish before the first crash. Running in windowed mode as opposed to full screen seemed to help but that is no longer the case, it crashes about as quickly.

This was less of a problem before our alts hit 58 last week, but now that we're trying to quest in Hellfire it's pretty showstopping.

So my first thought, based on a google search and the particular message was that some memory was bad. Remember, this is the same laptop that I spilled a mug of tea on (although it seemed to mostly get better especially after I replaced the keyboard) so anything is potentially suspect.

It came with two sticks of 1GB memory, so first I tried taking stick B out of slot #2. It seemed to work better for a while, then CRASH! So I took stick A out and put stick B in slot #1. About the same CRASH! Then I tried putting stick A in slot #2 for completeness's sake...CRASH!

So, then djedi was suspicious of heat issues, since that would make sense with the diminishing time to extra crashes and my temperature monitor was showing CPU temperatures of 86 Celsius around crashes, which seemed awfully hot. So he rigged up something to cool the bottom of my laptop (involving two cookie sheets, a lot of ice, and a bag of frozen carrots), but that didn't make a whole lot of difference in temperature at the CPU. (although the bottom was much cooler than usual!) Then I remembered the WoW command /console maxFPS 30 which dramatically lowered the CPU temperature to the 50s while playing...and then it CRASHed. So I don't think it's heat.

Now I'm running a memtest on the stick that's in there, but it hasn't turned up anything yet. I really wish it would find just one error...at least then we'd have narrowed down the cause.


I'm getting to the point where I'd like to take it in for repair, but without knowing what needs to be repaired I doubt it would be fixed. And the laptop was quite expensive, and I only bought it a year ago so I really really really don't want to replace it or anything crazy like that. For now I patched WoW on my Linux box so that's at least a possibility.

It's frustrating because yes I'm aware that it's just a game, and a (gasp!) video one at that, but this is something djedi and I like to do together, and play and socialize with friends and such.

13 comments

obama v. clinton
Mood: frustrated
Posted on 2008-02-22 09:53:00
Tags: politics
Words: 1943

The debate last night was pretty good. (here's a transcript) Overall, they both did well, although I might give a slight edge to Clinton - she seemed a little more comfortable. The format was nice - just asking questions, no rules on time limits or anything like that. I guess that's the freedom when there are only two people.

Opening statements: This was boring. I did learn that Texas and Austin are AWESOME and suck it other states, especially Super Tuesday ones!!! How do you like us now? Anyway, Obama's was kind of a downer which surprised me a little - he talked about how the economy sucks, etc.

Cuba: They mostly agreed (a recurring theme) - Clinton would encourage them but not meet with Raul Castro (or whoever the leader is) until they make some positive steps. Obama would encourage them and also meet with the leader without preconditions. (I kinda like this better, as a meeting could bring about change, right?) He also called for a loosening of travel restrictions for family members and sending-money-back-to-relatives restrictions. Clinton believes in diplomacy but still wouldn't meet with Raul w/o some progress.

Economy: Let me just say here that I'm pretty sure the president doesn't have that much of an effect on the economy, or at least a predictable one. But, anyway, Obama would stop giving tax breaks to companies that ship jobs overseas, end the Bush tax cuts on the wealthy and give a middle-class tax cut (sounded like removing the payroll tax on incomes less than $75000 which would mean an extra $1000 or so). Trade with high labor and environmental standards. He points out that his and Clinton's policies are pretty similar, but he will form a "working coalition for change". Clinton: Yup, remove tax loopholes and cuts on wealthy, environmental standards for trade, also a 90 day moratorium on foreclosures. And ending "George Bush's war on science" (THANK YOU!) and become the "innovation nation" (not a big fan of that phrase) that we used to be.

Immigration: Gah, I care little about this. But: Clinton is for comprehensive immigration reform, path to legalization. Obama: yup, also tone down the ugly rhetoric (thank you), crack down on employers, make illegal immigrants learn English, pay a fine, go to the back of the line. Fix the legal immigration system - too many fees, takes too long. Improve our relationship with Mexico and the Mexican economy (I'll say here that I'm pretty skeptical the US president can fix the Mexican economy, but whatever).

Border fence: Argh, I care even less about this, but it does apply to Texas I guess. Anyway, Clinton voted for it, but wants to do it in a smart way, not a dumb way. May be places where a physical border is appropriate, but would review with people who live along the border. We could also use smart fencing (cameras, I assume) instead of an actual fence if we have enough people there. Obama: almost entirely agrees. We can't deport 12 million people. Supports the Dream Act (allows children of illegal immigrants to go to college or something like that) - big applause. Doesn't want two classes of citizens in the US.

Downside to the US becoming a bilingual nation: This is kind of a weird question, but I guess it ties in to bilingual education. Clinton: good for people to be bilingual. English should remain our "common unifying language", but doesn't agree with making English the national language. (thank you) Obama: it's important that everyone learn English, every student should learn a second language. Failure of No Child Left Behind: wants to put more resources in teaching languages.

Commercial break. At this point I just want the immigration questions to stop because I don't care. But I guess people do or something.

Is Obama "all hat no cattle": That's a harsh question, but I guess John King wants some fireworks. Clinton: President Bush is all hat no cattle, next president shouldn't be. There are differences between Obama & me. I offer solutions. Thought it was funny that Obama representative (Texas State Senator Kirk Watson, I believe) couldn't name a single legislative accomplishment. (seriously, bad Watson!) Obama: I've acted a lot, tax breaks to families, reform criminal justice system, pass a bill on transparency in government, health care to veterans in Walter Reed. Clinton has a "fine record", implies that his voters are "somehow delusional". Endorsed by every major newspaper in Texas (wow). We share policy, but we need to be able to inspire people to get involved in government, etc.

Plagiarism of Deval Patrick's speeches: This is an idiotic issue, but Clinton did raise it, so I guess it's fair game. Obama: Issue is two lines in speeches I've been giving over the last couple of weeks. Patrick is national co-chair of his campaign and suggested an argument that he shares (the "words matter" phrase). This is "silly season" in politics. (big applause) People don't care about crap like that, they care about getting things done. Tuition credit for students, changing tax code, ending war in Iraq - these are actual proposals. We should be having a debate on the issues. (yes, yes, yes!) Clinton: If your candidacy is about words, they should be your own words. Lifting whole passages from speeches isn't "change you can believe in, it's change you can Xerox". (big boos from the audience here, thankfully, and Obama protested a little) Not enough to say we need to come together, we're gonna have to work hard. My health care plan covers everyone, yours leaves out 15 million people. (I do appreciate she changed tack to a real issue) You are against moratorium on home foreclosures, which even Bush is considering. We will need to overcome entrenched opposition to our ideas. When I took on health care in 93 and 94, was against huge special interest opposition. Obama: Happy to debate issues. Clinton said that they all wanted universal health care; of course he was down 20 points in the polls. Plans are 95% the same. Cut costs with prevention. Philosophical difference: Clinton wants to force everyone to get health care, Obama believes the only reason people don't have it is that they can't afford it. We can have a legitimate debate, but his plan doesn't leave 15 million people without insurance. Also, the way Clinton did health care in 93 and 94 was the wrong way, since she didn't consult with people who had different ideas, so it was more difficult to get Congress to cooperate. If we don't change how the politics work, we'll be back here in 4 years again debating how to do the same thing.

Commercial break, although Clinton clearly wanted to respond to this.

Is Obama ready to be commander in chief?: Clinton: Well, I'm ready and prepared. But, back to health care! Obama says it's a philosophical difference, I think it's substantive. He has a mandate for parents to insure children, which is good, but if we don't require everyone to have health insurance the insurance companies will game the system. Everyone with insurance will pay a hidden tax of $900 to cover those without insurance. John Edwards made great point: Social Security and Medicare, great accomplishments, were mandatory. If you don't start out with universal health care you will be "nibbled to death". Obama: Understand it's a mandate on people, not on the government. Massachusetts currently has a mandate, they've exempted 20% of the people who they think can't pay it. In some cases people are paying a fine and don't have insurance so they're worse off than before. If you're going to force them to have insurance you need harsh penalties. This is a substantive difference. Clinton: Fundamentally disagree. Number one issue people talk to me about. Obama's plan has a mandate on parents because he recognizes if we don't have some kind of restriction, we won't get there. Obama: Not true that I'm interested in leaving out 15 million people.

Well, that was fun. Let's reask the last question.

Are you suggesting Obama isn't ready to be commander in chief?: Clinton: for more than 15 years I've represented the US in more than 80 countries, stood up for human rights. Have served on Senate Armed Forces committee. This week is good example: elections in Pakistan, leadership change in Cuba, Kosovo declaring independence, embassy set on fire in Serbia. We have opportunities with Cuba and Musharraf. I supported independence of Kosovo. I am prepared and ready on day 1 to be commander in chief. Obama: wouldn't be running if I didn't think I were prepared. Number one job will be to keep American people safe from harm, won't hesitate to act. We need strongest military on earth, which means proper training and rotations. Some people doing 2 and 3 and 4 tours in Iraq. Also means using military wisely; I showed good judgement opposing Iraq war, Clinton was wrong. That has big consequences, distracted us from Afghanistan. Rifle platoon that went to Afghanistan had people leaving for Iraq, didn't have enough ammunition. I didn't oppose Iraq for the sake of opposing it, did it because it would distract from Afghanistan, fan flames of anti-American sentiment. I was right. On Pakistan, mistake to put all our eggs in Musharraf's basket. I have shown judgment to lead.

Is Iraq better off because of the surge?: Tricky question. Clinton: The rationale for the surge was to create time for Iraqi government to make decisions, and that hasn't been done. Would begin withdrawing troops within 60 days, give message to Iraqis that they don't have a blank check. Obama: Indisputable that violence has been reduces in Iraq. Tactical victory imposed on huge strategic blunder. When debating with McCain, easier for person who opposed going to war to debate that decision than to argue about tactics. Still need to care for veterans better, but $12 billion per month for Iraq makes that hard.

Commercial break!

Y'all are for transparency in government, why put earmarks in budget?: He said Obama has refused to say what the earmarks were for. Obama: That's not true, we've disclosed earmarks. Believes strongly in transparency; passed bill with Tom Coburn (conservative Republican) to create "Google for government", a searchable database of federal spending. (this is a great idea!) There are worthy projects in the states and that's what my earmarks were for. Wants to make sure people are willing to defend those earmarks in the light of day. Moderator: will it be hard to tackle this with McCain, who's never asked for an earmark? (wow, I didn't know that) Clinton: No, because he supported wasteful tax cuts and expensive war with Iraq. Bush came into office with surplus, now it's gone. Will get us back to fiscal responsibility, Bush tax cuts on rich will expire.

Superdelegates: Will it be a problem for the party if it comes down to superdelegates? Clinton: These are the rules, but it will sort itself out, I'm not worried. Obama: Important that primaries and caucuses count, but will of voters will determine the nominee. Next nominee will have a lot to talk about re health care, etc.

What was the moment that tested you most?: Obama: Not a single moment, but my father left when I was two, made mistakes in youth, brought people together as a community organizer. Clinton: Obviously I've lived through some crises. People ask how I did it, but it's really nothing compared to what ordinary Americans have to go through. (veterans, etc.) Honored to be sharing stage with Obama, no matter what happens we'll be fine. Hope we can say the same for American people.

4 comments

I'm living in my own private Idaho
Mood: frustrated
Posted on 2008-02-21 15:20:00
Tags: politics links
Words: 51

Debate is tonight. Check out this sweet donut-shaped poll!

I get to play Ultimate tonight - hopefully the rain will hold off.

In West Wing, Matt Santos was based on Barack Obama! And not like "is similar to" but like "the writer called up an Obama aide to learn more about him".

4 comments

of video cards and wanting to kill computers
Mood: frustrated
Posted on 2006-03-01 09:42:00
Tags: linux computer
Words: 565

This entire thing is gonna be a computer rant, so skip if you're not interested.

So last night I was having trouble deciding what I wanted to do - try out Civ 4 (which I had installed the previous night on my computer), play WoW or work on this dental site project. Eventually I decided on Civ 4. So I go to run it and it crashes. Well, no huge surprise, so I checked the cedega forums and tried a few things, one of which worked. Yay! So I was going to start a new game and was picking out a leader when my computer froze, just like it did in WoW.

"Arrrrgh", I thought, and did a hard reset and started up the game again, and the same thing happened (like it sometimes does in WoW - usually on the third reset it'll stay). So I opened up my computer, blew out some dust and let it run with the case open to hopefully get more cooling or something (although I didn't think cooling was the problem, really, since when it does run without freezing it runs for hours on end).

Then I noticed the fan on the video card wasn't turning! Ack!

So after trying a few things to grease up the fan (djedi won't tell me what he put on it, but he went in the kitchen to do so (and we didn't have WD-40..)), nothing worked, and I ran out to Fry's to get a new video card.

On the way I was pretty darn happy. A new video card that will presumably fix my problem. Hooray!

Ended up getting an eVGA NVIDIA GeForce 6600 GT. When I got home, wildrice13 mentioned that was the same video card he got (after his previous one blew up) and it was good and all that. So that was nice.

Stick the new card in, boot up, things are looking OK (the fan is turning). Things aren't accelerated correctly, so I install new drivers. glxgears (the standard FPS test, should at least 5000 FPS) is running at around 500 FPS. I screw around with that for a while, can't get it any higher (direct rendering is on, glxgears is using the accelerated libGL.so). Give up and try WoW, which works OK for a while, then freezes. Aaaaaargh! Hard reset, and the computer freezes when I'm just in X, no WoW at all. Oh, crap, this never happened before. Disable AGP and it doesn't freeze, although glxgears is now dog slow (150 FPS) and it's noticeably slower to switch between virtual screens. Give up and go to bed in a foul mood.

This morning I turned on AGP again and it didn't freeze outside of WoW, although I tried WoW and it did freeze after a while. So I guess I'll screw around with it some more this evening or something. Because spending $180 on a video card and ending up in a worse state than when I started is unacceptable. If all else fails, I guess I'll go back to the old card (assuming whatever djedi did didn't hose it completely) and return this one. Ugh.

I forgot to mention: I'm highly suspicious of the motherboard AGP stuff. But I don't know a good way to test this, and I'm sure not going to buy a new motherboard without being pretty darn sure that's the problem.

7 comments

play, WoW frustration, and so on
Mood: frustrated
Music: Barenaked Ladies - "Light Up My Room"
Posted on 2005-08-10 09:58:00
Tags: charlottesweb worldofwarcraft tipping
Words: 377


So rehearsal went pretty well last night. It was sort of weird being there - I felt very much like I didn't exactly know what I was doing, which seems pretty accurate. The cast seems very nice, as does the stage manager. I'm less nervous about learning my lines (but I still need to work on it!) because, well, I'm going to be saying them a lot in rehearsal. Which seems obvious in retrospect...

It was fun, though. Hopefully I'll pick up this whole acting thing as we go. Rehearsal again tonight!


World of Warcraft is frustrating because I can't really get it to work. I'm running it on Linux through Cedega, and it kinda works but crashes every 5 minutes or so. There are like 6 things to try, and so I might just make a list and try all combinations of all of them, or something. Maybe I'll write a script to do each one of them to speed testing. Hmm. Anyway, I'm determined to keep trying until I get tired of trying. That's commitment for you!

A topic that's been making the blog rounds is the practice of tipping. This round of discussion started with the fact that some restaurant in New York is ending tipping and adding a 20% service charge to the bill. Here are some interesting statistics on tipping and why Mr. Pink doesn't tip. Myself, I think it sucks that it's legal to pay waiters less than minimum wage (as low as $1.59/hour in Kansas!). Given that they do, however, I feel guilty not tipping 15% unless the service was quite bad. If I could change the world, though, I'd make restaurants pay waiters minimum wage and make tipping optional. But I've never been in a job subject to tips - anyone who has care to jump in?

A neat trick I saw on the Google Blog is using the * operator to make Google fill in the blank. So, you can do things like Austin is the * capital of the world (live music, obviously!), Pittsburgh is the * capital of the world (steel, peroghi, or robotics), Rochester is the * capital of New York (murder(!) and technology), and Houston is the * capital of the world (energy or oil, depending who you ask). Pretty nifty!

7 comments

Tax day! with poll
Mood: frustrated
Music: Hilary Duff - "Come Clean"
Posted on 2005-04-15 14:22:00
Tags: taxcenter
Words: 77

Work isn't going well, so a quick update.

Yes, I like Hilary Duff. I can take the abuse!

So Wednesday was my last day volunteering at the tax center (djedi's going in today, brave soul...) It was pretty busy, but we weren't swamped. I'm glad we did it - I learned a lot and it was nice to be able to help people. Although I will be glad to have my Wednesday evenings back.

More frustrating work ahead...

2 comments

This backup was done by LJBackup.