@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
业务介绍:
在维坎德·尼德,我们为自己处于媒体和通讯技术的最前沿感到自豪。我们的目标是通过无偏见但具有美感的通信改善个人和社会。
如果有更美好的世界在彼方,那么共同实现它是我们每个人的任务。高效而娱乐的媒体是通向乌托邦的最重要一步。
为何不与我们一起加入这更好的明天TM呢?
我们的证明:
以下是我们为追求完美的通信而完全掌握的技术:
- 无线电/电视/互联网广播!
- 电影生产与分销!
- 家中娱乐产品分销!
- 黑魔法!
- 娱乐内容制造!
- 教育内容制造!
- 谋杀!
- 心灵战争!
- 平面设计!
留意那些标注维坎德·尼德技术传媒的产品。
我们于媒体销售的地方无处不在。
我们在这里等你!
维坎德·尼德技术传媒是一个受诅咒的媒体GoI。他们在媒体生产与分销的各个领域都有涉猎,并利用异常来做到这点。
维坎德·尼德主要着力于令人不安的食物或病态幽默,它制作了广播节目、教学VHS磁带、练习DVD、娱乐DVD的额外功能(如导演的评论)、纪录片、音乐和推流服务。
1950年来,维坎德·尼德的活动和内容传播对常态构成了巨大威胁,与他们的活动相关的异常具有一系列无法预测的能力。目前为止,对于他们的运作模式和总体任务,基金会完全不知情。
SCP-7007 - 《厄运峡谷》 by Grigori Karpin & Vivarium
介绍性作品:1
- SCP-5889 – 忆难忘 by Grigori Karpin & Dysadron
- SCP-5904 – 非人力资源 by Grigori Karpin
- SCP-5897 – 历史是由VKTM书写的 by Grigori Karpin
附加作品:
- SCP-5379 - 录像带式忏悔 by HarryBlank
- SCP-5479 - 你的电影 by Grigori Karpin
- SCP-5681 - 炼狱街道 by Grigori Karpin & Vivarium
- SCP-6591 - 练起来!:维坎德·尼德技术传媒节目 by PlaguePJP
- SCP-5698 - 经济迁移 by Grigori Karpin
- SCP-5358 - Vlorschidia by winkwonkboi
- SCP-6123 - VKTM出品:《媒体与你》 by Grigori Karpin
- SCP-5974 - 互动式小说 by HarryBlank
- SCP-5571 - 《美国后花园》 by Grigori Karpin
- SCP-6301 - 《Funky Finn的儿童欢乐时间》 by Grigori Karpin, GremlinGroup, & LORDXVNV
- SCP-5428 - 101 Household Hints with Eleonor by AWeirdBird
- SCP-6750 - Halloween Safety Tips, Presented by Sam Hain by PlaguePJP & by J Dune
- SCP-6677 - Finn's Hollow - a Vikander-Kneed Production by Grigori Karpin
- SCP-1337-EX - 维坎德·尼德的NFT! by LORDXVNV
- SCP-6221 - A Very VKTM Christmas by ihp
- SCP-6780 - “dado见康”由维坎德·尼德推荐给您 by ihp & Grigori Karpin
- SCP-6156 - 家有Doug by Calibold
- SCP-6358 - 弥赛亚 by Machen2
- SCP-6359 - 《美利坚美利坚》 by HarryBlank
- SCP-6897 - 你敢信吗香肠是这么做的! by Grigori Karpin
- SCP-6613 - 句读剧 by Doctor Cimmerian
- SCP-6891 - 如何毫不费力地消除焦虑 by Sound Chaser
- SCP-7806 - 给dado的膝盖 by HarryBlank
- SCP-7069 - VKTM出品:读者x你! by LORDXVNV
- SCP-1747-JP - リアルに広がる真のホラー! by roneatosu
- SCP-7889 - 谎言与诽谤 by NielleiN
- SCP-7796 - VKTM出品:《贝壳面先生今晚有约》 by Grigori Karpin
- SCP-7165 - The Faux Pass by HarryBlank
故事:
- 一个烹饪节目 by FluffyDog00
- 殷勤寄词 by HarryBlank
- Foundation After Midnight Radio, Episode ██: Have Yourself A Meta Little Christmas by HarryBlank
- Vikander-Kneed Worldwide News by Cole 13
- 9 to 5 by Prime Girl
- The Trainee Gets Trolled by Guezma
- WILLIE WETTLE WASHED UP WHILE WALKING by Prime Girl
Misc.:
- 关于维坎德·尼德技术传媒的艺术作品 - 由上述的多名作者制作,Grigori Karpin整理
毫无疑问,任何人都可以在这个GoI下写文章。
写作维坎德·尼德的金规矩:不要解释他们的动机、他们的起源,或者他们如何完成自己的职责。2
一些基本准则:
- 这不是折磨色情。尽管这些skips里有暴力和惊悚,但这不是极端的恐怖。
- 这些文章应当着力于惊悚暴力、社会评论、喜剧、媒体给我们带来的影响,这些东西所带来的结果。
- 另外,这个公司没有门面……和W博士或安德森机器人不同,我们并不会着眼于从维坎德·尼德的角度来看他们自己如何运作:如果你想描写他们的动机和行为,写的模糊些,并保持其限制在媒体表达之内。(参考SCP-5904)
请不要对维坎德·尼德的具体起源进行深度的考究。至少从一开始,我觉得不去考据的话会有趣得多。就写一些疯狂的玩意儿因被诅咒的媒体作用于人们身上就可以了。
我认为秘密在于这个描述看起来很平淡,只有一点对基本异常效应的提示。然后再媒体本身上展现出肯定是异常且恐怖的东西,通过荒诞或存在主义(或两者都有)的形式。
任何跟各种形式媒体相关的都可以写,只要尝试关注幽默、隐含的恐怖暴力和令人不安的东西的平衡,你就对路了。
如果你有任何问题或想给我扔个点子可以通过PM、IRC或Wikidot找到我:Grigori Karpin.
请按如下方式引用此页:
“维坎德·尼德技术传媒 中心页”,作者 Grigori Karpin,来自 SCP 维基。原文链接:https://www.scpwiki.com/vikander-kneed-technical-media-hub。译者 UnnaHuz,来自 SCP-CN 维基。译文链接:http://scp-wiki-cn.wikidot.com/vikander-kneed-technical-media-hub。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
文件名:VKlogotransparent
图像作者:Grigori Karpin
授权协议:CC BY-3.0
来源链接:
备注:由我创作。
文件名:RecruitmentFlyer
图像作者:Grigori Karpin
授权协议:CC BY-SA 3.0
来源链接:
备注:由下面四张图片组成
文件名:newscaster
图像作者:Tom Hilton
授权协议:CC BY-2.0 Generic
来源链接:LINK
备注:由Grigori Karpin编辑
文件名:Concert Scarecrow 040
图像作者:Patrick Gaudin
授权协议:CC BY 2.0
来源链接:LINK
备注:由Grigori Karpin编辑
文件名:Adult Outdoor Spors
图像作者:Seattle Parks and Recreation
授权协议:CC BY 2.0
来源链接:LINK
备注:由Grigori Karpin编辑
文件名:nothing on tv
图像作者:Robert Couse-Baker
授权协议:CC BY 2.0
来源链接:LINK
备注:
文件名: VKTM welcomes you
图像作者: Grigori Karpin
授权协议: CC BY-SA 3.0
来源链接: http://scp-wiki.wikidot.com/local--files/grigori-karpin-s-author-page/VKTM%20Welcomes%20you.mp3
文件名:RecruitmentFlyer2
图像作者:PlaguePJP
授权协议:CC BY-SA 3.0
来源链接:LINK
备注:经允许引用
更多维基文档信息,请见版权信息总览。