#general
3141 messages · Page 325 of 4
Ur an annoyance
Yes
It'll also make it not worth using :^)
Why does Minecraft even obfuscate smh
If I can't audit it then why would I use it
I suppose running it on bare os is best.
But enough to keep your nefew from figuring it out and infecting their server.
using obfuscation is like using forest to protect your house from intruders
well if they are blind intruders... and run...
reminds me of the prodigy song
Remember, kids. Only you can prevent forest fires.
most kids are blind and run.
forest fires give me nam flashbacks
It's also fun when plugins have built in licensing and hardcode in plaintext the desired return from wherever they're pinging
https://www.youtube.com/watch?v=XQEBzauVIlA
this is the vid
(DiscordBot) The Prodigy - Voodoo People (Pendulum Remix) - length 3m 16s - 107,880 likes, 2,717 dislikes (97.5%) - 15,626,485 views - The Prodigy on 2012.03.30
woah .. it was eaten.
@woven otter wasn't reading chat, yes it is the particle thing
it is so satisfying to use
I was making combat arts using particles
wut, a plugin that automatically sets trees on fire
leaves *
it's modified paper I believe
hmm sure
no u
logic
You all learned in coloring school that it has a smile face, and spiky rays, and rings of color. 🌞 or at least spikes
Hello everyone, in regards to the Waterfall plugin, is there any documentation for installation? I seem to be missing it. Or is it just a drag and drop kind of install?
Give the corona sum luv, goog.
waterfall is not a plugin 🤦
follow the same installation procedure as bungeecord
just use the waterfall jar and not the bungeecord jar
gotcha
So, I use the Tunkey MineOS when it comes to the server itself, is that suitable for waterfall?
I don't think it cares as long as it runs Java
^
and if you are going to ask, no it does not magically add support for other versions of minecraft, you need to use that in conjunction with viaversion of protocolsupport for version support
.
Please leave Devon.
How about a plugin that loads custom clamav signatures on the server os.
https://www.clamav.net/documents/creating-signatures-for-clamav
ty guys/gals
here you go
LOL
tame and lame tbh
well u could install an engine on that front frame...
leaf ur lame
@dapper nacelle thanks
np
ad buys?
Yes, ads
programming in a nutshell
Those things you buy to influence opinion
china buys adds on twitter?
leaf what's with your avatar again
ads
Of course
tf they advertising
How do you think they're trying to control the narrative on the Hong Kong protests?
In the west, at least
china 
Twitter just said no, we're not letting state-controlled media buy ads anymore.
Good
Geez, get it over with, force them all to be a publisher..
billion dollar inet co in record time, tax breaks no magazine ever got.
nothing to see here moooooove along moooo.
Twitter told Media Post, “this policy will apply to news media entities that are either financially or editorially controlled by the state” and will not apply to taxpayer-funded entities, independent public broadcasters included.
So publicly funded media is fine, which many western countries have.
As well as obviously, corporate media.
Probably hurts China and Russia the most.
Meanwhile, the Hong Kong protestors have raised $2 million and are getting ready to buy ads of their own.
.g FTFY
(DiscordBot) https://www.urbandictionary.com/define.php?term=FTFY -- FTFY - Urban Dictionary: "Acronym for "fixed that for you." Often used sarcastically - not to fix an honest mistake, but to sarcastically disagree with someone."
Acronym for "fixed that for you." Often used sarcastically - not to fix an honest mistake, but to sarcastically disagree with someone.
there's nothing wrong with my avatar
damn leaf so dum lol
leaf pls
What happens to your other avatar
https://github.com/Cisco-Talos/CASC rtfm TO THE END.
so iirc as leaf said MT is all about rules. so how is this for MT rules:
https://www.baeldung.com/java-thread-safety
literally all of programming is rules :>
true
some of that is fine
I'd really recommend not looking into that until you know what the language rules are
rule #1: burn all leafs
considering the section about volatile is false
With the volatile keyword, we instruct the JVM and the compiler to store the counter variable in main memory. <- wrong
where should I start then
What if I’m anti grammar and prefer word jumbles and word salad?
I think jls chapter 17 is one place
how to explain volatile leaf
oh well jls is nice too
well here's the quick about volatile
volatile has two components: order and visibility
reads and writes cannot be re-ordered across volatile accesses is the order part
for visibility there's this "set" of all volatile accesses
for the entire program
and when it's executed it gets placed at the end of the set and synchronizes with all of the volatile accesses before it
it being the volatile access
sorta a retarded explanation
a better one might be volatile accesses are all executed synchronously for all threads
i just think of it as working how you'd think it would work if it didnt do all sorts of fancy optimizations
Does this link offer a better explanation than the earlier one? http://tutorials.jenkov.com/java-concurrency/volatile.html
like reordering, caching, assuming various things
well it starts wrongly
in fact a volatile read on x86 is not different from a plain read
but this comes down to how the volatile write is implemented
and it basically: fucks all other core's cache lines containing the variable
so it "pushes" it to other cores by making them cache miss
but that's irrelevant for the language anyways
The key point I took away was that there’s no guarantee when a non-volatile variable accessed by multiple threads is updated.
Conceptually a volatile variable is updated in a predictable or defined way?
technically yes but that doesn't define it
I meant the process - timing and order is defined; not the variable itself
timing isn't technically defined ever
unless you're talking about the time before its visible to other reads
in which case yeah it's 0
So how are updates to a volatile variable coordinated to threads?
quick question, are there any plugins that actually do a good job reducing lag for a small server of 5-10 people?
concurrent
like I said for x86
idk how arm or other works
in reality you don't need to know how it works on architectures, you just need to know the behavior the language defines
in general they're basically the same across languages
on x86 there's also the "all reads are acquire and all writes are release"
intellij updated and things look slightly different :(
I guess if you read 10 pages a day of jls you could become better at java in about 80 days or so
can i set restart-script to a powershell script file .ps1? 
including acquire/release/opaque from j9
in general the reason I even bother bringing up what an order of global volatile accesses is is because it'
s easier to prove some code is incorrect or correct using it
mathematically at least
that's interesting
i.e the first volatile example
Thread 1 | Thread 2
X.setM(this, 1); | Y.setM(this, 1);
int ry = Y.getM(this); | int rx = X.getM(this);
with setM and getM being volatile
if you write out the possible orders it's only possible that one or both see their r val as 1
no
oh
leaf have you read the entire jls of any version
no
have you tried
when do you actually need something from it
occasionally now and then]
😗
how did you get to the point of understanding multi-threading and what not
1-2 years
I didn't meant time but rather journey 
F.
where to start then
http://gee.cs.oswego.edu/dl/html/j9mm.html the best place for the rules
the jls on threading is basically the most overcomplicated way of going over those rules but it has extra stuff that's relevant
it also has really fucking retarded shit that's just 
"every default field write actually occurs at the start of the program"
"even before the objects are constructed"
.g jls8
(DiscordBot) https://www.jls8.net/ -- Jill's 8 Faucet list: "... transactions is over than 2.73 Billions USD daily. You can join the flow of money and start with easy bitcoin got here! Have a good rich day! ©..."
lel
.g java language specification 8
(DiscordBot) https://docs.oracle.com/javase/specs/ -- Java SE Specifications: "documentation icon The Java Language Specification, Java SE 12 Edition ... documentation icon The Java Virtual Machine Specification, Java SE 8..."
Although it may seem a little strange to write a default value to a variable before the object containing the variable is allocated, conceptually every object is created at the start of the program with its default initialized values.
wat about that
hmmm 🤔
This guide is mainly intended for expert programmers familiar with Java concurrency, but unfamiliar with the memory order modes available in JDK 9 provided by VarHandles. Mostly, it focuses on how to think about modes when developing parallel software. Feel free to first read the Summary.

