#general
1 messages · Page 1633 of 1
go for it

Also, lmao 8 seconds
i mean true
Basically I can do CSS with some music to make the pain a bit tolerable
inb4 ms decided to ban that extension for whatever reason 
If they do that, I go ||Vim||
just build the extension from source
Could be, but it uses Spotify Web API which its linked to my Spotify acc so Idk if me connecting from a banned 3rd party is something uh... not good
just BELIEVE, everything works if you BELIEVE
Sad it doesn't work offline, even with premium
Ah, so that is what I was missing when doing my calculator CSSs
:xd:

The final exam was doing the calculator, but with bootstrap
Now Imagine, I had a sh"""y and confusing CSS file, and a even worse HTML file
At some point I broke the JS by just modifing the HTML file lmao
id rather deal with nullpointer than that thing

Clearly, 2 doesn't exists
The best part is that I didn't even did that much, I just added some classes and stuff
muh eyes
"High contrast" theme moment
id spend days only to find a good theme 
i mean literally, when i migrated back to vscode from nvim, my fav theme hasnt been ported to vscode, so i spent days testing new themes 
the pure black is not the problem
the syntax highlighting is for me 
Lmao
At first I kinda didn't like and I thought it was because its a theme mostly focused on accessibility
But then I found about that with other themes the highlighting made difficult to me to differentiate some colours and I stayed with this even since
well hey as long as its not light theme
id go blind
You cant see the HTML/JS/CSS combo and say its the heaven, so no
it just hits the spot for me chef kiss
For me everything its fine except for the color text in the explorer
Its a bit way too dark, it almost blends with the background
Or maybe its just me going blind, idk :xd:
it actually has 2 colors
the darkest one are ones that get ignored by gitignore
but yeah its too dark ngl
I have to get new glasses because usually I see text darker than that lmao
I havent changed them in like 3-4 years becuase quaratine
i feel that np, i need new lens 
Where I have to change them every year or 2 years
:sad:
i never really use glasses for stuff at home
Tbh, best function of VSC
really? i never use it lmao
I have to use it all the time, myopia moment
Git its a pain to use for me, so a little graphical UI its always nice
No way I will remember all the flags git has
true lmao
even for docker, i only use the extension for auto complete in compose and docker files
if you dont really have a use case dont use it
you prob have watched fireship video about it
All I use its git, and even with that I struggle :pain:
Yea
hØw to join beta program
im bad at explaining so im not even gonna begin to explain docker
In android, you can see a "Join the beta" option in the play store
In Steam, you have to go to preferences > Beta > And select the beta version
I've already downloaded game so can I still join
Docker user:
You can join at the beta, but in Android idk if it has something like a limited number of participants or something
this is the dockerfile for my bot
FROM rustlang/rust:nightly as builder
WORKDIR /bot
COPY Cargo.toml Cargo.lock ./
RUN mkdir src \
&& touch src/lib.rs \
&& cargo build --release \
&& rm -r src
COPY src src
RUN cargo build --release
FROM debian:buster-slim
WORKDIR /bot
RUN apt-get update \
&& apt install -y libssl-dev ca-certificates
COPY --from=builder /bot/target/release/bot /bot/bin
CMD ["/bot/bin"]
Tf is that
mkdir? WORKDIR? apt-get?!
oops shouldve just apt update but anyway
lmao
docker useful if you want to run your apps ANYWHERE without having to worry about stuff not working on certain os etc etc
also if you want to handle multiple services like your bot and its database at once etc
Yeah, something like that I understood from the FS video
But going to the Docket website, it requires a login? payment? what?
nah payment is only if you want to push/store your images on the repository
images its like the docker file, right? or its the thing that docker uses to emulate the OS?
image is an image... for example this script has list of instructions on how to build my bot image in which if i share the image to people they can pull it and run it on their machine without having to worry about compatibility etc
Ah
So, I have to pay If I want my image to be in the docker repository?, kinda like a cloud thing?
i dont know the details about that tbh
you dont really need that
Ah, welp, the thing is that isnt needed
But why login lmao
Like, I dont see some privacy concern in Docker's privacy policy, but idk
this bot uses multi containers
the bot
the database
etc
composed together
its easy to handle things that way
So that repo technically can run in any OS without compatibility issues?
Sounds neat, but if all I do at the moment its broken JS and badly written CSS, I dont see any case where I would need it
It can also handle hardware incompatibility? Like X86 to ARM when needed
as i said all you need is the docker itself
Docker moment
imagine game binaries, well u just need to execuy that to run ur game
now an image that contains not only your app but also the OS
Doesn't that introduces a huge file size? or all an image do its tell the current OS how to emulate the target OS?
my current bot image is only around 100mb
thats small
if i were to put full ubuntu in there it would be way over 500mb

And then 1GB of the actual .NET, DIRECTX and other Win stuff libraries and things
if you look at my script you notice that i
- compile my code with the "rustlang" image that contains all the rust tools i need but is over 1gb in size
- but then i copy the resulting binary over to "slim debian" image that is very small
so the final image ended up being only around 100mb
you can push it even lower to about 50mb with alpine
but expect problem with shared libraries etc
Ah yeah, I see that
Optimisation 100
theres more into the script such as how cache is handled but i wont explain
like how i have to build twice here
COPY Cargo.toml Cargo.lock ./
RUN mkdir src \
&& touch src/lib.rs \
&& cargo build --release \
&& rm -r src
COPY src src
RUN cargo build --release
the dummy build vs the actual build
But, you're deleting it after, or its just because some cache thing?
yeah, its not a problem with docker its just how some thing work
basically i build the libraries first and then the actual binary
so that when i edit my source code it doesnt have to rebuild the libraries
Ah
which takes well over 20 minutes lmao
Lmao
That moment when you include a 10GB library just for 1 function, ignore scoping
Where have you been all my life
basically this is how the caching work in the simplest way
COPY src src
RUN cargo build --release
- if you build your image for the first time it will execute both instructions and cache the results
- if you build your image again without modifying anything in COPY it will skip RUN and use the cached results
- however if you modify them it will repeat from the beginning
Ah
hopefully my insanely terrible explanation helps
Reminds me of "hot module replacement" from webpack, where when the code changes, it doesn't requires a full reload to update the changes
Best thing ever
I kinda regret not using webpack for my calc just because doing math often requires me to reload the page a bunch of times when I got something wrong
just rechecked (ignore the none) the image is only around 110mb
Lmao
You cant ignore Node
Also, zamn
Pain
the none are just intermediate images which are basically caches

Ah, I was worried about that 3GB image lmao
All I did to draw the guides, because there is no way Im doing all of this manually
sounds pain
I made it worse by just using single letter variables in desperation
use emojis for the vars 
Lmfao
At some point it was a lot to memorise so I just did what I had to do from the start, comment the code
Math

At least I approved the final exam
good
Basically the graph wasn't needed, but since I finished the rest of the calc in 1 day, I wanted to add more, so I came up with the idea of using the Canvas API
When working with the Z axis, it was to painful at first that I searched for a moment how to write a quick 3D engine with WebGL lmao
bruh
At least the result its something, but its not true 3D
good enough
But I mean, I even took the time to adapt it to mobile view, so it has some things that some more bigger websites dont :trl:
does that give you extra score or something
or you just want to add stuff 
I just wanted to add all that because I also did similar things in the same course, so presenting a lazy project wasn't really a thing I wanted to do
Also, if something failed while presenting it, at least I had some features to make some backup points :xd:

The rest of the class presented something like this lmao
is that even real or a joke
Its real
The final exam just was adding fancy styles
We were just starting with JS so meh I guess

Gl
When I showed this to everyone weeks after the exam, everybody was like: "B"""" what the f""" is that"
I'll have Latvian history exam on Tuesday
I also have history exam on Tuesday next week
Dman.
But at least I have some backup point from a presentation I did some days ago (Even with some of the laziest ppl from the class, I made everyone approve just becuase I didnt wanted to fail that presentation lmao)
gl with the exam
gl
Anyways, gn its 2:11 AM here lol
Gn player
imma go back to my task aswell
Jailed jojo man banned?
Classified info
Yup
Since there are no messages (aka all are deleted)
who is that
Oh the one in #language-bar
that one guy who claimed that his funni northeast island is his
Who?
Doesn't matter
Stop posting that please, at least qwrty isn't as annoying as you
I'll have to @ moderators if you won't stop
K then
So this is annoying for you?
please stop arguing, 807293138665996288 and 892625447513358336
If he says so...just don't post the image on every conversation
I just mean say ok through the picture
You can also just not respond
That also works
Unless it's a question
Or simple 'alright'
hallo what is happening
Alright then
Nah I just posting the OK picture
;funnythumbsup::
Ok

