Skip to content

Commit 27112ae

Browse files
authored
Add files via upload
:)
1 parent 7770929 commit 27112ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+4396
-0
lines changed

1.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='https://steamcommunity.com/id/DontBeConcernedWithMe'" />
5+
</head>
6+
</html>
7+

10second.gif

14.1 MB
Loading

10second.mp4

1.49 MB
Binary file not shown.

10second.webm

4.33 MB
Binary file not shown.

10secondgif.gif

14.1 MB
Loading

1458161048172.gif

732 KB
Loading

2.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/DownWithClown2'" />
5+
</head>
6+
</html>
7+

3.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/DownWithClown3'" />
5+
</head>
6+
</html>
7+

4.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/profiles/76561198281697160'" />
5+
</head>
6+
</html>
7+

404.php

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
---
2+
layout: default
3+
title: 404 ._.
4+
descr: the content you are looking for may not exist
5+
active: 404
6+
permalink: /404.php
7+
---
8+
9+
<!DOCTYPE animu>
10+
<html>
11+
<head>
12+
<style>
13+
#video {
14+
position: fixed;
15+
top: 0; right: 0; bottom: 0; left: 0;
16+
overflow: hidden;
17+
}
18+
#video > video {
19+
position: absolute;
20+
top: 0;
21+
left: 0;
22+
width: 100%;
23+
height: 100%;
24+
}
25+
@media (min-aspect-ratio: 16/9) {
26+
#video > a > video { height: 300%; top: -100%; }
27+
}
28+
@media (max-aspect-ratio: 16/9) {
29+
#video > a > video { width: 300%; left: -100%; }
30+
}
31+
@supports (object-fit: cover) {
32+
#video > a >video {
33+
top: 0; left: 0;
34+
width: 100%; height: 100%;
35+
object-fit: cover;
36+
}
37+
}
38+
/* weeb Header Style */
39+
@font-face {
40+
font-family: "qt";
41+
src: url(https://dr0p.it/n4kl.ttf) format("truetype");
42+
}
43+
.weeb-top {
44+
line-height: 24px;
45+
padding-top: 5px;
46+
font-size: 30px;
47+
background: #fff;
48+
background: rgba(33, 33, 33, 0.9);
49+
text-transform: uppercase;
50+
z-index: 9999;
51+
position: absolute;
52+
width: 100%;
53+
top: 0;
54+
left: 0;
55+
font-family: 'qt';
56+
box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
57+
}
58+
.weeb-top a {
59+
padding: 0px 10px;
60+
letter-spacing: 1px;
61+
color: #bfbfbf;
62+
display: inline-block;
63+
text-decoration: none;
64+
}
65+
.weeb-top a:hover {
66+
background: none;
67+
color: pink;
68+
}
69+
.weeb-top span.right{
70+
float: right;
71+
padding-right: 5px;
72+
}
73+
.weeb-top span.center{
74+
float: center;
75+
}
76+
.weeb-top span.right a{
77+
float: left;
78+
display: block;
79+
}
80+
</style>
81+
</head>
82+
<body>
83+
<div class="weeb-top">
84+
<a href="https://weeb.land">weeb.land</a>
85+
<span class="center">
86+
<input type=range id=volume min=0 max=1 step=0.1 value=0.5 onchange='AdjustVolume(video,this.value)'>
87+
<span class="right">
88+
<a href="https://w0bm.com">w0bm.com</a>
89+
<div class="clr"></div>
90+
</span>
91+
</div>
92+
<div id="video">
93+
<a href="/"><video autoplay loop id="animu" src="<?php $faggotShit = file('webm.txt'); $faggotShit = array_combine($faggotShit, $faggotShit); echo $faggotShit[array_rand($faggotShit)]; ?>" type="video/webm"></video></a>
94+
</div>
95+
<script>
96+
//check if volume is stored, else set at half volume and call it a day wewlad
97+
if (localStorage.getItem('volume') != null) {
98+
var video = document.getElementById('animu');
99+
video.volume = localStorage.getItem('volume');
100+
} else if (localStorage.getItem('volume') == null) {
101+
var video = document.getElementById('animu');
102+
video.volume = 0.5;
103+
}
104+
105+
//set current volume slider volume
106+
document.getElementById("volume").value = video.volume
107+
108+
//some varible because i cba to neat it up and shove it into the function below
109+
var video = document.getElementById('animu');
110+
111+
//when you move that shit slider this happens
112+
function AdjustVolume(video,value) {
113+
video.volume = value;
114+
localStorage.setItem('volume', video.volume);
115+
}
116+
</script>
117+
</body>
118+
</html>

420.mp3

8.75 MB
Binary file not shown.

5.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/DownWithClown5'" />
5+
</head>
6+
</html>
7+

6.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/DownWithClown6'" />
5+
</head>
6+
</html>
7+

7.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/DownWithClown7'" />
5+
</head>
6+
</html>
7+

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pullup.club

EPSU.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/EPSU/'" />
5+
</head>
6+
</html>
7+

Odyssey.mp3

11.9 MB
Binary file not shown.

anime.mp3

7.69 MB
Binary file not shown.

animemp3.mp3

6.02 MB
Binary file not shown.

aquariumpark.mp3

5.89 MB
Binary file not shown.

audjob.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="refresh" content="1; url=https://mega.nz/#F!zod0nJKL!Dbdl-j-gmGT90mxtvZQxXA">
6+
<script type="text/javascript">
7+
window.location.href = "https://mega.nz/#F!zod0nJKL!Dbdl-j-gmGT90mxtvZQxXA"
8+
</script>
9+
<title>Page Redirection</title>
10+
</head>
11+
<body>
12+
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
13+
If you are not redirected automatically, follow this <a href='https://mega.nz/#F!zod0nJKL!Dbdl-j-gmGT90mxtvZQxXA'>click here</a>.
14+
</body>
15+
</html>

ban.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://steamcommunity.com/id/bannedsooncausespinbotvspinbot'" />
5+
</head>
6+
</html>
7+

bday.html

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
</style>
6+
<head>
7+
<div id="background">
8+
<img src="http://jesusfuck.me/di/Y4QM/cardfinal.png" class="stretch" alt="" />
9+
</div>
10+
<style>
11+
#background {
12+
width: 100%;
13+
height: 100%;
14+
position: fixed;
15+
left: 0px;
16+
top: 0px;
17+
z-index: -1; /* Ensure div tag stays behind content; -999 might work, too. */
18+
}
19+
.stretch {
20+
width:100%;
21+
height:100%;
22+
}
23+
</style>
24+
<style>
25+
h1 {
26+
text-decoration: underline;
27+
font-size: 200%;
28+
font-family: Verdana;
29+
color: white;
30+
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
31+
}
32+
h1.noline {
33+
text-decoration: none;
34+
color: red;
35+
font-family: verdana;
36+
font-size: 200%;
37+
}
38+
p {
39+
color: white;
40+
font-family: verdana;
41+
font-size: 125%;
42+
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
43+
}
44+
}
45+
p2 {
46+
color: #FF00FF;
47+
font-family: verdana;
48+
font-size: 125%;
49+
}
50+
h2 {
51+
color: red;
52+
font-family: verdana;
53+
text-decoration: underline;
54+
font-size: 200%;
55+
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
56+
}
57+
</style>
58+
</head>
59+
<body>
60+
<center>
61+
<h1>Happy Birthday!</h1>
62+
</body>
63+
<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>
64+
<p>I hope you have a wonderfully blessed day,</p><p> I hope I didn't burn all of your breakfast,</p><p> I try to be the best "room mate" I can be!</p><p> Sorry the cats pee'd in your favorite plant,</p><p> but here's a new tree to get you through these tough times!</p>
65+
<p>&nbsp;</p><p>&nbsp;</p>
66+
<p> Love, Pierce xoxo,</p>
67+
</body>
68+
</html>

