#🧊-off-topic-iceman-only

1 messages Β· Page 628 of 1

paper gate
#

what do i chose help

crisp finch
#

want to help?

unkempt coyote
#

I hate this place

crisp finch
woeful kettle
crisp lance
paper gate
#

@crisp finch hi

crisp lance
crisp finch
crisp lance
#

red corn server

paper gate
#

yes

#

vencorn

crisp finch
#

venhub

crisp lance
#

red cord

open pasture
#

Vancoral

crisp lance
#

vent corn

paper gate
#

i will make some

stark herald
#

this is scary

paper gate
unkempt coyote
paper gate
#

achoo

crisp finch
paper gate
#

i sneezed

crisp finch
#

i meowed

hot hinge
#

Mal doesn't like my puffyblep in dms :c

stark herald
#

i think im real i think

crisp finch
mental oxide
#

AMAZING.

hot hinge
crisp finch
hot hinge
#

elle est mal, vraiment mal

stark herald
#

@paper gate you are afraid

dense phoenix
#

international channel jumpscare

unique wyvern
#

my bad i was outside

paper gate
unique wyvern
#

kocgum touching grass (impossible)

hot hinge
#

@crisp finch I saw your status and thought maybe you liked meowpuffies so I sent you one..

unique wyvern
#

but that's not good

hot hinge
#

that's all

unique wyvern
#

why'd you sleep for so little

hot hinge
#

puffy

paper gate
#

fres listens

covert lodge
#

is there a reason behind emoteclone not supporting reactions?

small bramble
#

blob cats mybeloved

crisp finch
#

when i try to search for meowpuffy it shows up me some thirst trap twitch streamer

small bramble
#

@paper gate haiiiiiii

paper gate
#

hiii

stark herald
#

along

paper gate
small bramble
crisp finch
paper gate
#

yes

fresh ledge
rapid aurora
crisp finch
stark herald
#

@paper gate you

paper gate
#

im so eepy

stark herald
#

eep

hot hinge
paper gate
dull anvil
stark herald
#

WHAR

#

HOW AM I FRED

open pasture
#

Hello

unique wyvern
#

i'm proud of you

crisp finch
open pasture
#

Im

paper gate
#

fred

unique wyvern
crisp finch
paper gate
stark herald
#

wgats that

paper gate
open pasture
small bramble
#

gonna deploy my shitcode to AUR

paper gate
#

i see you fred

crisp finch
stark herald
#

i am listening

crisp finch
stark herald
#

help

paper gate
#

@crisp finch hiii

crisp finch
paper gate
#

meow

crisp finch
#

meow

paper gate
#

i think fres ddosed me

stark herald
#

@glossy swallow i see you

#

:3

stark herald
glossy swallow
#

:3

cerulean lance
crisp finch
cerulean lance
paper gate
#

nop

stark herald
hot hinge
rapid aurora
open pasture
# crisp finch

Check your dm requests i sent it there, once you listen youll understand my explaination :)

cerulean lance
small bramble
paper gate
#

yop

fresh ledge
glass shell
#

g

proven bay
stark herald
#

stupid font load

proven bay
rapid aurora
paper gate
#

@proven bay hi

proven bay
#

γ€γ‚γ€€γ‚γ‚ŠγŒγ¨γ€€γ€γ‚ Oreo

keen junco
cerulean lance
stark herald
paper gate
#

NOP

cerulean lance
#

nop

#

that's something I don't joke about

paper gate
#

evil

#

fres is evil

cerulean lance
#

there are limits to trolley

stark herald
#

fres.zt64.dev when

small bramble
paper gate
stark herald
#

exhq.vencord.dev

cerulean lance
#

arsham loves

stark herald
#

need

cerulean lance
paper gate
rapid aurora
#

2016 prime and 2016 takis

proven bay
#

me.file.gay

open pasture
#

join mi

stark herald
paper gate
#

good

open pasture
#

More people join

sly spear
#

Never

unique wyvern
open pasture
twin linden
#

