Guild icon
DDraceNetwork
DDraceNetwork / off-topic
Any languages allowed
Between 2024-09-21 00:00 and 2024-09-22 00:00
Avatar
cyberfighter 2 2024-09-21 00:53
uea get out
Avatar
Avatar
TsFreddie
Click to see attachment 🖼️
no muscle
Avatar
wtf
07:35
the german keyboard layout
07:35
is terrible
07:36
it seems like polish has one of the best keyboard layouts
07:37
its just perfect
07:38
or maybe the default german layout is terrible
Avatar
or just use English keyboard layout to write in English
Avatar
genius chanchito 👏
Avatar
Avatar
pilonpl
or maybe the default german layout is terrible
no, it really is. Its made for typing essays etc, but not for programming (all brackets are annoying to reach, second modifier alt gr etc, I use US keyboards if i can
Avatar
Avatar
Cøke
strong beard is very important
i have a beard, but im not sure it's important
Avatar
Avatar
Chairn
i have a beard, but im not sure it's important
it is
Avatar
but what for ?
Avatar
i have beard too
Avatar
all devs have beard
Avatar
what's the correct way to make a program that runs in a loop but can also be controled somehow
12:53
with a terminal
Avatar
Avatar
pilonpl
what's the correct way to make a program that runs in a loop but can also be controled somehow
What lang
Avatar
Main loop and a gocoroutine that awaits user input would be how I'd do it
Avatar
Are you making a cli thing?
Avatar
terminal snake ?
Avatar
If you are making something like that tcell is pretty nice to use
Avatar
i just want a program running 24/7
15:25
and i want to control it somehow
15:25
even to stop it when necessery in a controlled way
Avatar
MilkeeyCat 2024-09-21 15:26
kill -9 $(pidof path/to/program) is pretty controlled way to stop a program
Avatar
Avatar
pilonpl
and i want to control it somehow
Well the usual simplest way to accomplish that is standard unix signals
15:27
But it really depends on how much "control" you need
Avatar
idk just a stop command and a status command i guess
Avatar
A step up from that would be either terminal input if you will attach this program to an interactive terminal before sending it to the bg (screen/tmux/etc), or a control socket
Avatar
Avatar
pilonpl
idk just a stop command and a status command i guess
A really simple way would be to use SIGUSR1 for status and SIGTERM for stop both of which you can catch
15:31
But if you need more than that, then I'd probably use a control socket, at the top of your loop you'd always check if there are messages on the control socket, handle them, then continue on
Avatar
control socket? what exactly do you mean
Avatar
Or if the program is interactive, you can do what melon suggested, a goroutine that keeps reading from stdin, which you can send to the main program through a chan
Avatar
Avatar
pilonpl
control socket? what exactly do you mean
Like a unix domain socket, or a tcp socket, whatever, you can connect to it to send commands and receive the commands outputs
15:34
It all depends on how you want to send the commands, there are many ways to interact with a program 😄
Avatar
Avatar
Learath2
Or if the program is interactive, you can do what melon suggested, a goroutine that keeps reading from stdin, which you can send to the main program through a chan
that would be basically recreating a command line
15:35
which is weird
Avatar
where's rus5 located
Avatar
Avatar
pilonpl
which is weird
Well why? If you want to control your application from the command line
Avatar
i mean i guess when i launch sqlite3 it also has its own command prompt
Avatar
func main() { inputChan := make(chan string) go func() { defer close(inputChan) scanner := bufio.NewScanner(os.Stdin) for scanner.Scan() { inputChan <- scanner.Text() } }() // Main loop for { select { case input, ok := <-inputChan: if ok { fmt.Println("received command: ", input) } else { return } default: // Do whatever } } } This is about what I had in mind (edited)
Avatar
Avatar
Learath2
func main() { inputChan := make(chan string) go func() { defer close(inputChan) scanner := bufio.NewScanner(os.Stdin) for scanner.Scan() { inputChan <- scanner.Text() } }() // Main loop for { select { case input, ok := <-inputChan: if ok { fmt.Println("received command: ", input) } else { return } default: // Do whatever } } } This is about what I had in mind (edited)
inputChan.. that's AI isn't it peperage
Avatar
Avatar
meloƞ
inputChan.. that's AI isn't it peperage
ofc, cba to write it myself
Avatar
If it's my project, I'm writing it myself
15:39
If I'm doing it to show someone something llama is writing it
Avatar
Do you have llama running locally?
Avatar
I have a friend with a fat gpu running it for us
Avatar
siiick
Avatar
Avatar
pilonpl
Click to see attachment 🖼️
that is not very easy to fix 😄
Avatar
so you're planning on catching key input?
Avatar
i guess a normal cli is better
15:42
it can even have completion
Avatar
is ^[[D even bash
15:42
or are you using zsh/fish or whatever
Avatar
i guess this is fish
Avatar
There are libraries that help you with this sort of stuff
Avatar
Avatar
meloƞ
or are you using zsh/fish or whatever
but bash does the same thing
Avatar
https://github.com/charmbracelet/bubbletea like this e.g. but this is probably insanely overkill 😄
A powerful little TUI framework 🏗. Contribute to charmbracelet/bubbletea development by creating an account on GitHub.
Avatar
i love that it frames itself to be a "little TUI"
Avatar
Avatar
Learath2
There are libraries that help you with this sort of stuff
i mean its kinda whatever but there seems to be two ways of doing this. 1. get inputs from stdin 2. have a daemon running in the background and a second cli program that communicates with the daemon in whatever way you want
Avatar
what is your CLI supposed to be doing roughly?
15:48
a socket like tcp has more flexibility than stdin
Avatar
stdin is fine
15:50
i guess the way i implemented it earlier was bad
15:50
the whole program was bad
15:50
so i am recreating it in go
Avatar
If you want stuff like the arrow keys to work you need to implement a lot of stuff, it's not something you'd really want to bother with IMO, you most definitely should find a library to help with that, maybe a subset of tcell or sth
Avatar
Avatar
pilonpl
so i am recreating it in go
good choice - go has had a lot of W's lately
Avatar
Avatar
pilonpl
i mean its kinda whatever but there seems to be two ways of doing this. 1. get inputs from stdin 2. have a daemon running in the background and a second cli program that communicates with the daemon in whatever way you want
There technically doesn't need to be a second program, you could just pipe text into a fifo file, that's what we do for ddnet
Avatar
dis is what i puked onto my screen within like 2 hours in go kekw
15:57
WHYY IS IT .MKV (edited)
15:57
god damn you obs!!!
Avatar
mkv best
15:57
I wish they would embed it properly
15:58
but as always, big corpo hates open standards
Avatar
ignore me failing to change screens for 10 seconds
15:59
i changed my i3 keybinds to be more ergonomic but i keep forgetting
Avatar
Avatar
Ryozuki
no muscle
my lazy ass couldn't
Avatar
Avatar
meloƞ
ignore me failing to change screens for 10 seconds
Ирисочка 2024-09-21 16:42
make tas huh
16:43
use it on Kog so that you can bring me to the finishkek
justatest 1
Avatar
Avatar
meloƞ
ignore me failing to change screens for 10 seconds
mkv is usually the best it’s just not streamable
16:55
i still haven't made a game yet
Avatar
Avatar
meloƞ
ignore me failing to change screens for 10 seconds
Ирисочка 2024-09-21 16:55
melon do you like melon?
Avatar
Avatar
Ирисочка
melon do you like melon?
Cannibalism is illegal
Avatar
Avatar
meloƞ
Cannibalism is illegal
yet u are vegan
Avatar
Avatar
meloƞ
Cannibalism is illegal
in some countries the ways of getting the meat is illegal, not the act itself
🌞 1
Avatar
Avatar
Cammodude
in some countries the ways of getting the meat is illegal, not the act itself
pepeW
Avatar
Avatar
meloƞ
pepeW
Ирисочка 2024-09-21 17:09
I'm talking about other watermelons like you.🍉
Avatar
hes melon
17:10
not wata
Avatar
Avatar
Ирисочка
I'm talking about other watermelons like you.🍉
melon can't eat melon because its cannibalism
Avatar
Ирисочка 2024-09-21 17:11
Then I'll eat the @meloƞ myself.
17:11
justatest
Avatar
never seen dog eat melon
Avatar
Avatar
meloƞ
pepeW
do you have gay friends
Avatar
Avatar
TsFreddie
do you have gay friends
Yes ofc - my best friend hits on me every day
Avatar
wat
Avatar
owo can i borrow one (edited)
17:13
vibe
Avatar
what to do if my cat sit on my chair
17:15
but i need sit on it too
17:15
but he is so big
Avatar
Avatar
TsFreddie
do you have gay friends
Ирисочка 2024-09-21 17:16
I also had him lying with me on the bed in Minecraft xD
17:16
Then he disappeared from my life.
17:16
Idj
17:16
Idk
Avatar
Avatar
manikoo
what to do if my cat sit on my chair
Ирисочка 2024-09-21 17:18
Put the car on your legs
17:19
Or a table
17:19
__
Avatar
Avatar
Ирисочка
Put the car on your legs
car????
Avatar
Ирисочка 2024-09-21 17:19
Cat this is car
17:19
Cats are purring
17:19
So it's a car
17:19
yep
Avatar
wow yes
Avatar
Ирисочка 2024-09-21 17:21
А так бл я то думаю что ты не понимаешь
17:21
Ты же рус?
17:21
Sorry for russian
Avatar
Avatar
Ирисочка
Ты же рус?
17:22
im not rus
Avatar
Ирисочка 2024-09-21 17:22
Aga konechno a to cho y tebya v opisanii napisano chto ti eblan
17:23
kek
Avatar
but im not rus
17:23
lol
17:23
kek
Avatar
Ирисочка 2024-09-21 17:23
Wth
17:23
Ok
Avatar
Ирисочка 2024-09-21 17:23
You Ukraine
17:23
Im checked your steam
17:23
skibidi
Avatar
wow u checked my steam
Avatar
Avatar
Ирисочка
Im checked your steam
Ирисочка 2024-09-21 17:24
And it wrong ye?
Avatar
Avatar
Ирисочка
You Ukraine
♂S1mple♂ 2024-09-21 17:24
no im Africa
Avatar
Avatar
♂S1mple♂
no im Africa
Ирисочка 2024-09-21 17:24
Spanish please🥺
Avatar
Avatar
♂S1mple♂
no im Africa
Diga
Avatar
Avatar
manikoo
Diga
Ирисочка 2024-09-21 17:24
N?
17:24
dig
17:24
digger
Avatar
Ирисочка 2024-09-21 17:24
N
Avatar
Ирисочка 2024-09-21 17:25
catkiss
Avatar
where u chanchito
Avatar
im here
17:27
nice
Avatar
currently trying to find safe websites to download hgames
Avatar
Ирисочка 2024-09-21 17:28
Kabachki
Avatar
Avatar
むぎ
currently trying to find safe websites to download hgames
f95zone
Avatar
Ирисочка 2024-09-21 17:28
Zucchini
Avatar
Avatar
Ирисочка
Kabachki
Ирисочка 2024-09-21 17:28
Kolobki
Avatar
Avatar
むぎ
currently trying to find safe websites to download hgames
hgames?
Avatar
Avatar
manikoo
hgames?
what is it
Avatar
Avatar
TsFreddie
f95zone
i dont know i just tried and it downloaded me 19mb encrypted archive (edited)
17:29
game is 1.5gb
Avatar
Ирисочка 2024-09-21 17:29
Is it true that people on this server are all addicted to ddnet?
Avatar
what a fucko hgames
17:29
justatest
Avatar
Avatar
Ирисочка
Is it true that people on this server are all addicted to ddnet?
No my addiction is far worse than ddnet
Avatar
repack-games.com looks pretty safe
Avatar
Avatar
meloƞ
No my addiction is far worse than ddnet
Ирисочка 2024-09-21 17:30
Oh no
17:30
Vape monster?
Avatar
Worse.
Avatar
Avatar
meloƞ
No my addiction is far worse than ddnet
is it metal shavings
Avatar
Ирисочка 2024-09-21 17:30
Pivoo?
Avatar
Avatar
TsFreddie
is it metal shavings
Worse.
Avatar
Avatar
Ирисочка
Pivoo?
Ирисочка 2024-09-21 17:30
Beer
17:31
Grass????????
17:31
Sleep??
17:32
17:32
🧀
Avatar
twinbop
Avatar
who draw it lol
17:33
chanchito
17:33
its u?
Avatar
its like 2yo art i saw it in showroom
17:34
why delte
17:34
errr
Avatar
i want to use it for pc wallpapers
Avatar
Ирисочка 2024-09-21 17:34
Open pressent giftee_green Go play ddnet for 10 hours f4 Don't play ddnet for 1 day
Avatar
Avatar
Ирисочка
Is it true that people on this server are all addicted to ddnet?
I am that's for sure
Avatar
Avatar
むぎ
why delte
I got scared
Avatar
Avatar
Ирисочка
Open pressent giftee_green Go play ddnet for 10 hours f4 Don't play ddnet for 1 day
Ирисочка 2024-09-21 17:35
Ups I got the wrong sticker
Avatar
Avatar
Learath2
I got scared
why
Avatar
Ирисочка 2024-09-21 17:35
😭😭😭
Avatar
Avatar
manikoo
why
Humanified tees are terrifying
Avatar
but it look nice
17:36
want to se nanami
17:36
as human
17:36
justatest
Avatar
what
Avatar
god of war ragnarok now for pc - LETSGOO
Avatar
when we will sell ddnet in ps store for 100$ per copy
Avatar
Avatar
meloƞ
god of war ragnarok now for pc - LETSGOO
they even went down with the price from when it was released on ps
Avatar
still 60€ :c
Avatar
Avatar
pilonpl
Click to see attachment 🖼️
THE GREATEST SONG IN THE WORLD UUH UUH YEAAH UUH
Avatar
song...?
18:03
11/10
18:03
same dude
Avatar
yep just 16 years ago
18:03
(fuck i'm old)
Avatar
fuck u old
Avatar
im younger than that song
18:05
fuck i'm young
Avatar
bro too young for discord
Avatar
Avatar
Iza
bro too young for discord
shh @Gumba was punished for saying something like that kekw
Avatar
Avatar
Iza
bro too young for discord
Avatar
discord bans people under 13 lol
Avatar
Because they have to but they don't really care
Avatar
Original message was deleted or could not be loaded.
rip u
Avatar
im not under 13 now
18:09
lol in our time any kid can lie about their age (edited)
18:09
kek
Avatar
I guess it's normal to lie about age on online platforms
18:10
Because why would they need your age anyways
Avatar
yeah
18:11
but for be loyal and honest we say it (edited)
18:11
because because
Avatar
Btw lying is so great
18:14
Like
18:14
You can literally just lie
18:14
The world is a different place after you realise that lol
Avatar
but if u not just chatting, its something like voice chat they can guess u young
18:17
other people
18:17
greenthing
Avatar
Avatar
pilonpl
The world is a different place after you realise that lol
gigachad
Avatar
iza chill
Avatar
Avatar
pilonpl
You can literally just lie
especially when they request ur id lol
18:19
LiE
Avatar
i didn't even got it yet (edited)
Avatar
got what
18:21
u will got it when they ban u
Avatar
chanchito
Avatar
Another thing worth realising is that you can do anything you want
18:24
Literally anything
18:24
Doesn't mean it's a good idea
18:24
But still
Avatar
Avatar
pilonpl
Another thing worth realising is that you can do anything you want
wdym
Avatar
So like
18:28
Obviously there is illegal stuff and bad stuff and everything
Avatar
Original message was deleted or could not be loaded.
honorless
Avatar
wdym
18:28
i was just showing how easy it is to get banned
Avatar
Yellow text btw
18:29
It's actually kinda beautiful
Avatar
yeah
18:29
that theme so cool
Avatar
not that yellow on my crt
Avatar
Original message was deleted or could not be loaded.
and right click menu
Avatar
Avatar
manikoo
and right click menu
so nice
Avatar
I wanted to make an arch rice today but the VM wasn't cooperating
Avatar
Maybe because of uefi mode or whatever
Avatar
Avatar
むぎ
i was just showing how easy it is to get banned
i thought u did it
Avatar
Original message was deleted or could not be loaded.
Maybe just delete this message lol
👍 1
Avatar
Avatar
Gumba
i thought u did it
chancho is not so bad
Avatar
300iq
Avatar
Avatar
pilonpl
Maybe just delete this message lol
im dont worry about my discord account (edited)
18:32
but i deleted
18:32
owo
18:33
lol my english it's just a compile of words what i know
18:34
im crazy about u can understand me
Avatar
do u even use translator
Avatar
yeah when i don't know a word
18:35
but its rare shit
18:35
because can use logic for translate it myself
Avatar
i cant make up complex sentences so i often use translator
18:36
it helps a little with the memorisation
Avatar
Avatar
manikoo
because can use logic for translate it myself
and sometimes i just verify what i said for others understand me right
Avatar
idk im just trying not to look like i have a really bad knowledge of the language lol
18:38
i mean i just cant make up sentences but i understand it quite well (edited)
Avatar
im trying to learn it through speak with other gugyes
Avatar
so i have to use translator
Avatar
Avatar
manikoo
im trying to learn it through speak with other gugyes
don't care about they can think like "lol this guy is ipadkid?"
18:39
chancho giga chad
18:39
and im too
18:39
Avatar
Avatar
manikoo
im trying to learn it through speak with other gugyes
idk when i started playing ddnet i played with germans and we were chatting in english so i think i learnt it pretty well during that period of time, but then it feels like theres no progress (edited)
Avatar
Avatar
むぎ
idk when i started playing ddnet i played with germans and we were chatting in english so i think i learnt it pretty well during that period of time, but then it feels like theres no progress (edited)
same thing happen with me
18:41
i love this part of that game
18:41
can speak with guys from other country
Avatar
Original message was deleted or could not be loaded.
the same way i can report this image since youve clearly modded the client and are logging edited/deleted messages
Avatar
Avatar
Cammodude
the same way i can report this image since youve clearly modded the client and are logging edited/deleted messages
half of discord users use something like it
18:42
we all are nice and we all don't want to hurt other
Avatar
from what i know discord doesnt care if u use mods to theme ur client
Avatar
Avatar
Cammodude
the same way i can report this image since youve clearly modded the client and are logging edited/deleted messages
kek
kek 2
Avatar
only cares if you log deleted messages and spam the api and such
Avatar
Avatar
むぎ
kek
that option was added for those that cant think for themselves
18:44
clicking it will only tell you to block the person
Avatar
yes but what will u choose to report client with logs
Avatar
i don't like that shit when u block someone and him messages shows like "wowoowow press here for show him message" it should just remove all him messages imo
Avatar
Avatar
manikoo
i don't like that shit when u block someone and him messages shows like "wowoowow press here for show him message" it should just remove all him messages imo
when i see it i want to read him message
18:46
and it shit
Avatar
Avatar
manikoo
when i see it i want to read him message
real
18:58
but then i remember why i have blocked them (edited)
Avatar
my nature is shit
18:59
i can't
Avatar
Original message was deleted or could not be loaded.
im doing the uno reverse and report you for discord client modifications kek
Avatar
Avatar
Iza
im doing the uno reverse and report you for discord client modifications kek
i did not report anyone
19:12
no uno reverse
Avatar
chancho ia not bad
Avatar
Do you guys know any shit but still good android games?
19:44
Or mayeb just good android games?
19:44
Or maybe unusual android games
19:44
Idk
19:45
It's hard to describe what type of games i like
19:46
Some games just stimulate my brain
Avatar
Avatar
pilonpl
Or mayeb just good android games?
i have terraria, dead cells, mindustry and some sandbox game
Avatar
Avatar
pilonpl
Some games just stimulate my brain
And there doesn't seem to be a clear pattern as to what causes it
Avatar
Avatar
むぎ
i have terraria, dead cells, mindustry and some sandbox game
but last time i played it was like half a year ago
19:46
idk phones are not for games (edited)
Avatar
Avatar
pilonpl
Do you guys know any shit but still good android games?
oh i sometimes play hearthstone
19:47
lol
19:47
i guess u know what is it
Avatar
Avatar
むぎ
idk phones are not for games (edited)
this is what i use my phone for
Avatar
I am talking about games like this
19:49
Kinda bad but also kinda amazing
Avatar
Avatar
pilonpl
I am talking about games like this
lol (edited)
19:49
what is this about
Avatar
Life simulator
Avatar
omfg
19:50
Avatar
You have to earn money
19:50
And change the world
Avatar
Avatar
pilonpl
I am talking about games like this
watafak is this
19:50
poggers2
Avatar
I like boring games for some reason
Avatar
Avatar
pilonpl
Life simulator
19:51
justatest
Avatar
phone for calls and browser
Avatar
Nah
19:52
It's a fully functional computer
Avatar
ye but not a gaming console
Avatar
It can be
Avatar
Just install emulators
Avatar
nah it's for kids
19:53
phones are for business
Avatar
Avatar
pilonpl
Just install emulators
lol who will play games on this small shit display
Avatar
i saw these on tiktok monkaStop
Avatar
i use it for browser, discord and calls
Avatar
Avatar
manikoo
i use it for browser, discord and calls
only this
19:54
nothing else
Avatar
Avatar
manikoo
lol who will play games on this small shit display
It's small but also close to your eyes
Avatar
i use it as a fully functional computer but no games
Avatar
I could even play openttd on a phone
19:55
It's a pretty bad experience tho
Avatar
Avatar
pilonpl
It's small but also close to your eyes
its not like u can see display clearly in 10cm front of you
Avatar
It's not too bad
19:57
At least the pixels are close together
Avatar
but it is.. my eyes hurt
19:57
it's nothing compared to a big monitor unless it's glasses
19:57
like vr
Avatar
pc for text editor phone for games playstation for twich nintendo switch for youtube xbox for forza horizon 4
20:55
All time classic chat featuring @_N00P_
Avatar
тушканчик 2024-09-21 22:08
Ищу тиммейта Обо мне:14 лет, 270 часов, 105 поинтов на коге и 243 обычных. Пройдено 34 изика и 4 мэйна. От вас от 250 часов и 12 лет, возмодность сидеть по ночам на выходных и каникулах.
Avatar
There is a mosquito in my room that I can't kill because I don't want to get blood on my hands
Avatar
heinrich5991 2024-09-21 22:15
figurative blood or human blood?
Avatar
hard life
22:16
figurative is a strange replacement for mosquito
Avatar
Avatar
heinrich5991
figurative blood or human blood?
how hard does one have to punch that poor mosquito for that... human blood i mean (edited)
Avatar
Avatar
meloƞ
how hard does one have to punch that poor mosquito for that... human blood i mean (edited)
no, it's full of my blood
22:16
it has been biting me all day
Avatar
eat it for revenge (edited)
Avatar
pee on it to show dominance
Avatar
Avatar
heinrich5991
figurative blood or human blood?
human blood, and mosquito guts and whatever else
Avatar
Avatar
meloƞ
how hard does one have to punch that poor mosquito for that... human blood i mean (edited)
heinrich5991 2024-09-21 22:16
not very, it just needs to suck you first
Avatar
!makeitaquote
22:17
goodnight!
Avatar
Avatar
meloƞ
goodnight!
don't sleep yet
Avatar
why not :c
Avatar
the night is young
Avatar
i dont care how young that night is, i'm eepy :(
Avatar
but until 2 am good things still can happen
Avatar
Avatar
heinrich5991
not very, it just needs to suck you first
🤨
justatest 1
Avatar
TakeDoesStuff 2024-09-21 22:21
Avatar
Avatar
TakeDoesStuff
Click to see attachment 🖼️
I mean the error tells you exactly what's wrong
Avatar
was gonna say - mouse_sensitivity is outside of the scope you're trying to use it in
Avatar
here’s a random screenshot guys
22:22
pbbbbbbbbttttttttt
Avatar
Avatar
Ewan
here’s a random screenshot guys
no i asked him to post it here to not flood #questions ^^
Avatar
even better
Avatar
Avatar
TakeDoesStuff
Click to see attachment 🖼️
Google it
22:23
help yourself
22:23
f3
Avatar
https://www.phind.com - free AI targetted towards programmers even giving you links to click!
Avatar
TakeDoesStuff 2024-09-21 22:24
cool
22:25
thank you @meloƞ once again for help my pea brain
Avatar
where are my 10$ now
22:25
my services only last from 1pm-12pm! (edited)
Avatar
Avatar
TakeDoesStuff
cool
You probably want to declare that variable and put a number in there like 0.5 to start with, then mess around with it until it feels good
Avatar
TakeDoesStuff 2024-09-21 22:26
heres your ten dollas
22:26
10$
22:26
ok goodnight
Avatar
Avatar
meloƞ
ok goodnight
Wait don't go
Avatar
TakeDoesStuff 2024-09-21 22:27
gn
Avatar
Avatar
meloƞ
Click to see attachment 🖼️
But you'll miss a once in a lifetime event
Avatar
Avatar
Learath2
But you'll miss a once in a lifetime event
WHICH ONE
22:29
22:30
god i'm so damn fast at this, i read the announcement even tho it was yoinked within 0.2 seconds
Avatar
Avatar
meloƞ
god i'm so damn fast at this, i read the announcement even tho it was yoinked within 0.2 seconds
This one, a 25k person ping. I always wanted to do one
Avatar
@Learath2 holy god damn look at those reactions
22:31
kekw
Avatar
TakeDoesStuff 2024-09-21 22:31
DUDE
Avatar
i love this
Avatar
TakeDoesStuff 2024-09-21 22:31
CHAOS BRO
22:33
@Learath2 my computer lags each time i go on announcements
22:33
what have you done
Avatar
too many people reacting 😄
Avatar
Avatar
TakeDoesStuff
@Learath2 my computer lags each time i go on announcements
we all know learath had a huge ass smirk on his face when the "that ping will notify 10.000+ users on this server" popup came up and he pressed "yes"
Avatar
TakeDoesStuff 2024-09-21 22:37
LOL
Avatar
Avatar
Learath2
This one, a 25k person ping. I always wanted to do one
i thought you were drunk again
Avatar
@Learath2 thank you for telling me not to go to sleep
22:44
i really thought you just wanted to make me go ooga booga brain
Avatar
Avatar
meloƞ
@Learath2 thank you for telling me not to go to sleep
good morning btw
KEKW 1
Avatar
Avatar
meloƞ
@Learath2 thank you for telling me not to go to sleep
See, you could have missed this
KEKW 2
Avatar
literally just woke up
22:45
think_bot
Avatar
Avatar
meloƞ
we all know learath had a huge ass smirk on his face when the "that ping will notify 10.000+ users on this server" popup came up and he pressed "yes"
where can you see number of people in a server ?
Avatar
heinrich5991 2024-09-21 22:54
when you type the at-everyone thing
22:54
it'll warn you when you press enter before the message is sent
22:54
and tell you how many people you'll ping
22:54
(on large discords)
Avatar
@everyone
22:54
hmm
22:54
didn't ask me
Avatar
yeah you obviously cant do that
22:54
kek
Avatar
sad 😢
22:55
Invite to join a server
22:55
damn, doesn't it indicate #people in the servr usually ?
Avatar
It does. I see 22.381 on the link you just sent
Avatar
it just says im already in the server...
Avatar
for me it works both on phone and computer
Avatar
Avatar
meloƞ
we all know learath had a huge ass smirk on his face when the "that ping will notify 10.000+ users on this server" popup came up and he pressed "yes"
I think the message only shows online people now, so it probably said 2,800
Avatar
I want to try it again to see if it shows only online or both, but what if it doesn't pop up
kek 1
Exported 459 message(s)
Timezone: UTC+0