#memes-and-media
1 messages · Page 55 of 1
I wasn't alseep 😩. But I already have an exchange going with someone else for Tatsu smh
@analog lark wut u usin all those wam for?
docker containers
o
oh
wew
@solar sentinel hello and sorry for the ghost ping
@eager echo relatable
Tfw you send dm ads to a mod
@ember matrix did i show you my bot args
@balmy nebula no
wanna see them
your bot args suck
Also I'm right here no need to ping me lol
And yes
I'm bored and I've got nothing else to do so why the fuck not
[{name: "code", type: "string", useRest: true, required: true}]
basically just an array of this
QUIERES
and it can be called with ctx.args.code
I made an args parser and then scrapped it because I didn't need it
i was tired of ctx.args.join(' ')
eh
I just realised what a get method is
Not like .get()
But
get methodName() {
}```
eww anything but that
i actually don't know what get is for
i love how my views according to online tests would theoretically offend 7-8 billion people
Hmm

Wdym by fnaf
Five nights at Freddy's
Yeah?

No one knows
Hhhhh
im laughing at my teacher for being too unknowledgable in a subject(he teaches itgs) and he is giving me reasons not to write my 4k word essay on it cuz he doesnt know what he is talkin about
Okay?

@ember matrix just a notch above the rest
Bus is aboutta pass by my house
bai bai
It's just the loudest fucking thing in the universe
I can hear it all the way from my room
what is the bus for then?
@opaque trail it's a public bus...?
lol stupid loud bus
yeah
i see
According to my location, I am in the middle and really busy main road just standing there and not moving
is it just me that has buses that go around playing STUPID CHILDISH STUPID STUPID horn sounds
No but fr the engines on these buses are so loud and they make a noise so you can just tell that's it's a bus
yes
most buses in my area are literally 1 year old max
lucky
Newest ones here are 2017 and then it goes all the way back to 2001
There it goes
old buses are loud 
very
The ones going up my road are always from like 2012
Old girls not so much
what
(They call me, MrComedy)
Luckily the earliest bus here is 7:40 so we don't actually get woken up by it
People in my haus wake up round 5AM
Hmm
@chilly coyote can does the climb
Imagine that

@warm pond @lusty cliff
same
Same
What about this then
@torn trellis
edit: but deep down we all know, playing koikatsu won't get you a girlfriend

@warm pond eroges I mean, peter grill

Rental Girlfriend is nice ngl
except I hate Chizuru
oh noe, chizuru fan club will kill me
at first she was ok
but as the manga goes by and by I started hating her
not yet
I'm at volume 14
but I started hating chizuru when the movie started
like from the very start of it
and now Chizuru is on my E tier
I'd say Sumi is better, but meh you'll know why Im kinda sad even Sumi is better
timo only watches quality anime
anime time hmmm its not for me 😄
🤔
berry what the fuck
because
@wheat haven u should get emoji.bot uwu
.bot veri expnesive tho
also i absolutely love ur fuckin website
idk how anyone could make such a creation but its god damn beautiful
Who is @undone palm
mostly ready code
this is absurd
dylan is dylan
He's been mod since the last trial mod waves
@rigid hinge good css?
my average accuracy in mania
@wheat haven who made it?
nice acc
Lmao fucking pigs
lol pigs
I feel like nintendo fans are kinda pigs
because of how they act in the comment section of every nintendo post
If you can go into any nintendo post and find someone not complaining within 50 comments, you’re a god
literally first comment
Bitchy community isn't anything new tbf
yea
but there has to be a line between genuinely concerned and just straight bitching
That's gold coming from DBL
what the fuck happened there
ngl @ember matrix i get scared when someone calls my name while im coding
gn
gn
🇵 🇴 🇴 🇹 🇮 🇸
gn qt
That's gold coming from DBL
@tired needle not even gold. Just straight up Hypocritical
There is a sparrowhawk in my garden
im sleepy
bird wings go flap
I got loads of pics
Borb
hmm
Hypixel?
Wouldn’t that mean it’s getting better by removing constant players who are hacking?
Lmao I got banned for having a vpn
aaah help
wut
how do I code boat??
You don't
i might have to rewrite my command handler again
Oof
i'm now realizing objects are terrible
classes
Command classes™️
classes are objects
Ok I read an mdn article and I think I understand promises now
nice
Learn JavaScript Promises in 100 seconds, then follow my new IG account for even more content https://www.instagram.com/fireship_dev/
Reference MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
#javascript #100SecondsOfCode
Upgrade...
very helpful
Well I kinda already did but I just understand it more now
Why does PyCharm inspect my build files 😂
llol
// this is a command category basically
{
commands: {cmd: {}}
}
// this is what i want it to look like
new Category("Category Name", [
new Command("cmd", ...)
])
oop?
so
why dont u use files?
it wouldn't be impossible for me to do this
@ember matrix teach how to code bot
since i have command and category classes set up
hmm it probs should work
just how would u get the cmd if u need to search thru the categories first
@opaque trail thanks that helped
you wanna see how i load my current categories
?
The video
@ember matrix np i hv sent it to like 3-4 people lol
Just use fs
can't do that in case i want to use custom categories
Also
and i do load them with fs in the main file
idk if this is any better but...
client.commands = new Discord.Collection();
client.aliases = new Discord.Collection();
categories.forEach(async (category) => {
fs.readdir(`./commands/${category}/`, (err, files) => {
if (err) return console.error(err);
files.forEach(file => {
if (!file.endsWith(".js")) return;
let commandname = file.replace('.js', '')
let command = require(`./commands/${category}/${file}`);
command.info.category = category
client.commands.set(commandname, command);
command.info.aliases.forEach(cmdname => {
client.aliases.set(cmdname, commandname);
})
});
});
})```
how i load mine
Why don't you just do loadCategory(opts){
Func
}
lol
It's clearly a class you don't need the this.loadCategory =
there is some useless stuff that makes things better
this
class Category {
name: string
commands: Command[]
globalChecks?: {
exec: Function,
error: Error
}[]
constructor(name: string, commands: Command[], globalChecks: {
exec: Function,
error: Error
}[]) {
this.name = name
this.commands = commands
this.globalChecks = globalChecks
}
}
Why do you have a category class lol
to load my categories
Seems unnecessary
You can just loop through them and set the commands inside them instead
Custom embed builder nice
not really, eris doesn't have one so
I have one I don't use anymore
same
Because I gave up on my last bot
i dont do bot dev much anymore
gm
gm
yay no longer mania 7 digit
gm
gm
weirdo
hmm
pog he's playing mania again
gamer
@solar sentinel 1v1 me mania neerd I win ez, totally not terrible at it and failing anything above 1.5* noooo
no kapp
pog 2 million users
imagine not having helper class
what does that even mean smh
hm
atleast she gave him his wallet back
Yes
guys my discord opens in 15 seconds only
Me when my friend joins 30 seconds after me in Minecraft

