This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'@adent Přesun mailu, na který je odpovídáno, do složky vyřízeno. Testováno v Outlooku 2007. | |
'Kód v ThisOutlookSession, dirty and cowboy coding compatible VB | |
Private Sub Application_ItemSend(ByVal item As Object, Cancel As Boolean) | |
Dim replyMail As mailItem | |
Set myDoneFolder = Application.Session.Folders("Personal Folders").Folders("Vyrizeno") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module CodeRetreat | |
open Xunit | |
type Cell = | |
| DeadCell of int | |
| LiveCell of int | |
let hasChanceToLife (cell:Cell) = | |
match cell with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ControllersInstaller : IWindsorInstaller { | |
public void Install(IWindsorContainer container, IConfigurationStore store) { | |
container.Register( | |
Classes. | |
FromThisAssembly(). | |
BasedOn<IController>(). | |
LifestyleTransient(), | |
Component. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Southworks.WindowsAzure | |
{ | |
using System; | |
using System.Web.Caching; | |
/// <summary> | |
/// Represents a cache dependency that uses Windows Azure queues to detect if an item in cache has changed | |
/// </summary> | |
/// <remarks>Sending a message a certain queue (specified using the <see cref="CloudQueueCacheDependencyMonitor" />) will invalidate the cache item </remarks> | |
/// <example> |
NewerOlder