This solution is the only one worked for me… restoring windows to an earlier point did not work for me.…
How to configure IIS 7 to allow downloading .exe files
If you’re finding that you’re getting 404 errors when trying to download executable files, add the following to your web.config…
Chome / Shockwave Flash Crashing
Last 2 months a had an constant issue where Sockwave flash kept crashing after a while. I had to restart…
Show hidden folders in Finder
Open terminal and write these 2 commands [sourcecode] defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder [/sourcecode]
MySQL backup Script
The following script returns a SQL query with all your database data structure and data. [sourcecode lang=sql] if (!function_exists(‘mysql_dump’)) {…
Leica Lenses (English)
Leica Lenses (English) from leica camera on Vimeo.
Uninstall XCode / Xcode 4 Preview
There is no application in Mac OSX to uninstall Programs. The only thing you can do is drag an application…
Coredata Resource Links
Apple resource Apple’s Core Data Programming Guide Efficiently Importing Data Apple guideline to import data Cocoa is my Girlfriend…
iPhone Wifi MacAddress
[sourcecode lang=”c”] #if ! defined(IFT_ETHER) #define IFT_ETHER 0x6/* Ethernet CSMACD */ #endif – (IBAction)testAction:(id)sender { #pragma unused(sender) BOOL success; struct…
Linq Update FK – Operation is not valid due to the current state of the object
To update the entity in question you need to get a new entity for it from the context rather than…