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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <title>MXE (M cross environment)</title> | |
| <link rel="stylesheet" href="assets/common.css"> |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| usage() { | |
| cat <<'EOF' | |
| Usage: gh-discussions-save.sh OWNER/REPO | |
| Fetch all discussions, top-level comments, and threaded replies with GitHub | |
| CLI and save one Markdown file per discussion in the current directory. |
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
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| import argparse | |
| import json | |
| import re | |
| import struct | |
| import sys | |
| from collections import Counter |
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 vaes-avx2-test | |
| go 1.25.1 |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am starius on github. | |
| * I am boris_golang (https://keybase.io/boris_golang) on keybase. | |
| * I have a public key ASAOjSL8NV2cyhI9OOhxhAPnlOViPxzwhlypk4NW2EN3iQo | |
| To claim this, I am signing this object: |
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
| local x = 0 | |
| for i = 1, 10000000000 do | |
| local y = getNumber() -- C function | |
| x = x + y | |
| end | |
| print(x) |
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 | |
| // See https://golang.org/src/crypto/tls/generate_cert.go | |
| // See https://gist.github.com/denji/12b3a568f092ab951456 | |
| import ( | |
| "bytes" | |
| "crypto/ed25519" | |
| "crypto/rand" | |
| "crypto/tls" |
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 ( | |
| "crypto/aes" | |
| "crypto/rand" | |
| "crypto/sha256" | |
| "fmt" | |
| "hash" | |
| "github.com/dchest/wots" |
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
| """ | |
| Order copier | |
| """ | |
| # API key основного аккаунта | |
| API_KEY = '69eQkHl0R0vgPod21c3XjQsT' | |
| API_SECRET = 'EFAHxtJiOVYHSWa_HPtLAW50GpV31G_2GVSdm1gBZKH85Ltv' | |
| # Список API ключей куда нужно транслировать ордера | |
| API_KYES = ['hLlWHxkqxs42g-WeEt1_wC20'] |
NewerOlder