Daily Exercise

Let’s be honest, New Year’s resolutions rarely work. That’s why I don’t make them anymore. However, from time to time, when I find something worthwhile, I will still resolved to do it. I have mixed results. Therefore, leveraging a new technique I just learned, I have vowed that I will resolve to get some exercise, whether it’s kettlebell, push-ups, crunches, squats, or suburi, every day for the next 30 days.
Continue reading “Daily Exercise”

Fixing Evernote Internal Database Error on Mac OS X 10.7

Yesterday, Evernote started crashing within seconds of launching on my MacBook Air. Here’s how I fixed it.
First, I searched Google and Evernote’s forum for help. I found this article, which didn’t help. The simplest thing, I figured, was to trash the custom settings for Evernote (in class Mac OS style). These are usually stored in the under my home directory called Library, and then in a folder called Preferences.
My first stumbling block was the lack of my Library folder! A quick search revealed that the Library folder is still there, but in OS 10.7, is now hidden by default. Rather than fiddling with that, I dropped to a Terminal to do the dirty work.
First, I found all of the Evernote data in Preferences,with the following commands. These could be shortened to a single line if you just want the “quick fix,” but these are the steps I took.
cd ~/Library # Go into the Library folder
cd Preferences # Go the next step into Preferences
find . | grep -i evernote # Find all Evernote files.
find . | grep -i evernote | xargs rm # Delete all Evernote files.

No dice. Evernote still crashed. On to the “Application Support” folder.
cd ~/Library/Application\ Support # Go to the Application Support folder
ls??? # Look around, observe the presence of an "Evernote" folder.
rm -rf Evernote # nuke it.

After that, I re-launched Evernote and waited as it re-synced my notebooks with the online version, and has been working happily ever since.

I'm a GCFE! (GIAC Certified Forensic Examiner)

Today I passed the GCFE exam, making me GIAC Certified Forensic Examiner number 490. From the GIAC website,

The GCFE certification is for professionals working or interested in the information security, legal and law enforcement industries with a need to understand computer forensic analysis. The certification focuses on core skills required to collect and analyze data from Windows computer systems.
The GCFE certifies that candidates have the knowledge, skills, and ability to conduct typical incident investigations including e-Discovery, forensic analysis and reporting, evidence acquisition, browser forensics and tracing user and application activities on Windows systems.

Rock on! Oddly enough, as I was walking out the door to take the exam, we got a support request from a client who just located a stolen laptop and needs us to do some forensics on it to find out where it’s been. Great timing.