Guild icon
DDraceNetwork
DDraceNetwork / off-topic
Any languages allowed
Between 2024-10-12 00:00 and 2024-10-13 00:00
Avatar
Avatar
Learath2
Now that is criminal 😄
MilkeeyCat 2024-10-12 07:17
pepeH
Avatar
morning
Avatar
Avatar
MilkeeyCat
pepeH
poggers2 milkeey it's growing so fast pepecry
Avatar
MilkeeyCat 2024-10-12 07:49
after 4 rewrites im finally happy with type checking code xd
cat_uwu 3
Avatar
huh? i just put the link on my homepage less than a month ago
poggers2 6
08:11
justatest
08:11
free money
Avatar
Avatar
TsFreddie
huh? i just put the link on my homepage less than a month ago
!!!!!!
Avatar
I am really confused as to why Halloween sale is not listed on steamdb
Avatar
Jupstar ✪ 2024-10-12 09:12
Very spooky
Avatar
spok
Avatar
Btw burgers at McDonald's are kinda terrible lol (edited)
10:05
Not worth the price at all
Avatar
discord in chess app
🤯 1
Avatar
Avatar
MilkeeyCat
pepeH
Woo (edited)
Avatar
Avatar
Learath2
Woo (edited)
MilkeeyCat 2024-10-12 11:13
I have a new question santatrollet
11:14
I wanna add enums probably but I want them to be tagged
11:14
Idk what syntax to make for dat xd
Avatar
tagged enums? i can't follow :o
Avatar
Avatar
MilkeeyCat
I have a new question santatrollet
Tagged enums? Like rust ones with data attached?
Avatar
www.google.com
Avatar
Rusts enums are more like a tagged union than an enum in the traditional sense
Avatar
MilkeeyCat 2024-10-12 11:17
union/enum Foo { lol: Bar; kek: Baz; } let foo: Foo = ...; // I want to be able to get some kind of tag to know wether `Bar` or `Baz` in `Foo`
Avatar
That looks like a tagged union, well just have a hidden data field attached to the the unions
Avatar
oh so something like match foo.tag() { Some("lol") => println!("lol"),
Avatar
Avatar
Learath2
That looks like a tagged union, well just have a hidden data field attached to the the unions
MilkeeyCat 2024-10-12 11:18
but how to get the tag, I don't want to get pattern matching xd
Avatar
You can yoink golang type assertions. Or you can expose types as first class objects in your language so you can have something like if foo.(inner_type) == Baz
11:21
Or an operator instead of a member function looking thing
Avatar
MilkeeyCat 2024-10-12 11:22
@Learath2 also, if you had to choose how to limit sizeof operator: it would take only types or only expressions. what is better? xd
Avatar
if @foo == Baz
Avatar
Foo (Bar, "lol") when greenthing
Avatar
Avatar
Learath2
if @foo == Baz
MilkeeyCat 2024-10-12 11:23
i will try to do procedural macros btw lol
Avatar
Avatar
MilkeeyCat
@Learath2 also, if you had to choose how to limit sizeof operator: it would take only types or only expressions. what is better? xd
If I had to chose I would pick only type. Then you can add a typeof (expr) to compliment it
Avatar
MilkeeyCat 2024-10-12 11:24
Avatar
Avatar
MilkeeyCat
i will try to do procedural macros btw lol
Jupstar ✪ 2024-10-12 11:25
NICE
Avatar
Avatar
MilkeeyCat
i will try to do procedural macros btw lol
May Allah guide you
Avatar
MilkeeyCat 2024-10-12 11:27
in my noodle it doesn't look too hard xd
Avatar
Avatar
Learath2
if @foo == Baz
I actually like the way this one looks. Maybe if I can find more than one use for it this can be in my future language
Avatar
Avatar
Learath2
I actually like the way this one looks. Maybe if I can find more than one use for it this can be in my future language
a language written my learath
11:27
oh god i'm scared
Avatar
0 safety. It does rm -rf --no-preserve-root / if you make a mistake
justatest 2
Avatar
ddnet 3.0 will be written in that!
Avatar
Actually -1 safety. I'll also randomize everything every run to simulate user error
justatest 2
Avatar
MilkeeyCat 2024-10-12 11:30
what is this bot xd
👍 1
Avatar
Look at what game the bot is playing
Avatar
what bot
Avatar
MilkeeyCat 2024-10-12 11:34
fair
11:34
banhammer
Avatar
There is no bot, @MilkeeyCat was just jealous that women were emoting my messages
Avatar
jealous of rosy milkeey?
Avatar
MilkeeyCat 2024-10-12 11:36
200% he's from Turkey justatest
Avatar
His profile was just links to some random turkish influencer
Avatar
MilkeeyCat 2024-10-12 11:37
xd
Avatar
Avatar
Learath2
if @foo == Baz
MilkeeyCat 2024-10-12 12:18
struct Bar {} struct Baz {} union Foo = Bar | Baz; let foo: Foo = Bar {}; if @foo == Bar { ... } is that ok? :DD
Avatar
Avatar
MilkeeyCat
struct Bar {} struct Baz {} union Foo = Bar | Baz; let foo: Foo = Bar {}; if @foo == Bar { ... } is that ok? :DD
That looks pretty good. Have you considered what access looks like?
Avatar
MilkeeyCat 2024-10-12 12:25
oh pepeW
Avatar
Like inside that if, how would I access Bar::x e.g.?
12:26
It could just be a cast
Avatar
MilkeeyCat 2024-10-12 12:28
union can be declared like this union Foo { bar: Bar; baz: Baz; }
12:28
and @ thingy to be sure that there's really type Bar in there
Avatar
Диван 2024-10-12 13:40
help ticket 1236
13:45
pls
Avatar
definitely not me trying to play a random furry game but it too poorly optimized so i spend like three days optimizing the engine
14:18
fun fact, DO NOT use rpg maker to make anything that runs logics every frame.
14:19
their "interpreter" code is literally this
troll 1
Avatar
nyɔŋmɔ ni gbooo 2024-10-12 14:33
Pls help ticket 1237
Avatar
Avatar
MilkeeyCat
union can be declared like this union Foo { bar: Bar; baz: Baz; }
MilkeeyCat 2024-10-12 14:35
Eh, but then assignment looks weird
Avatar
Avatar
TsFreddie
definitely not me trying to play a random furry game but it too poorly optimized so i spend like three days optimizing the engine
That's insane
Avatar
Avatar
TsFreddie
definitely not me trying to play a random furry game but it too poorly optimized so i spend like three days optimizing the engine
furry rpg poggers
15:17
@Tọm moving tiles ofc are good and should be added in ddnet, but implementation of this will look like a huge hack, it also needs client prediction, proper editor support, etc etc... so i don't really think it will just pop out in near future
Avatar
Avatar
zhn
furry rpg poggers
they made an ACT with rpg maker, it really wasn't good for that
Avatar
it would be so nice if C could just automagically replace . with -> when accessing fields of a struct
16:17
there is 0 reason not to do that i think
Avatar
Koll Potato 2024-10-12 16:18
isnt it parser's skill issue?
Avatar
огурец 2024-10-12 16:27
Чтоб ночью играть
Avatar
Jupstar ✪ 2024-10-12 16:37
I feel colorblind
Avatar
Avatar
pilonpl
there is 0 reason not to do that i think
MilkeeyCat 2024-10-12 16:44
i added both to my language
16:44
ig it's useful when you don't have lsp and can't the type of a variable
Avatar
i am looking at the source code right now btw
Avatar
MilkeeyCat 2024-10-12 16:44
if it's a pointer or not
Avatar
it just makes sense
Avatar
idk what to work on
16:53
everything seems boring
16:58
I had an idea to make a 2d top down car
16:58
And a roundabout
16:58
And an animation with cars driving on the roundabout
16:58
But cars are actually kinda complicated
16:59
The wheels actually
16:59
Because they have to have correct angles
17:00
And how to make the car drive on the desired path?
Avatar
Avatar
zhn
@Tọm moving tiles ofc are good and should be added in ddnet, but implementation of this will look like a huge hack, it also needs client prediction, proper editor support, etc etc... so i don't really think it will just pop out in near future
yesss, i agree^^ it was just fun to post some videos to show possibilities. Guess i stop asking now 😄
🍻 1
Avatar
Avatar
pilonpl
But cars are actually kinda complicated
MilkeeyCat 2024-10-12 17:35
It's either boring or complicated lol
Avatar
well
17:36
17:36
17:37
Avatar
Koll Potato 2024-10-12 17:37
nsfw is not allowed
17:37
or is it
17:37
Avatar
what
Avatar
Avatar
Koll Potato
nsfw is not allowed
there is no nsfw there so sooœœœœœœœœœœ
17:54
Avatar
cars kinda work like this
18:06
i think
18:09
if the point where the lines cross it at (1, 0)
18:09
then to steer to other side
18:09
wee need to go through infinity
18:09
which is weird
18:11
i just dont really see how this could work in code
18:11
like sure i can find the angle of the wheels with atan or something
18:12
but what is the best way of specifying the steering
Avatar
Avatar
anime
Click to see original message
@Discord Mod
Avatar
idk
18:37
there is no nsfw i thinkkk
18:39
💀
18:39
i remember dat anime
18:39
from wher thi
Avatar
Avatar
basicaly
there is no nsfw there so sooœœœœœœœœœœ
kissing is not something I would show to my kids till they get older, so not safe.
Avatar
I don't want people seeing me looking at an anime kissing gif at work. So it is indeed not safe for work (edited)
Avatar
Avatar
Teero
I don't want people seeing me looking at an anime kissing gif at work. So it is indeed not safe for work (edited)
but imagine that you are drawing this anime, then in fact it is materials for work
Avatar
Avatar
RedRay32
but imagine that you are drawing this anime, then in fact it is materials for work
True but I am no illustrator and i assume 99% of this discord are not (edited)
19:12
bangers
Avatar
Avatar
basicaly
there is no nsfw i thinkkk
all womans is nsfw
Avatar
4eblaƞ33718 2024-10-12 21:27
who have this entities?
Avatar
Avatar
4eblaƞ33718
who have this entities?
почему все ищут самые убогие энтити которые за 5 минут делают??
21:37
пиздец
21:37
Avatar
@meloƞ what are u doing in the backrooms?
Avatar
Avatar
Gumba
@meloƞ what are u doing in the backrooms?
i'm always in the backrooms
Avatar
i wanted to post a vid but it doesnt download 😦
21:38
i have succumbed to the brainrot
Avatar
Avatar
むぎ
почему все ищут самые убогие энтити которые за 5 минут делают??
4eblaƞ33718 2024-10-12 22:04
потому что они самые нормальные
Avatar
Avatar
むぎ
почему все ищут самые убогие энтити которые за 5 минут делают??
4eblaƞ33718 2024-10-12 22:17
в основном, там разноцветная блевотня которая ни с чем не сочитается
Avatar
Avatar
4eblaƞ33718
в основном, там разноцветная блевотня которая ни с чем не сочитается
ну это твои проблемы
23:40
я сделал все сам так что у меня сочетается
Avatar
Avatar
むぎ
ну это твои проблемы
4eblaƞ33718 2024-10-12 23:41
лучше бы ты скинул, нежели мне заполнять мозги твоей не нужной информацией, если у тебя его нет, значит не пиши
Avatar
Avatar
4eblaƞ33718
лучше бы ты скинул, нежели мне заполнять мозги твоей не нужной информацией, если у тебя его нет, значит не пиши
динаху
23:42
+поплачь
Avatar
Avatar
むぎ
динаху
4eblaƞ33718 2024-10-12 23:42
Exported 146 message(s)
Timezone: UTC+0