#general
3141 messages · Page 1124 of 4
Apparently running Minecraft on Graal instead of HotSpot works wonders
Would be nice if they were slightly better at communicating the changes though
interesting
well I'll just wait what they'll do after fully integrating it into the overwolf ecosystem ¯_(ツ)_/¯
Yeah same
twitch deleted stuff tho
^ was a quote
"I mean, they gave them explicit rights to distribute their stuff indefinitely... not sure what people expect from cooperations? for them to not use any rights you grant them to their ultimate advantage?"
the dum bot really needs to understand quotes
nou
not really too sure about twitch/amazon deleting anything seeing as they still have all clips/vods that people delete 👀
🙄
Purchasing for Minecraft Java Edition is restored. You will know need to create a Microsoft account for new purchases of this version - JP
gg
Yes, we can now add Microsoft Account and launch the Dungeons game in the same Launcher now.
they already started the MS account shit?
thought that was Q1
or is this new accounts only
new acc only
new accounts
gotcha
From today, new accounts are for MSA. Migrating it will be in earler 2021
do the new accounts get the cape tho?
?
Idk
no
But maybe it'll limited only who will migrate their accounts, to thank players.
fuck da cape 😠
I'm just worried about the authentication system they're using from now on
on Bedrock you can already get shadow muted for no reason at all
those are two different things
and you can get banned on Bedrock too from not just servers but the entire game itself
they're not going to moderate java edition like they do bedrock
God I hope so
mojang can and do already ban people on java
^
Yet.
it's called deleting your account
Hol up what
how is that surprising
of course they do lmao
a fucking microsoft account doesn't change the fact they can still control your damn account
Plus they can ban servers too since 1.9 release
I haven't heard of accounts being deleted before though so that's genuinely new to me
They can add your server IP to blacklist
I'm surprised they didn't click unique on that username column.
1.7.x
Migration to Netty was done in 1.7
i thought it was originally 1.8 and maybe backported to 1.7?
This is why I only play 1.6.4 /s
It was a change done in authlib (or whatever)
It is just updating the netty custom lib.
Well yeah but iirc Bedrock edition has moderators that aren't part of Mojang that can ban you from the game itself unless I remembered wrongly
well that's good I guess
right, didn't think they did it for 1.7 tho
and sherman stop being conspiracy carlos
I'll be happy if they just used the accounts but not the entire system, that's my only worry
what system

