云室维基 二〇二五年八月刊
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }
评分: +3+x






前言






spring_flowering_tree_spring_flowers_sunshine_flowers_japan_cherry-1116847.jpg!d

{$caption}

时序更迭,已至初秋

欢迎收看2025年8月云室维基月刊。

云室维基月刊由JgPz E-100JgPz E-100创建,其前身为MetroFanMetroFan的“云室时报”系列。在创作组的共同努力下,云室维基月刊在风雨中建成。

愿初生的云室维基月刊能够在大家的建设下越走越远,永不停息!

——月刊组

本期内容:

  • 时事要闻
    • DX的传奇历史
    • 时事要闻简讯合集
  • 优秀文章推荐
    • Level Cloud-999
    • Entity Cloud-75
  • 后室之外
    • 推荐曲目



cloud-head.png

时事要闻



受杀之人:DX

受杀之人:DX时事要闻 详讯篇

我肤浅的看了一点万神殿,然后去写文了,因为自爆我年龄不够十八,导致被封,在我写的蓝色空洞下面骂三十个人,回职员帖,喜获警告1

之后在QQ中给新人科普万神殿和拟态设定(拟态设定我倒是没出错),被人怒怼没有看过万神殿。之后去官网补习了,不会英文,使用机翻看文被喷了。

之后玩抽象,根据估计,我应该被十几个群聊都拉入了黑名单,我一怒之下怒了一下2,然后告诉大家我要退后室圈了。现在我不在任何一个群里。同时,我也把我加的三十三个民分(鼎盛时期)全部退出(除了个人站)。

到最后,在十站竞赛里,我只知道后室,却没有进入任何一个后室站点。

—— deletingdeleting3于7月15日发布的帖子




自今年4月以来,原名Ixiwangbiechongname的Wikidot用户deletingdeleting(QQ名为DX,以下以此为简称)在后室多个站点与QQ群进行包括:发布神风、骚扰成员、回复职员贴、发表迷惑言论等多项恶劣行为,引发广泛关注,下面我们将帮助读者了解并梳理此次“DX事件”的相关情况,且附加一些关于DX的轶事和评价。


蓝色空洞引发争议,DX被后室中站封禁

蓝色空洞引发争议,DX被后室中站封禁

据查找资料显示,4月11日23时07分(BTC+8,下同),DX在中文站点帖子“请骂的狠点”下发布“蓝色空洞”的草稿链接,被ErynolsoliErynolsoli指出:

“从描述到现象到结尾,我还是没办法对整个层级建立出一个基本的印象,因为你所谓的描述在表现上只是一堆科学名词糊我的脸,我几乎找不到任何一段我能看懂的东西。”

而DX未对此贴进行回复,但在其楼下LavigneLavigne的帖子回复到:

“词我是不会改的,改了的话我科幻咋写啊?你能看懂那还是想象吗?而且整个文我还没写到重点呢,这个层级连存在都没有证实,你这让我怎么写?”

由此引发了关于“蓝色空洞”的初步争议。

4月12日(估计),DX正式在中文站点发布文章“蓝色空洞”,当日便被多人dv至-12分(估计)。DX怀疑遭到针对,便在该文讨论区下质问众人,并对dv文章的人私信询问理由。直接导致该文讨论区下发生辱骂事件,管理员紧急锁帖,并警告DX一次。但DX并未停手,于当日21时07分回复职员帖而再次被警告,文章也于不久后删除。

2.jpg

相关帖子(原帖已删除,此为二次截图)

4月14日19时(估计),DX在后室创作交流群4发表迷惑性言论,并自曝自己年龄仅为12岁,当日其Wikidot账户被中文站点站务封禁五年5

有传言说,4月14日~5月上旬间,DX四次进入床脚群但都被踢出(四进四出)6,这种说法目前已被证伪。据DX本人所说7,其于4月15日(估计)第一次被踢出。在几周后DX被R分踢出后,又加入了一次床脚群(5月16日),因其因隐瞒年龄、发布神风、辱骂他人等行为被他人举报而被踢出8,第三次加入时间已无法考证,在其加入后不久(估计十几分钟)再次被踢出,并被加入床脚群黑名单。

1.jpg

