Monday Update 6-16-25

Jun. 16th, 2025 01:32 pm
ysabetwordsmith: Artwork of the wordsmith typing. (typing)
[personal profile] ysabetwordsmith
These are some posts from the later part of last week in case you missed them:
Reverse Benchmarking
Recipe: "Pretzel Bread Grilled Cheese Sandwiches"
Worldbuilding
Today's Smoothie
Listen to "The Singing, Ringing Tree"
Poetry Fishbowl Themes for Late 2025
Read "Time Off"
Poem: "Fatherhood Is Support"
Poem: "Born and Found and Made"
Poem: "The Way a River Is Made"
Read "A Change in a New World"
Birdfeeding
Poem: "Strange Angels"
Poem: "Meant to Get Dirty"
Poem: "Where We All Meet"
Recipe: "Santorini Stir-Fry with Chicken and Patty Pan Squash"
Today's Adventures
Conservation
Birdfeeding
Creative Jam
Philosophical Questions: Avoidable
Today's Adventures
New Communities
Russian Losses
New Crowdfunding Project: "Take Us North"
Birdfeeding
Politics
Follow Friday 6-13-24: Hetalia
Insect Apocalypse
Sunshine Revival
Books
Birdfeeding
Hobbies: Ceramics
Photos: Dark Gardening
Birdfeeding
Moment of Silence: Brian Wilson
Insect Apocalypse
Hard Things

"Not a Destination, But a Process" has 139 comments. "The Democratic Armada of the Caribbean" has 89 comments.


[community profile] summerofthe69 is now open! You can see the calendar here and the initial theme is "First Time 69: Everyone has to start somewhere."


"In the Heart of the Hidden Garden" belongs to the Antimatter and Stalwart Stan thread of the Polychrome Heroics series. It needs $86 to be fully funded. Lawrence shows Stan around the campus at the University of Nebraska-Omaha.


The weather has been warm and wet here. Seen at the birdfeeders this week: a mixed flock of sparrows and house finches, two mourning doves, a male cardinal, a catbird, a phoebe, a skunk, a fox squirrel, and at least 2 probably 3 bats. I've heard a red-bellied woodpecker but didn't see it. Privet, dogwood, and mock orange are done blooming. Privet and mock orange are winding down. Zucchini has flower buds. Currently blooming: dandelions, honeysuckle, pansies, violas, marigolds, petunias, red salvia, wild strawberries, verbena, lantana, sweet alyssum, zinnias, snapdragons, blue lobelia, perennial pinks, impatiens, oxalis, moss rose, yarrow, red coreopsis, anise hyssop, firecracker plant, tomatoes, tomatillos, Asiatic lilies, cucumber, astilbe, daylilies, snowball bush, yellow squash. 'Chocolate Sprinkles' tomatoes are starting to show color. Blackberries, and tomatoes have green fruit. Wild strawberries, mulberries, and black raspberries are ripe.

[syndicated profile] dorktower_feed

Posted by John Kovalic

This or any DORK TOWER strip is now available as a signed, high-quality print, from just $25!  CLICK HERE to find out more!

HEY! Want to help keep DORK TOWER going? Then consider joining the DORK TOWER Patreon and ENLIST IN THE ARMY OF DORKNESS TODAY! (We have COOKIES!) (And SWAG!) (And GRATITUDE!)

A certain chuffedness

Jun. 16th, 2025 07:55 pm
oursin: hedgehog wearing a yellow flower (Hedgehog with flower)
[personal profile] oursin

I cannot help myself feeling a certain gratification when a reviews editor calls the reviews I have just submitted 'beautifully written' and is eager to solicit further (though as I have several others in hand, may not take this up very urgently....) (Preen, preen.)

Have also been solicited quite out of the blue to take part in a podcast. WOT.

It is also very pleasing that the return of Lady Bexbury and her extensive circle is appreciated.

***

Not so very long ago I posted about this lady who worked for SOE way back when: and now Blaise Metreweli named as first woman to lead UK intelligence service MI6.

I thought The secret lives of MI6’s top female spies this was connected - it's actually 2022 but maybe being reposted for the new association. There are several paragraphs of aged former secret agent lady waxing snarky about the sexism aforetimes that precluded advancement up the ranks.

