-
Out of disk space, and you know that there is some log files on your hard drive... Check them out using find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' -f.
-
Even if I didn’t search the root cause of the problem, a clear workaround is simply to disable mac validation on viewstate. <pages enableViewStateMac="false" enableEventValidation="false" viewStateEncryptionMode="Never">...
-
A great Google Chrome Extension that can find duplicate bookmarks, and search for dead links... if you want to access it, check out the options in the extension itself, in the Chrome Extensions page... Bookmark Sentry https://chrome.google.com/extensions...
-
A little code snippet that is doing a Screen Capture, saving it to a Jpeg file, and launch the default program associated to jpg to view it. Size s = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Size; string filename = Path.GetTempFileName() + "...
-
In WCF, ServiceHost instantiate the class that your Service inherit, when you access the .svc file, which is not the interface, but the class itself. Check out the .svc file (open it with the XML or Text Editor) and validate that the inherited class is...
-
ProcessStartInfo psi = new ProcessStartInfo(@"c:\windows\system32\ping.exe"); psi.Arguments = "127.0.0.1"; psi.RedirectStandardOutput = true; psi.UseShellExecute = false; Process process = Process.Start(psi); process.WaitForExit();...
-
Everything you need to have a summary of unread item in your Google Reader account…! using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.IO; using System.Xml; namespace Chapleau.GoogleReader...
-
public abstract class Singleton<T> where T: class, new() { public static T Instance { get { return Nested.instance; } } ...
-
The inner exception is a much better source for this error message. The underlying message was The NetworkCredentials provided were unable to create a Kerberos credential, see inner execption for details. And from this exception the inner one’s detail...
-
http://www.microsoft.com/downloads/details.aspx?FamilyID=9cfb2d51-5ff4-4491-b0e5-b386f32c0992&displaylang=en It took me too long to find it (almost… 20 sec). I hope Google will index that first ;) -f.
-
What can I say more… Get-ReceiveConnector "The Connector Name" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "ms-Exch-SMTP-Accept-Any-Recipient" -f.
-
The solution from Dluk, posted for the Beta2 Version of Visual Studio 2010 on 11/10/2009 and worked for me with the **released** version was…: Got it! 1. Rename following registry key before install (e.g. add _ to the name): HKEY_LOCAL_MACHINE\SOFTWARE...
-
I used this since the beginning, thinking that this was a best practice, but without searching a lot. I found this article containing a brief history on this practice... I’ll let you decide if it’s a best practice to you. http://blogs.msdn.com/sourceanalysis...
-
10$ for Each of : JIRA : The best Issue Tracker Confluence : The best Wiki/Blog engine … and many others! http://www.atlassian.com/starter/ -f.
-
I searched a lot and, based on an article from SANDEEP APARAJIT , I was able to query for unread email from my Exchange mailbox inbox, in about 15 min. Thanks! ServicePointManager.ServerCertificateValidationCallback = delegate(Object obj, X509Certificate...