Greg Altpairdebuggingwithlovelace.hashnode.dev·Oct 21, 2024Lovelace's Program: Part 11 - the Language of the TableThis is the eleventh part of a series of blog posts taking a deep look into Ada Lovelace's 1843 computer program, starting with Part 1: First Look at the First Program. In an earlier post I talked about the programming language that was used by Ada L...30 readslovelace
Coder of the Cellarcoderofthecellar.hashnode.dev·Aug 5, 2024The not-so-obvious parallelism inside CPUsSince the advent of multi-cores x86 CPUs more than 20 years ago, everybody knows that they can do multiple things at once - true multi-tasking instead of the time-slicing trickery - but there are other forms of parallelism that are present, for a lon...61 readscpu
Jeremy Maglandmagland.hashnode.dev·Jan 23, 2023Typescript web workers in ReactJavaScript is usually a single-threaded language, but when you need to perform computational tasks without interfering with the user interface, web workers can help. Recently, it has become much easier to incorporate web workers in React projects, pa...1 like·330 readsTypeScript