Daft Punk Random Access Memories (Drumless Edition) Album Review Pitchfork

What are we doing here? Honestly, what are we doing with this “drumless” edition of Daft Punk’s Random Access Memories? What possible lessons can we learn from 2023’s second re-edition of Daft Punk’s third-best album, in which every sonic detail is the same, other than the absence of drums?

The first thing that I did with this album was listing to Giorgio by Moroder and couldn't get into it because it just seemed off.

I took a step back and decided to listen to the entire album from the beginning with the view point that this is supposed to be different.

I’m listening to it again as I write this and I think it falls some where between a cover version and an acoustic mix. I think the article that I linked to does a better job of explaining it.

For me, the cognitive dissonance sometimes gets me out of the grove. The album moves from something that I would look at to pull songs from for a dance party to an album that I would look at for a speakeasy; a party where people are expected to talk over it.

That’s not to say it’s a bad thing. It’s definitely a different take on a record that I listened to on a regular basis.

Indie App Santa 2023 Edition

Daily gifts from your favorite indie developers.

Discover, support, and celebrate independent iOS developers and make your holiday season merrier with daily surprises!

I've used this for several years. I've found a couple gems and it's really cool to see fresh takes on apps.

What's in a title?

A frequent type of post that I write is a small little review of different forms of media. Usually a movie, but I’ve been adding more tv recently. To quickly differentiate them, I’d put Media Review in the title in the hopes that whoever it helps the reader.

There is a small problem in that I’m populating my blog using letterboxd and it goes directly to the blog. I then have to rename the post, add the alt text to the movie poster, and add the Media Review category.

I’m going to be changing this process going forward.

I’ll continue to mark the post in the category for Media Review but leave it from the post name. In this way, I won’t have to worry about dead links related to post titles changing.

Please let me know if you’ve read any of the reviews. All my writing is for me first, but I do love feedback sometimes.

Labarum: Header Links

The other day, I wrote a micropost about how I was deliberating on <a><h1>...</h1></a> versus <h1><a>...</a></h1>. I joked and said that I was only thinking about it for 59 seconds and as you are reading this post it has been a lot more than that.

Strictly HTML 4 speaking, headers are block elements and anchors are inline elements. But, in practice, I’ve seen anchors around headers in links and images for just as long.

But which one do I want to use?

I decided that I would do some experiments in my test environment and saw that the touch targets would be just a little larger if I switch the anchor to be outside of the header. Unfortunately, this would also mean that I would have to do a minor rewrite of the CSS.

Showing the initial state of links and headers
The previous iterations of the theme had already made a rule for this.

Another question that I had is what is more accessible?. I didn’t want to put effort into this if it meant that it would be a problem for people. So I enabled voiceover and navigated the page using the keyboard to get a sense of what it would sound like.

After listening to the two different versions, I created two rules to match up with what I had previously. I ran into a small snag as header is a block element that spans the width of the container.

Labarum links headers snag
I considered leaving it like this.

I then set width: fit-content to make it fit. As a draw back the box-shadow that I was using to underline the link only shows up on the last line and make long titles look a little weird to me. I considered added a span within the header but that feels like too much work.

Monaspace

Texture Healing is a novel technique that evens out the density of monospaced type, bringing it closer to how proportional type has looked for centuries. Texture healing preserves the monospace grid, and works in most editors without needing new software or editor plugins.

Currently trying this font out with the Krypton variant. It's fun to read and see new fonts.

Media Review: 📺 The Curse (2023)

The Curse poster

Link: 📺 The Curse (2023)

Overview

An alleged curse disturbs the relationship of a newly married couple as they try to conceive a child while co-starring on their problematic new HGTV show.

One word: Awkward.

I only saw the pilot and it was one of the most awkward things I’ve ever seen on tv. It’s supposed to be that way… I think. 126% not for kids. I don’t know if I’ll come back to see the other episodes because I don’t have Show Time, but it was intriguing enough that I did listen to a podcast about the second episode in order to find out what happens to the “cherry tomato boys”.

Here is a link to the official trailer for The Curse

Life of the Party, 2018 - ★★★

I saw this one with my wife. We both love Mia Mia Rudolf and Melissa Mckartney. We thought it was in the same vein as Bridesmaids and we were rewarded with big laughs.

Media Review: Life of the Party, 2018 - ★★★

Movie Poster for Life of the Party

I saw this one with my wife. We both love Maya Rudolph and Melissa McCarthey. We thought it was in the same vein as Bridesmaids and we were rewarded with big laughs.

Update: Apparently, we don’t love them enough to get their names spelled correctly.

Labarum: A small comment

I updated the styling of comments individual posts. I actually rolled this out while ago but haven’t written about it yet.

Background history (feel free to skip)

Every once in a while, I get a response to one of my posts on Micro.blog. The Micro.blog service manages the comments for me and allows me to include them by adding conversation.js to the theme.

The first iterations of the Labarum theme would have the comments of a post show up on the index page. This was nice when I had a couple comments, but I had a few posts that had a dozen replies as part of a conversation.

I decided that if I have new people coming to an index or category list, they would be better served to see what I’m writing about first and then see the comments when they are looking at the individual post.

I moved the comments to load in single.html and was ok with them being indented a little bit to denote that they were comments.

Showing comments having additional margin compared to articles, headers, and footers.

You can find an example of a post with a reply in this post about how I lost my journal.

Promoting the comments

After living with the change for a couple of months, I’ve changed my mind about this design and want the comments to stand out as much as the article. The first step was to change margin to margin-top in the CSS rule for the comment.

The conversation.js places the structure like the following into the final rendering of the webpage

<div class="microblog_conversation">
	<div class="microblog_post">
		<div class="microblog_user">
			<img class="microblog_avatar" src="https://avatars.micro.blog/avatars/Number/Number.jpg" width="20" height="20" style="max-width: 20px;">
			<span class="microblog_fullname">Some User</span>		
		</div>
		<div class="microblog_text">
			<p> Some Text </p>
		</div>
		<div class="microblog_time">
			<a href="https://micro.blog/UserName/UniqueIDNumber">Date</a>
		</div>
	</div>
</div>

The name and numbers have been changed to protect the guilty.

Next, we have to add more styling for the avatar picture. It’s hardcoded to be 20 with no units and a max-width but thankfully, it has a class that we can add rules to.

.microblog_avatar {
/*     border-radius: .5rem; */
}

I had a stub for this in the style.css but only had a comment there for future/present me to fix. Thanks for nothing past me. I then did a search and past me actually defined this rule twice!

.microblog_avatar {
	display: inline;
	margin-left: inherit;
}

I’m letting you, the reader, know this because I’m going to invest some time into learning how to clean up the CSS and to show that pobody’s nerfect.

The last comment of this post

After identifying the different components, I played around with the idea of making it looks similar to the way I have the author information at the end of the page. I decided not to at this point in time to focus on the some of the other aspects of the site.

I think I am starting to hate Black Friday

We all love a deal and the experience of getting something more for our money. I love the idea of investing in something that makes my life a little better in some way whether it’s a utility or pure entertainment.

What gets to me is the fact that this day lasts a whole month and the fact that some of these savings are from markups that happened before they went on sale. It’s mind game that is being played on our society at large.

But, that isn’t to say some of these aren’t true deals. And I do appreciate some of the software/hardware packages that become available to me. If you are interesting MacStories.net has a wonderful article with links to discounts.

Unfortunately, I have to look at these with a bit of FOMO. Honestly, I don’t have much money in the budget for it. But, maybe next Black Friday month.