- CQRS Journey: Free ebook from Microsoft (Print book available for purchase)
- Functional and Reactive Domain Modeling: A high level overview of how to build up domain models using free monads and interpreters.
- Reactive Microservices Architecture: Free booklet from Lagom and O'Reilly
- Reactive Messaging Patterns with the Actor Model: Applications and Integration in Scala and Akka
- Domain-Driven Design: Tackling Complexity in the Heart of Software
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
| 0x7d7a467b44d73f8a211d805d7d08b94c6e7e6277 | |
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
| https://thegraph.com/explorer/profile/0x475a34f498b0d63a90f9a930913c9a66d79198c9?view=Indexing&chain=arbitrum-one |
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
| accounts { | |
| AUTH { | |
| jetstream { } | |
| users: [ | |
| { user: usr, password: pwd } | |
| ] | |
| } | |
| APP {} | |
| SYS {} | |
| } |
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
| import asyncio | |
| import json | |
| import signal | |
| from sys import stdout | |
| import time | |
| import jwt | |
| import nkeys | |
| from dotenv import load_dotenv | |
| from loguru import logger | |
| from shared.signing import verify_message, verify_timestamp |
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
| # nano /lib/systemd/system/subtensorAliceBob.service | |
| # # add content: | |
| # [Unit] | |
| # Description=Subtensor Alice and Bob | |
| # [Service] | |
| # ExecStart=/root/subtensor/scripts/localnet.sh | |
| # [Install] |
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
| #!/bin/bash | |
| : "${CHAIN:=local}" | |
| : "${BUILD_BINARY:=0}" | |
| : "${SPEC_PATH:=specs/}" | |
| : "${FEATURES:=pow-faucet}" | |
| FULL_PATH="$SPEC_PATH$CHAIN.json" | |
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 Application2 | |
| open WebSharper | |
| open WebSharper.JavaScript | |
| open WebSharper.UI.Next | |
| open WebSharper.UI.Next.Client | |
| open WebSharper.UI.Next.Html | |
| open WebSharper.JQuery | |
| open WebSharper.Amplify |
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 Amplify | |
| open WebSharper | |
| open WebSharper.JavaScript | |
| open WebSharper.InterfaceGenerator | |
| open WebSharper.JQuery | |
| module Definition = | |
| let DefineRequestType = |
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 Actors = | |
| type MailBox = Eventsourced<GameCommand, obj, State> | |
| let Logger = Serilog.Log.Logger | |
| let update state (evnt : obj) = state | |
| type Apply = MailBox -> State -> obj -> State | |
| let apply : Apply = fun m s e -> s //(mailbox : MailBox) (state : State) (evnt : obj) = state | |
NewerOlder