Beneath her tales of life in the service there is real anger about the way women were treated. Both she and her great friend, Daphne Park — a fellow senior SIS officer who died in 2010 at the age of 88 — led distinguished careers but failed to reach the highest ranks. This, they suspected, was due to their gender.
Ramsay speaks in a soft Scots burr which rises audibly when I ask about SIS’s record on female officers. She feels particularly aggrieved that Park, a life-long intelligence officer who held SIS postings in Moscow, Lusaka, Hanoi and Ulan Bator, did not progress to the most senior levels. (MI6 would neither confirm nor deny it had employed Park.) “There’s no doubt in my mind that Daphne should have been at least one rung up as the deputy chief position. I can say that without any equivocation,” Ramsay says, tapping a lacquered pink fingernail on the table. Park, described unkindly in one obituary as looking “more like Miss Marple than Mata Hari”, resigned early from the service in 1979, having told a friend that she would never be promoted to SIS chief because of her gender.
By the early 1990s, Ramsay was rumoured to be in the running for the post of C, although shortlists are never publicly acknowledged. Privately, she thought the promotion of a woman to that role would still be “quite impossible”.... She observes that while many talented women such as Noor Inayat Khan excelled in the Special Operations Executive, a wartime secret service and sabotage unit set up in 1940, there was a long period afterwards when women ceased to be employed as intelligence officers at all. Ramsay recounts an episode in the 1970s when she came across a woman she thought would make a “perfect” agent-runner. She telephoned the head of recruitment to discuss the prospect, who told her they weren’t looking for women. “He said, ‘It would take an extraordinary gel’ — and it was the ‘gel’ that got to me — ‘to be an intelligence officer’. And I said, ‘Well, it would take an extraordinary boy too, but it hasn’t stopped you recruiting males!’”

graydon2: (Default)
[personal profile] graydon2
Elsewhere I've been asked about the task of replaying the bootstrap process for rust. I figured it would be fairly straightforward, if slow. But as we got into it, there were just enough tricky / non-obvious bits in the process that it's worth making some notes here for posterity.

context


Rust started its life as a compiler written in ocaml, called rustboot. This compiler did not use LLVM, it just emitted 32-bit i386 machine code in 3 object file formats (Linux PE, macOS Mach-O, and Windows PE).

