Stack Overflow
-
When you first start off trying to solve a problem, the first solutions you come up with are very complex, and most people stop there. But if you keep going, and live with the problem and peel more layers of the onion off, you can often times arrive at some very elegant and simple solutions.
– Steve Jobs, 2006They who can give up essential liberty to obtain a little temporary safety, deserve neither liberty nor safety.
– Benjamin Franklin, 1775Homines, dum docent, discunt.
- Seneca Links
-
Recent Posts
Recent Comments
- Richard Ginzburg on Silencing the “battery charging completed” sound on a Samsung Galaxy SII
- SHIGGA on Silencing the “battery charging completed” sound on a Samsung Galaxy SII
- Richard Ginzburg on Target display mode iMac -> MacBook Pro 2011 with Thunderbolt
- dab on Target display mode iMac -> MacBook Pro 2011 with Thunderbolt
- Richard Ginzburg on Avoiding X.509 chain policy caching when using WCF with certificate security
Archives
Categories
Meta
Author Archives: Richard Ginzburg
“File Not Found” error in SharePoint 2007 site manager
When trying to edit a list from site manager in my SharePoint 2007 environment I got the following error: File Not Found. at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, … Continue reading
Some uploads are gone…
Thanks to the wonderful WordPress 3.5 upgrade some of my uploads and screenshots got deleted… Sorry…
Posted in Uncategorized
Leave a comment
Target display mode iMac -> MacBook Pro 2011 with Thunderbolt
This was not as easy as it seemed. A checklist to get target display mode working: Make sure both your iMac and your Macbook Pro are equipped with Thunderbolt. It only works Thunderbolt -> Thunderbolt or Display port -> Display port, … Continue reading
Fix for VPN connections on Mac OSX using NetExtender (pppd)
Seems like Apple broke pppd with one of the latest patches to OSX. My SonicWALL NetExtender stopped connecting unless run as root. After some detective work I fixed this by changing permissions as follows: sudo chmod a+s /usr/sbin/pppd sudo chmod … Continue reading
Posted in Mac, Work
Leave a comment
Aborting import operations in Commerce Server 2007
Today, my Biztalk ran wild and initiated a bunch of Commerce Server catalog import operations. While trying to find a way to abort all of those I came across the CatalogStatus table in the product catalog database. According to MSDN this … Continue reading
ObjectList is in an unknown state in sitemanager.aspx
Just a quick note, mostly for myself: the following error at sitemanager.aspx depends on view state not being active. The language setting is unfortunately Swedish, so I doubt this will help anyone… Webbplatshanteraren: ObjectList ObjectList1 är i ett okänt tillstånd. … Continue reading
My SharePoint 2007 site spontaneously got into read-only mode
Just a short post this time: if you experience symptoms like: no one able to edit anything on a MOSS site weird permission denied errors for admins buttons in the GUI disappearing then maybe your MOSS site got into read-only … Continue reading
Restoring Sharepoint content database from backup
A small script to quickly restore a Sharepoint 2007 content database from backup: USE master GO ALTER DATABASE SITE_WSS_Content SET SINGLE_USER WITH ROLLBACK AFTER 5 GO RESTORE DATABASE SITE_WSS_Content FROM DISK = 'path_to_backup\SITE_WSS_Content_backup_201201122000.bak' WITH REPLACE GO ALTER DATABASE SITE_WSS_Content SET … Continue reading
Get back your Sharepoint 2007 site manager context menu!
Today my customer’s site manager on their Sharepoint 2007 site went bananas. The context menu used to configure list items shrunk to four items from eight. Apparently this is a known bug in MOSS that’s supposedly been fixed in a … Continue reading
__dyld__dyld_start error when launching your iOS app
When starting an app I’m building for iOS I got a runtime error with code __dyld__dyld_start. After some frustration, some googling and some testing I found the solution – setting the -weak-lSystem linker flag in Xcode (Targets -> Your target … Continue reading