Woooo
@night sentinel E95 costs ~2,1€ but E98 costs ~2,05€ here, Diesel remains under 2€ at ~1,92€
not gonna lie, if you put two spaces after a period, get used to the internet. i see no reason why you should do that, since most social media places will just get rid of that other space. so, if you do that, please, just be normal. save your time, folks
me when danekbel trying to meak discor cryptology idek
me when i try to decipher what qwrty said
EEIHESSEEI it says
happy june 4th people
Im not murica
Sadly more people remember pride month rather than Independence day
pain
Programming
ntf
lol independence day in usa is on july 4th
well, how can you know which independence day is he talking about?
Murica one
@night sentinel
?
Mans said you talked about American's independence day, is that true?
Kekw
yes, i was trying to fool someone into thinking that today it's american independence day
Lmao
wait it's american independence day already?
to relief pain im about to slap a kaomoji to every single one of my bot response
Happy America day!!!
happy america day
It's june 4th!!
Kek
Cake

in other news, happy hug your cat day
lol
(ノ◕ヮ◕)ノ*:・゚✧(u‿ฺu✿ฺ)Ψ( ̄∀ ̄)Ψ( •_•)>⌐■-■
average korean/japanese wanna be girl
Chinese not include?
idek
Here some nature picture that i take after took a little break from genshin grinding
I walk to mountain that near my house
This was some random monument in the middle of nowhere literally
Ok
Imagine build a tall building while there is not any building near
it looks nice
Hello
Hi
Thats a thing?💀
at least it's more wholesome than national burger day, national ice cream day or any other dumb holiday

