2023

Tuesday 2023-05-02 – Link List

Blogging Intensifies Link List for Tuesday 2023-05-02

28-Apr-2023 – Microsoft inks (another) cloud gaming partnership to support “emerging” segment

Brief Summary: “The move comes days after the company’s Activision Blizzard deal was blocked in the UK over fears it will allow Microsoft to become a cloud gaming pow”

02-May-2023 – Gran Turismo’s first trailer makes it seem like the movie hates gamers

Brief Summary: “SonyThere have been a number of video games that made for fantastic cinematic adaptations, but everything about the first trailer for Sony’s upcoming “

26-Apr-2023 – AT&T-backed satellite can pick up regular phone signals from space

Brief Summary: “Image: AST SpaceMobileA groundbreaking phone call between Texas and Japan has occurred that could eventually help set the stage for a globally accessi”

29-Apr-2023 – Vinyl

Brief Summary: “They probably don’t own DNA Lounge slipmats, either. Half of Vinyl Buyers in the US Don’t Have a Record Player: One might think that the rise in viny”

28-Apr-2023 – Kids’ coding languages

Brief Summary: “Programming is becoming an increasingly useful skill in today’s society. As we continue to rely more and more on software and digital technology, know”

Code Project – JavaScript Pixel Camera

Sometimes I do projects that end up being entirely fruitless and pointless.

Ok, maybe not entirely fruitless, but sometimes I get caught up in an idea, and end up essentially just sort of, reinventing the wheel, in a complicated way. For starters, I got caught up with this little tutorial here: https://thecodingtrain.com/challenges/166-image-to-ascii . It uses JavaScript, to convert the input from your webcam, into ASCII art. It’s a nice little step by step process that really explains what is going on along the way so you get a good understanding of the process.

And I got it to work out just fine. I may mess with it and add the darkness saturation back in because it helps bring emphasis to the video but the finished product is neat.

I then decided I wanted to see if I could modify the code to do some different things.

Specifically, Instead of ASCII characters, I wanted it to show colored blocks, pixels if you will. I managed to modify the code, and the output is indeed a pixilated video, but it’s not video, it’s constantly refreshing text. The problem is, it’s writing out a page where every block, is wrapped in a <font> styling tag, which means it’s writing out a ton of extremely dense HTML code and pushing it out, so it’s a little weird and laggy and pretty resource intensive to run.

I also image, there is a way to simply, downsize the input resolution, and upscale the video, to achieve the exact same effect.

One variant I made also just converts images to single page documents of “pixels”. but, ugly font based pixels, to achieve an effect you can get by resizing an image small then large.

Like I said, kind of fruitless and pointless, but I got caught up in the learning and coding part of things.

I also may go ahead and do some additional modifications to the code to make things a bit more interesting. I could try using it to make my own Game Boy Camera style interface, for example. Then make it output actual savable pictures. I found a similar project to that online but it would be cool to code my own up and give it an actual interface.

Anyway, here is the code for the jankey video JavaScript, sketch.js first then index.html after. Also a Demo is here, though I may remove it int he long run, especially if I make an improve project.

let video;
let asciiDiv;

function setup() {
  noCanvas();
  video = createCapture(VIDEO);
  video.size(48, 48);
  asciiDiv = createDiv();
}

function draw() {
  video.loadPixels();
  let asciiImage = '';
  for (let j=0; j < video.height; j++) {
     for (let i = 0; i <video.width; i++) {
      const pixelIndex = (i+j * video.width) * 4;
      const r = video.pixels[pixelIndex + 0];
      const g = video.pixels[pixelIndex + 1];
      const b = video.pixels[pixelIndex + 2];
      const pixelColor = "rgb(" + String(r) + "," + String(g) + "," + String(b) + ")";
       // console.log(pixelColor);
//      const c = '<font color=rgb('+r+','+g+','+b+')>'+asciiShades.charAt(charIndex)+'</font>';
      const c = '<span style="color: '+pixelColor+';">&#9724;</>';
      asciiImage += c;
    }
    asciiImage += "<br/>";

  }
  asciiDiv.html(asciiImage);

}

