Tag family (4)

Houston Health Department on twitter
Mood: proud
Posted on 2009-05-02 18:34:00
Tags: family swineflu
Words: 25

I just helped my mom set up HoustonHealth on Twitter. Follow her for the latest on swine flu (excuse me, 2009 H1N1 influenza) in Houston!

0 comments

swine flu
Mood: calm
Posted on 2009-04-27 12:18:00
Tags: family swineflu
Words: 79

If you want to keep informed, there's CDCemergency on Twitter, as well as www.cdc.gov/swineflu and pandemicflu.gov (which is memorable but a bit alarmist at this point).

Being a slight hypochondriac, I plan to keep tabs on news but not too closely.

Wash your hands a lot, avoid touching your face with your hands, and stay home if you're sick.

Also, apparently my mom is liveblogging for a local news station tomorrow night, so that's pretty cool :-) - here's the link!

0 comments

weekend, credit card, stuff
Mood: irritated
Posted on 2005-06-20 22:39:00
Tags: asmc family del.icio.us credit card
Words: 385

So I had a fun weekend. I was going to write about it, but wonderjess did such a good job that I'm not going to bother. Thanks!

Work's going generally well, although I'm a little stressed because I'm trying to finish the feature I'm working on by the end of this week. I think I can do it, but it's gonna be close.

ASMC rehearsal went OK tonight - I missed rehearsal on Saturday so I'm way behind on the choreography (but I picked up some of it...) I'm a little disappointed that all the songs I'm in are pretty easy, and not horribly interesting. Oh well.

So I applied for a new credit card, and the stuff came in the mail on Wednesday. However, the credit card wasn't with it! I looked everywhere for it, and David said that sometimes they send them separately from the info, which makes sense, but I figured that that couldn't possibly be the case since it didn't mention that anywhere, and it said specifically to activate your card and stuff like that. Figuring it somehow didn't get sent or whatever, I called and reported it as "lost or stolen". And then, today comes the other letter with the credit card in the mail. Grrr!

Reasons that del.icio.us is cool:
- You can store your bookmarks there and access them from anywhere. This is pretty handy (although, be careful, they're all public so anyone can see!)
- Each bookmark has tags associated with it - as many as you want. On my bookmark file at home, I have different categories, but they're kinda hard to tell apart (is that bookmark "Linux" or "reference"?) Tags solve this problem in the simplest way possible - it's both! Then when you look for the tag "linux" it's there, and it's also there when you look for "reference".
- You can search for multiple tags at once in your bookmarks to narrow things down. For example, del.icio.us/gregstoll/pictures shows all my bookmarks with the tag "pictures", and del.icio.us/gregstoll/pictures+family shows all my bookmarks that have both the tag "pictures" and the tag "family".
- The name del.icio.us is cool!
- You can have useful tags like toread and topost that keep track of what's on your reading list.

Check out my bookmarks at del.icio.us/gregstoll. Next time - ways to look at other people's bookmarks!

3 comments

meaning to post for a while - here it comes!
Mood: ecstatic
Music: New Kids On The Block - "Keep On Smilin'"
Posted on 2005-06-17 12:54:00
Tags: linux asmc tivo family computer
Words: 1065

Hmm. I meant to post yesterday, but I guess I've been kinda busy. I'm leaving after work to meet my family at a condo in Conroe (hmm, that kinda rhymes!) for Father's Day, as wonderjess has been mentioning. It'll be nice to see everyone in a relaxed environment. And apparently there will be pie! Mmm.

So David left yesterday to go home for Father's Day as well, so I was on my own yesterday. Work went pretty well (finally fixed my stupid problem), but I didn't leave until 5:40, which is really cutting it close to eat dinner and get to ASMC rehearsal by 7. I ended up cutting dinner a little short and not finishing the spaghetti I had reheated so I could get there on time. Baaad move, as we didn't start until 7:15, and we didn't "really start" (i.e. start running a scene) until almost 7:50. This is frustrating. But I'm still gonna make an effort to get there on time. And I brought the new Penrose book The Road to Reality, which is >1100 pages and supposedly a heavy read (I'm still reading introductory math stuff, but even some of it is stuff I haven't looked at in a long time). It's a birthday present (thanks, Mom & Dad!) that I'm slowly working my way through...

Rehearsal went well - we did "my" scene, and I have a pretty good idea of how it's going to work. Although it takes a lot of energy - we're supposed to be generally disorganized, running around and poking each other and stuff. Fun, though :-)