Is that some kind of racism

@torn trellis 2 down 3 to go
Error: client is not defined
I load my commands memely
bruh
speedy in loli voice
100 failed 6* maps already
saya no texting while flying
noe
why the fuck
do it then 🥺
that feeling when you still don't know if you need to get the squares with a tiny amount of the object in it
i think 4 is the correct number
and Google doesn't tell you 😔
they make captcha harder the more you do it which is stupid
ikr
coz glitch is losing members aka people are getting better at programming aka more bots on internet
until its impossible for a certain amount of time
and Google doesn't tell you 😔
@vital willow both work, google doesn’t care which boxes you pick, they just analyze your mouse movements and system info
Ofc you have to at least try
^
no they just made it so you can't sit and host there like its free real estate anymore
people will always be shit at coding
old people get better or quit
New ones pour in
i remember when i learned how to do switch cases
i felt like i am some high grade programmer
then i joined this server
dream crushing noises
@desert flame weeb
Switch cases are stinky
switch(thing) more like if thing if thing if thing
I always have trouble reading switch cases
multiple if statements seem cleaner to me
then i joined this server
@cedar seal ikr lmao, well this server motivates u alot tbh when u see the hoomans on it
Привет я новенький
that feeling when we need shiv
not that
All good here
he just teleported here
sometimes somethings which people talk about in this server goes over my head
self bot that pings on saying shiv question mark
Потому что это англоязычный сервер

