| Pineapple |
[Mar. 29th, 2009|06:52 pm] |
|
Hey guys, I think pineapple may be my favorite fruit. Just wanted to let you know. |
|
|
| Un mensaje para mis amigos livejournal. |
[Feb. 19th, 2009|11:22 pm] |
|
So how did you like all of those spanish posts I made over the last few weeks? Pretty great, right? Oh, woops. Anyway, Spanish 1 finished yesterday (it was only a 5-week course). It went quite well. By my count, I now know around 600 Spanish words/phrases. I’m starting to struggle a little with motivation (right now I’m basically just doing it “for fun”, but as it gets harder and I have no immediate need to learn Spanish, it’s starting to feel a little burdensome). But It’s really good to interact with “real” (non-Microsoft) people! Even if it’s mostly along the lines of “Hi”, “You wear a yellow shirt.” “What is your mother’s name?”, “What time is it?”, “Are you married?” “What’s your address and telephone number?” “Fine. Be that way.” Anyway, I’ll be continuing with Spanish 2 on Monday. Yay! |
|
|
| Clase de español |
[Jan. 12th, 2009|10:36 pm] |
35 weeks since my last post (or so says LJ). Yikes! Fortunately not much has changed so I won't need to catch you up. But I signed up for a spanish class at a local community college and thought it would be fun to do some practicing in my journal (or maybe I'll find a better place). I know it will be terrible, but hopefully it will get better. I don't know tenses and will probably spell things wrong. Feel free to point out mistakes, especially if I use completely wrong words or whatever. =]
Hoy es mi primero día de la clase de español. Mi profesora es Señora Cárdenas. Ellá es de Columbia. Hay veinte estudiantes en la clase. Hay 13 mujers y 7 hombres (¡Fantástico!).
Hoy apprendamos el alfabeto, los númerals, los preguntas y los respustas (¿Como estàs? Bien, gracias. ¿Como te llama? Me llamo Miguel.), y los palabres de la descripciòn fisica (¿Es bajo?, No, yo soy de estatura mediana. Tambien, soy rico y famoso. Jaja.).
¡La clase es bien! Buenos noches. |
|
|
| Pangea Day! |
[May. 10th, 2008|09:23 am] |
| [ | Current Mood |
| | curious | ] |
| [ | Current Music |
| | Chumbawamba - Mary | ] | In case you haven't seen the memo, today is Pangea Day (4 hours. 24 films. A new way to see the world)! The live broadcast starts in 1 hour and 35 minutes.
It was inspired by a talk at the TED Conference (Ideas worth spreading), which has produced some pretty cool talks. If you've never taken a look, you should! |
|
|
| Ubuntu |
[Apr. 26th, 2008|10:32 pm] |
| [ | Current Mood |
| | pleased | ] |
| [ | Current Music |
| | Paul Oakenfold - Beautiful Goal | ] | I started using linux when I was... Well, actually I can't remember. Maybe 12? I don't know, but it was my first PC operating system (I had a C64 and an Amiga before getting a PC). At first I didn't know how to do anything, but I had a lot of time and I didn't mind getting my hands dirty... So I learned how to configure everything, how to get all my hardware working, install new kernels, download and compile software... I ran a web server, samba, smtp, even DNS... I learned C programming, sockets, and threads. I set up NAT so all the computers in the house could share our dial-up internet connection. I learned svgalib and wrote silly graphics demos... I learned sound programming and wrote a binaural beat generator... I learned tons and had a lot of fun.
Then at some point I was exposed to Windows, and at first it sucked, but I remember Windows 2000 came out and it was pretty solid and worked remarkably well... I remember noticing how a lot of stuff "Just worked." Whereas with linux I occasionally spent hours, sometimes days, solving a sound driver issue or getting X11 configured correctly for my graphics card, with Windows these things just worked. Installing software was as easy as running an installer. Instead of reading man pages and tweaking configuration files, I could just open up a configuration dialog. Instead of programming with vim and a shell, I could use Visual Studio and get intellisense, designer support, and rich integrated debugging. Where I had once valued the "journey" of getting things working and configured exactly to my taste, at some point I realized that it sure was nice when things just worked without extra effort. Sure I couldn't tweak as much, and I had less control... but I was willing to pay that price.
And so for the past 8 years or so, I haven't used linux as a desktop operating system. It was just too painful. I've consistently run a linux server with samba, apache, etc. But I've more-or-less become a "Windows Guy." Heck, I even work for Microsoft now.
But every once in a while, I get curious and install linux and see what's changed and if I can actually get it going without spending 3 days fussing with hardware support and getting X and gnome configured right. Every time so far I've hit a major deal-breaker issue almost immediately. I spend a day or two with it, but by default things are too broken and I don't want to figure out how to make everything work, so I say, "Well, that was fun. Now back to software that actually works."
But a couple days ago i installed Ubuntu 8.04 and I must say I'm quite pleasantly surprised. On my (admittedly old) laptop, everything "just worked" (even the wireless card which has been troublesome in the past). The install was smooth, better than Windows, even. And I've been quite pleasantly surprised by the user-friendliness. My favorite thing so far is that when I type a command that doesn't exist, it tells me what package I need to install and how to do that. :-) And a lot of things look and feel pretty Windows-like, so I feel pretty at home (for instance I just noticed that alt-space,n works to minimize the current application, just like in Windows).
I was also quite pleased to find a terminal server client installed by default that's just about as good as the Windows one (I was worried it'd be slow, but it's not). And I've installed a number of applications (which has been easy) and each one has worked just fine right out of the box. The only crash I've seen was in the firefox 3 beta, which is forgivable.
I do have some complaints. For instance I can't quite figure out how to access samba file shares... and I get a really poor frame rate when I try to watch youtube videos full-screen... but for the first time ever, I've actually been able to *use* linux without having to muck with kernel modules or google around for solutions to weird issues... All of my core scenarios just worked right out of the box...
So while I probably won't be switching all my PC's to linux any time soon (work ones especially. :-) ), I'm going to leave my laptop booting into linux and see how it goes. I'm hopeful.
--youngoat (written from ubuntu, using Drivel which doesn't seem to suck) |
|
|
| Coding Poll: Which version of the loop do you like best? |
[Feb. 23rd, 2008|11:32 pm] |
[Tried to do this as an actual poll, but apparently you can't put HTML in polls.]
Whenever I have to write this type of loop, it drives me crazy. I don't like any of the options. Which version do you prefer?
char *s;
// A
do
{
s = read_from_file();
if (s != NULL)
{
// whatever
}
}
while (s != NULL);
// B
s = read_from_file();
while (s != NULL)
{
// whatever
s = read_from_file();
}
// C
while ( (s = read_from_file()) != NULL )
{
// whatever
}
// D
for( s = read_from_file()
; s != NULL
; s = read_from_file() )
{
// whatever
}
// E
loop:
s = read_from_file();
if (s != NULL)
{
// whatever
goto loop;
}
I dislike all of them for different reasons. I think I usually use A because semantically do/while seems closest to what I want. C is really tempting. It's definitely the most compact, and the pieces are in the right order... but I really hate sticking an assignment in the loop conditional. E is actually kinda' clean, but good luck getting a "goto" past code review! ;-]
And yeah, I know I'm probably a freak for caring about this... |
|
|
| Seasons... |
[Dec. 2nd, 2007|12:56 am] |
|
Redmond 4 weeks ago...
Redmond today...
They're both pretty nice, though. :-) |
|
|
| Free Rice |
[Nov. 13th, 2007|12:07 am] |
stay pointed out this awesome website to me: http://www.freerice.com/
It's a vocab game where for every word you get right, they donate 10 grains of rice to help end world hunger. Seriously.
Pretty awesome (and fun!). |
|
|
| Pitch Correction |
[Aug. 28th, 2007|11:48 pm] |
|
A long time ago I saw the Simpson's episode, "New Kids on the Blecch" in which Bart joins a boy band and they use a magic "voice enhancer" to make their voices sound awesome... I thought that was pretty funny, but it turns out to be real! Auto-Tune is a proprietary audio processor created by Antares Audio Technologies for correcting pitch in vocal and instrumental performances. It is used to disguise inaccuracies and mistakes and, due to its increasing use in modern music, has allowed many artists to produce more precisely tuned recordings. There's a general article about Pitch Correction on wikipedia too... In case you're curious, there's also an article about Robotic Voice Effects... I keep thinking I should play around with sound synthesis... It seems like it'd be a fun application of my programming skills... just playing around with different effects and stuff... I even took a class on digital signal processing... I could apply some of that. I wonder if there's a nice framework around that I could use... Maybe CSound... |
|
|
| Ooops. |
[Aug. 17th, 2007|10:47 pm] |
|
Man... I wish software bugs were this funny... The legislation was intended to establish 18 as the minimum age to marry but also allow pregnant teenagers to marry with parental consent, bill sponsor Rep. Will Bond said. An extraneous "not" in the bill, however, allows anyone who is not pregnant to marry at any age if the parents allow it. |
|
|
| Sprained Ankle |
[Aug. 9th, 2007|08:55 pm] |
|
So this weekend I was in Iowa for a family reunion thing. It was nice, but I sprained my ankle playing basketball. Check it out: Neat, huh? And that's 5 days after the injury. :-) This is my second foot injury this summer (fortunately, I'm alternating between left and right, I guess)... It's kinda' depressing. Am I getting old? Or could it be related to the fact that I spend 10+ hours a day sitting in front of a computer? Hrm... I resolve to be more active (once I'm healed)... Injury != cool. |
|
|
| Sick / Bad Comics |
[Jul. 25th, 2007|12:00 am] |
| [ | Tags | | | sick comics | ] |
| [ | Current Mood |
| | okay | ] |
| [ | Current Music |
| | Nelly Furtado - Try | ] |
I woke up with a nasty sore throat, so I emailed-in sick and read Harry Potter all day. That was nice.
Then for fun / as an experiment / because I'm sick, I decided to try making some Bad Comics of my own... So, for your amusement (or not): My 3 Bad Comics.
That's all. |
|
|
| 200 Bad Comics |
[Jul. 21st, 2007|02:25 pm] |
|
These 200 Bad Comics are pretty hilarious. Here's my favorite:  By the way, I'm trying to post more videos and jokes these days so that later I can replace myself with a robot and nobody will notice. |
|
|
| Running! |
[Jul. 15th, 2007|11:33 pm] |
|
So after 2 months, my foot seems to be pretty healed. This means I finally got to use my Garmin ForeRunner! Turns out it rocks. Here's a map of my run. Well, pretty close anyway... It shows me running through some trees, when actually I was cleverly using the sidewalk, but close enough... I'm not going to use it to land airplanes... =] I took it pretty easy because I really really don't want to re-injure myself, but I ran almost 2 miles and didn't have any pain, so that rocks... I did have some weird twinges, but hopefully that's part of the healing process? =] We'll see... A month ago, I couldn't walk half a mile without pain, so this is definite improvement. I'll gradually try to ramp up and see how it goes. Probably no Marathons for me this year though. Anyway, Garmin rocks... If I bought stocks, I'd probably invest in them. I have two of their devices now (GPS in my car and now the ForeRunner) and they're both awesome devices. |
|
|
| Funny? Or not funny? |
[Jul. 8th, 2007|10:33 pm] |
There should be a Myers-Briggs style test for determining what type of sense of humor you have... It'd have questions like:
Poll #1017814 Funny?
Open to: All, detailed results viewable to: All, participants: 12This video is: |
|
|
| Space potatoes |
[Jul. 4th, 2007|01:15 am] |
This is hilarious to me... You'd think it'd stop being funny after a minute or two, but no... It continues to crack me up.
(Thanks again goes to fjarlq for pointing me at this gem...) |
|
|