Friday 2023-04-21 – Link List

Blogging Intensifies Link List for Friday 2023-04-21

20-Apr-2023 – Your PC may weep at Immortals of Aveum’s minimum system requirements

Brief Summary: “Forspoken was supposed to be the next-gen technological gaming showcase, but EA’s Immortals of Aveum may have it beat in the “your PC need not apply” “

20-Apr-2023 – Solve crimes as a time-travelling detective in this Where’s Wally-like puzzler

Brief Summary: ”
Freshly announced puzzle game Crime O’Clock will be putting you in the shoes of a time-travelling detective when it comes out on June 30th, its relea”

Tuesday 2023-04-18 – Link List

Blogging Intensifies Link List for Tuesday 2023-04-18

17-Apr-2023 – Valheim dev reveals customisable difficulty modifiers and creative mode

Brief Summary: ”
Having teased the introduction of difficulty modifiers to its viking survival game Valheim back in January, developer Iron Gate Studio has now offere”

17-Apr-2023 – Live-action Knuckles Paramount+ series set between Sonic 2 and 3, confirms cast

Brief Summary: ”
The Sonic Cinematic Universe is picking up steam: the Paramount+ live-action Knuckles series has now set its cast and entered production.

Variety re”

17-Apr-2023 – Hacking Bing Chat with Hash Tag Commands

Brief Summary: “If you ask Bing’s ChatGPT bot about any special commands it can use, it will tell you there aren’t any. Who says AI don’t lie? [Patrick] was sure ther”

17-Apr-2023 – AT&T launches medical radar device that monitors older adults through walls

Brief Summary: “Image: AT&T / Cherish MedicalAT&T has teamed up with medical sensor manufacturer Cherish Health to create a claimed “industry first” radar device capa”

Monday 2023-04-17 – Link List

Blogging Intensifies Link List for Monday 2023-04-17

17-Apr-2023 – How to watch SpaceX Starship’s first test flight — the most powerful rocket ever

Brief Summary: “Image: SpaceXSpaceX will attempt the first test flight of its integrated Starship spacecraft and Super Heavy booster on Monday morning. Known collecti”

17-Apr-2023 – MineClone2 v0.83 out now, the sandbox game for Minetest inspired by Minecraft

Brief Summary: “Inspired might be pushing it a bit eh? MineClone2 as the name suggests really is a clone of early Minecraft, although this is free and open source pow”

17-Apr-2023 – We must raise the minimum wage to a living wage | Bernie Sanders

Brief Summary: “In the richest country on earth, if you work 40 hours a week you shouldn’t have to live in povertyCongress can no longer ignore the needs of the worki”

17-Apr-2023 – Sega buys Angry Birds maker Rovio for £625m

Brief Summary: ”
Angry Birds maker Rovio has agreed to be bought by Sega.

Sega Sammy Holdings is buying Finland-based Rovio for €706m (£625m). Sega expects the acqui”

Sunday 2023-04-16 – Link List

Blogging Intensifies Link List for Sunday 2023-04-16

14-Apr-2023 – The AI Doomers’ Playbook

Brief Summary: ”
AI Doomerism is becoming mainstream thanks to mass media, which drives our discussion about Generative AI from bad to worse, or from slightly insane “

14-Apr-2023 – Hubble Spots a Galaxy with Tendrils

Brief Summary: “This image taken with the NASA/ESA Hubble Space Telescope shows JO204, a ‘jellyfish galaxy’ so named for the bright tendrils of gas that appear in thi”

16-Apr-2023 – The Weirdest Dracula Movie Adaptations

Brief Summary: “Some things never go out of style, and Dracula is one of them. Bram Stoker’s novel helped to fully define the vampire in the cultural consciousness. A”

16-Apr-2023 – Pico3D: Open World 3D Game Engine for the PicoSystem (RP2040 Microcontroller)

Brief Summary: “Comments”

Code Project – Python Flask Top Ten Movies Site

So, I mentioned dumping the Flask Blog a while back, but then I decided that since I had managed to get it all working, it would be somewhat trivial to get it working on a subdomain, instead of a main domain, which had been my original plan to start with.  I was never too excited about dropping this project because I have a few ideas for little projects that I wanted to build that would actually work pretty well in Python and Flask, since it essentially adds a direct path to running a back end style script and a front in interface.  Part of my frustration had come from trying to integrate OTHER Flask projects into the same website and Python code.  Specifically the Top Ten Films website.  

So I stripped out all of the work I had done on integrating the Top Ten movies site, and got the bare Blog running on smallblog.bloggingintensifies.com.  That’s not a link, don’t bother trying to go there, there is nothing there (More on that in a bit).  In this process, I got to thinking, I could run separate Flask Instances, one for each project, though I feel like that’s probably kind of super inefficient for server overhead.  I went and did it anyway, with the Top Ten Movies site.

Which worked fine.

At this point, I realized, I had a working copy of this website to work with and test.  A lot fo my previous frustration was adapting and merging two Python files, which share some redundancy, which share the same names on some secondary files and variables.  I could now, modify the Top Ten Movies code, and test it, to remove the problem duplication.  Satisfied, I shut off the Flask Blog, and merged the code again, and, it worked!  Worked as expected.  I did update the code a bit more again to add in the user/admin features of the Blog to the Movies page, so no one else can change the list.  

I also changed the subdomain from smallblog.bloggingintensifies, to flask.bloggingintensifies.com.  I mostly plan to use this sub domain to show off Flask Python projects, not just this blog I’m never going to fully utilize, so the name change makes more sense.

I also used some of the other HTML knowledge I’ve gained, well, the modern HTML knowledge, to reformat the Movie Site from how it was built in the class.  The class just had a long single column with ten movies.  I’ve changed it so number 1 is large and everything else is a smaller grid.  It’s much prettier looking now.  I doubt it changes much, if at all, but it’s a neat and fun project.