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 | |
| export BINUTILS_VERSION=${BINUTILS_VERSION:-"2.42"} | |
| export GCC_VERSION=${GCC_VERSION:-"14.1.0"} | |
| export TARGET="x86_64-sun-solaris2.11" | |
| export PREFIX="/opt/cross-solaris" | |
| export SYSROOT="$PREFIX/sysroot" | |
| export BUILD_DIR="$(pwd)/solaris-build" | |
| export N_JOBS=$(nproc) |
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
| const Parser = require('tree-sitter'); | |
| const YAML = require('tree-sitter-yaml'); | |
| const BASH = require('tree-sitter-bash'); | |
| const parser = new Parser(); | |
| parser.setLanguage(YAML); | |
| const bashParser = new Parser(); | |
| bashParser.setLanguage(BASH); |
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 | |
| TELE_BASE="https://telegra.ph" | |
| TELE_IMAGE_XPATH="//article/img/@src" | |
| TELE_FNAME_XPATH="//meta[@property='og:title']/@content" | |
| fname="" | |
| nas_status=true | |
| coroutine_pool_size=30 |
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
| package main | |
| import ( | |
| "context" | |
| "crypto/ecdsa" | |
| "fmt" | |
| "log" | |
| "math/big" | |
| "github.com/ethereum/go-ethereum/accounts/abi/bind" |