相关聊天记录(此为DX本人所言,实则为三顾


DX被大部分民分Q群踢出,多数站点拒绝其加入

DX被大部分民分Q群踢出,多数站点9拒绝其加入

注意:由于DX在其他地方也有大量的抽象行为,其时间跨度大,涉及范围广,本部分只选取几个站点的重要事件进行详述,剩下的简述,请您谅解。

目前已知封禁/处分DX(QQ或Wikidot)的站点:


R分(QQ群)

R分(QQ群)

2025年4月19日14时13分,DX在R分QQ群发表言论:

Screenshot_20250814_135004_compressed.jpg

相关聊天记录15

引起R分QQ群众嘲。对此群友@異變 评价到:

这篇是不行,但观感比蓝色空间好

DX随即开始抽象,并开始贬低此文以抬高自己的文章“蓝色空洞”的地位,其在QQ群中说到:

DX:六百六十六
DX:磕我甲沟炎上了
DX:所以我的文章哪写的不好
DX:连这么菜的文章都没比过吗

群友们开始反驳,而DX并未自己回应,而是讲诉自己的“评分标准”16。此后,DX开始讨论其“评分标准”之一的万神殿,并以起“独特”的思维解释万神殿的理论,后续开始角色扮演,假装自己是万神殿,说出惊世骇俗的言论:“预兆体三神蒙面女郎恐怖旅馆都被我收了”,而后又偏离话题转到拟态设定……最终因其持续刷屏与骚扰群友而被R分QQ群管理员踢出。

对此群友MetroFanMetroFan评价到:

说真的情商低的和不能挨批的不建议上网 保不齐被人说到红温了能干出点啥来 亲身经历就是我一气之下把自己身份证最后一位报出去了


云分(QQ群)

云分(QQ群)

7月15日19时左右,DX加入了云室维基交流群。随后发表了一系列迷惑言论。如:

DX:告诉你们
DX:我是别重名17
DX:我在其他群
DX:都入黑名单了
DX:还有两个群
DX:到现在都还没解除呢

对此,群友对其评价:“唐”“家里请什么都没用了”

3.jpg

DX在群中发表的一段言论。

即使被群内成员厌恶,在后来的7月16日到7月20日,DX仍坚持发表迷惑言论,并对其的行为感到沾沾自喜。其具体言行与上面所举例子大相径庭,碍于篇幅在此不过多赘叙。

7月20日18时53分,DX在群内对其在某个群内被封进行质疑并向他人推销自己的小说后开始刷屏,且在群友表示反对后仍不悔改。最后在发表“遗言”18后被Charley MisakaCharley Misaka禁言24小时。

DX:
DX:大姐
DX:我错了19

在解除禁言后的DX仍然继续刷屏,最终喜提飞机票20

地下黑市(QQ群)

地下黑市(QQ群)

7月23日左右,DX受某人“推荐”加入了QQ群网络闲人养老院21,并在此活跃了数天。这段时间内,时任地下黑市站长的lestday233lestday233(以下简称led)希望DX能停止这些令人厌恶的行为,并在群聊和私聊中与其交谈,而DX在这几天内也确实听从着led的教导,不再频繁的发送“奶龙”表情包以恶心他人。

7月28日07时13分,前地下黑市站长Vodka WellsVodka Wells(以下简称威尔斯)在QQ群中宣布:

威尔斯⭐:给DX踢了
威尔斯⭐:此人以后和黑市无关

由此引发关注,目前尚不得而知威尔斯为何踢出DX,据猜测可能跟DX在QQ群中的某次发言有关22

5-1.jpg

后续的聊天记录

此后绝大部分群聊(后室相关)都对DX采取了加入群黑名单或秒进秒踢等相应措施,在此不多赘述。


轶事

轶事

此标题下将不再是新闻,请您注意。

I

I

在三个月之前,DX妄图做一个版式,就将SCP中站的某个版式完完整整的复制下来,放到他的沙盒里。在加了一串神秘小代码后页面崩溃,他以为是“加载的不行”,便让那个页面加载了两天

(他甚至把设备调成不休眠,并设为后台加载。他真的,我哭死😭)


II

II

凡是DX加入的群聊,不出3分钟便会有上百条消息发出,使死人群复活,使冷群炸锅。这便是SY吉祥物(现在不是了)兼钦点大后室帝国动物园吉祥物的地插大帝23魅力所在😘🤓。

【拼出实惠,乐享百亿】——拼多多百亿补贴大放送!限时DX®复活群神器震撼来袭!!!大品牌质量优!拼着买,才便宜👍)


