remotes/1693045480750635534/spooky-22
Aevann1 2022-03-26 00:30:15 +02:00
parent e3bf443e5f
commit b74c8711d7
11 changed files with 43 additions and 43 deletions

View File

@ -234,7 +234,7 @@ def api_comment(v):
files = request.files.getlist('file')[:4]
for file in files:
if file.content_type.startswith('image/'):
oldname = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
oldname = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(oldname)
image = process_image(oldname)
if image == "": return {"error":"Image upload failed"}
@ -791,7 +791,7 @@ def edit_comment(cid, v):
files = request.files.getlist('file')[:4]
for file in files:
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
url = process_image(name)
body += f"\n\n![]({url})"

View File

@ -461,7 +461,7 @@ def edit_post(pid, v):
files = request.files.getlist('file')[:4]
for file in files:
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
url = process_image(name)
body += f"\n\n![]({url})"
@ -698,7 +698,7 @@ def thumbnail_thread(pid):
db.close()
return
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
with open(name, "wb") as file:
for chunk in image_req.iter_content(1024):
@ -1019,7 +1019,7 @@ def submit_post(v, sub=None):
files = request.files.getlist('file2')[:4]
for file in files:
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
body += f"\n\n![]({process_image(name)})"
elif file.content_type.startswith('video/'):
@ -1118,7 +1118,7 @@ def submit_post(v, sub=None):
file = request.files['file']
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
post.url = process_image(name)

View File

@ -250,7 +250,7 @@ def settings_profile_post(v):
if request.files.get('file'):
file = request.files['file']
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
url = process_image(name)
bio += f"\n\n![]({url})"
@ -603,7 +603,7 @@ def settings_images_profile(v):
file = request.files["profile"]
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
highres = process_image(name)
@ -642,7 +642,7 @@ def settings_images_banner(v):
file = request.files["banner"]
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
bannerurl = process_image(name)

View File

@ -304,7 +304,7 @@ def submit_contact(v):
if request.files.get("file") and request.headers.get("cf-ipcountry") != "T1":
file=request.files["file"]
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
url = process_image(name)
body_html += f'<img data-bs-target="#expandImageModal" data-bs-toggle="modal" onclick="expandDesktopImage(this.src)" class="img" src="{url}" loading="lazy">'

View File

@ -415,7 +415,7 @@ def sub_banner(v, sub):
file = request.files["banner"]
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
bannerurl = process_image(name)
@ -445,7 +445,7 @@ def sub_sidebar(v, sub):
if not v.mods(sub.name): abort(403)
file = request.files["sidebar"]
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
sidebarurl = process_image(name)

View File

