#general
3141 messages · Page 599 of 4
Does your server allow creative mode?
Why
Whever you try to execute a command towards him
the message that blocks it from the command says CastveMC blocked the execution of this commna
The command defined in ultra perms
prefix*
That is shady af
Anything in your console?
Does it say that if console issues the commands?
honestly first I'd say ban him, figure out where the backdoor comes from later
Also, Op isn't a permission/rank. Best to properly setup your permissions to your account/rank
"he said" who said?
if anyone wants a kekload of textbooks, springer is giving away 408 of em https://www.reddit.com/r/learnmachinelearning/comments/fvncjm/springer_is_giving_free_access_to_409_of_its/
817 votes and 138 comments so far on Reddit
(DiscordBot) Springer is giving free access to 409 of its scientific books during... : learnmachinelearning - 138 comments, 814 points - alexgand, 12d ago
quick python script will get em all for you
Cant tp to him anything
Im aware
Drop his IP in the firewall
1 sec then
Speaking of FW drops, I had to drop all of Philippines earlier this week :3
why?
Bots, all using PH ips
PornHub IPs?
If I drop the IP does he disconnect?
Oh
philippines
Sorry didn't read up
Mostly 49.144 - 49.147 block (iirc)
very interesting
sounds like you need to write a report and switch to luckperms lol
if you arent careful who you hire then yea expect to get fucked
spigot discord gives me a headache holy shit
@zimple its literally on spigot
yeah
should i say it again
Oh yeah ik
Hold up, you confirmed that the dev of the plugin just came into your server and was abusing it?
oh i thought this was a private dev
YEp pulled up my paypal email used to purchase it glare
We got in a call just to confirm it
So unless he also got ahold of my paypal email somehow?
well cat got his acct hijacked, it's clearly not impossibru
Suspicious.
I have no idea how to go about this*
That's not Tech's discord account.
Also it makes no sense for him to do something like that.
So wtf is blocking it from executing commands on him
¯\_(ツ)_/¯
prob other dum pl00gin
I mean of course you should investigate the issue but I wouldn't go around saying Tech hacked your server or anything.
Im not yet
currently purging a 281GB coreprotect database, been around 2 hours. https://www.titanicfreak.com/imgs/bb40a3571d4702b43dcb70657a67201c.png
Im not sure what plugin would literally display the ultrapermissions plugin though
yeah, normally i would delete the whole database but we need to keep session data
that stops a command on working on him
Prob permission
He didnt have any permissions either
he has been hating on everything we've done for years
yet he keeps using PlotSquared
if you hate us that much, don't fucking use our software you asshat >.<
Still need help
why is your guide gone? .-.
Which guide?
barty's server optimisation guide
Oh
I thought you knew him my bad sorry
Nice
yes! where's that PR progress
mini wake up
it's 5am
gotta get working
holy shit it's 5am wtf am doing
I went to bed at 10am yesterday. My life has flipped turned upside down.
Oof
felt that
Mood
false
Just woke up and need water and watermelon
am going to the gym
I went to sleep at like 6pm ish
tty later noobs
How are you going to the gym @heady spear
His country isn't in lockdown yet
Please include addresses
across the strees, through a door, through another door and there I am
Imma need access to this gym
Oh Sweden, of course
make it support brigadier
@heady spear im working on it!
i've been testing it on 1.8 (a bit old I know)
a bit
does piston work with brigadier?
no
smh my head
@fallen oracle close, but that 5am still ends at 9-10am (depending on if i sleep through stand up or not)
ive slept through standup past 2 days lol
don't you think if you need 5 hour energy all the time maybe you're not doing something right?
oh i totallyk now that
😛
well, part of it is addiction and withdrawal risks, but if i reduce, i get less work done, and i have too much work to do
do you come home late at night or something and just need it to push right through the night?
implying come home during covid
LOL nvm
i wonder, do you make enough money from empire minecraft and paper donations?
lol my personal expenses far outweighs minecraft expenses
ah >.>
nevertheless, paper keeps your programming skills sharp, so you have that too
i program for day job too, doing more fun stuff there atm
asked boss to check with legal/CTO again on open sourcing myframework
at work I create electronic forms + workflows which help to streamline and improve the productivity of whichever department wants work from my department
Yay the gym is empty 😍
yeah... i usually work on a lot of complex shit. maintaining our code architecture, build systems, backendy work
there is some programming involved if need be for custom functionality
nice
and if that's the case it's JavaScript
i built a really advanced framework/architecture for nodejs some of our newer core features are on
🙂
and trying to get this open sourced
that always feels good
big problem with node is theres 40 problems to solve, and everyone solved them differently
no interfaces
every application is a hodgepodge of ways to solve each problem
There are 950 unmaintained github repo for every feature you could want in node
so my framework opinionatedly solves most of them, and then the ones that invite more allowance for opinions, are plugable to an interface
yeah
so if you can write an adapter to your favorite solution, you can, ie logging
yeah there's so much fragmentation out there for trying to solve a problem
largest one i can think of atm: dates
the framework will define an interface on what a logger is, satisfy it and implement your logger however you want
or stick to the simple console logger lol
nice
but that doesnt do anything fancy
we have a bindinging to winston to also do syslog, fs logs, then our own filtering level on top of that
Date handling is supppppppper hard to get right lol
i should familiarize myself more with programming techniques, i'm more of a person that gets into new things when i have a need for it. I wasn't trained as a programmer so i've been trying to learn my way through it all
least thato ne has a solution everyone uses, moment
Like you’d think counting some days and labelling them would be easy but it really isn’t :))
hahaha
one of the largest problems in node.js is shutting down
though i guess many languages have shutdown as a hard problem
but theres a bunch of libs for it, all the popular ones do it wrong
only a few barely used ones do it right
you CAN NOT shutdown serially in node.js
Huh?
you must shutdown in multiple stages/levels
Although I guess graceful shutdowns are hard in java too
and every async task must check the shutdown state and abort out retrying/waiting if its shuttng down
yeha i just fixed some in paper this week
but its a nightmare in node
everyones all like "on control C, shutdown database, shutdown logger"
well wtf about the stuff in your shutdown process that needed the DB or logger?
so i have a finalize stage, finish wtf your doing, cleanup stage, start closing shit, then last, one final shot
Sigint and cry I suppose
it doesnt advantage next stage until every task is finished
That’s nice
everything important registers itself as a task
I’m always terrified of applications just being yeeted out of existence without warning
stalled shutdown tells you what tasks are executing
@minor sigil that server holy fook
Makes it super hard to save states properly
Cat you missed the piracy argument
Barty vs. Spigot :))
you know, i got to use Thread Death for the first time in java this week, to kill that damn main thread. DOWN MINECRAFT. To the depths of hell from where you came!
what server?
spigots
Spaghettis discord is a fucking mess
yeah, they obviously don't understand how radio communication works
At least they don’t have annoying moderation
or how towers can and do communicate with each other
5g skurry too
They seem to tolerate a lot
According to them it’s fine to distribute cracked clients
You don’t encourage the use of cracked clients by doing so
Will Paper ever have a community server, like spogit
No
community server? other than spigotcraft?
Wait aren't you at the gym
Yes
What are you doing?
Am taking loooong breaks
Am too tired for this, I pulled an all nighter for the third night in a row lol
Ye I didn’t go for two weeks, then I figured I should just use it while I can
Plus when uni is from home I barely move at all so I kinda need this to remain sane :/
I have workout equipment along a huge stretch walkway across the road from mine, but the council have barricaded it all 😪
Yeah I work from home, so the gym was my escape
Insane lol, nothing is off limits here
Now I just pace around my apartment
Everything but cinemas and ski resorts remains open
Even cafes and restaurants
Idk if we’re crazy or if we’re the sane ones
I feel like nothing bad ever happens in Sweden though
You guys just do you and everything is fine
Pretty much, ye
Although if you ask the far right then the entire country is falling apart
And had been falling apart for the last 10 years 🤷
spigots server only exists for testing the pre-release builds
We don't lock builds up, so, there is no real super strong reason for us to have to deal with that
Is there any good reason why it’s being developed behind closed doors?
Wouldn’t more PRs etc be a good thing?
Ye sphagett is being weird
other than implied that md_5 has issues
Ayy lmao
Well I mean we’ve known that
wassup
When I move to Melb I'm going to interview him
Huh, new moderator?
for The Minecraft Daily
What the hell have I missed
What is something?
i recently tried to bring up a question in the spigot-dev channel about why they don't talk about a core dev team in spigot
didn't really go anywhere
it's a new year and a new decade, but it's same old spigot
Their dev team is md_5 lol
i'd at least hope they would treat the bukkit project with the same care that the original bukkit team did
but they is unfortunately just md_5
Then his goons with their pull requests that end up stale for 15 years
I'm still salty because we got told off for talking about Paper in the Spogit Discord, as it was "in the rules", and it most certainly wasn't in the rules anywhere 😂
it's in the site rules
Huh? I’ve openly discussed paper loads of times
perhaps they mean unsupported builds
Maybe Choco is just more lenient
fork discussion in general is pretty much a leading to a ban
i don't know how much micromanaging md_5 does outside of spigot development
We discussed paper and tuinity while Choco was there
but he is leading a fairly large operation
different people enforce the rules at different levels/times/whatever
Choco likes me, I knew it
haha
seems we're ok talking about spigot here
except dealing with spigot plugin issues
Didn't know it was in the site rules(?)
but I was referring to the rules in the channel topic https://i.imgur.com/apBJsxb.png
true
Meanwhile spigot just relies on paper to be usable
I like how he’s talked about as some sort of a mystical creature
He is talked about a bunch haha
https://i.imgur.com/KAnFCC2.png
He’s like a Swedish forest gnome, everyone knows about them but no one ever interacts with them
He is a ranga so you're onto something here
hahaha
How come everyone in the spigot discord is an industry leading expert in every field imaginable
i think it feeds my frustration with him and not reaching out to more devs
You could bring up any topic and everyone will know everything about it :)))
You could be talking about what you’re wearing and someone will correct you
perhaps because i was the same way as a server owner a few years ago, and that was one reason that hurt the community
so in some ways i can see my prior self in md_5
what frustrates me is maybe we'll never know the full answer
It’s just strange. You don’t adopt a FOSS project and then become a dictator
He is working with all of Bukkits legacy
It’s not like he isn’t building on top of a shit tonne of prior work
If I were him I would want shit like paper to be merged upstream
But when people try, like leafy has an open PR, he is super critical and refuses to merge anything
Why would people even want to contribute to that
The fact that a big portion of the community swear by a fork of the software should be an indication that something is wrong
Hell, that’s why spigot exists in the first place
He if anyone should know the importance of forks lol
like leafy has an open PR
With Spogit?
It’s a paper patch, but it’s not good enough for spigot
You can’t unless you sign the cla
Ah gross, I have to be signed in haha
Then you need to give them your name and address and shit

