#general
3141 messages · Page 1478 of 4
you can tell it to expire in like 30 mins and the next time you try to get it, it will load it
specify a load function to do the web request in and it just works (tm)
it runs on its own threadpool, so, probably not in the context of bukkit
idk wat ur doin
they have a sync loading cache and an async loading cache and you can specify your own thread executors, so, if the velocity api you're using is specified as thread safe then yes it should be fine
Who uses labeled for loops? That’s gotta be in the running for the most obscure java syntax feature right?
demon did previously i think
I used labels before
so break the right loop for nested ones
but yes, its almost always really ugly
not sure i've ever seen it in java lol
I only ever use them to break outer loops, yeah.
Although you can label any kind of code block, so if you really want you can kinda simulate gotos with them
everybody will yell at you tho
java had goto
but it got removed
In this video from an event presented by the Silicon Valley Java User Group, and the Silicon Valley JavaFX User Group on November 17, 2010, James Gosling answers some of the burning questions surrounding Java.
A few of the things Gosling covers are:
- His departure from Oracle
- Oracle's stewardship of Java
- Android's use of Java, and what he ...
Yes, everyone will yell for good reason, but if you're feeling evil...
until like last week i didnt even know they existed
oh god please help me
drek has acquired forbidden knowledge and therefore new ways to make stupid mistakes
@worn ember please do us a favor and read this book by Dijkstra: https://seriouscomputerist.atariverse.com/media/pdf/book/Structured Programming.pdf
it's very important
wait, i also want to make stupid mistakes, what forbidden knowledge are you talking about?
labels
Does yatopia count as forbbiden knowledge
no it's just forbidden
Ok then, lets use atom spigot
labels 
Wait he's a genius
take a piece of paper, put it between your fingers and pull it backwards fast
hes the creator of java, lol
wtf he looks like 65 in that
he always looked like that
yo that's kinda true
fuckin granpa language
this is the team that created java
i'll just blame those for all my struggles in life
(edited higher res)
i was about to complain about how i can't see shit
no high res for irc users
i'll hang this on my wall
and whenever I get mad at some "java was designed to be a simple language" bs i'll beat the fuck out of this picture
i'm really addicted to operator overloading btw
other than generics, what do you have in java?
operator overloading is what makes a language complicated and hard to follow
why would you ever overload an operator
no it's how you use it. There is nothing wrong with overloading the = sign on a Vector2 class but c++ std was written buy crazy people who thought that std::cout << "" << std::endl; makes sense
new Vector(1,2,3) + new Vector(2,3,4)
but I wouldn't never allow that in my codebases
you mean the new Vector(1,2,3) + new Vector(2,3,4)?
operator overloading in general
oh
if that ever becomes a java feature, it would be banned from code bases I control
upvote
but I highly doubt that the openjdk stewards would ever allow such a "feature"
Operator overloading is great
gross
upvote
https://github.com/darrenburns/ward this looks very fancy @olive marlin 
keep it in kotlin ty
Why is your name so long, I cant even read it lol
cuz hes epic
Hes been demoted from politics manager
no
i have ascended
your name has (ping) does that mean pinging you is fair game?
of course
@waxen panther cool
Can i get some tips or a motivating story on how to start contributing to open source. I mean making pr's and stuff. Whenever I look at some good-first-issue issues, I just get confused by everything and go cry in the corner of my room
ask questions if you're confused, it is (should be anyway) welcomed. that's really all i got
thanks i'll write that down
😎
I mean, with all the new stuff Java has been adding, I wouldn't be so sure tbh. I wouldn't be surprised if some JEP by Brian Goetz came along one day adding operator overloading because "people complain Java is too verbose".
what's wrong with operator overloading
u
complexity
except for ambiguity i think it would be just fine
It gets really complicated really quickly
how come
i agree that people overusing it might become a problem but
other than that operator overloading is completely fine
Brian is particual is really careful
yeah and people will overuse it
yeah but that could be said for every language with operator overloading lol
yeah so what i said here
I depends on the language, but you could for example add on some class ++, += and + and make them do completely different things. x = x + y and x += y can do different things, you can only define one or the other, you can make them not be pure, etc. etc.
and it is a problem in every language with operator overloading
Ooo, it really looks nice. Not sure if I like the annotation naming though, but perhaps can get used to it?
I'm writing a tool and testing it in pytest, but might rewrite it just for fun.
I feel like lately Brian will do anything to remove verbosity from Java tbh. Like, we're getting pattern matching.
static can be overused as well
does that mean the static keyword should be removed
Some would argue that
For pattern matching it's pretty clear what's happening in your code tho
Sure, but it's a feature that I personally don't think was necessary for Java.
yeah but Java deciding that static is fine creates a precedent that they're not necessarily worried about overuse if it makes things simpler
well it does confuse newbies and they do overuse it
That's different to adding features that hurt readability
I find readability one of the lesser problems with operator overloading, though.
Readability was the wrong term, understandability I guess
It's hard to judge exactly what's happening
Cause the verbosity of a method actually helps you understand the code here
i think there should be steps taken to make it more readable syntactically speaking
to differentiate overloaded operators from non-overloaded ones
True, although I wouldn't necessarily be opposed to operator overloading if there were some heavy restrictions on it to ensure it's understandable.
what's the point in overloading them then
To make it easier to write lol
Yeah they shouldn't be able to mutate state for example
yeah
Absolutely
Point was more that Java seems to be moving away from the relatively simple language it once was and adding more language features.
ok look all i want is to be able to use == instead of .equals() in my if statement
i don't even care about adding or substracting
You could critisize that for increased barrier of entry, but I don't think that's fair
that has the same problem as operator overloading though..
== and equals make sense tbh
arguably overriding == might be even more problematic
Well, that, but it also just complicates the language - if people use these new language features, you as a reader also need to know and understand them to properly read the code.

