A barebone implementation of hierarchical object structures using EdgeDB.
Very rudimentary and only provisionally tested. Has no indexes yet, doesn't use links, and probably other inefficiencies.
Use at your own peril.
> initializing model parallel with size 8 | |
> initializing ddp with size 1 | |
> initializing pipeline with size 1 | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
{"seed": 187073, "temp": 0.7, "top_p": 0.0, "top_k": 40, "repetition_penalty": 1.1764705882352942, "max_seq_len": 2048, "max_gen_len": 2048} | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
Loading | |
> initializing model parallel with size 8 |
use std::{collections::HashSet, io}; | |
use argh::FromArgs; | |
use checker::{Project, TypeDefinitionModulePath}; | |
use std::io::{BufRead, BufReader, Write}; | |
use std::process::{Command, Stdio}; | |
use crate::{ | |
error_handling::print_error_warning_info_handler, file_system_resolver, | |
utilities::read_string_from_cli, |
/* | |
Mastodon v4.3 Obsidian Light Theme | |
author: @[email protected] | |
last update: 2024-12-10 11:05 | |
*/ | |
:root { | |
--primary-color: #6364ff; /* $blurple-500 Brand Purple */ | |
--primary-color-hover: #563acc; /* $blurple-600 Iris */ | |
--icon-color: #9c9cc9; |
On October 11th, 2022, @ajtowns publicly disclosed a zero-day consensus fault in btcd in a github issue. The issue was posted on a public repo viewable by anyone.
According to gharchive.org logs, the github issue remained up for at least 10 hours before being deleted. The original github issue resided at https://github.com/Roasbeef/btcd/issues/35
The issue and comment can be found and reconstructed from the following JSON dumps:
$ grep -P "^[ABCDEFabcdefOoIi]{6,6}$" /usr/share/dict/words | tr 'OoIi' '0011' | tr '[:lower:]' '[:upper:]' | awk '{print "#" $0}' | |
#ACAD1A | |
#B0BB1E | |
#DEBB1E | |
#AB1DED | |
#ACAC1A | |
#ACCEDE | |
#AC1D1C | |
#BAB1ED | |
#BA0BAB |
# Check if a tx is an atomic name swap (Bob atomic swap, Shakedex sale, FxWallet marketplace sale) | |
# Bob swap (HIP-4) hints: | |
# - in0.witness[0] ends with 84 | |
# - last output value = price | |
# - out0 = FINALIZE | |
# Shakedex (HIP-1) transfer hints: | |
# - in0.witness[0] ends with 84 | |
# - last output value = price |
NOTE: These example commands are for windows shell only and you must be careful to copy/paste them as written, ESPECIALLY
the punctuation, and ESPECIALLY the weird double-double quotes around strings like ""default""
Open Bob Wallet, log in, go to settings > wallet > API key and click "view API key". Copy the value, it will look something like this:
21060251f5c7a63fa9b364d756e2f22402278e30
Next, open command prompt (can be found by searching in the windows menu)
Execute this command with your own API key you copied from Bob:
/* | |
Made by Elly Loel - https://ellyloel.com/ | |
With inspiration from: | |
- Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/ | |
- Andy Bell - https://piccalil.li/blog/a-modern-css-reset/ | |
- Adam Argyle - https://unpkg.com/[email protected]/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE | |
Notes: | |
- `:where()` is used to lower specificity for easy overriding. | |
*/ |