Skip to content

Instantly share code, notes, and snippets.

@jsundram
jsundram / bee.sh
Last active November 4, 2022 18:17
Solving the Spelling Bee (https://www.nytimes.com/puzzles/spelling-bee) with a one-liner in Bash
#!/usr/bin/env bash
# Solve the Spelling Bee (https://www.nytimes.com/puzzles/spelling-bee)
# Usage `./bee.sh ulroapn | more` where the first letter is the one in the middle
# Output: a list of valid dictionary words that contain the first letter and
# no letters that aren't on the list provided.
# Unfortunately the MacOS dictionary has words that aren't in the custom
# Spelling Bee dictionary, so you may find words listed that aren't accepted
@jsundram
jsundram / howtolog.md
Last active August 28, 2022 22:53
How to make a chamber music log (or any other kind of information) using google forms

How to Make a Chamber Music Log

  1. Go to Google Forms https://docs.google.com/forms/u/0/

  2. Create new Form

  3. Screenshot 2017-05-31 11 55 03
    1. Fill it out with the questions that you might like to have. Mine looks like this:
    2. Screenshot 2017-05-31 12 17 39
  4. Click Responses

@jsundram
jsundram / wigmore_isqc.md
Last active April 13, 2022 22:36
Overview of the Wigmore Hall International String Quartet Competition (2022)

2022 Wigmore Hall International String Quartet Competition

Last night, I noticed on the Wigmore Hall YouTube channel the results of an International String Quartet Competition. This was strange, because although I was familiar with the trienniel Banff Competition I was unaware of this competition, which predates it. The Competition started in 1979 in Portsmouth (the Takács Quartet won), and moved to London in 1988. It only arrived at Wigmore Hall in 2010. So perhaps the 3 rebrands made me less aware of it.

From the Competition's wikipedia page I learned that

twelve [quartets] are selected to take part in the competition.

@jsundram
jsundram / wordle_stats_viz.py
Last active October 6, 2023 19:39
letter statistics visualizations for wordle (using the short wordle wordlist)
from collections import Counter
from string import ascii_lowercase as ALPHABET
import json
import matplotlib.pyplot as plt
import numpy as np
"""
For https://www.powerlanguage.co.uk/wordle/.
Read more here: https://www.nytimes.com/2022/01/03/technology/wordle-word-game-creator.html
"""
@jsundram
jsundram / random.sh
Created April 4, 2021 22:01
get a few random words from the osx dictionary file
# https://stackoverflow.com/questions/9245638/select-random-lines-from-a-file
cat /usr/share/dict/words | sort -R | head -10 $lines
# faster
gshuf -n 10 /usr/share/dict/words
@jsundram
jsundram / hex_to_latex.py
Last active June 17, 2022 21:44
Convert a HEX color to LateX Color Spec. Useful for taking colors from any site and producing output suitable for e.g. http://latexcolor.com/
def hex_to_latex(c, name="name"):
""" Input: a hex color like "#B29155" ('#' is optional)
Output: \definecolor{name}{rgb}{0.70, 0.16, 0.57}
"""
if c.startswith("#"):
c = c[1:7]
r, g, b = [(int(c[ix:ix+2], base=16) / 255) for ix in range(0, 6, 2)]
return '\definecolor{%s}{rgb}{%1.2f, %1.2f, %1.2f}' % (name, r, g, b)
@jsundram
jsundram / slic.jl
Last active December 17, 2024 08:40
SuperPixel Segmentation in Julia
# src: https://github.com/johnnychen94/SuperPixels.jl/blob/analyze/src/analyze.jl
function SLIC(img::AbstractArray{<:Colorant, 2}; kwargs...)
return SegmentedImage(img, _slic(Lab.(img); kwargs...))
end
SLIC(img::AbstractArray{<:Number, 2}; kwargs...) = _slic(Gray.(img); kwargs...)