-
Стек - особая область памяти, в которой переменные не получают абсолютных адресов, чтобы отградиться от рекурсивных процедур
import * as React from 'react' | |
import { useState } from 'react' | |
import ReactDOM from 'react-dom' | |
import { StyledEngineProvider } from '@mui/material/styles' | |
import * as R from 'ramda' | |
import * as RA from 'ramda-adjunct' | |
import { useMIDI, useMIDIOutput } from '@react-midi/hooks' | |
// import { Pcset } from "@tonaljs/tonal" | |
// | |
// TODO: calculate Forte number |
(1) request: the client sends a request to the master node.
(2) pre-prepared: The master node receives the request from the client and needs to verify whether the signature of the client request message is correct. If correct, a pre-prepare message is broadcast to other replica nodes.
(3) prepared: the replica node receives the pre-prepare message from the master node and carries out verification. If correct, the replica node sends a prepare message to other nodes, including the primary.
Dex'es (dec exchanges): (https://fsr-develop.ru/katalog-decentralizovannyh-birzh-dex#rec285539316)
-
Uniswap
automated
Ключевые функции Uniswap – Swap и Pool.
Swap позволяет торговать ETH и ERC-20 (Ethereum Request for Comments) токенами.
original
data DoorState = Open | Closed
data Door : DoorState -> Type where
MkDoor : (doorId : Int) -> Door st
openDoor : (1 d : Door Closed) -> Door Open
<div class="hanzi" id="hanzi">{{Hanzi}}</div> | |
<br> | |
<div class="pinyin" id="pinyin">{{Pinyin}}</div> | |
<br> | |
{{English}} | |
<br> |
MIT License | |
Copyright (c) 2020 Serhii Khoma | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
I write commits with this linter https://github.com/srghma/linted-git-commit
Structure:
type: scope (e.g. page name) or noun -> scope (e.g. widget name) or noun -> verb (optional)
I use only 3 varians of "type":
feat
: Adds a new feature.
module GameLoopSpec where | |
import Protolude | |
import Cli.AbstractUtils | |
import Cli.GameLoop | |
import Cli.Monads | |
import Cli.Types | |
import Test.Hspec |