https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
# Usage: copy-to-docker-volume SRC_PATH DEST_VOLUME_NAME [DEST_PATH] | |
copy-to-docker-volume() { | |
SRC_PATH=$1 | |
DEST_VOLUME_NAME=$2 | |
DEST_PATH="${3:-}" | |
# create smallest Docker image possible | |
echo -e 'FROM scratch\nLABEL empty=""' | docker build -t empty - | |
# create temporary container to be able to mount volume | |
CONTAINER_ID=$(docker container create -v my-volume:/data empty cmd) | |
# copy files to volume |
Some of the books I'll be recommending are based on .NET. Do not be discouraged. We shouldn't strive to stick to a specific technology stack. Your ambitions and goals will evolve over time and that might lead you a completely new space. Moreover, there are lessons to be learned from an environment that's different from what you're used to.
"C# in depth" by Jon Skeet (Book)
"F# for C# developers" by Tao Liu (Book)
F# to C# interop tips by Scott Wlaschin (Gist)
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
using System; | |
/// <summary> | |
/// The exception is thrown when the requested aggregate is not found by the <see cref="IEventStore"/> implementation. | |
/// </summary> | |
public class AggregateNotFoundException : Exception | |
{ | |
/// <summary> | |
/// Initializes a new instance of the <see cref="AggregateNotFoundException"/> class. | |
/// </summary> |
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |