[syndicated profile] smbc_comics_feed

Posted by Zach Weinersmith



Click here to go see the bonus panel!

Hovertext:
Apparently this used to actually happen, according to the book The Lore and Language of Schoolchildren, which Tomer Ullman recommended to me.


Today's News:

Thank you?

Nov. 22nd, 2025 10:59 am
senmut: An orange-blue gradient field, with a black and white star in the right upper corner, reading "A Star to Steer By, A Wind to take me home again" (General: One More Time)
[personal profile] senmut
I just received 2 new pair of jeans, from something that had been on my wishlist back in July. If that was you, thank you.

If not, Amazon burped and repeated an order for me.
[syndicated profile] ken_shirriff_righto_feed

Posted by Ken Shirriff

I've been studying the standard cell circuitry in the Intel 386 processor recently. The 386, introduced in 1985, was Intel's most complex processor at the time, containing 285,000 transistors. Intel's existing design techniques couldn't handle this complexity and the chip began to fall behind schedule. To meet the schedule, the 386 team started using a technique called standard cell logic. Instead of laying out each transistor manually, the layout process was performed by a computer.

The idea behind standard cell logic is to create standardized circuits (standard cells) for each type of logic element, such as an inverter, NAND gate, or latch. You feed your circuit description into software that selects the necessary cells, positions these cells into columns, and then routes the wiring between the cells. This "automatic place and route" process creates the chip layout much faster than manual layout. However, switching to standard cells was a risky decision since if the software couldn't create a dense enough layout, the chip couldn't be manufactured. But in the end, the 386 finished ahead of schedule, an almost unheard-of accomplishment.1

The 386's standard cell circuitry contains a few circuits that I didn't expect. In this blog post, I'll take a quick look at some of these circuits: surprisingly large multiplexers, a transistor that doesn't fit into the standard cell layout, and inverters that turned out not to be inverters. (If you want more background on standard cells in the 386, see my earlier post, "Reverse engineering standard cell logic in the Intel 386 processor".)

The photo below shows the 386 die with the automatic-place-and-route regions highlighted; I'm focusing on the red region in the lower right. These blocks of logic have cells arranged in rows, giving them a characteristic striped appearance. The dark stripes are the transistors that make up the logic gates, while the lighter regions between the stripes are the "routing channels" that hold the wiring that connects the cells. In comparison, functional blocks such as the datapath on the left and the microcode ROM in the lower right were designed manually to optimize density and performance, giving them a more solid appearance.

The 386 die with the standard-cell regions highlighted.

The 386 die with the standard-cell regions highlighted.

As for other features on the chip, the black circles around the border are bond wire connections that go to the chip's external pins. The chip has two metal layers, a small number by modern standards, but a jump from the single metal layer of earlier processors such as the 286. (Providing two layers of metal made automated routing practical: one layer can hold horizontal wires while the other layer can hold vertical wires.) The metal appears white in larger areas, but purplish where circuitry underneath roughens its surface. The underlying silicon and the polysilicon wiring are obscured by the metal layers.

The giant multiplexers

The standard cell circuitry that I'm examining (red box above) is part of the control logic that selects registers while executing an instruction. You might think that it is easy to select which registers take part in an instruction, but due to the complexity of the x86 architecture, it is more difficult. One problem is that a 32-bit register such as EAX can also be treated as the 16-bit register AX, or two 8-bit registers AH and AL. A second problem is that some instructions include a "direction" bit that switches the source and destination registers. Moreover, sometimes the register is specified by bits in the instruction, but in other cases, the register is specified by the microcode. Due to these factors, selecting the registers for an operation is a complicated process with many cases, using control bits from the instruction, from the microcode, and from other sources.

Three registers need to be selected for an operation—two source registers and a destination register—and there are about 17 cases that need to be handled. Registers are specified with 7-bit control signals that select one of the 30 registers and control which part of the register is accessed. With three control signals, each 7 bits wide, and about 17 cases for each, you can see that the register control logic is large and complicated. (I wrote more about the 386's registers here.)

I'm still reverse engineering the register control logic, so I won't go into details. Instead, I'll discuss how the register control circuit uses multiplexers, implemented with standard cells. A multiplexer is a circuit that combines multiple input signals into a single output by selecting one of the inputs.2 A multiplexer can be implemented with logic gates, for instance, by ANDing each input with the corresponding control line, and then ORing the results together. However, the 386 uses a different approach—CMOS switches—that avoids a large AND/OR gate.

Schematic of a CMOS switch.

Schematic of a CMOS switch.

The schematic above shows how a CMOS switch is constructed from two MOS transistors. When the two transistors are on, the output is connected to the input, but when the two transistors are off, the output is isolated. An NMOS transistor is turned on when its input is high, but a PMOS transistor is turned on when its input is low. Thus, the switch uses two control inputs, one inverted. The motivation for using two transistors is that an NMOS transistor is better at pulling the output low, while a PMOS transistor is better at pulling the output high, so combining them yields the best performance.3 Unlike a logic gate, the CMOS switch has no amplification, so a signal is weakened as it passes through the switch. As will be seen below, inverters can be used to amplify the signal.

The image below shows how CMOS switches appear under the microscope. This image is very hard to interpret because the two layers of metal on the 386 are packed together densely, but you can see that some wires run horizontally and others run vertically. The bottom layer of metal (called M1) runs vertically in the routing area, as well as providing internal wiring for a cell. The top layer of metal (M2) runs horizontally; unlike M1, the M2 wires can cross a cell. The large circles are vias that connect the M1 and M2 layers, while the small circles are connections between M1 and polysilicon or M1 and silicon. The central third of the image is a column of standard cells with two CMOS switches outlined in green. The cells are bordered by the vertical ground rail and +5V rail that power the cells. The routing areas are on either side of the cells, holding the wiring that connects the cells.

Two CMOS switches, highlighted in green. The lower switch is flipped vertically compared to the upper switch.

Two CMOS switches, highlighted in green. The lower switch is flipped vertically compared to the upper switch.

Removing the metal layers reveals the underlying silicon with a layer of polysilicon wiring on top. The doped silicon regions show up as dark outlines. I've drawn the polysilicon in green; it forms a transistor (brighter green) when it crosses doped silicon. The metal ground and power lines are shown in blue and red, respectively, with other metal wiring in purple. The black dots are vias between layers. Note how metal wiring (purple) and polysilicon wiring (green) are combined to route signals within the cell. Although this standard cell is complicated, the important thing is that it only needs to be designed once. The standard cells for different functions are all designed to have the same width, so the cells can be arranged in columns, snapped together like Lego bricks.

A diagram showing the silicon for a standard-cell switch. The polysilicon is shown in green. The bottom metal is shown in blue, red, and purple.

A diagram showing the silicon for a standard-cell switch. The polysilicon is shown in green. The bottom metal is shown in blue, red, and purple.

To summarize, this switch circuit allows the input to be connected to the output or disconnected, controlled by the select signal. This switch is more complicated than the earlier schematic because it includes two inverters to amplify the signal. The data input and the two select lines are connected to the polysilicon (green); the cell is designed so these connections can be made on either side. At the top, the input goes through a standard two-transistor inverter. The lower left has two transistors, combining the NMOS half of an inverter with the NMOS half of the switch. A similar circuit on the right combines the PMOS part of an inverter and switch. However, because PMOS transistors are weaker, this part of the circuit is duplicated.

A multiplexer is constructed by combining multiple switches, one for each input. Turning on one switch will select the corresponding input. For instance, a four-to-one multiplexer has four switches, so it can select one of the four inputs.

A four-way multiplexer constructed from CMOS switches and individual transistors.

A four-way multiplexer constructed from CMOS switches and individual transistors.

The schematic above shows a hypothetical multiplexer with four inputs. One optimization is that if an input is always 0, the PMOS transistor can be omitted. Likewise, if an input is always 1, the NMOS transistor can be omitted. One set of select lines is activated at a time to select the corresponding input. The pink circuit selects 1, green selects input A, yellow selects input B, and blue selects 0. The multiplexers in the 386 are similar, but have more inputs.

The diagram below shows how much circuitry is devoted to multiplexers in this block of standard cells. The green, purple, and red cells correspond to the multiplexers driving the three register control outputs. The yellow cells are inverters that generate the inverted control signals for the CMOS switches. This diagram also shows how the automatic layout of cells results in a layout that appears random.

A block of standard-cell logic with multiplexers highlighted. The metal and polysilicon layers were removed for this photo, revealing the silicon transistors.

A block of standard-cell logic with multiplexers highlighted. The metal and polysilicon layers were removed for this photo, revealing the silicon transistors.

The misplaced transistor

The idea of standard-cell logic is that standardized cells are arranged in columns. The space between the cells is the "routing channel", holding the wiring that links the cells. The 386 circuitry follows this layout, except for one single transistor, sitting between two columns of cells.

The "misplaced" transistor, indicated by the arrow. The irregular green regions are oxide that was incompletely removed.

The "misplaced" transistor, indicated by the arrow. The irregular green regions are oxide that was incompletely removed.

I wrote some software tools to help me analyze the standard cells. Unfortunately, my tools assumed that all the cells were in columns, so this one wayward transistor caused me considerable inconvenience.

The transistor turns out to be a PMOS transistor, pulling a signal high as part of a multiplexer. But why is this transistor out of place? My hypothesis is that the transistor is a bug fix. Regenerating the cell layout was very costly, taking many hours on an IBM mainframe computer. Presumably, someone found that they could just stick the necessary transistor into an unused spot in the routing channel, manually add the necessary wiring, and avoid the delay of regenerating all the cells.

The fake inverter

The simplest CMOS gate is the inverter, with an NMOS transistor to pull the output low and a PMOS transistor to pull the output high. The standard cell circuitry that I examined contains over a hundred inverters of various sizes. (Performance is improved by using inverters that aren't too small but also aren't larger than necessary for a particular circuit. Thus, the standard cell library includes inverters of multiple sizes.)

The image below shows a medium-sized standard-cell inverter under the microscope. For this image, I removed the two metal layers with acid to show the underlying polysilicon (bright green) and silicon (gray). The quality of this image is poor—it is difficult to remove the metal without destroying the polysilicon—but the diagram below should clarify the circuit. The inverter has two transistors: a PMOS transistor connected to +5 volts to pull the output high when the input is 0, and an NMOS transistor connected to ground to pull the output low when the input is 1. (The PMOS transistor needs to be larger because PMOS transistors don't function as well as NMOS transistors due to silicon physics.)

An inverter as seen on the die. The corresponding standard cell is shown below.

An inverter as seen on the die. The corresponding standard cell is shown below.

The polysilicon input line plays a key role: where it crosses the doped silicon, a transistor gate is formed. To make the standard cell more flexible, the input to the inverter can be connected on either the left or the right; in this case, the input is connected on the right and there is no connection on the left. The inverter's output can be taken from the polysilicon on the upper left or the right, but in this case, it is taken from the upper metal layer (not shown). The power, ground, and output lines are in the lower metal layer, which I have represented by the thin red, blue, and yellow lines. The black circles are connections between the metal layer and the underlying silicon.

This inverter appears dozens of times in the circuitry. However, I came across a few inverters that didn't make sense. The problem was that the inverter's output was connected to the output of a multiplexer. Since an inverter is either on or off, its value would clobber the output of the multiplexer.4 This didn't make any sense. I double- and triple-checked the wiring to make sure I hadn't messed up. After more investigation, I found another problem: the input to a "bad" inverter didn't make sense either. The input consisted of two signals shorted together, which doesn't work.

Finally, I realized what was going on. A "bad inverter" has the exact silicon layout of an inverter, but it wasn't an inverter: it was independent NMOS and PMOS transistors with separate inputs. Now it all made sense. With two inputs, the input signals were independent, not shorted together. And since the transistors were controlled separately, the NMOS transistor could pull the output low in some circumstances, the PMOS transistor could pull the output high in other circumstances, or both transistors could be off, allowing the multiplexer's output to be used undisturbed. In other words, the "inverter" was just two more cases for the multiplexer.

The "bad" inverter. (Image is flipped vertically for comparison with the previous inverter.)

The "bad" inverter. (Image is flipped vertically for comparison with the previous inverter.)

If you compare the "bad inverter" cell below with the previous cell, they look almost the same, but there are subtle differences. First, the gates of the two transistors are connected in the real inverter, but disconnected by a small gap in the transistor pair. I've indicated this gap in the photo above; it is hard to tell if the gap is real or just an imaging artifact, so I didn't spot it. The second difference is that the "fake" inverter has two input connections, one to each transistor, while the inverter has a single input connection. Unfortunately, I assumed that the two connections were just a trick to route the signal across the inverter without requiring an extra wire. In total, this cell was used 32 times as a real inverter and 9 times as independent transistors.

Conclusions

Standard cell logic and automatic place and route have a long history before the 386, back to the early 1970s, so this isn't an Intel invention.5 Nonetheless, the 386 team deserves the credit for deciding to use this technology at a time when it was a risky decision. They needed to develop custom software for their placing and routing needs, so this wasn't a trivial undertaking. This choice paid off and they completed the 386 ahead of schedule. The 386 ended up being a huge success for Intel, moving the x86 architecture to 32 bits and defining the dominant computer architecture for the rest of the 20th century.

If you're interested in standard cell logic, I also wrote about standard cell logic in an IBM chip. I plan to write more about the 386, so follow me on Mastodon, Bluesky, or RSS for updates. Thanks to Pat Gelsinger and Roxanne Koester for providing helpful papers.

For more on the 386 and other chips, follow me on Mastodon (@kenshirriff@oldbytes.space), Bluesky (@righto.com), or RSS. (I've given up on Twitter.) If you want to read more about the 386, I've written about the clock pin, prefetch queue, die versions, packaging, and I/O circuits.

Notes and references

  1. The decision to use automatic place and route is described on page 13 of the Intel 386 Microprocessor Design and Development Oral History Panel, a very interesting document on the 386 with discussion from some of the people involved in its development. 

  2. Multiplexers often take a binary control signal to select the desired input. For instance, an 8-to-1 multiplexer selects one of 8 inputs, so a 3-bit control signal can specify the desired input. The 386's multiplexers use a different approach with one control signal per input. One of the 8 control signals is activated to select the desired input. This approach is called a "one-hot encoding" since one control line is activated (hot) at a time. 

  3. Some chips, such as the MOS Technology 6502 processor, are built with NMOS technology, without PMOS transistors. Multiplexers in the 6502 use a single NMOS transistor, rather than the two transistors in the CMOS switch. However, the performance of the switch is worse. 

  4. One very common circuit in the 386 is a latch constructed from an inverter loop and a switch/multiplexer. The inverter's output and the switch's output are connected together. The trick, however, is that the inverter is constructed from special weak transistors. When the switch is disabled, the inverter's weak output is sufficient to drive the loop. But to write a value into the latch, the switch is enabled and its output overpowers the weak inverter.

    The point of this is that there are circuits where an inverter and a multiplexer have their outputs connected. However, the inverter must be constructed with special weak transistors, which is not the situation that I'm discussing. 

  5. I'll provide more history on standard cells in this footnote. RCA patented a bipolar standard cell in 1971, but this was a fixed arrangement of transistors and resistors, more of a gate array than a modern standard cell. Bell Labs researched standard cell layout techniques in the early 1970s, calling them Polycells, including a 1973 paper by Brian Kernighan. By 1979, A Guide to LSI Implementation discussed the standard cell approach and it was described as well-known in this patent application. Even so, Electronics called these design methods "futuristic" in 1980.

    Standard cells became popular in the mid-1980s as faster computers and improved design software made it practical to produce semi-custom designs that used standard cells. Standard cells made it to the cover of Digital Design in August 1985, and the article inside described numerous vendors and products. Companies like Zymos and VLSI Technology (VTI) focused on standard cells. Traditional companies such as Texas Instruments, NCR, GE/RCA, Fairchild, Harris, ITT, and Thomson introduced lines of standard cell products in the mid-1980s.  

Drown them in a pail of caudle

Nov. 22nd, 2025 04:36 pm
oursin: Illustration from medieval manuscript of the female physician Trotula of Salerno holding up a urine flask (trotula)
[personal profile] oursin

These people are AWFUL: Influencers made millions pushing ‘wild’ births – now the Free Birth Society is linked to baby deaths around the world

(And I can't believe that there aren't women who didn't survive, particularly given the whole 'germs aren't a thing' ideology that's mixed up with it. Or at least pretty badly damaged.)

I've always been somewhat side-eyeing Grantly Dick Read and his gospel of 'natural childbirth' without fear and pain, because it was a bit vibes based on anecdotal stuff of his, but at least he was a trained medical professional, and he advocated antenatal classes teaching women what to expect when they went into labour, and giving them breathing exercises so that they could breathe through the contractions and so on and he did not suggest women giving birth alone without support.

This is also - like being anti-vaccine - coming from a very short period of historical time: in this case one in which maternal and infant mortality had plummeted and was no longer something people were more or less used to, or had at least heard cases of within their general circles.

These people are delusional.

Okay, there can be a lot wrong with modern obstetric practice - ?particularly in the USA, for reasons - but nature is so not your friend in this matter.

30 in 30: Crystal Series (McCaffrey)

Nov. 22nd, 2025 11:08 am
senmut: orange and blue lynx (General: AhsokaKitty)
[personal profile] senmut
AO3 Link | Storm Driven (100 words) by Merfilly
Chapters: 1/1
Fandom: Crystal Singer Trilogy - Anne McCaffrey
Rating: General Audiences
Warnings: No Archive Warnings Apply
Characters: Killashandra Ree [Crystal Singer Trilogy]
Additional Tags: Drabble, Slice of Life
Summary:

Killashandra needs to beat the storm






Killashandra touched the cocooned crystal set briefly, reassuring herself that it really was free, it was hers, it was safe…

…and a discordant howl of wind reminded her of why she had hastened to pack it.

Her cutter was almost forgotten in the cargo bay, but she stumbled as she stood from the case with her new triad of blues. She hastened to get it clamped into its place; she vaguely remembered replacing it all too recently.

Another shriek of the incoming storm, and she threw herself into the pilot seat. In moments, she was racing Ballybran's fury to safety.

TigerBeetle Blog

Nov. 22nd, 2025 12:00 am
[syndicated profile] matklad_feed

Posted by Alex Kladov

TigerBeetle Blog

Continuing the tradition, I’ve been also blogging somewhat regularly on TigerBeetle’s blog, so you might want to check those articles out or even subscribe (my favorite RSS reader is RSSSSR):

Today’s post is a video version of Notes on Paxos!

Just One Thing (22 November 2025)

Nov. 22nd, 2025 12:22 pm
nanila: me (Default)
[personal profile] nanila posting in [community profile] awesomeers
It's challenge time!

Comment with Just One Thing you've accomplished in the last 24 hours or so. It doesn't have to be a hard thing, or even a thing that you think is particularly awesome. Just a thing that you did.

Feel free to share more than one thing if you're feeling particularly accomplished! Extra credit: find someone in the comments and give them props for what they achieved!

Nothing is too big, too small, too strange or too cryptic. And in case you'd rather do this in private, anonymous comments are screened. I will only unscreen if you ask me to.

Go!
sunnymodffa: (Smoking alpaca)
[personal profile] sunnymodffa posting in [community profile] fail_fandomanon
 
Cocaine in Maine makes the writing go insane.

Cocaine in Maine comes mainly out the Drain.

[Stephen King is still alive at the time of this titling]


All the [community profile] fail_fandomanon Rules and Information (and Ban Requests): https://fail-fandomanon.dreamwidth.org/1076.html. The short version: no embeds, don't out people's real names, don't be that much of an asshole, body fluids are off topic, Mods reserve the right to freeze, screen, and delete the fuck out of stuff. FFA discussion covers a wide variety of topics and has a very flexible view of 'fandom' that includes politics, current events, and cooking techniques. FFA is a Choose NOT to Warn experience. Meme away.

Other posts on meme:

Search
  • Unofficial FFA archive & search: Dememe.info Username/password pairs are nonnie/pony, nonny/seal, or ayrt/velociraptor. As of 2025, Dememe is geoblocked for the UK.
  • If you have a DW account, you can use DW's content search. Don't forget to tick the box to search in comments. You can also use FFA Rocks.

Related communities and additional resources

Meme rules do not require spoiler cuts. But here are two ways to make them:

HTML-5 (recommended)


Demo:

spoiler title
Some spoilery content.

Alternative for inline spoiler-cuts - details here


Demo:
spoiler title
Some spoilery content.


If you would like to be banned to avoid anonfailing, please leave a logged-in comment at the rules post. It will be automatically screened.

Next post: will open when this posts hits 5000
Previous post: https://fail-fandomanon.dreamwidth.org/710988.html#comments
Regular view - First page: https://fail-fandomanon.dreamwidth.org/711181.html#comments
Regular view - Last page: https://fail-fandomanon.dreamwidth.org/711181.html?page=999#comments
Top Level view - First page: https://fail-fandomanon.dreamwidth.org/711181.html?view=top-only#comments
Top Level view - Last page: https://fail-fandomanon.dreamwidth.org/711181.html?view=top-only&page=999#comments
Flat view - First Comment: https://fail-fandomanon.dreamwidth.org/711181.html?view=flat#comments
Flat view - Most Recent: https://fail-fandomanon.dreamwidth.org/711181.html?view=flat&page=999#comments
Dememe flatview emulator is at https://dememe.info/flat_view (same login as the regular Dememe info above).

These topics are banned:
  • 'Which topics belong on main meme'
  • the game Hogwarts Legacy
  • discussion about current events in Israel and Palestine
  • US Politics

Only one clearly named top-level thread for each of the following topics:
  • Disruptive and Provocative Opinions (DAPO)
  • sexual abuse and rape culture
  • UK Politics
  • Russia's invasion of Ukraine and related current events
Discussion of UK politics related sexual abuse and rape culture should go into one properly labeled subthread.

Palaces

Nov. 22nd, 2025 10:37 am
puddleshark: (Default)
[personal profile] puddleshark
Kingston Maurward House
Kingston Maurward House. Built 1717-1720, originally of red brick, but fashionably encased in white ashlar in 1794.

And, in the grounds of Kingston Maurward, a very small palace )
sovay: (Rotwang)
[personal profile] sovay
My mother referred earlier this evening to the state of my health as farshlimmert, which definitely sounds classier than my saying it's gone down the tubes. On the other hand, I do not apparently have TB, so we can hold off on the consumptive poet jokes a little while longer yet.

As a reworking of Stevenson, Dr. Jekyll and Sister Hyde (1971) is trashtacular even beyond the whipsawing of its trans reading when it mixes the novella's Gothic horrors with historical ones—scrunching about six decades in the penny-dreadful process of folding in not only the Whitechapel murders but Burke and Hare, even without throwing in an allusion to Sweeney Todd or a street singer straight out of Val Lewton—but it dovetailed unexpectedly well with an article sent me by [personal profile] selkie about the obtrusiveness of AI-generation in art because it contains an in-camera effect so good that I stopped the film to gush about it to [personal profile] spatch. It's the emergence of the so-called Mrs. Hyde. One-shot, Jekyll wrenched with the effects of his absinthe-green potion buries his face in his hands, slowly straightens to perceive, in the cheval glass where a moment ago he was convulsing, a woman as severely dark-haired, night-pale and shocked as himself, who she is. It's not a trick of double exposures or duplicate sets or dissolves. While the camera tightly pivots behind the hunched protagonist, it looks as though a slight adjustment to the angle of the mirror allows an otherwise offscreen Martine Beswick to reflect beyond the identically dressed shoulder of Ralph Bates, their breath heaving in time, their hands slowly unmasking their shared face. It's very simple and uncannily effective. In some ways I find it more impressive than the red-filter transformation of Fredric March in the 1931 Dr. Jekyll and Mr. Hyde because it's all sightlines. He's never out of shot and she's suddenly in it. Especially to an eye distracted from consideration of the sets or the cinematography by the switch of actors in the glass, it looks impossible. And someone had to think of it, or at least translate it from a stage illusion. It has never broken a film for me to see how a practical effect is done, which feels different from the suspicion of how much of an image is AI-slopped.

The almost talking blues whose first two lines I missed tonight on WERS turned out to be Lucinda Williams' "The World's Gone Wrong" (2025).

P.S. And a random thirty seconds of Clive Francis mixed in with the bleak London ultraviolence of Villain (1971), why not?

Holiday cards

Nov. 22nd, 2025 06:50 am
ruric: (Ruric - Santa hat moonwolf)
[personal profile] ruric
Shout out to anyone who wants a holiday card this year.

I plan to start writing ALL my cards this week and post by next weekend which means I'm 3 weeks ahead of final posting dates so they should arrive on time even for folks overseas!

If I already have your address you'll be on the list but please feel free to drop contact deets below to make sure - post is screened.

Today (Saturday) I am attempting to deal with the utter chaos in my bedroom, repot some houseplants and batch cook for next week - so being able to sit down and have some time to write cards would be most welcome!
[syndicated profile] daily_illuminator_feed
If I can make a humble suggestion, please do not venture into the now-exposed crypt from three centuries ago. For more info, I point you to the BBC article.

Now, if you're looking for inspiration for a Dungeon Fantasy RPG game or an adventure for The Fantasy Trip, by all means: Poke around . . . via your imagination.

Otherwise, I don't know what kind of year anyone else has been having, but "tomb that opened because a sinkhole exposed its unreadable secrets" fits all too well with the vibe I've been dealing with in 2025 – and that's not good. Just . . . just please, leave it alone.

Steven Marsh

Warehouse 23 News: The City Never Sleeps Because Of All The Action

There are a million stories in the city, and they're all exciting! GURPS Action 9: The City shows how you can add GURPS City Stats to your GURPS Action campaigns. It also features six sample cities to use with your own action-packed adventures. Download it today from Warehouse 23!

Happier homework news

Nov. 21st, 2025 11:54 pm
soc_puppet: Chibi Tsutako from the Maria-sama ga Miteru manga dressed in a graduate's robe taps for attention with a baton (Tap tap!)
[personal profile] soc_puppet
Human Services homework for this week is to watch a movie and do a strengths assessment for one of the characters; movie choice was left up to us, with a list of options provided. I picked my own, which means that I just got to watch How to Train Your Dragon for homework.

I am very pleased by this.

Profile

vivdunstan: Part of own photo taken in local university botanic gardens. Tree trunks rise atmospherically, throwing shadows from the sun on the ground. (Default)
vivdunstan

November 2025

S M T W T F S
       1
2 3 4 56 78
9101112131415
161718 19 20 2122
23242526272829
30      

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Nov. 22nd, 2025 05:38 pm
Powered by Dreamwidth Studios