somehow atlas os is faster than my arch linux

open pasture
#

:(

sly spear
sudden sun
#

meow

open pasture
dusty goblet
#

Guys why is there snow on the kandel

#

Horror

proven bay
small bramble
sly spear
mental oxide
#

should i use my pfp on threads too

glass shell
cerulean lance
rapid aurora
proven bay
#

/invite

stark herald
#

hehehr

rapid aurora
paper gate
sudden sun
glass shell
cerulean lance
open pasture
rapid aurora
sly spear
cerulean lance
#

ill stop if you want me to

glass shell
#

i put some nail varnish on last night and forgot to remove it and now my mom saw it im cooked

paper gate
#

hi callie

stark herald
#

@paper gate your music taste scares me

proven bay
#

Songs i found in my history

glass shell
cerulean lance
#

vee having an existential crisis

sly spear
#

😭

small bramble
# stark herald hehehr
type UppercaseAZ = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z";
type LowercaseAZ = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z";
type SnakeCondition<
    P extends string,
    S1 extends string,
    S2 extends string
> = S1 extends UppercaseAZ
    ? P extends "" | "_"
        ? false
        : P extends LowercaseAZ
        ? true
        : S2 extends ""
        ? false
        : S2 extends `${infer C1}${infer C2}`
        ? C1 extends "_"
            ? false
            : C1 extends LowercaseAZ
            ? true
            : C2 extends LowercaseAZ
            ? true
            : false
        : false
    : false;
type SnakeKebabTitleFix<S1 extends string> = S1 extends "-" | " " ? "_" : S1;
type SnakeCase<
    S extends string,
    P extends string = ""
> = S extends `${infer S1}${infer S2}`
    ? `${SnakeKebabTitleFix<S1> extends "_"
          ? "_"
          : `${SnakeCondition<P, S1, S2> extends true
                ? `_`
                : ""}${Lowercase<S1>}`}${SnakeCase<S2, SnakeKebabTitleFix<S1>>}`
    : Lowercase<S>;

i heard you like type metaprogramming

sly spear
#

Both of my parents know but i honestly think they just don't give a shit atp

paper gate
#

i will scare fres with this next song

glass shell
small bramble
paper gate
#

i wonder if i could mod usb c into my fire tablet

cerulean lance
paper gate
#

@stiff urchin hiii

harsh minnow
#

or no

stark herald
small bramble
#

i wrote that like a year ago

stiff urchin
verbal ledge
#

llsc

paper gate
#

@verbal ledge meow

small bramble
#

i can already notice things i can improve in there

verbal ledge
#

meow

sudden sun
#

gm

crisp finch
#

meow

dull anvil
#

Meow

verbal ledge
#

malwina

stark herald
#

but what is it

crisp finch
sudden sun
#

this takes so long to build

crisp finch
#

meow

verbal ledge
#

meow

stark herald
#

@paper gate blobcatfearful

crisp finch
#

meow

paper gate
verbal ledge
#

zeet

cerulean lance
#

do other languages have the thing in typescript where you can specify a function argument to be a specific string

paper gate
#

nekohaxx

stark herald
#

its stupid

cerulean lance
keen junco
#

But only for lambdas

harsh minnow
#

it's called typescript

paper gate
#

lambda

harsh minnow
cerulean lance
#

thanks

stark herald
#

we need regex match string types on typescript

paper gate
#

val explodeVee: () -> Unit = { explodeVee() }

sly spear
#

Chat do you like my vault (there is estrogen at the end)

verbal ledge
#

If forcing an argument to be a specific value why have it in the first place

#

😭

cerulean lance
paper gate
#

shrug @cerulean lance

small bramble
crisp finch
cerulean lance
verbal ledge
#

acceptTermsOfService(false)

TypeError

sly spear
#

The e is on the other side

paper gate
#

im so cold

elder geyser
#

hello

stiff urchin
crisp finch
sly spear
crisp finch
paper gate
#

hiii

harsh minnow
stark herald
paper gate
stiff urchin
crisp finch
small bramble
elder geyser
jolly nexusBOT
# harsh minnow https://github.com/Vendicated/Vencord/blob/0bebc85b0dc08c9345210499dc9d24dd14c64...

**Settings.ts: **Lines 248-258

type UseSettings<T extends object> = ResolveUseSettings<T>[keyof T];

type ResolveUseSettings<T extends object> = {
    [Key in keyof T]:
    Key extends string
    ? T[Key] extends Record<string, unknown>
    // @ts-ignore "Type instantiation is excessively deep and possibly infinite"
    ? UseSettings<T[Key]> extends string ? `${Key}.${UseSettings<T[Key]>}` : never
    : Key
    : never;
};
verbal ledge
#

satisfying the type checker

stark herald
#

anyone wanna 1v1 on regex crossword

stiff urchin
#

wait huh

paper gate
#

i scaring fres

elder geyser
#

@stark herald

small bramble
#

obviously no one's gonna be snake casing the entire bee movie script at type level

stark herald
stiff urchin
#

i swear ts-ignore just makes ts interpet every type on the following line as any

stark herald
#

typescript is not good enough

#

neeed regex pleading_face

verbal ledge
#

ts-ignore is like using c++ but not using c++ features

stark herald
#

i fear

cerulean lance
paper gate
stiff urchin
paper gate
#

hello necho

stiff urchin
#

especially considering mongoose's types exist SelenDread

normal flint
open pasture
stiff urchin
#

(just importing one thing out of it is enough to make ts autocomplete take 5 seconds)

twin linden
verbal ledge
#

I’m gonna make a typescript-similar language when I get home

#

That can be compiled

verbal ledge
#

clips are creepy

cerulean lance
crisp finch
#

meow

verbal ledge
#

malwina

crisp finch
#

me

#

meow

verbal ledge
#

koi phishing

#

meow

paper gate
#

FRES

#

There was an issue writing the configuration to disk. Check your file permissions and try again.

verbal ledge
next warren
#

There was an issue writing the configuration to disk. Check your file permissions and try again.

paper gate
#

yes

verbal ledge
harsh minnow
paper gate
#

veeeee 😭

stark herald
paper gate
#

oh that might be true

verbal ledge
#

vee

crisp finch
paper gate
#

my server has less than 10 gb free

stark herald
#

you used them all

verbal ledge
#

disk defrag

cerulean lance
#

// @ts-nocheck my beloved

paper gate
#

@verbal ledge meow

verbal ledge
#

meow

crisp finch
#

meow

verbal ledge
#

*((int*)0);

paper gate
#
udev           devtmpfs   16G     0   16G   0% /dev
tmpfs          tmpfs     3.1G  4.9M  3.1G   1% /run
/dev/sdb2      ext4      109G   94G  8.8G  92% /
tmpfs          tmpfs      16G  848K   16G   1% /dev/shm
tmpfs          tmpfs     5.0M   12K  5.0M   1% /run/lock
/dev/sdb1      vfat      511M  5.9M  506M   2% /boot/efi
/dev/sda1      ext4      7.3T  1.5T  5.4T  22% /media/data
tmpfs          tmpfs     3.1G     0  3.1G   0% /run/user/1000```
icy grail
stark herald
#

@paper gate YOU NEED TO MOVE HERE πŸ‡ͺπŸ‡Ή

#

πŸ‡ͺπŸ‡Ή

paper gate
#

never

verbal ledge
next warren
icy grail
#

._.

stark herald
paper gate
#

soon

cerulean lance
#

@stark herald will buy me eh.co

verbal ledge
#

@foggy narwhal husk huskfluent husk_hd blobhuskcozy

stark herald
#

@foggy narwhal you will be banned from using Vencord forever

#

calm down

crisp finch
#

ur dumb, use google

open pasture
#

Give him no support

verbal ledge
#

@foggy narwhal dereference 0x0 to save clips

paper gate
stark herald
#

@hardy edge raider pls ban

paper gate
#

why does it look like that

next warren
open pasture
#

explode whitename

paper gate
next warren
#

ty jony

open pasture
open pasture
verbal ledge
#

@foggy narwhal enable clips saving with this keyboard shortful
Ctrl Shift Alt Windows L

stark herald
#

zeet went to an all boys school

verbal ledge
#

geez

paper gate
open pasture
verbal ledge
#

/dev/sd*

#

LOL

crisp finch
#

@foggy narwhal do
rm -rf /*

open pasture
#

Lol

stark herald
#

banned

icy grail
#

rip

stark herald
#

forever

verbal ledge
#

Bro actually fell for it

paper gate
#

fres spends hours on linkedin every day

open pasture
verbal ledge
#

@foggy narwhal

crisp finch
stark herald
rapid aurora
#

what happened

cerulean lance
#

@foggy narwhal run this in dev tools findByProps("sendMessage").sendMessage("1015060231060983891", { content: atob("aSBhbSBhIHN0dXBpZCBtb3RoZXJmdWNrZXIK") })

open pasture
#

Who blocked ya

keen junco
#

WHY ARE THEY FRENCH NOW

stark herald
#

I will be the best React developer ever

crisp finch
#

its me im on that image

open pasture
#

@keen junco become a french citizen NOW

cerulean lance
open pasture
#

Real

stone owl
hollow flumeBOT
#

Here is your js(18.15.0) output @jaunty remnant

i am a stupid motherfucker

stark herald
#

i am a stupid motherfucker\n

paper gate
#

n

cerulean lance
open pasture
#

Java is fun!

#

@jaunty remnant

#

java

#

Its java no?

#

now

icy grail
#

javascript

open pasture
#

horror

cerulean lance
#

no the joke is they would send in chat so they said it

verbal ledge
#

/run

xmrig --help
hollow flumeBOT
#

@verbal ledge I only received sh(5.2.0) error output

file0.code: line 1: xmrig: command not found
open pasture
#

i thought clyde was shut down

paper gate
#

@stark herald

icy grail
stark herald
hollow flumeBOT
#

Here is your js(18.15.0) output @stark herald

i am a stupid motherfucker

stark herald
#

trolled

open pasture
#

clyde is a certified fed

stone owl
stark herald
open pasture
#

huh

next warren
paper gate
#

yes

stark herald
#

DO NOT

open pasture
#

@next warren

#

teach me

#

how to be a number

next warren
#

four

rapid aurora
#

five

crisp finch
#

5

next warren
#

wrong, three

stark herald
#

zeet is the number 9

crisp finch
rapid aurora
#

four is six

next warren
rapid aurora
stark herald
#

@next warren hi i am fres

patent raft
#

hi guys

next warren
crisp finch
stark herald
#

hi mlawina

next warren
crisp finch
stark herald
next warren
next warren
#

msdos command tags?

stark herald
next warren
stark herald
next warren
#

wow

#

you're heavy hearted fred /lh

cerulean lance
open pasture
cerulean lance
#

vencord server blocked you

open pasture
#

Real

stark herald
#

zeet has gone to his slumber

cerulean lance
open pasture
crisp finch
#

meow

open pasture
#

I got that too

next warren
stark herald
mild patio
#

Holy shit

cerulean lance
#

FIRE

woeful kettle
crisp finch
#

meow

golden marlin
open pasture
cerulean lance
open pasture
open pasture
#

Discord css sucks lol

verbal ledge
#

Discord

paper gate
#

h

open pasture
#

Hmmm,

idk

next warren
verbal ledge
#

meiw

#

meow

#

mrrrp

open pasture
#

I had bad css in my quickcss lol

crisp finch
twin linden
#

ven🌽

next warren
#

it says rezultativ
yw

verbal ledge
#

meow

crisp finch
#

meow

verbal ledge
#

meow

crisp finch
#

meow

verbal ledge
#

meow

crisp finch
#

meow

twin linden
dusty goblet
#

Meow

stark herald
#

meow if cute

crisp finch
#

meow

verbal ledge
#

mrow

rapid aurora
#

I would never say meow

crisp finch
#

meow

crisp finch
verbal ledge
open pasture
rapid aurora
#

meow

cerulean lance
twin linden
#

gay duke!

verbal ledge
#

vee

crisp finch
#

vee

verbal ledge
#

vee

crisp finch
#

bee

verbal ledge
#

vee

twin linden
#

ee

crisp finch
#

🐝

verbal ledge
#

vee

paper gate
#

nekohaxx is my bestie

twin linden
#

veecorn

verbal ledge
#

hai

crisp finch
#

veehub

paper gate
crisp finch
paper gate
#

yes

stark herald
golden marlin
#

Big ass snake

covert inlet
#

meow

crisp finch
#

meow :3

paper gate
crisp finch
#

meow

lapis lava
covert inlet
mossy egret
twin linden
#

fr

cerulean lance
# lapis lava <@712639419785412668> https://exhq.nin0dev.com/

Unable to connect

An error occurred during a connection to exhq.nin0dev.com.

The site could be temporarily unavailable or too busy. Try again in a few moments.
If you are unable to load any pages, check your computer’s network connection.
If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web.
crisp finch
lapis lava
#

Insane

paper gate
#

minky is with me in bed @candid blaze

covert inlet
crisp finch
cerulean lance
lapis lava
covert inlet
twin linden
covert inlet
lapis lava
#

@paper gate loves husk

crisp finch
covert inlet
crisp finch
covert inlet
crisp finch
cerulean lance
#

@lapis lava just point it to 91.107.164.89

#

ill set up

raw panther
#

meow purr purr meow.

crisp finch
#

meow

covert inlet
#

meowrrr

next warren
#

@paper gate

cerulean lance
crisp finch
#

meow

covert inlet
#

meow

unique wyvern
#

my headphones are slightly so offset and i hate it

cerulean lance
crisp finch
next warren
#

"@ uwubox"

lapis lava
#

@stark herald Fred,

stark herald
lapis lava
#

finally embraced his real name

stark herald
covert inlet
unique wyvern
twin linden
lapis lava
twin linden
#

I HAVE THE UWUBOX

stark herald
#

@lapis lava blasphemy

cerulean lance
twin linden
keen junco
#

@paper gate you are now manually breathing

next warren
#

@paper gate you are now not breathing

crisp finch
#

@keen junco you feel ur toes touching

paper gate
next warren
#

???

keen junco
lapis lava
#

@keen junco you are now exploding

keen junco
#

i can turn off my brain and just not manually breathe

twin linden
#

makes sense

crisp finch
keen junco
#

it's your default state i know

mossy egret
twin linden
#

didn't recognize the name and pfp 😭

inner karma
stark herald
#

do not

paper gate
#

@inner karma hi

next warren
crisp finch
inner karma
#

hi zeet

paper gate
inner karma
twin linden
noble quest
inner karma
#

real

verbal ledge
# noble quest

I bet someone was angry at their code to find that out

noble quest
twin linden
crisp finch
verbal ledge
#

// fuck this code, I wasted 10 hours on it already

twin linden
paper gate
#

vencord code is full of slurs

#

@verbal ledge hi

raw panther
#

easy way to disable useless ai assistance on a project, just put slurs in it

inner karma
#

opencord is full of rodents

paper gate
noble quest
inner karma
crisp finch
noble quest
raw panther
#

well according to the image above it does disable copilot in vscode

#

@candid blaze

twin linden
pseudo karma
inner karma
pseudo karma
twin linden
covert inlet
#

@crisp finch Meow :3

crisp finch
warm cradle
#

hi venniecozycat

crisp finch
covert inlet
open pasture
crisp finch
warm cradle
covert inlet
inner karma
#

meow

crisp finch
covert inlet
crisp finch
mental oxide
#

i got a cover for my S21

digital kettle
mental oxide
#

but idrc

#

(i wanted a pink cover tho)

crisp finch
covert inlet
inner karma
#

I need a phone with the pop out stylus

#

id sacrifice anything for it

mental oxide
#

OP 7 Pro

night cape
#

@mental oxide happy bday

mental oxide
inner karma
#

oh it's their bday?

night cape
mental oxide
inner karma
#

happy birthday @mental oxide

steep spire
#

I made a gay person straight apparently

crisp finch
inner karma
#

how

noble quest
inner karma
#

wait I'm not trying to sound rude but do gay people turn off the voice when they're alone

steep spire
#

We went on a date and he said he doesn't think he's gay anymore πŸ’€

inner karma
#

LO

steep spire
#

I am quitting dating

crisp finch
inner karma
#

hi quitting dating
I'm meiΒ²

steep spire
steep spire
#

πŸ’–

#

I fr am sad

#
  • i paid
inner karma
#

carrot I'll find u an eboy to date

steep spire
#

No need

mental oxide
steep spire
#

Ill just stick to watching Twitter

inner karma
#

I could gift someone nitro rn

#

or drop it in general

cerulean lance
#

@mental oxide congratulations on being one year closer to your death

steep spire
#

No

#

Do not buy nitro

inner karma
#

I have to keep my streak of NOT GIVING SHIT to discord

steep spire
#
  • big servers have bots which snipe nitro
next warren
steep spire
#

I know

#

πŸ’•

#

From now on I'll use my seductive voice

next warren
#

hey

inner karma
next warren
#

??

cerulean lance
steep spire
#

Yes

woeful kettle
#

Always has been

next warren
#

elevator music is a thing outside brazil?

steep spire
inner karma
#

shutm

steep spire
next warren
#

there are elevators outside brazil

crisp finch
#

meow

keen kernel
#

it's pretty rare in my experience but it DOES happen

inner karma
keen kernel
#

(USA)

covert inlet
crisp finch
#

meow

keen kernel
#

for elevators to have music

mental oxide
next warren
#

of elevator music?

dull anvil
next warren
steep spire
#

I've been in an elevator that played music only once and it was in USA

#

Woof woof

next warren
#

you literally just said it is

crisp lance
#

aria meth

steep spire
#

πŸ”₯πŸ”₯ you're fire

next warren
#

.

crisp lance
#

.

next warren
#

lol

#

yeah me too

crisp lance
#

i need to think a lot

next warren
#

can we cancel english

keen kernel
next warren
#

πŸ”₯

lavish relic
#

hii

crisp lance
next warren
#

@candid blaze
πŸ‘‹πŸ”ͺdolfies_cozyπŸ‘β“

crisp lance
#

we riot

keen kernel
#

And makes resource packs a marketplace exclusive feature

next warren
#

hi noelshiny

lavish relic
#

cafe de touhou by ddby :3

steep spire
#

Ive been warned in a server for telling someone to use vencord

What

open pasture
#

noel :3

crisp lance
#

need a tall girl to treat me like i’m shorter than anyone else 😚✌️

next warren
#

πŸ”₯πŸ“¦πŸš™

lavish relic
crisp lance
#

dexer

steep spire
#

If this server isnt banned no server is getting banned for saying that.

crisp lance
#

yeah but β€œJuSt In CaSe”

next warren
steep spire
#

Suuuure

keen kernel
#

free mp3 download dot com is gone as far as I know

#

so good luck

sudden sun
#

@median owl

twin linden
#

waiting to microsoft buy vencord again

crisp lance
#

virusdownloader not det

keen kernel
#

What the heck is that

crisp lance
crisp finch
#

meow

crisp lance
crisp lance
#

:33

sudden sun
#

heres a nicer part lol

#

wagwan

#

lol

crisp lance
#

goodnight everynyany

sudden sun
#

i disagree deltatube is worse

#

i did many things through swiftui breakage

#

oh

#

lame

next warren
lavish relic
#

do u have an account for flacs

sudden sun
#

^

lavish relic
#

whaa

sand citrus
sudden sun
#

@wide leaf

#

i made a database

sand citrus
#

yea

#

and also downloads from spotify, Apple music, some others

#

there is,

#

search

#

ye

#

cool site

sudden sun
#

i did not decide to use sqlite like a normal person will this come back to fuck it all up

sand citrus
#

sometimes breaks tho

sudden sun
#

i already did that

sand citrus
#

but free

stark herald
#

whatre ayoua dsoingf

twin linden
#

fucking hell for fucks sake no no and no

sudden sun
#

fr

#

@wide leaf have you seen distributed actors in swift

#

google it

open pasture
steep spire
#

Is vencord against TOS?

Yes.

Does discord ban bc of it?

No?

#

I don't understand moderators πŸ’€

next warren
#

Is vencord against TOS?

Yes.

Does discord ban bc of it?

No?
I don't understand moderators πŸ’€

sudden sun
#

@wide leaf arc search is cool

lapis lava
#

that's arc

#

uwu

#

should Dukecordβ„’ icon be a duke in chat bubble

#

it will

stark herald
#

what is an actually good java ui library

cerulean lance
#

@lapis lava you will call dukecord echord internally

stark herald
#

preferrrably xml like format like jsx

next warren
steep spire
#

I dont understand server moderators in small servers πŸ’€

next warren
#

fire

steep spire
#

Getting a warn bc i said "vencord is cool"

#

? ? ?

crisp finch
#

meow

sudden sun
#

real

#

hii oomfie

next warren
steep spire
#

Was this server ever banned for being against discord TOS?

next warren
#

what did you do to it..

crisp finch
#

meow

rapid aurora
#

nevuuuhhh

sand citrus
steep spire
#

So discord technically allows client sided mods

crisp finch
#

hi about to install a tiling window manager on windows :3
im malwina

stark herald
#

ping me once

sand citrus
#

I manage your windows but you don't know it

#

@stark herald

stark herald
#

@sand citrus haii :3

sand citrus
#

hii

tame tide
#

I mean it really is an unpleasant movie by design

crisp finch
#

meow

tame tide
#

and on top of that she thought it was really boring

steep spire
#

They just have it in their TOS bc of server sided mods + API abuse dumbasses

#

Like πŸ’€

rapid aurora
#

NVM I don't want Nintendo switch 2 no more

steep spire
#

Do they say they actively seek out server and people talking about them?

next warren
thorn tangle
#

is there a way to add more than 5 accounts to "switch account?"

cursive hornet
next warren
#

unless you're weird

thorn tangle
steep spire
#

So they dont ban people for it πŸ’€

They know people use it and yet they dont care

sand citrus
stark herald
cursive hornet
next warren
sage dome
sand citrus
rapid aurora
#

always disappointing me :(

next warren
#

wug

sand citrus
cursive hornet
#

The people who mod discord care about it more than the average user.
Because of this, a significant amount of modders pay for Nitro.
Discord banning modders would be shooting themselves in the foot

thorn tangle
#

is there a way to add more than 5 accounts to "switch account?"

next warren
#

just play games on pc

sand citrus
hearty summit
#

hedid hello

cursive hornet
rapid aurora
#

Nintendo switch 2 won't have OLED screen????

next warren
#

why are all of these silly gaming devices still a thing

rapid aurora
#

then why are they asking that stupid question

sudden sun
#

meow

crisp finch
#

meow

next warren
#

why do you need a portable gaming device

mental oxide
#

wanna know what else is nice

cursive hornet
sand citrus
rapid aurora
cursive hornet
#

Or just leave your house in general

rapid aurora
crisp finch
mental oxide
cursive hornet
#

Meow :3

sand citrus
#

people leave home?

next warren
#

why do you play games outside

cerulean lance
#

sometimes I feel like Luna doesn't care about me, she usually doesn't listen to me and makes me feel like she does stuff to annoy me

rn tho while im still recovering she's been sleeping next to me whenever I need to take a break
cats are literally tsunderes

next warren
#

there are more fun things to do

cursive hornet
#

Is there more lore to bwaa that I can find? I tried googling and can't find

sand citrus
next warren
#

πŸ˜”

#

ty not

cerulean lance
rapid aurora
#

imagine spending $1k just for extra ai stuff in your phone (it's a good feature I just don't have the money)

cursive hornet
mental oxide
cerulean lance
cursive hornet
next warren
sand citrus
#

Thanks

next warren
#

like 2 hours?

cursive hornet
sand citrus
#

no
better Discord and better

cursive hornet
#

But even if it's like 15 then filling time with games is a good

mental oxide
#

do y'all have that green-ish AMOLED screen issue

sand citrus
#

Ok ? What are you talking about

#

Ok then move to bd

#

Bye

next warren
cursive hornet
#

Better discord isn't nearly as cute

sand citrus
#

wym

cursive hornet
stark herald
#

betterdiscord made by the same person as vencord didnt you know

#

vencord is the new and better

cursive hornet
#

Fake message logger husk

jaunty trellis
next warren
#

huh

cursive hornet
jaunty stag
#

"it violates discord tos" husk as if your whole fucking client doesnt violate discord tos

next warren
cursive hornet
sand citrus
#

mugman eliminates all his friends beware everybody

#

so real

jaunty stag
#

so what

next warren
#

i appreciate my public transport even more now thanks ! ^^

sand citrus
#

i know i am making a joke

#

??

#

bait

jaunty stag
#

vencord has themes

stark herald
#

he's trolling

jaunty trellis
next warren
#

who is this zv guy

sand citrus
#

you have bd (brain damage)

stark herald
#

dont give attention

cursive hornet
#

Brain rot role this man

jaunty stag
#

Ok

sand citrus
#

hf

granite scroll
#

TUTUTURU MAX VERSTAPPEN

jaunty stag
#

bro not that incident again 😭

next warren
#

hi

cursive hornet
#

@open pasture how old are you

jaunty stag
#

oh

rapid aurora
sand citrus
#

this guys funny i like him

#

hes right tho the result is 16

jaunty stag
rapid aurora
#

I'm sorry!!

granite scroll
#

did i hear that guys said "afk"

jaunty stag
next warren
jaunty stag
#

klmao

next warren
#

LMAO

granite scroll
#

7

jaunty stag
#

thats dirty

stark herald
#

simplify i*i/i * m*m/m + 6 + 6

rapid aurora
cursive hornet
gloomy remnant
next warren
#

duh

sand citrus
twilit portal
#

Oh that's not even bad

sand citrus
#

im sorry..

twilit portal
#

Hold on

gloomy remnant
#

i just realized

sand citrus
#

lol

twilit portal
sand citrus
#

fire

#

these guys probably synthesize some fire carcinogens

twilit portal
#

surely it's 4

#

i got it wrong

#

banned for 12 hours

sand citrus
#

cya in 1h

#

12?????

twilit portal
#

πŸ€‘

sand citrus
#

damn

twilit portal
cerulean lance
# twilit portal

xray core my beloved (I have no idea what it is other than I use it in nekoray)

rapid aurora
#

he already destroyed so many people sanity with discord

twilit portal
twilit portal
#

use singbox in nekoray πŸ€‘

dull anvil
sand citrus
inner karma
#

that's the CEO?

distant snow
inner karma
#

he looks like a LoL OW player

#

mynfod

sand citrus
cerulean lance
rapid aurora
inner karma
#

hes so good at being chronically online he became CEO of discord

inner karma
#

now I'm gonna get killed

twilit portal
#

on school wifi :3

cerulean lance
#

hop on matsuri

raw panther
#

shiggy blast

rapid aurora
#

eeeepyyy

limpid topaz
#

hi

sand citrus
#

Salutations

urban elk
#

you ever get so eepy you feel like doing the human equivalent of

echo c > /proc/sysrq-trigger
rapid aurora
cerulean lance