$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
| Windows Registry Editor Version 5.00 | |
| [-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
| [-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |
| 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> |
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)
| # 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 |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
AWX 17 comes shipped with Ansible version 2.9.2*, but if you want to upgrade the Ansible version it can be some hassle. Here is how to upgrade the Ansible version for AWX :)
Note: the upgrade has to happen in the docker containers!
Login and run bash commands on the web container:
$ docker exec -it awx_web bash