窗边有个2869
: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 }
评分: +10+x

你好,远方的朋友,欢迎来到我的作者页!

2869hat
和我的小高礼帽打个招呼吧OVO

如你所见,这里是后室AS层群写手the tears upthe tears up的作者页,也是2869的小窝,当然,它还是窗边的69先生窗边有个2869NiTm-the-tears甩枪手2869soul of 2869甜品师2869……的个人小空间!

好吧,列举网名似乎不怎么有意思,还是介绍介绍我自己吧。

关于2869

我叫2869,因为我在200869日10点56分来到了这个世界上,你也可以叫我691

我的wikidot名来源于《以撒的结合:重生》2中的提升射速的药丸Tears up眼泪提升,寓意是高速产出内容,但看来言不及意,我大部分时间都用在写别的俏皮东西上了,后室写的并不多,请见谅……咕咕咕。

我是个男孩子,双子座,体重55kg,O型血,右眼近视+散光,左眼远视+弱视+散光。嗅觉正常,听力健康,蛀牙不少但牙口很好,无遗传病,MBIT人格未知,不能吃辣,喜欢吃梅制品,薯片,芹菜与口腔溃疡贴片3。至于身高……

额……你应该不会笑我吧?

我的身高是161cm,是的,只有161.2cm,甚至比两位站娘都矮4。你说不定可以把我抱起来,我认真的。

但,在现实中抱我的人并不多——我在现实中的朋友少得可怜,平日里在现实中根本摸不到友谊这种东西,与他人的友好肢体接触更是近乎没有。

这很大程度上是因为我糟糕的社交能力:我说话絮叨,词汇量匮乏,不懂人情世故,还控制不住自己的表情,挨了打骂还会傻笑。并且由于缺乏对联想能力的管控,在想问题时我可能突然双眼紧闭开始无意识的四处乱摸。再加上堪称一直在速切的思维,与我在现实中相处的大部分人都将我视为怪胎,7年(也就是从小学六年级到高三)的受霸凌经历还让我得了口吃,雪上加霜。

听上去有点像某个最终boss的人生剧本,对吧?但我并没能成为最终boss,因为在互联网上,这一切都不一样啦∩∪∩。

2869%20get%20compliment

2869被夸奖

我喜欢互联网,我的朋友都在那一串串数据流里。说来也怪,我在网上居然是一个讨喜的存在,我混的每个圈子里都有主动来加我好友的人。原来有人喜欢2869的冷笑话和怪文章?!那他肯定要满腔热情的不停写写写写写啦。


好的一方面是,写作让我拥有了健康的社交,稳定的情绪与许多值得珍藏的快乐时光,还让我结识了不少大佬,不那么好的一方面是,由于我总是这个圈子写一点那个群聊想一点,创造碎片化严重,结果正经的作品反而没有多少,大部分“作品”都是零散的冷笑话与一些只言片语,比如下面这个:

如果你想过一把黑道老大的瘾,你可以把自己挂到路灯上,让所有经过的人都感受到你投下的阴影。



不用憋笑,我自己都觉得这个神经。

除此之外,我在现实中的缺陷也延伸到了创作中。由于社交能力低下且情商很低,我很难写出不尴尬的对白,长篇作品更是写不了一点。至于环境白描和情感描写……放过我吧,dv不好吃。

好在老天爷的疾病防治意识非常强,给我开了扇窗通风:我拥有极强的联想能力,擅长想各种古怪的点子,为同好们贡献了不少神秘桥段。我还擅长从各种奇奇怪怪的地方找到灵感。例如某天我看见了一个讨论人们为什么喜欢白毛美少女的视频,随后灵感便直冲脑门:

两个女孩从小认识,她们属于不同的种族,所以一个一头黑发,另外一个一头白发,她们就这么相伴着长大,直到最后慢慢变老。
当他们老了之后,黑发的女孩因为无法分泌黑色素,头发变白了,白发的女孩因为头发老化,头发变成了黑色。
老了的时候她们相互站在一起,就像小时候一样,似乎只不过是掉了个位而已。


我人生中的第一个GL5故事就这么被我写出来了——真的,骗你是小Entity C-69

话好像有些密了。呐,来看看我的作品吧。

2869的作品

AS分作品集

Annie&Sherry-校园奇人篇(1)