@ -22,7 +22,7 @@
<style>
#chat-window {
max-height: 90vh;
max-height: 75vh;
overflow-y: scroll;
background-color: transparent !important;
}
@ -65,11 +65,14 @@
.diff {
margin-top: 0.5rem;
}
#chat-window {
max-height: 66vh;
}
}
p {
margin: 0 !important;
margin-left: 27px !important;
display: inline !important;
}
blockquote p {
@ -89,6 +92,11 @@
.chat-line .btn {
background-color: transparent !important;
}
.cdiv {
overflow: hidden;
margin-left: 27px;
}
</style>
</head>
@ -97,7 +105,7 @@
{% include "header.html" %}
<div class="container {% if request.path=='/' or '/post/' in request.path or '/comment/' in request.path %}transparent{% endif %}">
<div class="container pb-4">
<div class="row justify-content-around" id="main-content-row">
<div class="col h-100 {% block customPadding %}{% if request.path.startswith('/@') %}user-gutters{% else %}custom-gutters{% endif %}{% endblock %}" id="main-content-col">
@ -115,7 +123,7 @@
<div>
<img class="avatar pp20 mr-1" data-toggle="tooltip" data-placement="right">
<a href="" class="font-weight-bold text-black userlink" target="_blank"></a>
<div style="overflow:hidden">
<div class="cdiv">
<span class="chat-message text-black text-break"></span>
<span class="text d-none"></span>
<button class="quote-btn btn d-inline-block py-0 mb-1" onclick="quote(this)"><i class="fas fa-reply" aria-hidden="true"></i></button>
@ -126,7 +134,7 @@
</div>
</div>
<div id="shrink">
<div id="chat-window" class="container py-0">
<div id="chat-window" class="container pl-0 py-0">
{% for m in messages %}
{% set text_html = m['text_censored'] if v.slurreplacer else m['text_html'] %}
{% set link = '<a href="/id/' + v.id|string + '">' %}
@ -141,7 +149,7 @@
<a class="{% if same %}d-none{% endif %} font-weight-bold text-black userlink" style="color:#{{m['namecolor']}}" target="_blank" href="/@{{m['username']}}">{{m['username']}}</a>
<div style="overflow:hidden">
<div class="cdiv">
<span class="chat-message text-black text-break">{{text_html | safe}}</span>
<span class="d-none">{{m['text']}}</span>
<button class="btn d-inline-block py-0" onclick="quote(this)"><i class="fas fa-reply" aria-hidden="true"></i></button>

View File

@ -544,7 +544,7 @@
<input type="hidden" name="formkey" value="{{v.formkey}}">
<input type="hidden" name="parent_fullname" value="{{c.fullname}}">
<input autocomplete="off" id="reply-form-submission-{{c.fullname}}" type="hidden" name="submission" value="{{c.post.id}}">
<textarea required autocomplete="off" {% if v.longpost %}minlength="280"{% else %}minlength="1"{% endif %} maxlength="{% if v.bird %}140{% else %}10000{% endif %}" oninput="unlock('save-reply-to-{{c.fullname}}',this);markdown('reply-form-body-{{c.fullname}}', 'reply-edit-{{c.id}}');charLimit('reply-form-body-{{c.fullname}}','charcount-{{c.id}}')" id="reply-form-body-{{c.fullname}}" data-fullname="{{c.fullname}}" name="body" form="reply-to-t3_{{c.id}}" class="comment-box form-control rounded" aria-label="With textarea" placeholder="Add your comment..." rows="3"></textarea>
<textarea required autocomplete="off" {% if v.longpost %}minlength="280"{% else %}minlength="1"{% endif %} maxlength="{% if v.bird %}140{% else %}10000{% endif %}" oninput="markdown('reply-form-body-{{c.fullname}}', 'reply-edit-{{c.id}}');charLimit('reply-form-body-{{c.fullname}}','charcount-{{c.id}}')" id="reply-form-body-{{c.fullname}}" data-fullname="{{c.fullname}}" name="body" form="reply-to-t3_{{c.id}}" class="comment-box form-control rounded" aria-label="With textarea" placeholder="Add your comment..." rows="3"></textarea>
<div class="text-small font-weight-bold mt-1" id="charcount-{{c.id}}" style="right: 1rem; bottom: 0.5rem; z-index: 3;"></div>
@ -599,7 +599,7 @@
<div id="comment-form-space-{{c.id}}" class="comment-write collapsed child">
<form id="reply-to-message-{{c.id}}" action="/reply" method="post" class="input-group" enctype="multipart/form-data">
<input type="hidden" name="formkey" value="{{v.formkey}}">
<textarea required autocomplete="off" minlength="1" maxlength="10000" name="body" form="reply-to-t3_{{c.id}}" data-id="{{c.id}}" class="comment-box form-control rounded" id="reply-form-body-{{c.id}}" aria-label="With textarea" rows="3" oninput="unlock('save-reply-to-{{c.id}}',this);markdown('reply-form-body-{{c.id}}', 'message-reply-{{c.id}}')"></textarea>
<textarea required autocomplete="off" minlength="1" maxlength="10000" name="body" form="reply-to-t3_{{c.id}}" data-id="{{c.id}}" class="comment-box form-control rounded" id="reply-form-body-{{c.id}}" aria-label="With textarea" rows="3" oninput="markdown('reply-form-body-{{c.id}}', 'message-reply-{{c.id}}')"></textarea>
<div class="comment-format" id="comment-format-bar-{{c.id}}">
<label class="btn btn-secondary format m-0" for="gif-reply-btn-{{c.id}}" onclick="loadEmojis('reply-form-body-{{c.id}}')" aria-hidden="true" data-bs-toggle="modal" data-bs-target="#emojiModal" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Add Emoji">
<i id="emoji-reply-btn-{{c.id}}" class="fas fa-smile-beam"></i>

View File

@ -256,7 +256,7 @@
</div>
</nav>
<script src="/static/assets/js/header.js?v=255"></script>
<script src="/static/assets/js/header.js?v=256"></script>
{% if v and not err %}
<div id="formkey" class="d-none">{{v.formkey}}</div>

View File

@ -932,7 +932,7 @@
<input type="hidden" name="parent_fullname" value="t2_{{p.id}}">
<input autocomplete="off" id="reply-form-submission-{{p.fullname}}" type="hidden" name="submission" value="{{p.id}}">
{% if v %}
<textarea required autocomplete="off" {% if not (p and p.id in ADMIGGERS) %}{% if v.longpost %}minlength="280"{% elif v.bird %}maxlength="140"{% endif %}{% endif %} minlength="1" maxlength="10000" oninput="unlock('save-reply-to-{{p.fullname}}',this);markdown('reply-form-body-{{p.fullname}}', 'form-preview-{{p.id}}');charLimit('reply-form-body-{{p.fullname}}','charcount-reply')" id="reply-form-body-{{p.fullname}}" data-fullname="{{p.fullname}}" class="comment-box form-control rounded" id="comment-form" name="body" form="reply-to-{{p.fullname}}" aria-label="With textarea" placeholder="Add your comment..." rows="3"></textarea>
<textarea required autocomplete="off" {% if not (p and p.id in ADMIGGERS) %}{% if v.longpost %}minlength="280"{% elif v.bird %}maxlength="140"{% endif %}{% endif %} minlength="1" maxlength="10000" oninput="markdown('reply-form-body-{{p.fullname}}', 'form-preview-{{p.id}}');charLimit('reply-form-body-{{p.fullname}}','charcount-reply')" id="reply-form-body-{{p.fullname}}" data-fullname="{{p.fullname}}" class="comment-box form-control rounded" id="comment-form" name="body" form="reply-to-{{p.fullname}}" aria-label="With textarea" placeholder="Add your comment..." rows="3"></textarea>
{% endif %}
<div class="text-small font-weight-bold mt-1" id="charcount-reply" style="right: 1rem; bottom: 0.5rem; z-index: 3;"></div>

View File

@ -219,7 +219,7 @@ homosexuals reproduce by raping kids
{[para]}
I only follow the patriarchal aspects of Islam. Not the aspects that make you a cuck e.g. Abstaining from womanising, penetrating a sweet trap virgin ass and lowering your gaze.
{[para]}
![Jews did this](https://i.imgur.com/aiEJH.gif)
![Jews did this](/static/images/164824702020.webp)
{[para]}
Seriously. If pornhub is suggesting cuck porn for you, it's because their algorithm has determined, scientifically, that you're a cuck. That's all.
{[para]}
@ -293,7 +293,7 @@ Yes Minecraft is symbolic in many ways with The book of Revelation in the Bible
{[para]}
Yep. This one's going in my cringe compilation.
![](https://i.imgur.com/Oz5g9zP.webp)
![](/static/images/16482468143.webp)
{[para]}
You can take your ban and bang yourself in the ass with it. Go ahead and pretend it's me tearing up your ugly starfish. Banning me is a chicken shit move. Enjoy life living in fear. I don't if I've ever made post in your sub. You people are a joke. I've already spanked a few of you and I didn't bother rubbing it in your faces because I'm a nice guy. My work is done on Reddit. I just got paid. No run along and dry each others tears. I've already won
{[para]}
@ -500,7 +500,7 @@ I cant help but feel like people like that have had abusive childhoods. It
{[para]}
You simp. Okay Homer SIMPson. You absolute simpanzee. OOO OOO OO OO EE EE OO 🐒 <- that is you. You are nothing but sludge . You are putrid muck given form, weakness personified. I am not sympathetic. You are simp pathetic.
{[para]}
![](https://i.imgur.com/zhcyiD9.jpg)
![](/static/images/164824681435.webp)
Really? Do you know who that is? Do you spend any time on the chans, or 8kun, or Gab, or Voat, or Discord/ Telegram/ Riot, or a wide variety of lessor known neo-Nazi hangouts?
@ -1310,8 +1310,6 @@ They call Dramanauts, *Autists*. Autists... easily duped, will believe anything,
{[para]}
THIS WEB SITE HAS BEEN MOSTLY TAKEN OFFLINE BECAUSE OF THE TELEMETRY REPORT. IF YOU CAN SEE THIS, YOU ARE ONE OF THE SCANT FEW WHO CAN SEE THROUGH THE HOLOWEB.
{[para]}
![](https://i.imgur.com/FWELOKb.webp)
{[para]}
That entire subreddit is a cesspool. It's like a sewer that empties directly into a stagnant pond.
{[para]}
Also, I have never said I hate white men, quite contrary, I like them as long asthey recognize and acknowledge their place in the world: that is, under the foot of a black man, same goes for all you cucks. The true evil in this world is /r/SubredditDrama, which is my only enemy. Hitler was an animal rights advocate, and I quite like animals too, so I have nothing against white people per ce, just don't think rapid babboons should be running on the streets among people, smh. Once the /r/SubredditDrama cancer is gone and social order is restored, we can live in harmony with the subhumans, they in their lard, and we in our cities.
@ -1930,11 +1928,9 @@ I ordered a shit dildo using Google+. When it first came out, you had to sign up
{[para]}
Did you know that the bathtub was first marketed in north america as a horse trough and hog scalder?
{[para]}
![](https://i.imgur.com/Pr813V9.gif)
{[para]}
Side note: it\'s a function of that testosterone crippled brain that you are so focused on dicks, and your own dick in particular. Guess what? Take estrogen for a while and you will lose focus on that body part to the point where it doesn\'t even matter anymore. There is so much more to being a woman that genitals, like the depth and complexity of emotions and bonding with others in ways that are literally incomprehensible to you.
{[para]}
[MRW](https://i.imgur.com/sdF4aeQ.jpg)
[MRW](/static/images/164824708459.webp)
{[para]}
Mayocide Ayy Lmao
{[para]}
@ -2566,7 +2562,7 @@ Meanwhile I'll be jacking off to a picture again, quick & easy & on with my day.
{[para]}
I just read some of your other comments. What a trash human. You aren't even worth talking to. You don't have the intelligence to even make a factual argument. You are an actual detriment to society.
{[para]}
![](https://i.imgur.com/zbQQYdg.gif)
![](/static/images/164824681433.webp)
{[para]}
Your brain has completely rotted. You are a vile person, I hope you go outside one day. There is so much wrong with what you are saying, but I'm too tired and you are too horrible of a person to learn.
{[para]}
@ -2889,8 +2885,6 @@ Im not denying it doesnt happen, but to assume all people who wear mascot
{[para]}
It's the same teenager racism hate cult that MDE was all about. It's just another boring /pol/ offshoot for lonely edgelord losers.
{[para]}
![](/static/images/163933827552.webp)
{[para]}
Im not insane, I just want to have some fun then curl up inside a vagina and either suffocate or be crushed by a well-trained set of pelvic floor muscles.
{[para]}
tl;dr - Boyfriend told me my lady parts smelled rank despite knowing my extensive trauma history with being bullied for smelling bad.
@ -3105,8 +3099,6 @@ I can't fucking take it. I see an image of a random place posted and then I see
{[para]}
Im a pretty solid dude, big frame, bartender, used to bounce for clubs and bars, and my favorite thing to do when I get drunk is watch the Fresh Prince and see Uncle Phil and Will and then I just cry and feel my emotions. I never had that so it resonates with me and gives me some type of release.
{[para]}
![](/static/images/164120543734.webp)
{[para]}
I want a virgin girlfriend just to let some random guy take her virginity before me. They will turn my once innocent girlfriend into a cock crazed slut that's getting multiple monster cocks every day and ruining her once perfect untouched pussy. Then they'll knock her up and leave the pathetic virgin loser cuck husband to take care of her. Maybe when she gets fat, old, and used up, she will say fuck it and let me fuck her and lose my virginity, but she won't even feel my pathetic little dicklet
{[para]}
They mad cause they haters, they haters cause they anus
@ -3426,9 +3418,9 @@ Fast forward, she is insanely intoxicated with me, hints and outright says frequ
Some scientists think it could be lifestyle related (herbs, garlic, unknown), but it is a FACT : JEWISH WOMEN UNDERGARMENTS are rated LEAST ATTRACTIVE SMELL to all men, in many studies.
{[para]}
I made a CLEAR BACKGROUND PNG flag for them (they have actual trannies on rdrama dot net) :
https://files.catbox.moe/n66kna.png
![](/static/images/16482472483.webp)
cat CLEAR BACKGROUND PNG by itself of rdrama marsey cat :
https://files.catbox.moe/91m1h0.png
![](/static/images/164824724759.webp)
BEWARE! they are more dangerous than you think because they have many liberal tech workers at companies to DOXX YOU!!!!
They doxx people who are right of center!
rdrama is so dangerous to us here, that typing the domain is INSTANT COMMENT BAN!!

View File

@ -1,6 +1,6 @@
Goddamn I wanna lick your pussy
![](https://pcmemes.net/images/1638117165CN4.webp)
![](/static/images/1638117165CN4.webp)
{[para]}
And that is the goddamn truth dude.. read it in the Bible dude.. genesis 3:16 youre poor fuck you. I saw it In the Bible.. not being crude.. but.. like if you think blades not good. I remember reading this verse in the Bible. I remember your faggot ass was like trying to make sure you were good and you werent.. and you were like “oh my god.. I hope.. I hope that Im ok.. I hope that both my faggot fathers dont molest me.. and then youre like ok.. so Im going to read the Bible..” and you lick your fingers like a fucking fruitcake to spread the pages.. and you realize youre not as good as me. Lets take a shot for those faggots. My streamlabs is fatter than your mom. Exactly
{[para]}
@ -60,13 +60,13 @@ All these fuckin' IP2 faggot streamers.. Just think.. that just doing this, just
Dude.. Ok so many people just ask me about shit and I'm just like shut the fuck up dude.. Shut the fuck up dude.. Like seriously.. All the.. Ok.. Lets talk about the bottom of the rung streamers.. Die.. Seriously die a little bit..
{[para]}
![](https://pcmemes.net/images/1638117806hU0.webp)
![](/static/images/1638117806hU0.webp)
{[para]}
![](https://pcmemes.net/images/1638117722gFM.webp)
![](/static/images/1638117722gFM.webp)
{[para]}
![](https://pcmemes.net/images/16381226123A0.webp)
![](/static/images/16381226123A0.webp)
{[para]}
![](https://pcmemes.net/images/1638118173wxs.webp)
![](/static/images/1638118173wxs.webp)
{[para]}
Jiminy Christmas
{[para]}
@ -90,7 +90,7 @@ Revolution is a spectators sport. The majority will sit in the stands and watch
{[para]}
Being prepared to die is one of the great secrets of living.
{[para]}
![](https://pcmemes.net/images/1638122011ZuI.webp)
![](/static/images/1638122011ZuI.webp)
{[para]}
Let me crack your back!
{[para]}