index.html:

<!DOCTYPE html>
<html lang="en">
  <head>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/p5.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/addons/p5.sound.min.js"></script>
    <link rel="stylesheet" type="text/css" href="style.css">
    <meta charset="utf-8" />

  </head>
  <body>
    <main>
    </main>
    <script src="sketch.js"></script>
  </body>
</html>

Dodie – Hot Mess (RSD Vinyl)

Released – 2022.09.30
Vinyl – 2023.04.22

I am not real sure why Dodie put out another EP, Hot Mess, as a follow up to her first album Build a Problem. Following her online suggests that she writes well, a lot of music, feels like there would be plenty for a while album. I mean, yeah, there is some of it that’s kind of weird and a bit banal, but that didn’t seem like it held back her album. But here we are, with a fresh, 4 track EP.

I also want to take a moment to talk about this particular release, as I’ve picked this album up from the Record Store Day exclusive release version. I don’t believe it’s available on Vinyl otherwise, nor do I know if there are plans to release it later, but this release is a special translucent vinyl disk, and man it’s so very neat looking. I know this isn’t the first translucent disk ever released, but it’s the first one I have. This is the sort of thing I hope to, somewhat, limit my vinyl collection to, these neat special releases.

The album itself had 4 tracks total, 2 on each side of the record. I very much greatly prefer the tracks on side A, versus side B and it’s currently the album I have sitting on my turn table to just “push play” on occasionally.

Side A has Dodie’s last two singles on it, and similar to my complaints with Build a Problem, both of these tracks feel a bit more “complete” than the Side B tracks. The opening track is the title track, Hot Mess, it hits most of the “Dodie high points” with some wonderful harmonies and a subtle build up of some string based backing tracks. It’s quite nice and despite being a pretty short track, it feels about right on length.

The second track, Got Weird is the catchiest track on this EP. The hook is really nice and the lyrics on the whole are super catchy and clever. If Hot Mess is “Dodie doing music,” then Got Weird is “Dodie doing lyrics.” Though it does have this really incredible temp and time change shift near the end. Plus this, really weird video.

Side B starts out with Lonely Bones, a simple number that doesn’t push anything too ambitious but has a nice happy tone going to it. It wraps up with No Big Deal (I Love You) which is a super low key dreamy and quite beautiful song. Neither of these tracks are necessarily bad, which kind of feels like what I was implying above, I just, generally prefer more upbeat tracks in general. If I am going for this sort of mood, I’m more likely to go with something purely instrumental.

The EP itself is pretty good. Unless you really want the vinyl, I’d say it’s perfectly fine to experience it all through more, modern means as well. I will add that while Dodie isn’t necessarily my favorite artist, I really like how she structures her songs and incorporates the mixing in of a lot of less common instruments in this style of modern music. It gives her tracks a pretty unique sound. She also pushes a lot of emotion through her lyrics which makes it all very interesting to listen to and deconstruct.

Wednesday 2023-04-26 – Link List

Blogging Intensifies Link List for Wednesday 2023-04-26

25-Apr-2023 – Godzilla vs. Kong 2 Just the Start of a New Phase of MonsterVerse Stories

Brief Summary: ”
Launched in May 2014 with the Godzilla reboot, Legendary Pictures has tapped into two of the biggest – in terms of size and recognizability – cinemat”

25-Apr-2023 – Life-Size Gundam Can Now Play Rock-Paper-Scissors

Brief Summary: “The life-size Gundam down in Yokohama — you know, the one that can move and stuff — has just been given a major upgrade: it can now play rock-paper-sc”

25-Apr-2023 – ‘Unprepared’ Twitter among tech firms to face tough new EU digital rules

