Blog

Sieve of Eratosthenes

September 22, 2023
QLogo, Code
qlogo, eratosthenes, primes, code, logo

Sieve of Eratosthenes # I’m looking for ways to stress-test QLogo. A suggestion that came up in my Google search was the Sieve of Eratosthenes. The algorithm goes like this: erasthotenes(n): Create a list of all integers from 2 to n. Remove all multiples of primes up to the square root of n. The remaining list of numbers are the primes. I don’t consider myself an expert in the Logo language. ...

Website Reboot

September 1, 2023
Personal, Hugo
hugo, development, objects, UCBLogo

Moving from Jekyll to Hugo # Over the past few years I have jumped from computer to computer before finally settling in with my current machine (Macbook Air M2). In that time I haven’t kept this website up. With my new computer I have taken the opportunity to restart qlogo.org development using Hugo instead of Jekyll. Removing Support for Objects from QLogo # Recently, I have been implementing support for objects within QLogo. ...