III

III

经过多月的慎重考虑,我们云室月刊组决定将这一殊荣——“后室持久战时长第一人:155天24这一奖项颁发予您,希望您能再接再厉,突破这一记录,DX先生。

感谢您对持久战大业所做出的贡献。

—— Genshvn_PGenshvn_P


IV

IV

由于deletingdeleting使用的QQ用户名“DX”,导致另一名无辜的站友DX_com4DX_com4躺枪,在其他群聊被不明真相的人误认为是DX。在月刊群内部,为便于区分称呼DX_com4DX_com4为“四号网”或是“专网”。


补充

补充

希望大家以此为戒。

时事要闻简讯合集

时事要闻简讯合集

  • 2025年8月23日晚23:59,2025十站竞赛结束。
  • RZX STORYRZX STORY正式隐退,不再参与本站的任何事务,Charley MisakaCharley Misaka正式继任站长。
  • 我站的两次暑假期间的竞赛(2025暑假竞赛、2025抉择竞赛)圆满结束。
  • DotruiDotrui就任后室E分站新站长。

优秀文章推荐

优秀文章推荐

Level Cloud-999

Level Cloud-999

https://backroom-wiki-cn.wikidot.com/level-cloud-999

5061a9b4dd462330.jpg

{$caption}


我之前见过很多年轻人,最让我印象深刻的是有次来了个五六个人的队伍,看样子那队人大概就二十岁的样子,他们在我当时开的商店里买了不少东西,当时我问他们是准备干什么,他们说是去找回家的路……

后来我就听别人说,那一队人最后就活着回来了一个。

这里对我来说已经是家了,所以我无法完全理解那些年轻人对这些东西的执着……但是,既然他们觉得所谓前厅是家,那想回家倒也没错,毕竟在外流浪谁不会想家呢?

除了这些之外,我也就没什么可写的了,平平淡淡的一辈子,写这个东西也大多数只是想发到网上,看到这东西的人就当是听我这个老人啰嗦了一阵吧,至少证明了…

我曾经来过这里。

“假如你不小心在错误的地方从现实中切出,你最终将坠入后室,这里只有腐臭的潮湿地毯,令人发狂的单调黄色,荧光灯全力运作发出的永无止境的嗡鸣,还有令人深陷其中的大约六亿平方英里随机分割的空荡房间。倘若你听见有什么东西在附近徘徊,愿上帝保佑你吧,因为它一定也听见了你的声音……”

文章作者:wowotouwowotou
推荐:FNHanBaoFNHanBao

Entity Cloud-75

Entity Cloud-75

https://backroom-wiki-cn.wikidot.com/theme:entity-cloud-75

dawid-tkocz-ocEK-9ycROY-unsplash.jpg

{$caption}


成涯急促地提起背包,冲出家门,跳下几层阶梯,回头想吼些什么,但是没有。他骑上开了锁的自行车,一股脑地用力踏着,掠过小区穿过街道,直来横拐,从小路到公路到快速路,他还是没有停过,直到踏板真的给他踩坏了,他才知道这样做很傻。

他把自行车停靠在一边,继续往前走。他忽然看到护栏外有个很高的山崖,仿若沿着那条显而易见的陡坡,最后再往上爬爬,就能抵达那山崖的顶点。于是,他背上背包,想对关于他父亲的所有事都说一声再见。

成涯来到山脚下,他踮脚仰望,高度似乎难以企及,太阳在山后完全看不到,也许能趁机看个日落。由于他从来没有独自看过日落,所以类似那种弥补自己的情绪,他就这样决定了,一定要上去。

这个时候,也就是他准备出发时,他忽然很意外地感到后面站着某人,然而这种猜测在转身的那一刻已然落空,明明就像是已经听到谁扶着车走过来了,几乎即使那里没有人也笃定那里有个人般,

