Kleopatra
- Import your (previously exported) private key
gopass init
- edit config file
~/.config/gopass
and change withyour-path
(gopass config path {your-path}
is case-insensitive) - Note:
your-path
must be the passwords git repository - "Voila"
What I expect from some system managing storage of streams of events, intended to be used in an event-sourced system.
- ability to create streams
- ability to delete streams
- ability to use optimistic locking on stream level
- ability to write a batch of events in one stream atomically and durably
- ability to read events from one stream
- ability to read all events in the store ( the so called "$all" stream)
[|42; 42; 42|]
[42; 42; 42]
seq [42; 42; 42]
Some 42
Ok 42
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
using System; | |
using System.Threading; | |
using System.Collections.Concurrent; | |
using System.Runtime.CompilerServices; | |
namespace CSharpStuff | |
{ | |
// Alternative to referencing Microsoft.VisualStudio.Threading | |
public class SingleThreadedSynchronizationContext : SynchronizationContext |
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
open System.Threading.Tasks | |
open FSharp.Control.Tasks.V2.ContextInsensitive | |
let aTask = task { | |
do! Task.Delay(1000) | |
printfn "I'm in aTask" | |
} | |
let anAsync = async { |
- Layer: Files generated from running some command, also called intermediate images. Reused by multiple images to reduce image and size.
- Image: A docker container image is created using a dockerfile (ie. build). Every line in a dockerfile will create a layer.
- Container: an instance of an (read-only) image.
- Docker Client: the CLI tool that allows the user to interact with the Docker Server.
- Docker Server: aka Docker Daemon, the background service running on the host that manages the building, running and distributing Docker containers.
NewerOlder