Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
symmetricsaurus
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
symmetricsaurus
9mo ago
Don't think there was ever a Top Gun for Virtual Boy.
2.
▲
by
symmetricsaurus
1y ago
Pretty neat and a very nice walkthrough of the code. For localization you might want numbered holes which makes it way more complicated. You can detect if the backing buffer is too short, but can you detect other errors? Like having differe
3.
▲
by
symmetricsaurus
1y ago
Well actually, air molecules (N2, O2) are indistinguishable. This means that they are fundamentally interchangeable with each other and it’s not well defined what ”same” molecules mean. You can’t label the individual molecules. It’s of cour
4.
▲
by
symmetricsaurus
1y ago
Doom Emacs ( https://github.com/doomemacs/doomemacs )
5.
▲
by
symmetricsaurus
1y ago
Second this recommendation! It’s a super fun game to learn. It looks impossible to start out but then your brain adapts. It’s like seeing through the matrix.
6.
▲
by
symmetricsaurus
1y ago
The result is only significant to 3.39 sigma. Pretty good chance this is just a random fluctuation that will go away if you look at more galaxies.
7.
▲
by
symmetricsaurus
2y ago
Also first click is never a mine (if there's one where you click it's moved to the top left corner).
8.
▲
by
symmetricsaurus
2y ago
Apparently smart triangulation of the game world, A*, plus boids pretty much. https://www.gdcvault.com/play/1014514/AI-Navigation-It-s-Not
9.
▲
by
symmetricsaurus
3y ago
Should have a (2022) perhaps this post?
10.
▲
by
symmetricsaurus
3y ago
Volvo did this back in 1992 but only as a concept vehicle https://en.m.wikipedia.org/wiki/Volvo_ECC
11.
▲
by
symmetricsaurus
3y ago
In my high school physics class we measured the pitch between the tracks of a CD using the same principle. You just need a light source with a known wavelength, like a laser. It was a pretty cool experiment!
12.
▲
by
symmetricsaurus
3y ago
Yes I’m thinking in terms of different frames of reference. Imagine that you’re a tiny ant that lives on the large circle. When you push the small circle around the large circle you will see it make four rotations before you get back to the
13.
▲
by
symmetricsaurus
3y ago
Making code simple is not easy. In your analogy I think the listener should be the junior programmer. Music by Beethoven can be appreciated by many more than just the people who can compose on that level. In the same way you can write code
14.
▲
by
symmetricsaurus
3y ago
Interesting case! You can see it is R/r local revolutions of the small circle. Then you need to add one global revolution from going around the large circle. So R/r + 1. This is of course what the article is saying pretty much. Ar
15.
▲
by
symmetricsaurus
4y ago
Instead of energy, it should say amplitude(and phase since it’s an inherently complex thing).
16.
▲
by
symmetricsaurus
4y ago
You can use it solve sudokus as well [0]. I find the parallel quite enlightening. [0] https://norvig.com/sudoku.html
17.
▲
by
symmetricsaurus
4y ago
Oskar Stålberg has famously used WFC in Bad North and Townscaper. Here's a nice presentation from him explaining it: https://www.youtube.com/watch?v=0bcZb-SsnrA
18.
▲
by
symmetricsaurus
4y ago
Europe is not uniform in this regard. For example in Sweden almost all houses are built out of wood.
19.
▲
by
symmetricsaurus
4y ago
The OTCA metapixel has 2048x2048 cells and a period of 35328. That's a total of 18.5 GB. And that's not counting the different states depending on neighbors and on-off-transitioning state. Even with compression that's a lot o
20.
▲
by
symmetricsaurus
4y ago
Very smooth. Wonder if there are any optimizations like Hashlife going on? There’s a lot of spatial redundancy to exploit. https://en.wikipedia.org/wiki/Hashlife
21.
▲
by
symmetricsaurus
4y ago
Yes, and in particular the compiler can assume that you stay within the defined behavior. That's what's enabling the optimization in removing the i < 0 check.
22.
▲
by
symmetricsaurus
4y ago
There’s no reason to expect the result of integer overflow to be negative, or any particular value at all. It is undefined. So after checking that x > o there is no way for i (a product and ratio of positive numbers) to become negative.
23.
▲
by
symmetricsaurus
4y ago
You’re gonna get the same result each time you compile. But if you change _anything_ the results can be completely different. So, I can agree that it’s not a very useful predictability.
24.
▲
by
symmetricsaurus
4y ago
The situation in C++ is similar. With a particular compiler and with a specific set of compilation flags you can sometimes get predictable behavior even if it's undefined (and sometimes not). But, there are no guarantees and if you cha
25.
▲
by
symmetricsaurus
4y ago
Conway's Game of Life does consider diagonals. Since they start and finish by talking about GoL I think they've made a mistake.
26.
▲
by
symmetricsaurus
4y ago
I don't understand the update rules as described in the readme. In an 3x3 neighborhood there are 2^9, not 2^5 states. So we should get 2^512 possible update rules, not 2^32. I think something similar is described in https://
27.
▲
by
symmetricsaurus
4y ago
Need more complexity: https://spot.colorado.edu/~huemer/trolley.htm
28.
▲
by
symmetricsaurus
4y ago
Previously: https://news.ycombinator.com/item?id=17171252 (Linked from the article)
29.
▲
by
symmetricsaurus
5y ago
Most probably is rally driver Colin McRae[0], after whom a popular series of rally games are named[1]. [0] https://en.wikipedia.org/wiki/Colin_McRae [1] https://en.wikipedia.org/wiki/Colin_McRae_Ra
30.
▲
by
symmetricsaurus
5y ago
> A key tradeoff is that Bronze does not guarantee thread safety Not having data races is one of the key benefits of using Rust, “fearless concurrency” and all that. So by throwing away a key guarantee of Rust (no aliasing mutable refere
More ›