Skip to content

Instantly share code, notes, and snippets.

View jespada's full-sized avatar

jespada jespada

View GitHub Profile
@jespada
jespada / ranked-places-explainer.html
Last active April 23, 2026 18:06
Where to Live — Geomagnetic × UVB × nnEMF Explainer (Kruse × Swarm 2025)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Where to Live — Magnetic Inclination × UVB × nnEMF Explainer</title>
<script>try{if(localStorage.getItem('theme')==='light')document.documentElement.setAttribute('data-theme','light');}catch(e){}</script>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
<script src="https://cdn.jsdelivr.net/npm/topojson-client@3"></script>
<style>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
@page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
body {
font-family: Helvetica, Arial, sans-serif;
color: #1a1a1a;
@jespada
jespada / ferritin_analysis.ipynb
Created January 30, 2026 17:20
Ferritin Levels Analysis - Hemochromatosis Treatment Tracking with Regression Projection
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jespada
jespada / linux.nix
Created January 17, 2024 12:26 — forked from dltacube/linux.nix
extract of my home-manager configuration
home = {
sessionPath = [ "${config.xdg.configHome}/emacs/bin" "${config.home.homeDirectory}/.emacs.d/bin" "${pkgs.emacs}/bin" "${pkgs.git}" ];
sessionVariables = {
DOOMDIR = "${config.xdg.configHome}/doom-config";
DOOMLOCALDIR = "${config.xdg.configHome}/doom-local";
#DOOMLOCALDIR = "${config.home.homeDirectory}/.emacs.d";
};
};
xdg = {
enable = true;
@jespada
jespada / ssh-key
Created October 17, 2023 14:14
ssh-key
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILjUIRYZcjh6h7EX0xqjhfDn/yH5slp3WUhTN32jluGh cardno:15 470 894
Verifying that I control the following Nostr public key: npub1747ceatm52f6wexdxre5v88zrv9rsjw9cq6nxwg6zp6yzfsz7lysxd4uzf.
@jespada
jespada / links
Last active November 16, 2022 23:44
guix | debian
@jespada
jespada / monzo-alertmanager-config.yaml
Created June 23, 2022 10:13 — forked from milesbxf/monzo-alertmanager-config.yaml
Monzo's Alertmanager Slack templates
###################################################
##
## Alertmanager YAML configuration for routing.
##
## Will route alerts with a code_owner label to the slack-code-owners receiver
## configured above, but will continue processing them to send to both a
## central Slack channel (slack-monitoring) and PagerDuty receivers
## (pd-warning and pd-critical)
##
@jespada
jespada / source-sid
Created May 10, 2019 15:36
debina-sid
#------------------------------------------------------------------------------#
# OFFICIAL DEBIAN REPOS
#------------------------------------------------------------------------------#
###### Debian Main Repos
deb http://deb.debian.org/debian/ unstable main contrib non-free
deb-src http://deb.debian.org/debian/ unstable main contrib non-free
#------------------------------------------------------------------------------#
# UNOFFICIAL REPOS
@jespada
jespada / aws-ec2-launched-in-last.sh
Last active September 13, 2018 11:28
ec2 instance launched in last X days
#!/bin/bash
# to list instances launched in in the last 15 days run like:
# ./aws-ec2-launched-in-last.sh 15
# https://stackoverflow.com/questions/18858120/finding-all-amazon-aws-instances-that-do-not-have-a-certain-tag
OLDER=$1
if date -v-"$OLDER"d > /dev/null 2>&1; then