Hahahah
why?
Xdxdxdxd
yo man
Prank 🥳 🎉 🎉 🎉 🎉 🎉 🎉
you can turn off that plugin
ok
sigh
greh
greh
greh
ok
:WHOAREYOU-1:
cool shop
yes
What is the problem
lemme finish
I have an experience no one else done in their live at 1st grade
so there sort of mashin that u can *get a photo for like 2 bucks
how much is it
u just need to select it from ur phon
a d it's really cool
I kiss a girl at age 9 sadly and unfortunately
and I want to print something but I have no i dwa what
like really shitty meme or sth
What is it's price
2$
yeah really
print "print"
isnt it; print("print")
I thought about printing that but if someone sees me with that in da shop
Sus
how did you get my messages in the theotown dramar discussion group
How
so do you guys hav som ideas?
What idea
print a banana
Plugin?
what photo I should print
why
Sw*atika
Click the checkmark for yes
print money
You cant
Any waifu
I'll print 100 dolars and I'll get 98
Are you asian?
elon moosk
Any waifu?
or check for 1 bilion
nope
dm
Or i get banned
dm me too
JWST prop
lol
Is there fredbot here?
no
Ok
non existent
Wait
What is going on
ima just stick it to the wall
put it in your neighbour's door step
What is the bot activation thinggies
smort
Funi
Cockroaches are raiding my bathroom once agaib
opps
Got fup
I made mistake while typing cockroaches
stonoga
me who havent seen a centipede for 3 years
ok
Just burn em
Ban him.
Ok
Burn your bathroom(again)
Anyone want ban speedrun
Oh
pipebomb the roach
i dont have any pipebombs
Yes you
😱

Same
Clean it
what
Huh
cokc
Who's jotaro🤨 🤨 🤨 🤨 🤨 🤨 🤨 🤨 🤨
^
Oh
Some jojo shii
Nobody likes anime anyways
unreal punctuality, i'm already getting christmas ads
Remember that ora ora ora guy
today is 33 years since nothing happened in beijing
Yeah I do
Celebrating nothing by doing nothing
He is a jojo fan... 🤮
He mentioned that he will watch jojo's 5th season and then a guy named jokubasa spoiled the plot for him lmao
That was epic fight
Say that to some of the mods of this server lol
quin 👀
They're fake mods
æ
h
h
a
bobingtonding
Then who is the real mod
me
I'm still here
Autobahn me
@worldly carbon please ban me.
Wiwuwiwu
Nah, I'd have to trouble Evan to get you unbanned again and I'm not doing that
Lmao
^
Fair enough haha, I got on just at the prefect time to see that
Even if I was pinged for it, I'd eventually get around to it
ghost ping
Just got here, it's an island in Florida
Hope you enjoy
👍
sounds very hot
Thanks haha, I'll be sure to watch out! My service is abit spotty though so who knows how much of me you'll see
Ow hello