This.. isn't a problem
If people don't understand the language they can just google things they don't understand lol
well, hello there.
If people need to google how a language works every 5 minutes they're probably going to use a different language
Incorrect, see Rust
20 hours, wtf, that's more than you should pay for rent, 20 * 12 * 4 = 1k or smth
Ah yes thanks discord
noo i even google for loops every 5 minutes
"If my overloaded operator mutates state then you can just go look at the implementation and see that that is the case"
Complicated languages are more complicated to read and write.
Of course if the added functionality really enhances the programming language, that's a trade off that should be made.
well technically a 1 bed 1 bath apartment goes for 1300 around here :(
wut
If you're reading code and you see two objects being added with a + you should in general know that you're dealing with operator overloading
If you don't know that as a new language user and try it yourself, you'll figure out that you can't just add two objects without overloading operators and you'll learn about the feature
restrict operator overloading to only == + - * /
but you will be very confused why it doesn't work for you
You'll get a compiler error.
You'll google it and figure it out
What
will you?
Yes and I think a heavily restricted form of operator overloading isn't necessarily bad. However, I don't think Java has a dire need for them. Writing object1.add(object2) versus object1 + object2 isn't really that much different, so I see not much of a reason to add the syntax.
it's sexier
You add two objects and if there isn't operator overloading you'll get a compiler error that you can't do that
- looks nicer
it looks nicer
you can in js
java != js tho
js 
ok but i was confused when using == didn't work
we have strict typing
js is just java but more lightweight
arguably a bad decision on java's part
It looks a bit better, but I wouldn't add the language complexity to Java just to make it look slightly better
to be honest
you tryna start a fight?
js is java for the web
it makes sense but it's a bit ambiguous
is it tho?
prove me wrong
weblets exist
it's in the name
it isn't used in 3 billion devices


thats funny
something that's used in that many devices shouldn't be trusted
one of them is bound to break
yes. its a rock with lightning in it
that’s magic
it's bad for the environment
ik
so is everything
ofc i am proud when my country produces 3 times the waste compared to the world avg
hi
hello
amigo
where do you live?
america, duh
omg canada
no
yes murica
well top five are 1.Canada, 2. Bulgaria 3. United States 4. Estonia and 5. Finland
:)
cant wait till USA buys greenland
Iceland
iceland has 300k+ people living there
iceland is green, greenland is ice, the irony
nah you've got it mixed up
i was joking dark
no
Huh
hi aber
morning
@spiral robin
Hi @limpid comet @mossy vessel @mellow mulch
Wake up node, please
What nod is that
my school's servers
@twin lagoon Tried using ward.
- I kinda like
@testannotations - The fixture binding syntax is useful, but annoying. Wish it would be optional.
- Doesn't have any built in fixtures from the looks of it - so if you want to have temporary test paths that you can inspect if test fails, but also automatically delete next time etc, you need to write it yourself (pytest has it built in).
- Ward seems to crap itself when parsing the test files sometimes, if there's an error in fixture. Sometimes shows nice failure, sometimes full stacktrace.
- Ward doesn't have a plugin system.
- Ward failures seems more readable than Pytest, but I haven't checked how they look in Jenkins and without coloring etc.
does anyone have ,uch experience with modded servers
as in mine does not work
my friend can get in but i cannot
and no clue why
if i look through server logs it just says onetesseract lost connection: Timed out
sometimes can be due to too high of a view distance or too much data that is trying to be sent
maybe lower the view distance in server.properties, works for me most of the time
sad sad sad
Are u looking in mirror again duck
thank you prime video, very cool! https://i.imgur.com/UQDji9M.png
SD
lower definition and you get it for onyl a few days, but the same price 
I would go with buying the SD version and renting the HD version
No 4k version?
also euros
default
MOM GET THE CAMERA
is that fake league?
very proud of you mbax
thats how you write euro lol
€<number>
axe really good this patch
didnt know you lived in america, ded 
huh? am i wrong?
but yeah apparently some write it in front some after
sick burns all around
pretty sure its like that
not everywhere
it's like... either, depending
shut up
standard dutch
Several linguistic issues have arisen in relation to the spelling of the words euro and cent in the many languages of the member states of the European Union, as well as in relation to grammar and the formation of plurals.
In official documents, the name "euro" must be used for the nominative singular in all languages, though different alphabets...
there's a list
looks like 2/3 have it after the number
EU and being consistent is not a thing
You mean I'm not just that good?
Meanwhile, just randomed into a new turbo and got arc warden so this is going poorly
you play unranked so idk xD
turbo sucks tbh
its good to learn some skills but it's really bad for learning dota in general
its also extremely unbalanced
if i wanted to test out enigma i'd be able to off 3 bh's and the game would be over already lol
Not looking to learn! 😛
mineskin does now simp for paper https://github.com/MineSkin/mineskin.org/pull/21
way to procrastinate working on hangar, lmao
I thought inventive was a spigot simp
u
what does a server be better than another
what does a server be better than another
?
I prefer chess
Don't need checkers. People just create accounts for me at this point.