So the only way to be safe of blacklisting is only allowing <=1.6.4. 😄
My concerns are minor buddy you should go take a look at the comments on the official Mojang video announcing the switch 😛
you can look at the fucking netcode yourself
do you see any chat packets being sent to mojang
ah yes, children commenting on a video they dont understand at all
they hold the best opinions
in fact the only data sent between you and mojang is auth, that's it
...that's not what I meant xd
Imagine reading youtube comments
ok yes I get the point take your own advice and calm down
Idk I get bored on Yt sometimes
huh
I can literally feel my IQ going lower reading rn
calm down at what
that's actually just the hole in the back of your skull leaking brain matter
loll
this is the 100th time people have had to correct people like you who take youtube comments at face value because you're scared your 12 player anarchy server may get shutdown
You mean the fake anarchy server that admin regularly coming out and remove lag machine? 
Do I look like I'm acting like Java Edition is getting shut down next year
I was just a little worried is all
tf is mcpc
stop being worried
Yes I already told ya I got the message
Minecraft PC idk i prefer calling it that
there's 3 pc versions of mc so
Don't forget to count Classic.
🤨
is bedrock just called
web too
minecraft now?
yes sweepy
meh to me Java will always be the true PC xd
ew
Java is the odd one out nowadays
Don't remind me ;-;
to be fair both versions do have features the other doesn't anyway
Wouldnt bedrock in theory has better scale for larger server than JAVA?
nop
They were working on making it scale better
apparently it sucks ass when you get to large playercounts
Why would it?
Just write a custom server in Rust. 
probably because java edition servers have had over a decade of optimization
since it's just pure logic and no rendering
and bedrock is just something they shit out one day
that too ^
optimization
gets worse over time
LOL
Bruh Bedrock servers are very odd. While I'm breaking a block there's no sound and animation on servers and I actually don't know why.
but the only difference in theory is that Bedrock servers (The official one at least) runs natively, directly on the machine
while Java edition runs on the JVM
that's all I can think of for why Bedrock servers might have an edge tbh
the rest is just optimization and how well Mojang writes it
i mean there's the JNI plus the overhead isn't as bad as you think
The JVM + JIT are very competent and get very close in performance to native.
Do you know why the servers have that problem which I wrote above? @marble lark
my brain hurts
JNI for a server?
I can't find it xd
I mean, in Bedrock servers when I break a block there is no sound and animation.
if mojang put the resources on it, they could definitely get a decently performing server
also majority of the Bedrock servers are in PHP
not anymore
yeah thinking is bad for your brain. might've strained a braincell
iirc only one Java and C# Bedrock server respectively exist
bedrock got rewrote from the top almost
cloudburst, pocketmine, mojang's version
maybe lifeboat still but otherwise a lot just use bukkit translations layers
probably others that i missed
So, they don't have like, dozens of years of notch code
and C++ of course counting the official Mojang one
using mc java versions for bedrock is also a viable option
few servers do that e.g. mineplex & cubecraft
Good god you don't want to see the monstrosity that is Lifeboat's server
They need to create official Plugin API on Bedrock, written in Java.
wat
hive too i think
hive has their own java server software iirc
Lifeboat is still a thing?
i don't think it's based off of minecraft java but there's not much known
lifeboat is still a thing yes
mojang and MS don't really have a reason to make a public API
Steadfast is horrendous in every way
Does Bedrock is multithreaded while Java not?
Nor do they have a reasonable release cycle for a nice API to be done anyways, as stuff like improvements and stuff would take months to drop
It's Bedrock edition 0.14 server but protocol bumped
depends on the implementation
Not really
Mostly no
They have the same threading aspects as java edition afaik
Sadly.
How would one multithread Minecraft anyway
by rewriting parts of it
that's complex
problem is that a lot of users want backwards compataibility with plugins n shit
and multi-threading some parts of it would break plogens
I've been curious to how stuff can be multithreaded in say Unity or something
biggest thing is behavioral changes
- it's just shit work tbh
Each world a thread for ticking.
determinate behavior and threading is ass
that said it's not impossible, there's a commercial paper fork with multi-threaded entities
making worlds individually thread is trivial so long as there is no shared state and having to deal with stuff like cross-teleporting, etc
I think making the game multithreading is an exciting thing, I can rewrote my plugins even I spent 6 months because this is an update which we are waiting such a long time lol
My implementation of my own game some time ago was 1 Thread for the main loop, 1 for physics, one for rendering and the last one was for game logic
there's plenty of things to do that could improve performance without multi-threading though
look at leaf's starlight engine for example
the issue is making the API safe and the 10 years almost of "we don't break older plugins"
but apparently according to stackoverflow even that wasn't enough
that sounds like microsoft flight simulator and it's ass
some people feel like each entity should be it's own thread
like is that even possible
That's moronic
It's possible if you completely forget about computational resources and behavior
fibers
Hold up how is it slow if it's multithreaded moderately xd
There are some phases of the logic which would be trivial to parallelize
Friends of mine had the idea of each entity by type on its own node.
"moderately"
it's still very cpu bound
odd I thought 4 cores were enough

I mean, multiple threads are needed generally anyways, the issue is tying it all back into another
a thread for rendering has been the defacto standard for games for years
The thing is that you've still gotta get the data into that thread
Async GPU Entities when?
stuff like making entities run on another thread is dumb in vanilla as that happens in a specific phase, so there is literally 0 gains there
I want my threads to run on another thread
All I hear are excuses. 
I actually can't understand why Minecraft's FPS is so bad. Is it because it is not multithreaded?
can't comment since I don't really know the program flow of entity AI
parallel ticking is where it's at in terms of actually improving performance
MCs FPS is more on the rendering engine
I believe it's because the render engine is written poorly
You can't have more than one thread writing to the GPU, so multiple threads for rendering specifically is pointless
fps is an ez clap with starlight, sodium and lithium
gta doesn't even have raytracing
loll
Minecraft's render engine is too heavily based on the CPU iirc
Not to mention, the engine is old af and still using dated APIs
I don't know why he told me that lol
for most games you'll see them chewing the GPU
Got to support that legacy.
newer versions of opengl offer better performance, etc; and we're still on a 9 year old release or something iirc
for Minecraft you'll realise the CPU is pretty idle (Least in my case)
pog ?
Didn't MC use LWJGL 3.2.2 or somethin
something
@marble lark can you check PM?
Which is a wrapper for opengl