So it's not really for someone who doesn't know much or anything about concurrency is it? 🤔
So i dont get it, not from concentrate is from a concentrate.. https://en.wikipedia.org/wiki/Orange_oil
First thing in the morn, you pour tall glass of lies.
dont let the get buried, put it in #gifs-and-memes
the new star wars looks pretty cool
snow mexican 
lol
hM
Im rarted, I thought velocity supported PE lol
rip
no but Waterdog does
supports the PE protocol but doesn't add PE support by itself
intended to use PSPE for java and PE support or nukkit for just PE support
Yea am running nukkit, having stupid issues atm but
¯_(ツ)_/¯
I've literally never heard of that
PaperNukkit lol
(DiscordBot) https://www.wikihow.com/Pass-or-Fail-a-Class -- How to Pass or Fail a Class: 13 Steps (with Pictures) -...: "Mar 29, 2019 ... How to Pass or Fail a Class. In most colleges and universities throughout the country, there are options to take classes as..."
.g PaperNukkit
(DiscordBot) https://papermc.io/ -- PaperMC – The High Performance Fork: "Turn your server up to 11. Paper is the next generation of Minecraft server, compatible with Spigot plugins and offering uncompromising performance."
Lol
I wish I knew what it was like to pass a class.
I need a movie to watch tonight, suggestions?
@cosmic raft I'm watching good ol car crash videos
@fallen oracle \o/
Some of these are cool
These citizen2 sentinels are pretty handy... Since its a bot.. and invincible, Data seemed proper. Hes carrying a lantern and im running seus shader, so its washed out.
.flags
Optimized & Recommended JVM Startup Flags: https://mcflags.emc.gs
Ok, ok the smoke from campfires is a nice addition, now my stack has smoke.
Just ignore the hole in the skyscraper back there...
Hi Paper friends 
Remember, no protest.
(DiscordBot) The Future of Hong Kong Protestors (Minecraft Parody)!!!!! - length 5m 42s - 3 likes, 1 dislike (75.0%) - 46 views - MordhauPro 887 on 2019.08.18
which gun mod is that?
(DiscordBot) [24/7] Travelling to world border in Minecraft - length **** - 19 likes, 3 dislikes (86.4%) - 136 views - Travelling to world border on 2019.08.19
heh always fun to read some history. Always fun to see wiz calling someone retarded
Good times
duck ur retarded
ur
hmm so i have this song on my phone, i got no idea where it comes from, its called Insomia 2.0 but that one is from aviici and shazam isnt being useful either 🤔
but i really like it lol
be a shame if you broke it
broke what, my phone?
What behaviour is expected:
No tps losses

