m3koval | 3 years ago | on: ESP32 Buyer’s Guide: Different Chips, Firmware, Sensors
m3koval's comments
m3koval | 4 years ago | on: Parse, Don't Validate (2019)
Source: I attended SIGBOVIK a few times in grad school.
m3koval | 9 years ago | on: Google’s Self-Driving Car Project Is Losing Out to Rivals
It will indeed be interesting to see how the well the Uber deployment goes in practice. They certainly did not choose an easy place to start.
m3koval | 10 years ago | on: Introducing C++ experimental io2d (2D Graphics in the C++ standard library)
That being said: I don't think that a graphics is a good addition to the standard library. It would tremendously difficult to standardize this for the reasons others have mentioned.
m3koval | 10 years ago | on: Ghost in the machine: screen contents across reboots in a Macbook Pro Retina
They replaced the display for free outside of AppleCare. I didn't have to argue with them at all, so I suspect that this is their standard response. YMMV if you have a newer model.
m3koval | 10 years ago | on: Code that will break in Python 4
http://stackoverflow.com/a/1201840/111426
However, it's close enough that I generally agree with your point.
m3koval | 10 years ago | on: Strange C Syntax
"The order of allocation of bit-fields within a unit (high-order to low-order or low-order to high-order) is implementation-defined"
There is no guarantee on the order of the bits inside a bitfield. The compiler may also introduce padding, e.g. for alignment purposes. This makes bitfields unusable for unpacking binary data.
Unfortunately, you're stuck with shifting and masking to replicate the same effect.
m3koval | 11 years ago | on: Dijkstra’s algorithm and the Fibonacci heap
Also, both algorithms require identical data structures. After all, Dijkstras is just A* with a zero heuristic.
I do agree about the constant factor, though: it's likely that a binary heap would be faster on most data sets.
m3koval | 12 years ago | on: Solving a Combination Lock Puzzle with JuMP and Julia
One heuristic is to solve an IP is to relax the integer constraint to inequality constraints, solve the LP, and round the results. However, this can do arbitrarily poorly on most problems.
m3koval | 12 years ago | on: Lavabit Founder Says He Had ‘Obligation’ to Shut Service
"…prohibits you…from disclosing this letter, other than to…an attorney to obtain legal advice or legal assistance with respect to this letter.""
Source: http://upload.wikimedia.org/wikipedia/commons/9/91/EFF-IA_Na...
m3koval | 12 years ago | on: 1912 Eighth Grade Examination for Bullitt County Schools
In any case, I don't disagree with your high-level point.
m3koval | 12 years ago | on: Matlab is oversold as a general-purpose language
I don't see a compelling reason to use Octave unless you're trying to avoid paying for a Matlab license. If you're going to switch tools, why not switch to NumPy/SciPy and get the advantage of using a full-featured programming language?
m3koval | 13 years ago | on: How do the state-of-the-art pathfinding algorithms for changing graphs differ?
1. Anytime D* was used by the winner of the DARPA Urban Challenge
2. Field D* was used by Spirit and Opportunity on Mars
3. ARA* (and other A* variants) are a method of optimal motion planning in robotic manipulation
m3koval | 13 years ago | on: Introduction to Competitive Programming Contests
m3koval | 13 years ago | on: Fabrication Trick Offers Fivefold Leap in Hard-Disk Capacity
m3koval | 13 years ago | on: First High-Resolution Color Mosaic of Curiosity's Mastcam Images
Look at the videos of astronauts on the moon from the Apollo landings. Everything they do kicks up a significant amount of dust that takes quite a while to dissipate. Obviously it's not a perfect comparison because the moon has weaker gravity and a different composition.
m3koval | 13 years ago | on: The IPS LCD Revolution
It's a shame these monitors don't have an HDMI input. Then again, I can't complain given the price.
m3koval | 13 years ago | on: Is it unethical to quit just before a project?
m3koval | 13 years ago | on: Facebook to Launch Job Postings Board
IANAL and don't know enough about employment law to know if this is a legitimate concern. It doesn't sound like this is a very serious effort ("Facebook had a third-party developer create the new site"), so maybe there's nothing to be worried about.
m3koval | 13 years ago | on: Google Shutdowns Continue: iGoogle, Google Video, Google Mini...
Even with Google Reader, RSS feeds aren't very easy-to-use for non-technical people. It's going to be interesting to see how they adapt now.
I am by no means a networking expert and was able to use technique to work around a similar issue in the past. It was easier than I expected!