is bedrock using the same opengl?
Bedrock has a whole other render stack
bedrock uses directx aswell
ah
Pretty sure they use DirectX where possible
directx 12 even
Vulkan when.
Wouldn't be surprised to find vulcan there
ray tracing for Minecraft on Java would open up some really cool non-Euclidean possibilities
Here's a demo of a rendering engine I've been working on that allows for non-euclidean worlds.
Source Code and Executable:
https://github.com/HackerPoet/NonEuclidean
Music:
"Automatic Loving" - Dee Yan-Key
https://www.youtube.com/channel/UCbZ2uFzKyCMqAB9vTQ5C24w
https://open.spotify.com/artist/5wr9kU9ocI20HtO6TG4xJ0?si=qLCHQgcvR7uz4tFxx9nlDQ
I checked Render Dragon Engine (which hopegully it'll be fully released this month on windows 10 as a holiday update) and I can't get more FPS. Anyone tested it?
normal geometry is euclidean
here, there’s a decade old example of a “non-euclidean” game I can get
antichamber?
the one krusic linked is cool but there’s one that I found a lot more cool
there's no normal geometry 
antichamber is great but wasn’t really that non-euclidean, more teleporting tricks
I like that one, as they explain it pretty well.
well the one we are used to
https://youtu.be/0pmSPlYHxoY here’s the one
Do not use this tool, please see No! Euclid!: https://www.youtube.com/watch?v=tl40xidKF-4
I wrote a GPU-based minecraft raytracer a while back, and I decided to do something with it that cannot be done using traditional rendering (at least to my knowledge). The minecraft raytracer treats the entire world as a large uniform grid with a jumpma...
just about a decade old but they still managed some super cool things
truly noneuclidean because the space itself got bent and warped, and the raytracing allowed the visuals to truly showcase what was happening
oh oh and this is the actual super cool one that I really meant to send
I've been working on my non-euclidean GPU-based ray tracer, and made a lot of progress. I've been adding a multitidue of features and it's now available on github. I've only been compiling it for Linux, but it might work in Windows, though I can't really test that.
ooh it's that really trippy effect thing
Watch out Pewdiepie, I'm coming for your tunnbrödsrulle. Pigmentally challenged gang rise up.
Second Channel Here: ►https://www.youtube.com/channel/UCfR9TgEotsz7Uj7QQJ67w8ABig Merch:►https://www.casuallyexplained.com/Other stuff:►https://www.facebook.com/CasuallyExplained/ ►https://twitter.com/CasuallyE►https://www.instagram.com/casually_explain...
African food: long pause
It's warmer in september
hi all - brand new MC admin... have 8 node cluster of r210ii servers using ProxMox on each. I installed MineOS and get vanilla going but having issues finding info on installing and modding with MC Spigot or Paper... MineOS has something called PaperSpigot as a DL option for jars/packs - but I noticed that MCPaper stopped using that name 2 years ago according to the post.. is this mean it is out dated? I see paperspigot-1072 mc version 1.11.2 which seems quite old...
also yes that’s because Germany has a collective lack of braincells Michael, they all pooled their intelligence and gave it to their two people, Mini and Kenny
mods don't run on paper
mineos? lmao
hey wait you can’t send a long message right before I send my joke, then the context will be missed :(
wouldn't use mineos either
well just about everything you're doing is outdated
@compact schooner anything that has paperspigot instead of Paper is outdated
that is named***
the mineos is a nice dashboard
yes but you're better off using a fresh install of Debian and Pterodactyl
not sure what mineos is tho
both are free
hi
this is MCPaper 2.0 
Well, many things use the old paper name instead of updating it, but, 1.11.2 is as old as 1.11.2 is, we're on 1.16.4 now
I tried pterodactyl but it would not work for me on the new version I tried to install a few weeks ago
then you didn't install it properly
lol duh
spent 3 hours on it then went to bed at 3 am
should try again I think
Octoberfest is almost 3 weeks ^^
yeah my vanilla is 1.16.4 but not sure how to setup paper
they all pooled their intelligence and gave it to their two people, Mini and Kenny
ok but we all know it went mostly to mini
because @quasi valley is dum
clearly didn't have much to go around
and mini is just drunk 24/7 so it's natural
mini sounds fun
@twin lagoon 🐌
Well, yea, but, his head is just full of blood these days
kneny 
makes him smarter
running vanilla is pretty much the same as running paper
Kenny is from up north, I bet he ever even was to Octoberfest before
kenny has moved pass the need for blood in other areas of his body
maybe that explains the australian accent
beer and constant pool of blood in the head
tips or how to anywhere?
Just replace the jar basically gozippy
ok
@waxen panther dance! https://www.youtube.com/watch?v=dVfjk50mgLE
Video unavailable
This video is not available.
I can sing it for you michael!
heh
Dead Or Alive - You Spin Me Round (Like A Record) (Official Video)
Listen on Spotify - http://smarturl.it/DeadOrAlive_Spotify
Listen on Apple Music - http://smarturl.it/DeadOrAlive_AppleMus
Amazon - http://smarturl.it/DeadOrAlive_Amazon
Deezer - https://www.deezer.com/track/864036?utm_source=deezer&utm_content=track-864036&utm_term=11914855_1581...
dance!
will geyser work ok with waterfall/bungee paperMC?
yes
brocc 

I'm taking a test rn from college and holy shit did they set the questions to be annoying af
int num1=4, num2=8;
if (num1 < num2) if (num2 > 5) if(num1 > num2) cout << "Within range!";
else cout << "Outside range!";
some basic shit
The answer is 3.
lol
she just wanted some cake
didn't even eat any
put some icing on it and give to mother in law - no one will know
or your roomie
or take to the office and give to boss
Send help
#include <iostream>
#include <cmath>
using namespace std;
int main(){int x=6,y=2;cout << pow(x,y) << endl;return 0;}
wow
Cats don't like hash browns ^^
who even set this f*&@ing test good lord
weirdo cats I suppose... my dogs play in it and roll in it and swim and do doggie things but never my cats
do you have any evidence for this claim?
fake news
I mean, I can imagine it being total ass to try to eat hash browns as a cat
Like, with the texture and fact it just tends to fall apart at the innards
Would y'all fire someone if they did this
int main(){
int i=2, num=0;
while(i<10){num+=i*2;i+=2;}
cout << num;
return 0;
}
yes. indent your code.
I would fire u
good help me fire whoever set my test
also put a space after the parameter things
I'm going to fail at this rate lmao
you’re supposed to learn how to mentally parse and understand code that is formatted improperly
fix the formatting in your head, run through the code, there you go
a lot of being a software developer (I think) is dealing with barely readable legacy code.
Mineacadamey isn't shaped up to what it seems Sherman
Surprisingly yes 😂 😂 😂
it's not asking about fixes there's like 1 million of there where you have to find the result and I'm slowly dying inside
They also leave room if you smoke
One of the cats of my best friend even closes the door to the bedroom behind him 🤣
But he does that for Shisha/hookah too
lol that’s amazing. do you have any cats, mini?
No small flat
Do your test
But whenever I wanna see cats I just go over to her, her mom breeds bengals
aye
meow
that is my problem - unreadable code from indian dev and korean dev teams
wdym? Indian devs are good
working on CB based code is basically that but in hardcore mode
some younger ones are just lazy in their formatting and style so its just ugly code from my experience
Auto format.
Not using checkstyle and sonarlint/qube
Rip
That is Arebico
Well, was
Yea, it was already gonna get torn down
not really a surprised that it flipped off, it's been going for time
other month a cable broke, think something else went too and basically it was determined to be too costy/dangerous to repair it or something
what is it?
The Arecibo Observatory is an observatory in Arecibo, Puerto Rico, also known as the National Astronomy and Ionosphere Center (NAIC). It remains owned by the US National Science Foundation (NSF).
The main instrument of the observatory was the Arecibo Telescope, a 305 m (1,000 ft) spherical reflector dish built into a natural sinkhole, a cable-m...
Why do CPU with more cores have less GHz speed?
neat
_Chivitos100_: heat needs to get away somehow
maximum speed
ignore physics, gotta go fast
robo why has intel not hired you
just teleport heat away 
because you didn't get me a contact duh
gotta be in the in-crowd to get anywhere
skills are only of secondary importance
little known fact: inside of each and every amd cpu is a repeat commandblock teleporting the heat away. the reason that older amd cpus weren’t as heat efficient was because they didn’t have repeat commandblocks at that time, so they had to have one hooked up to a redstone clock, which counterintuitively generated heat
lol ?
[16:39:30 INFO]: An update for Party-and-Friends-Free &4is available. The newest version is 1.0.81.
[16:39:30 INFO]: Enabled plugin PartyAndFriends version 1.0.82 by Simonsator
Real reason: power consumption and money.

arecibo was such a cool and iconic piece of tech
author didn’t publish build to spigot yet or whatever they’re checking for latest version
ah ok
they just have a dumb update checker which doesn't take into account that the "latest" might be older than the current lol
(that’s a lie, it’s actually because inside of every single jar lives a little elf who tells the plug-in what the latest version is. seems like the news of the new version hasn’t reached your elf yet.)
all I gotta say is if ur annoyin enuf 2 stick an update checker that's default on, u better b able to auto-update 2
auto updating is way more invasive lol
uh no robo, thats a really dumb statement
auto update is bad, and should never be done, but informative abilities that let server owners know about updates w/o them manually checking can be useful and encourage updating
I just typed out twice that and didn’t manage to say as much as you did 😔
tbh i just wish there was some kind of standard
each plugin will tell you in a different way
and most not at all, so you still have to go through all the effort
ofc I'm slightly kidding, but most update checkers, at least half are done on main thread
and I don't really need the spam when I'm building from repo most of the time anyways
or when they all inevitably fail...
this-is-fine.png
is 100% all cores or 1 core in windows?
does someone know any plugin to ratelimit mob farms? (iron farm, ghast farm, pigman farm)
fairly sure it's all cores in task manager
yeah it never goes above 100
Make sure to run the update check on the main thread, set the timeout to 10s, infinite retries and shut your website down.
crashback: this plugin should be able to do that if configured properly https://github.com/Minebench/MobLimit
i also want to limit the mob spawn rate
there are general settings in the bukkit.yml, per mob settings don't exist and aren't really ideal to be done via plugins
a plugin who removes a mob every 2 maybe
well people around here generally care about server performance ;)
would this make the server lag this much?
wait
qemu saves the virtual machine's state?
i can just go back to exactly where i left off
snapshots
virtual box used to take like 5 years on windows to save a machine's state
sounds like a slow pc
i mean, it's instant with gnome boxes
starting to think it unironically might be the year of the linux desktop
Not having native performance.
yeah shits super cool
what are AMD cpus like for virtualization? any better than intel?
About the same really.
First gen had some issues, but they fixed their stuff with microcode updates.
cool, cool
krusic where do you get all your computer knowledge from
you seem to be very knowledgeable with this stuff
Life.
Live
Laugh
Love
I got my very limited knowledge from a thicc book lol
the only tech book i have is a kubernetes one
Mostly due to stuff always going wrong.
lol fair
Thanks X99.
what isn't going wrong nowadays, it's 2020
considering how fast PC hardware moves
some shit is great to learn through a book
depends on what field
some stuff never changes
70 INR = approx 1 usd
fast
It's been very stale for like 6 years now.
ermmm
taking apart a pc from 10 years ago vs now is a very similar experience
more cuts on your hands from sharp metal
a lot has changed since haswell
I learnt a lot of things through books lol
which is listed on the back of the book
I even read this thicc networking one
😋
Like in the consumer space, nothing really changed, Intel still not giving people above 4G decoding, same for AyyMD.
SR-IOV still dead for us, ethernet still stuck at 1Gbps.
yes, whatever he said.
10Gbps is could cheap now, but companies are trying to make more money by making new equipment.
The only reason 2.5G and 5G exist are as excuses for delaying 10Gbps.
But old wire installation,
But cables from 50 years ago,
But our wet string,
But out broken driver from Win 95.
Faster.
Skills man, skills.
Thats what she said
I'd be fine with 100mbps constantly over the day.
nmf 

Same, but for local networks, 10G would be nice.
Michele 👀
Michelle
And till most people are still running 100M equipment at home, ISPs won't upgrade their backend stuff.
We all know that 1 Cisco switch from 2003 holding up the whole country.
xD true
Wouldn't even benefit me if I get anything that is capable to handle more than 100M, just a waste of money at this point.
Would just get ridiculous expensive for a single household.
At this point 1G and 100M cost the same, since 100M is discontinued.
you're a bad joke
gee thanks bro

As it should be.
omg
you know you're on debian if you don't even hve Java 15
cat /etc/debian_version
sid
I like that apt now downloads multiple things at once.
So that super slow Jenkins update doesn't stall all other downloads.
It's been in sid for some time now.
Updated The Ultimate "My server version isn't Paper 1.16.4, what should I do?" Document in case anyone is interested, I am a lot more friendlier and descriptive https://docs.google.com/document/d/1VFdsJKZFKcmLxcQLs9R5G3fY9d7v6YgDtG0J2HxVoX0/edit?usp=sharing
Good job 👍
https://i.imgur.com/rNKHdbD.png
I tried
xd
from a bygone era
Does anyone knows where i can get some help with timings?
Thanks
flex
Been thinking about starting a smp lately so i decided to join here
Yeah lol
You wanna see?
How is it pretty good so far if you haven't even unboxed it yet? O.o
From the reviews
greasemonkey
violent
fat
How can you get more than unlimited?
mods ples
just not gonna say anything
fair
that's just great ngl
Can’t believe you didn’t see it
?warn @lone sparrow Please don't post... such pictures
happygolucky22#2121 has been warned. || Please don't post... such pictures
stef you hate us
dm
A very excited person standing next to a Xbox box. 
You've a Xbox box but there is not Xbox in the box?
Some people just cant contain their excitement
They will win over ps5 again if they bring back the actual X-box looking xbox

@limpid comet
good, glad to see people can read
I can’t read, sorry what?
thats rare around these parts 
btw we're reaching peak levels of comfy
that looks HOT
picom & discord works really well if you have a high opacity
imagine having a gpu or a good cpu 😔
I have an i5-3210m :)
oh
igpu:)
mhm yes
i would've liked something with a little more sauce but eh what can you do
its not like i game all that much
hiiii
all you play is cs
hi oskar
s
oh
cs and minecraft but even then i haven't really touched them all that much recently
been 2 busy
with startmcdotsh
you could run cs on a brick
are you calling my computer not a brick?
i am big man
yes
yeah source engine is incredibly light on resoures