@peak kite bruh im not retarded, i know the insomnia song, but its a remix with Piece of your heart by Meduza, but its a remix and cant find it anywhere 🤔
and i got no clue where it comes from since i havent heard it ever before
oh sorry, but it was worth posting
and idk how it got on my phone :p
there are many remixes though
yeah thats the issue
listen to them all
its named "Insomnia 2.0" which would refer to the one avicii remixed but its not that one either
so my quest begins
its not in my music list either on my desktop (which is where all my music on my phone comes from)
so i really have no clue
it obviously cant be old since Peace of your Mind isnt that hold
try to get help from reddit
lmao
not even kidding there are subreddits dedicated to finding things
hmm maybe
Our remix of "Meduza ft Goodboys - Piece of your heart" came out on Friday. So to celebrate we decided to a little live mix of it.... BUY / STREAM ➡ http://h...
(DiscordBot) Meduza X Faithless X Alan Fitzpatrick X The Stickmen + More - PLAYED LIVE - length 3m 6s - 10,001 likes, 73 dislikes (99.3%) - 228,257 views - The Stickmen on 2019.06.02
found it
watches as the bar starts to scrape the floor
am tryna say that we've come to a whole new low when the duck starts saying smart things
i'd rather kill myself than use reddit tho
you fucks will be my dinner
u have a smelly breath
ur an issue yes
stupid aux cables lmao
is sharp V sword vanilla?
yes
i cant combine a sharp4 unb3 with sharp4 unb1
its modded roblox
prior work penalty might be the issue then
@Bloodmasked go in creative mod and it should work (might require OP, not sure)
*mode
yea but how do i do it for survival
you can only do it if it's not too expensive
should i be enchanting level 30 items, level 30 books or low level books?
i never heard of this stuff
Level 30, cause the work penalty is 0 when you enchant an item and with level 30, you get higher enchantment levels.
ok
sometimes
I'm really glad that I don't play the game so I do't have to understand all this mess
they really had to fuck enchanting didnt they 😉
yea its weird asf
it's pretty neat tbh
well if anything it has improved
The enchanting mechancis haven't changed that much lately? The last change was "you now need lapis lazuli and it only costs you three levels isntead of thirty" afaik.
it now rewards people who don't die
lol wtf this radio ad "yo dad should i get a laptop with a hex core processor" 🤔
but unpopular opinion: the original enchantment system was the best: 50 level required and you didn't know what enchantments you got, also not way to disenchant or combine
rip battery life
oh I remember those times
i dont remember 50 level enchants
I made big buck with my exp farms back then =D
i was probably so noob back then i never used enchanting
was it 1.2.5
Enchanting was introduced in Beta 1.9
we are playing minecraft 2
beta 1.9 was never released
Yes, especially before Alpha. Indev, Infdev, etc.
Official Release would be number 7 in their named versioning scheme yes.
full gold skeleton riding invisible spider
sounds like my mom
crazy to think about it, that there are so little games still getting major updates after soo many years
even if the updates are only fine-ish when looking at stuff other than features 👀
Minecraft is the most sold game so it makes sense, lol
dota 2 is still getting montly updates
its from 2013 tho
LoL too i guess which is from 2009
I mean that's f2p for you xD
they kinda have to update
thats a spicy lvl 30 sword
well yeah i guess
btw. NetHack is stillg etting updated and that was release 1987 xD
knockback is a bit iffy though
and Starcraft also gets updates still
I'm just happy that the versioning scheme for Minecraft JE makes sense. Like, I'm pretty sure the ones for the NN3DS and EE are just randomly generated numbers.
i love windows versioning
I love windows
Fun fact: Every Windows10 release has FIVE different names, one has SIX. Make sure you have these all memorized for each one.
- Codename (Redstone 5)
- Codeletter (RS5)
- Build (17763)
- Version (1809)
- Name (October 2018 Update)
- Disbiguator (November re-release)
147
673
tbh windows versioning makes sense internally, just the PR versions are just names
icing on the cake https://twitter.com/SwiftOnSecurity/status/1163309859288354816
that's the "ver" command, not the "version" command though? 
the straws have been grasped at
no
Windows 10 is the product
not the version
just like before macOS it was Mac OS X
X meaning 10
yeah cuz using numbers is below apple 🙂
Roman numerals are numbers, just in a different format.
I'll version my stuff based on the temperature in Antarctica in Kelvin at the time of release. If global warning keeps up, the versions will be going upwards on every new release.
what if it goes down? are you backporting?
No, then that'll just be the new version name, versions don't have to go upwards, that's only preffered for people's sanity.
what about duplicate versions 🤔
Hope they don't occur and if they do, it overrides the first one.
noice
So
What you're tryna say is that we'll be on version Who.cares.the.world.is.on.fire in a few years
Version 404.69
If the world is on fire that'd be version 500 or something above.
1.OUT OF RANGE.40
apple does that all the time
just put "new" in front of it
suddenly they are different
"New version 2"
you mean like the Nintendo New 3DS?
the new switch is coming out
yeah, one that you can't run android on anymore ;_;
afaik it'll just be an internal version increase, doubt they give it a new name if it looks exactly the same
The one with the improved battery life should already be in stores, that's just a silent revision currently.
also the fact that you can't use the Switch Lite with a TV is just stupid
no, the new version releases in september iirc
remember the retarded 2ds
US already has it, only Europe needs to get it afaik.
its the 3ds but with all the good features gutted
also I wonder if Nintendo is going to kill the DS family now that the Switch Lite is a thing
I still have a working DS Lite.
i wish they would port all the great ds games
finally got a fire emblem game on switch now
I use a DS Lite too xD
I used to have one of those lovely homebrew cards too 😄
I use mine as an MP3 player xD
You don't think I actually bought games for the DS, I just downloaded them all. Well my father did, cause I was 6 back then or something.
oh, apparently the HAC-001-01 is really avaiable already (at least on amazon)
Yes, America and Japan already have it afaik.
I wonder if the prices for the original one will drop on ebay, would be pretty neat xD
would be a pretty cool form-factor to use for steam/nvidia game streaming
Asynchronous chunk loading wow-wow!
Still worse than 1.13
>.... [12:28:54 WARN]: handleDisconnection() called twice is this normal? :/
we get it all the time and I don't like itttt
its been around for a while
not sure if it has been fixed in the meantime and reoccuring
but i've definitely had it too before
its harmless but annoying
I've also had loads of issues where players don't disconnect properly and then manage to connect a second time, but it doesn't disconnect the first player properly and boom their data is gone
those I don't like very much
are you using viaversion or any of that crap?
nope
We've added fail safes everywhere after some dude was mad because he lost all his armour for the 55th time
lol
Part of it was my fault, because we loaded data in asyncplayerpreloginevent, now we make sure to disconnect the player if they're already online
but it happening in the first place is weird
I guess you could launch a second session and login, and that would happen. But imo they should be disconnected before the event is even fired in that case
That's a known server bug
shouldve stuck to bukkit smh
vanilla with command blocks is all u need
if only
Lag over 9000
I get handled twice all the time too
But i'm on an old version so I'm not allowed to complain
handled in the ass i bet
Rayz, more like Gayz
Dark eye dragon, more like DED
is that a threat?
yes
reported to the FBI and Discord
It is still
Until October 31st
You're stuck with us for a while :) (pls let us stay)
HARD BREXIT
Better stock up on foods
Once that free movement ends, and single market access ends, that shortage gonna creep in >_>
CAN THE BEANS!
Yeah probably a good idea, anything that'll last long term
No panic buying... that's what will put prices up
Buying now is cheaper than buying post-Brexit, that's just a fact of reality lol
Buy while supplies last, as they say.
Assuming no-deal, of course.
Will take a bit of time before food supply and logistics is re-established domestically
Yea, but this panic buying is what's putting them up. I was told a story of the 90s, where there was an oil shortage scare, within hours oil was sold out everywhere. My mum worked at a bank and a client (petrol factory) illegally sold bankers petrol for their cars because it was so hard.
This panic created shortage and price hikes, turns out it never existed
Since UK will be losing about 30% of its food imports
Why is UK leaving EU again?
There is no such thing as an oil shortage.
Food shortages due to import restrictions are very real though.
There was never such a thing as an oil shortage, btw.
Such a thing would indeed be a scare.
@acoustic pilot that's the point, it was an example, but the public are dumb, they heat ShorTaGe and they panic
ayy brexit is going to be a mess
If you want to check your ping to Google stadia, ping this server
But food shortage is a very real possibility here because it's very real that UK imports 30% of its food from the EU
There is literally an overabundance of oil in the world
They just put a uuid behind the url
That link gives me a 404?
It crashed for me that's how I know the server
HE SAID PING IT
Mhm it is, it's made worse by panic tho. It will exist post brexit, but panic buying makes it worse
Ye, you need a uuid
PING NOT VISIT
I mean, you can try brutforcing
Good Morning everyone btw
I can't ping it either
ayy 5ms ping not going to have problems with a service I'm not going to use
Morning
9ms 
makes sense, there's a Google datacenter just down the road from where I am basically 🙂
Just opened Twitter to see PewDiePie got married, interesting.
Lucky. Fuck
I tried to take a picture of the url but dude who was fixing just laughed when I reached for my phone 😂
They just had a chrome book open, with the controller and chrome with the url and I was playing doom
🤔
Didn't even play that bad, but it was noticeable that it was streamed
an exam cut short my plans for Gamescom, will probably be the same for the next years 🙄
Cut the exam
I already cut an entire subject (= 1 year of waiting to get a new second subject), need to keep up with that, else I'd gladly do that 😂
just cut school
I can't type I just woeki p
woeki p
@acoustic pilot daily reminder that I enjoy using libby
lol
lets all just agree the oil industry is a big scam
pretty much true for any big industry
easy to be the scammer when you're the one making the rules
yay big industry lobbies
nothing money cant buy
our conservatives dont even hide the fact their doing theater politics "We commited to almost 50% of our promises, now we just have to sell it as if we had done more"
Back in 15 for more juicy talk
now to the weather in the meanwhile: it sucks, too!
Everything sucks, get used to it.
I'm a student, I'm a professional at sucking at everything
except cats, and tacos.
tacos literally are the golden standard of shit
@quasi valley is that how you make your money?
no u
You guys know what's really embarassing
having 10+ years of IT support and hardware/software experience + 5 years server experience and realizing server performance is crappy bc of windows "balanced' power scheme.
no
tldr just paid for a new i7 that i dont need bc my old server was in power-saving mode
lmao
having 10+ years of IT support and hardware/software experience + 5 years server experience and running a server on WINDOWS is embarassing
damn, facts
Sure, you can use a spoon to cut your steak. Doesn't mean it's a good idea 🙂
but what about a spife?!?
Ever looked into how much oil it takes to make ethanol, that they then use to supplement products of....the oil industry?
Wow discord
Way to keep up
I'm reading along and see the comment about the oil industry being a scam, reply and now were all of a sudden in a completely different conversation lol
lol all the pepe ping reactions https://i.imgur.com/FI0Vpkd.png
shame they were all sold
I wish I liked WoW
I played FFXI before WoW and it ruined other MMOs for me
I look forward to WoW Classic because it's a traditional 2000s MMO
and ur fat
That why I liked FFXI. It did ZERO hand holding
Yeah, I remember FFXI being pretty good, just didn't get into it much
That game was brutal to learn
But it was pretty awesome in that it was also multi-platform, though not sure if they could play with each other across platforms
e.g. console v PC
Yeah as a PC player I played with people on PS2
and later Xbox 360
So you were playing with Japanese people too
IIRC, the translation system wasn't that bad
Pretty well
Just gaming game language and greetings
There wasn;t any PVP in the game so
WoW Classic has PvP, so that'll be fun. I particularly enjoyed Guild Wars 2 PvP and WoW seems similar.
After like 2 years of revamping, but yeah FFXIV seems good now too, as evidenced by the fact that it's one of the most popular MMOs now
But when that piece of shit first launched...
YEah
They needed to fire that director a lot sooner.
I got the first version and it was pretty bad
Yeah I bought at launch, got my free googles and everything lol
They tried to recreate some of the stuff with FFXI and it didn;t work
Regretted pretty soon after, when it seemed like the guy in charge was a total retard
Then they basically shut the whole thing down and did a major revamp for a while no?
But A Realm Reborn is great
Yeah
They took it down for over a year
If I had people to play with I would start up FFXIV again
I think Aikar plays
But everyone from Icrontic (the community i've been a part of since like 2002) are all WoW shitlords
Haha
I see WoW Classic as an opportunity too, it's a "new" game, on Aug 27 everyone is starting at level 1.
With new doggo, and my new house, I don't have time for MMOs anymore
Plus the other two doggos
Yeah shit will drain the life out of you lol
And working 50+ hours most of the year
MMO addiction already pretty bad with some ppl >_>
Yeah I've seen some people go trough some shit with MMOs
Can easily get in the way of your life
Lost friends, health degrades
FFXIV has some features to remind you to go enjoy the real world
If you're logged in too long it will start popping up messages to you
IIRC
Because Japan
and Korea
I appreciate that the game will have no hand holding, but definitely gonna take it at my own pace and not try to max everything or get into theorycrafting lol
Yeah, those messages have existed at least in Korea for a long time.
I grew up in South Korea, net cafes were sort of my second (maybe first?) life.
I spent a huge portion of my free time in net cafes in Korea ($1/hr for high end gaming PC time)
And MMOs were a big deal in those places, lots and lots of people just filling the air with tobacco and playing Lineage or WoW
Lineage lol
Lineage was such a big deal in Korea
I haven't thought about that game in forever
I think there have been cases of people getting killed/brutally hurt over Lineage items/drama lol
Always would have random Koreans coming up in game shouting horribly broken english "BAFFS PLENKY" "BUFF PLOX"
"U HAVS MUNI FOR BOFFS"
Koreans take their games very seriously 😄
indeed
i keep hearing that a lot of players in the pro gaming scene are korean
imagine still playing
They tied it in with the normal subscription
Probably because they wanna attract players to retail
Most of the realms they released are full now (name reservations are open)
They had to release a few more like yesterday or the day before
I only want to play classic doe
Yeah hope they eventually add a classic-only subscription, like $10 😛
I wonder how much money wow has made
Gotta be a billion, at least
Estimated 8.5 billion
Hey gamers
https://bugs.mojang.com/browse/MC-156852 they set it to resolved/future version - 1.15 
[wizjany] .pray
.pray
Fix Version/s: Future Version - 1.15+
fuck you bot
Y'all, has anyone taken methadone before. My mom accidentally took one (father's meds) and she's high AF. And I'm wondering if I should like intervene and take her to a doctor.
I'm not at the house where the pills are. I'm with her at her office
She fuckin drove here
If you're unsure, call a doctor, explain the situation and see what they have to say
congrats to your mother on the opioid addiction...
Thanks for the sarcasm phoenix
no but seriously, if this was an accident make sure she doesn't start abusing that... it's one of the most common additions nowadays
I know. It's my dad's meds. He has no legs. There is a legit use in the house.
wow why are you being mean to the bot wiz
It was an accident
"In 2013, about 41,400 kilograms were manufactured globally" wow
Since when is a kilogram a measurement of energy?
[wizjany] since devon is retarded
@cosmic raft new job or the same job you got a few weeks ago
[wizjany] imagine job hopping weekly
@stiff yarrow same job
Wiz, we're going to work on your insults. Could have said something like "Devon's brain is constantly destroying it's own energy and that's why he's so stupid"
I'm in a macintosh nirvana over here
also why would even mention such thing. It's understandable that it was meant that x kilograms of something were manufactured
Mac = 
Anyone know how to disable pillgaer spawning
I was thinking I would just set a command block on a loop
/kill @e[type=pillager]
you aren't manufacturing kilograms, which would involve kilograms getting made from nothing which is not possible without energy and energy cannot be created nor destroyed.
I understand what they mean, modifying existing kilograms into a new form to make it useful, but they aren't manufacturing kilograms
clearly you don't understand what context is
.optimize
Guide for optimizing performance: https://www.spigotmc.org/threads/guide-server-optimization⚡.283181/
Sounds like a feature.
wow latest paper actually feels faster 
(in comparison to paper 1.14.2/3)
can I blame leaf for this
yes
gj leaf
a very useful leaf 😉
So I'm doing some debugging on a project (not a MC plugin) and I turned on the GC verbose, how often is it typical to get a GC allocation failure or GCLocker initiated GC?
Depends
Trying to identify a memory leak somewhere, and I believe I have one in this project because over the course of 6 days, the average RAM usage went from 15MB all the way up to about 340MB, and it typically will crash on the 7th day.
crash from what? and oom?
generally you don't use verbose gc for memory leaks
There is a java flag to tell it to create a dump on running out of memory
you use a heap dump
beyond that, give it some time to grow and take a dump, see what's sitting around
take a dump 
Nothing like a good dump to solve all your problems
Yeah I think it was OOM
Out of Memory Error (os_linux.cpp:2757), pid=6403, tid=0x00007f95a8e2f700
Your server ran out of memory
Correct
generally not due to leaks that one
failing to allocate means you literally don't have the wam
It ran out of memory because it went from 15MB up to 3 or 400MB
wow 400mb
For that specific OOM, that's more overallocation to java if anything
Maybe there is a leak leading to that
maybe java is just thinking it's got what you told it to use
So is there specific flags I should be using? After the first crash, I changed the max to 512MB
it'd have to be a leak not in the heap
Currently using java -Xmx512m -jar project.jar
or you literally do not have the ram to spare for the process
how much ram do you actually have on the system
Like 4GB
This thing shouldn't need that much ram, it's a very light process, so that's why I was confused when it was sitting almost at the max RAM I allocated it
It actually runs fine on 20 but if it truly is leaking, I'm going to guess it'll run out fairly quickly.
Idly right now it's using 5MB
So in 6 days when it's idling at around 300 or 400, that's just a tad concerning.
True.
Alrighty, let's see how it goes.
Leaf said it won't show up in the heap right, so there's no use in adding a dump flag?
just add it, at least you'll have a dump if it runs out of memory
and with that little memory it's not too big either xD
no I didn't say that :>
it just makes it dump before it closes
Weird, I didn't start it back up, but it's still running
At least I have a heap dump now
What's the go to analyzer for that? The eclipse thing?
I am trying to get my ipad charged enough to update to 12.4 before 12.4.1 is released today, and neither of my fast chargers are making a noticable dent in getting this charged in decent time
I have tried charging it with my 9v official ipad charger for an hour, 1% in an hour, tried with a 2.4amp 5v fast charger, 2% in an hour
any time I try to actually use it while it's charging, it just dies again within minutes
ugh
lol, if you ever need english lessons: https://pastebin.com/u/gmalivuk/ xD
What's that?
I think it's from the incoming JSON
Not sure if it just can't parse it fast enough or what
see what's holding a ref to it
It's from the Server class of the jar
So like, what's running the webserver
Which would be this class
that class doesn't even seem to contain references to strings? 🤔
Animals that spawns via spawners are not natural ? (as they are standing stagnant like a zombie)
@void void if you disable spawner mob AIs then that will happen, yes
My trial expired on YourKit so it wouldn't let me open it.
Phoenix where can i check that?
It's in spigot.yml
Paper has a second option to let them jump but it's all controlled by spigot's
What's a good free java profiler?
nerf-spawner-mobs: true is it that one?
yes
so it's already set to true
which is why your mobs don#t have AI when they are spawned by spawners
while in paper :
spawner-nerfed-mobs-should-jump: false
so in spigot.yml i set it to false right?
yes
(Switched to VisualVM) So it looks like there was just one with a shit load of extra json or something
You should be able to expand stuff and see what's actually holding a ref to it
valueinjava.lang.StringBuilder#12 [GC root - Java frame] : [ { "external": false, "file": { "type": ".jar", "size": 31.5, "sizeUnit": "KB", "url": "resources/mineresetliteplus.1898/download?ve... 28 B (0%) n/a```
Only reference
That's so weird, I just stress tested it and it worked fine, it allocated a tad more RAM but it's now just sitting at like 120 idle
Somebody probably just sent a request large enough to kick it
Yeah maybe. That might be hard to do though. I just tested it with some of the largest requests it could get.
I just make it process all of vk2gpz, inventivetalent, Phloxz, and RamonHernandez's resources (all at once) and it handled it.
lol

