Fun Fact: If you're using an externally referenced Javascript file in your Ionic browser, it will 404 out due to the default content policy on Android phones. This happened to me recently while I was working on an app that uses the Google Maps API to geocode locations.
Running the app in your browser...
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...