Took them a whole 1 minute to get the unconfirmed account blocked.
not for me
its an experiment that I don't think has been released yet
ah was that what that one did
makes it impossible to type some things, or did, unless they fixed it
I just disabled that since otherwise I can't spam /shrug.
ok
banned oskar is so much better than not banned oskar
laughs in kernel level anti cheat
let's be real most triple a games, riot products, and blizzard products nowadays are shit
i mean riot and blizzard come out with a game every blue moon
riot prioritizes posting golfing pictures on twitter over performing their job and doing the weekly meetings they have scheduled months in advance
so...
cries in warcraft 3 reforged
would have been better if they just didn't release that
no joke btw, their third party API team have bi weekly meetings with API consumers to talk about and resolve issues
and instead of doing that, they ghosted everyone and started posting pictures of them golfing on twitter.
didn't even say it's cancelled.
they just didn't show up lmao.
can't just take one of the best games of the world and drag it thru the mud like that
also the 3rd meeting in a row that was cancelled
L
L
afaik it's every other thursday and they still haven't said anything about it. not a single word.
they have 7? people in the team, and not a single word from any of em
for valorant? or riot api in particular?
cause I heard ppl had good experience for league stuff in the past
maybe that changed
yeah it's usually ok, that team specifically is one of their better ones
but lately riot overall just... kinda suck
moreso than usual
green = minimod, not rioter

pulling a trump ^^
they could at least stop by and say "too busy"
shrug
I stopped partaking in that community in 2018, I'm just there for friends and to lurk. their actions have little consequence to me but it's still sad to see
what did you do api wise?
I was a lib dev and made a few personal discord bots
I was new to programming so I'd rather not dig those projects back up
please do
as of late 2020 or smth yes
they own hypixel studios
yeah that
pretty sure that didn't include the server
also owned by tencent
tic tac toe > football

