Skip to content

Instantly share code, notes, and snippets.

@JonathanStreet
JonathanStreet / wordle-inspired.md
Last active October 13, 2023 06:21
A collection of wordle-inspired games

Wordle inspired games

  • Wordle - The original game.
  • Dordle - Two wordle games at once.
  • Quordle - Four wordle games at once.
  • Lewdle - Like wordle but with lewd words.
  • Sweardle - Swear word guessing game.
  • Nerdle - Like wordle but with equations.
  • Mathler - Find the hidden calculation that equals 128.
  • Primel - Guess the prime number in 6 tries.
@JonathanStreet
JonathanStreet / send-to-multi-window.ahk
Created January 28, 2019 22:57
[AHK] Send text to multiple open windows (e.g. Notepad)
; Press `Ctrl + b` to start
^b::
InputBox, UserInput, Command, Enter a command.
if ErrorLevel
{
MsgBox, CANCEL was pressed.
}
else
{
; Find windows containing 'Notepad' anywhere.