We then wrote a second compiler in Rust called rustc that did use LLVM as its backend (and which, yes, is the genesis of today's rustc) and ran rustboot on rustc to produce a so-called "stage0 rustc". Then stage0 rustc was fed the sources of rustc again, producing a stage1 rustc. Successfully executing this stage0 -> stage1 step (rather than just crashing mid-compilation) is what we're going to call "bootstrapping". There's also a third step: running stage1 rustc on rustc's sources again to get a stage2 rustc and checking that it is bit-identical to the stage1 rustc. Successfully doing that we're going to call "fixpoint".

Shortly after we reached the fixpoint we discarded rustboot. We stored stage1 rustc binaries as snapshots on a shared download server and all subsequent rust builds were based on downloading and running that. Any time there was an incompatible language change made, we'd add support and re-snapshot the resulting stage1, gradually growing a long list of snapshots marking the progress of rust over time.

time travel and bit rot


Each snapshot can typically only compile rust code in the rust repository written between its birth and the next snapshot. This makes replay of replaying the entire history awkward. We're not going to do that here. This post is just about replaying the initial bootstrap and fixpoint, which happened back in April 2011, 14 years ago.

Unfortunately all the tools involved -- from the host OS and system libraries involved to compilers and compiler-components -- were and are moving targets. Everything bitrots. Some examples discovered along the way:

  • Modern clang and gcc won't compile the LLVM used back then (C++ has changed too much)
  • Modern gcc won't even compile the gcc used back then (apparently C as well!)
  • Modern ocaml won't compile rustboot (ditto)
  • 14-year-old git won't even connect to modern github (ssh and ssl have changed too much)


debian


We're in a certain amount of luck though:

  • Debian has maintained both EOL'ed docker images and still-functioning fetchable package archives at the same URLs as 14 years ago. So we can time-travel using that. A VM image would also do, and if you have old install media you could presumably build one up again if you are patient.
  • It is easier to use i386 since that's all rustboot emitted. There's some indication in the Makefile of support for multilib-based builds from x86-64 (I honestly don't remember if my desktop was 64 bit at the time) but 32bit is much more straightforward.
  • So: docker pull --platform linux/386 debian/eol:squeeze gets you an environment that works.
  • You'll need to install rust's prerequisites also: g++, make, ocaml, ocaml-native-compilers, python.


rust


The next problem is figuring out the code to build. Not totally trivial but not too hard. The best resource for tracking this period of time in rust's history is actually the rust-dev mailing list archive. There's a copy online at mail-archive.com (and Brian keeps a public backup of the mbox file in case that goes away). Here's the announcement that we hit a fixpoint in April 2011. You kinda have to just know that's what to look for. So that's the rust commit to use: 6daf440037cb10baab332fde2b471712a3a42c76. This commit still exists in the rust-lang/rust repo, no problem getting it (besides having to copy it into the container since the container can't contact github, haha).

LLVM


Unfortunately we only started pinning LLVM to specific versions, using submodules, after bootstrap, closer to the initial "0.1 release". So we have to guess at the LLVM version to use. To add some difficulty: LLVM at the time was developed on subversion, and we were developing rust against a fork of a git mirror of their SVN. Fishing around in that repo at least finds a version that builds -- 45e1a53efd40a594fa8bb59aee75bb0984770d29, which is "the commit that exposed LLVMAddEarlyCSEPass", a symbol used in the rustc LLVM interface. I bootstrapped with that (brson/llvm) commit but subversion also numbers all commits, and they were preserved in the conversion to the modern LLVM repo, so you can see the same svn id 129087 as e4e4e3758097d7967fa6edf4ff878ba430f84f6e over in the official LLVM git repo, in case brson/llvm goes away in the future.

Configuring LLVM for this build is also a little bit subtle. The best bet is to actually read the rust 0.1 configure script -- when it was managing the LLVM build itself -- and work out what it would have done. But I have done that and can now save you the effort: ./configure --enable-targets=x86 --build=i686-unknown-linux-gnu --host=i686-unknown-linux-gnu --target=i686-unknown-linux-gnu --disable-docs --disable-jit --enable-bindings=none --disable-threads --disable-pthreads --enable-optimized

So: configure and build that, stick the resulting bin dir in your path, and configure and make rust, and you're good to go!
root@65b73ba6edcc:/src/rust# sha1sum stage*/rustc
639f3ab8351d839ede644b090dae90ec2245dfff  stage0/rustc
81e8f14fcf155e1946f4b7bf88cefc20dba32bb9  stage1/rustc
81e8f14fcf155e1946f4b7bf88cefc20dba32bb9  stage2/rustc


Observations


On my machine I get: 1m50s to build stage0, 3m40s to build stage1, 2m2s to build stage2. Also stage0/rustc is a 4.4mb binary whereas stage1/rustc and stage2/rustc are (identical) 13mb binaries.

While this is somewhat congruent with my recollections -- rustboot produced code faster, but its code ran slower -- the effect size is actually much less than I remember. I'd convinced myself retroactively that rustboot was produced abysmally worse code than rustc-with-LLVM. But out-of-the-gate LLVM only boosted performance by 2x (and cost of 3x the code size)! Of course I also have a faster machine now. At the time bootstrap cycles took about a half hour each (according to this: 15 minutes for the 2nd stage).

Of course you can still see this as a condemnation of the entire "super slow dynamic polymorphism" model of rust-at-the-time, either way. It may seem funny that this version of rustc bootstraps faster than today's rustc, but this "can barely bootstrap" version was a mere 25kloc. Today's rustc is 600kloc. It's really comparing apples to oranges.

Things Coming Out Next

Jun. 16th, 2025 01:49 pm
marthawells: (Witch King)
[personal profile] marthawells
Storyteller: A Tanith Lee Tribute Anthology

Out in ebook and paperback on July 1. My story is "Data Ghost"

https://bookshop.org/p/books/storyteller-a-tanith-lee-tribute-anthology/a74b320486117220?ean=9798992595406&next=t

https://www.kobo.com/us/en/ebook/storyteller-a-tanith-lee-tribute-anthology?sId=e0bafab6-32a8-4ffb-9436-2dcda473349c

Edited by Julie C. Day, Carina Bissett, and Craig Laurance Gidney. Stories by Martha Wells, Andy Duncan, C.S.E. Cooney, Nisi Shawl, Mike Allen, Alaya Dawn Johnson, CL Hellisen, Maya Deane, Rocío Rincón Fernández, Theodora Goss, Getty Hesse, Starlene Justice, Amelia Mangan, Michael Yuya Montroy, Marisca Pichette, KT Wagner.

Sixteen new stories from some of today's most renowned authors. All inspired by the master storyteller Tanith Lee.

Drowning cities and unicorns. Burning deserts and forgotten gods. Golems, elf warriors, and inner-Earthers. Alien lifeforms and museum workers. Ancient plagues and the future of humanity. The familiar and the fantastical. Each story in this anthology is both unique and compelling: from fairy-tale retellings to romance-tinged high fantasy, from nihilistic horror to gripping science fiction. Immersive, wide-ranging, and sublime, Storyteller features worlds and characters that are sure to travel with you long after the last page has been read.



***


Short Story: "Rapport: Friendship, Solidarity, Communion, Empathy" by Martha Wells

will be available on Reactor Magazine on July 10

Illustrated by Jaime Jones
Edited by Lee Harris

Perihelion and its crew embark on a dangerous new mission at a corporate-controlled station in the throes of a hostile takeover...


***


Summer of Science Fiction & Fantasy: Martha Wells in conversation with Kate Elliott

https://www.clarionwest.org/event/summer-of-science-fiction-fantasy-martha-wells-in-conversation-with-kate-elliott/


July 30 @ 6:00 pm – 7:30 pm PDT

The Clarion West Summer Reading Series will be held virtually and streamed live over Zoom during the Six-Week Workshop.

Join us for our final event, a conversation between Martha Wells and Kate Elliott!

This event will begin with a conversation between Martha and Kate. There will be time to take questions from the audience. Participants will be able to submit questions in the webinar.



***


The New Yorker announced "Platform Decay" will be the next Murderbot novella. No word on publication date yet.


***


Grimoire: A Grim Oak Press Anthology For Seattle Worldcon 2025

https://grimoakpress.com/products/grimoire-a-grim-oak-press-anthology-for-seattle-worldcon-2025

My story is a fantasy called "Birthright" which is reprint that's not currently available anywhere else.


***


Queen Demon, the sequel to Witch King, second book of the Rising World, is up for preorder and will be released in ebook, audiobook, and hardcover on October 7.

From the breakout SFF superstar author of Murderbot comes the remarkable sequel to the USA Today and Sunday Times bestselling novel, Witch King. A fantasy of epic scope, Queen Demon is a story of power and friendship, of trust and betrayal, and of the families we choose.

Dahin believes he has clues to the location of the Hierarchs' Well, and the Witch King Kai, along with his companions Ziede and Tahren, knowing there's something he isn't telling them, travel with him to the rebuilt university of Ancartre, which may be dangerously close to finding the Well itself.

Can Kai stop the rise of a new Hierarch?

And can he trust his companions to do what's right?


Bookshop.org https://bookshop.org/p/books/queen-demon-martha-wells/21751501?ean=9781250826916

B&N https://www.barnesandnoble.com/w/queen-demon-martha-wells/1146167707?ean=9781250826916

Kobo https://www.kobo.com/us/en/ebook/queen-demon

Audiobook Libro.fm https://libro.fm/audiobooks/9781250291981-queen-demon

Bakka-Phoenix (indie bookstore in Canada): https://bakkaphoenixbooks.com/item/3Czr8TaWU9-_fwJ25ytSCw

International Rose Test Garden

Jun. 16th, 2025 01:21 pm
yourlibrarian: Impala Desert Drive (SPN-ImpalaDesertDrive-fueschgast)
[personal profile] yourlibrarian posting in [community profile] common_nature


We were only in Portland for a day but we had enough time for a few hours in the International Rose Test Garden. In fact we didn't even spend that long because it was smaller than expected and some bushes hadn't even bloomed yet (despite what the website said as mid-May being an ideal viewing time). We took about half the time we were there trying to park. It was also the most overcast morning of the trip -- we had amazing weather the rest of the time.

Nonetheless what was in bloom was lovely. Read more... )