在AS分站的第一篇作品!本来想参加站娘设定活动的,但是前脚刚在稿纸上写完后脚这个活动就因“无人问津”6而结束了。幸好这篇文反响还不错,给了我极大的鼓励。


看,魔法少女之仆
要素溢出的小品文。真没想到有这么多人喜欢这种神经兮兮的语言风格7


Entity AS-47-“厨艺大师”
民以食为天,赶紧吃吧。


海边来客
我写给我的一位朋友的非后室作品,它也许是我写过的最晦涩的东西。


不良魔法少女-Q的日记
Star4326Star4326 的合著作品。平平无奇的小短篇。


基于迫害屑豚的弱环境依赖性发电方法
创新思维癫疯之作,摆弄设定使我开心。我要发电!

这篇文章好像是民间分站的第一篇特性工业文,我吃螃蟹了居然。


电台杂谈第五期:阳光
第一次尝试阴暗风格的文章。虽然看上去效果还不错,但是实在写得我难受。果然还是神经质小品文更适合我。


Level 37.1-AS“打水漂”
赶工的短文作品。本来想再修缮一下,但是最后决定让他就这么放在这里,成为一个小幽默。


Object AS-17-“柠雀汁”
参考新版Level 18写了各种附录内容的基础性物品。是我第一篇好好写的物品文,也是送给LemonChenLemonChen的礼物。他表示他已经被这篇甜傻了。


后室民风考:我们听点什么?
在站内有一堆神仙民分考文的情况下怀着随便dv大无畏精神写出来的一篇另类之作。你要听听我的怪点子吗?


绞幸者
当意义不可理解之时,遵循意义者将会散发出至深的恐惧。
第一次尝试写这种有很多伏笔的文章。算是显摆自己看了很多文吧。不过他看起来真的太长了,我觉得我有必要学习一下怎么在不影响表达效果的前提下压缩文字的块头。

未发布于AS分站的后室相关作品

Entity Cloud 40-“攀爬者”
算是第一篇认真写的后室作品。很不成熟,连我自己都差点把它忘了。也许以后我可以把它翻出来利用一番?


楼层现象研究:后室由楼层宣告其诞生
FD侧写手四方之中写的一个非常有趣的后室理论,我帮他做了一些通俗化处理。这个理论从上叙出发,为后室的起源问题提供了一个杀死比赛式的万精油回答,不过看之前要做好心理准备,这篇文章会绕晕你的9


层级现象与现实中自然现象的不同
和四方之中合著的另一篇作品,并未发表在写作网站上,但仍是个有趣的理论。以及,本文或许应该改名为《抽象思维比形象死亡更具读者劝退性的文字表现》


虽然因为能力不足与喜欢咕咕,我只有这么点作品,但是我会努力写更多出来的!2869,just do it!

2869的朋友们

虽然我在写文方面不大活跃,但我还是在后室社区中交到了许多的朋友10。友谊是最值得珍惜的东西!11

2869的友谊小清单

AAcerAAcer :是人见人爱的淳鹿人姐姐!她比我早大约1322个小时来到这个世界上,是我后室写作的引路人。她给出了我人生中收到的第一个uv,也让我放下了许多不必要的偏见。可以说,没有她就没有今天在社区中的我。

姐姐好美,姐姐赛高!


114514wuxian114514wuxian :雾仙老师。同样是社区的引路人,我们一起在群聊中度过了许多快乐的时光,虽然她现在淡圈了,但她仍然对我产生了很大的影响12

雾仙到底是雾还是仙?


LemonChenLemonChen:柠辰前辈,温柔的uver。给了我相当多的鼓励,在写文方面也给予我不少指导。


Mirror handsMirror hands :镜手姐姐13,他的文章给了我许多排版和节奏上的启发。梦想着有一天能像他一样高质又高产。

来自阴暗逼的压迫感……


SX-626SX-626 :活泼的速切佬,我的好水友。他身上的活力总能让我元气满满。他的卖克劳德涩图文算是我写作的重要参考之一(笑)。

教练,我想玩速切!


Star4326Star4326 :第一位和我合著的站友,拥有令人望而却步的白描功底。每次看星璇大人的文章我都会乖乖的交出UV。

你!给我去看春日,樱花,铁路!!


