February 2023

Code Project: VLC Portable Playlist to Text Dump

It’s kind of funny how one post can lead to another sometimes.  This one is pretty basic but it also just shows a bit how useful I find knowing my way around computer systems to be.  Yesterday I posted about my little annual music playlists.  And as part of that, I wanted to actually post the playlist. I am pretty sure there is a fairly universal “playlist file type” out there and being open source, I had assumed that VLC on my phone stored the playlists somewhere in playlist files.

That assumption was wrong, it uses a .db file.  A little portable database.  There is an option to dump this file to the root of the phone, presumably for backup purposes, but it’s also useful to just browse it like I am doing here.  The file itself can be opened and browsed with SQL Lite’s DB manager.  It’s standard databases inside for tracks and artists and playlists.

Fortunately, I have had some experience dealing with database queries, so I set about building what was needed tog et the data I wanted.  Pull the Playlist I want, in this case “2023 Best” but I could change that to do any available Playlist.  This gives the tracks by id, but the tracks themselves are stored in a separate table for media.  So that needs joined in.  The media table stores track names, but not artist names, so an additional join is needed to get the artist names.  This complicated things a bit because both the playlist table and artist table have a column “name” so more clarity needed to be added.

The result was this little query that dumps out a basic table of Artist and Song title.

SELECT Artist.name, Media.title 
FROM Playlist
Inner Join playlistmediarelation ON playlist_id=id_playlist
Inner Join Media ON id_media=media_id
Inner Join Artist ON media.artist_id=Artist.id_artist
WHERE Playlist.name = '2023 Best'
ORDER BY Artist.name

Now, I could have done some cute clever trick now to merge the two into a new column and add in a ” – ” between but it was easier to drop it all into a notepad file and do a fine/replace on the weird space character that it stick in between the Artist and track title.

The added bonus here is I can easily use this query again anytime I want to dump a Playlist to text.

Friday 2023-02-03 – Link List

Blogging Intensifies Link List for Friday 2023-02-03

02-Feb-2023 – The Xbox 360 store won’t be closing down, despite what an Xbox support page says

Brief Summary: “An Xbox 360 and a Kinect. | Photo by Sam Byford / The VergeMicrosoft will not be closing down the Xbox 360 Marketplace, the company tells The Verge, e”

02-Feb-2023 – Now ChatGPT Can Make Breakfast For Me

Brief Summary: “The world is abuzz with tales of the ChatGPT AI chatbot, and how it can do everything, except perhaps make the tea. It seems it can write code, which “

02-Feb-2023 – On the state of Android apps

Brief Summary: “Unlike the title may suggest, this is not a post about the fact that Android apps are being released later than iOS apps, or that Android apps are get”

02-Feb-2023 – New Humble Bundle celebrates Black Creators and Characters

Brief Summary: “To go along with Black History Month, the folks at Humble Bundle have put up a bundle of games to celebrate Black Creators and Characters.”

02-Feb-2023 – Elon’s New API Pricing Plan Seems Perfectly Designed… To Help Send More Users And Developers To Mastodon

Brief Summary: “Huh. It had actually felt like quite some time since Elon Musk had last done something so stupid as to send a new bunch of users to Mastodon. But, app”

02-Feb-2023 – Twitter’s Latest Chaotic Move Will Kill the Site’s Best Bots, Account Owners Say

Brief Summary: “On Wednesday, Twitter announced that starting on February 9th, it would no longer be supporting free Application Program Interface (API) access, which”

02-Feb-2023 – MicroPython: Send Sensor Readings via email with the ESP32/ESP826 (BME280)

Brief Summary: “In this tutorial, you’ll learn how to program the ESP32 and ESP8266 boards with MicroPython to send sensor readings to your email. As an example, we’l”

02-Feb-2023 – The Blacklist Season 10 Will Be the End of a TV Era

Brief Summary: “After a few days of fan frenzy over an unverified Instagram photo announcing the final season of The Blacklist, NBC confirmed on Feb. 1, 2023, that se”

02-Feb-2023 – [Epic] Dishonored: Death of the Outsider & City of Gangsters (Free / 100% Off)

Brief Summary: “submitted by /u/Musth [link] [comments]”

02-Feb-2023 – [Humble] So you want to try out Pathfinder? Bundle. Includes PF2e Core Rulebook, Bestiary, Gamemastery Guide, Abomination Vaults Adventure Path, Secrets of Magic, etc. ($25 / 94% off)

Brief Summary: ” submitted by /u/WannabeCuteGayGirl [link] [comments] “

02-Feb-2023 – Din Djarin wields the Darksaber on The Mandalorian season 3 poster

Brief Summary: “With just a month to go until The Mandalorian returns for its third season, a new poster has arrived online for the acclaimed live-action Star Wars se”

21-Jan-2023 – Pluralistic: Tiktok’s enshittification (21 Jan 2023)

Brief Summary: ”
Today’s links
Tiktok’s enshittification: The company manually allocates surplus to creators, and they can take it away again, too.

Hey look at this:”

02-Feb-2023 – The 5 Best Prompt Engineering Tips for Beginners

Brief Summary: “Are you ready to level up your prompt engineering game? This blog post will give you the inside scoop on the 5 best tips for beginners in prompt engin”

30-Jan-2023 – ChatGPT Prompt Engineering – How to Build a Strong “Sequence Prompt”

Brief Summary: “ChatGPT Prompt Engineering is a crucial area in tech that involves designing and creating AI prompts to enhance user experience. 

One type of promp”

12-Jan-2023 – How to Write 10x Better Prompts in ChatGPT

Brief Summary: “Are you tired of getting irrelevant or nonsensical responses from ChatGPT? Want to know the secret to crafting prompts that guarantee 10x better respo”

02-Jan-2023 – How to Create Consistent Characters in Midjourney

Brief Summary: “Are you struggling to create consistent character designs in Midjourney?

It can be a challenge to get your images to stay consistent when using Gen”

Wednesday 2023-02-01 – Link List

Blogging Intensifies Link List for Wednesday 2023-02-01

01-Feb-2023 – Evangelion Stage Play to Tell Original Story

Brief Summary: “New story casts Eva pilots trying to find new energy source on devastated Earth”

01-Feb-2023 – [Humble] Celebrating Black Creators & Characters: Mafia III, Shadow Man Remastered, Shaq Fu: A Legend Reborn, Jay and Silent Bob: Mall Brawl, An Airport for Aliens Currently Run by Dogs, Swimsanity!, Marlow Briggs and the Mask of Death, and Semblance

Brief Summary: ” submitted by /u/epeternally [link] [comments] “

01-Feb-2023 – [IndieGala] Hamsterdam ( 100% OFF / FREE )

Brief Summary: ” submitted by /u/aniruddhdodiya [link] [comments] “

01-Feb-2023 – Bad Boys 4 Announced By Will and Martin

Brief Summary: ”
The Baaad Boooys are back! Yes, that’s right Will Smith and Martin Lawrence are returning for Bad Boys 4! Will Smith and Martin Lawrence first appear”