Viewing profile — jfrd
jfrd
HN member- Joined
- Mon, Jun 03, 2019, 4:02 PM UTC
- HN karma
- 49
- Public activity
- 24 items
- HN profile
- View on Hacker News ↗
About jfrd
No profile information was provided.
Recent public activity
-
comment
Comment #38487383
Brandon helped me solve an interesting problem during my PhD. I was building a sun-tracking sensor for a solar-powered lunar rover, and I needed to calculate the vector from the ro…
-
comment
Comment #36767204
Surprisingly you can solve massive TSPs using heuristics. The solutions are not guaranteed to be optimal, but they can get very close to optimal without a crazy amount of computing…
- comment
-
comment
Comment #35442219
Are any subtopics particularly interesting to you? Mechatronics, Computer Vision, Control Theory, State Estimation, Path Planning, etc?
-
comment
Comment #32290748
Check out PBRT, an academy award winning book about a rendering codebase! https://pbrt.org/
-
comment
Comment #32259395
I think it is a reference to “Cracking the Coding Interview”, a book that teaches you how to pass FAANG interviews.
-
comment
Comment #31246853
Find a project you want to build and stop at nothing until it works. Repeat. Caveat: pick things that are just beyond your current level of knowledge.
-
comment
Comment #29669565
I’m a PhD student with ~5years ROS experience. What is your programming experience level? Why do you want to learn ROS?
-
comment
Comment #29354818
The Kershaw Leek pocket knife. Flips open one-handed and makes a satisfying “snick”. I’ve used mine daily for 5 years. https://www.amazon.com/dp/B0009VC9YK/ref=cm_sw_r_cp_api_glt_.…
-
comment
Comment #28558902
Personally, I hate anything that clutters my home directory. Have they added an option to relocate ~/snap?
-
comment
Comment #27165355
Could it be that the examples of “good” architecture were selected over centuries by the communities that chose to preserve them, while the “bad” examples were chosen by pretentiou…
-
comment
Comment #26858360
For those who didn't click the link, this is a joke response to the author's tweet: "I am bracing for the inevitable comments about C++ being the most terrible thing since forever …
-
comment
Comment #26856383
Too bad C++ is the most terrible thing since forever. https://twitter.com/Cor3ntin/status/1383875999033565194?s=20
-
comment
Comment #26503237
Cool! Check out the textbook “Probabilistic Robotics” for great explanations of the Kalman filter zoo. Bayes Filtering, Kalman Filtering, EKF, UKF, Particle Filter, etc.
-
comment
Comment #25973879
Could you add some instructions to the demo? Maybe it’s obvious and I missed it, but I can’t figure out how to rotate a piece. I’m using an iPhone.
-
comment
Comment #25942282
Andy Warhol was surely some kind of marketing genius.
-
comment
Comment #25829769
You could use a co-routine to generate the magic numbers. Something like this: def gen_magic_nums(): for i in range(100): yield i**2 for num in gen_magic_nums(): add_to_plot(num)
-
comment
Comment #25752665
I love my X1 Gen 7, but the black soft-touch coating started peeling within a week of buying it. I hope they've fixed that because it is otherwise my favorite laptop I've ever owne…
-
comment
Comment #24480751
I emailed Ralph Baer when I was about 13 to ask if he knew where I could get an original pong chip to build my own video game. He sent me an extremely nice response explaining that…
-
comment
Comment #22895909
I was never going to see a penny from social security anyway. Maybe this will save me two years of payments into the federal slush fund!
-
comment
Comment #22492835
Nope. The Lidar pulses are encoded uniquely to each sensor, so one sensor can filter out an (already unlikely) direct hit from another lidar. The cameras are IR filtered and also u…
-
comment
Comment #21439400
I believe some of them are from inigo quilez. I know the snail is. https://www.iquilezles.org/store/
-
comment
Comment #20983115
I read Cuckoo’s Egg and also liked “The Soul of a New Machine”, “SkunkWorks”, and “The Making of the Atomic Bomb”.
-
comment
Comment #20668547
Iterative Deepening A Star