3. Verify that the AIS contains the interest statements from all three banks in which I have accounts
Mostly work related stuff which I would've entered into my "Log book". Instead of hosting it on an intranet site, outsourcing the hosting to blogger!
Sunday, June 07, 2026
income tax filing has become simplified
3. Verify that the AIS contains the interest statements from all three banks in which I have accounts
Saturday, June 06, 2026
in-place upgrade Ubuntu 22.04 web server to Ubuntu 24.04
Google apps script - Rhino runtime no longer supported
Monday, June 01, 2026
lobby Raspberry Pi not booting
Friday, May 22, 2026
visuals on planetarium dome getting washed out
Copy-pasting from an email thread -
Just a follow-up on the issues with washed-out visuals we were facing.
When slowly fading in particular scenes, we can clearly see a point where parts of the scene get washed out, with the projector suddenly jumping in brightness. Looks like this projector, Optoma ZK-507-W, has some poorly executed "high-brightness" handling, which we don't seem to be able to disable. As long as we keep large areas below 50% brightness, small bright areas like stars, trails etc can be viewed with good contrast.
I think it is some sort of local dimming similar to what is used in some TVs, https://www.academia.edu/88311604/Backlight_local_dimming_algorithm_for_high_contrast_LCD_TV but with very poor results.
Perhaps a warning line can be added at https://paulbourke.net/dome/faq/#projectors for this projector, indicating its poor performance.
To which Paul replied,
I assume you have tried
1. Turning off the DynamicBlack settings in Display -> Image setting -> Brightness mode menu.
2. Turning off the HDR/HLG in Display -> Image settings -> Dynamic range menu.
Yes for the 2nd, there was no such menu for the first point. Since my source is not HDR, I also tried "Auto" in addition to "Off".
Also, have tried all the different modes, including "Film" - even that has the noticeable brightness jump once a large enough area has a pixel value high enough (perhaps >50%).
(Interestingly, some planetarium shows have more problems than others.
Eg. Unseen Earth, https://www.unseenearth.eu/ - has some drone shots etc which look terrible on our dome if I don't mask out most of it to <50%
Mars - the Ultimate Voyage - https://www.bellmuseum.umn.edu/mars-ultimate-voyage/ - has gamma settings, lighting etc such that most of the show looks pretty good on our dome.
In our own productions using OpenSpace, https://www.openspaceproject.com/ , there seems to be a difference between scenes rendered on Mac and scenes rendered on PC (Linux). Maybe gamma differences.
These micro-organisms are rendered fine, while I had to darken these scenes rendered on Mac for Jupiter, Saturn and Europa to not become completely washed out.
Interestingly, this scene, rendered on Linux, is fine.)
Wednesday, May 20, 2026
OpenSpace builds on Github actions getting "terminated" - exit code 143
cmake --build . --parallel
cmake --build . --parallel 3
cmake --build . --parallel causes termination.
make -j $(nproc) does not cause termination, why?
Saturday, May 16, 2026
Moodle course order - manual sorting option vanished
Tuesday, May 12, 2026
msmtp instead of mail
Monday, May 11, 2026
UTM and the mouse
Saturday, April 25, 2026
two or three ways to make LLMs help with Blender scene creation
Can you now generate a python script to create a blender scene with
Fisheye 180 degree equidistant camera in the centre, pointing straight up equidistant circular screens subtending just less than 40 degrees so that they do not touch, having a small gap between them, 9 circular screens nearest the equator, and more rows of similarly sized circular screens, but fewer as we go up the hemisphere since the circumference of higher latitudes would be lower The lowest row of circular screens must be completely above the horizon for the viewport of the 180 degree fisheye equidistant camera The screens should fade in one by one starting from the lowest row, left to right, sequentially, one after the other, with a one second fade in time. So, circle one fades in by the 00:00:01 mark, then circle two fades in and finishes fading in by the 00:00:02 mark, and so on. The total duration of the animation can be one second greater than the time required to fade in all the circles. Each circular screen should have an image texture mapped to a unique file - named seq01.jpg for circle one, seq02.jpg for circle two and so on, with the jpg textures located in a subdirectory of the project directory called seq. The image texture would be square in shape, but should be zoomed in so that the entire circle is filled with the texture.
LLMs can even give us alternate ideas. For example, this conversation,
Tuesday, April 21, 2026
false alarm emails from github pages
Friday, April 17, 2026
Blender 5 VSE difference for extending clips
Blender 5 Video Sequence Editor (VSE) handles extension of clips differently than earlier versions. In earlier versions, if we extended a clip past its end by dragging its boundary, it would create still frames from the last frame of the clip, and if we used a speed control modifier, we could stretch clips both to extend them as well as to make them shorter. With Blender 5, we can't do that directly. Now, we need to go to clip properties, increase duration of the clip there. Just using speed control is no longer enough. Via https://blender.stackexchange.com/questions/69679/extend-video-strip-in-vse
Sunday, April 05, 2026
can't have a show all apps button on old Realme phone
There was no way to install a button to "show all apps" like on my Samsung M34, on the old Realme phone: in settings -> home screen, there is an option to show drawer instead of home screen icons - all the apps are listed in the drawer. Chose that instead.
Saturday, April 04, 2026
how to remove sim from moto phone
Artemis II launch video
Thursday, April 02, 2026
Wordpress website giving critical error
I enabled safe mode and also edited the configuration wp-config.php file,define('WP_MEMORY_LIMIT', '512M');define('WP_MAX_MEMORY_LIMIT', '512M');This seems to have solved the problem for now.
Logged in, saw that Wordpress and some plugins and themes needed to be updated, and updated them too. After updating, when I tried clicking on Edit for the home page, it seemed to work OK, probably because of the fix applied above.
Friday, March 27, 2026
using cloudflared to connect to our internal server
Thursday, March 26, 2026
OpenSpace - workarounds for toggle trails causing Pluto trail to appear
Using the default action by pressing the 'T' key, Pluto trail starts to appear if we disable it before we start.
One way might be to remove the Pluto Trail asset from openspace before starting the playback?
Another way would be to edit the recording to replace
openspace.toggleFade("Scene.*Trail.Renderable"); openspace.toggleFade("Scene.*trail.Renderable");
with
openspace.setPropertyValue("Scene.*Trail.Renderable.Fade", 0, 1.0); openspace.setPropertyValue("Scene.*trail.Renderable.Fade", 0, 1.0)
Thursday, March 19, 2026
openspace command convention
Error when calling script 'openspace.fadeIn': Could not find property 'Scene.Moon.Enabled'
Edit - Note: All of the above were with respect to the 0.21.x version. In version 0.22, things may change - for eg this commit.

