Skip to content

Instantly share code, notes, and snippets.

View mtilda's full-sized avatar
🎯
Focusing

Mathilda Grace mtilda

🎯
Focusing
View GitHub Profile
@mtilda
mtilda / update-email-address.ts
Created March 26, 2025 22:46
Sanity migration to update an email address everywhere
import { defineMigration, set } from 'sanity/migrate';
const previousAddress = 'person@example.com';
const newAddress = 'person@example.org';
export default defineMigration({
title: 'Update email address',
migrate: {
string(node) {
@mtilda
mtilda / Networks.md
Last active February 9, 2025 16:03
Notes on measuring centrality in networks

Networks

Networks are described with graphs, which have the following components:

  • Nodes
  • Edges -- connections between nodes
    • Direction
    • Weight

Properties

@mtilda
mtilda / One-hot Encoding.ipynb
Last active January 28, 2025 10:20
Demonstration of one-hot encoding using Pandas and SciKit-Learn
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mtilda
mtilda / letterboxed.py
Created January 19, 2025 21:00
Utility for solving LetterBoxed, a New York Times puzzle game.
from datetime import date
from typing import Sequence
from pydantic import BaseModel, Field
def inform(*args, **kwargs):
import sys
print(*args, file=sys.stderr, **kwargs)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.