Brief Summary: “Designation as ‘very large online platform’ along with 16 other major names means big penalties for breachesTwitter is among the tech firms that will “

26-Apr-2023 – Bitcoin is terrible for the environment – can it ever go green?

Brief Summary: “Cryptocurrency mining uses huge amounts of energy, but activists are urging for a change in its code to reduce its environmental impactOn the corner o”

26-Apr-2023 – AT&T Helps Complete the First ‘Space-Based Voice Call’ Using a Standard Smartphone

Brief Summary: “Satellite manufacturer AST SpaceMobile partnered with AT&T to make the first two-way audio call using satellites with a standard smartphone. “The init”

26-Apr-2023 – Microsoft’s Activision Blizzard acquisition blocked by UK regulators

Brief Summary: “Illustration by Alex Castro / The VergeMicrosoft’s $68.7 billion deal to acquire Activision Blizzard has been blocked by the UK’s Competition and Mark”

25-Apr-2023 – Pre Order: Super7 Ultimates Star Trek TNG Wave 2 Captain Picard, Worf, and Guinan

Brief Summary: “Super7’s latest ULTIMATES! are ready to beam into your collection! Star Trek TNG Wave 2 features Captain Picard, Worf, and another chance at Guinan! P”

25-Apr-2023 – Japan’s first Moon landing has ended in failure

Brief Summary: “The Hakuto-R lunar lander. | Image: Getty ImagesWhat would have been the first private Moon landing has ended in failure after Japanese startup ispace”

Linear Quotes: Aurora

Linear Quotes: Aurora by Ketil Mosnes

Just for establishment up front here, I am a big fan of the musician Aurora. If we’re measuring by Last.fm scrobbles, which I like to do, she has very rapidly become my top scrobbled artist, of all time. But a pretty large margin. I saw this book posted by someone in a fan group on Facebook and it seemed like a pretty interesting, and probably less known bit of Aurora memorabilia, almost no one in the group was aware of it as far as I could tell. It’s also tricky to find, I had to order it from a bookseller in Norway. The book itself was pretty inexpensive, the shipping pretty much tripled the price.

Which is kind of the main negative, unless you happen to be somewhere that you can just buy this little book, it’s very very light on content. I don’t regret the purchase, but I was surprised that the book is much small is size than expected and roughly half of it’s few pages are photographs. The book itself is about the size of a manga book or a DVD case.

The book itself was written by a person who was able to travel around with Aurora’s crew briefly, though they aren’t really officially part of the grew. It contains a half dozen or so short interview excerpts and a bunch of photos. I will say, most of the photos are ones that I had never seen before, which was nice. Probably a side effect of the book being a bit of a lesser known artifact. There is a nice mix of behind the scenes photos and a few actual concert photos. They are a bit small though, given the size of the book, but it’s not like they are going to be torn out and displayed or something either. The photos themselves are clumped together in section, as opposed to mixed in with the text that relates to them, which feels like a side effect of using slightly nicer paper for the photo pages.

The real meat is the short interview parts. These are excepts from Aurora’s touring during 2016-2017. The writer also at least seems to be on pretty good terms with Aurora and it helps to give some fresh direction to the questions asked. It’s also worth noting for anyone not familiar with Aurora, she is, truly, absolutely, a unique and interesting person. There are plenty of in person interviews around on Youtube for examples of her all around oddness. She genuinely works to see the good in everything and to be good to everyone. The interview is dotted with lots of interesting takes on various things, I won’t go into detail on it all because well, that’s kind of the point of reading the book, but it’s definitely amusing at times, while sad at others.

I guess a good way to summarize it is to say she wears her emotions and herself not just on her sleeve, but on her entire self. If you’re a fan of Aurora, it’s certainly worth a read, and it’s a neat little book. I certainly enjoyed it, despite how short it is.

On another side note, the descriptions on this book suggest that “Linear Quotes” is a series, but as near as I can tell, this is the only one. Which is a bit disappointing because I would actually like to read more books like this.