Ikta's Ponder Corner

With the rise of AI art, it's incredibly easy for everyone to produce “art”. A Ghibli-style illustration, an oil painting-like rendition of your favorite photo. They say they democratized art, making it accessible to the masses. Bullshit. TL,DR: It's slop

I've been asking this whenever I find someone that praises these algorithm generated images. Here's an example of the general flow of the conversation:

  • A: “Look at this Ghibli art I made out of a prompt”
  • Me: “Why do you think it looks good?”
  • A: “Well... it's just is! don't you think it looks good? it looks like Ghibli made it!”
  • Me: “Why do you think Ghibli illustration looks good?”
  • A: “The colors... the simpleness... how the people are drawn? I think they look good?”
  • Me: “Why do you think that combination of color and art style looks good?”
  • A: “I don't really know they just looks good to me”

Do you see the difference? For me I think it's the superficiality of it, it's surface level appreciation, it's just what they think “art” should look like so they mimic it. They don't know what is the purpose of it.

Let's step away from illustration – there's an argument to be made that they are laborious while algorithm generated images are easy – let's talk about something simpler. Photographs.

They have democratized photography since the invention of the first phone. Everyone nowadays have a small camera they can use to take picture. But as you might have known, certain images belongs to be purged every time you ran out of storage, while others are to be shared, to be put in competitions, to be paid for. What's the difference between those?

A good photograph has Intentions. A professional photograph are full of intention, the white balance to portray the scene, the composition to decide where your eyes are drawn, the story that you want to tell about the picture, what you want the audience to feel when they see the picture.

Even a dinky photograph taken from a 3DS camera can be a good photograph when it has intentions. Remember all of those photograph of you and your friend on your first trip together? They're blurry, they're a mess, it's too dark sometime, your faces are overblown with the light and the overcompensation. But they are good photographs, because you can feel the intention behind it. They're there as a reminder of the good times you have with each other. The audience intended is your friends that came with you on the trip, and you took those picture with them in mind. It doesn't really matter what others thought.

Algorithm Generated Images, especially those exist to mimic other art styles, miss this point. Each stroke, each shape of an illustration are drawn in that way with intention. They designed the animation to portray a certain feeling. The only intention that exists in an algorithm created imagery is the surface level detail from the prompt. That's why when you look at the details, it broke down.

At the end of the day, I hope my takeaway from this mini rant is that to create any art you don't need any algorithm or AI, all you need is a medium, and intention.

You open your phone, you open Twitter (now X), you'll be served some news and opinions from people. Maybe some funny Tweets (now Posts) once in a while.

Open up YouTube, you'll see a funny video on your front page, how fun, after that from the “Watch Next” page you'll click the next video essay, it's a clip of a podcast, it was quite insightful, you heard something you didn't know.

You looked up what was that thing you heard about in that podcast on Google, clicked the first link... not quite enough, the second... OK... you kinda get it... It's now time to work, you're glad your morning is somewhat productive


This is your typical person's morning. Nothing wrong with it, until you notice something interesting, most of the information fed to us are picked by an algorithm.

In 1984, Ken Thompson wrote “Reflections on Trusting Trust”. In it, Software Engineers at the time are slapped with the fact that unknowingly, there is an implicit trust given by programmers to the compiler and the system in which their code runs. I won't rob you of your first time discovery of paper, if you've never read it, please do. After you've read or watched through it I want you to consider aforementioned “typical morning” scenario.

In this blog post I want to raise concerns on us as society treats information and their “compilers”, that is, the algorithms.

So many of us unknowingly gave trust that these systems and algorithms are serving us “true” information, and not informations presented in a way that is poisoned. These algorithms runs in a black box, created and tweaked by companies with incentives to maximize profits. These algorithms are entrenched soo deeply in our usage of technology to get information that we usually don't even consider it!

Consider “Googling”, an act to search for “true” information on the internet that is considered the bare minimum action, even that is plagued by a ranking algorithm controlled and owned by Google. Who is to say, that Google, is never malicious actor in manipulating these search rankings?

Of course, as Ken Thompson said, you can't trust code that you did not create yourself, to an extent. That is why there are things like dependabot that checks for supply chain issue, a whole community of security engineers checking compiled code to find malicious behaviour, that's exactly why we love open source software because we can check the code itself.

The point of this blogpost is not to fearmonger. Not to say that you should never trust any algorithms. The point is just to highlight the kind of implicit trust that should not be given carelessly to these algorithms owned by companies with not so noble motives. I think they should be under more scrutiny, especially with the rise of LLM, that also, controlled by for-profit companies.

Hi Internet!

If you have to know one thing about me, is that I like collecting music CDs. I like to look at their album art while listening to music, and I like having it at my shelves to look at, it usually comes with nice artworks in it, and (I think) it gives more to the musician compared to streaming. I'm not a snob and think that somehow, they're superior in quality or whatever, I don't really care about those things. What I do care about though, is that using physical CDs are actually kind of a pain.... You have to put it out of the case, put it in the player, navigate the menu sometimes, and because my only CD player is a PS3, the album art doesn't even show up! Outrageous! That's why I built this device for myself.

The Idea