:peepoheart:
interested to see if a source 2 cs update will change that even more
my nitro expired 😔
csgo looks pog wtf
Sadge
i would choose csgo's style over any other shooter
source 2 is pog
apple adds peepo emojis wen??
i dont really like the hyper realistic aesthetic that all games have nowadays
csgo keeps it simple
same
me likey
although ray tracing is sexy
eh i never got it
maybe because i haven't really seen it in action all that much
reflections are cool i guess but it's not something i'm actively caring about
i do prefer older games like half life over new stuff
yeah
i mean, half life alyx is one of the most detailed games ever, really
you can't really even compare it to 2d games
somehow runs on my GTX 1060
no idea how
i have to imagine source 2 would boost csgo's performance even more, the room-based optimization methods are really showing their age as of late
re: dangerzone
sourse 2 the best
oh, so MS accounts are here now 👀
are they?
multimc have support yet?
Not yet
alright
mfw parental controls https://help.minecraft.net/hc/en-us/articles/360052763631?ref=launcher
finally we can block phoenix from chat
;_;
it's not bad
it’s not bad
(if you have proper memory and obviously can cool it)
no, I mean the quality and speed of the used ram modules
oh
are you telling me I need tricked out RGB wham for better tps
yes, you also need to make sure to use the correct color: https://is.paper.sexy/fG6IjaBE.png
I had red LEDs in my case once, was too dark to see anything kind of underwhelming, it was only from the system fans tho
white LEDs are probably in fashion right now
trying to use thunderbolt peripherals on a windows laptop is an exercise in frustration
my macbooks has fooled me into assuming things "just work" with thunderbolt, but that's just not true on windows
\s/with thunderbolt//
pink/rainbow is the best
true lol
if you look close enough, my pfp is pink
whats the fastest 1.16.4 startup time
?
just run an mc server on one of these:
https://twitter.com/markrussinovich/status/1333125443252228096
what cpu with that time
I might turn on parental controls for myself and disable chat
why?
Half the time I just wanna play the game and not see people saying random bullshit in gam
if u know u know 
not as impressive as running doom in the task manager
umm you know that was fake?
ocelotpotpie: you know there is a setting ingame for that right?
@visual egret what makes you think it was fake
that is not how task manager looks like*
right click the graph
yes it does
i mean look at the font
change the graph to logical processors
whats wrong with the font lol
the font looks like a high resolution monitor to fit everything on it
If someone was gonna fake it they'd take a screenshot of the task manager and then edit it. Not make a new one from scratch anyway.
hmm'
wait on the video it says Logical Processors while on here it says % Utilisation over 60 seconds
windows 8 / windows server 2016
oh
which seems to have sliiiiiiiiiiightly different font antialiasing / rendering
it's probably that + 4k monitor
iirc ClearType is also somewhat broken in Windows 10 so that might contribute
Nerds
Wow rude
Ur especially one
There's a bunch of tuning settings that haven't worked since early W10 versions
Linux mint text looks nicer than windows text on a 1080p monitor but it doesn't matter on 1440p
It was one of the reason why I stayed with 1080p ultra wide
Coz it just looks like ass
"HOT HOT HOT HOT HOT" - Randy
Season 11, Episode 9 - "More Crap"
All content and rights for South Park are exclusively owned by South Park Studios and Comedy Central. Cartoon Clips is not associated with either company.
Bono, U2, Randy sets a record, emmy award winning series, randy takes the biggest crap, comedy central, "dad are you ok", ' b...
ping is never an issue if you put it in a half decent datacenter, people who are close to the server are going to have better ping unless their routing is awful
server performance is usually pretty bad in MC especially if you get high player counts, so there's a bunch of things you can do to influence that, server hardware, JVM flags, which plugins you use (bad code in plugins will eat TPS), paper server settings, etc, low TPS makes the game feel pretty jank
I mean hack even if you play from US to Asia it’s only 200ms. Still playable
Low tps on another hand makes doing anything impossible
how do they even deal with re-orinenting the plane?
Like, I'd imagine that kinda sucks for the passengers
ahy es
there was a time period where due to routing russians had better ping on US servers in Dota 2 than the EU servers, so many russians in my pub games
The PvP community is probably one of the worst communities in gaming
They still do
South America has better ping to USE
Than to South America server.
When I play in US East there are many Spanish speakers
they still are plenty in EU West
Agree. 90% of people asking for 1.8 are all from PvP community
You mean Russian west?
Try india
too high ping
one for each foot
@spare venture spooderman remaster looks pretty good, started to play it the other day
cpu
Ugh yes?
y the ugh
Just set them off in spawn chunks.
mc is single threaded largely, and only 1 core is ever going to be doing work on that stuff
hmm
roblox better anyway
bruh
what is your type of game?
finally enough RAM to run electron
woah woah woah
Well, this type of superhero game is good as you feel pretty boss with how much mobility you have
it reminds me of prototype if you played that
Can I ask why all the cores aren't equally spread in that part?
How come only a select triangle
Is it a certain algo?
gotcha, its a nice showcase for raytracing
are there any translation api's like translating literals strings with java
what exactly is your goal?
reading messages from a language file? I wrote this for my stuff: https://github.com/Phoenix616/lang
well ResourceBundle exists
not necessarily from a lang, but rather outputs given to the user hardcoded not sure which approach is better 🤷♂️
public void provide(UserLanguage language, String message) { ... }
provide(Profiles.getProfileByName("Nerm").getUserLanguage(), "This message will now be sent to the user in there desired user language.");
that is an odd library...really inventing the wheel there
thanks
at least it lets you do stuff like per-sender langs
Ive seen so many random libs for that though, and dozens of projects just write their own system
I mean you can do that with adventure too :p
havent used adventure, good to know
most of the projects i see do it arent MC though either
just register your resource bundle, then use normal translatable components
Hi, can someone tell me if I need to upgrade paper server now minecraft updated and is there a page that explains and easy way to do this?
ah yeah web service localization would be similarly annoying
adventure 🥺
adventue is pog
adventure mode?
speaking of.. is the plan still to replace bungee chat api with adventure in paper soon? ^_^
:o
please do
pog
yes
yes
adventure?
.g adventure kyori github
(DiscordBot) https://github.com/KyoriPowered/adventure -- KyoriPowered/adventure: A user-interface library, formerly...: "A user-interface library, formerly known as text, for Minecraft: Java Edition - KyoriPowered/adventure. ... docs.adventure.kyori.net/ · View license..."
wow that's the most extensive readme on a kash repo Ive seen
js
anyone else having trouble logging into mc? with their mojang acc
Allo Z
👀
Why would you improve a readme when people don't read anyway
yes
wen 
plan is to not add more bungeecord stuff, and to introduce adventure
tomorrow
no its a pleading request
stage 1 will be adding the adventure api
grabs ban hammer

