Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
chriskw
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
chriskw
20d ago
In my experience plotter art is a fantastic creative outlet for programmers/people with math backgrounds, especially if your day job doesn't produce anything physical in the real world. Shameless self-plug but I recently animated
2.
▲
Incomplete Open Dodecahedra
(chriskw.xyz)
2 points
by
chriskw
2mo ago
|
0 comments
3.
▲
Platonic Hydrocarbons
(en.wikipedia.org)
16 points
by
chriskw
3mo ago
|
0 comments
4.
▲
by
chriskw
3mo ago
Breaking old seeds is probably not too big a deal since the game is currently in early access, and the biweekly patches mean that seeds are already pretty inconsistent. For example, adding new cards/relics/combats to the pool thro
5.
▲
by
chriskw
3mo ago
Random thing I ran into while trying to seed search for a challenge run, but since the seed is passed through a 32-bit hash function it means there's effectively only 4 billion seeds (as opposed to the first game, which had 64 bit seed
6.
▲
by
chriskw
1y ago
The trick for Scenarios 2 and 3 is that most of the constraints don't end up being bottlenecks. For example in Scenario 2, well-connected pretty much always gets satisfied while doing the other constraints, so the DP table only needs 4
7.
▲
by
chriskw
1y ago
The tricky thing is the code for making decisions runs locally on the contestants machine, so the first time they submit they can record the sequence locally and compute the best set of actions for the next time they submit. Even if the seq
8.
▲
Spatial Sequence Synesthesia
(thesynesthesiatree.com)
2 points
by
chriskw
1y ago
|
0 comments
9.
▲
by
chriskw
1y ago
Nice to see another participant's thinking process for the puzzles! I ended up getting 5th place using dynamic programming for all of the scenarios, but I'm under the impression that almost everybody in the top 20 had almost equal
10.
▲
Pokémon or Startup?
(chriskw.xyz)
1 points
by
chriskw
1y ago
|
0 comments
11.
▲
by
chriskw
1y ago
You can check the diff on the file wordlist_hidden here: https://github.com/alex1770/wordle/commit/85c4a7e6
12.
▲
by
chriskw
1y ago
I could see it being handy to estimate probability where each word is to better inform each guess. The tricky thing is I'm not sure if each run of wave function collapse (with randomness injected) would be an accurate sampling method f
13.
▲
by
chriskw
1y ago
Good catch! I didn't know about this, I'll update the footnote. Anecdotally everyone I know was very surprised by KEFIR the other day.
14.
▲
Playing every game of Wordle simultaneously
(chriskw.xyz)
65 points
by
chriskw
1y ago
|
28 comments
15.
▲
by
chriskw
1y ago
Yeah, I really like the sorting formulation! I didn't notice until after I'd written out the intended solution, but it's basically radix sort going from most significant to least significant bit.
16.
▲
by
chriskw
1y ago
Before publishing I found this while trying to see if there was a already a riddle like it out there (closest I could find was the 1000 barrels of wine riddle mentioned at the beginning): https://puzzles.nigelcoldwell.co.uk/
17.
▲
by
chriskw
1y ago
I originally set it up like that, but felt having to explain that you need to subtract 2000 before doing the binary conversion was unnecessary and kind of distracting
18.
▲
Sixteen bottles of wine riddle
(chriskw.xyz)
70 points
by
chriskw
1y ago
|
32 comments
19.
▲
by
chriskw
1y ago
Good catch, corrected the formula!
20.
▲
by
chriskw
1y ago
That's really cool! I tried to get something to work last week on pen and paper but couldn't get anything to stick. Is there a strategy you used or did you just go by feel? Edit: just noticed how you encoded a flip (AB <-->
21.
▲
by
chriskw
1y ago
Yeah, it's in the last image and in the thumbnail at very top (which I realize now is really hard to spot on mobile), intentionally not in the spotlight to leave space for the twist at the end. https://chriskw.xyz/image
22.
▲
by
chriskw
1y ago
I'm by no means a parenting expert, but my answer would be anything related to something they feel passion or wonder for in the moment. I snuck in a paragraph near the end about burnout. At the root of the problem for me was that I los
23.
▲
by
chriskw
1y ago
Thanks Cliff, it means a ton coming from you! The videos from you and all the other folks on Numberphile always inspired me to see the beauty in math growing up :)
24.
▲
by
chriskw
1y ago
The post presents it a bit out of order, but it was mostly from realizing at some point that the way the fractal grows by a factor of 5, base 5 number systems, and the "spiral" mentioned in the post can all fit together. I also th
25.
▲
That fractal that's been up on my wall for years
(chriskw.xyz)
571 points
by
chriskw
1y ago
|
40 comments
26.
▲
by
chriskw
3y ago
I did something similar once (with a bit of a twist) for my bio when I was a TA in college: "Hi! I’m a senior studying CS. My hobbies include making semantic paradoxes and my bio includes eight a’s, seventeen e’s, fourteen i’s, eight
27.
▲
by
chriskw
4y ago
I did something similar to option 3 to make the builtin numeric types "callable", since the dunder __call__ methods can't be overwritten for builtins. For example, in regular arithmetic notation, something like 6(7+8) could b