Expand Cut Tags

No cut tags
[syndicated profile] wordpresstrac_feed

Posted by SergeyBiryukov

fixed:

In 61311:

Filesystem API: Check for the correct result in some WP_Filesystem_FTPext methods.

This avoids a PHP warning when ::dirlist() returns false under certain conditions:

Warning: Trying to access array offset on value of type bool in wp-admin/includes/class-wp-filesystem-ftpsockets.php on line 326

Follow-up to [6779], [30678], [45226].

Props apermo, malt3, SergeyBiryukov.
Fixes #63474.

[syndicated profile] wordpresstrac_feed

Posted by SergeyBiryukov

Filesystem API: Check for the correct result in some WP_Filesystem_FTPext methods.

This avoids a PHP warning when ::dirlist() returns false under certain conditions:

Warning: Trying to access array offset on value of type bool in wp-admin/includes/class-wp-filesystem-ftpsockets.php on line 326

Follow-up to [6779], [30678], [45226].

Props apermo, malt3, SergeyBiryukov. Fixes #63474.

Where in the world is Catherine?

Nov. 26th, 2025 03:17 pm
catherineldf: (Default)
[personal profile] catherineldf
An endlessly valid question these days. I am not wearing a striped shirt (one has to have standards), but I have been a. Wrestling with Hell Cold for weeks now and b. Piling on all the events I can get into because no day job and c. Wrangling my data analytics class, Queen of Swords Press stuff, writing, job hunting and sundries.

Some things have begun to dawn on me, albeit quite slowly. I'm unbelievably burnt out. Objectively, I knew this, but I'm starting to reckon with the fact that 5 years of nonstop stress and 60-70 hours week have...dented me pretty badly. The last year of deranged boss and constant threat of being fired did not help either. Add to that my age, my cat who needs medical attention and feedings which require me to be at home (even if I wanted to go back to the cube farms) and the IT job market tanking and I'm starting to let go of it. I'm going to focus on ramping up the press, reviving my dormant editing business and seeing what kind of other WFH I can scare up here and there. Eventually, Social Security will have to be a thing, but even with Jana's added in, it won't be enough to live on and I'll have to work anyway.

On the jollier side, I'm writing again! I cranked out 1000 words of novel draft last night, the most I've written at one time in a while. I have 2 other projects in progress and am gradually getting some ideas for other things. I'm going to be pitching some talks and classes and articles as well and working on new story collections as well. I just reactivated my Professional Editors Network membership and will be rebuilding my profile in the next few days. I have a new small business mentor with the county and am meeting with her next week. I found a support group for unemployed older women and will meet with them next week.

And Queen of Swords Press has a terrific new gay vampire novel by M.Christian out and we'll be releasing an omnibus edition of the Astreiant Series by next month on 12/15! The Complete Astreiant by Melissa Scott and Lisa A. Barnett is up for preorder now (please buy direct from us if you can; Amazon is going to crush us on their percentage for this book). The Astreiant Series is also eligible for the Best Series Hugo this year, so please keep it in mind when you are nominating. Melissa Scott has never won a Hugo and I'd love to change that.

Queen of Swords Press is also WisCon's Vendor of the Month for November so if you buy a backlist title (not the preorder) from us using coupon code WisCon26 at checkout, you get a sale price and we'll donate $ to the con. The proverbial win/win!

I'm adding Jana's boxes and journals to the shop on Ko-fi, along with some of my own projects and offerings. Please feel free to boost if the shopping aspects won't work for you.

More bulletins soon! Have a great holiday if you're celebrating! I'm going to veg out with my kitties and do some writing and editing, before enjoying a good takeout meal from the co-op. I'm booked every waking moment Friday, Saturday and part of Sunday so please don't worry that I'm being left to weep alone into my cranberries. I'm deliberately choosing to have a day off. :-)
[syndicated profile] universal_hub_feed

Posted by adamg

Rendering of proposed condo building

Rendering by Design Resource Team.

A Burlington developer has filed plans to replace a single-family house at Washington and Cornell streets in Roslindale with a five-story, 28-unit condo building - across Cornell from where he is currently putting up an 8-unit condo building.

Developer Jon Wardwell's plans call for 12 parking spaces in a basement garage accessed via Cornell and, in a rarity for Roslindale, a roof deck, according to a filing with the Boston Planning Department.

The units would be split between 16 one-bedroom condos and 12 two-bedroom units. Four or five of the units would be sold as "affordable," to people making between 80% and 100% of the Boston area median income, according to the filing.

