Skip to content

Instantly share code, notes, and snippets.

View ChristianChiarulli's full-sized avatar
📡
Learning about Nostr

Christian Chiarulli ChristianChiarulli

📡
Learning about Nostr
View GitHub Profile
@ChristianChiarulli
ChristianChiarulli / nostr_public_key.txt
Last active October 25, 2023 03:20
nostr public key
Verifying that I control the following Nostr public key: npub1ygzj9skr9val9yqxkf67yf9jshtyhvvl0x76jp5er09nsc0p3j6qr260k2

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

-- general
lvim.colorscheme = "darkplus"
lvim.format_on_save = false
lvim.transparent_window = false
vim.opt.wrap = false
lvim.debug = false
-- vim.g.loaded_netrw = 1
-- vim.g.loaded_netrwPlugin = 1
fn main() {
let v: Vec<i32> = (1..).filter(|x| x % 2 == 0).take(5).collect();
vec_loop(v);
}
fn print_type_of<T>(_: &T) {
println!("{}", std::any::type_name::<T>())
}
fn vec_loop(mut v: Vec<i32>) -> Vec<i32> {
[package]
name = 'node-kitties-runtime'
version = '3.0.0-monthly-2021-10'
description = 'A fresh FRAME-based Substrate runtime, ready for hacking.'
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
homepage = 'https://substrate.dev'
edition = '2018'
license = 'Unlicense'
publish = false
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
#![cfg_attr(not(feature = "std"), no_std)]
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.
#![recursion_limit = "256"]
// Make the WASM binary available.
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
use pallet_grandpa::{
fg_primitives, AuthorityId as GrandpaId, AuthorityList as GrandpaAuthorityList,
#!/bin/sh
alias j='z'
alias f='zi'
alias g='lazygit'
alias zsh-update-plugins="find "$ZDOTDIR/plugins" -type d -exec test -e '{}/.git' ';' -print0 | xargs -I {} -0 git -C {} pull -q"
alias nvimrc='nvim ~/.config/nvim/'
# alias lvim='nvim -u ~/.local/share/lunarvim/lvim/init.lua --cmd "set runtimepath+=~/.local/share/lunarvim/lvim"'
# get fastest mirrors
-- general
lvim.colorscheme = "onedarker"
lvim.format_on_save = false
lvim.transparent_window = false
vim.opt.wrap = false
lvim.debug = false
-- vim.g.loaded_netrw = 1
-- vim.g.loaded_netrwPlugin = 1
-- general
lvim.colorscheme = "onedarker"
lvim.format_on_save = false
lvim.transparent_window = false
vim.opt.wrap = false
lvim.debug = false
-- vim.g.loaded_netrw = 1
-- vim.g.loaded_netrwPlugin = 1
-- general
lvim.colorscheme = "onedarker"
lvim.format_on_save = false
lvim.transparent_window = false
vim.opt.wrap = false
lvim.debug = false
-- vim.g.loaded_netrw = 1
-- vim.g.loaded_netrwPlugin = 1