Skip to content

Instantly share code, notes, and snippets.

@sandersaares
sandersaares / 01_algorithm.rs
Created March 31, 2025 08:18
Structural changes for improved throughput
pub fn is_forbidden_text_static(s: &str) -> bool {
FORBIDDEN_TEXTS
.iter()
.any(|candidate| s.starts_with(candidate))
}
@sandersaares
sandersaares / batched_no_labels.rs
Created February 12, 2025 12:21
OTel synchronization benchmarks
use opentelemetry::metrics::MeterProvider;
use opentelemetry_sdk::metrics::{ManualReader, SdkMeterProvider};
use std::env::args;
use std::fmt::Debug;
use std::str::FromStr;
use std::thread::{spawn, JoinHandle};
use std::time::{Duration, Instant};
const NUM_THREADS: usize = 10;
@sandersaares
sandersaares / benchmark.rs
Last active December 31, 2024 05:22
vectorized-rust
pub fn criterion_benchmark(c: &mut Criterion) {
const X_A: u64 = 94;
const X_B: u64 = 22;
const X: u64 = 8400 + 94 * 123456;
const Y_A: u64 = 34;
const Y_B: u64 = 67;
const Y: u64 = 5400 + 34 * 123456;
c.bench_function("naive", |b| {
b.iter(|| {
@sandersaares
sandersaares / 01.rs
Last active November 6, 2024 09:44
pins-in-rust
// BAD CODE: This example is intentionally wrong.
pub struct BagOfApples {
count: usize,
// In the example code, this self-reference is mostly useless.
// This is just to keep the example code simple - the emphasis is
// on the effects of pinning, not why a type may be designed to need it.
self_reference: *mut BagOfApples,
}
@sandersaares
sandersaares / example.rs
Created November 6, 2024 08:28
pins-in-rust-02
let mut bag = BagOfApples::new();
bag.initialize();
println!("Apple count: {}", bag.count());
@sandersaares
sandersaares / example.rs
Created November 6, 2024 08:25
pins-in-rust-01
// BAD CODE: This example is intentionally wrong.
pub struct BagOfApples {
count: usize,
// In the example code, this self-reference is mostly useless.
// This is just to keep the example code simple - the emphasis is
// on the effects of pinning, not why a type may be designed to need it.
self_reference: *mut BagOfApples,
}
@sandersaares
sandersaares / CensoredPi.PiCensorship-asm.md
Created February 2, 2024 06:36
Pi censorship: C# assembly code

.NET 8.0.1 (8.0.123.58001), X64 RyuJIT AVX2

; CensoredPi.PiCensorship.InPlaceBytes()
       sub       rsp,48
       xor       eax,eax
       mov       [rsp+28],rax
       vxorps    xmm4,xmm4,xmm4
       vmovdqa   xmmword ptr [rsp+30],xmm4
       mov       [rsp+40],rax
       mov       dword ptr [rsp+28],0FFFFFFFF
@sandersaares
sandersaares / censoredpi-a56a9cec0ea7851e.asm
Created February 2, 2024 06:32
Pi censorship: Rust assembly code
.text
.def @feat.00;
.scl 3;
.type 0;
.endef
.globl @feat.00
.set @feat.00, 0
.file "censoredpi.cfb30afff231d82-cgu.0"
.def _ZN10censoredpi22censor_pi_suffix_chunk17he2748b38ae5f6257E;
.scl 2;
@sandersaares
sandersaares / gist:c2946dbd47732c7e09bf1ef4d117a30d
Last active January 10, 2018 08:26
CH vagrantfile redacted
# -*- mode: ruby -*-
# vi: set ft=ruby :
vm_name = "asdf"
vswitch_name = "xxx"
data_disk_path = ""
new_password = "xxx"
mac_address = ""
cpu_cores = 2
ram_mb = 1536
@sandersaares
sandersaares / gist:2fd245b28d9170235430da6032fecf85
Created August 24, 2017 05:50
Prometheus historical data collector example
using Axinom.Toolkit;
using NLog;
using Prometheus.Advanced;
using Prometheus.Advanced.DataContracts;
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;