- storopoli.com
- https://orcid.org/0000-0002-0559-5176
- @jose_storopoli
- https://matrix.to/#/@jose:storopoli.com
- https://simplex.chat/contact#/?v=2-5&smp=smp%3A%2F%2FUkMFNAXLXeAAe0beCa4w6X_zp18PwxSaSjY17BKUGXQ%3D%40smp12.simplex.im%2FUXrwU_eqdgeHQ6HYehFs0s8VRHOr3k47%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEApVAYxmE0bpIIiPftNjehy4qOoa14ubyEGzbRX_BlO0w%253D%26srv%3Die42b5weq7zdkghocs3mgxdjeuycheeqqmksntj57rmejagmg4eor5yd.onion
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
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific environment | |
if ! [[ $PATH =~ $HOME/.local/bin:$HOME/bin: ]]; then | |
PATH=$HOME/.local/bin:$HOME/bin:$PATH |
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
use bip39::{Language, Mnemonic}; | |
use bitcoin::{bip32::Xpriv, Network}; | |
const MNEMONIC: &str = "bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon"; | |
fn main() { | |
let mnemonic = Mnemonic::parse_in(Language::English, MNEMONIC).unwrap(); | |
println!("{}", mnemonic.to_string()); | |
let seed = mnemonic.to_seed(""); | |
let xpriv = Xpriv::new_master(Network::Regtest, &seed).unwrap(); | |
println!("{}", xpriv.to_string()); |
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
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run `zed: open default settings` from the | |
// command palette (cmd-shift-p / ctrl-shift-p) | |
{ | |
"ui_font_size": 16, |
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
theme = "gruvbox_dark_hard_transparent" | |
[editor] | |
line-number = "relative" | |
mouse = true | |
scrolloff = 8 | |
cursorline = true | |
rulers = [ 80 ] | |
true-color = true | |
color-modes = true |
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
CONDUWUIT_REGISTRATION_TOKEN="foo" |
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
#################################################################################################### | |
## Build | |
#################################################################################################### | |
# rust:alpine3.21 | |
FROM rust@sha256:661d708cc863ce32007cf46807a72062a80d2944a6fae9e0d83742d2e04d5375 AS build | |
RUN apk update && \ | |
apk upgrade --no-cache && \ | |
apk add --no-cache lld mold musl musl-dev libc-dev cmake clang clang-dev openssl file \ | |
libressl-dev git make build-base bash curl wget zip gnupg coreutils gcc g++ zstd binutils ca-certificates upx |
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
shell-integration = fish | |
theme = GruvboxDarkHard | |
font-feature = -calt | |
font-feature = -liga | |
font-feature = -dlig | |
window-width = 3000 | |
window-height = 2100 | |
background-opacity = 0.9 | |
background-blur-radius = 20 | |
quit-after-last-window-closed = true |
OlderNewer