synagogue alternatives

Jun. 16th, 2025 02:08 pm
cellio: (Default)
[personal profile] cellio

My synagogue is being acquired [1] and this was the final nudge to find an alternative. This past Shabbat they cancelled our services in favor of the other place, so I went to Beth Shalom, which I last visited during Pesach. Beth Shalom is a large congregation, which is a little challenging for this introvert, but I assume that if I go there regularly I'll gradually meet people and maybe even be able to learn their names.

Their service is uplifting and pretty efficient. They're Conservative, so they include a lot of things that my current (Reform) congregation doesn't do, but it didn't make the service that much longer. I will need to practice the Hebrew in some unfamiliar sections so that I can sing the songs with them; I was kind of singing this time, hitting maybe one word in four and faking the rest. (I know how to read Hebrew; I'm just slow.)

I had not noticed that they had designated this week as Pride Shabbat until the rabbi spoke. I mean yes, I saw some pins and rainbow talitot and stuff, but I saw those the last time I was at Beth Shalom too, so that's just ordinary support/visibility stuff. And there'd been some signs outside, but I hadn't noticed dates. In other words, they integrated the already-welcome queer community into the Shabbat service, honoring people without replacing the whole service with a bunch of creative readings. (Temple Sinai's Pride Shabbat feels more like a poetry slam; Shabbat barely makes an appearance.) I haven't been to a bar or bat mitzvah at Beth Shalom yet, but I imagine it's the same idea there: celebrate together in the context of Shabbat. Conservative and of course Orthodox synagogues tend to prioritize the community, and Shabbat itself, integrating celebrations into the whole instead of carving them off as separate things as Reform is wont to do. It's refreshing.

