banzainetsurfer has added a photo to the pool:
With a height of 1841 meters, Mount Zao is one of the most prominent mountains in the Tohoku Region, sitting on the border between Yamagata and Miyagi Prefectures. The active volcano features a beautiful crater with lake, known as Okama (御釜) due to its resemblance with a traditional cooking pot. The crater cannot be approached but viewed from a distance outside of winter.
Source: www.japan-guide.com/e/e7929.html
Female lawyer tells CNN’s Christiane Amanpour about alleged ‘escalation of attempts’ as second woman also speaks out
Two women who have accused the chief prosecutor of the international criminal court, Karim Khan, of sexual abuse have spoken out about their claims against the prominent British lawyer.
In an interview with CNN’s Christiane Amanpour on Thursday, an ICC staffer identified by her first name, Sarah, spoke publicly for the first time about her allegations, which have engulfed the court over the past two years.
Continue reading...Two women meet on a train and tumble into an all-consuming affair told from both sides – who have very different stories
I’ve been craving a sandwich: soft white roll, roast chicken, sharp cheese. A bright little cut of tomato. After I finish this review I’ll walk up to the supermarket and buy myself a hot chook. Sink my teeth in.
It wasn’t my idea. I caught the craving from Laura McPhee-Browne’s Worry Doll. One of her characters longs for the same sandwich, made just so: “there is a particular amount of cheese and chicken that she requires for it to feel the way she needs it to when she chews and swallows.” I know that feeling. There is nothing cheap about cheap pleasure. And Worry Doll understands pleasure.
Continue reading...This adaptation of author Elin Hilderbrand’s novel looks absolutely beautiful. It’s a warm, pleasant show whose approach to putting this group of female characters front and centre is highly refreshing
The Five-Star Weekend is the perfect beach watch, adapted by Bekah Brunstetter from the perfect beach read of the same name by bestselling beach‑read author Elin Hilderbrand. It blends schmaltz, melodrama, jokes and genuine feeling in perfect proportions throughout its eight episodes. It is escapist entertainment that contains, in its tale of five female friends unwinding and spilling secrets over a faultlessly curated long weekend in Nantucket, absolutely nothing to distress us. Come on in, it says warmly with every gorgeous shot of island coastline, the water’s lovely.
The weekend is organised by a tradwife-inflected culinary influencer, Hollis (Jennifer Garner), who has recently lost her husband, Matthew (Josh Hamilton), in a car crash. This all happens off screen; after the police arrive at the house to break the news, we cut swiftly to six months later. It’s the equivalent of a children’s book killing off the parents without a backward glance so the fun can begin.
Continue reading...The England head coach took a risk by selecting injury-prone players and ignoring creative options such as Phil Foden, Cole Palmer and Morgan Gibbs-White
When Thomas Tuchel became England’s head coach he spoke repeatedly about wanting his side to adopt a Premier League style. He wanted intensity, pace, full-throttle football. Tuchel offered clarity, his analysis was precise and his squad for the World Cup was built around the idea of overwhelming opponents with physicality and relentless running.
There were roles for specialists and places for individuals who could be trusted to bring the vibes. There were like-for-like alternatives in various positions and Tuchel was granted a lot of leeway. He was bold with his choices and could respond to questions about omitting the creativity of Phil Foden, Cole Palmer, Adam Wharton, Morgan Gibbs-White and Trent Alexander-Arnold by arguing that he had a vision and was going to stick to it.
Continue reading...Read more of this story at Slashdot.
Read more of this story at Slashdot.
When I was building this site, I was keeping it lean but perhaps a bit messy. It’s not a big complex site and I didn’t need to write CSS to maintain a big complex site. As such, I even wondered if I’d stick to any kind of naming convention.
Old habits are hard to break and I found anytime I tried to get away with just element selectors for something, it was clunky as I continued to iterate. Sure enough, the more I worked on the site, the more I moved back to my modular ways. But ultimately, that’s neither here nor there. For a site like mine—written and maintained by one person—what kind of naming convention I use is nearly irrelevant. (I say nearly because I don’t want to be obtuse just for the sake of it!)
With my projects over the last few years, I’ve used a few different newer CSS features and have enjoyed what they can do. Here’s a few of the things I put into this site...
I originally used clamp on The Snook Nook for the site title at the top of the page. I wanted it to feel balanced regardless of screen width. I adjust both the font size and letter spacing in this case, so that the title always looked proportional.
For Snook.ca, I wanted something that was big and bold on a large screen but wouldn’t fill up an entire phone screen. Again, clamp came in clutch.
font-size: clamp(2em, 4vw, 4em)
Clamp takes three values: the minimum, the preferred value, and the maximum. In this case, I wanted the font-size to be related to the screen width, which is where the vw units come in. The largest I wanted to go was 4em. This was eye-balled. There’s no special math here. Likewise, 2em still seemed reasonable on the bottom end and looked good for me.
I remember reading about this awhile back and it was a nice little thing to add to the site: text-wrap: balance. I just have it on the page title to avoid orphaned words and make them look a little more, well, balanced.
On the old site, I never loved how my headings looked over multiple lines because of the pencil lines I had on headings. As a result, I kept the titles shorter, on purpose. With this version, I wanted to get more creative with page titles, going longer if I needed to without it looking weird.
When Grid first came out, I was using it for larger, dynamic layouts like the restaurant grid on my Fifty site. Now, I find myself also using it for smaller elements. The article meta is a great example of this.