same energy of comparisons
I'm more of a fan of old maid than tic tac toe but you do you
I agree to that comparison
league 
I mean, league requires mechanical skill too
It's just different
But league requires more strategy, what's what I enjoy about it
Since traditionally I come from civ, the settlers, stronghold, Anno, etc
ah yes civ, that game that takes 3 minutes to end turn 210
Good to get a coffee!
Is anyone here plays quake or diabotical btw
I like dynamic and fast skill-dependent games where you have a fully control of your character. Needless to say that you can do strategies in this games too, it just have more factors


Damn, blue whales are huge. 200 tons and 30 meters long?
Sea animal is really big. No need to worry too much about supporting its own weight compare to land animal
anyone here familiar with Elastic and can help me import a JSON file?
I mean, quick google suggested to just post it with curl?
noit work
what?


can you start telling furrimyst that she's a fucking tyrant
ngl I was mostly just fucking with you with the mute shit but
i miss leaf 😔
I didn't expect escalation
furrimyst will pay dearly
even germany will look bad and say wow we had less reparations to pay than that
back*
cat is very confused
he has no clue

complain about it in syscraft then smh
no
If done right it’s good community engagement I think
One per week "hey look at this cool thing"? I think it's okay.
Could set a limit that’s for mid to small server if you don’t really feel the big operation server should be part of it
yeah it's no #advertising channel
||holy god i wasn't being actually serious. i don't actually care||
and if I skimmed it correctly its only one per week and gets selected, so not everyone can just spam their shitty anarchy servers
This simple smh my head
My mistake to take simple seriously 
@swift root there Larry my suggestion 
😮
It’s really hard to run advertisement channel
does your server have a successful form of one? All that i've seen just devolve into people posting their shitty youtube videos or copy/paste servers
There will always be half assed and low effort advertisement post and if you try to moderate it, the asshole will come out and call you biased

Yeah
hello
hai ❤️
internet of elephants?
mbax 
what are you doing here
I am debating of making one. On next round of spring cleaning
will see how it goes
Got some small streamers but sometimes I honestly just think they suck
And I can’t really just be honest
Someone please make generator for custom mc world generation ty
You feel me?? Lol
it has the vtuber verification thing which is nice
kinda limits it a bit cuz theres an entry barrier to that
so theres not much spam there
@cunning raft hi there
@waxen panther
you can't really just say "your (hard?) work sucks and looks like you made it in 5 mins" which makes it hard to not turn into spam
@waxen panther
sulu, moderator, please ban j roy
I'll take that too
Is it just me or broccos ping is LITERALLY BIGGER?
It's the same
hmmm
No it’s bigger
probably the emojis lol
the emojis cause extra padding
I wasn't angry I was only pretending to be angry
x
the emoji might mess it up but it's so small change whatever
:^)

@vestal jasper
hi cutey
☻
@waxen panther
right I forgot I can harass you and you respond positively to it
x
It’s your emoji yesh I see it now
Only on iOS I think

lol
whats the problem
hi
No the color is all wrong /s
wtf!!_!)!)!))!

sup bbygril

oh look google knows :p
you can get the english one from the server jar
in my downloads folder
there u go
idk where I got it from though
Sure you don’t, Jeb.
i've always just gone to the client jar in %appdata%/.minecraft/versions/1.16.5/ and extract the assets from that jar. it's got everything
don't use masterlock
i have a 160gb json file, what's the best way to split this into multiple smaller files
Translating Terra now and found this ^^
looks like the paperlib message just translated and modified
Alright nevermind the whole thing is gone, lol, I've created a pull request and can't find it suddenly, well 😄
Many plugin actually does those suggestions
And it's got a good reason to do it
oh god, LPL did a good video on masterlock that I saw
So, basically, their LOTO padlocks, plastic body, yet it had one of the most secure cores that they've got
LOTO is somewhat caveated because the fact you're the only key holder should never be a massive implication and a simple plastic tag should do the job, but, ofc, some people are moronic douches, but, still
a plastic LOTO padlock was one of their most secure padlocks
Most secure core in their LOTO lock…
Luckily I guess most people breaking locks aren’t picking them
But still… why
I'd rather an easy to pick lock (that can't be jiggled) that's impossible to break over a plastic lock with a hard to pick core
as far as I can tell you're way more likely to encounter someone that'll break your lock than try to pick it
but lol nice going master
Oh god, i've seen those locks where they basically have a pin which is serated or something and will basically bind in the lock if you pick it improperly, meaning that you've gotta be aware of that pin and how to deal with it, which is why lock enthusiasts are fucking crazy with the number of locks they'll remember stuff about
But, shit like that is comical, on the plus side your average picking moron is gonna be unable to pick it
downfall is is that if they fail to pick it in a certain way, you can no longer use the key, so, now you gotta cut it
woo
alright about to have quizlet carry me through 5 exams
have literally not attended this class more than 3 times
oh god, my uni used to basically call you in if you didn't attend lectures for 6 weeks or something
during like 3rd year, I wasn't all too invested going in, most interesting lesson from a "I really should attend this" was done by somebody from like africa or something so practically nobody could understand the man
others where just basically dull and the effort to wake up stupidly early to attend something I'd be more productive with at home, was, meh
i mean that's the difference tho
this was all online
i'd still sleep thru it though
I did attend his, but, once his ended, it was a fucking pita as basically I had to email some lecturer to ensure that he was gonna be in and ask for him to let me sign in so I wasn't flagged lol
Yea, many of our things where like, early morning, and just, I stayed up all night working on stuff and intended to go in but eventually it was just a level of fuck it
Like, I remember the beginning of the year, I was like, this is gonna be my last year, am gonna ensure I attend every lecture and do good
and then just the lectures where basically sitting in a room listening to droning which just didn't click, or yet another year of "intro to OOP", and so that sorta failed, and then my health took a direct collision with a proverbial bus, and then, eer... yea...