They have a kiddush lunch every week, which is presumably the best way to meet and get to know people. During Sukkot I went there and ended up in a lunch conversation with another Babylon 5 fan who was explaining the show to a third person. (I haven't seen the fan again yet, alas.) This week I couldn't stay because we had a friend coming, but there'll be a next time and probably soon.

There was a passing comment about the senior rabbi's upcoming sabbatical. I don't know more than that, and I'll want to have a chat with him before, or as part of, joining there, but it's not urgent. There is also an associate rabbi who I like so far; I plan to soon start going to a weekly class he teaches. While exploring their web site I discovered that both rabbis have blogs, which I'm now subscribed to.

Beth Shalom, not unusually, does not publish their dues expectations; you need to have a conversation with someone. Large old congregations with large old buildings tend to have high dues, which I might not be able to afford, especially if they don't have the concept of an individual membership. It can be worked out I'm sure, but it's a little awkward and embarrassing to have that conversation, and I wish I had some data going into it. Oh well; we'll get there. The high holy days (the one time a year when this really matters) are not for a few months yet.

Rodef Shalom (the synagogue Temple Sinai cancelled services for) puts their services on YouTube, so I skimmed that service yesterday. I knew they were having a guest musician, Dan Nichols, as part of celebrating their rabbi's retirement. I knew from a past Dan Nichols visit that he leans toward creative songs and less liturgy (more of a concert than a service), but I was still surprised by what I saw. How do you have a Shabbat morning service that goes almost two hours and not do Kri'at Sh'ma or the T'filah?! By caring I am a minority in the Reform movement, I know, and while this is extreme, it's also a hint of where Rodef Sinai is going. It's time to be elsewhere.

[1] This is not how the leaders characterize it, but I have seen some of the sausage-making and I stand by this description.

Birdfeeding

Jun. 16th, 2025 01:11 pm
ysabetwordsmith: Cartoon of me in Wordsmith persona (Default)
[personal profile] ysabetwordsmith
Today is partly cloudy and warm.

I haven't fed the birds yet, but I've seen a few sparrows and house finches.  Despite not always seeing them in action, they continue to drain the hopper feeder daily.

EDIT 6/16/25 -- I fed the birds.

I put out water for the birds.











.
 

Backyard Foraging

Jun. 16th, 2025 01:46 pm
marycatelli: (Golden Hair)
[personal profile] marycatelli posting in [community profile] books
Backyard Foraging: 65 Familiar Plants You Didn't Know You Could Eat by Ellen Zachos

A discussion of wild and garden plants in North America. Roots, flowers, leaves, fruit. . . how to harvest, what to check, what can be done to prepare them.

If it's midsummer, this must be...

Jun. 16th, 2025 05:41 pm
shewhomust: (Default)
[personal profile] shewhomust
After all the busy-ness and the not-ready of the last week, we are on Lindisfarne and are spending the week here: yes, I'm a bit disoriented by the week starting and ending on Monday, but that's when the cottage was available. So D. and [personal profile] valydiarosada drove up to Durham yesterday, and we had dinner together, and this morning they set off and visited Wallington (which is almost on the way) and we finished our packing and were away from home by one o' clock. And we all met again on the island at four, which is when we were allowed into our cottage.

We are staying at

(f&f, health)

Jun. 16th, 2025 01:27 pm
elainegrey: Inspired by Grypping/gripping beast styles from Nordic cultures (Default)
[personal profile] elainegrey

B-- died on Friday afternoon.

B's son's cat Mr Darcy died on Saturday. Mr Darcy had made the trip to NC a few times while B-- declined, giving B-- some cat time, after B--'s cat died in March? Can't remember in the blur. B's son (Br--)  and his wife (AC) had to race from his father's bedside late Friday night to get home  to have Mr Darcy die in his arms on the way to the vet.

D-- was sick on Saturday, when we brought her dinner. Christine became sick, with a fever, yesterday. She tested late in the day and has COVID (for the first time). Today we find D has COVID, and AC has COVID.

I'm masking, Christine's masking, we're doing what we can. I've not had COVID before and am not excited about catching it after my two doses of Rituximab. I think the treatment is motivating me to be more careful than i would have been in this situation.  So far, no fever.

I don't know what to call the first half of 2025, but it does seem unnaturally loaded. I suppose there was a long period of

Playing Secretary

Jun. 16th, 2025 03:59 pm
[syndicated profile] longreadsrss_feed

Posted by Seyward Darby

To say that things are messy in Pete Hegseth’s Pentagon would be the understatement of the year. As Kerry Howley’s reporting reveals, the place is beset by utter chaos—leaks that constitute a veritable tsunami, backstabbing among wildly unqualified staffers, and a leader more adept at posting photos of his workouts than managing one of the largest bureaucracies in the world:

Hegseth was different after Signalgate, according to six people in a position to know. He was more prone to anger and less likely to be clean-shaven in the morning. He seemed reluctant to make decisions; scared of doing the wrong thing, paralyzed as he awaited orders from the White House. The Pentagon had ceased, one source says, to be “creative”; it was a mechanism for implementing executive orders. Each new leak contributed to Hegseth’s sense that he was surrounded by moles in league with his enemies. It was “consuming his whole life,” says one source, “when he should have been focused on, you know, our national security.” Unclear on how to move forward, he retreated into spaces where he was comfortable. “Kicked off the day alongside the warriors,” posted Hegseth against an image of himself doing a burpee.

His circle grew smaller and, to people more accustomed to a traditional Defense Department, stranger. Why was his personal lawyer, Tim Parlatore, always around? And his brother Phil? Hegseth began including his wife, Jennifer Hegseth, in meetings at the Department of Defense, a development that was reportedly “confusing” to foreign officials. Jenny directed the communications staff to “draw up a PR package” in a way that offended them; they did not work for her. In the secretary’s office are a half-dozen prints known as “jumbos.” Typically these would be pictures of tanks and troops in battle. In Hegseth’s office, instead, are seven giant pictures of Jenny Hegseth, many of them showing her in the same pink dress. “Without those two J’s,” Hegseth once said to Megyn Kelly, “I wouldn’t be sitting here right now.” The other J was Jesus.

FAPA blues

Jun. 16th, 2025 08:39 am
elf: A typewriter with a single page with the word "Story" on it. (Typewriter)
[personal profile] elf
Got the most recent FAPA mailing, #351. It's fewer than 60 pages. While we're up to 21 members I think (I don't have it with me right now) - up from the 14-ish when I joined a few years ago - the page count has dropped recently, possibly in part because the Org Editor can no longer print people's entries for them. (He retired and no longer has access to the work printers.) So the overseas members are no longer sending in quarterly submissions.

defining terms )

