2022-03-31 19:42:13 +02:00
<!DOCTYPE html>
< html lang = "en-US" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2022-03-31 21:02:12 +02:00
< meta name = "description" content = "Home of the Cringos!" >
< meta property = "og:image" content = "https://nsfw.cringe-studios.com/grimacing.png" >
< meta property = "og:type" content = "website" >
< meta property = "og:url" content = "https://cringe-studios.com/" >
< meta property = "og:title" content = "¢яι ηgє $тυ∂ισѕ Official Website" >
< meta property = "og:description" content = "Home of the Cringos!" >
2022-03-31 19:42:13 +02:00
< title > ¢яι ηgє $тυ∂ισѕ< / title >
< link rel = "icon" href = "https://cdn.discordapp.com/attachments/906285431782539294/959130243053010994/Untitled.png" >
2022-11-04 16:30:10 +01:00
< link rel = "stylesheet" href = "/fnont/comic.css" >
2022-03-31 19:42:13 +02:00
< link rel = "stylesheet" href = "https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" >
< script src = "https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js" > < / script >
< script src = "https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" > < / script >
< script src = "https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js" > < / script >
< style >
2022-04-15 22:05:15 +02:00
html{
overflow-x: hidden;
}
2022-03-31 19:42:13 +02:00
body {
text-align: center;
2022-11-04 16:30:10 +01:00
font-family: 'Comic Mono';
2022-04-05 15:34:07 +02:00
overflow-x: hidden;
padding-top: 10px;
2022-04-15 22:05:15 +02:00
background-color:yellow;
position:relative;
2022-03-31 19:42:13 +02:00
}
footer {
text-align: left;
font-size: 50%;
}
2022-04-21 20:25:56 +02:00
button {
background-color: pink;
border-radius: 5px;
}
2022-03-31 19:42:13 +02:00
.gurke {
border: 2px solid black;
padding: 10px;
margin:-2px 0 0 -2px;
}
2022-04-05 15:34:07 +02:00
.impostor-image {
animation: amogus 1000s infinite linear;
}
2022-03-31 19:42:13 +02:00
.article {
text-align:left;
}
2022-04-05 15:34:07 +02:00
.leftRight {
2022-04-15 22:03:20 +02:00
animation: left2Right 20s infinite linear;
2022-04-05 15:34:07 +02:00
}
.rightLeft {
2022-04-15 22:03:20 +02:00
animation: right2Left 20s infinite linear;
2022-04-05 15:34:07 +02:00
}
2022-04-15 19:42:42 +02:00
.upDown {
animation: updown 3s infinite ease;
}
2022-04-05 15:34:07 +02:00
.video {
2022-04-15 19:48:09 +02:00
/*animation: rickRoll 1s infinite ease;*/
animation: amogus 10s infinite linear;
2022-04-15 21:57:57 +02:00
max-width: 100%;
2022-04-21 20:25:56 +02:00
margin-top: 175px;
margin-bottom: 175px;
}
iframe {
background: url("https://nsfw.cringe-studios.com/wtf.png"), linear-gradient(rgb(255,0,0), rgb(0,255,0));
2022-04-05 15:34:07 +02:00
}
2022-04-19 20:35:15 +02:00
2022-04-19 13:31:40 +02:00
.blinking {
animation: blink 1s infinite linear;
}
2022-04-21 20:25:56 +02:00
2022-04-19 20:35:15 +02:00
2022-04-19 13:31:40 +02:00
@keyframes blink {
50% {
background-color:yellow;
color:red;
}
}
2022-04-05 15:34:07 +02:00
@keyframes rickRoll {
50% {
2022-04-09 12:55:18 +02:00
transform: translateX(calc(100% - 560px));
2022-04-05 15:34:07 +02:00
}
}
2022-04-15 19:42:42 +02:00
@keyframes updown {
50% {
transform: translateY(calc(100% - 560px));
}
}
2022-04-05 15:34:07 +02:00
@keyframes left2Right {
0% {
transform: translateX(-50vw);
}
25% {
transform: translateX(0vw);
}
50% {
transform: translateX(50vw);
}
75% {
transform: translateX(100vw);
}
100% {
transform: translateX(150vw);
}
}
@keyframes right2Left {
0% {
transform: translateX(150vw);
}
25% {
transform: translateX(100vw);
}
50% {
transform: translateX(50vw);
}
75% {
transform: translateX(0vw);
}
100% {
transform: translateX(-50vw);
}
}
2022-03-31 19:42:13 +02:00
/* Bootstrap: small */
@media only screen and (max-width: 576px) {
.gurke {
margin:0 -2px -2px 0;
}
}
/* Bootstrap: medium */
@media only screen and (max-width: 768px) {
.gurke {
margin:0 -2px -2px 0;
}
}
2022-04-05 15:34:07 +02:00
@keyframes amogus {
0% {
transform: rotateZ(0deg);
}
25% {
transform: rotateZ(90deg);
}
50% {
transform: rotateZ(180deg);
}
75% {
transform: rotateZ(270deg);
}
100% {
transform: rotateZ(360deg);
}
2022-04-21 20:25:56 +02:00
2022-04-05 15:34:07 +02:00
}
2022-04-21 20:25:56 +02:00
2022-03-31 19:42:13 +02:00
< / style >
< / head >
2022-04-15 22:05:15 +02:00
< body >
2022-04-15 18:59:15 +02:00
< header style = "padding-top:5vh;padding-bottom:5vh;" > < h1 style = "color:red;" > The Impostors< / h1 > < / header >
2022-03-31 19:42:13 +02:00
< div class = "container" >
< div class = "row" >
< div class = "col-md-4 gurke" style = "background-color: rgb(239, 228, 176);" >
< h1 > Cringe CEO< / h1 >
2022-04-21 23:08:32 +02:00
< a href = "https://nsfw.cringe-studios.com/securety.webp" > <!-- Ecchi.png" -->
2022-04-05 15:34:07 +02:00
< img class = "impostor-image" src = "https://nsfw.cringe-studios.com/arrayser.webp" alt = "Picture of the Cringe CEO" width = "50%" style = "border-radius: 50%;" / >
2022-03-31 19:42:13 +02:00
< / a > < br / >
< br / >
< div class = "article" >
< p > Alias: < b > < code > The Arrayser< / code > < / b > < / p >
2022-03-31 20:14:38 +02:00
< p > Github Page: < a href = "https://github.com/TheArrayser" target = "_blank" > TheArrayser;< / a > < / p >
2022-03-31 19:42:13 +02:00
< b > Favorites:< / b >
< ul style = "list-style-type:hiragana;" >
2022-03-31 21:02:12 +02:00
< li > Favorite Programming Language: < img style = "display:inline; vertical-align: middle;" height = "20" alt = "C" src = "https://nsfw.cringe-studios.com/C.png" / > < / li >
2022-03-31 20:14:38 +02:00
< li > Favorite Operating System: Windows xP< / li >
2022-03-31 19:42:13 +02:00
< li > Favorite Color: ⏢ ™ < / li >
< li > Favorite Bean: Kidney< / li >
2022-03-31 20:14:38 +02:00
< li > Favorite Internal Organ: Kidney< / li >
2022-03-31 19:42:13 +02:00
< / ul >
< p > Pronoun: < code > NOT< / code > < / p >
2022-03-31 21:02:12 +02:00
< p > Anything that is not < img style = "display:inline; vertical-align: middle;" height = "20" alt = "C" src = "https://nsfw.cringe-studios.com/C.png" / > is not a good programing language, maybe not even a programming language or even a language!< / p >
2022-03-31 19:42:13 +02:00
< / div >
< / div >
< div class = "col-md-4 gurke" style = "background-color: rgb(152, 255, 152);" >
< h1 > Kölian< / h1 >
2022-04-05 15:34:07 +02:00
< img class = "impostor-image" src = "https://nsfw.cringe-studios.com/mrletsplay.webp" alt = "JulianA" width = "50%" style = "border-radius: 50%;" / > < br / >
2022-03-31 19:42:13 +02:00
< br / >
< div class = "article" >
< p > Alias: < b > < code > MrLetsplay< / code > < / b > < / p >
2022-03-31 20:14:38 +02:00
< p > Github Page: < a href = "https://github.com/MrLetsplay2003" target = "_blank" > MrLetsplay;< / a > < / p >
2022-04-15 18:33:44 +02:00
< b > Favorites:< / b >
2022-04-15 18:37:38 +02:00
< ul style = "list-style-type:lower-greek;" >
2022-04-15 18:33:44 +02:00
< li > Favorite Song: Coconut Mall< / li >
< li > Favorite Operating System: Lin< img src = "https://nsfw.cringe-studios.com/sus.png" style = "display:inline; vertical-align: middle;" height = "20" alt = "sus" title = "sus" / > < / li >
2022-04-15 19:33:07 +02:00
< li > Favorite Video Game: Amogus< / li >
2022-04-15 19:42:42 +02:00
< li > Favorite Discord Bot: < a href = "https://graphite-official.com" target = "_blank" > Graphite< / a > < / li >
2022-04-15 18:33:44 +02:00
< / ul >
2022-04-15 18:28:51 +02:00
< p > Pronoun: < code > possibly< / code > < / p >
2022-04-15 18:30:13 +02:00
< p > < img src = "https://nsfw.cringe-studios.com/java.png" style = "display:inline; vertical-align: middle;" height = "20" alt = "Java" / > is the best language.< / p >
2022-03-31 19:42:13 +02:00
< / div >
< / div >
< div class = "col-md-4 gurke" style = "background-color:rgb(236, 173, 173)" >
< h1 > Bolbert< / h1 >
2022-04-05 15:34:07 +02:00
< img class = "impostor-image" src = "https://nsfw.cringe-studios.com/blobert.webp" alt = "JulianB" width = "50%" style = "border-radius: 50%;" / > < br / >
2022-03-31 19:42:13 +02:00
< br / >
< div class = "article" >
< p > Alias: < b > < code > Blobert< / code > < / b > < / p >
2022-04-15 16:47:19 +02:00
< p > Github Page: < a href = "https://github.com/JDobeshow" target = "_blank" > Julian;< / a > < / p >
2022-04-15 16:28:09 +02:00
< b > Favorites:< / b >
< ul >
2022-04-15 16:52:22 +02:00
< li > Favorite Operating System: Arch Lin< img src = "https://nsfw.cringe-studios.com/sus.png" style = "display:inline; vertical-align: middle;" height = "20" alt = "sus" title = "sus" / > < / li >
2022-04-15 16:38:03 +02:00
< li > Hobby: Appreciating Memes on the internet< / li >
2022-04-15 16:28:09 +02:00
< li > Favorite Song: Shrek opening song (All Star vong Smash Mouth her)< / li >
< / ul >
2022-04-15 18:30:13 +02:00
< p > Pronoun: < code > something< / code > < / p >
2022-04-15 16:47:19 +02:00
< p > Brainfuck is the best language.< / p >
2022-03-31 19:42:13 +02:00
< / div >
< / div >
< / div >
< / div >
< br / >
< div class = "container" >
< div class = "row" >
2022-04-05 15:34:07 +02:00
< div class = "col-sm-12 leftRight" >
2022-03-31 19:42:13 +02:00
< div class = "article" >
2022-03-31 20:14:38 +02:00
< h1 > Projects< / h1 >
< b > Cringe Studios Github: < a href = "https://github.com/CringeStudios" target = "_blank" > Cringe Studios;< / a > < / b >
2022-03-31 19:42:13 +02:00
< ul >
2022-03-31 20:14:38 +02:00
< li > < a href = "https://github.com/CringeStudios/cringe-studios.com" target = "_blank" > Cringe Studios Website< / a > < / li >
< li > Secret Reichstag< / li >
< li > Shitty Auth Launcher< / li >
< li > Kek Engine< / li >
< li > Kekman< / li >
< li > KekPong< / li >
< li > Cringe Renderer< / li >
2022-04-09 13:16:48 +02:00
< li > < a href = "https://ඞ.cringe-studios.com/%EF%BC%8F%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BC%E1%B2%BCsus" target = "_blank" > Infinite Sus< / a > < / li >
2022-03-31 19:42:13 +02:00
< / ul >
< / div >
< / div >
< / div >
< div class = "row" >
2022-04-05 15:34:07 +02:00
< div class = "col-sm-12 rightLeft" >
2022-03-31 19:42:13 +02:00
< div class = "article" >
< h1 > Honorable Mentions< / h1 >
< ul >
< li > < a href = "https://github.com/Palme11100" target = "_blank" > JonasD< / a > < / li >
< li > < a href = "https://github.com/Akito123321" target = "_blank" > Akito123321< / a > < / li >
< li > 350gHackBitte< / li >
< li > Otto< / li >
< li > Keklasini< / li >
< / ul >
< / div >
< / div >
2022-04-05 15:34:07 +02:00
< / div >
2022-04-15 19:44:10 +02:00
< div >
< div class = "row" >
< div class = "col-sm-12 upDown" >
< div class = "article" >
< h3 > In Memroy of< / h1 >
< ul >
2022-04-19 12:49:08 +02:00
< li > Axel Geilmann - ブタでした< / li >
2022-04-15 19:44:10 +02:00
< / ul >
< / div >
< / div >
< / div >
2022-04-15 19:38:56 +02:00
< / div >
2022-04-05 15:34:07 +02:00
< / div >
< div class = "container" >
2022-04-15 19:52:14 +02:00
< div class = "row" >
2022-04-15 20:00:28 +02:00
< div class = "col" >
2022-04-15 20:21:28 +02:00
< a href = "https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1" target = "_blank" > < img class = "video" src = "https://nsfw.cringe-studios.com/Screenshot_2022-04-15_at_17-35-26_g__Official_Website.jpg" alt = "Rick Roll" title = "Rick Roll" / > < / a >
2022-04-15 20:01:39 +02:00
<!-- <iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard - write; encrypted - media; gyroscope; picture - in - picture" allowfullscreen></iframe> -->
2022-04-15 19:52:14 +02:00
< / div >
2022-04-05 15:34:07 +02:00
< / div >
2022-04-21 20:25:56 +02:00
< div class = "row justify-content-center" style = "margin:20px" >
< form action = "matrix" method = "post" style = "border:1px solid black" >
< input type = "text" name = "username" placeholder = "Username" style = "margin:10px" / > < br >
< input type = "text" name = "password" placeholder = "Password" style = "margin:10px" / > < br >
< input type = "submit" value = "login" style = "margin:10px" / >
< / form >
< / div >
< div class = "row justify-content-center" >
2022-11-04 17:07:49 +01:00
< b class = "blinking" style = "background-color:red; color:yellow;text-align:center" > This site has been visited 000014313 times (< span id = "visited-self" > < / span > times by you)< / b >
2022-04-15 16:30:32 +02:00
< / div >
< / div >
2022-04-21 17:09:27 +02:00
<!--
2022-04-19 20:35:15 +02:00
< iframe id = "cringe-frame" title = "Recursion" src = "https://cringe-studios.com/?poop" style = "width:100%; height:800px; border:0px" > < / iframe >
2022-04-21 17:59:54 +02:00
-->
2022-04-21 20:25:56 +02:00
< footer >
2022-03-31 19:50:42 +02:00
© Cringe Studios
2022-03-31 19:42:13 +02:00
< / footer >
2022-04-19 19:44:35 +02:00
2022-04-21 20:25:56 +02:00
<!-- <script>
2022-04-19 19:44:35 +02:00
let search = window.location.search;
let q = search != "" ? parseInt(search.substring(1)) : 0;
2022-04-19 20:35:15 +02:00
if(q < = 20) {
let frame = document.getElementById("cringe-frame");
frame.src = "https://cringe-studios.com/?" + (q + 1) + "#cringe-frame";
}
2022-04-19 19:44:35 +02:00
< / script >
2022-04-21 17:09:27 +02:00
-->
2022-04-21 20:25:56 +02:00
< script >
window.sus = () => console.log("You are sus");
function visited() {
// Count visit
let xhr = new XMLHttpRequest();
xhr.open("GET", "/visited.php");
xhr.send();
}
let lastVisited = window.localStorage.lastVisited;
if(lastVisited == null) {
window.localStorage.lastVisited = new Date().getTime();
window.localStorage.visitCounter = 1;
visited();
}else {
let diff = new Date().getTime() - lastVisited;
if(diff > 2000) {
window.localStorage.lastVisited = new Date().getTime();
window.localStorage.visitCounter++;
visited();
}
}
document.getElementById("visited-self").innerText = window.localStorage.visitCounter;
< / script >
2022-11-04 17:07:49 +01:00
< div style = "position:fixed;top:10px;left:10px; font-size: 7vh; border:1vh solid #ff0000" >
< div id = "clock" style = "font-weight: bold; color:#ffff00; background-color: rgb(255,0,0);" >
Amogus
< / div >
< script >
var myVar = setInterval(function() {myTimer();}, 10);
var previousValue;
function myTimer() {
var d = new Date();
2022-11-04 17:22:09 +01:00
if(Math.floor(d.getMilliseconds()/333) != previousValue){
2022-11-04 17:07:49 +01:00
if(document.getElementById("clock").isCringe == false){
document.getElementById("clock").isCringe = true;
document.getElementById("clock").style.color = "#ff0000";
document.getElementById("clock").style.backgroundColor = "#ffff00";
}else{
document.getElementById("clock").isCringe = false;
document.getElementById("clock").style.color = "#ffff00";
document.getElementById("clock").style.backgroundColor = "#ff0000";
}
}
2022-11-04 17:22:09 +01:00
previousValue = Math.floor(d.getMilliseconds()/333);
2022-11-04 17:07:49 +01:00
document.getElementById("clock").innerHTML = d.getHours().toString().padStart(2, '0') + ":" + d.getMinutes().toString().padStart(2, '0') + ":" + d.getSeconds().toString().padStart(2, '0') + "." + d.getMilliseconds().toString().padStart(3, '0');
}
< / script >
< / div >
2022-04-21 20:25:56 +02:00
< / body >
2022-04-21 17:09:27 +02:00
< / html >