Especially if the President eats their pizza slice in a non-standard manner. see https://www.youtube.com/watch?v=Asv7EB1btok And what type of pizza is placed in the Pizza Reserve? New Yorkers would have conniptions if…
Don't you mean Rogers? see https://news.ycombinator.com/item?id=32026637
Try giving your kids xylitol candies/mints (available at amazon and many health food stores), initially after every meal - you can probably reduce the frequency/amount later. There are xylitol chewing gum, but I've read…
That's what scares a lot of people when they run a static analyzer on code for the first time - all the possible problems. Some of the possible problems are easy to confirm or deny just by looking at one line of code,…
Microsoft bought and adapted PREfix and created a simpler, faster version called PREfast (and the Visual Studio -analyzer switch for C/C++/C# code). see tools section in…
My perl script which scans C/C++ source code for typos would emit a warning (case 19) for a case statement that fell through to the next case statement. The script handled the 'fall through'-comment situation as well.…
see the wikipedia entry on Chinese numerology, esp. number 9. https://en.wikipedia.org/wiki/Chinese_numerology#Nine tl;dr - Chinese pronunciation of 9 sounds similar to the Chinese word for longevity/long life. You'd…
The USA and certain other countries allow a grace period between disclosure of an invention and the patent application for that invention before that invention disclosure becomes prior art. For the USA, the grace period…
The SAST program is probably doing a lot more than a string search tool does. If the SAST has to process C/C++ source code, then the SAST will parse all the #include'd header files. The SAST may track values to…
I've gone down this road years ago. While there's no install and initial results are quick to appear, the false positives that grep or any string search tool generates will make the cynics shoot down this simple attempt…
Especially if the President eats their pizza slice in a non-standard manner. see https://www.youtube.com/watch?v=Asv7EB1btok And what type of pizza is placed in the Pizza Reserve? New Yorkers would have conniptions if…
Don't you mean Rogers? see https://news.ycombinator.com/item?id=32026637
Try giving your kids xylitol candies/mints (available at amazon and many health food stores), initially after every meal - you can probably reduce the frequency/amount later. There are xylitol chewing gum, but I've read…
That's what scares a lot of people when they run a static analyzer on code for the first time - all the possible problems. Some of the possible problems are easy to confirm or deny just by looking at one line of code,…
Microsoft bought and adapted PREfix and created a simpler, faster version called PREfast (and the Visual Studio -analyzer switch for C/C++/C# code). see tools section in…
My perl script which scans C/C++ source code for typos would emit a warning (case 19) for a case statement that fell through to the next case statement. The script handled the 'fall through'-comment situation as well.…
see the wikipedia entry on Chinese numerology, esp. number 9. https://en.wikipedia.org/wiki/Chinese_numerology#Nine tl;dr - Chinese pronunciation of 9 sounds similar to the Chinese word for longevity/long life. You'd…
The USA and certain other countries allow a grace period between disclosure of an invention and the patent application for that invention before that invention disclosure becomes prior art. For the USA, the grace period…
The SAST program is probably doing a lot more than a string search tool does. If the SAST has to process C/C++ source code, then the SAST will parse all the #include'd header files. The SAST may track values to…
I've gone down this road years ago. While there's no install and initial results are quick to appear, the false positives that grep or any string search tool generates will make the cynics shoot down this simple attempt…