FAPA's contribution requirement is 8 pages a year, which can be 1 double-sided sheet of paper per quarter. This was not particularly onerous even in the days of hectographs. It is, however, apparently enough of a hassle that several current members only technically meet it - sending in that single sheet a quarter, and it's only a page and a half, and it's in 14-pt type and includes a picture covering a quarter of the page. If there were still a waiting list, they'd be bumped for failing to meet the contrib requirements. Since there hasn't been a waiting list this century, this is not an issue.

There are scans of some past mailings (or rather, parts of them) and scans of Fantasy Amateur, the official org zine (aka, the index & list of members), which stops right at the point where membership started dropping below the max of 65.

...Anyone want to join a venerated scifi institution that's been fading since the dawn of the WWW?

Requirements:
* Send 25 copies (currently) to the OE, minimum 8 pgs/year; can be sent quarterly, annually, or anything in between. More details inside )

crafting tonight

Jun. 16th, 2025 12:14 pm
unicornduke: (Default)
[personal profile] unicornduke
Hey all, if you'd like to join the crafting hangout, it is tonight from 6-8pm ET!
 
Video encouraged but not required!
 
Topic: Crafting Hangout
Time: Mondays 6:00 PM Eastern Time (US and Canada)
 
Join Zoom Meeting
 
Meeting ID: 973 2674 2763