In addition to the roof deck, the building would have a "grass area" for residents. Both would "provide areas for residents to gather and connect, enhancing the social experience of the building," according to the filing.

Wardwell bought the 11,000-square-foot parcel for $2.75 million in May, 2024, according to Suffolk County Registry of Deeds records.

In addition to that parcel and the one on which he's now building the eight-unit condo building, Wardwell also owns 4467 Washington, a double triple decker on the other side of the eight-unit building. He also owned 4459 Washington, at the corner of Washington and Wellsmere Road, a former three-family triple decker he converted into eight condos. He does not own the triple decker between that building and 4467 Washington, however.

4487 Washington St. filings and meeting/comment schedule.

Topics: 
Neighborhoods: 
[syndicated profile] wordpresstrac_feed

Posted by bobbingwide

On the WordPress Dashboard ( wp-admin.php ) the WAVE evaluation tool reported 32 Color Contrast failures when using the Default Administration Color Scheme in my local development environment.

In my opinion, WordPress should be setting an example with regards to accessibility, addressing both the front-end and administration areas of WordPress core.
I believe that WordPress core should be updated such that WAVE will not produce Contrast Errors on the dashboard.

In my local development I was able to eliminate these errors with some custom CSS that addressed several different problems.

  • problems with hidden screen reader text for Move up, Move down and Toggle panel buttons on postboxes
  • problems with hidden screen reader text for Community events
  • problems with low contrast on vertical bar separators in

Community events and Recent comments

I developed the following CSS which reduced the Color Contrast errors to 0.

button.handlediv span.screen-reader-text,
button.handle-order-lower span.screen-reader-text,
button.handle-order-higher span.screen-reader-text,
.community-events-footer .screen-reader-text {
    color: #000000;
    background-color: #ffffff;
}
.community-events-footer {
    color: #74747b;
}
.row-actions {
    color: #6e7177;
}
.activity-block .subsubsub li {
    color: #74747b;
}

This custom CSS implements the recommendation from a member of the WebAIM team who, in response to my question "Should I attempt to deal with Color Contrast messages related to screen-reader-text by, for example, setting foreground and background colors? OR will that hide a problem waiting in the wings." replied...

"Our approach is to test hidden content because most often hidden content might later be presented to users. The best solution to these contrast errors is to define foreground and background colors that meet the WCAG requirements. At a technical level WCAG requires this even for elements that are not made visible."

Details of the problems, incl. screen captures, and the solutions I chose to implement can be found in GitHub comments from https://github.com/bobbingwide/oik/issues/79#issuecomment-3568176108 to https://github.com/bobbingwide/oik/issues/79#issuecomment-3582610716

Note: In my initial investigation I was using the default Adminstration Color Scheme.
I have since switched to the Light color scheme, for which I received 10 further Contrast errors
I have not yet tried the 6 other core admin color schemes.
I suspect these additional problems would be better addressed in follow up TRACs.

[syndicated profile] shinyhappygoth_feed

womanguy:

why does uber give me notifications like “hey… do you wanna take an uber rn?” As if I’m ever just chilling like yeah a $40 car ride would go crazy right now

[syndicated profile] shinyhappygoth_feed

its-not-a-pen:

its-not-a-pen:

grand-theft-carbohydrates:

emperors new groove parody where qin shi huang has been turned into an alligator and he ends up on a field trip with local sheriff liu bang. Send tweet.

My hand slipped

For the people who missed my previous post: this is the rare and incredibly endangered chinese alligator. they literally look Like That.

wednesday

Nov. 26th, 2025 01:46 pm
summersgate: (Default)
[personal profile] summersgate
DSC_0392.jpg
We had a rainy morning but now (1 pm) it's sunny. I spent the morning getting back into mosaic mirror painting and immersed in researching granny square type crochet patterns that would work for a baby blanket for upcoming Rowan. I'd like to weave a thin blanket for summer (cotton yarn) on a pin loom and then also crochet a thicker winter one. I am having a hard time deciding pattern to do and then what kind of yarn to buy. Black Friday sales make me think I should hurry up and buy something but I know how impulsive I can be and think I should be REALLY sure.

Couldn't sleep last night, again. I was up from 1:30 till about 4. I watched most of The Curious Case of Benjamin Button (enjoyable) and finished a 300 piece jigsaw puzzle that I started back in October. Went back to bed and slept till 7. Had a few interesting dreams that I wish I remembered.

