And to celebrate, Episode 5 is live on YouTube! 🎬

📺 "The Bulb" – the HAL 9000 Easter egg 🥚 hidden inside the thermometer's bulb:

May the cycle be with you. 🚀🌕

#Conky #antiX #IceWM #WeatherStation #CairoGraphics #v150 #OpenSource #kdenlive

https://www.youtube.com/shorts/LXsEdRWeBVY

🎬 EPISODIO 5 — THE BULB #Conky #antiX #scifi #Monolith #weather #SciFi #HAL9000

YouTube

Vertical thermometer with Cairo graphics

🌡️ What's new in v1.5.0

This release introduces a vertical glass thermometer drawn entirely with Cairo, alongside the existing lunar phase bar.

#Conky 🖥️🌡️ #weather #antiX #Debian #icewm #Lua #github #thermometer #CairoGraphics #HAL9000

https://github.com/DrCalambre/conky-weather-openweathermap/releases/tag/v1.5.0

Release Vertical thermometer with Cairo graphics · DrCalambre/conky-weather-openweathermap

🌡️ What's new in v1.5.0 This release introduces a vertical glass thermometer drawn entirely with Cairo, alongside the existing lunar phase bar. ✨ Visual features Dynamic color range based on rea...

GitHub

🌿 Mi termómetro respira en verde 💚

RGB(0.2, 0.8, 0.2)
cuando Río Gallegos marca 11°C

No es el azul del frío
ni el rojo del calor extremo.
Es el verde del equilibrio perfecto,
la temperatura justa
pintada en píxeles cairo.

Un color que susurra:
aquí, ahora, todo está bien ✨

#Conky #Linux #antiX #Debian #icewm #Patagonia #CairoGraphics #Lua #ColorTheory #GeekPoetry 🖥️🌡️

🌕 Misión Artemis cumplida.
conky-weather-openweathermap v1.4.0 ha alunizado.

✨ Barra lunar con Cairo: color que late con cada fase.
🕯️ Hora exacta de lunas llenas y nuevas.
☀️ UV más robusto.

El monolito ya no observa… siente el ciclo.

👉 https://github.com/DrCalambre/conky-weather-openweathermap

#github #Conky #clima #luna #moon #weather #Linux #AntiX #Artemis #Orion #FasesLunares #CairoGraphics

GitHub - DrCalambre/conky-weather-openweathermap: conky with: openWeatherMap API plus a compass to indicate wind direction and moon phases using perl

conky with: openWeatherMap API plus a compass to indicate wind direction and moon phases using perl - DrCalambre/conky-weather-openweathermap

GitHub
Porting Geonkick to Windows marks a new milestone. The Cairo based graphics backend now draws on the main window, simplifying UI porting with minimal changes to the Geonkick core GUI engine. "#Windows #geonkick #Cairographics

Someone wrote to me that they found my blog posts about #CairoGraphics and #Ruby quite helpful. So, I'm reposting the links to help others find them.
* Converting code from Cairo to RCairo: https://notepad.onghu.com/2021/cairo-rcairo-porting/
* Samples using RCairo: https://notepad.onghu.com/2021/cairo-samples-in-ruby/

#Programming

Cairo with Ruby - Converting code from Cairo to RCairo

Cairo Graphics is a powerful 2D graphics library. Although Cairo is a C library, there are bindings available for many languages. The RCairo gem allows Ruby programs to use Cairo.

I'll be streaming #CodingTogether this evening.

This evening I'm going to resume the hex-grid project, especially now that I have it posted to my open source repository. I'll be figuring out more about how the cropping tools in #CairoGraphics works, and refactoring the relationship between a Terrain and a Tile. Hopefully I'll finish the evening with a full rendering of the example map that I made a few weeks ago!

Join me on my Youtube channel at 9pm EST (-0500 UTC)

https://www.youtube.com/@SavanniDGerinel

Savanni D'Gerinel

Teile deine Videos mit Freunden, Verwandten oder der ganzen Welt

YouTube

The things I want to add to #Mandelbrot #Perturbator #GTK this week are varying in difficulty.

Hard:

Currently you can select an item in the annotation list on the right hand side of the user interface window, and it is highlighted in the fractal explorer window. But when you have a lot of annotations, trying to find a specific annotation gets tedious. So I want to make it so I can click in the explorer window and have it select the annotation in the list.

I think I can do this by drawing the annotations (using the #CairoGraphics library) into an off-screen buffer with anti-aliasing turned off and annotation ID values as colours. I'll probably draw the rays thicker than 1 pixel in this buffer, otherwise selecting will be a nightmare. I already have one off-screen buffer used for text collision/overlap avoidance (aka dynamic level of detail), I might be able to reuse it. Ray sort order should be by (preperiod+period) (lowest drawn last / on top) to be intuitive, text b-boxes on top.

Medium:

Add a button to annotate an embedded Julia set automatically, because marking all those points and rays is a bit boring.

Easy:

Add a number box for hiding rays whose (preperiod+period) is higher than this threshold, as a stop-gap until I figure out how to choose this threshold (or another way to prune rays) automatically.