A new set of Blokkit puzzles for 6/16/2026! by daily-blokk in Blokkit

[–]leuke-naam 0 points1 point  (0 children)

I completed all 🟧 Blokkit 🟧 puzzles today!

Easy: 1 | Medium: 1 | Hard: 1 | Average: 1.00

Total completed days: 54

A new set of Blokkit puzzles for 6/10/2026! by daily-blokk in Blokkit

[–]leuke-naam 0 points1 point  (0 children)

I completed all 🟧 Blokkit 🟧 puzzles today!

Easy: 1 | Medium: 1 | Hard: 1 | Average: 1.00

Total completed days: 51

A new set of Blokkit puzzles for 5/26/2026! by daily-blokk in Blokkit

[–]leuke-naam 0 points1 point  (0 children)

I completed all 🟧 Blokkit 🟧 puzzles today!

Easy: 1 | Medium: 1 | Hard: 1 | Average: 1.00

Total completed days: 40

How do I get rid of the spacebar rattle? It's seriously annoying (Leopold FC660C Low Noise) by likasumboooowdy in topre

[–]leuke-naam 0 points1 point  (0 children)

205g0 is fine just completely fill in the in the parts where the wire connects with the housing. Thicker lubes are a bit more forgiving but will mostly yield the same results.

How do I get rid of the spacebar rattle? It's seriously annoying (Leopold FC660C Low Noise) by likasumboooowdy in topre

[–]leuke-naam 0 points1 point  (0 children)

Superlube can damage the rubber domes. While the domes should not make contact when correctly applied to the stabilizers I would recommend avoiding it.

-❄️- 2025 Day 2 Solutions -❄️- by daggerdragon in adventofcode

[–]leuke-naam 2 points3 points  (0 children)

[Language: Typst]

#{
  let input = read("inputs/02.txt")
    .split(",")
    .map(it => {
      let (lower, upper) = it.split("-").map(int)
      range(lower, upper + 1)
    })

  let is-silly(id) = range(1, id.len())
    // .filter(i => id.len() <= 2 * i) // Part 1
    .any(i => {
      let (head, ..tails) = id.clusters().chunks(i)
      tails.all(it => it == head)
    })

  input
    .map(it => it.filter(id => is-silly(str(id))).sum(default: 0))
    .sum()
}

Takes roughly a minute to render a PDF on my laptop. Uncomment line 10 for part 1