eInk Display for the PiHole

eInk Display for the PiHole Inspired by: https://github.com/neauoire/inky-hole Display statistics including the number of blocked requests, and filtered traffic, from Pi-Hole, on Pimoroni’s Inky pHAT. Default display / Simple display (using –simple option): LCARS display (using –lcars option) / LCARS + Simple: Installation Setup Pi-Hole, follow the installation instructions. Setup Inky pHAT, follow the installation instructions. Clone this repo on your Raspberry Pi Zero W. git clone https://github.com/doublehelix/inky-pihole.git Test your setup Executing the following command will run the script   […]

Read more

Small numerical simulator example

This is a small example of the kind of small numerical simulator I often write as I explore the dynamics of different kinds of systems. It’s not sophisticated, or advanced, but it is powerful. Usage python3 ski_sim.py | tee results.png This type of code runs multiple times faster with Pypy than it does with standard python. Exercises (Simple) Replace the normal distributions with distributions with other shapes, especially heavy tails. (Simple) Measure queue wait latency directly, calculating percentiles or other […]

Read more

A very impractical 3D rendering engine that runs in the python terminal

A very impractical 3D rendering engine that runs in the python terminal. do NOT try to run this program using the standard python IDE as it does not use ANSI escape codes. If your terminal of choice does not support ANSI escape codes it will also break in the same way. ONLY ON VERSIONS BEFORE 0.1.3: Due to the time it takes to use the print command, sometimes the screen will refresh while the program is in the process of […]

Read more

Bailando: 3D dance generation via Actor-Critic GPT with Choreographic Memory

Code for CVPR 2022 (oral) paper “Bailando: 3D dance generation via Actor-Critic GPT with Choreographic Memory” [Paper] | [Project Page] | [Video Demo] Driving 3D characters to dance following a piece of music is highly challenging due to the spatial constraints applied to poses by choreography norms. In addition, the generated dance sequence also needs to maintain temporal coherency with different music genres. To tackle these challenges, we propose a novel music-to-dance framework, Bailando, with two powerful components: 1) a […]

Read more
1 9 10 11