And wait to be manually processed
nah I'm good
Spaghetti is new google
Haha
Oh yeah I've always hated and never used that
i believe they won't because the way spigot currently works (via build tools) was a decision reached with legal advice
yes.. they had no real choice
i think i brought that question up before
i guess that sucks for them because they are bound to it, inheriting the fallout with the CraftBukkit DMCA
they consider their method good enough and doesnt need to be improved
Paperclip would probably be in the same legal gray zone tho?
Yeah I don’t think it’s because it’s any more legal
paperclip pushes further into the grey zone, but honestly, we're at the point where the DMCA mostly doesn't realistically impact projects
honestly, which do you think mojang would prefer
- End users decompiling minecraft server and modifying code, breaking DMCA laws on every end user
- End users downloading minecraft and modifying it on binary level never touching code, only paper devs break DMCA laws
the problem is not mojang... its some of the old bukkit/cb devs
i find ours less legally grey than spigots since end users do not decompile the software
well same for them too
source code doesnt touch end users pc's in our manner
It’s not like mojang cared before the dmca fiasco
Yea, I guess; it kinda goes both ways
our method is close to sponges too. sponge manipulates byte code in memory, we manipulate byte code on disk
saying that, mojang never really cared, as said; it was more wolf and the whole nms + cb code thing
spigot manipulates source code
They’re obviously okay with sponge considering mojang devs are in their communities
there is only md that doesn't seem to have much interaction with mojang
I’m aware 😛
The illuminati of Minecraft
It kinda feels like md is afraid someone will take the lead from him?
brushing myself up with the whole DMCA issue in the first place, so I guess.... mojang still owns bukkit then?
Considering how snapshots are handled
sits down in his armchair to do some lawyering
To be fair, I dont think BuildTools or PaperClip are violating the DMCA. The DMCA only exists because of a clause in GPL about distributing GPL together with non-GPL. BuildTools and PaperClip do not distribute GPL and non-GPL together. Thus, nothing is illegal here. Just my two cents.
gets out of his armchair and goes back to fun stuff
If the code isn’t released then no spigot fork will be available when spigot releases, so they’re still on top
But I still don’t get why no one is allowed to bloody touch the code without him harassing them beforehand
We call it the legal grey area because it does not directly invalidate the DMCA in terms of the tools we ship, but the tooling in the long run introduces some smear on the DMCA
And everyone in the spigot community treats him like some sort of god 😐
No that's just because he's Australian
The way people talk about him in there makes it feel very cultish
And we are gods
e.g. spigot still ends up creating a source tree which you couldn't legally distribute, and paper has binary concerns on the DMCA
Haven’t heard from him since November. I think he got eaten by a koala
@heady spear well I've suggested creating a benchmark to guage performance of craftbukkit, spigot and paper, something you can see on paper, not discussions which can fall flat on their face due to biases
Oh well, he’ll be back in half a year pushing untested code to master. It’s fine.
Koala's don't eat you, they just spread their chlamydia
Can’t wait for the * commits :))
but that hasn't gotten very far yet, I still wouldn't mind talking more about it, but I got enough to worry about on my plate right now
benchmarks really don't make sense unless you're able to control stuff really well
What would you benchmark?
hahaha i don't know, even worse that i don't have much experience with performance-enhancing code
you can't really compare 1:1, because a lot of things have oddball behaviors, some Math.randoms() behind complex logic
Generation? Impact of chunk loads on server tick speeds? TPS drops?
gotta remember that spigot also cheats with max-tick-time
i suppose to figure that out you'd have to break out a list of components in the Minecraft server and then see what tests you can run based on the components
Idk hard to get anything reliable
Benchmarks are a pain to do no matter the environment
I have loads of anecdotal evidence, good enough for me.
PlotSquared is one of those areas where paper makes a huge difference
@unreal quarry decompiling software in general violates most DMCA lol
@golden gust then it'd have to be a vanilla spigot server, because you want the vanilla product to do the test in the first place
Yeah I don’t see mojang as an issue
They seem to be doing their best to help where they can?
yeah that's more something to do about wolvereness
thing with max-tick-time is that you have to consider side-effects
I finally updated my server to 1.15.2 yesterday
What’s happening with the whole mapping dealio tho, any updates on that?
and I couldn't be happier with the performance increase https://i.imgur.com/nv35Eog.png
i wonder if there's anything that'll convince wolv to relent his DMCA
is it a fair benchmark if a product is willing to corrupt state to achieve that?
you sure as heck wouldn't accept that from an SSD, etc
we arent decompiling wolverness's code. all that is open source. it doesnt apply to his DMCA against CraftBukkit
though i dont see any clause like that in mojangs eula
I think wolv blew up after finding out that Mojang owned his code?
yeah i was meaning mojang not wolve
yes vector
well not exactly
mojang doesnt own code
they own the project entity
That whole scenario was so sketchy tho
legal entity != code
Like they should have been more transparent for sure
I coulda sworn that we already knew that bukkit was owned by mojang at that point
right, not code
But I don’t see the point in ruining the entire community after spending so much time on it
Or, at least, it was hinted but not really announced or something
itj ust wasnts tressed or pushed around cat
Right, but they should have said it
i only found out about it from Jeb's tweet that Mojang had "secretly" owned bukkit the whole time
until the then cb team wanted to shut it down
yea
Not jump in and say “actually we own the project so u can’t shut it down”
and mojang brought out the point they own the legal rights to say its shut down
That wasn’t the way to go about that at all
honestly i dont fault mojang there
No one was in the right imo.
mojang kept their legal ownership unused until the community was being harmed
well it appears the spigot chat is filled with those who believe they know all the various communications methods that are used >>
secret business dealings
it wasnt secret, just why flex it?
It's kinda crappy that it wasn't more well known, but, it's not like they interferred
They should have said “this is a project we own and that will continue supporting” to begin with
Yea, people in the community already knew, just seemed like some of the more involved people on the project didn't really keep up with musings of the community too well so it seems
"ok everyone, since we hired the entire team, legal ownership of the project transfers to us, but its still business as usual, ignore that this is now an even more legal nightmare becasue we still dont endorse this project"
I understand feeling super betrayed at that point 
why was that a necessary part of acquiring the bukkit devs though?
vs shutting it down?
So that there wasn't a conflict of interest for one
Resolves a fair number of concerns for an employee
They should have figured that out at that point. Owning it while not supporting it and pretending like it doesn’t exist is just dumb
Wasn’t that a big reason behind the outrage as well?
the code they wrote and now mojang employees, makes it a tricky scenario
They didn't pretend it didn't exist
I know that if I was reversing a bunch of guys software and they hired me, I'd like a much safer bet on my own projects
they essentially bought the project
They do support it, just not in the way everyone wanted them to support it.
maybe evil seph said thats only way theyd go work, if entire project was bought?
But they weren’t transparent about it, which is the problem
mojang owning bukkit aids in a lot of misc complications around that stuff, so they bought it and opted to not interfere with it
They didn't hide it either
With more transparency they wouldn’t have gotten the same reaction
for the operation of the project it was 100% irrelevant
Right, but people obviously didn’t know
if they were "transparent" they probably would of had the same blow up then vs later, causing instability in the project even earlier
@minor sigil conflict of interest seems like a likely reason then for acquiring the project
I would have liked to know if I were an active contributor
what the fuck is going on here https://www.spigotmc.org/threads/disconnected-with-could-not-connect-to-a-default-or-fallback-server-please-try-again-later.427345
disconnected with: Could not connect to a default or fallback server, please try again later: io.netty.channel.unix.Errors$NativeIoException
centos 7...
so to keep business as usual, just left it as is
I guess
Idk the entire situation was a fucking mess tbh
your not contributing code in a free license to mojang even before this
much easier to just leave the status quo then to try mess with it
the contributors contributed GPL code to a project that mojang legally owned, but mojang could not even use that code
mojang gained nothing really
Why was it going to be shut down to begin with
EvilSeph tried to shut it down because of the changes Mojang was going to do to the EULA
there was no real answer to that scenario
could I have filed a DMCA takedown on CraftBukkit? I have some code I contributed to the project
and believe bukkit would be in conflict with it, forgetting Mojang owned Bukkit
which means Bukkit can't violate the EULA
you can file a dmca on anything
doesn't mean your DMCA is valid just because you do
Isn’t a dmca an American thing tho
everyone contributing is very legally grey area to the gpl
they were pissed they were owned by mojang, but werent getting paid. thats the tantrum they were throwing in their IRC the weeks before it all happened. I remember it very well 😦
any first world country honors the us's dmca
It creates a lot of complications around open-source specifically because a lot of it is not tested in law
Only because most other countries are party to the Copyright treaty
yeah i'm wondering on what grounds legally wolv has that is more sufficient to anyone else whose contributed code to the project
Well, that's the thing
as far as wolve's opinion goes, everyone had same authority as him
It's a huge massive stinking grey area that nobody really wants to take it to court
🍿
well apparently the dmca worked
dmca doesnt care if your opinion is valid or not, you go to court to fight it
a dmca isn't a court ruling lmao
and if you reject a dmca claim, that turned out to be valid....
oh have fun
so, dont turn over a dmca claim unless your gonna win 😛
Also, though same goes for those trying to impose their DMCA claim too
yeah
Does anyone know of an online tool/something that will convert a list of UUID's to names? 
mojang COULD have overturned wolves dmca on cb
but theyd essentially be agreeing to a legal fight then
there are UUID fetcher tools for pulling up that info from mojangs API
and it was of no benefit to them
well, s/tools/libs
That would look really bad on their part, wouldn’t it?
Well it would only be on Wolve to initiate the legal fight
No idea if there is a public tool or not
Mojang could have simply ignored the DMCA
im more on mojangs side here
same
I will give you the list Cat 
i feel mojang tried to do what was best for all of us
Wolve tried to get Mojang to buy his rights out
nah, ignoring dmcas gets you in trouble regardless of if it's "right"
and wolve just wasnt happy
he got mad when they simply told him no
if you can do basic java, would be pretty trivial to do
@heady spear wolves stance is only valid if he was contributing code to mojang to use for commercial purposes
which.... is not the case
straight up wrong
wut
wolves argument was that he was contributing to a project ownedby a commercial project, essentially writing code for them for free
Yeah, pretty much Wolve believed Mojang was stealing code from bukkit to use in Minecraft
i don't recall wolv making such an argument but okthen
🤷 been years, thats how i remembered it
thats how i remember it, too
a dmca isn't concerned with feelings, it's concerned with copyright
well yeah and mojang did nothing diff with his copyright
You’ve clearly never been to a Swedish court
I was there when it all went down and that is what he expressed. He felt that he was contributing code to Mojang for free and felt he should be compensated.
p. much how I remember it being said on the site and stuffs
someone proclaimed to be shutting down the legal entity, in which the legal entities actual owner said no is ultimately what happened, and the code itself was nuked in the battle
On some level that makes sense, but he also willingly contributed to an open source project expecting nothing
You don’t contribute to OSS and then randomly feel entitled to money lol
the dmca was the only thing he could do since the project couldnt be shut down. he found the loophole in the GPL about distributing with the inclusion of non-GPL. its literally the whole reason the DMCA exists: https://github.com/github/dmca/blob/master/2014/2014-09-05-CraftBukkit.md
EvilSeph on the other hand though tried to shut bukkit down because of some belief they would be going against the EULA. Which is weird that he attempted to shut it down, knowing full well he sold his rights as well as project owner.
basically wolve was ok with his gpl rights were violated the entire time he contributed to the project, until he didnt want the project to exist anymore
EvilSeph was just upset with Mojang because they fired him XD
Yeah I don’t get bring proactive about that?
"its my ball, and i dont want to play anymore"
Shut it down if mojang tries to have it shut down
😉
Why do it beforehand?
technically wolves dmca claim is valid, these projects are a legal grey area w/ the gpl. but he knowingly contributed anyways
we honestly need to let it die tbh
true
idk why this discussion is even happening
talk about tacos
there's literally nothing productive to come of it
guys
read your eula.txt as a reminder
We were complaining about md being super bad at running an oss community
argue over tacos
soft
I need to get my patrons for taco money
I have bad teeth so I can't eat crunchy tacos without it causing me pain >>
im torn on corn vs flour
Whole wheat :))
soft corn that is
Hard r just glorified crisps smh
Well, I guess if you like to eat dirty tacos
but then I guess you will never have a problem with those that make taco's though since you know, you like the ones in the trash XD
Team soft?
soft tacos?
Then you better just eat a burrito instead
mfw
That looks delicious tbh
what the
actually looks good
yall r crazy
lol what's the old prune role
its my role
Are you the oldest here?
yes
pretty sure i'm the oldest here
Oldest player I ever had on my server was in his late 60's / early 70's 😂
So awesome
had a player on my server in his 80s once, it was fun
where is "here" billy
this convo
anyone ever had a player on that was younger than the server itself?
ah ok, setting a low bar
Reminds me of how much I love spinach
spinch
The trick is to drizzle a bit of olive oil on them
makes it really easy to scape it into the trash
i was
I actually love spinch haha
as long as it's not cooked^
slightly cooked is fine
otherwise it's just vomit
😂
very true
cat add me :'(
I always just found it was kinda lackluster, didn't really add much to the meal
Who are you?
Literally no idea who that is
wow
STOP SPEAKING BOTTOM
that ur cool?
not if ur asking
🥺
boTtoM
SO WHAT IF IM A BOTTOM
hot
im actually a power vers 
what is happening right now 😂
wouldnt you like to know weather boy
can you stop erping
get a room