shiv?
Нет
HeT
Куда я зашёл
Ну ок
Ну тогда пока
👋
this server is built for me
ngl people on discord are a little too much sensitive
more like in india no one gives a damn about ur words
^
not saying thats bad
but the whole internet hates india tho
not rlly
a mod is typing i am nervous and very scared
is that a Discord server
a lot of people find india an interesting server
is that a Discord server
@torn trellis uhh yes
i didn't put any links so
Imagine making your server family/child-friendly and welcoming and then being called too sensitive
also, Discord ToS applying
If you really want freedom of speech, talk to people outside
the only thing i care too much for is rule 3 no swearing/toxic stuff
No one will be there to moderate your words really
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
lol
too lazy
Our college has a no-swearing rule but I've ignored that for 3 years now and I'm still fine
the only thing i care too much for is rule 3 no swearing/toxic stuff
same goes for that server
accidentally selected the KEKW emoji
no one:
literally no one:
not a single soul:
us: chatting in shitpost which has a five second slowmode instead of chatting in off-topic
my school has only english rule and the students are like no english followers
my school is half anarchy
idk i like shitpost more
Imagine being encouraged to use a proper channel for chatting but insisting on using the shitpost channel intended to be used for memes and actual shitpost
because it is the most active channel of the server?
because it is the most active channel of the server?
@icy terrace i mean, the channels are literally there for a reason. You can't change things without helping the change. If you're just gonna be stubborn about it you cant really complain when you get told to move
why did discord.js docs scroll me to setAvatar
reload
@icy terrace i mean, the channels are literally there for a reason. You can't change things without helping the change. If you're just gonna be stubborn about it you cant really complain when you get told to move
@analog lark we're literally joking around
I fucking love this band
I fucking love this band
i fucking have a crush on one direction
why do people still have normal non-JIF pfps even when they have nitro
feels oddly weird for some reason
Because they probably don't want/need one
you don't want a kool pfp?
Unless @timber coral wants to get animated matching pfps, not really
i love nightcore

install.tar is literally in every single folder what do you want from me
muda
E
my school is half anarchy
@icy terrace mine was anarchy
^^^^^^^^^^^^^^^^^^^^^^
self-knowledge, self-education, self-mastery ...
like one person get pencil stuck on shoulder yeah that really happened
İ am not joking
I do wonder, from where is that win XP wallpaper
nope...
Does it have copyright
copyright is the second most spaghetti thing in the world after javascript
copyright is ass
copyright's my ass
not really it was an actuall free theme i got and the guy didn't got the free theme but just literally copied my website
everything is somehow somewhere found on the internet without copyright
Bu r u h
what website
i wanna see lmao
You can't really copyright a website fully
lmao bootstrap
afaik only separate elements like logos and icons
like bruh at least make it different
nothing wrong with bootstrap you can literally copy every website with bootstrap if they have bootstrap
bootstrap is fun
this guy
lmfao there is a license on the files tho ``` * Template Name: Bootslander - v2.2.0
- Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
- Author: BootstrapMade.com
- License: https://bootstrapmade.com/license/```

now i need to remake my website, this time i wont use a theme and if someone copies it i'll burn em
You are NOT allowed to claim credit or ownership for any of the files or code found on BootstrapMade.com
Time to strike the website!
hehe
imagine claiming web site your own when use free template
Time to strike the website for breaking the license by claiming the entire site is self made

lol
and copyright includes the site's owner, not the copyright in the file 
EEEE
literally the website's theme license IS IN THE FUCKING INDEX.HTML WHY
hm today i feel like copying a website
hm today i feel like depression coz school tomorrow
today i feel angery

