Create schema.tlb
a a: int256 = A;
b b: MsgAddressInt = B;
If you haven’t installed tonutils-reverse-proxy
, follow the instructions docs.ton.org/develop/dapps/tutorials/how-to-run-ton-site, for example:
curl -fsSL -o tonutils-reverse-proxy https://github.com/ton-utils/reverse-proxy/releases/latest/download/tonutils-reverse-proxy-linux-amd64
chmod +x tonutils-reverse-proxy
mv tonutils-reverse-proxy /usr/local/bin/
{ | |
"p0": "5555555555555555555555555555555555555555555555555555555555555555", | |
"p1": "3333333333333333333333333333333333333333333333333333333333333333", | |
"p2": "0000000000000000000000000000000000000000000000000000000000000000", | |
"p7": [ | |
{ | |
"currency": 239, | |
"value": "666666666666" | |
}, | |
{ |
The COIN Conversation Model is a structured approach to feedback and conflict resolution in the workplace. This method was developed to help managers and employees effectively discuss complex issues and reach consensus. The COIN model consists of four key stages:
The COIN model can be particularly useful when there's a need to discuss c
# Clone llama.cpp | |
git clone https://github.com/ggerganov/llama.cpp.git | |
cd llama.cpp | |
# Build it | |
LLAMA_METAL=1 make | |
# Download model | |
export MODEL=llama-2-13b-chat.ggmlv3.q4_0.bin | |
wget "https://huggingface.co/TheBloke/Llama-2-13B-chat-GGML/resolve/main/${MODEL}" |
#!/usr/bin/env bash | |
set -o errexit | |
SWIFT_VERSION=5.8.1 | |
UBUNTU_RELEASE=$(cat /etc/lsb-release | grep DISTRIB_RELEASE | cut -d'=' -f2) | |
UBUNTU_MAJOR=$(echo "${UBUNTU_RELEASE}" | cut -d'.' -f1) | |
UBUNTU_MINOR=04 | |
if [ -x "$(command -v swift)" ]; then |
#!/usr/bin/python | |
inst_classes = { | |
# A.2 Stack manipulation primitives | |
'stack_mapulation': [ | |
# A.2.1. Basic stack manipulation primitives | |
'NOP', | |
'XCHG', |
contract ShardedToken { | |
using SafeMath for uint256; | |
address owner = msg.sender; | |
uint256 private _totalSupply; | |
mapping(address => ShardedToken.Extension) private extensions; | |
function register() public { | |
extensions[msg.sender] = new Token.Extension(); | |
} |