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
The bitset data structure is a clever way to represent efficiently sets of integers. It supports fast set operations such as union, difference, intersection. For...Daniel Lemire From Daniel Lemire's Blog | March 31, 2017 at 06:19 PM
A famous and highly-funded researcher from Cornel, Brian Wansink, has published many studies regarding how we eat. His work has guided public policy all over the...Daniel Lemire From Daniel Lemire's Blog | March 31, 2017 at 11:22 AM
StackOverflow published its list of “top paying technologies“. Worldwide, the best-paid programmers, on average, work in Clojure and Rust (these are programming...Daniel Lemire From Daniel Lemire's Blog | March 27, 2017 at 08:01 PM
Mass Effect Andromeda is the long-awaited sequel to the popular Mass Effect video game series. It is available to a game console near you. It was given a roughContinue...Daniel Lemire From Daniel Lemire's Blog | March 27, 2017 at 04:58 PM
There are many claims that innovation is slowing down. In the XXth century, we went from horses to planes. What have we done lately? We have not cured cancer or...Daniel Lemire From Daniel Lemire's Blog | March 24, 2017 at 01:11 PM
This morning, a reader asked me about the real-world relevance of software performance: I’m quite interested in your work on improving algorithm performance using...Daniel Lemire From Daniel Lemire's Blog | March 20, 2017 at 03:20 PM
We live in a world where the most powerful companies in the world have super smart people working on trying to emulate human intelligence in machines. Yann LeCun...Daniel Lemire From Daniel Lemire's Blog | March 17, 2017 at 10:53 AM
A priority queue is a data structure that holds a set of elements and can return quickly the smallest (or alternatively the largest) element. It is usually implemented...Daniel Lemire From Daniel Lemire's Blog | March 13, 2017 at 03:08 PM
In Mnemonic Training Reshapes Brain Networks to Support Superior Memory (published in Neuron, March 2017), we learned that 6 weeks of mnemonic training at a rate...Daniel Lemire From Daniel Lemire's Blog | March 10, 2017 at 10:14 AM
Most college professors are squarely on the left ideologically. They believe that part of their mandate is to reduce inequality, by helping to provide college degrees...Daniel Lemire From Daniel Lemire's Blog | March 7, 2017 at 11:06 AM
Last night I went to see Logan, the latest and maybe the last Wolverine movie with Hugh Jackman. The movie is set in 2029. The year 2029 is an interesting choice...Daniel Lemire From Daniel Lemire's Blog | March 3, 2017 at 10:12 AM
Most commodity processors support single-precision IEEE 754 floating-point numbers. Though they are ubiquitous, they are often misunderstood. One of my readersContinue...Daniel Lemire From Daniel Lemire's Blog | February 28, 2017 at 03:45 PM
Lately, I have been reading a lot about the threat to computer jobs from automation. For example, we have AI systems that can write their own code. And billionaire...Daniel Lemire From Daniel Lemire's Blog | February 24, 2017 at 10:25 AM
I love computers. Unlike many people, who stick to one brand and one operating system, I like to use many different systems. I own several game consoles, several...Daniel Lemire From Daniel Lemire's Blog | February 16, 2017 at 05:13 PM
Inspired by earlier work by Llogiq, I decided to look at how fast I could count the number of lines in a string. By assuming that the string relies on ASCII, UTF...Daniel Lemire From Daniel Lemire's Blog | February 14, 2017 at 11:55 AM
Sorting arrays quickly is a classical computer science problem. It is also a common task worth optimizing. Sadly, there is no best approach, no silver bullet. Most...Daniel Lemire From Daniel Lemire's Blog | February 6, 2017 at 10:58 AM
Unless you are a tree, a lobster, or some other sea creature, you are probably aging over time… which is another way of saying that beyond adulthood, your fitness...Daniel Lemire From Daniel Lemire's Blog | February 2, 2017 at 06:57 PM
Swift is a new programming language launched by Apple slightly over two years ago. Like C and C++, it offers ahead-of-time compilation to native code but with many...Daniel Lemire From Daniel Lemire's Blog | January 30, 2017 at 12:04 PM
If you are using a modern C++ (C++11 or better), you have access to set data structures (unordered_set) which have the characteristics of a hash set. The standard...Daniel Lemire From Daniel Lemire's Blog | January 27, 2017 at 03:14 PM
In 2016, we saw a wide range of breakthroughs having to do with artificial intelligence and deep learning in particular. Google, Facebook, and Baidu announced several...Daniel Lemire From Daniel Lemire's Blog | January 27, 2017 at 10:32 AM