Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added cats/both/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/mj/9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/scruffy/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/scruffy/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/scruffy/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cats/scruffy/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
<marquee>
<p id="news">BREAKING NEWS: LOCAL USER UNABLE TO LOAD JAVASCRIPT?! ATMOSPHERE DEVS ARE PISSED.</p>
</marquee>
<marquee id="cats">
<noscript>
<p>You should enable JavaScript... NOW!</p>
</noscript>
</marquee>

<div id="about" class="box">
<p
Expand All @@ -32,6 +37,7 @@
<p>
welcome to the atmosphere official website<br>
here you can find atmosphere things
<p style="font-size: 39%;">and some of datamodel's cat photos.</p>
</p>

<div id="links">
Expand Down
51 changes: 48 additions & 3 deletions script.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// news
let stories = [
// 04/09/25
"BREAKING: Father christmas proven to be REAL by scientists",
Expand Down Expand Up @@ -100,20 +101,64 @@ let stories = [
"OPSEC",
"Divine Intellect Compiler",
"funny shit in a chest"
]

// 10/21/25
"minefun.player.sendPacket(new GotDamageC2SPacket(-regenAmount.get())) ez regen bypass",
"minefun patched funny method regen :(",
"LiquidBounce skidded ZeroDay because ZeroDay invented Chromium bloat inside the game.",
"visit my website @ sandbox.minefun.io",
"ouy'er*",
"Sorry, you have been blocked\nYou are unable to access atmosphere.wtf",
"Refactor Recaftor Refactor Recaftor Refactor Recaftor Refactor... ???",
"\"I'm not indian. Can you send me unbans?\" - Trillionare / Magnus",
"This cannot continue for any longer.",
"Apollo like Apollo GraphQL?"
];

// why
let photos = [
"both/1.png",
"mj/1.png",
"mj/2.png",
"mj/3.png",
"mj/4.png",
"mj/5.png",
"mj/6.png",
"mj/7.jpg",
"mj/8.jpg",
"mj/9.png",
"mj/10.png",
"mj/11.png",
"scruffy/1.png",
"scruffy/2.png",
"scruffy/3.jpg",
"scruffy/4.jpg"
].map(a => `cats/${a}`);

let currentIndex = stories.length;
while (currentIndex != 0){
while (currentIndex != 0) {
let randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex--;
[stories[currentIndex], stories[randomIndex]] = [stories[randomIndex], stories[currentIndex]];
}

const news = document.getElementById("news")
const news = document.getElementById("news");
const cats = document.getElementById("cats");

news.innerText = "";

for (story of stories) {
const storyElm = document.createElement("div");
storyElm.innerText = story;
news.append(storyElm);
}

for (const path of photos) {
const p = document.createElement("img");
p.src = path;
// magic numbers (it's just their width and height divided by 6 lol)
// the images are all 2448 by 3264
p.width = 408;
p.height = 544;
cats.append(p);
}
5 changes: 4 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@

:root {
--accent: #8080FF;
--bg: #191919;
}

body {
font-family: "proggy", Arial, sans-serif;
background-color: #191919;
background-color: var(--bg);
text-align: center;
color: white;
margin: 0;
Expand All @@ -34,6 +35,8 @@ a:hover { color: #ababff; }
.box-content {
border: 2px solid #777;
padding: 20px;
/* the cat photos go under the box, which could make the contents not readable. */
background-color: var(--bg);
}

.box-title {
Expand Down