Hi
Will do, thanks!!
rain
E
correct
Hi I have a problem can you help?
@
@
Cumbia
"Welcome to West Papua, Indonesia's most favorite copper mine-I mean colony- I mean territory."
stuff
@latent wraith hi, i hope you are having a great vacation. happy june 4th btw, make sure to hug your cat(s)!
you are good at colors
totally not copied from the original
thanks :gladeline:
for comparison
@night sentinel
dev qna result is out
Thanks everyone who submitted questions last week! Question submission is now closed, but you can always submit feedback using the link in the #feedback channel. Join us at our next event later this month for a developer panel!
Wait this is for personal use and not servers?
Or what
server obviously
@oblique sleet rate my cpde
you have kde on phone?
imagine kde on windows
doubt itd work very well
does it work very well on linux? :troll:
im just updating arch by accidentally connecting to some romanian host with 10 kbps up
lol
Also
at least in steam romanian hosts work faster for me than ukrainian ones
Danek, have you had a 'Inappropriate ioctl for device' error when using GPG?
I have this suspicion that my help entry being in Lithuanian might have something to do with it
and went for freebsd?
😳
noice
man dpy is a stressful place
''
man planning to make ml stuff when they cant even fix file not found and syntax error
common sight in dpy 
mans boutta make tt
should i say that using xlsx format is cringe
xlsx > xls
this feels illegal but it works so
csv > xlsx > xls
what the fu
txt > csv > xlsx > xls
true
TOML superior
Think twice, Jared
People love morbius because of memes
Not the movie
no clue what the movie is even about
we will be monitoring your progress with great interest
i mean, you have access to the complex industry repo
my toaster firmware downloads faster than this sh*t
personally i don't care about any morbius movie memes and i appreciate it only because of the genius plot and outstanding actors' play
priorities poeple
outstanding
Epico
they only did it so the folder would be at the top when sorting alphabetically
remind me to change my arch pass
remind me to remind you
From what I remember, it's a movie about a man turned into a vampire
also
Box Office: ‘Morbius’ Bombs Again With $85,000 Friday https://t.co/gXpHuEsbTO
20980
2569
O yeah letsgo
kekw
ah right i do remember seeing something about vampires
The movie got $85k after they decided to show the movie again
Lmao
oh its morbin' time
i literally morbed myself rn
love the scene where he morbed everywhere
me too it's my favorite scene
I love the part where he said it's morbin time
instant classic
remember when he said to the villain "i'm gonna morb the fck out of you"?
"It's morbin' time" Paul Allen, 2k22
reminder
I still can't believe Paul Allen and Morbius was played by the same person
anyway
Morbius is one of the movies, ngl
"Uhh, actually morbius is bad"
🤔
"Binley Mega Chippy" - Binley Mega Chippy, 2k22
asd
algorithms and structures of data?
Banana
banana i better:angre:

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Guess what, I fixed it, yayyy
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEED+9fQBQNpHtcQmKjx5f0bTrmAGcFAmKb2AkACgkQx5f0bTrm
AGeqxg//U/5Aq6NkeEbi3d7kqwDlEvfTIcs5UYa4rzYvQOlwvgr3+xPmjT7vDhad
DR+eA6AUP9gB2G/n7xvZn9AKawpAXlL8O5XLnyaePbHfpo8jVDIGfnF7+FiGGZ29
2pTYKjuPRnzXI4RO+xBOyt0ESFcasdT6c6dQ4lNZROXJAWtSBOQVRs2ayH7kfMK9
V0d4sf+VTEaj/ckPREdmMHMhjd01FtNLke1ZQDk7VUdnECL7McdeBjN9FdlDhB0D
/68DVRaUfH6eHu4U9pVVIBv6xKmcp+k13F3DaDApQULY8pjXHRD/mmVmEtxah0R7
NbviZbqMEKQPUH7LOt9tYnFYqiWkBaAQYKBh0xAd0n3P0ZmhrNkW/Q3i9ZN5GoP+
rcpScOxduznLkCAxsfY7qYOJWBZFPK97U+aj7x/5CGCV9VXYPjYCK62VVSbES4W5
DstP1uKzgXJq+FEAAwMcKi2AS4KMD34mahq/i9p/Iv3hYd6oerOq3C+Cv1YjxOS2
cant2Buf4H3JAKMSRKQB9wBssBW2fM/cKwAAOfeD0yDx8c2yp+A4MjxT0AIPB/4y
rVPcXh9k1FWzxRidlH3DmkmFrQMhB90I9pn/uEv8ZSu5gLTNaN+XWKnqABsuMos7
KKByASaO9SmewnUbsPU0WPipSwxbaDwGICX3jsHbvoicyhNFrEw=
=iMiJ
-----END PGP SIGNATURE-----
pgp never lies
who knew that deleting kwallet is bad
The satisfaction of closing 100 tabs
my goodness
Erk what we do tomorrow in ftb hell
How do harbour zones work, they never build for me
The big cheatsheet for automated access to private package repositories with git.
that was an interesting read
ah yes so thats hoe harbours work, thanks ja!
Thanks mate I didn't even know you had to add roads there
the banana
the
?
Ok
Texco
Tesco
In other good news my bowel situation seems to be getting better
tía is superior
How dare any of you post ALDI or Tesco, LIDL, Is far superior
@twilit scarab maxima gang
Mercadona gang
kokios bėdos, dėde?
Ar tu esi sertifikuotas maximos gerbėjas
No
norfa
Gerbiu tave
Svarbiausia, kad lietuviška
Anyways, ignoring what just happened, norfa best, everything else sucks
tía tho
framce
😳
Damn
Carbonated water op
I feel like my digestive tract got cleaned up now
Context: i had constipation
Where are the redeem codes?
What redeem
redeem codes for diamonds It’s in the game
try "chrs05"
thx
";cfly"
its like the 5th time rust compilation completely froze my rpi heck
temp is below 50 which should be fine
Already talk about it yesterday
K mate
The price is higher than before?
I cant believe it...
I finally got a C++ compiler to work with VSC
It works Inaudible screaming
joking aside i mean yeah its really heavy 
try compare go compiler with rust compiler
go one doesnt do much
rust has borrow checker etc all these stuff