什么都没有。

.

文章作者:Lg-YanChuLg-YanChu
推荐:JgPz E-100JgPz E-100

Phenomenon Cloud-82

Phenomenon Cloud-82

https://backroom-wiki-cn.wikidot.com/phenomenon-cloud-82

life-is-still-here-no-change.jpg

{$caption}


在翻倒的田垄上,

我们数着野草。

野草啊,是田垄的残骸,

也是田垄的宣告。

在断墙的阴影中,

我们点算麦苗。

麦苗啊,是土地的新坟,

也是土地的襁褓。

家园啊,一切都逝去了,

但生活还在继续。

.

作者:simon laausimon laau
推荐:JgPz E-100JgPz E-100

后室之外

后室之外

关于MC

有关MC

算我求你了把自动播放关了好吗?

算我求你了把自动播放关了好吗?

推荐曲目

推荐曲目
曲名:Lucky me
歌手:狛枝凪斗(?)
推荐人:Lg-YanChuLg-YanChu


推荐理由:传教。

推荐曲目
曲名:Daydream(浮梦)
歌手:Myuu
推荐人:JgPz E-100JgPz E-100


推荐理由:空灵、梦幻,极具治愈感,适合作为后室(以及任何其他类型)的视频背景音乐。

推荐曲目
曲名:Группа крови(血液型)
歌手:Кино
推荐人:Genshvn_PGenshvn_P


推荐理由:后朋,好。

推荐曲目
曲名:disturbance, fear, doubt, hopelessness, setback, self-infliction, tireness, emotional torment
歌手:XH
推荐人:BanAllADBanAllAD


推荐理由:符合曲名

推荐曲目
曲名:oceanid
歌手:Oliver Buckland
推荐人:simon laausimon laau


推荐理由:混乱但又有序

小剧场

BanAllAD:[转发]在手机上看一部电影,究竟得先看多少广告?

BanAllAD:不是哥们,广告时长还诈骗,难道我们的时间就不是时间了吗!

1Level 256:孩子们这并不好笑,什么样的神人能想出来在几分钟之内塞50多个广告?😰😰

BanAllAD:可以看出来他们为了钱不择手段()

JgPz.E-100:何意味

BanAllAD:没事,就是觉得现在广告太多了而已,我认为应该把所有广告扔到Level 994()

1Level 256:扔到哪(

JpPz.E-100:还真是,我刚测试了一下,广告太多了,尤其是摇一摇最恶心😡😡真想把发明摇一摇的人扔到坦克底下碾成纸片😡

Simon Laau:神秘😰

Genshvn_P:太狡猾了,我就是把手机轻轻的倾斜一点,它就自动给我跳转到淘X了(

1Level 256:666被资本做局了😭😭😭

BanAllAD:想看个电影有这么难吗(

(众人都拿自己的手机测试了一下,结果全都令人大跌眼镜,这些国内软件广告的数量远远超出正常预期)

DX_com4:这很诡异你们知道吗

Lg-YanChu:这几把广告怎么都这么离谱啊,我要染上绝望病了()

Simon Laau:申必

(于是就有人提议把这几条消息转到云分大群)

BanAllAD:[群聊的聊天记录]

BanAllAD:好家伙,广告去Level 994都算解脱了()

wowotou:去哪?

1Level 256:污染那里的海水了😡👊

BanAllAD:知道(

wowotou:不是哥们,50多个广告???

wowotou:[动画表情]

(视角转回月刊群)

BanAllAD:[转发]揭穿广告倒计时猫腻!软件广告倒计时并非真实时长!

Genshvn_P:逆天广告在代码里故意加时长

BanAllAD:果然扔L994都算解脱了,这种损招都想得出来

1Level256:😱😱😱吓哭了,广告真是诡计多端啊

BanAllAD:估计这逆天时长是不可能治的,看看广告会咋样吧。

1Level 256:广告只是隐瞒了自己的真实时长,就被管家打断了双腿

DX_com4:沟槽的公式还在追我😱

BanAllAD:就看这群广告,这些软件迟早药丸(

(底下的众人纷纷回复:说的好👍)

后室沙盒Mini(2024-2026)
除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License