This isn't erp
your erp experiences must have been super boring for this to be erp
.g wouldnt you like to know weather boy
(DiscordBot) https://www.youtube.com/watch?v=ehH9OQMQXIk -- WEATHER BOY - YouTube: "Jun 29, 2017 ... Wouldn't you like to know weather boy? Category. Comedy. Show more. Show less. Comments • 1,724. Default profile photo. Add a..."
^
yes that
No that cannot be real
im pretty sure that's his son
he is the parents he's asking about
but stop analyzing it's funny
tbh simple is one of the people I dislike the least on the internet
😌
like if we were stuck in a burning building together I probably wouldn't push you into the fire
That's okay, id push myself in the fire
fires are lit bro
I've been in a couple, you don't really realize how fucking hot it gets
and how hard it is to breathe
fuck I ate too much
What'd you eat?
2 hotdogs and fries
that guy who wins all the hotdog eating contests: https://media1.tenor.com/images/3240b08b8c1d722625dfb9e5d73b7b11/tenor.gif?itemid=3535805
FYI anyone with webdev experience with gulp/webpack exerience or desire to learn them, see #timings on my discord if you got some time and want to help contribute to timings to help get the toolchain updated to modern versions. https://aikardiscord.emc.gs
wiz eyyykar is advertising, please ban
to complete death and isolation 😛