Anyone rocking XFCE as their linux desktop of choice?
lul
uhh yeah its possible
idk if there is a plugin doing it tho
you probably can't even do that at a plugin level
this is the first time i've even seen someone propose the idea
it's doable at plugin level with nms
overwatch has it for OWL and custom games
Just, I mean, server processes the queue every 50ms and you'd need to figure a reliable way to keep stuff in sync, you might also need to modify the server to deal with the other stuff you break in doing that
That would be modifying the netty pipelines to inject pauses, basically
Where can I find the NEWEST java?
I went to the official java website for the newest edition for Java, but when I
ran the bucket it kept saying I was using an outdated version, and said
the bucket won't work unless I update it
.java11 - read this
Follow the guides for how to update to Java 11 here: https://gist.github.com/Proximyst/67615353e2575a71faaff3f7ae9cc2b4
And don't get it from oracle
(Need to update that 🙂)
Should probably get 16 at this point, unless you want to upgrade again in like a month
Where’s the guide on how to adapt the java11 guide for java 16
Is it this?
Yes
Make sure you adjust your JAVA_HOME accordingly, or script to use java 16
I choose 16 (lateest) is that the one?
Yes
Also the installer will set your path iirc ^^ java_home does not matter in this context
Well unless your path has $java_home/bin in it
I can't find it where are list of plugins I can use?
Can I like use any plugin in the internet with the versioin working with 1.16.5
Most of them
there are some plugins that will break with java 16, yeah, most
just booted up windows for the first time in forever and my WSL is broken... 😦
OKay
Can I like re-adress it so that for example people can join from an ip adress like example.com using paper?
Though it can?
Well then I guess I just need to port forward
I'll do that tomorrow
All you need is a DNS entry for that domain pointing to the IP, and a service record if it is not on the default port.
How can I set the server to be like 24/7 up?
Like is it possible for the server to be ran from my wifi router?
Hih
Get a cheap server host
noone's going to play on a server that runs at 2TPS
Save yourself the trouble
I run server from my Samsung smart fridge || it’s a joke in case it isn’t clear ||
Wow eternity why u do that
nomana hot
No u
nah
Say who
me
Dont lie
im not
Ya u are
@uneven cradle let's not advertise please
axolotl
I asked for help. Thank you 😕
Players have recently been randomly disconnected from my server while I'm away. Server runs ab 20% memory util, and 2% cpu utility. Server is connected via ethernet and has a stable uplink of ab 130mbps. DHCP is not enabled.
Can anyone help me figure this out?
Timings report is below, server logs show zero errors or prompts
Aikar's Timings Viewer - View Timings v2 reports from Paper and Sponge
It's just a few players
The issue recently started
Only thing I changed since then is added coreprotect and pregenerated the world
Players say no error, just random disconnect
What machine is the server running on? If it's a home-based computer, is it windows, or is it an actual server box
Windows 10 Home
is the PC going to sleep
Nah, I have it set to not do that
it's just a few players, I imagine it going to sleep would affect all tbh
because if it goes to sleep, players get bonked
are they DCd at the same time?
Lemme check the logs n see
Are your few players also all in the same geographical region?
Yeah they all are
And they weren't on at the same time today so idk if they'd all get DCd, but the two that were on dis get randomly DCd
how close? like same house, neighbourhood, ISP, city, country?
and they did get booted all at once? when there were 2 on?
could they immediately rejoin?
There weren't more than one on at the same time so I'm not sure ab that
The other got on after the first left
According to logs
Looks like they were able to come back tho
Multiple times
players not in that city ever have any issues?
what was the issue number uhhhh
895
.895
ty
just "The Issue™" 
@plucky canopy go through that ^^
also
would this have anything to do with it
the server itself is on the main SSD
idk if this applies
No
If it's not that issue it may be bad internet connection, like if it's not stable or something
That "turn off" though is just for the drive if it's not used at all
gotcha
ill check up on the article
also getting uptimerobot, prob a good idea
at least to see if its a network thing
Sure, why not ^^ need to find which thing does it
I dont think its the netty issue, because my logs dont show any errors
and players didnt get an error either
They got disconnected, so it seems like a network issue to me, not sure
anddd nevermind, already had uptime running from a while back
just some minor ping up to 20ms around when the players joined
not bad
I don't know how frequent that is, if your connection just sometimes between few hours really gets bad for a few seconds, tools like that won't notice that probably - not sure if it's it, just saying I'd say it's another thing to consider ^^
its polling every 5mins, but i can make it shorter
You might check it with other things, could you like run small another server (clean paper for example) and just be connected there? For few hours or so?
wait nvm, pro plan only xd
yeah ill try that
That might let you know if it's a connection or server somehow does something
And see
PebbleHost "
Intel i9-9900K / Xeon E-2288G @ 5Ghz" Sure that xeon at 5GHz for sure 🙂 all the time, definitely
Saying it like that lol
lmAo ikr
I built a PC and until I get a gpu its a minecraft server lmao
i7-10700k
16Gb Ram
Damn that's expensive lol, but hey, everything has a price
SHEEEESH 🥶
only $800ish for the system
not too bad imo
then again, thats 80 and no gpu xd
I'm talking about renting servers
PB for giving you only MC server is quite expensive I'd say
Damn, even the dedicated servers, Ryzen 3600, 64GB RAM, 480GB SSD, 20TB Bandwidth even lol and you're paying $110 monthly
It has advanced linux support tho woah
and ETA 10 Day setup time damn
me. 5800x for mc server 🤡


