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
| for f in *.md; do pandoc -f markdown -t rst $f -o ${f%.md}.srt; done |
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 SFtpClient | |
| { | |
| private readonly IConfiguration _configuration; | |
| private readonly Sftp sftp; | |
| public Action<FileDownloadedEvent> OnFileDownloaded { get; set; } | |
| public FtpClient(IConfiguration _configuration) | |
| { |
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
| System.Runtime.InteropServices.SEHException was unhandled by user code | |
| Message=External component has thrown an exception. | |
| Source=clrzmq | |
| ErrorCode=-2147467259 | |
| StackTrace: | |
| at ZMQ.C.zmq_msg_size(IntPtr msg) | |
| at ZMQ.Socket.Recv(Byte[] message, Int32& size, SendRecvOpt[] flags) in c:\Users\Johnny\Documents\Projects\clrzmq\src\clrzmq\Socket.cs:line 481 | |
| at ZMQ.Socket.Recv(SendRecvOpt[] flags) in c:\Users\Johnny\Documents\Projects\clrzmq\src\clrzmq\Socket.cs:line 510 | |
| at ZMQ.Socket.Recv(Int32 timeout) in c:\Users\Johnny\Documents\Projects\clrzmq\src\clrzmq\Socket.cs:line 534 | |
| at ZMQ.Socket.Recv(Encoding encoding, Int32 timeout) in c:\Users\Johnny\Documents\Projects\clrzmq\src\clrzmq\Socket.cs:line 583 |
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
| [HasUniqueDomainSignatureWithGuidId] | |
| public class Song : EntityWithTypedId<Guid> | |
| { | |
| public Song() | |
| { | |
| } | |
| [DomainSignature] | |
| public virtual string SongTitle { get; set; } |
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
| @model IEnumerable<IceCreamYouScreamCorp.Domain.Product> | |
| @{ | |
| ViewBag.Title = "Index"; | |
| } | |
| <h2>Index</h2> | |
| <p> | |
| @Html.ActionLink("Create New", "Create") |
NewerOlder