#general
3141 messages · Page 1704 of 4
yep it's the same
I think with cpp it doesn't just to the stack, but also static class instances?
there's a metric ton of platform specific stuff in crt
or something like that, idk cpp
?
does crt stand for c runtime or is it the old TVs
well same thing but different internal code
wouldn't it be similar tho
you know for a fact Microsoft made their runtime just to be different lmao
well functionally yeah
but internally I'm pretty sure each group has very different code
just like resb (stack size) and mov rsp, stack_ptr
and then all the signatures and maybe argument stuff
No, they made their runtime because they have their own C compiler 😛
fair enough haha
And GCC wasn't a thing when they started it anyway 😄
I don't recall seeing assembly in glibc but I could be wrong
still find it slightly funny that crt0.o can't have much C code in it
wait how do you set up a stack with C
If I'm not wrong a lot of the stuff the C Runtimes provide internally just make native OS calls
might want to ask Ama
You can write _start yourself in C and have it call your main
oh is it like syscall wrappers
No, syscall wrappers would be libc
do elf executables need to set up their own stack?
https://stackoverflow.com/questions/29694564/what-is-the-use-of-start-in-c
Apr 17, 2015 ... It sets up some stuff, populates the argument array argv , counts how many ... If a program does not want to use the C runtime environment, ...
_start also initializes statics I think for C++ code
healp
Yeah, I think I was wrong about the stack stuff
magic with the stack
?
was in the process of writing my own lang and now between crt0.o talk and JVM talk I think I'm doing it all wrong
https://man7.org/linux/man-pages/man8/ld.so.8.html
Aug 27, 2021 ... DESCRIPTION top · ld.so and · ld-linux.so* find and load the shared objects (shared libraries) needed by a program, prepare the program to run, ...
_start makes sure you have the right alignment for the stack though
And sets up argc and argv, yeah
sez u
just checked seems like the executable file itself includes a section in the header that sets the stack
guessing it depends tho
@magic river would I be crazy to suggest that the previous Bukkit crew re-assemble and give a better direction of Bukkit than where spigot is taking things? is that something completely crazy to suggest? I figure I might as well go and suggest it and see what your answer is, lol
very crazy
broccolai I like your emoji
Mojang might sue me just out of spite if I did that 😛
thank u mr tesseract
well isn't the main issue wolvereness though?
damn just got called mr, feeling very high society rn
Uh, yeah, sure
a sacrifice for the greater good
:)
I was trying to sell my copyright to Mojang
I feel like not sacrificing ama might be a slightly better approach to any problems
they seem to know a lot
Their lawyers sent me a response that I don't think counted as a cease and desist but might, I'm not a lawyer 😛
If not it was at least the threat of one
guy owned Minecraft since 2010 and is an ex-Bukkit team member that shouldn't be a surprise
eh good point
Honestly I wouldn't mind if Mojang re-hired him to improve the renderer tho :P
so hypothetically if I was trying to write a bytecode runner like JVM is parsing a map file? map header? and then just running a big switch statement over bytes not the way to go
because it feels very stone age but it works
They bought out the rights from the first group of maintainers (which I only just learned then), thought they might do the same with me and I could just wash my hands of it and let Dinnerbone do the update like he said he was going to do
wait mojang owns copyright on what, bukkit?
Mojang owns Bukkit
Apparently? I don't think it was ever clarified what they bought
huh interesting
Curse bought something, Mojang bought it from them when DB, Grum, Tahg, and ES joined them
false; I own bukkit. everything is owned by me.
They at least bought the name and crap, maybe the source code too?
I also found out then that Curse had been paying at least Dinnerbone to work on Bukkit
the switch statement over bytes is the easiest and fastest option out of the several
We sure as shit never got paid to work on anything
fastest as in running speed?
that's what Python does at least
yep
python... bytecode?
What do you think .pyc files are?
Unless you fancy writing Interpreters that pass bytecode calls directly to hardware that's your easiest option
Python compiles to an internal bytecode format
welp I gotta head out
Well, not all the code apparently
very interesting talk
feel like a bit of an idiot but hey
Well, no, they couldn't buy code those 4 didn't write
cya
Well, they could, but not without talking to each developer
Yeah, I was under the impression that they just bought the name and stuff and the source code of those four
Mojang never actually did anything with Bukkit anyway
so you have no faith on Paper? 😛
makes you wonder why they even bothered
I think the original plan was for Bukkit to be the basis of an official API
Either via directly lifting some code or at least inspired by it
was for Bukkit to be the basis of an official API
LOL
have they ever bothered with an official modding API for java edition? closest thing we've got is datapacks
can they replace what we've got currently?
So it made sense to hire the main developers and get the rights to use that code
datapacks aren't mods
hence "closest thing"
datapacks will be mods eventually
get the rights to use that code
Which they never did, gj Mojang
Hell they can already do some things Bukkit can't 😛
really?
They did get the rights to the code those 4 wrote
Getting all of it would be hard/impossible and probably not worth it
All they can do is execute commands from what I remember
They could just avoid or rewrite the stuff other people wrote
datapacks can make custom biomes
now they just gotta buy Glowstone and ditch the old CB code 😂
that's not what I meant I meant they never actually made an API with the stuff they got
when Paper hard forks they gon buy Paper
lmao
I think those 4 were under the impression ProGuard was a lot more powerful than it actually is
Like, they thought the code made more sense originally and it was just the compiler and obfuscator making it a mess
So when they got in to the actual code plans changed
LMAO
yo wut
I'm curious how much they paid for Bukkit
Step 1: Merge multiplayer and single player so future mods could work with both and they don't have to maintain two codebases for all future changes
Step 2: Make the bits they want mods to work with more generic and data driven so you can add to them without having to change large chunks of the code
Thus registries and tags and such
They're still on step 2 😄
It probably would have been easier to start over with a proper game engine but considering no one else has managed to do that yet maybe not
Big studios that play in that space always make things more like Cube World where the voxels are just an aesthetic and the indies either never release, make things worse than Minecraft, make something more like their ideal version of modded Minecraft, or some combination of the above
at this point imo an official modding API isn't much of a craze as it would be in the last decade
thanks to the game being written in Java the community just made its own tools and called it a day
look at how Bedrock's modding API turned out lel
Oh, there was that Everquest game that died, I guess that was a big studio that failed to make something similar
they chose javascript of all languages
javascript 🤣
the world if fabric made a server implementation with plugin compatibility
JS or Lua of some similar simple scripting language is how modding usually works
i mean, i think it's called Fabric
just write server-side mods lmfao
Fabric also has server implementations too
You do all the heavy lifting in C++ and handle high level behavior and, well, scripting, with your scripting language
I started coding by modding with lua and i'd rather it have been java
maintaining two codebases
you missed my point
Like, your C++ still does your physics, pathfinding, etc
Chunk generation would be a tricky one, you probably need a lower level language for that to be fast enough
nah fam a tree walk language would suffice for that one
:P
ah yes
But datapacks work around that by letting you mix and match the chunk generation primitives and iirc define structures using some data files?
missing the point so hard that you actually offend yourself and sometimes the entire room is one of paper's pasttimes @rare tiger
fyi
what two codebases? just target Fabric only, then?
someone said bedrock
ow?
oh no
targeting any modded platform while trying to run a server in which unmodded clients can connect
They want a Paper API implementation on top of Fabric but also support plugins that use NMS
yeah i figured
not impossible
Since fabric mods are mixins you could actually do that without a ton of effort I think
Just have the final jar use spigot mappings, mixins will handle that for your mods
don't you just run into the same issues as a Forge+Bukkit hybrid though
well not entirely, some patches can't be 100% replicated by mixins alone
The problem is mods are going to break Paper and vice versa
like Bukkit not being aware of modded blocks
theres been like 2 attempts at spongefabric that i've seen
SpongeForge isn't even a thing right now afaik
lol i think they're both not actively being worked on
They have their 1.12 or 1.14 or whatever version that people use with mods but for 1.17 stuff it's only SpongeVanilla
Or was last time I looked in to it
i think they're working on spongeforge for 1.16 or 1.17 now
think it's working in dev
1.12.2
They rewrote their build system to be a custom thing instead of using ForgeGradle
yeah they say they can now develop on snapshots too
I think doing a Forge version was dependent on getting a new ForgeGradle that was instead based on their build system
https://youtu.be/ai-SOVmU3zg Minecart go brrr
Yeah I think they autogenerate snapshot versions
They just disable any mixins that don't build so you probably won't get a working server
I have a working concept for a modern proxy impl with an open standard not bound to a single modloader sitting here collecting dust.
Modloaders are just awful to work with
fabric way less so than forge
i understand about 5% of that
But it means they can just iteratively fix the broken ones as they go
Sometimes they might finish fast enough to get a working snapshot build but otherwise it should mean when 1.18 happens they at least don't have as much work to do
From snapshot to snapshot the changes needed are probably usually pretty straightforward
Except if some part of vanilla just got a big overhaul
hey, here's what that other guy wanted
he can be happy now
muh plugenz
yeah
i dont think i recognize a single person on that contributor list
Oh wow they do remapping on load
maybe they're all mod devs, idk
they're all mod devs yea
Well, they basically do what md5's maven plugin does but do it on first load instead of at build time
ive been in the server world for...erm. idk a long time, dont remember. but never really messed around w/ client
bukkit forum finally ded? :D i was gonna check my initial join date but guess not
Up for me
i think it's up for me too
yea came back up, idk, something hiccupped
I know rtm, but this is hardly a contribution 😄
oh wait, actually, i recognize rtm but that's it
well, idk how to log into my old bukkit acct so whatever, i believe i joined in 2012 or something, so next year will be a decade
😭
iirc you had to migrate from twitch account to whatever new platform bought the website, i think overwolf??
thonk
except they completely borked the migration so you need to contact an admin to do it for you
i don't care that much, all i wanted to do was check a profile info
pre sure it's 2012
You had to migrate from a Bukkit account to a Twitch account and the Twitch accounts are still in use afaik
Actually, maybe not for the forums, I was thinking of dbo
Hi there!
Transfer has happened for Curseforge (main site at least and this forum)
Things might have changed though!
Please take a look at your...
Oh, so Bukkit uses Overwolf, but not dbo...?
i have no idea
I've thought of putting one of my plugins in there just for the shits and giggles but gave up with this migration mess
If I go to dbo in incognito it asks for a twitch login
I use dbo, just not bukkit forums
oh
Let me reset my password, see if I can manage to get in
Also if minestom ever finishes their vanilla implementation
Not going to hold my breath
minestom is great for making your own stuff, im not sure i'd really care for them to make a vanilla impl
Not at this rate, since it's currently on hold 🙂
Great tool for mini games though ^
jfc i can't believe it's been this long
kezz almost at a decade too 
minestom's vanilla reimp is back in dev but if you're using minestom for vanilla you're an idiot
^
decade buddies!!!
ancient mothballs we are
I can't join y'all cause my dumb ass only exists on Spigot forums
If it fully replicates vanilla behavior then I don't really see the issue
:/
I would be willing to contribute honestly. Most of the trouble is on the client, the server by comparison does almost nothing
After?
wait
It did take 10 years to make the Minecraft server code how it is today but a lot of that is riddled in misteps and dormancy
Not getting a password recovery email, so I'm guessing my account is lost
i can try looking up your acc for join date, unless the profile is hidden
oh gg
lol
poggers
Guess my passwords back then were not very strong
this is a ridiculous understatement
it's a statement based entirely on ignorance
im not expending any mental energy here