Yikes.
Dang phoenix you got quite the collection of resources.
wow look at how colorful all that 🚮 is
Is there something wrong with it? If not, I'll go look how to do it.
Nope
Lit
@azure patio https://i.imgur.com/QkjpNc9.png

Well, we're getting somewhere.
I believe these ints are from generating images.
But it's weird. Some of these have no references.
🤔 👌
SAT's are coming up and I'm just looking for another lookalike to take the test for me lmao
highly illegal
wait. that's illegal
what exactly was done to mob collisions in 1.13?
They made them more accurate or something iirc
But in ref to performance, there is that and their option to use streams in hot code...
hey they have to leave something for forks to optimize
hi i cant start 1.14.4 spigot or paperspigot server
@rapid shadow [Auto] We're now known as Paper.
If u say no u r a furry who plays fortnite
@rapid shadow maybe you are doing it wrong
i can start it on 1.13.2
the problem is hang on world generation, its freez on custom seeding text line
You'll need to grab a jstack or something
Or, if you upgraded, it's prooobably either just super fast 1.14 or plugins breaking it
no its new, how to grab jstack
jstack <pid>
Same process
No idea what the clean way of grabbing the process ID would be however
(and you would need the JDK for that too, not the jre)
ok i think i should update my java jdk
interesting
are you sure