After I got home, I did some packing, printed out directions (there are apparently no good ways to get to Conroe from here, everywhere has me going on like 6 or 7 different highways...), and worked on a computer problem that I eventually solved.


So one of David's and mine (um, how does the grammar work there?) longish-term projects is to get TV shows off of the TiVo (using TiVoToGo) and burn them onto a DVD. So my first approach was to get them off onto David's computer, turn them into MPEGs, then edit them on my computer and burn them to DVD. I tried this a while ago, and I couldn't find good programs to do it on Linux (and burning a video DVD on Linux is crazy complicated, with .xml configuration files to configure the menus and stuff like that. Stuff that I probably could eventually figure out, but I finally gave up). So our next approach was to download the trial software that TiVo recommends to do it, and see if we could get that working.

The software is Sonic MyDVD, and it worked well once I figured out that I had to downgrade TiVo Desktop to 2.0 (you can download it from here) - it crashes all the time with version 2.1. Anyway, so I did that and eventually created an .iso image, and things were looking good.

A few days ago, I tried transfering the .iso file to my computer using WinSCP. It was going well, until the program wasn't able to make the file bigger than 2GB - it would error, and then quit and crash if you tried to reconnect and resume. This is where I was until last night.

So David and I had a number of ideas why this was happening - maybe the WinSCP program didn't work with greater than 2GB files, maybe the protocol didn't support it, or maybe my filesystem didn't support it. I had done some research that suggested that the protocol did support it, the WinSCP program did work with it, and my filesystem (ext3) did support it. So I was a bit at a loss.

The night before I wrote a quick program in C to try to create a 3GB file and see what happened. Lo and behold, it would quit once the file was 2GB, saying "File size limit exceeded". So I figured it was one of two things - either my C program needed to use 64-bit aware function calls, or my filesystem didn't support it.

So, we come to last night. First I looked at the filesystem, and everything I could find seemed to say that ext3 with 4KB block sizes should support up to 2TB files. I even tried creating a new ext3 filesystem on a spare partition and creating a big file there - no dice. So then I thought maybe my particular C program was the problem, and found a bunch of random documentation on the web about how to make the calls correctly. But all the documentation was old, and everything suggested that these calls should have been being made correctly by default, and indeed I couldn't solve it that way.

So I was kinda frustrated at this point, and thinking maybe my particular ssh daemon (the server side of SCP) was broken in some odd way or something. Finally, inspiration struck - there's a shell command "ulimit" that sets various limits on stuff you can do - how many files you can have open, how many processes you can be running, and, at long last, the size of files you can create! I had apparently played around with this before and set the maximum size up to 2GB (back in early college, I think). And I think the word "limit" in the error message I got should have tipped me off a little bit. But anyway, I fixed that, and it transferred over just fine. Then I burned it onto DVD (after first creating a data DVD that had the .iso file on it - doh!), and lo and behold, it played in the DVD player. Hooray!

That was oddly cathartic.


Anyway, the upshot of the story is that I was up until 2:20 or so, which was kinda fun (especially since I got stuff working!), but now I'm a little on the tired side. Should be OK for the drive, though.

Public Service Announcement: It has come to my attention that some readers of this journal are not impressed by del.icio.us. So, to increase understanding and adoptance, I will be posting neat features of del.icio.us on my future posts. (starting with the next one) Look for them in a journal near you!

In a related story, LJ added support for tags, which is pretty cool, so I'm gonna start tagging my entries. And you should too! :-)

3 comments

This backup was done by LJBackup.