very understandable haha
Didnt find my account
it's a server/client model, comparing their workload is dumb
still on password manager
they serve different purposes
but password was incorrect
there were two name purges on DBO, unlikely that you could log in into it, even if you had the required info
you can log in with the email if you know/guess the pass
we're talking about forum
Ok Gimple
why are you mad at me idriz
idk, i haven't logged into my bukkit before now since like 2013 or something, and it worked just fine
so maybe the purge just Left Me Alone (TM)
okay, then there was nothing like it
Because your name is Gimple and not Simple
Makes me sad + cry
why do you capitalize the 'g'?
i fixed it for u plz be happy
I am happy and now i love you
gud
I can't find my old reddit's password
It's a trove full of cringe shit and I want it deleted
Thankfully it was under an alias so it's not like anyone can find it but fuck
found it
Good thing it's fully archived.
Ah, so you were the one person using it
ah yes the cringe shit we all posted when we were 14
rips
Hey I'm 14 😠
well you'll know what i mean in a few years
Shut up Mittel European.
Mittel.
Ok
You know very well that your next job is going to be in Nemačka on a BAUŠTELA!
BRO!
F.
Also bro! Air Serbia played me dirty today.
Air Serbia plays everyone dirty.
They cut 20 hours of my vacation.
It's Serbia in the air. It's dirty by default.
And if I want them back, I have to wait 16 hours... in BEOGRADE!
Also my brain broke... again.
You have to wait 16 hours in beograd. Bro.
Yes.
I think it will be too late for you after 16 hours are gone.
No way to escape.
now this is epic
wow, I guess you guys are pretty scared DW lol
tfw puts effort into analysing speech
you have no idea how much I do that excessively
anxiety ftw
Do they work at backblaze or something?
S3, B2, R2 😄
hm yes letter-number stands for object storage
Azure Storage
i love how those could actually be valid shogi moves
we put our website behind azure traffic manager on sunday and now crawl our prod website and put it on an azure static site storage account and use that as a fallback in traffic manager 😄
I wasn't saying anything about quality or if you should use it, just showing not all of them are letter + number 😛
Just fire up minio and you can make your own with a real name too
B2 is still cheaper, and ironically egress is also free through cloudflare
so there should still be a place for us in the market
i do
b2 is also not your only product, right?
I remember backblaze being advertised as this company you use to backup your shit to that will send you a harddrive if yours failed
I dunno what their revenue is like but their main product as far as mindshare is a backup tool
Although the cloud storage part is on the top of their homepage so I guess they want that to change 😛
I think I'm still paying for a backblaze account I haven't used since I got my XPS (no Linux version)
Amaranth is literally the best customer 
Well, that was only May 2020 😛
I might have a Mac again in a few months, it'll get used again then
WHO THE FUCK WATCHED SAUSAGE PARTY ON MY NETFLIX ACCOUNT
Or I could use it via WINE and probably violate the EULA...
that's on netflix?