hmm
lool
is there a different . symbol maybe?
rename one?
unless you wanna preserve this absurdity.
it was weird
two files, same name, with diferent modified date, both files were created by nvidia driver
lmao, dev bukkit's Cloudflage config just blocked me
*Cloudflare
srsly, fuck centralized services -.-
.rekt
☑ Lord of the Rekts: The Reking of the King
heh
well it made me point even more URLs to spigot ¯_(ツ)_/¯
at least I managed to put a warning above the comment box for people to head to the github issue tracker and spigot page so they stop complaining in teh comments about no support -.-
Kappa
They were not kidding when they said you might have to retry a few hundred times for this jailbreak exploit to work on 12.4. I finally got it to the step where it makes a backup, now to keep trying until it goes all the way through
hi
My charger is a pos so I'm running to the store to get a new one
hi
was work fun?
can anyone send me in the right direction for adding chat prefixes to names on a server?
i thought it may be included with EssentialsX but am having trouble finding support for it
I thought the issue with 12.4 was it allowed remote code that can jailbreak and allow access.
luckperms
freeze on this section
Momperms
usually the permissions plugin provides the prefix too ;)
weird though it should work with java 8 as well
binbows
if i do vault:vault-info it says I have SuperPerms, does that sound right?
is it included with essentialsx?
im on 8u221
SuperPerms is the built in Bukkit permissions system
64 bit
https://i.imgur.com/iNZhXKA.png
heh was this reference to spartan
https://github.com/Marcookl/RotateSRV
yes, use this if your server is blacklisted @turbid birch
is it rare or something, i just havent heard anything of it in a long time
Openjdk 13 is best java
yes j13 will be fun
It’s out
well yes it's out but
Sudo apt update && sudo apt install openjdk-13 or something idk
no, my friends' keep having their servers blacklisted left and right, blacklisting is still going strong
but but
huh
ok so can i ask about a donator perk
blacklist of servers?



