Wednesday, April 14, 2010

A Crazy Error in Visual Studio 2008

Scenario:

- MS Windows 7
- MS Visual Studio 2008
- MS SQL Server 2005 Express

While trying to add a database from visual studio I got a crazy error about some assembly missing. This link helped me. I just needed to install these packages to integrate VS 2008 with SQL Express 2005:


  • Microsoft SQL Server System CLR Types
  • Microsoft SQL Server 2008 Management Objects
  • Microsoft SQL Server 2008 Native Client

Saturday, February 20, 2010

Hide and Show Hidden files in MAC OS

Open your terminal (Finder > Go > Utilities > Terminal.app)

To Show all the files, including hidden files type in:
defaults write com.apple.finder AppleShowAllFiles -bool true
and restart your Finder, (Apple > Force quit ... > Finder [relaunch])

and to hide then again:
defaults write com.apple.finder AppleShowAllFiles -bool false
relaunch finder and you're done.