It’s ok nioma we understand
You are on denial phase
Acceptance is first step to overcome your issues @wispy blade
biggest product is backup
fastest growing product is cloud storage
bruh i don't watch movies
i only watch shows i find interesting
mostly anime (yes, burn me at the stake, i don't care, nanatsu no taizai is good)
I guess I should start using backblaze considering I work here....
most people here are like super into data and storage and harddrives and backup and I'm like...I write code sometimes
lol
my backup strategy has been to either have all of my stuff saved using cloud saves etc, using most programs without lots of modifications so they are easy to re-install, and having most of my stuff that I need saved in github
switching computers for me is as easy as installing a few things and logging in to some places and cloning some repos
are they actually selling those?
Yes
can it be used as command+C,V for mac as well?
It's programmable
1.18 will bet the test to see if paperweight was all worth it lol
presumably it should be much easier
though I suspect md_5 will change his tooling yet again which will be a pain
speaking of keyboards, i'm surprised my z and x keys haven't died yet
Jokes on you Noah, updating is not much more than copy pasting stuff left to right
ikr
is it copypasting stuff right to left then?
you won't even notice the difference
don't
why not? it's my terminal
OUR terminal.
Tfw they actually make the April fool joke into reality
What in the fuck is that font name
someone smashed their keyboard
it's DFPKanTeiRyu eXtra Bold
the same guy who comes up with monitor model names also named this font
勘亭流 
Nioma played too much taiko
I think if you put that in your nick the bot would automatically rename you
hmmmm
There is/was a bot that renames people with some hard/impossible to type characters in their name
Discord does allow non English name though it would be funny 
oh well i got my neofetch im happy
I think it’s people that purposely use certain symbols that’s annoying
are you japanese?
She’s just a weeb
just a gigantic weeb
Most patriotic w*sterner @ashen cliff
Fact.
not a gigantic weeb
Touhou fan. 🛌
top 8000 on osu taiko
Wallpaper behind terminal is a crime
Changing the wallpaper at all should be a crime.
Dark solid color anyway, black isn't always a good idea
0,85 opacity 😔
aqua white best white
I am convinced nioma’s very existence is a crime against humanity
i am convinced eternity only exists to make sarcastic remarks about me
😉
at least you're not in my personal discord

only people i give this invite to is school friends.
this is kinda where Elshout originated
with all of its 3 members
more like 20
askers ?
broccolai (didn't ask)
Ok!
Because looking up PowerVM Hypixel is exactly what I wanted to do
With this Minecraft mod installed, even the lowest render distance settings can still look good. It truly changes how your world looks, and in the future could be even better! Enjoy!
Discord: https://discord.gg/5AXaGnC
Downloa...
No, this isn't Bobby.
This is a mod that adds a Level of Detail system.
Huh, I wonder if I'm CPU bound
Watching an LTT review of a cheapish gaming laptop and it seems to have done better in Shadow of the Tomb Raider at 4K Ultra
Their gaming laptop has a mobile 3070 in it which I think is more like a desktop 3060?
Oh, it had a mobile 3080
And cheapish is still more than $2000 😛
opened chrome and my cpu usage went from 10% to 35% sustained 
neat
paper
windows told me my computer isn't compatible with windows 11 lol
5950x, 3080, asus crosshair VIII formula
probably need a BIOS update
when windows tells you that windows isn't compatible with windows
ok but does your pc case have windows?
the age old, gotta enable TPM
I wonder how microsoft will handle the millions of devices with TPM 2.0 disabled owned by people who don't even know what a BIOS is
All I can say is, gg MS, gg
even more fun for those who need a bios update to even be able to enable it
yeah lol
They'll say "your computer doesn't support Windows 11" and never even offer it to you
And Dell will say "buy our new desktop to get Windows 11"
And they'll both be happy
People who know what a TPM is and know what a BIOS is (UEFI for the past decade btw) will figure it out
oh guess now that I have TPM enabled windows is updating to 11
if it fucks up my linux partition I'm gonna sue bill gates
microsoft flight sim, 3.19GB download
needs 108MB of additional storage
talk about a massive patch
at least you didn't just download a launcher that's now going to download the entire game
... oh well
took longer than steam's refund time period to be able to fully install and actually play the game
cause it was like 150GB download
and microsoft's update code is super slow and inefficient, nothing is done in parallel, and it would do download file, decompress file, download file, decompress file, in that order, over and over again, for thousands of small files
there are way more packages in npm now 
is it normal that windows 11 start menu doesn't open
ah yes, microsoft is a multi billion dollar company
i mean the settings page is nice and I like the frosted glass look...that they took directly from macos
but I like it in macos so, checks out
do they still have that "Show more options" button in the new context menu which leads you to the old one?

windows terminal makes gefore experience lol
god I wish gefore experience would die
I really wish I had an AMD card instead
everyone here was like "stop complaining about it, it's still in development"
guess what
it did not matter
it's still there, they didn't do anything about it
and my complaints are just as right as they were
tbqh, I had issues with the start menu sometimes refusing to open on windows 10
Like, sometimes it's just kinda slow, sometimes it wants nothing to do with me
11 on my vm last I recall did seem to be worse, but, I just attributed it to the fact it's on a VM
I'll cherish windows 10 as the last windows where the taskbar is not rendered with web technology
I mean it's just broken for me lol
but I'll wait until all of the extra updates finish installing
then I'll start digging more
this says to uninstall an update that I don't have installed https://techcommunity.microsoft.com/t5/windows-insider-program/start-menu-not-opening-windows-11-dev/m-p/2597199/highlight/true#M7044
this is cool, microsoft tweeted a fix to the issue rather than like pushing a fix or something idk https://twitter.com/windowsinsider/status/1433615378362503177?s=20
anyways it doesn't work
okay found a note in the known issues here https://blogs.windows.com/windows-insider/2021/09/16/announcing-windows-11-insider-preview-build-22000-194/ that says to uninstall KB5005635 and that fixed it.
What the issue was I didn't even have the windows 11 taskbar. Was still the windows 10 taskbar, and nothing on it worked
how much data usage do your guys' servers use per month?
About tree fiddy
350 GB?
There is really no answer to your question as it heavily based on usage (?)
fair point. I have in mind a very small server with like two simultaneous and 6 max players, and some internet-connected plugins. I'd also be curious what larger server data usage looks like though. I'm just curious like what the range is, from self hosted to massive public servers
Yeah when it comes time for windows 11 on my desktop I'm just gonna do a fresh install
don't even want to bother with the side effects of upgrading directly
yeah that just sounds like the design of the codebase is very smelly
so the fix is to spray some air freshener 
PaperMC when you haven't updated for 5 minutes: "You are 168 versions behind."
if there is no way to decouple things enough (untie it, as you say) then consider what else is using C? just A and B? is anything else using B? if not, then put B inside of A and C inside of B so everything is inside of A. Otherwise, maybe C needs to be an api package I suppose. B perhaps too. But I have no idea without seeing the code, which I don't have time for
Just means the team is working hard to bring the best software possible.
Yeah, you're right.
how do i get perms for adorable kitties?
nuuu
thats the only way
can you post my picture and just tag me? 😄
you can send it in general, i guess, and someone might but im busy
okay bud, good luck on that
anything? the parse method defines it as generic for T
i don't know what that specific thing in cloud is
maybe go ask the cloud support in incendo or whatever
that parse method says T can be anything, it doesn't define anything about what it should be
so, that's my answer. go ask cloud
least complicated incendo framework
you're using cloud for the annotations?
is it posible to make my self hosted paper server run 24/7
like when my pc is off the server stil on
no, because if the PC is off what can run it?
also, self-hosting 24/7 on a PC is almost always a terrible idea - I've seen ISPs turn off service to homes running 24/7 servers, and a PC is certainly not designed to handle running a server all the time, and using your own IP will put your whole home's network down if some idiot tries to attack your server
cuz my friend wants to play on my server but when my pc off they cant
give your friend your cellphone so they can call you to turn PC on
Yes that’s how it works
You can rent a cheap server. Just ask your parents to pay for it alternatively
But otherwise you live with what you get
If the machine running the server is no longer running... there is physically 0 possible way whatsoever that the server could still be up
If the server is down the server is down
Well, how are you supposed to pick up if they have your phone?

Just curious how old are you? @void void
really adding to the image of the average 2b player that I have in my head, ty for this experience
Ah so you just hate yourself
You get all of the chaos and none of the history
Boy do I wanna wait an hour or more to sit in a queue to elytra millions of blocks and get my base discovered without my knowledge because of the nth exploit found in whatever ancient version it uses
ye i like it but idk how to help that lad
idk those kinds of servers aren't for me
also please stop pinging me every reply
I'm already in the chat
I wouldn't say it's balls
You spell too much fucking time wrong
It’s biggest waste of time and the average age in that server are edgy kids
After looking at your about me, looks like you'll fit right in
Ok can we change topic. This is pretty dumb
Oh boy I didn't notice that one
🥲
wonderful
if there was one
¯_(ツ)_/¯
!ban 773408975169126402 homophobia and trolling
:raised_hands: Banned Larpinqq#4727 (homophobia and trolling) [1 total infraction] -- Larry#6086.
I hope you grow up one day and cringe at your old actions and stops being an annoyance to your friends and family
that was wayyyy too obvious
smells fishy
wasn't that someone else
I have nothing better to do rn than waste time arguing with strangers, feed the troll I shall
idk
idunno man just looked at the most recent message and banned kek
It’s different person. I think lol
lemme just hide that
Well I hope lol

"will I get banned for that" famous last words
Wow you are now popular with the kid
@swift root BEST paper mod

lmao that troll
New discord update is lit 😮
You got dangerously close to heresy there, Mini
^^
yeah! im a heretic and im on fire! 
simple you can say whatever you'd like, I'll always know your heart is pure
love u 2 
<@&748618676189528155> self promo (but for a good cause? im conflicted lmao)
Is fine, is like our equivalent to betterplace.org
yea ik its just his specific fundraiser on there, not a general one
but it's w/e was just letting u know, am goin to bed
night simple ❤️
night simple 
nighty

I'll just drop this link instead and delete that: https://www.stjude.org/donate/donate-to-st-jude.html
It seems tiltify gives the creator of fundraisers the money first.
Learn more about how you can support St. Jude at https://stjude.org
thats what she said
growing up is cringe lmao
literally can't
well, apparently you can
code stats 📈
i don't think that's the case with tiltify
as you choose one charity with tiltify
we've used tiltify at noxcrew for MCC and i can't imagine it'll send $600k for us to handle, that sounds like a nightmare
https://tiltify.com/explore/causes you have to select from a list of charities aswell which makes sense
aha interesting
mfw they list the EFF but not the FSF
I guess organizations have to list themselves or something? FSF probably doesn't like the proprietary-ness of the site lol
they have to list themselves yes
@twin lagoon i ended up using an iso i got from one drive and used that with VMware instead. I couldn't get vbox to run
Kinda cringe but at least it works. Mostly
what new paint
win 11
*Our room
@potent fossil just finished watching doctor who 50th anniversary special and my mind is blown lmao
3 doctors all at once
epic
Wtf spoilers bro
Banned for spoilers
day #114 of trying to get abs: no exercise cos exams got over and im really distracted
:fuu: i think i food poisoned myself
sad
True
No
already did
this morning
on the bus
someone opened the window and let the rain in
Refreshing
no
@quasi valley is bad
wtf
you r not my mom
thankfully not
mommy ?
Ew we have a tiktok viewer here
Ur just as gross for recognizing it
I only know that because poki referenced it

Ew city is here
this whole thing is tired and lame, can you find something new & exciting to do?
like idk
shit is just getting stale
Probably Scroll Lock
menu key
scroll lock and pause/break
Insert key probably on English keyboard
wtf insert hella handy
i guarantee you there is not a single person who has ever used the menu key

For most people it's probably something like F24, since that isn't on most keyboards
The entire numpad for me is also something I rarely use. Not the least used, but still I barely touch that.
the only time i use numpad is in GTA V
i used it for modded mc and obs keybinds
You guys have all these fancy applications, but my pc can't run any of those 🙂

your pc runs intellij, right?
Yes, it does
i run intellij on my fridge usually
if it runs IJ it runs OBS

big oof
Me working with legacy decides daily.
i love that canceling an action in explorer takes as long as just letting it do its thing
Flashbacks to when that started to happen to me a lot one day, turns out an update broke the USB power saving option in the power plans and I had to disable it entirely
At least it's not SMB, that thing crashes forever and never times out. 
its not doing much better atm
My fucking keyboard has an Fn key instead of a second windows key and so I end up hitting that context menu key a lot thinking there must be two windows keys so it has to be that one
Then I remember
lmao
Definitely not, I can't run OBS, but can run IJ fine.
bruh what the fuk, it takes like 30 seconds to open a folder on my phone storage
I think for OBS it's more because of incompatibility rather than actually not meeting the hardware requirements for me, though
just download an old version 
MTP is kind of shit
I miss the days when the phone would just unmount a partition and expose it to the computer as removable storage it could mount and use however
doesnt help that my cable is sketchy as fuck, doesnt work half the time
i think thats what my phone does
With the encryption and other security things on a phone these days that wouldn't really work
Not to mention people want to be able to use their phone while plugged in to a computer
If I needed OBS, I guess I could give that a shot
i'm just trying to copy 30gb worth of memes lol
'memes'
Lots of small files? See you tomorrow
around 7mins lol
my homework folder
yep yep
If I tried stashing porn in a "homework" folder my parents would have looked in there to make sure I was doing my homework 😛
Well, probably not since I had my own computer when I was like 13 and they didn't ever look at what I was doing on there since whenever I tried to explain they couldn't understand it 😛
imagine organizing your files
my (actual) homework is scattered across my pc and it's a pain to find when I need it
Everything.
@twin lagoon 


@warm anchor 😔
stupid people 
dont understand that our codebase has to be modernized

they dont like change

Be the change you wanna be 😉
What could go wrong? At worse you would just be homeless on LA strip.
the thing is we are equals on the project, my opinion shouldnt necessarily override theirs
if im homeless on skit row in LA, could i crash on your couch for a bit 
shouldnt necessarily
In other words, you can override theirs 😉
No risk no reward 😉
Ok!
thanks for your helpful contribution to this conversation we are trying to have
Is papermc in anyway multithreaded?
Parts of the codebase are, yes.
Yes
man why are friends always so annoying to make plans with
you ask them something and they're like "yeah whatever we'll see" 3hours before the event
part of the code base what is using multi thread what is not
world, player / entity
or ?
yeah... we're supposed to be in ghent at like 8pm from what i've been told and no one knows jack shit of how people are getting there xD
its 6:20pm now
No

Chunk loading, chat, probably others I'm forgetting
ofc, you can't not do networking off the main thread
with non blocking io you could, it wouldn't be the worst
but with the amount of processing you're doing on packets it makes no sense to not thread it
exactly
huh, server bundling changes
lonely r
r
what happened here
threatening
Where is this screenshot from?
I would guess they fully embrace JMS for java 17?
Is that a cloudflare dashboard or windows defender? 😛
I love cloudflare
It's so fucking good, and free
Speaking of
Does anyone here have users who cannot connect using a forwarded port using cloudflare? Mostly if they use a cracked client called tlauncher
They can only connect using ip:realport
You can buy them a legit copy of Minecraft to fix this issue
We are talking about cheap bastards
They would sell the account and keep using the cracked client
They can play in other server then 🤷♂️
I believe in letting poor people play too :/
Daily/weekly?
This was all in a single day
~2 weeks ago
Wow
But wait
Are they stupid?
If what's behind cloudflare is not a website
They can easily find out the real ip and attack directly
3mil requests seem to have gone through
i now have a 500mb log file
They should upgrade to Java 17, Java 16 is not good as it is not an LTS release
LTS is irrelevant
I know
They might move to 17 and stay there or they might just upgrade Java with every release
Upgrading Java version every year is not too good for some people
They should stay in LTS version :/
We're already at the end of updates for Java 16 btw
I mean
Yeah
if you can't maintain your shit, don't run a server, ez
So they have to move to 17 at least
As I like to say, “if you can’t maintain your shit, you’re shit”
Although I suppose they're probably just using Microsoft's JVM builds for their bundled version and can get them to provide security updates until they move
Moood
Goal selector optimizations
I can't believe we had all of those prefixed with 'Pathfinder' btw, awful naming
That said, it is nice to be able to use the new features gained by staging up to date
Probably should have fixed that when we renamed NetServerHandler and the other crap
Don't worry
Doesn't matter anymore since you use Mojang names but yeah
We shall forever hold your naming of stuff as the forefront of any decisions we make in regards to your contribution to the community
To be fair I think those were named in the last update Dinnerbone and/or Grum did
They were added in 1.2, 1.3 was our first update I think
We joined in time for 1.2.5 but I think they did that one too before heading out
it's the one thing which annoyed me the most with stuff like CBs and spigots mappings is that they were basically sealed behind closed doors
I mean, I wasn't really active in the community then so it's mostly the retrospect of, "woulda been nice to have them"
spigot at least publishes theres but that was more of a forced hand rather than a "We're gonna be nice"
not like he lets anybody touch them anyways
But, am not sure there has ever been a super amazing community entrusted set of mappings
iirc we didn't publish ours at first because hmod forks were using them
Then it was just inertia and then spigot
MCP and now fabric is probs the best we've ever had, but, they're just never gonna be something that people super care about until they do
If MCP had updated their mapping faster we probably would have just switched
But they were also holding them back until certain mods using them could be updated
Yea, That's the thing with MCP is that it's still heavily centralised
yup
I mean, it was still primarily an effort of like 1 or 2 people on it, community based stuff only really came later on, which I mean, I get it as it's not like we where working off a stable base and you don't want 200 people all running over the same files at the same time, etc; am just glad we have mojmap now
I think a few of those releases were mostly just me with feildmaster doing a couple tricky classes he knew best and Wolv doing new API, testing, and fixes
But the last one or two were a bunch of people
i really need to stay out of youtube's comments. absolutely filled to the brim with ivan level brains
i commented on a video of linus torvalds giving a talk, and he mentioned a fake scenario of a library where only 2 ppl use it, one's the maintainer and one's crazy. i commented how that was funny, someone replied asking what library it is, i replied back saying it's just a fake scenario. this was like 6-7 months ago
message.txt by @golden gust: https://paste.gg/9a5865cd012a421aa308029d7d6ae1ac
to this day i still get people replying to it telling me im not a real programmer because this is a real thing that happens, it's not fake
I, er, forgot the newlines, so, erm... enjoy that
very nice
who's ivan
glad this was high on their priority list https://bugs.mojang.com/browse/MC-116359...
lul
MrIvanPlays?
yup
I mean, dinnerbone is back
dinnerbone left?
he's working heavily on the smaller "nitpick" style issues as he gets back into the swing
So, yea, all of the none important but somewhat highly annoying stuff is getting attention
he took a year MH break
ahh good for him
nitpick issues like this https://bugs.mojang.com/browse/MC-122477? 👀
I mean, if it's not too mentally stenous or time consuming, 🤷♂️
he had a twitter post where he was kinda discussing it and I think people where pitching stuff to look at
why are you even complaining lol
me: needs to do physics badly
also me: no. ill look at adhd memes instead
who cares what he wants to fix
brocco is cute

🔫
that might be illegal in some places
don't care
Yea, but, only get in trouble if they catch you
classic adhd
specialist apparently sent no info to my doctor so he has to contact them now
I just want my free meth 😵💫
lol
did they tell you what type of adhd it was
Yeah it's primarily inattentive
oof
was just reading that you have the same
combined
o
i mean, yeah. mostly inattentive ig
ur not a valid person anyways
while you're at it, update gson
#gottem