*****
The sunshine is calling. Next up; take Rainy for a little walk down back and then let the chickens out for the afternoon, collect eggs and pick up poop from last night in the coop. My method now-a-days is to clean the coop everyday. Pick up the poop with tongs. About once a month I add more pine shavings. When it gets really cold I'll put a thicker layer of shavings on the floor. I hate the big job of cleaning the whole coop so I prefer to do a little housekeeping everyday.
[syndicated profile] wordpresstrac_feed

Posted by franzmortensen

Dear WordPress Core Team,

I’m a long-time WordPress/WooCommerce admin (multiple sites, some with Storefront, some with other themes), and I’ve run into menu behavior that feels confusing and unsafe for normal, non-technical site owners.

In the Admin (Appearance → Menus), it looks like:
“This is your menu. Add/remove items here and that’s what visitors will see.”

But in reality, that’s not what happens:

  • I can remove pages from a menu (or have no items at all),
  • The menu appears empty in the Admin,
  • Yet on the live site — especially on mobile — those pages still show up in the navigation.

In many cases, themes use separate desktop and mobile menu locations, and where no menu is configured, WordPress or the theme will automatically show a list of pages. From an admin’s perspective, this means:
“I didn’t add this page to any menu… but WordPress is still putting it in front of my visitors.”

This can expose pages that were supposed to be hidden or retired. It’s not just a UX annoyance; it’s a real trust and privacy risk.

From a WordPress admin’s point of view, here’s what would make this safe and predictable:

  1. If I clear a menu or remove all its items, nothing should appear there for visitors.
    If a menu is assigned to a location and ends up empty, the output should be empty — not an automatic list of pages.
  2. Clearly show desktop vs mobile menus in Admin.
    Make it obvious when a theme uses separate menu locations (e.g., “Desktop Header” vs “Mobile Header”) and which menu is assigned to each.
  3. Warn me when WordPress will “invent” navigation I didn’t configure.
    If a location will show a page list when no menu is set, the Admin should clearly say so and ideally give me a simple switch to turn that behavior off — without needing custom code.

Right now, the Menus screen suggests a simple, WYSIWYG model, but the live behavior (especially on phones) doesn’t match. I’m asking that either:

  • The actual behavior be brought in line with what the Admin UI suggests, or
  • The Admin clearly explain when and where automatic/fallback navigation will appear, and give non-technical users an easy way to control it.

Thank you for considering this.
Sincerely,
Franz Mortensen

[syndicated profile] wordpresstrac_feed

Posted by joedolson

invalid:

It looks like HTML_CodeSniffer hasn't had a release in almost 5 years; that may be something that should be considered a dead project. I'll open an issue there, but this should just be closed as invalid.

Book review: The Once and Future King

Nov. 26th, 2025 10:32 am
rocky41_7: (Default)
[personal profile] rocky41_7 posting in [community profile] booknook
Title: The Once and Future King
Author: T.H. White
Genre: Fantasy adventure

Last night I finished The Once and Future King by T.H. White, because I felt like it was time I made a real foray into the Arthurian legends. The actual first Arthurian book I read was The Mists of Avalon, but that was years ago and before I had heard the full story about Marion Zimmer Bradley. This book takes a decidedly different tone. I’m sticking to the most common name spellings for all of the characters here, because spellings do vary across all versions of these legends.

The first thing that surprised me about The Once and Future King is that it’s funny, and frequently in an absurd, dorky kind of way. Knights failing tilts because their visors fell over their eyes wrong, Merlin accidentally zapping himself away in the middle of a lesson because he was in a temper, the Questing Beast “falling in love” with two men dressed in a beast costume, that sort of thing. This silliness is largely concentrated in the first quarter of the book, which is about Arthur’s childhood, but it’s never fully lost.

The second surprise was how long the book focuses on Arthur’s childhood, but then again, it is setting the scene for Arthur’s worldview and the lessons he internalized as a child which shape his approach to being king.

Read more... )
ursamajor: the Swedish Chef, juggling (bork bork bork!)
[personal profile] ursamajor
AI Slop Recipes are Taking Over the Internet and Thanksgiving Dinner is what my feed greeted me with this morning, and geez, it's making me feel even more fiercely determined re the mini cookie cookbook of recipes I've made and loved that I'm trying to put together to send out with holiday cards this year. Though I need to get off my butt with those, too, still haven't ordered them.

In the meantime, the current status of this year's Thanksgiving meal:

- Main: Kristina Cho's Chop Shop Pork Belly, from her Chinese Enough cookbook. Pork belly is currently air-drying in the fridge; all we have to do Thursday is roast it. Will be serving with rice (or possibly a rice stuffing, see below), and ...

