From Schneier on Security
Artificial intelligence (AI) has been billed as the next frontier of humanity: the newly available expanse whose exploration
…
B. Schneier| February 29, 2024
You sometimes feel the need to make all of your integers positive, without losing any information. That is, you want to map all of your integers from ‘signed’ integers...Daniel Lemire From Daniel Lemire's Blog | November 25, 2022 at 12:26 PM
Java allows you to create an array just big enough to contain 4 bytes, like so: byte[] array = new byte[4]; How much memory does this array take? If you have answered...Daniel Lemire From Daniel Lemire's Blog | November 22, 2022 at 05:02 PM
A recent C++ standard (C++17) introduced new functions to parse floating-point numbers std::from_chars, from strings (e.g., ASCII text) to binary numbers. How should...Daniel Lemire From Daniel Lemire's Blog | November 17, 2022 at 11:08 AM
For speed, we use finite-precision number types in software. When doing floating-point computations in software, the results are usually not exact. For example,...Daniel Lemire From Daniel Lemire's Blog | November 16, 2022 at 04:21 PM
In C++, we might implement dynamic lists using the vector template. The int-valued constructor of the vector template allocates at least enough memory to storeContinue...Daniel Lemire From Daniel Lemire's Blog | November 10, 2022 at 10:17 AM
When you start a program, it creates a ‘process’ which own its memory. Memory is allocated to a software process in blocks called ‘pages’. These pages might span...Daniel Lemire From Daniel Lemire's Blog | November 8, 2022 at 04:30 PM
I have spent the last few years programming often in C++. The C++ langage is probably one of the hardest to master. I still learn something new every week. Furthermore...Daniel Lemire From Daniel Lemire's Blog | October 26, 2022 at 02:40 PM
Doctors in Israel are toying with polygenic screening: it is a way to make it more likely that your baby will grow up to be healthy. In 2021, 337 million prescriptions...Daniel Lemire From Daniel Lemire's Blog | October 16, 2022 at 02:05 PM
Given an array of N numbers of type double, the standard way to sort it in C is to invoke the qsort function qsort(array, N, sizeof(double), compare); where compare...Daniel Lemire From Daniel Lemire's Blog | October 11, 2022 at 05:04 PM
Computer programming starts with the organization of the data into data structures. In almost all cases, we work with strings or numbers. It is critical to understand...Daniel Lemire From Daniel Lemire's Blog | September 30, 2022 at 05:50 PM
When programming, it can be wasteful to store the same constant data again and again. You use more memory, you access more data. Thankfully, your optimizing compiler...Daniel Lemire From Daniel Lemire's Blog | September 23, 2022 at 06:35 PM
Attractive female students get better grades. They lose this benefit when courses move online. A research paper is much more likely to be highly ranked if the author...Daniel Lemire From Daniel Lemire's Blog | September 16, 2022 at 09:42 PM
When programming, we often have to ‘escape’ strings. A standard way to do it is to insert the backslash character (\) before some characters such as the doubleContinue...Daniel Lemire From Daniel Lemire's Blog | September 14, 2022 at 11:51 AM
A standard dataset in artificial-intelligence research has ten percent of its images mislabeled. Yet state-of-the-art algorithms achieve better-than-90% classification...Daniel Lemire From Daniel Lemire's Blog | September 12, 2022 at 01:56 PM
The C and C++ languages offer little protection against programmer errors. Errors do not always show up where you expect. You can silently corrupt the content of...Daniel Lemire From Daniel Lemire's Blog | August 20, 2022 at 07:14 PM
A simple C program might print ‘hello world’ on screen: #include <stdio.h> #include <stdlib.h> int main() { printf("hello world\n"); return EXIT_SUCCESS; } YouContinue...Daniel Lemire From Daniel Lemire's Blog | August 9, 2022 at 01:55 PM
Increase in computing performance explain up to 94% of the performance improvements in field such as weather prediction, protein folding, and oil exploration: information...Daniel Lemire From Daniel Lemire's Blog | August 7, 2022 at 11:35 AM
A reader (Richard Ebeling) invited me to revisit an older blog post: Parsing floats in C++: benchmarking strtod vs. from_chars. Back then I reported that switching...Daniel Lemire From Daniel Lemire's Blog | July 27, 2022 at 02:43 PM
Modern game controllers can point in a wide range of directions. Game designers sometimes want to convert the joystick direction to get 8-directional movement.Continue...Daniel Lemire From Daniel Lemire's Blog | July 24, 2022 at 04:34 PM
Compared to 1800, we eat less saturated fat and much more processed food and vegetable oils and it does not seem to be good for us: Saturated fats from animal sources...Daniel Lemire From Daniel Lemire's Blog | July 21, 2022 at 12:19 PM