the good side of this is that runtime errors (not all) are handled at compile time which means when you finished compiling then chances your app will surely work
I mean, if the compiler doesn't break my app while trying to optimise it, then its good enough
if it breaks then ur app needs fixing 
"unsafe" code excluded
Memory leaks go brrr
tell that to GC languages 
Zamn
memory in rust is handled with the so called "ownership"
i dont think i need to explain further
In Pain++ land we don't have GC
Now watch me writing some pointers pointing to oblivion and some unused GBs of RAM, surely my 16GB can do the work for me 👍
imagine working with pointer
*A pointer staring at some other random pointer, witch is staring at some other random pointer and so...
you do use pointer in rust but its different
python objects are partially pointers
So far, somehow I've been enjoining my VS2022 experience ngl
Its a little bit more faster, but I really dont want to imagine what would happen if I put VS2022 in my HDD instead of the SDD
vs is just too overkill for anything i do 
all i need is simple editor and lsp thats it
no need those testing tasks debug etc features of vsc
I only use it for the compiler and to use .sln files lmao
and on windows, scoop is a must have for me
Zamn
ez management
What windows should have in the base install
wym?
All these features look more like fixing windows caveats
"Eliminates permission popus windows"
"Prevents PATH pollution"
"Avoids unexpected side-effects from installing and uninstalling programs"
well its basically a pkg manager
Ah
which u prefer, downloading binaries or simply scoop install ...
Ehhh... depends
usually people use chocolatey on windows but it sucks
If the software acts like a """"" when installed from not official sources, then binary
For anything else, I would just prefer to type it
i have everything even rpi imager installed with scoop 
Node moment
this more like fixing the stupid chocolatey
Lmao
Ah, something I forgot to mention is that I also got clang, so basically the best of both worlds (GCC and CLANG)
So yea, I used WinLibs because why not
Tbh cant believe there isn't really like a consistent standardised way to compile C++
well thats been the pain with it
thank god rust has everything needed
no more headache
I thought "Well, this is an language with like 35+ years in existence, so surely it has an standard that everyone follows"
iirc there was some attempt but idk never dig deep
Sad
rust even has its own linter
Zamn
Rust really rust
rustup is for configuring toolchain etc
cargo is for building, running, testing, benchmarking, publishing, etc projects
rustc is the compiler but you literally never touch that
I depend of Microsoft Intellisence :pain:
@Ayame#5520
you can have multiple binary and library crates in one package etc
The day this stop working, Im sure Im gonna have a hard time remembering to put the damn ";" at the end of each line
never rely on those stuff lol
Binary inception
As said, you cant escape JavaScript
At first I was putting the ; at the end of each line in JS
But with time somehow I forgot about that and now Its like no
if ; is already troubling you i cant imagine you using rust 
Like its not natural anymore, now I have to think for a moment if I put the damn ; before I continue writing
For what I saw, yea, pain
Uhhhhhh..... It would print the memory used by the variable?
well it aint fair me asking this to you 
Wait what it would print, I literally got no idea
let a;
let a = a = true;
what is the value of a
XD
it shouldnt be hard
I was focused on that print! line so much, aaaa,~~ I blame JS~~
whats a 
for other languages yes not in rust 
basically the answer is () but as for why
a never got a value?
Wait no
a = a
So a should be the value of a
a = true
So a now its a boolean
but if its not true then tf it is lmao
everything in rust is an expression
let a = a = true;
a = true is an assignment however it returns nothing aka ()
so the final let a ends up having the value of ()
i think ur not getting it lol
EXPRESSION
a = true obviously an assignment where true is assigned to a
but the assignment itself returns nothing
Ah
everything is expression
this allows you to turn
if ... {
a = true;
} else {
a = false;
}
into
a = if ... { true } else { false };
you can return things from the if
NOT TERNARY
Are someone can do lua?
the final expression of a block is implicitly returned
let a = {
let b = 1;
b + 1
};
print!(a); // 2
Damn, I actually got lost for a moment thinking about why a isnt true
yeah cuz in many lang you can chain assignments
Yeah
a = b = c = d = ... = true
So in Rust something like that is not possible?
Wat is here
no
only one alternative but stupid
but its not even chain assignment
its just inline assignment
let (a, b) = (1, 2);
You know what nvm ill go
construct tuple (1, 2) and then destruct it to (a, b)
resulting in a having 1 and b having 2
That makes sense
i think release build will optimize them to just a = 1 and b = 2
Yeah, no point in assigning static variables
these are just basic stuff u gonna meet when startin
Kinda like you can simplify 2 + 3 = 5 to just 5
My sanity after that fact: 📉
this is where trait shines but ngl its huge learning curve at first
||Why cant exist a world where a = "true" actually returns "true" ?||
no language actually make assignment return something
what you see
a = b = 1
is actually
temp = 1
a = temp
b = temp
All of this makes me realise that I need to sleep
Literally I could sleep well for like a week due to a bunch of things
Uhhh... my head...
Anyways, cya 👋
why not just a = ...
Nice hot tub
I got a perfect room to live in!
Size- ∞
Balcony - Imaginary
Furnished? - semi
Rodents - NO
Services nearby - all are inside the room
Rent - Free of cost
Images -
https://c.tenor.com/kyQa0fthNCIAAAAM/the-backrooms-flickering-lights.
https://c.tenor.com/TMHdlm3rfHwAAAAM/backrooms-talking-ben.
https://c.tenor.com/xF6Z1-ZVTD8AAAAM/backrooms-etriogrht.
And yeah that guy is the owner
Ok
Wanna live in?
hello
I
Are you trying to be funny or what
nothing is funny in this world https://cdn.discordapp.com/emojis/974842626102681640.png?v=1&size=48&quality=lossless
HAHAHHAHAHAHHAHAHAHA
what
Thanks for a good laugh
Ah yes bri'ish cuisine
Briish pizzia
jumpscare warning
30 is just a matter of time
I want to ask from Romania people
My friend Accidentally says Romania cuisine is blandest thing ever
Does that thing true???
@proud void
That_King 🇷🇴 is AFK: Preparing my brother's birthday https://cdn.discordapp.com/emojis/793771496366669834.gif?v=1&size=48&quality=lossless - 17 hours ago
skodqard
Hi marcato
Holy shid
nvm left
Good
Larisa🥵
whitegrudov 😻
😭😭😭🤣😭
Fishe
🤣
This guy bought nitro yesterday.. And
Wtf
HE GONE
And his nitro is gone too
And i did all of this to him
Made him loose everything
Because he messed with the wrong guy
😳
I can say that accounts aren't deleted instantly
if you wanna completely delete an account you need to wait for two weeks
Inflation