- Cranberries: Kay Chun's Cranberry-Asian Pear Chutney, as always since 2001. This is done and chilling in the fridge. But I was chatting with Marissa Ferola (who runs Nine Winters in Huron Village, Cambervillains), and she shared her daughter's cranberry sauce recipe with me, with fivespice and black pepper and mandarin and chinkiang vinegar! So that sounds intriguing. And I think both will go great with the spices of the pork belly.

- Stuffing: I found Rize Up's KPop Gochujang Loaf in stock last week, which means THIS IS THE YEAR I am *finally* making Mandy Lee's red hot oyster kimchi dressing. Seriously, this has been on my Thanksgiving bucket list for years. Between the New England tradness of oyster stuffing, [personal profile] hyounpark's well-documented love of oyster kimchi, and me finally putting all the pieces together, I am so stoked to make this. There's still a possibility we may get fancy and put together a rice-based stuffing on the side, as that's what my mom and [personal profile] hyounpark prefer, but we'll see. But I do need to get started on it.

- Cornbread: I was trying to de-dairify our favorite custard-filled cornbread, but the experimental batch yesterday proved that coconut cream does not behave the same way dairy cream does; it was pretty obvious when there was a giant crater lake of liquid coconut cream after an hour of baking when it should have settled into a layer in the cornbread, and upon slicing into the cornbread, said pool of coconut cream completely spilled over like a spring river. So the backup plan is to try it with our local dairy's A2 cream, since our issues are lactose intolerance rather than dairy allergies or veganism. I'd also been picturing flavoring it a la Betty Liu's lemongrass corn soup, so I may steep the coconut *milk* with the lemongrass, but leave the cream alone. (I'd steeped the coconut cream with lemongrass before, but I'm wondering if that also might have created custardization issues. Won't have time to fully experiment before the big meal tomorrow, but I have paths to follow before next year.) But this will bake Thursday along with the pork belly, so I do need to scrape the remains out of the cast iron skillet in prep for tomorrow.

- Orange veg: We're going with kaddo bourani in lieu of our default Orange Vegetable Soup trend of the last few years. Given all the other experimentation I tend to put on this menu, it's always good to have some reliable old faves on the docket as well. I'm making the meat sauce right now, but will probably not start the pumpkin part until this afternoon, as I need to do both the stuffing and pie crust before the pumpkin hogs the oven all afternoon/evening.

- Green veg, cooked: Which is why Andrea Nguyen's sesame salt greens (from her cookbook Ever Green Vietnamese) are back as well. Based on the greens we have in the fridge right now, it's gonna be collards to make the Southern boy happy :) It's stovetop, it can be done pretty close to last minute, but I might try to slip this in tonight and just rewarm tomorrow. If not, I'll make them while the pork is roasting Thursday.

- Green veg, raw: I was irked that some random reel came across my Instagram feed this week that said, of Thanksgiving dishes Sagittarius is salad. But the reasoning was basically atting me, hahaha. "It's like, chaotic, nobody quite knows what could be in it, it could be from anywhere in the world, any type of salad." Which is tempting me, don't get me wrong, to pull in a Midwestern dessert salad, hahahahaha 😁 (I'd probably go strawberry pretzel, LBR.) [Also, I could have sworn I wrote a thing about Midwestern dessert salads here, but I can't find it to link to, so maybe it's just in my notepad of things I've been meaning to post about? Must rectify that.] But Eric Kim's Roasted Seaweed Salad (from his Korean American cookbook) will also be on the table again. This one's easy - will be made during the half hour the pork is resting waiting to come to the table.

- Potatoes: uh I guess we should figure this out, right? But we're looking for something different from our usual scallion cheddar or maple miso mashed potatoes. And I don't want to do anything that involves mandolining or tiling a bunch of potatoes either. We will probably default back to some kind of basic mash, though Kristina Cho mentioned Sriracha Twice-Baked Potatoes on her Substack, and while the potatoes we have on hand are too small to do that properly, we could certainly run with the general flavoring principles. I may try to outsource this to Leonard and Sara though!

- Miscellaneous: If I get ambitious, I also really want deviled eggs and I have like two dozen options for recipes with Asian flavorings.

- Dessert: I did manage to get ahold of passionfruit, so Alana Kysar's Liliko'i Chiffon Pie (from her cookbook Aloha Kitchen) will be gracing our table again. And that's first up for today: I need to get started on the crust so that's out of the way before I work on the filling.

And with that, I'd better get moving! Especially because I may need to make one last dash out to the supermarket for forgotten ingredients (mostly for the pie: gelatin, eggs). Wish me luck.

Profile

jeshyr: Blessed are the broken. Harry Potter. (Default)
Ricky Buchanan