imagine using AMD A10 for a server
@minor otter Gratulerar med dagen ;)
Gratulerer med dagen du også!! 🥳
dreams are weird
advanced linux support
@potent fossil 
@vestal jasper 
is that meant to be an indentation joke
i dont get it either :3
google reverse image shows its a tiktok meme. no wonder i dont get it
https://www.youtube.com/watch?v=dWNvlyycWzQ | idk if am allowed to post this but YOLO
oki doki boomer
☆twitter - https://twitter.com/sensenzawa
prod by JammyBeatz: https://www.youtube.com/user/Jammybeatz
instrumental: https://www.youtube.com/watch?v=aJQkYESNRLk
cowboy fever dream (no really, im sweating)
☆twitter - https://twitter.com/sensenzawa
✫ discord: http://discord.gg/senzawa
instrumental: https://www.youtube.com/watch?v=gq2VdOXYDaY
Prod. 27Corazones Beats (non-commercial use)
Her youtube is just 10/10 across the board, ngl
there are a few videos of hers I wish didn't exist
I can think of two
same
Also 1.16 million subs, I'm clearly doing something wrong in my life
She did the belle delphine thing too
make it 3
the belle delphine thing? selling bathwater? or the other thing?
She did the vocals and stuff in belles "i'm back" thing
and now she's goneeeee, she's goneeeee, we're missing her cause she's goooooneee
she not doe
you're gone

