Saturday, September 19, 2015

Monday, August 3, 2015

Error opening file '{{path}}/difftar.gpg': Input/output error

While using Ubuntu's built-in backup tool, which uses Duplicity, I recently got the following error: Backup failed Error opening file '/media/yoshee/FreeAgent Drive/Backup/duplicity-full.20140514T064948Z.vol2132.difftar.gpg': Input/output error After some research, I discovered that the best way...

Wednesday, January 21, 2015

ASP.NET UserControl.Visible = true failing

Today I came across a situation where I was trying to set an ASP.NET UserControl to be Control.Visible = true, and try as I might, the call was failing. Here's what I did in the immediate window in Visual Studio. MyControl.Visible = true;MyControl.Visible; // output: false;I almost bashed my head against...

Wednesday, December 31, 2014

Takeaways: Tuesdays with Morrie

I recently read Tuesdays with Morrie by Mitch Albom. Apparently, it's a bit of a staple in the American education system, but I hadn't read it until now. My initial thoughts are thus: in one sense it was a bit of a rehash - most of the ideas Albom brought up are already familiar. However, he brought...

Wednesday, December 17, 2014

Friday, December 5, 2014

Monday, November 17, 2014

Postback not happening on ASP:LinkButton with Adblock Plus

I recently had a problem while working on an ASP.NET website where I had a page doing a postback on an ASP LinkButton, except in FireFox with AdBlock enabled, the postback just wasn't happening. Clicking on the button resulted in nothing. When I examined the markup on the page it looked like this: <a...