@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; 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; width: var(--body-width-on-desktop, 45.75rem); 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; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); box-shadow: calc(var(--search-height) / 2 * -1) 0 calc(var(--search-height) / 2) rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }

YOU BETTER FIND THIS CROM!!!
We hope you enjoy it!

Introduction
Hello and welcome to the
Scip Squad Pod. . . cast!
Where we don't care about what you write, we care about what you love.
On The SSP, SCP authors and artists, tstaffor and Luxaiko chat with folks from all around the SCP community. The catch? It's never about their own work.
Guests will come on to talk about their 5 favorite scips, the first article they ever read along with their thoughts on it looking back now, and even non-SCP hobbies or interests.
Episodes
A Planet Entirely Made out of Stone
A new saga has begun! This week tstaffor and Luxaiko chat about their favorite SCP and how they each came across the site.
tstaffor's work: https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko's work: https://scp-wiki.wikidot.com/aiko-artpage
and Twitter: https://mobile.twitter.com/luxaiko
The intro/outro music is You and Me, written by djkaktus and performed by Oboebandgeek99
SCP-5031 - Yet Another Murder Monster by PeppersGhost
(https://scp-wiki.wikidot.com/scp-5031)
SCP-4479 - D-11424 and The Land of Too Many Doors by Captain Kirby
(https://scp-wiki.wikidot.com/scp-4479)
SCP-2030 - LA U GH IS F UN by PeppersGhost
(https://scp-wiki.wikidot.com/scp-2030)
SCP-5553 - Psycho Social Media by CityToast
(https://scp-wiki.wikidot.com/scp-5553)
SCP-5178 - Eat the Sun with Seth Uhar by DecoyMesa
(https://scp-wiki.wikidot.com/scp-5178)
Taboo by PeppersGhost
(https://scp-wiki.wikidot.com/taboo)
SCP-2521 - ●●|●●●●●|●●|● by LurkD
(https://scp-wiki.wikidot.com/scp-2521)
Format Screw Hub by Henzoid, tstaffor, and TopDownUnder
(https://scp-wiki.wikidot.com/format-screw-hub)
SCP-5000 - Why? by Tanhony
(https://scp-wiki.wikidot.com/scp-5000)
SCP-4634 - Out-of-Order by MaliceAforethought
(https://scp-wiki.wikidot.com/scp-4634)
CODE NAME: WJS - Normalcy by WrongJohnSilver
(https://scp-wiki.wikidot.com/wjs-proposal)
SCP-4228 - Karma Kameleon by T Rutherford
(https://scp-wiki.wikidot.com/scp-4228)
SCP-8900-EX - Sky Blue Sky by tunedtoadeadchannel
(https://scp-wiki.wikidot.com/scp-8900-ex)
SCP-5923 - The Place I Belong by Grigori Karpin
(https://scp-wiki.wikidot.com/scp-5923)
SCP-3477 - Will the Real Harold Holt Please Stand Up? by Stormbreath
(https://scp-wiki.wikidot.com/scp-3477)
BREAKNECK by Rounderhouse
(https://scp-wiki.wikidot.com/breakneck)
SCP-6000 - The Serpent, the Moose, and the Wanderer's Library by Rounderhouse
(https://scp-wiki.wikidot.com/scp-6000)
Do you like Huey Lewis and the News? by Rounderhouse
(https://scp-wiki.wikidot.com/do-you-like-huey-lewis-and-the-news)
SCP-184 - The Architect by DrGears
(https://scp-wiki.wikidot.com/scp-184)
CODE NAME: ████ ███ - The Truth by Jack Ike
(https://scp-wiki.wikidot.com/code-name-the-truth)
SCP-2480 - An Unfinished Ritual by Metaphysician
(https://scp-wiki.wikidot.com/scp-2480)
SCP-1171 - Humans Go Home by DrEverettMann
(https://scp-wiki.wikidot.com/scp-1171)
SCP-049 - Plague Doctor by djkaktus
(https://scp-wiki.wikidot.com/scp-049)
The Right Type of Mud
This week tstaffor and Luxaiko are joined by CreepyOtter to talk about his favorite Scips! tstaffor finds most of the skips a bit too spooky (but not Too Spooky) for her, and Luxaiko and CreepyOtter reminisce about the good ol' days of Creepypastas.
Check out CreepyOtters wonderful SCP narration channel here: https://www.youtube.com/channel/UCBK-Wruwzce6AU2UaX17f_g
tstaffor's work: https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko's work: https://scp-wiki.wikidot.com/aiko-artpage
and Twitter: https://mobile.twitter.com/luxaiko
The intro/outro music is You and Me, written by djkaktus and performed by Oboebandgeek99
SCP-6655 - The Worst Thing You Can Imagine. by Limeyy
(https://scp-wiki.wikidot.com/scp-6655)
SCP-6430 - Verbosity Velocity by S D Locke
(https://scp-wiki.wikidot.com/scp-6430)
SCP-5390 - Do You Want A Tamale? by EthanHanson
(https://scp-wiki.wikidot.com/scp-5390)
SCP-6646 - Emergency Action System by kingpogan
(https://scp-wiki.wikidot.com/scp-6646)
SCP-6059 - HAVE YOU EVER HAD AN ENLIGHTENED EXPERIENCE IN A BALL PIT? by fabledtiefling
(https://scp-wiki.wikidot.com/scp-6059)
SCP-6033 - The Friend With Many Arms by fabledtiefling
(https://scp-wiki.wikidot.com/scp-6033)
SCP-6988 - Contagious Omniscience by MoreMuffins
(https://scp-wiki.wikidot.com/scp-6988)
SCP-5321 - The Spoiler by GrimmCreeper
(https://scp-wiki.wikidot.com/scp-5321)
SCP-511 - Basement Cat by sandrewswann
(https://scp-wiki.wikidot.com/scp-511)
SCP-6692 - 𝐌𝐈𝐒𝐒ILE by JakdragonX and JakalRelated
(https://scp-wiki.wikidot.com/scp-6692)
SCP-5404 - ~~Linguistic Minefield~~ (Boom-Boom Words) by PeppersGhost
(https://scp-wiki.wikidot.com/scp-5404)
SCP-4792 - The Contingency by Yossipossi
(https://scp-wiki.wikidot.com/scp-4792)
Unexplained Artefact #6980 - No Ordinary Camera by Dr Leonerd
(https://scp-wiki.wikidot.com/scp-6980)
SCP-6969 - the joke is sex by Yossipossi
(https://scp-wiki.wikidot.com/scp-6969)
SCP-6969-J - The End of Sex 6.9: You Can (Not) Reproduce by Yossipossi
(https://scp-wiki.wikidot.com/scp-6969-j)
SCP-6231 - Ribbits & Cream by AvocadoMilk
(https://scp-wiki.wikidot.com/scp-6231)
SCP-6922 - Agent Lou of the CWPA
(https://scp-wiki.wikidot.com/scp-6922)
SCP-5449 - Choo Choo Spooder by Sirslash47
(https://scp-wiki.wikidot.com/scp-5449)
SCP-610 - The Flesh that Hates by NekoChris
(https://scp-wiki.wikidot.com/scp-610)
SCP-049 - Plague Doctor by djkaktus
(https://scp-wiki.wikidot.com/scp-049)
SCP-1936 - Daleport by FlameShirt
(https://scp-wiki.wikidot.com/scp-1936)
SCP-2191 - "Dracula Factory" by Metaphysician
(https://scp-wiki.wikidot.com/scp-2191)
SCP-783 - There Was A Crooked Man by S D Locke
(https://scp-wiki.wikidot.com/scp-783)
SCP-096 - The "Shy Guy" by Dr Dan
(https://scp-wiki.wikidot.com/scp-096)
SCP-106 - The Old Man by Dr Gears
(https://scp-wiki.wikidot.com/scp-106)
SCP-4975 - Time's Up by Scented_Shadow
(https://scp-wiki.wikidot.com/scp-4975)
That creature-making youtuber tstaffor was going on about is this guy: https://www.youtube.com/c/WillMcDaniel
She also rambled about a Junji Ito comic that can be read here: https://imgur.com/gallery/Wht7z
Yet another thing tstaffor mentioned was the music video for Ruler of Everything: https://www.youtube.com/watch?v=I8sUC-dsW8A
CreepyOtter talked about this homunculus getting smashed with a bible: https://www.youtube.com/watch?v=gDJ2wzITd3k
And finally, Luxaiko thought the creature video was Kitty City: https://www.youtube.com/watch?v=jX3iLfcMDCw
I Don't Wanna Say Lovecraftian
This week tstaffor and Luxaiko Kidnap Gooday and force him to talk about his favorite Scips!
Our guest Gooday's work can be found here:
https://scp-wiki.wikidot.com/gooday-s-bad-page
tstaffor's work: https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko's work: https://scp-wiki.wikidot.com/aiko-artpage
and Twitter: https://mobile.twitter.com/luxaiko
The intro/outro music is You and Me, written by djkaktus and performed by Oboebandgeek99
SCP-2264 - In the Court of Alaggada by Metaphysician
(https://scp-wiki.wikidot.com/scp-2264)
SCP-701 - The Hanged King's Tragedy by tinwatchman
(https://scp-wiki.wikidot.com/scp-701)
SCP-2480 - An Unfinished Ritual by Metaphysician
(https://scp-wiki.wikidot.com/scp-2480)
SCP-610 - The Flesh that Hates by NekoChris
(https://scp-wiki.wikidot.com/scp-610)
And so the Crows Laughed by SunnyClockwork
(https://scp-wiki.wikidot.com/and-so-the-crows-laughed)
Goodnight Miss Moon by Luxaiko
(https://scp-wiki.wikidot.com/goodnight-miss-moon)
Than Teach Ten Thousand Stars How Not to Dance by Lordstonefish
(https://scp-wiki.wikidot.com/scp-4012)
SCP-4663 - 3D Printed Spiders Printing Printed Printers Printing Spider Printers Printing Spiders Printing Printed Spider Printers Printing Printing Spider Printers Printing Spiders Printing Printed Printer Spiders Printing Spidered Spider Printers Printing Spider Spider Printered Printer Printers by XilasCrowe
(https://scp-wiki.wikidot.com/scp-4663)
Curated Tale Series Hub
(https://scp-wiki.wikidot.com/curated-tale-series)
The Friday Exhibition by Randomini
(https://scp-wiki.wikidot.com/the-friday-exhibition)
SCP-4052 - Sandwich Police by DeadlyBread
(https://scp-wiki.wikidot.com/scp-4052)
wowwee go kill ursefl by Randomini
(https://scp-wiki.wikidot.com/wowwee-go-kill-ursefl)
Cool War 2: Ruiz From Your Grave by Randomini
(https://scp-wiki.wikidot.com/cool-war-2-hub)
Everything Worth Doing is So Fucking Hard by Darkstuff
(https://scp-wiki.wikidot.com/everything-worth-doing-is-so-fucking-hard)
SCP-111 - Dragon Snails by Adam Henderson
(https://scp-wiki.wikidot.com/scp-111)
SCP-2815 - Tree of Life by Nederbird
(https://scp-wiki.wikidot.com/scp-2815)
'SmartHex' (SMR82/H0EX3/4DNV9) by DrChandra
(https://scp-wiki.wikidot.com/mcd-smart-hex)
The 12 Days of Site 87's Christmas by Ihp
(https://scp-wiki.wikidot.com/holy-crap-this-is-a-long-christmas-tale)
SCP-4661 - Sin City by ROUNDERHOUSE
(https://scp-wiki.wikidot.com/scp-4661)
I was able to get onto tstaffor's computer, please help me they've still got me trapped down here in th
Learn to Run a Joke Much?
This week tstaffor and Luxaiko are joined by Grigori Karpin (definitely not an SCP author or podcast host) to discuss his favorite articles. Grigori accidentally creates an obsession with the ocean, Aiko gets disgusted at how many similarities she and Karpin have, while all three suffer severe lapses in word pronunciation.
Our guest Grigori's work can be found here:
https://scp-wiki.wikidot.com/grigori-karpin-s-author-page
And his podcast with co-host HarryBlank is here:
https://scp-wiki.wikidot.com/simply-creative-people-hub
Check out the SSP's hub page for other ways to listen!
https://scp-wiki.wikidot.com/the-scip-squad-podcast-hub
tstaffor's work: https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko's work: https://scp-wiki.wikidot.com/aiko-artpage
and Twitter: https://mobile.twitter.com/luxaiko
You can purchase the books at the following links.
Neverstone: the Mad Elf (by Daveyoufool):https://www.amazon.com/Neverstone-Mad-Elf-LitRPG-Adventure-ebook/dp/B0923R4654
The Featherlight Transmission (by CadaverCommander): https://www.amazon.com/Featherlight-Transmission-Jake-Schaefer/dp/B08JDTN7TC
The intro/outro music is You and Me, written by djkaktus and performed by Oboebandgeek99
Grigori's Author Avatar was drawn by Corgo
SCP-5525 - The US Government Loots Atlantis by greenwolf
(https://scp-wiki.wikidot.com/scp-5525)
SCP-4246 - Thalassomania, or the Dreams of the First Born by metaphysician
(https://scp-wiki.wikidot.com/scp-4246)
SCP-2480 - An Unfinished Ritual by Metaphysician
(https://scp-wiki.wikidot.com/scp-2480)
SCP-049 - Plague Doctor by djkaktus
(https://scp-wiki.wikidot.com/scp-049)
SCP-001 - The Gate Guardian by DrClef
(https://scp-wiki.wikidot.com/dr-clef-s-proposal)
SCP-001 - The Factory by DrBright
(https://scp-wiki.wikidot.com/scp-001-o5)
SCP-001 - A Record by Kate McTiriss
(https://scp-wiki.wikidot.com/kate-mctiriss-s-proposal)
SCP-001 - The Foundation by Communism Will Win
(https://scp-wiki.wikidot.com/scantron-s-proposal)
SCP-049 (again) - Plague Doctor by djkaktus
(https://scp-wiki.wikidot.com/scp-049)
SCP-610 - The Flesh That Hates by NekoChris
(https://scp-wiki.wikidot.com/scp-610)
SCP-093 - Red Sea Object by NekoChris
(https://scp-wiki.wikidot.com/scp-093)
SCP-3896 - We'll Never Stop Eating Big Gordo by CadaverCommander
(https://scp-wiki.wikidot.com/scp-3896)
Burger King by Marcelles Raynes
(https://scp-wiki.wikidot.com/burger-king)
SCP-5866 - The Namesnake by HarryBlank
(https://scp-wiki.wikidot.com/scp-5866)
Pee Depth
This week tstaffor and Luxaiko are joined by Captain Kirby to discuss his favorite articles. Caption Kirby reveals that he is an alien from another planet, tstaffor and Luxaiko discuss their kill counts, and we come to the realization humans are terrible at naming people!
Our guest Captain Kirby's work can be found here: https://scp-wiki.wikidot.com/captain-kirby-s-personal-file
tstaffor's work: https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko's work: https://scp-wiki.wikidot.com/aiko-artpage
and Twitter: https://mobile.twitter.com/luxaiko
Scip Squad Pod's Twitter: https://twitter.com/scipsquadpod
Email in questions to the podcast at: moc.liamg|dopdauqspicS#moc.liamg|dopdauqspicS
Check out the SSP's hub page for other ways to listen! https://scp-wiki.wikidot.com/the-scip-squad-podcast-hub
The intro/outro music is You and Me, written by djkaktus and performed by Oboebandgeek99
SCP-2188 - Life and Times of Joaquín Pablo Izquierdo de San Felipe by Kalinin
https://scp-wiki.wikidot.com/scp-2188
'Hypnotraline' (TR7K2/2UD9X/53GN8) by Veiedhimaedhr
https://scp-wiki.wikidot.com/hypnotraline
SCP-093 - Red Sea Object by NekoChris
https://scp-wiki.wikidot.com/scp-093
SCP-3512 - The More You Know by psul
https://scp-wiki.wikidot.com/scp-3512
There's a Hole in the Bottom of the Wishing Well by Tufto
https://scp-wiki.wikidot.com/there-s-a-hole-in-the-bottom-of-the-wishing-well
AMBROSE TRANSYLVANIA: FOR ALL THE DAMN VAMPIRES
This week tstaffor and Luxaiko are joined by LordStoneFish to discuss their favorite articles. Tstaffor and Luxaiko issue a formal apology to PeppersGhost, while LordStoneFish talks about their plans to get themself on a Scientology watch list.
Our guest LordStoneFish's work can be found here: https://scp-wiki.wikidot.com/lord-stonefish
tstaffor's work: https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko's work: https://scp-wiki.wikidot.com/aiko-artpage and
Twitter: https://mobile.twitter.com/luxaiko
Scip Squad Pod's Twitter: https://twitter.com/scipsquadpod
Email in questions to the podcast at: moc.liamg|dopdauqspicS#moc.liamg|dopdauqspicS
Check out the SSP's hub page for other ways to listen! https://scp-wiki.wikidot.com/the-scip-squad-podcast-hub
The intro/outro music is You and Me, written by djkaktus and performed by Oboebandgeek99
SCP-1425 - Star Signals by Silberescher
(https://scp-wiki.wikidot.com/scp-1425)
SCP-3360 - Proletariart, by San Francisco Jones by A Random Day
(https://scp-wiki.wikidot.com/scp-3360)
Experiment Log 261 Ad De by way too many people to name
(https://scp-wiki.wikidot.com/experiment-log-261-ad-de)
SCP-1756 - At the Movies by Smapti
(https://scp-wiki.wikidot.com/scp-1756)
SCP-3682 - Parousia by faminepulse
(https://scp-wiki.wikidot.com/scp-3682)
SCP-3194 - Divine Presence by CharlesDoucet
(https://scp-wiki.wikidot.com/scp-3194)
Show Info
Available On
Youtube - Spotify - Apple Podcasts - Amazon Podcasts - Stitcher
You can email us questions through our Email: moc.liamg|doPdauqSpicS#moc.liamg|doPdauqSpicS
tstaffor's SCP articles are here!
Aiko's Art is here!
Aiko also has twitter!
Cite this page as:
"The Scip Squad Podcast Hub" by Tstaffor, from the SCP Wiki. Source: https://scp-wiki.wikidot.com/the-scip-squad-podcast-hub. Licensed under CC-BY-SA.
For more information, see Licensing Guide.
Licensing Disclosures
tstaffor and Aiko created all images on this page and release them under CC BY-SA 3.0.
For more information about on-wiki content, visit the Licensing Master List.