Saw this with my wife over three days because a certain someone kept falling asleep. It’s got a message somewhere in there and it definitely echoes things that I’m seeing nowadays. I think they had to rush it and didn’t really stick the landing.
This was definitely a movie that made me think about what 3 stars means.
Saw this with my wife over three days because a certain someone kept falling asleep. It’s got a message somewhere in there and it definitely echoes things that I’m seeing nowadays. I think they had to rush it and didn’t really stick the landing.
This was definitely a movie that made me think about what 3 stars means.
Something broke on the site and I don’t have the time or energy to fix it.
The premiere date for the Netflix adaptation of Liu Cixin’s Three-Body Problem trilogy by Game of Thrones showrunners D.B. Weiss and David Benioff inches ever closer and, well, I just really want this to be good (because I enjoyed the book series so much).
I feel that D and D are really lucky to be given a second chance on making something. They just got bored at the end of the Game of Thrones and I do not want fans of this new series to suffer the same fate.
All in all, I wish the best for everyone involved. I’m going to skip this one.
I like the fact that this film was different from what I would normally watch. It’s light and sometimes thoughtful about relationships. It’s got some dirty jokes in it as well so don’t watch this with the little ones.
My wife said the movie was stupid but she was the one who recommended it.
I like the fact that this film was different from what I would normally watch. It’s light and sometimes thoughtful about relationships. It’s got some dirty jokes in it as well so don’t watch this with the little ones.
My wife said the movie was stupid but she was the one who recommended it.
More and more web documents are appearing that consist of nothing more than a collection of `div` elements. In most cases, better use of CSS selectors could be used to avoid overusing the `div` element.
This is a site with a lot of great examples of what you can do with CSS and semantic HTML.
Lillie snug in her blankets.
Setting up in a coffee shop. I don’t know what I wilwil focus on today but it will be delicious.
I’m at the point where I’m looking at contrived examples and edge cases where my theme has issues. I don’t write like this but there might be someone who does. In the above picture, I see to problems the first is that the horizontal rule doesn’t really match up with the colors of the site. The second more egregious is that the line is ducking underneath the image.
I used the Inspect feature of the browser to check out what was determining the behavior of the line and saw that the ducking was caused by setting overflow: visible in the normalize.css. This isn’t the first time that I’ve run into an issue with something like this. As the browsers move closer and closer to interoperability, I’ve been questioning whether having normalize.css as part of the theme is important.
Ultimately, I decided to add the following css rule to fix the issues and will have to reevaluate later.
hr {
color: var(--accent);
overflow: auto;
}
Feeding the Robots
I’ve been reevaluating the meta tags I had defined in a previous post. I was happy that it passes the validation tests but I’ve been thinking about how I share my writing.
Original, I truncated the description fields because I read that it’s better for SEO. But why? Search is results are getting worse and worse. It’s ultimately up to whatever social network to take the information and display it. Going forward, I am using the .Summary for the description.
I also added a property that allows you to set your mastodon username if you’re using something other than micro.blog.
I tested putting all the meta comments into one line to reduce repetition as in the following.
Unfortunately, the W3 validator marks it as invalid. I switch it to having multiple lines that use the same content. I thought about contacting the people who set the criteria for the test, but decided not to at this time.