.meta {
display: grid;
justify-items: center;
}
Boom. All the items are center aligned and stacked. I probably would've defaulted to trying to use display: flex here but that would've required an extra declaration to adjust the flex-direction to column. (And using align-items instead of justify-items.)
.meta-before:before {
content: "";
display:block;
width:50px;
padding-bottom: 5px;
border-top: 2px solid var(--green);
}
The horizontal line is a pseudo-element that gets added into the grid stack before everything else. That border declaration leads me to the next thing.
The CSS isn’t large or anything but it was nice to use custom properties for easy colour management. I declared them on the root element. I could’ve probably just declared this on the html element itself just as easily.
:root {
--yellow: #FFCA00;
--green: #668800;
--white: #EFEFE6;
--black: #3C3C3C;
color-scheme: light dark;
}
Again, I didn’t need multiple levels of abstraction. I just wanted something that made it easier to remember these hex codes and spit them out where I need them.
That last line in the previous example declares that my design supports light and dark mode and lets me use the light-dark function to easily declare colour options like this declaration for the body text.
color: light-dark(var(--black), var(--white));
I’ve always just either toggled underlines on hover or toggled text colour. I don’t know when all the text-decoration options were added but I liked being able to do so.
a {
color: currentcolor;
text-decoration-thickness:2px;
text-decoration-color: var(--green);
}
a:hover { text-decoration-color: var(--yellow); }
I was able to adjust the thickness and then change the colour on hover. I haven’t used the ol’ LVHA format in years but I might come back to it to give more useful visual clues for visited and active links.
The link colour just picks up whatever the light-dark colour is currently set.
I was really delighted by how easy it was to use all of these features and not have to be too concerned about cross browser issues. Looking through MDN was fun to discover what features I had missed over the years and could now implement reliably. Can I Use also continues to be a fantastic resource for verifying browser support.
"Build history as you grow: Once you have enough history, we'll automatically unlock features." Apparently my 14+ year old youtube channel has not yet reached 2 months of active use, according to the vibe-coded math of Google's robots.
Since, as you know, arguing with robots is something of a hobby of mine, I uploaded my traditional driver's license. You can't just "upload" it, of course, they require you to scan a QR code with a phone and take a photo from within the browser, for maximal tracking. So I used one of my burner phones for that. They say their response takes 24 hours, so presumably some dollar-a-day call-center gig worker in India is going to put eyeballs on it, so we'll see how that goes.
In case you're wondering what stupidity I'm up to this time:
Bonnie Tyler died last week, and so the glorious "Total Eclipse of the Heart, Literal Version" by Persephone Maewyn and dascottjr was making the rounds again, dodging takedowns. (This video is a textbook case of fair use, since not only is it a parody song, but the lyrics are direct commentary on the video itself, I mean come on.) Anyway all extant copies of it are shit quality, so I reconstructed it from the official HD video plus the "literal" audio, and re-built the subtitles by hand. Immediate takedown. I appealed. A week later, some intern or chatbot at BMG said "fuck you no". Now I'm trying to counter-claim.
Anyway, maybe someday you'll get to see this higher quality version of the video. It's still pretty funny. You can go request it on the DNA Pizza music video stream I guess.
What Training My Chaotic Dog Taught Me About Power, Control — and Human Beings. “As any parent of a toddler knows, being morally liable for something that is incapable of moral liability is a fraught and stressful business.”
To see a country’s financial follies, look to its celebrity advisers.