- 120mL Water
- 18g Coffee
- Tamping — firm push downwards — around 5kg of force is enough
- Medium to High Heat — closest to 3in in diameter
- Expresso should be 35-40mL
- Pour your espresso straight away
- 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
[lints.rust] | |
unsafe_code = "forbid" # Forbid unsafe code | |
[lints.clippy] | |
enum_glob_use = "deny" # Deny `use Enum::*` | |
unwrap_used = "deny" # Deny `.unwrap()` | |
pedantic = { level = "deny", priority = -1 } # Deny a bunch of stuff | |
nursery = { level = "deny", priority = -1 } # Deny another bunch of stuff | |
[profile.release] |
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
{ | |
"name": "Alpine", | |
"image": "mcr.microsoft.com/devcontainers/base:alpine", | |
"postCreateCommand": "sudo apk update && sudo apk add <PKGS>" | |
} |
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
let | |
rust-overlay = import (builtins.fetchTarball { | |
url = "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"; | |
# Optionally pin to specific commit: | |
# url = "https://github.com/oxalica/rust-overlay/archive/COMMIT_HASH.tar.gz"; | |
}); | |
in | |
with import <nixpkgs> { overlays = [ rust-overlay ]; }; | |
mkShell { | |
buildInputs = [ |
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
------------------------------------------------------------------------------- | |
-- DEPENDENCIES | |
-- neovim nodejs ripgrep fd fzf | |
-- LSPs: marksman rust-analyzer clangd taplo yaml-language-server | |
-- vscode-html-languageserver vscode-css-languageserver vscode-json-languageserver | |
-- pyright ruff lua-language-server typescript-language-server | |
-- bash-language-server tinymist | |
-- 33 Plugins | |
-- ~37ms startup |
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
// In general there are two properties for traits to satisfy | |
// in order them to be object-safe: | |
// | |
// 1. The return type isn’t Self. | |
// 2. There are no generic type parameters. | |
// Here's an example of a non-object-safe Trait | |
trait MyTrait { | |
fn f(&self) -> Self; |
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 std::pin::pin; | |
use std::marker::PhantomPinned; | |
#[derive(Debug)] | |
struct MyStruct { | |
field: u32, | |
_pin: PhantomPinned | |
} | |
impl MyStruct { |
fn halts(program: A) -> bool
fn b(program: A) {
if halts(A) {
loop {}
} else {
return ();
}
}
title: How to Nixify your codebase sub_title: Docker is a shitcoin author: Jose Storopoli, Alpen Labs, storopoli.io, stratabtc.org options: incremental_lists: true theme: override: code: alignment: left
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
#import "@preview/polylux:0.3.1": * | |
#import themes.simple: * | |
#set text(font: "Inria Sans") | |
#set align(horizon) | |
#show: simple-theme.with(footer: [Bitcoin Signatures]) | |
#title-slide[ | |
= Bitcoin Signatures | |
#v(2em) |
OlderNewer