accidentally hits Z instead

stage 2 will be adding stuff for display names etc
freeeeeeedoooommmmmmmm
Well, the ban hammer has spoken
fr fr
ur stage 4
i am the stage 4
pretty sure ur dead at that point
I'd never be ded
u r stage 4 cancer
wow!

never talk to brocc like that

broc
er ya hallo
i hop u slip on a dildo
hop
bad dragon
moby huge wouldn't be too bad
kashike is typing...

he's laying out his master plan
eta for when he will finish typing?
it's likely quite extensive knowing kash
inb4 its totally unrelated
"guys am going macdonal you want hamburg?"
I am hoping to have something ready for Adventure in Paper for December, but I make no promises or guarantees of this time frame. It might be December, or it might be later, it depends on how things go
again, no promises
see 
a or b
c
hey i was going to say that
if b is Effective Java, then that one
^
I've heard good things
its really good i got it in march
even html?
especially html
Every programming language, but a few concepts might be transferable to html too
oh small text says it's specific for object oriented programming
thanks for the suggestion
so not every langauge
do people really read books like that? i always thought of them as a reference guide, not a read cover to cover type deal. which the internet is a better and more up to date guide than books are
I'm not a huge fan of overly object oriented designs
but it can still teach you some good things
some people do yeah, they prefer books
It's good to know concepts like that
I've known several people who preferred to learn this stuff by reading books
I can’t pay attention in depth whilst reading online like I could not read a literal book online
yeah I know people who learned exclusively from a book (or series of them)
Documentation and tutorials sure
Because it you run into a problem, you there that there might be smth that could help, and then you go looking
i cant read books 😦 i think i've read 2 my entire 37 years on this planet
Just finished me 3rd in my lifetime as sad as it sounds
tbh if you're going to read a book to learn programming, you should almost certainly find a good data structures and algorithms book
demonwav's book club when?
data structures and algorithms is the core of all programming and computer science, and applies in all situations to all languages and environments
it also teaches you the basics of simply how to think in the context of programming
I had a uni course for that
any suggestions?
The only one that I actually found useful
I don't really read books for this stuff, so no I don't have suggestions