bootstrap.min.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

box.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://ec2-52-89-83-124.us-west-2.compute.amazonaws.com:8112/'" />
5+
</head>
6+
</html>

client.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="refresh" content="0; URL='http://ec2-52-89-83-124.us-west-2.compute.amazonaws.com:8112/'" />
5+
</head>
6+
</html>

club.png

648 KB
Loading

contact.html

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"><title>PGP Keys / Contact &middot; :: KEYS</title><link rel="shortcut icon" href="favicon.ico" type="image/x-icon"><link rel="stylesheet"</head><body>
2+
3+
<strong>PUBLIC KEYS</strong>
4+
<pre>
5+
<strong>
6+
Contact
7+
<a href="mailto:[email protected]">[email protected]</a> (personal email)
8+
9+
10+
[email protected] (XMPP) OTR Fingerprint: 17D53E34 D8EACBB2 62D9E4DC 22DE53A5 26C030A8
11+
[email protected] (XMPP #2) OTR Fingerprint: 0B2040FF CC69FB9E 23022205 68E8C5B3 3B495FE9
12+
13+
<a href="/pgp/PulluP_Public_PGP_Key.asc" download="PulluP_Public_PGP_Key.asc">Download My PGP Key in ASC Format</a> (Fingerprint: F2EF8C8924D0B116FABEF8F41E366E8D47C90BCB)
14+
</strong>
15+
16+
-----BEGIN PGP PUBLIC KEY BLOCK-----
17+
Version: GnuPG v2
18+
19+
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
66+
=IbSg
67+
-----END PGP PUBLIC KEY BLOCK-----
68+
69+
70+
</pre></body></html>

0 commit comments

Comments
 (0)