Skip to content

Instantly share code, notes, and snippets.

@edymtt
edymtt / gist:6871774
Created October 7, 2013 17:34
Exception from Windows Azure Caching 2.1
Microsoft.ApplicationServer.Caching.DataCacheException was unhandled by user code
ErrorCode=17
HelpLink=http://go.microsoft.com/fwlink/?LinkId=164049
HResult=-2146233088
Message=ErrorCode<ERRCA0017>:SubStatus<ES0006>:There is a temporary failure. Please retry later. (One or more specified cache servers are unavailable, which could be caused by busy network or servers. For on-premises cache clusters, also verify the following conditions. Ensure that security permission has been granted for this client account, and check that the AppFabric Caching Service is allowed through the firewall on all cache hosts. Also the MaxBufferSize on the server must be greater than or equal to the serialized object size sent from the client.). Additional Information : The client was trying to communicate with the server: net.tcp://WebService:24233.
@edymtt
edymtt / Step Over.scpt
Last active December 10, 2015 09:29
My first Applesciprt
tell application "Xcode"
activate
end tell
tell application "System Events"
tell process "Xcode"
tell menu bar 1
tell menu bar item "Product"
tell menu "Product"
tell menu item "Debug"
@edymtt
edymtt / SQLite_dataadapter_dispose.vb
Created October 1, 2012 19:24
System.Data.SQLite -- How to correctly dispose a table adapter to avoid file locking after connection close
'In Table Adapter
Protected Overrides Sub Dispose(disposing As Boolean)
MyBase.Dispose(disposing)
Common.DisposeTableAdapter(disposing, _
_adapter, _
_commandCollection)
End Sub
Module Common