qwq5231554135qwq5231554135 :多厨将军,给了我许多代码方面的指导,也是有名的产量怪物。他是我的榜样之一,如果我有他那样的代码能力的话,应该能少咕咕一些。

我的天呐代码佬多厨将军!


szfwcycszfwcyc :鹿丹,总是说自己是萌新但实力却很强的大大,也是热情活泼uver,期待着有一天能跟她合作写一些东西。

绘画写文双精的佬最吓人了好吧……


Lawyer KarotLawyer Karot :这个星球上第一个给我写同人文的人,这篇同人文是我写作的最大动力之一。

爱你!


四方之中:FD侧的写手,因为一次文章润色与我结为了朋友。他一直在孜孜不倦的收集我写的各种冷笑话和短篇小文章。这是我创作的重要动力之一。

结识超!级!大!四!方!是十分幸运的事情!


:其实不是后室社区的居民,但他在创作上给予了我长期的鼓励,还很喜欢两位站娘的故事,于是我将他也放在了这里。海边来客也是我写给他的作品。

娱乐时间!

我从不在能让我感到快乐的事情上节制,包括喝水,享乐在我人生当中占有重要的地位。本着独乐乐不如众乐乐的原则,我决定分享下那些能让我快乐的东西。

这个分页会不定期更新,常回来淘金!

我喜欢听着音乐码字,音乐是我生活中最为重要的慰藉之一。

我听的歌不多但很杂,与其说我喜欢某种风格的歌,不如说我只是希望听见些顺耳的音频。从前辈们的作者页来看,AS站内听术曲和摇滚的人似乎蛮多的,但我这两者都听得很少——闲聊话题减一。15

下面是我喜欢听的一些歌,点击红链可以直接到B站上去听。

伍佰-白鸽:我最喜欢的歌,世纪末的礼物。说真的,求你去听这首歌吧,我真的不希望任何人错过他。真的,算我求你,去听他吧。他绝对能给你意想不到的东西。

朴树-好好的:世间万般祝愿,归根到底是一句“好好的。”冷门而让人振作的歌曲。

朴树-那些花儿朴树-猎户星座:这两首歌会让我想起在后室社区中再也见不到的那些朋友和回不去的悠闲时光。愿曲终不再有人散。

小虎队-爱:经典永不过时,爱,不论热烈或平淡,都要大声说出来!

钟镇涛-漫漫人生路:经典永不过时×2,愿我们永远能活出自己的洒脱!

花儿乐队-穷开心:我本以为我长大之后会听点别的,但是这歌实在还是太让人开心了。

小虎队-爱:经典永不过时,爱,不论热烈或平淡,都要大声说出来!

许冠杰-财神到:你可能不知道这首歌,但是你肯定在过年的超市里听过。16

Tears of Fears-Every Body Want to Rule the World:这首歌有一种难以言喻的正义感,还有一种淡淡的游戏人生态度。I love that!

Authors-Believer:不知道说什么了,洒脱,好听!

Have A Nice Day:戴上耳机17,跳起来吧。友情提示这首歌配合MV食用更佳哦。

キラキラスターナイト☆:2016年的FC游戏《闪闪亮星星之夜》的主题曲。活泼可爱美少女谁不喜欢呢?



我一般是用B站听歌的,原因是没有音乐软件会员。这是我的B站歌单,同样不定期更新。

碎碎念


由于脚注也是碎碎念的一部分,所以2868把脚注放在了这里。

留言板


留言板拥有水编辑次数编辑次数和留言的双重功能,这或许代表留言板可以用来追忆我们的“似年”。

欢迎在此留言,用你最喜欢的方式。记得署名,2869会定期回来查看的。

——the tears upthe tears up

好奇怪,我也不擅长社交也没太多朋友,甚至也有皮肤饥渴 搂搂抱抱是好逝啊 总之2869可爱就是了!

——PlasticDPlasticD

无良不良大佬2869于幻想竞赛中欺负不会写文的废物萌新,特此在小板板上记上一笔😡

另,文章分数+1,编辑次数+2,经验+3

——szfwcycszfwcyc

这么好的2869,以后一定会幸福的。我祝愿。

以及md自从我看了那个柠雀汁之后我就再也离不开这些情节微妙的小甜文了2869你得给出精神损失(大嘘)费用

——LemonChenLemonChen

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License