someone help me strike that website for claiming its self made and hiding the license in the FUCKEN INDEX.HTML
kek
hm today i feel like starting world war 4
r/notgonnahappen
Wheres the 3th?
ww3?? lol guy is stuck in 2020
ww69 has began 
a website isn't hard to make
yea you just have to make it smh not hard
just making it look nice
i need to learn how to use bootstrap
Unless @timber coral wants to get animated matching pfps, not really
@torn trellis animated would be cool doe
bootstrap looks shitty
Use 🅱️ruh
bootstrap looks shitty
@brazen pebble as far as i've seen they look nice
just use modesta
are they easy to use
every css framework is supposed to be easy brug
oh
bruh
ok and
Bootstrap Studio is cute
it is first ranked
It's the easiest and the most smoothest
i can make my own top 10 and put bulma
doesn't mean anything
just saying if u want a nice site don't use bootstrap lmao
also can't find anything for modesta can u provide links
but wouldn't bootstrap be good for a landing page?
alexflipnote moment
Bootstrap is decent if used properly
How come
its amazing :p
matching pfp is for losers
imagine using symbols as pfp
You're just jealous
no
:p
@timber coral imagine using selfie as pfp
@torn trellis do it
I never thought I'd feel bad by just sitting in a car
@torn trellis no thanks

very nice selfie pfp @timber coral
Wha
hot
@timber coral @torn trellis yall qt together
shiv is atleast
that was unexpected
hi
i know that vid already
hi
scam
yes
omfg this guy, i hope his domain gets deleted soon
Lol
@icy terrace sorry for ping, did u report him or should i do it?
thats a yikes
my guy thinks taking someones work and just changing the links and names is fine
idk where to actually report the site to lol
i guess i could email the domain registrar
i am at work rn and i'll be here for awhile but if u do so i would appreciate it
im at work too though
recommend me a good bot against userbot raids and no i won't use dyno
mee6 
e
I'm wondering what credit cards+contactless payment and people doing yoga with green drumsticks have in common
Hello
Hi
I'm wondering what credit cards+contactless payment and people doing yoga with green drumsticks have in common
Interesting
lol

Nice
Why does your bot use the f-word?...
https://cdn.discordapp.com/attachments/537501421931855882/750345713501601852/unknown.png this is how you use your second screen, so you can stare at your waifu
@deft geyser qt
Owo
uwu
disgusting @desert flame
@fluid obsidian u too
wtffff
Hentai 😳
Off-brand indeed 😳
help im bored
You can stare at my waifu if you want 
@foggy cypress it's a beta
and besides i'm gonna be the only one who sees errors like that
@brazen pebble you how invoke eventums
.emit()
thank you
Time to strike the website for breaking the license by claiming the entire site is self made
@icy terrace remember that remixors had copyright on their website as well?
@icy terrace remember that remixors had copyright on their website as well?
@nocturne canyon hm?
looks like siege during an event
Looks like casual day on easter
only in america
bargar