too much taylor swift

runs
idk man, a lot of shit
it was an asian hotdog place that had some really interesting dogs
https://magmafoundation.org
tf is this
Magma is the next generation of hybrid minecraft server softwares.
Magma is based on Forge and Paper, meaning it can run both Craftbukkit/Spigot/Paper plugins and Forge mods.We hope to eliminate all issues with craftbukkit forge servers. In the end, we envision a seamless, low lag Magma experience with support for newer 1.12+ versions of Minecraft.
Yes, and all of them are "the next generation"
This is another one person project it seems
Zidane did it actually for real
the repo contains paper files lol
lol I tried helping those ppl with their 1.14 version
anything forge related in 1.14 is a mess lol
huh they have bukkit and spigot in there too, but only the API
plus getting bukkit to work on forge is a nightmare
I can imagine
They have to patch some plugins at runtime to get them to work with forge
yeah no I don't have any faith in this ngl
it's a cool concept, but just considering the way the bukkit api is written, it won't work out
I mean good for them, projects are fun but 🤷♂️
Sponge is the way to go if you need mod support, easier to just accept that 😛
Sponge was started by some people who did those projects afaik
Yee
sponge is designed from the ground up to be compatible with sponge though
uh I think one of their other lead devs was from spout too
yea for sure
I think that's objectively true
Also when you need dumb shit like custom materials and whatnot? just no
using reflection to add new enum values 
Imo bukkit by design is toxic towards mods
Yeah but in the context of using bukkit with mods it is not fine
plugins give you some sanity about the environment if plugins dont treat themselves as mods and hack into nms
nms usage essentially turns your plugin into mod like, your manipulating the environment outside of the environments expectations
thats what mods do
Which is necessary because the API is far from complete
stop supporting spigot, pr valid api's to paper
if Bukkit wasn't so limited then people wouldn't need NMS :]]
outside of plugin channels, how would bukkit plugins interact with mods?
yall plugin devs are to blame 😛
paper has more than 50% usage now, time to drop spigot !
plugin channels is what mod communication is for vector
Is there a persistent data storage option for itemstacks using only the bukkit/spigot/paper API?
Huh
since 1.13 or 1.14
Might be worth looking into then
Pog
everyone here probably feels the same way I do on this but I'll ask it anyway. Does anyone else feel like bukkit isn't relevant anymore? since spigot took over bukkit development, do you think that effectively meant bukkit is was no longer relevant then?
the server software bukkit
would a vanilla spigot server grant any extra features than bukkit would? I'm not talking about plugins, but a spigot server without plugins, would it do anything different other than performance enhancements?
and without any tweaks to bukkit yml or spigot.yml, just the default settings
yeah confusing, my bad
Craftbukkit is the impl
I've brought this up numerous times and every time the general consensus is that cb exists because there's little reason to consolidate it all into spigot
O
More for md to do
well there's only so much a one-man team is willing to do
He's also the only person to make that decision
And I shouldn't have to comment on how good his decision making is
i mean, there really is little reason. CB in its entirety is still hosted on spigot's hub, and spigot just patches into it. Like paper does to spigot.
What's the issue? I don't understand
@fallen oracle @heady spear i actually started to work on it yesterday
I need to find some clever way to stop bukkit from registering my commands to brigadier :/
That's the only thing I am not happy with so far
Sounds cool Mini :]]
what'd u start on
secret
TELL ME
Brigadier PR for ACF 😄
he never finished it
typical
ur not wrong lol
wow congrats 😍 🎈 🥳
HAPPY BIRTHDAY
ur present will be late but rest assured it will arrive
at some point
congratz kashike
thanks simple :)
I've written something terrible as a gift for your birthday
:(
it's an awful script to mostly automate the cleanup of all my movie files, while still letting me fix random things and make sure shit doesn't go crazy
What CI do you guys typically use? Travis?
teamcity is by far the best, but the one thing it doesn't do so well is artifact hosting so most people don't like it
It is opensource.
Yeah, I was on Travis for maven, but I need to update it to gradle.
but comparing the capabilities and easy of setup and configuration of teamcity to literally anything else and it's not even close
wait wtf teamcity is free?
not "free"
I'd prefer not to have to host it
it's free up to a certain number of configurations and agents, but not "totally" free
in that case travis is fine, circleci is fine, appveyor is fine
good for 99% of people though
well fair enough
at work I have to work in jenkins
and ugh, comparing it to teamcity is just oof
I run into something basic and it's hard if not impossible with jenkins, would be simple in teamcity
rinse and repeat
heh
MiniDigger: thank you!
@cosmic raft no harsh code critique? 😦
I like how you come back to IRC for that ^^
MiniDigger: :)
for something this quick and dirty it made the most sense unfortunately
ooh boy space looks really nice
i love jetbrains, they're so 😻
and horrible to work with writing long complex things
A contractor for us sends examples in powershell
Like he implemented JWT in PS
my only PS thing is https://paste.gg/p/kashike/963f61376c4444d28f84018960c2408a
happy bday 😄
thanks glare
There was this guy in my old job who was a PS pro. I was mesmerized at his PS-foo
PS is an interesting thing
It's super powerful, multi-platform
but also not the prettiest
like function New-Retro-Shortcut([string] $Core, [string] $Rom, [string] $Id, [string] $Name)
I really really like bash 😦
I remember having to move a shitton of files from one network drive to another, and i was writing it in java with the nio api and he walks up and is like "what the fuck are you doing"
and he fucking goes to his desk and writes a ps script
in 15 mins
Powershell is extremely powerful, it's quite nice actually
it's ugly but I've done so many awesome things with bash
and it took 5 min to run and was done
whereas my java was bound to take on the order of days
write better java
Can java do "native" file copying?
With tavis can you specify the version of gradle to use? It's defaulting to 5.1.1
i dunno. in another instance of the same problem, that guy was no longer in the company but i ended up just invoking powershell from java with Runtime
Like I am sure powershell just uses some windows api to copy stuff, whole in java you read the whole list
yeah it can
if you use channels it can even use direct hardware copying and even bypass the CPU (same thing native copy does)
what i did was read in the directory tree and start copying, the slow part was reading in the dir tree. but uh ^ didnt know that
so it was not gonna work on the timeframe they needed
so just executed PS from java
lmao
Ah that's nicest
not my proudest moment
maybe, idk
would have to look
it probably falls down to whatever is native for the system
since Files.copy allows copying Paths between multiple filesystems iirc
Ye
@potent fossil 2 days ago I had to upload 2 TB from my computer to my server and I just did tar -c /path/to/dir | ssh remote_server 'tar -xvf - -C /absolute/path/to/remotedir'
uploaded 2 TB in 6 hours
F
i mean, it's painfully clear that i was approaching the problem incorrectly in hindsight but back then i thought what i was doing was genius until I saw how long it was going to take to run :X
lol mass filesystem work is often done better in bash or powershell
yeah
why would you pipe tar over ssh
tar by itself doesn't compress anything, it basically just turns lots of files into 1 file
pipe it into ssh, and pipe that into tar on the other side
now it's just 1 stream of data
thats actually pretty damn smart
no opening files, creating new connections, etc
dumdum windows user, rsync is the way to go
is that really faster than rsync?
yes, for initial copy
rsync checks for file existance first and sends hashes to create patches
if you're just doing an initial copy piping tar into ssh is significantly faster
O_o
1gbps
how the hell did you go from network to hotel
I mean it originally tried to put mom
I have 1gbps too so it would probably be the same speed
depends on peering, the server's uplink, etc
also I split my data up into 6 chunks and did that command 6 times in parallel
Ahh
"Ahh" is what Glare says when he half understands but can't think of anything intelligent to say
🥺

I got confused by the interactive inputs of my own script and accidentally deleted 2 of my largest movies 🙃
which ones kyle?
2 of the LOTRs
ah
I wanted to rename them
and I forgot my script first asks if you want to rename it
er no it first asks if you want to keep it
but it only checks for 'y' so when I started typing it took it as no
and then it asks are you sure
but I typed multiple characters because I was typing the name
rip
sounds like you need to idiot proof your script
but if im the only one that's using it is that even possible?
yeah, add a countdown timer before it actually does anything
are you really REALLY sure you want to do this? proceeding in 120 seconds...
this script is supposed to speed UP the process
and I'm done
damn I'm happy with that, can't imagine how tedious that would have been to do by hand
the script's defaults were right 90% of the time, while adding in the ability to rename stuff came in handy a bunch
uploading fellowship of the ring: 30MB/s ETA: 12 minutes
@ancient bolt show the output of the script? :D
you mean the files?
sure
idk what you mean