michael uwu
Anyone here a master of xcode?
Any of you know how to connect the wxwidgets that I installed through homebrew to my xcode project?
@waxen schooner https://youtu.be/ap3hwt-BcyM
oh no
Is anyone in here somewhat knowledgeable regarding GIFs in PhotoShop? I'm trying to edit an existing GIF, but when I open it in Photoshop it recognizes all the frames and layers correctly, but not the changes in between them (aka instead of 150 different layers I now have 150 identical layers in PS)
idk about PS, but in Gimp all layers are shown, so you only see the top one. so you have to hide them all except the one you're actively working on.
Daily dose of AuthMe: https://posili.me/i/2021-05-17_12-44-29.png
Sorry for ban 😦
No problem.
lol
@ashen cliff Bro!
@ashen cliff Bro!
bad brocc
BROS
tell the person to ping the KGB, see if they have the balls to do it
i bet they don't
is there anything better than yml for configs? (and something that can have comments, so not json)
Anything is better than yml almost lol
hocon, but, community is basically ingrained with yaml, so
Depends on what you're doing
Are you asking just for discussion or do you need smth else
and json doesn't have comments
why does it annoy you it's easy to use and okay
yes idk I can't really explain xd so for the spigot/paper community, for public plugins, there's nothing better than yml for configs, right?
yml is most used for configs and is just fine
I'd say not good for saving info, but for configs whatever
Theres hocon, but, as said, the community is pretty much only familiar with yaml and majority of server owners struggle with that already
soooo...
yes for saving data I use json or just databases, not yml
There are better options, but the ordinary server owner is often questioned with yaml, too 
People have problems even with paper config
people have problems
yes that's the point xd some people struggle with yml already
but
yml is most used so doesn't mean you should use something completely different
but I guess the most server owners basically know how to use yml
but instead a lot of server owners won't understand json very good
well then I'll continue to use yml.
toml is just bastardized ini, prove me wrong
well I need a file type that's better than yml but also simple enough for the casual minecraft server owner to understand
Issue is that majority of server owners don't care to understand
yep
and GUIs.. well, it'd be a lot of work to implement it because my yml config has about 400 lines
you could have a 10 minute guide video guide going over yaml and the basics of indentation, etc, and it would likely result in as many questions as it answrs
yes, I always add a little "disclaimer" that I won't support people who messed up the config because they don't care for basic yml
it's like, you watch a 3 min youtube video and you understand the basics of yml
I'd generally recommend to just keep your config as easy as possible and make it hard to mess up. That way people will find it easier to edit the config to their liking and you don't get as many complaints from people because their config is messed up.
yes, I try that as good as possible, but when some people are not willing to read the comments and ask me instead what a certain part does... what should I do more?
yes
a few days ago somebody complained that his plugin isn't working... he modified something in the data json file, which was named data-DO-NOT-MODIFY.json.. like, why?
what did I do :(
Depends on what you currently have, I think you shouldn't expect everyone to understand it, but you can try to lower the amount of complaints. Make sure the config name itself is clear and if you provide a default value, make sure it's an understandable default, not some kind of edge case. Make sure the comments are easy to understand and void of errors. If possible provide (external) documentation on the settings in different languages so non-native speakers can also understand it. Make your config recover from user errors in all cases, so users are never shown a stack trace when enabling - the moment users see a stack trace, they just dump it over to you. You can go on and on, but you can do a lot to minimise the amount of complaints.
My stance generally is that they could've also said nothing and the (potential) bug would go unnoticed for longer. After a while you have enough reviews that single ones don't really matter anymore. For example, when someone complained in a review that I dropped 1.8 support, my average rating only changed by 0.02.
hELP essentials chat isn’t working, i set everything up but it isn’t showing in game
yes, there are always people who complain when dropping support for older versions... but, if they use old version like 1.8, they just have to watch out for other plugins who support those versions, or use older versions of the plugin that dropped the support for their version
Did you know: wifi was first introduced for consumer use in 1997
wow!
Wow! Very cool oskar!
and then: what is Wifi its 1996
Did you know Bluetooth exists to replace RS 232 Serial in medical applications?
Does it have the bandwidth for that?
bluetooth was always written for wireless headsets
does something which enables his microphone and his headphones sound like he picked up the phone while somebody was on the internet
back when ericson existed
Back in my day
Back in cats day to send a message you wrote it on a piece of paper and tied it to a bird
i tied it to a rock ;D
e
I upgraded to a brick messenger service and my dating like fell off a cliff
Brick through window to show affection trick
Hilarious scene from "How I met your mother". I own nothing. Just a clip that makes me laugh and I thought it'd be fun to share it with everyone! Hope you like it!
That was me
Me playing 1.16.5 for the first time: What´s that?
the Game: Netherite the new better Diamond
Ha ha relatable
#games message how did he make that?
resource packs probably
ok?
tf u questionmarking me for i gave you an answer 
Ded got rolled making him tonight's biggest loser
its 4pm but ok
Its 9am for me that doesn't change ur tonight's biggest loser
ok, i hope you choke on your coco

tf yall saying it's literally 3:53 pm smh
yes which is almost 4pm...
7 am
Wrong
ur a dragon what do u know about time
Down
yeah ok mr akatosh
americans smh
It's not a godcomplex if you literally are a god 😉
Ded is the leader of the free world
Don't you love it when your coworker at 3pm sends a message: "I slept through alarms, lol"?
tbh that happens to me sometimes
Ha ha relatable
ngl of all my anxieties, sleeping through alarms or not having them go off is my #1 worry in general
you need them or you just don't want them to text you?
but usually if i know i have to get up at 7 or so i'd usually wake up around that time even without an alarm
They usually started work at 10am and was worried they won't show up today.
true

the pizza who?
Yeah. I thankfully rarely NEED to wake up when my alarm calls. But I used to over sleep and find ways to disable alarms in my sleep, even when I had those that shoot up and split into multiple pieces and you need to connect them to turn it off.
Found out I can somehow turn them off in my sleep 

Nowadays just make sure my alarm won't stop ringing until I dress up and scan qr code outside my room.
lol
gamerpic 😎

Hey. Anyone know deadline for migrating account to microsoft ?
is it not true that non-migrated account will stop working?
the deadline is not public knowledge
the migration hasn't started yet, so when they announce the start, they will announce the deadline (most likely a few months after start)
and yes, after that you will not be able to play with your unmigrated account and most likely will have to contact support
I might be able to answer further questions
Mini is mojang support
I just happened to have read everything mojang officially published on this topic really carefully so that I know what I am allowed to talk about in public, lol
also, happy birthday minecraft! it been 12 years already
Thanks
kinda ironic how the game is older than some of its players
yes
Ok mini but what about meh privacy!!!11!!!
wooosh
I was taking it serious on purpose
next level mini strats
It's ok no one understand what ded tries to say
@static badge today's a day to play OW
most of my teams have been so good that I can afk tape down left click on rein and still team kill without dying
W
Ye lmao that’s where I got it
fact!
Also my name ChalkyJeans7 is from back when I got my 360

@vestal jasper @cosmic raft @frigid shuttle dance https://open.spotify.com/track/3U5JVgI2x4rDyHGObzJfNf?si=7cb900b49bbf447f

good morning
morning
wait that's from 2004??
I will
ok good thanks
NOONE ELSE CAN FEEL IT FOR YOU
shoves it in the "songs I recognise but never knew the name of" playlist
songs that hype me up for lecture
but that i dont play infront of the boys
we all got those songs 😌
ah yes for me that's metalocalypse :^)
lovely
@vestal jasper uwu
sorry, dethklok
gotta say the right name, mb
micghael i sent u two bentley photos and u ignore them both 
rolled
i saw them
and now you have to send them in #adorable-pets
Vic spoiling everything with the embed smh.
happy?
I'm never happy
|| i wasn't expecting that interview. that is incredible ||
Very cool oskar thank you be safe
waiting for my 2 line pr to be reviewed like
people have things to do

i know but i don't thats why it feel like that
i refuse to do anything productive until it gets reviewd
33 minutes
a gitignore pr isnt going to be peaking anyones interest enough to stop working on something else :p
it's job time rn as well for a fair amount of people
monday at 10 am, doubt many people are home
you know im gon put this on my resume
ok
any europeans in the reviewers?
its like almost 7 pm here
.
doesnt change the fact its been half an hour and there are more important prs to do 
lmao
:(
woe is me man i agree
im sorry it's my 2nd pr im just getting too excited

approx half of us, yes
mari xxxxx
I've been out the last 6hrs, aurora is in private things, mini is probably drunk or high
and kneny won't review until I review cause he's a simp
what about the bongs
fuck do I know, I hardly engage in dumb activities 
hookah
hookah isnt dumb
bong
its pog!
whats dat
well, its def not something you need to encourage others to do
but it will also not kill you
imagine .

i imagined it