pls help me get good nostalgic songs in this big playlist i need it big lol https://open.spotify.com/playlist/48hQGuvzoBcOzu1aC0tm04?si=FtypNpeKRpec7fYXgehRTA
function returnError (err) {
return throw new Error(err)
}```
only songs from 1800 - 2015 allowed
One message removed from a suspended account.
this ones the best tho https://open.spotify.com/track/6OgnZeEI2sN3UEYtKklDaJ?si=oWkULYKkTgGBCgXTCwdPkA
function returnStuff(stuff) {
return stuff
}
This is nostalgic tho
well then add the song to the playlist
cuz idk there are a thousand of the same named
I don't use spotify 😄
bruh
Yankee with no brim
pls help me get good nostalgic songs in this big playlist i need it big lol https://open.spotify.com/playlist/48hQGuvzoBcOzu1aC0tm04?si=FtypNpeKRpec7fYXgehRTA
@icy terrace bruh when i said "pls help" i got a bot to dm me
Isn't pls help from the memer bot
pls help
function return() {
return
}```
okay then
pls help
pls help
bruh CEO
niceums
yup
pls dad
ceo.ceo
It's an actual command
what are you doing step X 
25 kills ready
pls nuke
function returnError (err) {
return throw new Error(err)
}```
@pallid pebble that wont even work man
idc
Lol
just remove the throw
and make it thrown
smh
make throw then return magic
2.8 isn't
One message removed from a suspended account.
@young vessel Interesting can even see device history on WhatPulse https://whatpulse.org/Gudako/computer/Timo-GamingPC#history
oh?
not for my old PC at least
must have been something they added like a year or two ago
oof
Rip
https://whatpulse.org/Gudako/computer/Server-Timo#history When you're using remote desktop 
whats the point
I smh big time for anyone who doesn't use WhatPulse or isn't in the WhatPulse Discord Bot List group 😩
What's the whatpulse
Trying to get the group under 100th place
I smh big time for anyone who doesn't use WhatPulse or isn't in the WhatPulse Discord Bot List group 😩
@brittle narwhal linux support isdoe
It is
I just cba to fuck with it
If I upgrade Deepin on my laptop I'd no longer be able to install WhatPulse
They're trying to work on it though
what is the point of using it?/??? whatpulse
wef
WhatPulse just allows you to see system usage. Stuff like how much you download, upload type, what applications you use, how much and so on.
aka stats
But why
Because some people find it interesting to see how much they use?
Why would you have a stats command for your bot? Because you or other users are curious about it stats? Seems pretty logical to me
I don't have stats command 
I'm talking in general
For me those stats should be private in someway
theres a fucking leaderboard
It's like looking at traffic in the network
that's why my stats are for developers only 
Ur just stinky Duane
Well you suck Timo Halofan, why don't you get good and make a big bot like Chip
@young vessel explain

mhm
Some good H 
Because I can't be bothered with developing my own bots 😩
I've been using it for less and already have more 
you're just a naughty badge collector, aren't ya @brittle narwhal
https://luca.is-inside.me/1G5VQ8M8.png these are the last 30 days actually
No I'm not Duane my bot is in 825 something servers so it needs to be verified 😩
handbrake go brrrr
marco i think i hate you but also i think i love u
How much hentai do u download
none
telk bad
he doesn't download 😎
You don't need that many servers, donate them you greedy man.
No 
torrent 
donate some to me
gang
Only pay gang 
downloading my linux distros, ofc
i have... 68 https://luca.is-inside.me/4dVR8b3a.png
marco only fans
if im not gonna pay for it anyways ¯_(ツ)_/¯
@young vessel shard my bot for me so I don't have to
How to shard 
I have other important things like watching a netflixseries
Just don't forget to put if(client.shard.ids[0] === 0) { } so it doesn't spam my console for every starting up shard 😩
Duane you should do important things like helping Discord Bot List be one of the biggest groups on WhatPulse 
What is WhatPulse?
wtf i just use it for 2 hours per day
WhatPulse just allows you to see system usage. Stuff like how much you download, upload type, what applications you use, how much and so on.
zoom.exe
Image not loading for me 
Oh wow, it's owned by Facebook & Google huh? 
Smh Duane
@balmy nebula Late response, but I read something that says you should not put the f-word and similar things in code/programs, even if you believe you will be the only one to ever see it.
I'm probably gonna get a lot less download in now that I have internship though 
That's okay, alexa listens to me sing anime intros at 3AM on a daily basis.
Lol
so do i
Why not every hour
i live in your house duane
i'll patch it before i actually throw it on main
It's true, I am Spotify.
@balmy nebula Gotcha, good (:
this is full blown weeb shit
it's sadly depressing and very exciting at the same time
Lol
#why
#oliy
-p Indonesia raya
Late response, but I read something that says you should not put the f-word and similar things in code/programs, even if you believe you will be the only one to ever see it.
@foggy cypress lmao lmao lmAO
whats carescan?
@azure orbit #commands and #265156322012561408 to use bot commands
some of them will not work by the common prefix but meh
lmfao
rip discord
cdn is dying
stable 9999/100
discord itself is fine
I haven't done an atmods
i asked 3 times 😦
ping has risen 
<@&304313580025544704> approve botuM nOw or i will hak u
yall once Luca is down lets ghostping mods jk
Who are you
I see all
mine?
You didn't had pfp to begin with
i think it is back now
wow i dint remember i change my name
api abuse
WHERE GREEN NAME
What?
I saw it 
api abuse
@icy drift what?
Got to download it even
pc i want to play minecraft
@ember matrix no not u
It's not sending property idk why
send any image
discord be going brrrr
cuz discord is going brrr
o
Callum, who is Izzy
ye discord broken
I open them in browser, they work fine
samen't
discord go B R R R R R R R. R R R R R. R R R. R R R R
Printer go ...
hhhhhh
reposting
discord go B R R R R R R R. R R R R R. R R R. R R R R
@pallid sun discord servers be going like VRRRRRRRRRRRRRRRRRRROOOMMMMMMM
open in browsh
I'm tryna sendit but it won't send
I already saw the image 
because discord is homosexual
O DISCORD IS REALLY GOING BRRRRRR
iwayhgfaewilyufgvb
Callum, the picture is here, all safe
that meme lmao
“ya like gas?”
and why my minecraft option remained in hacked client 🤔
Discord: we've removed the ability to see the images
just get a image host lol
we'all need sleep
no
why
I just started passing out while scrolling through the chat and woke up to an open screenshot
Just upload to Imgur
wolrd is shit and the best thing we can do is sleep
ah
The world can literally stop time 
discord — we like to go brr™️
bruh it still doesn't work
time to dm random mods

bruh
@hardy coral die
Chillin at 220 ms

discord dying?
luca dead
kinda
dont give me star ⭐️
is luca ded?
ah sh*t
ok stop we get it discord cdn is dying
brr?
The spoilers are broken 

ok stop we get it discord cdn is dying
https://cdn.discordapp.com/attachments/385837258768515083/750375201677770923/unknown.png two hour old messages gg
it is ded ded and ded
So Callum doesn't see the present?
i do now
can we go on another topic instead of crying about discord media proxy
i think it is again cloudflare
Damn you Japan
just use your own image host or imgur
cuz cloudflare provides em the cdn
cloudflare dies very often
Tryna figure out why my prof draw his example stickman with a dick
@torn trellis Яндекс платный
he did an’all
@pallid sun you
Ты тоже
вы никогда не замените его
what a madlad
how do i search an array again
for loop
забавный
I don’t know
Ты тоже забавный
define "search"
представьте себе, что у вас есть русская клавиатура
did I tell you? I’m sure I didn’t
Ты тоже Whats mean
'search' means search through array
Спасибо
just search for things in the language docs
@balmy nebula https://google.com - array - enter
Celebrating Jackie Ormes! #GoogleDoodle
what a good explanation
niceum
how can we get bots??
@balmy nebula define search
i google before i ask on discord
Bruh
https://top.gg @final schooner
Spice up your Discord experience with our diverse range of Discord bots
Yes
discordbots.org was better
discord Will doğru everything For you
just sayin
Yes
i have an array of strings, and i would like to check them against a specific string
for loop
specifically for of
Are pics back yet?
keeping that domain name would not be a good idea, considering discord didn't verify their bot for containing discord on its name
for (let entry of array) {
if (entry === 'some string') {
doThing();
break; // if u want to stop when entry is found
}
}``` this should be correct
@balmy nebula ^
Using const in fors 
hm.
upload to an image host @hazy aurora
we all know its let i
var i 
lol idk
it’s let i smh
1 hololive member = 1 out of context clip
I've never seen any hololive video with this title, so I decided to make one.
Instagram
https://instagram.com/kabukibuki?igshid=1tx4gchtnsn06
The song outro that I used :
https://youtu.be/SNrf2D8knes
Like if you did like it.
Subsc...
happy now
vsc has a for snippet that uses let i too
mee6
yes?
var i 
this
that
(from sammy)
Hi
hi
(not you)
hi
bruh = bruh
Who is a girl hetr
what the
😳
me
How old r u
We all traps 
var variable = const variableInVariable = let variableInVariable2
600
why do I just see default pfps
@chrome plume there are no girls here
@chrome plume how old are you?
sound like pedophile
What default ?
hi world
ur eyes are not blind I see them too @boreal hearth
16
media proxy dying @boreal hearth
ah nice, is legal here
:Dddd
some loaded
How old r u
some loaded
15.6
why it double send

ios bug
but I am on Android
@icy terrace did you just assume I was an Apple addict who likes wasting my money?
@chrome plume any specific reason ur asking for a girl cuz u came out of nowhere and just asking is kinda odd
nope
@invalid-user
He left
meh i just come here for a green name and some hommies
lol
me
lololololololol
we are weeb devs, those two combined = no chance at getting a girlfriend unless the girl is paid
Girl paid nice
funny
i paid girls with love
order a girlfriend on fiverr 
i actually have a social life
same
I pay in nature 
but sammy, aren't you female

Aye










doe