thewayne: (Default)
[personal profile] thewayne
That's $450.00, as in I can pull that out of an ATM pretty much any time. Not $450 million. A little under five hundred bucks, and they lost their lock on their second largest market.

The Slashdot summary says it best:
"Pharmaceutical giant Novo Nordisk forfeited patent protection for semaglutide -- the active ingredient in blockbuster diabetes and weight loss drugs Ozempic and Wegovy -- in Canada after failing to pay a $450 maintenance fee in 2019. The company had paid maintenance fees through 2018 but requested a refund for the 2017 fee, apparently seeking more time to decide whether to continue protecting the patent.

When the 2019 fee came due at $450 with late penalties, Novo never paid despite having a one-year grace period. Canadian patent authorities confirmed the patent "cannot be revived" once lapsed. The oversight is particularly costly given Canada represents the world's second-largest semaglutide market, worth billions annually. Generic drugmaker Sandoz plans to launch a competing version in early 2026, while Novo's U.S. patent protection extends until at least 2032.


WOW. That's certainly going to tarnish some board member's CV. But it's going to make a bunch of Canadian's a lot thinner!

https://www.science.org/content/blog-post/novo-nordisk-s-canadian-mistake

https://science.slashdot.org/story/25/06/16/1438211/novo-nordisk-loses-canadian-patent-protection-for-blockbuster-diabetes-drug-over-unpaid-450-fee

Round 176 Theme Poll

Jun. 16th, 2025 08:46 am
runpunkrun: combat boot, pizza, camo pants = punk  (punk rock girl)
[personal profile] runpunkrun posting in [community profile] fancake
Poll #33259 round 176 theme poll
Open to: Registered Users, detailed results viewable to: Just the Poll Creator, participants: 45

Pick the next theme of fancake:

Books & Writing
15 (33.3%)

Protest & Revolt
12 (26.7%)

Working Together
18 (40.0%)

birl

Jun. 16th, 2025 07:32 am
prettygoodword: text: words are sexy (Default)
[personal profile] prettygoodword
birl (BURL) - (UK) v., to rapidly spin or make spin; (northern NA) to cause (a floating log) to rotate rapidly by treading on it.


That last is lumberjack jargon, and honestly given the UK connection I'd expect it to be used in Canada as well as the US, but I'm not seeing mention of it -- if anyone can confirm a Canuck sighting, I'd appreciate it. (ETA: confirmed, see comments) I first met the term as an event in lumberjack competitions (I was channel surfing), in which two people stand at the ends of a floating log and try to get the other to fall off by birling it. The spin sense dates to around 1720, and is speculated to be a blend of birr, the onomatopoeia for a whirling sound, and whirl.

---L.

Profile

agoodwinsmith: (Default)
agoodwinsmith

May 2025

S M T W T F S
     123
45678910
11121314151617
18192021222324
25262728293031

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Jun. 16th, 2025 08:29 pm
Powered by Dreamwidth Studios