Saturday, June 21, 2014
Did you ever see Thomas Pynchon and Louis Mackey in the same place together?
I've always had this crazy hunch (justified by absolutely nothing that could be counted as rational evidence) that Thomas Pynchon, his life, works and career had been created by my old Professor Louis Mackey. As I said, I have zero evidence to support this hunch, but had to write it down in case this Universe somehow made it come true. I suppose Pynchon could be upset that his life and his works could be attributed to someone else so irresponsibly, except that he would probably enjoy the mystery this would add to his already mysterious persona. I assume Dr. Mackey would have taken this as a compliment.
Thursday, January 06, 2011
Madness ...
I'm in idle (python 2.7) and see the following:
>>> p = re.compile(r"^(\d{2}/\d{2}/\d{2})")
>>> p = re.compile(r"^(\d[2}/\d{2}/\d{4})")
Traceback (most recent call last):
File "", line 1, in
p = re.compile(r"^(\d[2}/\d{2}/\d{4})")
File "/usr/lib/python2.7/re.py", line 190, in compile
return _compile(pattern, flags)
File "/usr/lib/python2.7/re.py", line 245, in _compile
raise error, v # invalid expression
error: unexpected end of regular expression
The first regular expression compiles, the second one does not. The only difference I can see is the "4". What is going on here?
Ooops. Just before I was about to post this, I found the problem. Do you see it? It's not easy to see.
>>> p = re.compile(r"^(\d{2}/\d{2}/\d{2})")
>>> p = re.compile(r"^(\d[2}/\d{2}/\d{4})")
Traceback (most recent call last):
File "
p = re.compile(r"^(\d[2}/\d{2}/\d{4})")
File "/usr/lib/python2.7/re.py", line 190, in compile
return _compile(pattern, flags)
File "/usr/lib/python2.7/re.py", line 245, in _compile
raise error, v # invalid expression
error: unexpected end of regular expression
The first regular expression compiles, the second one does not. The only difference I can see is the "4". What is going on here?
Ooops. Just before I was about to post this, I found the problem. Do you see it? It's not easy to see.
Monday, April 19, 2010
Fixing the Windows 7 Read-Only Folder Blues | IT Expert Voice
Saw the same problem on Windows 2003 trying to run bash scripts over a remote desktop connection: Fixing the Windows 7 Read-Only Folder Blues | IT Expert Voice. Always wondered what was going on ...
Thursday, April 01, 2010
Sunday, March 28, 2010
Wednesday, March 24, 2010
Warned About Abuse, Vatican Failed to Defrock Priest
This is really bad:
Warned About Abuse, Vatican Failed to Defrock Priest: "Top Vatican officials, including the future Pope Benedict XVI, did not defrock an American priest who molested as many as 200 deaf boys, even after warnings from several bishops, church files show.
"
Warned About Abuse, Vatican Failed to Defrock Priest: "Top Vatican officials, including the future Pope Benedict XVI, did not defrock an American priest who molested as many as 200 deaf boys, even after warnings from several bishops, church files show.
Sunday, March 14, 2010
Sunday, January 31, 2010
Saturday, January 23, 2010
I was going to buy a nook ....
Not any longer.
Update: This was almost certainly an overreaction on my part (although the story is pretty horrific). But what I do take as a pretty safe conclusion from all this: B&N's customer service is putrid. When compared to Amazon.com's service (with whom I've always had such a fantastic experience): why take any chances? Chances are I'm probably going to buy a Kindle (although a Sony reader remains a possibility).
Update: This was almost certainly an overreaction on my part (although the story is pretty horrific). But what I do take as a pretty safe conclusion from all this: B&N's customer service is putrid. When compared to Amazon.com's service (with whom I've always had such a fantastic experience): why take any chances? Chances are I'm probably going to buy a Kindle (although a Sony reader remains a possibility).
Monday, December 28, 2009
Round Rock Library
I just got my library card for Round Rock Public Library; I'm amazed at how many resources are available through this library. I had really thought to join to get access to inter-library loan programs with UT, but there's a lot of really cool stuff I can get access to from the RRPL itself. They have lot of ebooks I can access for some of the Platonic studies I want to read. This is one of the best things I've done in some time ....
Thursday, December 24, 2009
First Christmas ...
Closed academic communities ...
I've been reading a lot of Kierkegaard again lately. Right now, I'm particularly interested in the relationship between Hegel, Kierkegaard and how Kierkegaard understands Hegel. I went searching Google to see what was online, and it quickly became clear that very few communities are as closed as academic communities. I kind of knew this already from my grad school days, but was surprised things haven't changed. If any knowledge and/or scholarly contribution desires to be free, it's philosophical contributions. But I could quickly become poor if I started buying all the articles I wanted to read on Kierkegaard. Typically, these articles go for $30 or $40 a pop. I could join a good library and get free access to many of these articles, but that would generally require being physically present in the library itself (ie Perry Castenada Library). In the academic communities themselves, most of the "free" philosophy online is quackery (and it's certainly true, most of the "free" stuff online is abysmally bad) and so to offer something free online probably smells of desparation.
Tuesday, December 22, 2009
tracker needs some serious love ...
I remember reading a lot of posts/emails etc from the author of tracker awhile back that was badmouthing beagle and extolling the virtues of tracker. I've been using tracker on one of my fedora 12 boxes for a week now, and all it does is chew cpu and ignore my preference settings (and crash all day long). Just now, I had the setting which says to pause indexing when the computer is busy, and trackerd was using 99% of one of my cores. I decided to strace this to see what it was doing:
strace -p -o /tmp/trackerd_strace.out
I let it run for about 30 seconds, and then go to /tmp to try and tail -f the file a bit. However, when I get there, there are 81,000 files from this afternoon matching the pattern tracker-evolution-module-* all from this afternoon. Yikes. I kill trackerd and vim the trackerd_strace.out file, and what does it contain? It contains 2,500,000 lines of this:
poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=6, events=POLLIN}, {fd=9, events=POLLIN}, {fd=7, events=POLLIN}], 5, 0) = 0 (Timeout)
I used to be a big beagle fan, but it looks like it's basically unmaintained right now, so I switched over to tracker. Since I've done that I get about 20 - 30 trackerd crashes a day (per abrt) and this constant cpu usage. I think I'm going to have disable tracker and go back to beagle, or start using google desktop again.
strace -p
I let it run for about 30 seconds, and then go to /tmp to try and tail -f the file a bit. However, when I get there, there are 81,000 files from this afternoon matching the pattern tracker-evolution-module-* all from this afternoon. Yikes. I kill trackerd and vim the trackerd_strace.out file, and what does it contain? It contains 2,500,000 lines of this:
poll([{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, {fd=6, events=POLLIN}, {fd=9, events=POLLIN}, {fd=7, events=POLLIN}], 5, 0) = 0 (Timeout)
I used to be a big beagle fan, but it looks like it's basically unmaintained right now, so I switched over to tracker. Since I've done that I get about 20 - 30 trackerd crashes a day (per abrt) and this constant cpu usage. I think I'm going to have disable tracker and go back to beagle, or start using google desktop again.
Saturday, December 05, 2009
Don't go to Italy ....
OK, I'd read several accounts of the Knox case, and while I obviously don't know what really happened, I'd also read a book on a very famous crime in Italy (don't have the link now), written by an American who lived there for several years that said there's a 0% chance that Amanda Knox was guilty, but, because of the absurd way the Italian legal system works, a huge chance she'd be convicted anyway. And she was. I'm never going to Italy.
Need to dig up the aforementioned book (it was about the famous serial killer in Italy); it describes in great detail how many innocent people were stalked by Italian prosecutors not with the goal of reaching the truth, but to further their own careers. Certainly that goes on here, but usually those prosecutions have to at least wear the guise of attempting to reach the truth, so that it's hard to tell the difference. From the description in the book I read, it's not clear that "truth" is even a value that many in the Italian criminal system even recognize.
Need to dig up the aforementioned book (it was about the famous serial killer in Italy); it describes in great detail how many innocent people were stalked by Italian prosecutors not with the goal of reaching the truth, but to further their own careers. Certainly that goes on here, but usually those prosecutions have to at least wear the guise of attempting to reach the truth, so that it's hard to tell the difference. From the description in the book I read, it's not clear that "truth" is even a value that many in the Italian criminal system even recognize.
Monday, April 27, 2009
Huh?
My auto/home insurance company (who I am very happy with, btw) gave me a discount for moving to a new neighborhood recently. They do not have discounts for giving birth. I'm sure there's a specific reason for this, but it's surprising to me: if there was anything that would really change my behavior on the roads, this is it.
Tuesday, April 21, 2009
Monday, March 30, 2009
Little things ...
I was immensely pleased today by something very minor. I was working pretty hard at work today, and I think I managed to wrap up a couple of really hard pmrs. I wanted "something" but wasn't sure what it was, and went to the beverage fridge, even though I was pretty tired of Diet Coke. Then, suddenly, realized we'd just bought Diet Barq's that that was what I wanted! Glorious!
Subscribe to:
Posts (Atom)