I want to have a device that, when it scans my physical album, it plays it on my desired device. To accomplish that, I chose RFID. No particular reason other than it's the most convenient, and it also has nifty sticker versions that I can stick to my physical album, that way I can display the album and read it at the same time. Perfect.

Spoiler on how the final prototype looks

Full Code can be seen here.

Parts

In this project, I'll be using an ESP32-WROOM-32 Dev Kit Board that I bought online. You can use whatever board you want, just make sure the libraries work for them. For the reader I used the very cheap RFID-RC522 because the seller where I bought the ESP32 from also sells this. If you don't have it, you also will need some header cables to connect the pins from the RC522 and the ESP32.

MIFARE RFID

So, the RFID sticker that I bought is a MIFARE Classic 1k sticker. That means it has 16 sectors, with each sector have a 4 block, and each block having 16 bytes. If you just count that, that means there's 16 * 4 * 16 = 1024 (1k) byte in each card. But not all of the blocks are writeable. For each sector, there will be 1 block reserved as a Sector Trailer, that means from the original 1024 byte, 16 * 16 = 256 bytes are a reserved bytes and cannot be used to store data. Other that that, one block in sector 0 is reserved for manufacturer data, so your card UID and other data from the factory is stored here. That left us with 784 bytes of data left. Plenty of space for storing YouTube links.

Sector Diagram

We need to find a way to format our link and store it in the card. I used a very simple way in which I defined the max length of string as 144, defined the start block where I want to start writing the data, and with some maths calculated where the end block should be. Then just used the MFRC522v2 library to write or read the data to the blocks. Done!

Reading and writing is done, all we need to do is just find a way to send the ESP32 some write information and find a way for the ESP32 to control my TV.

HomeAssistant and MQTT

I don't have an NFC reader / writer. I can use my phone, but I can't be bothered to calculate and manually write to each block of my RFID card, that will be too much work! I want for this to also be able to write my RFID. I don't want to it to write all the time, so I want it to be toggleable between read and write mode. I also want to insert the value of what I want to write from somewhere else so that I don't need to tinker with ESP32 all the time. That's where HomeAssistant comes in clutch.

With HomeAssistant, I can create Helpers. It's a simple UI that I can use to trigger things in HomeAssistant, I created a toggle and a text input field.

Helper

We can setup the helper toggle switch with an automation to send message MQTT to a configured topic with a retain mode. This way whenever the ESP32 connects to the MQTT broker, it will receive the request on what is the current mode and changes it internal value accordingly. This is the same for write value.

Mode

For playing the read URL, we also rely a lot on HomeAssistant. Our device when reading the RFID will send the URL to a certain topic, HomeAssistant listen to that topic and triggers an automation.

Flow

In my case, I had to add one more action before calling play media on my Google TV. Which is pressing the OK button (DPAD_CENTER) before playing media, in order to escape from screensaver as play media doesn't work from screensaver mode (it works from power off and other states but just not screensaver).

#IoT #Arduino #HomeAssistant #MQTT

Summary:

As a child, Shimazaki Shingo was kidnapped by an international terrorist organization and raised as their combat agent. After 30 years, he finally made it back to his peaceful hometown in Japan. Will Shimazaki be able to live a peaceful life in this new world? From the large-scale newcomer Goten Hamada and the artist Takeshi Seshita, the creator of “Harn – Grass, Iron and Sheep -” and “Invincible”, an action story of a man who lives between everyday life and the battlefield!

Read in Mangadex


If you've read the old classic “The Fable”, this story is going to be familiar with you. A highly skilled retired killer / soldier is put in a normal everyday live where he has to adjust to the cultural difference in his harsh environment to the peaceful everyday Japan. But, as it did with The Fable, it's harsh directly adjusting with a new environment. To their credits, both Shimazaki Shingo and Akira Sato do try their best to adjust, but troubles seem to keep coming to them, as we see them uses their trained abilities to get out of situations. But the difference ends there.

While the fable is (arguably) a more lighthearted story of “What if this very cool assassin dude looks like an ordinary person”, Shimazaki's story is a bit bleaker. He's not some child trained assassin born and raised to be the ultimate killer, he's much more human than Akira in The Fable. We can see him have emotions of discomfort, embarrassment, and even traumatic memories of his past. This manga focuses more on the realistic aspect of what a person would be going through if we were to be kidnapped and being forced against their will to be a killer.

Shimazaki is shy, he's often nervous about things, he worries if he's doing a good job adjusting to normal life. We see him talk his feelings out about this to the other people in their life. He uses his abilities to help the people around him, he's kind like that. But as we slowly being exposed to the extents of his abilities, we are also being shown his human and empathetic side. It creates this dilemma of us wanting him to show his cool abilities, but it's also clear that's he's enjoying his new peaceful life. This dilemma is even more clear that it's intentional by the author as we see at the end of each chapter the words “Shimazaki Shingo returns to the battlefield xxx days from now”. With each chapter that shows the humane and kind man is trying his best to return to normal life, we see the inevitability of him returning back to the battlefield that he wanted to get away from.

Of course, it's not all dark and gritty story, this isn't the DC cinematic universe movie. It's still a fun read, with comedy as the overall tone of the story, but with a dark story lurking beneath it. Overall, I say it's good enough to be followed.

#manga #action #hearthfelt