#general

3141 messages · Page 151 of 4

austere ivy
void void
#

yes i can see the events

austere ivy
#

Hmm.

#

Try DragEvent?

#

Nevermind.

#

that's for dragging.

void void
#

Yeh handling that one already but not sure if it works (i.e. a shift-click in inv -> chest = puts item in)

austere ivy
#

Oh shift click in inv?

#

That's InventoryClickEvent.

#

And you're going to want to check the ClickType.

void void
#

I just want to detect when items are moved from one inventory to another.

#

Not just shift click.

#

Dragging would work, shift clicking would work

#

But is there an event specifically for putting an item into a chest

#

Or do I need to listen to multiple events for all the different ways someone can put an item in a chest

pulsar wigeon
#

wElL dEsIgNeD aPi

void void
#

I'll take that as I have to listen to multiple events?

austere ivy
#

My web browser just went kaboom when I tried to type something in

#

And my computer is frozen

#

I was checking Javadocs for you but give me a second.

void void
#

im looking in there but I don't see one specifically for what I need

#

so I'll need to piece together all the events that can tell me about a transition

#

drag would be one, which is done already

austere ivy
#

Specifically, what do you need?

#

When an item is moved into a CHEST by a PLAYER?

#

Specifically that?

void void
#

Yes. But all the different ways it can be done, so that nothing is missed.

austere ivy
#

Hmm, what API version?

void void
#

1.13.2 atm

austere ivy
#

Spigot or Paper?

pulsar wigeon
#

player can place a hopper and die on top of it :^)

void void
#

Paper is fine if they have an event for this

#

Smh

#

Well, that sucks.

austere ivy
#

Tell you what.

pulsar wigeon
#

hey, you didn't want anything to be missed

austere ivy
#

I'm going to search the 1.14 Javadocs for all of the 1.12 things we saw above.

void void
#

I mean, yeah but shit lol

austere ivy
#

That's a good compromise because I don't see any 1.13.2 javadocs anywhere.

pulsar wigeon
#

i mean the real question is how much do you care about knowing if it's a player

#

you have a real xy problem on your hands atm

austere ivy
#

What about InventoryEvent?

pulsar wigeon
#

can't listen to events without handler lists

void void
#

I care if it's a player, don't care about non-player initiated

#

and who said anything about listening w/o handler lists

pulsar wigeon
#

InventoryEvent

#

so, you do care if a player kills themselves on a hopper?

void void
#

oh

#

Yeah, I do. So I'll have to figure that out lol

pulsar wigeon
#

what about if a player lures a creeper up to a skeleton, killing the skeleton, dropping a music disc into the hopper into the chest?

austere ivy
#

OK

#

LIKE

#

What is InventoryClickEvent?

#

Sorry.

#

What is InventoryCreativeEvent?

pulsar wigeon
#

click = clicking shit in an inventory

austere ivy
pulsar wigeon
#

creative = getting shit from creative inventory

austere ivy
#

I don't see an InventorySurvivalEvent?

#

It includes hotbar.

pulsar wigeon
#

yes? that's part of the inventory

#

believe it or not

austere ivy
#

So it's basically just InventoryClickEvent but an if statement if they're in creative??¿¿

pulsar wigeon
#

do you understand OOP

void void
#

@pulsar wigeon Nah. I'm trying to catch deliberate movements into a chest from an inventory. So yeah I see what you're saying lol. The player killing himself on top of a hopper would be a major edge case there...but it's also some shit I see people doing lmao.

pulsar wigeon
#

or are you baiting

#

you realize creative players have survival inventories too?

austere ivy
#

Yeah I just mean..

pulsar wigeon
#

simple, what for?

austere ivy
#

I just genuinely don't understand the difference between InventoryCreativeEvent and InventoryClickEvent + if (event.getPlayer().getMode() == GameMode.CREATIVE) {}

pulsar wigeon
#

because the creative inventory doesn't have items in it

#

it's just an infinite item source

austere ivy
#

I mean I would understand if it's getting creative items from the unlimited supply. That makes sense.

#

But it also includes the hotbar.. which makes it a tad bit useless?

void void
#

Is this really XY though lol. I'm asking about how to track when a player deliberately moves an item from an inventory in a chest. WHY I'm doing that doesn't really matter. But if you must know, it's so I can record to a database every time they do so.

#

I want to make sure I am recording every time they put an item in a chest.

austere ivy
#

Maybe I'm just not understanding something.

#

Not baiting or anything I just don't see how it's useful since it includes the hotbar which means it's not exclusively from the creative inventory.

pulsar wigeon
#

so, dropping an item in water that flows into a hopper and goes into a chest counts too?

#

also do you actually care about it being a chest?

#

what if there's 4 hoppers in a loop

#

and they just keep juggling an item around forever

void void
#

Just a chest. Forget the edge cases.

pulsar wigeon
#

are you going to record all that

void void
#

Good lord

austere ivy
#

InventoryInteractEvent and it's known subclasses should work..

pulsar wigeon
#

well you just went from all the different ways it can be done, so that nothing is missed. to Forget the edge cases.

#

so it's clearly an xy problem because you don't actually have a well defined scope of what you are trying to do

void void
#

Ok wiz. Thanks.

austere ivy
#

My method of finding when an event is called is just throw the event in, and then put Bukkit.broadcast(event.getName() + " has been called!");

#

Then just find whatever you can do that doesn't trigger it and then find more events.

#

And if it's calling it from too many things, check if you can add some if statements in there.

#

That's my general workflow on finding exactly when an event is called.

pulsar wigeon
#

that sounds pretty dumb tbh

austere ivy
#

What's your method, then?

#

Bet it takes longer than mine :P

pulsar wigeon
#

i usually just shift shift eventname enter ctrl+b

austere ivy
pulsar wigeon
#

takes about 3 seconds

austere ivy
#

So then you have to go through the code to figure it out?

#

I prefer testing in the battlefield myself.

#

Getting your hands dirty, y'know?

#

I'm going to go.. do something else.

#

Good luck with your adventures, Simple.

#

Wiz, you keep.. doing that, .. oki

#

Oh whoa I'm there too oui oui.

#

That key thing really does work, huh.

#

Doesn't tell you when it's called though >_>

pulsar wigeon
#

i mean you can go to each construction which is more useful imo

#

so you can see what params go into it

#

it's called generally within the next few lines anyway

stiff yarrow
#

@pulsar wigeon what does shift shift do peepoGiga

pulsar wigeon
#

search everywhere

stiff yarrow
#

I thought that was ctrl shift F

pulsar wigeon
#

ctrl shift F is search text

#

does not match symbols, actions, etc

quasi falcon
austere ivy
#

Hey there.

#

I just need to check a player's ontime.

#

Ontime rankup plugin, basic stuff.

#

Do I need a database or can I just reliably check their playtime statistic?

ancient bolt
#

the LCD on my UPS says 10%

#

cinnamon says 32% battery

#

🤔

#

also the % on the UPS is going down really quickly, I wonder if I haven't exercised it enough in the past

#

should run it down more often

#

oh cinnamon's % display just hadn't updated

#

they match now

#

I guess I am running a really power hungry desktop along with 3 1440p monitors and all my other peripherals

#

adds up to a lot of power

cedar herald
wooden meteor
dusk drift
#

When skeles pickup and equip armor
Does the EntityPickupItemEvent fire?

#

or is it a different one?

#

Hard to test since skeles have such a fucking low chance of actually taking armor

left yacht
#

@cosmic raft I finally had to purge coreprotect 😦

#

drive filled up

#

had 50GB free

limber knotBOT
#

can i replace paper with spigot with no issues?

left yacht
#

when I mean purge I mean DROP DATABASE;

limber knotBOT
#

yes Rxlizard

#

sorry i mean can i replace spigot with paper with no issues

#

yes

cosmic raft
#

@left yacht

left yacht
#

that sass

#

smh

limber knotBOT
#

thank you robo been having lots of tps issues with like 10 or more players on hope its an ez fix

cosmic raft
#

And now your database, @left yacht, is in a

#

because now

left yacht
#

getting harassed help @ornate spindle

ornate spindle
obsidian mauve
#

I don't know what's going on in this chat, but I like it

cosmic raft
placid thicket
#

tell me if i am wrong, but when you are running paper, is there any need to change the bukkit/spigot YML files?

cosmic raft
#

they still apply, if that's what you're asking

obsidian mauve
#

You don't need to edit the files for Paper to work or anything

#

It should be a drag and drop kinda deal

placid thicket
#

more or less wondering if there is any point of messing with configs

cosmic raft
austere ivy
#

Ryan

limber knotBOT
#

when putting paper in replace of spigot

austere ivy
#

Purge your CoPr database.

placid thicket
austere ivy
#

Purge your identity.

limber knotBOT
#

the console says its up but i cant connect

cosmic raft
#

factorio? good

#

down for a reason :p

austere ivy
#

I want factorio so much

#

Looks amazing

placid thicket
#

T H E F A C T O R Y M U S T G R O W

void void
#

oh wey if u turn of auth

#

😂

placid thicket
#

really fun, but you will waist waaay too much time

austere ivy
#

But then i think, can this computer even RUN factorio?

placid thicket
#

it has a potatoe vision mode

austere ivy
#

Probably not. So that 50$ on Factorio goes to a new computer fund!

#

No way really?

placid thicket
#

50?! nowhere near that much fam...

austere ivy
#

Oh it’s 30$

#

Huh

cosmic raft
#

i need things to watch

#

tv series, movies

placid thicket
austere ivy
#

kash

#

The Killing

cosmic raft
#

seen it

#

many times

austere ivy
#

It’s on Netflix, watch only 1st season

#

Oh

#

Hmmmmmmmmmm

placid thicket
#

gurren Laggan? (think that's how its spelt)

austere ivy
#

I’ll watch Endgame with you :)

#

Mind if my mother watches too?

cosmic raft
#

heh

void void
#

factorio good game until u geting bored cuz od easynes of the game

#

(late stage)

cosmic raft
#

maybe I'll start WWDITS

austere ivy
#

I’ve been planning on watching it with her, so it could be a fun movie night lol

#

WWDITS?

limber knotBOT
#

anyone else have this issue i threw in paper-626 and launched the server the previous spigot was 1.13.2 and now no one can connect to the server it cant even ping it in the minecraft server list

cosmic raft
#

What We Do in the Shadows

#

.g What We Do in the Shadows

limber knotBOT
austere ivy
#

Ah

#

What abouuuut

void void
#

wach damn god weird cancer

austere ivy
#

Friends

#

The office

cosmic raft
#

yuck

#

to both

void void
#

Can't seem to get the item that's picked up in InventoryClickEvent. When using getCurrentItem() and getCursor() I get Air. When using Inventory#getItem(getSlot()) then I get null.

austere ivy
#

Parks and rec

void void
#

watfak.gif

austere ivy
#

;O

#

The Good Place

#

The good place is super good

cosmic raft
#

maybe I'll re-watch The Good Wife

austere ivy
#

The good PLACE

cosmic raft
#

no

#

The Good Wife

austere ivy
#

Not wife silly

cosmic raft
#

.g The Good Wife

limber knotBOT
austere ivy
#

.g the good place

limber knotBOT
austere ivy
#

BB and BCS?

cosmic raft
#

?

austere ivy
#

Breaking Bad and Better Call Saul

#

You seem to like darker shows

cosmic raft
#

I do, yes

austere ivy
#

Not comedies apparently >:(

cosmic raft
#

nope

#

I can just barely handle B99

austere ivy
#

The office is gold and you have different bad taste

#

:(

cosmic raft
#

don't like it

austere ivy
#

Unironically, Please don’t kick me I’m on mobile and that would actually be a large pain to get back on

#

Hmm well what about The Haunting of Hill House

cosmic raft
#

seen

austere ivy
#

Good show, beautifully shot and made.

#

Hmm

#

Stranger Things I’m guessing.

#

The Truman Show?

cosmic raft
#

seen ST, never heard of TTS

austere ivy
#

That one was good and I don’t like Jim Carrey.

#

Back to the future

#

The revenant, inception

#

Shawshank Redemption was AMAZING.

native thunder
#

The office has too much of that aekcnd hand embarrassment

#

I can't deal with it

austere ivy
#

Se7en

cosmic raft
#

I don't like older movies that much

queen rapids
#

truman show was great

native thunder
#

Second*

austere ivy
#

Later seasons it gets more heartwarming though

#

Just a comedy style I guess lol

#

Truman show makes you question your own existence

#

John Wick

#

Gravity falls

#

Emperors new groove

#

^ amazing

merry talon
#

simple? lefbad

void void
merry talon
#

oh

#

now I can post this

void void
#

Hmm not sure how I feel about it.

#

Just read that entire thread and wtf

merry talon
#

Its stupid

#

Third last comment puts it well

worn ember
#

Lmao

merry talon
#

Like, could you imagine

#

If every package did that

void void
#

I was on his train for a bit until his most recent comment.

merry talon
#

The author is not the one who gets to make the decision whether or not his package is big enough to warrant the begging

#

It should just be banned

void void
#

What the fuck did he do that prompted him to put that on there

#

Don't know if you guys read the entire thread but something about he fucked up and is in major legal trouble, like major. And is being very very vague about it.

#

That is apparently his reason, and he is now keeping it on there

merry talon
#

Yeah I didnt even read into that stupidity

#

Dont care

void void
#

Bigyikes.gif

#

watevs

merry talon
#

He can be living on the streets and I still dont want his spam in my install log

void void
#

i wonder isz it poosible to run mc versions from cmd line without crapy launcher

#

lancher takes 200mb ish ram

merry talon
#

does it not close after you launch it?

void void
#

it is in background tho

#

lol

merry talon
#

close it then

void void
#

finding more eficient ways

worn ember
#

Just run the jar on itself then

#

Idk how to add parameters tho

void void
#

Could not find or load main class net.minecraft.client.Main lal its not posible from cmd

#

fugg

heady spear
#

I don’t understand why people get so damn upset about log messages from free software they’re using

#

If it bothers them, don’t fucking use it. Dumb fucks.

void void
#

it uses 1% of cpu

#

thats why

#

and few mb/kb of hdd space

heady spear
#

don’t fucking use it

#

No is is forcing anyone to use the library

#

No one*

void void
#

everyone

heady spear
#

I’m too angry to write words lel

void void
#

lal free sofware logs iz money

#

no suport da shekels

native thunder
#

Did you see how many times to got spammed lol

heady spear
#

He sends the message once.

#

Libraries depending on his library will trigger the messages again

#

Everyone is using his shit, no one is contributing to his shit. People don’t contribute then get upset because of a few messages. Boo fucking hoo

#

Get some perspective and stop being a little bitch. It’s a fucking log message on installation, who cares?

void void
#

ahahahaahah

heady spear
#

God damn I hate people

void void
#

works best

#

@heady spear except the thing is, if you read the entire thread, it doesn't just send once.

heady spear
#

The postinstall message is triggered several times, I mentioned that in my message

void void
#

yes

#

several

heady spear
#

Yes, because postinstall is triggered several times

void void
#

I understand that

heady spear
#
Thank you for using core-js ( https://github.com/zloirock/core-js )!

Please consider supporting of core-js on Open Collective or Patreon: 
> https://opencollective.com/core-js 
> https://www.patreon.com/zloirock 

Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)

this is his message

void void
#

yup

heady spear
#

that's what he is printing in postinstall

void void
#

correct

heady spear
#

I understand that it's annoying, but it literally doesn't harm anyone

#

they can turn the messages off, which was also mentioned

#

then that fucking kid went on a rant about how upset this makes him and that he won't consider any of the reasons behind this blablabla

#

like get a fucking grip you literal ashtray

void void
#

I'm standing on the outlines of this one.

#
"%systemdrive%\Logs" 
"%LOCALAPPDATA%\Google\CrashReports" 
"%AppData%\Roaming\Mozilla\Firefox\Crash Reports" 
"%ProgramFiles(x86)%\Mozilla Maintenance Service\logs" 
"%systemdrive%\Intel\Logs" 
"%AppData%\Roaming\IObit\IObit Uninstaller\Log" 
"%AppData%\Roaming\IObit\IObit Uninstaller\UMlog" 
"%USERPROFILE%\AppData\Roaming\.minecraft\logs" 
"%USERPROFILE%\AppData\Roaming\.minecraft\crash-reports" 
"%ProgramFiles(x86)%\eemap\logs" 
"%systemroot%\prefetch\" 
"%TEMP%\logs" 
"%systemdrive%\Logs" 
"%ProgramFiles(x86)%\Mozilla Maintenance Service\logs" 
"%systemdrive%\Intel\Logs" 
"%ALLUSERSPROFILE%\Oracle\Java\.oracle_jre_usage" 
"%USERPROFILE%\AppData\Roaming\.minecraft\logs" 
"%USERPROFILE%\AppData\Roaming\.minecraft\crash-reports" 
"%ProgramFiles(x86)%\eemap\logs" ```
#

😍

heady spear
#

We had the same fucking complaints about PlotSquared because we decided to link to paper on startup

#

people were like "REMOVE THIS NOW BECAUSE IT MAKES ME SAD WHEN I LOOK AT THE LOGS MEEHEEHEHEHE"

#

First of all, who the fuck just sits there and reads the logs all day? Get a life, honestly.

#

And if you use the code I've written, WITHOUT MODIFYING IT, you will also have to read the messages I decided to include in MY SOFTWARE that YOU ARE WILLINGLY USING

twilit quarry
#

If you can't handle such a message just don't run a server

void void
#

¯_(ツ)_/¯

heady spear
#

Entitled fuckfaces shouldn't be in software development at all

void void
#

LOL

#

looks at just about the entire MC development community

#

yeah

twilit quarry
#

😂

void void
#

😂

#

iam writing free software that deletes logs now

#

yes

#

thank yu

#

put a donation link in the logs of your log deleter

#

LOL

twilit quarry
void void
#

OFFC

twilit quarry
#

Why are people so chaotic

void void
#

haha because people

quasi valley
#

now it's perfect

void void
#

i fixed it now

#

lol

twilit quarry
#

There's one 75 left PanGTriggered

heady spear
#

Everyone is saying is free and that's why the author can do whatever he wants. And yet so many people are browsing ad-powered websites for free, but use AdBlock to hide them.
How did he think this was a good argument? > People are douchebags all the time, and don't support other creators. So why should I have to??

void void
#

making log deleter to log minecraft sesion files

#

and automaticaly obtain latest version from internet lol

merry talon
#

"If you dont like it dont use it" has always been a fundamentally stupid argument because it means nothing and just stifles improvement

heady spear
#

You can make your own fork and remove the messages.

merry talon
#

you may not want to turn it off in that sense because other important messages come from the same place

heady spear
#

The author of whatever project you're using don't have to do squat

#

They owe you exactly nothing

merry talon
#

That's not true

void void
#

or donate jokbon and he will make logs disapear

#

lol

heady spear
#

Telling them to do something because I don't like the current state is stupid.

merry talon
#

They owe us not devaluing important log output

heady spear
#

what? lol.

void void
#

Step one: del *.log

heady spear
#

Then don't use their shit and write your own shit. They spent their time and effort creating something, they never forced you to use it

#

Stop being an entitled prick and go make your own library if it bothers you

merry talon
#

ah, you'll never get it

#

so 🤷

void void
#

Step 2: del license.txt

stiff yarrow
#

why is city so worked up

heady spear
#

y'all are acting as if software developers owes you a good experience lol

merry talon
#

No one is saying that

heady spear
#

You are, though?

cosmic raft
#

god I wish I could see Alegria live one day

merry talon
#

We're saying they owe us not a bad experience

cosmic raft
limber knotBOT
#

(DiscordBot) Cirque du Soleil - Alegria - length 6m 9s - 24,528 likes, 844 dislikes (96.7%) - 8,254,334 views - Оксана Красильникова on 2007.05.22

void void
#

because people are mad that some dude is putting donation links and a "i need a job" msg in his postinstall

and city is mad that they're mad

there ya go @stiff yarrow theres the tea

heady spear
#

They don't owe you squat, that's the thing. If you have a bad experience using their product, you may opt not to use it

merry talon
#

you can't call not spamming logs a feature

#

that's wrong

heady spear
#

You can not, however, force the author to improve your experience.

twilit quarry
#

If you feel like you're having a bad experience, switch to something else or make your own? PES2_Shrug

merry talon
#

Right, but you're using that as an argument to not have this discussion

#

Which is fucking stupid

worn ember
#

@merry talon lemme spam your logs bby

heady spear
#

No, I am saying that the entire fucking discussion stems out of nonsensical entitlement

void void
#

Okay u can steal other logs tho
xcopy *.log
you wont need to make log then

merry talon
#

lol

#

not at all

heady spear
#

You can have the discussion if you want, there's just no way you'll end up not looking like a fucking ass in the end 🤷

quasi valley
#

the issue author put it that way, but the issue itself doesn't come from entitlement

worn ember
#

Just save your logs to Dev/null

#

Ez

twilit quarry
void void
#

fixed

merry talon
#

so you're ok with windows update deleting your shit because you're not entitled for them not to do that I reckon

heady spear
#

I don't use windows, I don't really care. You also paid to use the software, there's the difference.

void void
#

i delete windows update

quasi valley
#

you paid them for a good experience 👀

void void
#

i even delete music apps

merry talon
#

That's not an answer

heady spear
#

If I pay to use something I can expect a certain standard.

void void
#

i even deleted control panel lol

heady spear
#

If I am not paying for it, I cannot expect the same standard.

worn ember
#

What if Linux did it

#

You didn't pay them

heady spear
#

Also, "deleting your shit" and printing a few log messages are wildly different things

worn ember
#

No.

heady spear
#

strawmanning isn't really my thing, but sure 🤷

merry talon
#

Again, this is about devaluing something which would be fine left untouched

worn ember
#

Is that some weird position?

merry talon
#

Not about not adding value

heady spear
#

If whatever linux distro I used included something that annoyed me enough, I'd switch distros. You as the consumer have the choice to use other products.

merry talon
#

These are fundamentally different

void void
#

i wonder if every file wrote log how much that would have taken of space

heady spear
#

He is devaluing his own product that you still did not pay for

#

That's completely fine, lol

#

He can do whatever the fuck he wants to with his project

merry talon
#

So we're not allowed to ask him not to do that

#

lul

heady spear
#

You are allowed to, you're just not allowed to demand it

void void
#

after deleting all logs i freed up 2gb of system space lol

#

😂

heady spear
#

I never said you can't ask. Strawmanning once again, lol

worn ember
#

I saved 535 gb by deleting an old corrupted windows backup lol

merry talon
#

You dont have to think very hard to see why this practice is not ok

#

So this is very strange of you

heady spear
#

Why is it not okay for him to include a 5 line message in the postinstall of his free-to-use open source library?

worn ember
#

If anything it's strange of you not to see other people's POV

void void
#

i saved 2gb more by deleting license.txt

#

lol

#

or user manual

#

Oo

heady spear
#

The messages can also be disabled by a simple cli argument

void void
#

I'm only not okay with it because of how many libraries depend on it, thus causing massive (absolutely massive) amounts of messages. And that goes to his credit, because he made a wonderful library and lots of people love it. Not knocking that, and I'm okay if it would only be printed once.

merry talon
#

Disabled, along with important information from other packages

#

So not really

heady spear
#

The massive amount of messages is a side effect of what he did, he isn't responsible for other libraries depending on his.

merry talon
#

He absolutely is lol

void void
#

this just stupid to log everything that exist

#

So all the other libraries are supposed to stop using his library because now they're also spamming due to using his library?

merry talon
#

in this case

heady spear
#

🤔 How is he responsible for what other people do with his code?

#

If it bothers them? Yes

void void
#

All they did was use the code.

#

I'm not talking about normal devs.

worn ember
#

That's illegal

heady spear
#

All he did was print a couple of strings.

worn ember
#

Arrest him

void void
#

I'm talking about libraries using his library, and then someone else uses the downstream.

merry talon
#

Because he should have it in mind that what he's making has the SOLE PURPOSE of being depended on

worn ember
#

Isn't he going to jail anyway

void void
#

Now they get two messages. Using his, and using the other library that uses his.

heady spear
#

He said he did it to contribute to the javascript ecosystem and that he doesn't use it on his own, which is pretty honourable lol. I don't think it's fair to paint him out as the bad guy here.

Either way, it doesn't matter if he made his library for others to depend on it. They can depend on something else. His library being an option does not force everyone to use it.

#

I have several shitty libraries that I use for myself, that have the sole purpose of being depended on. Are you now forced to use them?

merry talon
#

Sure but it's fair to expect it not to do dumb shit

heady spear
#

It's fair to request it. He said he's not changing it. End of the fucking story, lol.

void void
#

i think there is too much speach about logs del *.log

merry talon
#

uh

#

yeah okay

heady spear
#

You're free to request it, he is free to respond. People then starting saying that they're enraged by it, etc, which is taking it way too far.

#

To be completely honest, I think it's a bit pathetic to begin with

#

I wouldn't include messages in my own software begging for donations and/or work

#

Would I be slightly annoyed by seeing the spam? Sure

#

But I still believe what he is doing is completely within his right

void void
#

you shud include donation link only in ur website / download page

#

tht it

heady spear
#

I don't have any project that is comparable in size to his, but take PlotSquared, I would never start advertising myself or my shit in the plugin logs

void void
#

i wanna be up to speed on this convo but i got bored of scrolling back

merry talon
#

I'm within my right to be a complete dickhead to everyone I meet

heady spear
#

My name is listed in the credits that you can access via a command

#

But that's it

merry talon
#

Doesnt mean you should defend that decision

stiff yarrow
#

idk citys really mad about something

heady spear
#

All donation links are listed on the software download page

stiff yarrow
#

that's all I've taken

heady spear
#

Because if people cared enough to donate they'd care enough to search up the links

#

Annoying people is really ineffective.

#

That said, I still don't think it's fair to demand that the messages should be removed.

void void
#

something about annoying messages in software i guess

#

i would say only thing: console spam donate me pls is not okay, that would have reverse effect

quasi valley
#

devs putting donation banners in logs + people crying enragedly about it

void void
#

^

#

fork it duh

#

some people crying because of it, some people crying because others are crying about it

heady spear
#

^^

void void
#

or use another plugon

heady spear
#

prplz has a brain, I see.

merry talon
#

the problem is

#

you act like because he made a decision its not ok to continue discussing the topic

void void
#

Forking is not always a solution because there a hundreds of downstream libraries that use the non-forked version and they all spit out the message on postinstall as well.

merry talon
#

that's just obviously wrong

void void
#

i newer donated to someone who desperately spams pls donat

#

So forking it, cool you fixed the main one. Now all the others ones you use still spit it out so unless they all switch to your fork, well

#

You eliminated one of about 25 of the same message.

heady spear
#

I said it's fine to ask for him to remove it, I said it's not fine to demand that he removes it

void void
#

That's the only problem I have with it. The concept of putting a dono link in the logs, I don't give a single fuck

heady spear
#

you keep strawmanning and that makes me believe this conversation is useless in nature lol

#

Ima go drink some coffee or something

void void
#

whcih plugin is the one in question?

#

also grab me a coffee too

#

It's core-js on npm

#

not a plugin

merry talon
#

you keep bringing that up when it has fucking nothing to do with anything

void void
#

make api donations.txt

merry talon
#

I'm not sure you understand what it means

void void
#

where all users can use as one

#

oh spamming in a library on install, yeah idk about that...

#

they can do adwertising as much as they want there lol

heady spear
#

Me: I don't think it's fair to attack him
You: You say we can't talk about this!!!!!

#

Me: I don't think this is a problem
You: WOULD YOU CARE IF WINDOWS UPDATE DELETED ALL OF YOUR THINGS???

merry talon
#

Your definition of attack here isnt important

quasi valley
#

well you also said we can't expect anything from any free project, which is probably the debatable part

void void
#

if people like it they write inside and donators just look at list and chose who deserves most

#

@void void that's the entire convo, that's it; tea spilled

#

lol

heady spear
#

Kenny, I still stand by that. You can't reasonably expect for a free project to cater to your needs and wants.

shell vine
#

then why put it out there at all

void void
#

so this is definitely about an npm module? or what

merry talon
#

Its about devaluing not adding value, again

#

That doesn't apply

heady spear
#

It was, I then complained about a similar experience with PlotSquared

merry talon
#

yes @void void

heady spear
#

Then again, the PlotSquared community is far more trashy than the npm community, so it might not be comparable

void void
#

yeah silly messages on npm module installing are dumb

heady spear
#

I agree, it's dumb.

void void
#

not dumb enough for me to spend an hour talking about it

heady spear
#

I don't agree with his way of advertising. But I think it's completely fair.

void void
#

i deleted factions cuz they adwertise desperately for example... every time u paste the plugin for new server... ugh disabling advertising on 24 of them...

merry talon
#

you just dont care enough then

#

It doesnt mean its dumb for someone else to

heady spear
#

We had the exact same discussion about PlotSquared when we added the paper ad in there, which is where I formed most of my opinions about this

void void
#

paper ad? well thats just in the user's best interest :)

#

a deprecation warning of sorts for spigot

shell vine
#

yea that actually makes a difference PepeHappy

merry talon
#

I dont think that even bears much resemblance to installing 500 dependencies all of which could have important information and also all depend on this project

quasi valley
#

donating to a free project also makes a difference 👀

shell vine
#

nahh

void void
#

lmao ads change people opinions...

#

no

#

ads can help people find what they need
yes

#

hi z

heady spear
#

I don't think he's going to get any donations from the log spam

upper flicker
#

npm community drama

heady spear
#

I still don't think it's fair for people to be "enraged" by it, lol

shell vine
#

lol add a startup delay unless they donate

merry talon
#

Then I think you're just out of touch

upper flicker
#

It’s the internet people are enraged by stupid shit all the fucking time

void void
#

people donate because of ad?
no
people donate because its avesome?
yes

upper flicker
#

All day every god damn day

heady spear
#

although, he did also complain about spending hours and hours on the project not making any money when he could have made money elsewhere and now he's broke

#

like dude, that's on you lol

#

the users don't owe you money, just like you don't owe them your time

#

if you want money, go work

#

Dumb asses thinking they'll get rich from donations. Gtfo of here

shell vine
void void
#

people wont get donations just because of adverts in wrong places

heady spear
#

I feel like I care too much about this shit

#

this is why I stopped doing open source work completely lol, I don't like people

shell vine
#

mAYbe its just u

#

😗

heady spear
#

Yes, you're right. I'm a horrible person

void void
#

defacto other people make free work for u too

#

lol

heady spear
#

Good thing I got into it to begin with tho, considering you're using one of my project 😃

void void
#

and you dont have to pay

normal echo
#

Open source is pretty bad in regards to entitlement, but at the same time I still love it 😛

heady spear
#

I like it, but the PlotSquared community turned into complete trash

#

everyone is entitled and too dumb to read, it's just toxic lol

quasi valley
#

reading more than two lines is hard

shell vine
#

trickle down effect???

void void
#

i think open source should be synonymous with entitlement

upper flicker
#

_glances at the MC community _

void void
#

i said that exact thing about an hour ago, i can prove it

heady spear
#

Z I left IS so now I'm homeless, can I move in with you?

void void
#

@upper flicker fak u

normal echo
upper flicker
#

I’d have to see if the couch is already taken

shell vine
#

nice one twitter link takes up whole screen

upper flicker
#

Tiny screen

shell vine
#

well

#

no

heady spear
#

Or big zoom

void void
#

even on a big screen it takes more than half the screen

upper flicker
#

Compact mode for mobile when discord

quasi valley
#

probably because it's two messages

void void
#

dumcord

quasi valley
#

😂

merry talon
#

can we filter those out since it already embeds lol

void void
#

it would be nice if they made a light client that looked like shit but didnt cost you half your cpu time

heady spear
#

anyways can I be done being mad now? because I forgot to actually get the coffee and now it smells burnt

upper flicker
#

rip

void void
#

you feel mad that other people dont donate to you.
i bet u using others stuff that u didnt donate to

#

fair play

upper flicker
#

Low quality bait

void void
#

^

#

Could've tried harder

#

But it worked I think

heady spear
#

I like the kid in the thread that was like "this is dumb because I use adblock so why would I want to see your ad?"

#

<=> "I am an asshole to others so why would I be nice to you?"

#

completely fair tbh, let's just treat everyone like shit

void void
#

Anarchy!

#

xd

limber knotBOT
#

(DiscordBot) Huh? That doesn't look like a site on the interweb.

void void
#

excuse me

#

okay now it loaded wtf

heady spear
#

yeh it's being dum atm

#

I think they're having some issues :<

void void
#

GITHUB? HOW COULD GITHUB HAVE ISSUES. GITHUB GET YOUR SHIT TOGETHER FAK YOU GITHUB

upper flicker
#

They’re announcing stuff atm, probably got a bunch of extra load

shell vine
#

stop being entitled >:|

heady spear
#

maybe they got too many postinstall messages and crashed idk

void void
#

YOU'RE ENTITLED BY EXPECTING ME TO STOP BEING ENTITLED

#

AIN'T EVEN ENTITLED

quasi valley
#

disgusting

shell vine
void void
#

Lov ya tho

normal echo
void void
#

Sorry capslock was stuck for a second

limber knotBOT
#

(DiscordBot) ✓@github (GitHub): Fund your open source project on your own terms 👩‍💻 With the new FUNDING.yml file, link to funding models includin… https://t.co/BLUmIiqrar (4 minutes and 34 seconds ago)

void void
#

Well, actually

#

Nice

#

yep thats the idea

heady spear
#

I don't get donations ever since I left the p² development team and now I can't afford food

void void
#

iam hired lol

heady spear
#

people making me starve

void void
#

./s

upper flicker
void void
#

people starving too

#

life is shit

heady spear
#

I have the most lines commited to the project

#

they're breaking licenses

void void
#

sign up zachary

heady spear
#

should I do ze dmca

shell vine
#

u quit?

heady spear
#

yes because they all dumb fucks

#

Literally crying over fucking metrics all the time

shell vine
#

i thought you owned the whole thing

void void
#

wow pls dont

tribal yoke
void void
#

over metrics? how?

heady spear
#

Removing features from the bukkit version of the plugin making them paper only whereas using spigot API methods?

void void
#

people love u still

heady spear
#

constant fucking complaints over bstats numbers being wrong

void void
#

he needs uganda aid package

shell vine
#

am confused

heady spear
#

and then this kid jumps in out of nowhere pushing shit without telling everyone thinking he's in charge

void void
#

bstats is nothing bad

heady spear
#

Oh, and then we had kids complain because they accidentally uploaded debug logs to my website while I was on a holiday so I didn't respond for 5 hours, so they were like "we're making a gdpr report!!! you are illegally accessing my data!!!!"

void void
#

bstats help people to make theyr decisions and see how theyr project growin up

heady spear
#

so I just shut down all of the web services, handed over discord server ownership and got the fuck out of there. I don't have enough energy to spend on stupid kiddos lol

#

PlotSquared and FAWE are both dead anyway so 🤷

void void
#

lmao

void void
#

fuck people then

#

xD

heady spear
#

PlotSquared is running on ~1500 servers. Not worth the time lol

#

FAWE is just broken, unstable and unsafe

shell vine
#

just like your heart

heady spear
#

I wouldn't recommend for anyone to use it on a production server

#

It's fine if you're using it in a development environment with backups, I suppose

shell vine
#

Kek im jokin

heady spear
#

PlotSquared isn't really production safe either because no fucking knows how to test the code before making releases

void void
#

haha he is still raging asf omg chill

stiff yarrow
#

Never let the boolys win city weSmart

heady spear
#

Am just projecting lol

#

my brother is in the intensive care unit and am sad but can't admit to being sad on the internet so I get the angeries instead

#

also it's pollen season so my brain is doing the fog constantly

void void
#

whats cause of it

#

if u cant dev project u can go to work.

heady spear
#

my brother? his fucking pancreas exploded and the doctors were like "this cool man, u gon do great. go home and take some painkillers" and then he went into a coma like thanks

void void
#

I'm sorry to hear that man, understandable reaction

#

fuck doctors

#

i hate them

#

also goverment that fill doctors with nonsense paper crap

heady spear
#

also my wisdoom tooth is mildly infected and my apartment smells like garlic, anyone wants to fight?

quasi valley
#

tie it to a door and slam it

#

(or go to a dentist, whichever sounds nicer 👀)

void void
#

make dmca on doctor

#

no realy this is just wrong

#

everytime shit hapens with health care

#

I had all four of my wisdom teeth extracted

#

That was a fun time

quasi valley
#

at once?

void void
#

Yes

quasi valley
#

oh boy, I luckily had two - two

heady spear
#

fuck ._.

void void
#

ok gota work cuz ill starve by chating

heady spear
#

altho I guess it's nice to have them all gone at the same time

void void
#

bye then

#

not bragging but i had five out

#

one extra

#

Bye weks

#

Lawl

#

ok little brag

quasi valley
#

with all four you'll have a burning 1-2 weeks

heady spear
#

I had a tooth pointing straight into my mouth that was removed. Fetal alcohol syndrom I think

void void
#

Yeah, I don't remember exactly what happened. I opted for general anesthetic so I was out lmao.

heady spear
#

or inbreeding, not sure which

void void
#

I do remember 4 gigantic pits in my mouth though.

#

Looked like a damn toddler

heady spear
#

lol, it's really uncommon to go under general anesthetics for dental surgeries here

void void
#

Yeah I had the option to do local but I was like fuck it

heady spear
#

dunno why :/ seems better

void void
#

I felt like it would be more uncomfortable during the surgery if it was local anesthetic

#

So GA, I just felt to sleep and immediately woke up surgery done lmao. Much better time.

stiff yarrow
#

I only got half my wisdom teeth taken out, was too lazy to schedule apt for the others

heady spear
#

I hate GA tho, feels like shit afterwards :/ Have to go under to have my thyroid removed, but idk how comfortable that would be without it lol

void void
#

I've only done GA once honestly, and I remember being so dazed afterward. But overall, I would not mind having it again over local. I don't like the feeling of my entire face being numb lmao

#

Always bite my lip

heady spear
#

There's no reason to have the wisdom teeth taken out unless they're actually going to cause issues. The older you get, the higher the risk for infection

void void
#

Mine were already causing issues unfortunately

heady spear
#

Yeah same, mine is growing into another tooth

#

because why wouldn't it? fucking dumb ass teeth can't even grow properly

void void
#

Lmao, yeah. Mine were pushing out the wrong way, like, sideways almost. And they were breaking the inner gum tissue -.-

#

Retarded teeth

#

End users ^

acoustic pilot
#

Me too, got mine pulled out a bit late (in my mid twenties). By that time they had already caused some irreversible crowding 😦

#

But had it all pulled in one session under GA, same as you

#

Went to sleep, woke up, and it was done

worn ember
#

I got mine pulled cuz my mouth was too small

#

Stupid small mouths smh

limber knotBOT
#

is the uppercase world names issue for 1.14 ever going be resolved?

#

im sure mojang doesnt know how :)

pulsar wigeon
#

werent they just made case insensitive in spigot

velvet mortar
frosty marten
quartz vapor
#

ShopGUI+ finally updated to 1.14.1 😄
Anyone know of any good 1.14 pre made configs for it

acoustic pilot
#

ShopGUI+'s config structure is so bad, I'm suprised someone hasn't just written a config generator for it yet considering how popular it is

void void
#

lol

quartz vapor
#

a config gen would be amazing lol

acoustic pilot
#

In the past when I was still running my own server I had considered it, making my own better format and then feeding it thru a Python script that would generate the ShopGUI+ config

#

Fortunately, I don't have to deal with that plugin any more 😃

orchid bear
ebon root
#

Does anyone here have salesforce ?

ashen rampart
void void
lapis kelp
void void
#

@lapis kelp лох

gloomy sphinx
#

Midori alive!

lapis kelp
#

за мать извенись

#

@void void

void void
#

@lapis kelp жду извинения

lapis kelp
#

vodka

#

cheburashka

void void
#

CYKA BLIAT

austere ivy
#

e

void void
#

its not

#

lmao

austere ivy
#

It’s hip hop

void void
#

Putin says its photoshoped

pulsar wigeon
#

i feel like some nationalists are planning a hostile takeover in paper discord's #general

#

you'd think there's better places for that

void void
#

haha ok

austere ivy
#

@meager perch

#

What destroyed someone's career?

void void
#

What changes are in #39? It says "No changes".

austere ivy
#

The changes are: "No changes"

#

Obviously /s

void void
#

Sounds shady

#

did they add some auto OP for certain players

austere ivy
#

It is.

void void
#

hmm

austere ivy
#

Definitely.

#

That's what they did.

void void
#

hmmm

austere ivy
#

Don't want to let me on your server.

#

I've got it.

void void
#

is that a threat Brian??

#

my dad works at discord

austere ivy
#

I was just about to log onto Hypixel and wreak some havoc, but I'm going to take a quick break, just destroyed Mineplex and The Hive.

#

100%, yes.

void void
#

i will have you banned

austere ivy
#

I WILL WREAK HAVOC ON HIS SERVER

#

:D

void void
#

do you even know my ip m8

austere ivy
#

yeah it's 127.0.0.1

void void
#

fak

austere ivy
#

:D

void void
#

brian

#

what do you think about the bedrock version

pulsar wigeon
#

it's hard

austere ivy
#

eh

#

I can't run it

#

I have a Macbook

void void
#

me too

austere ivy
#

so, for that reason, I don't like it very much

void void
#

but like, the requirements for running a server must be way less right

#

with that sweet sweet c++

austere ivy
#

not exactly.

pulsar wigeon
#

guys java is a bad language because it's java right?

austere ivy
#

I'm not entirely knowledgable on it, but just since it's C++ doesn't mean it'll be a ton faster.

#

¯_(ツ)_/¯

void void
#

cant you guys make mc using Erlang instead

#

or why not a Haskell server?

austere ivy
#

I mean

pulsar wigeon
#

🎣

austere ivy
#

You can I guess

#

¯_(ツ)_/¯

pulsar wigeon
#

yea go for it

austere ivy
#

🎣 🎣

void void
#

im gonna make a Haskell server

pulsar wigeon
#

protocol info is all up there

#

just have to write it ezpz

austere ivy
#

🎣 🍿 🥔

#

Get to it!

void void
#

what have I thrown myself into

acoustic pilot
#

as I understand it, bedrock performance isn't too much better because internally it's designed much in the same way as the java version

void void
#

i see

acoustic pilot
#

poor design is why minecraft is slow

#

not java

void void
#

but at least you can do more low level stuff with c++ at least

#

could you like implement SSE and AVX stuff or is there a use case for that?

pulsar wigeon
#

what makes you think java doesn't use those?

void void
#

i had no clue about that, ive only done it with C

#

but thats cool

pulsar wigeon
#

what is

void void
#

well, that java uses it, I can just imagine the headache to make it work for different cpu's

pulsar wigeon
#

i never said it uses it

void void
#

oh I thought u knew, my bad

austere ivy
#

Wiz is kind of new here.

#

I'm mentoring him <3

#

It's okay wiz we'll learn about that stuff later.

pulsar wigeon
#

i was just wondering why you thought the presence of a VM necessitated that the VM can't optimize to the underlying platform

#

like, if you have a dumb c/c++ compiler, it won't optimize those things either

#

LUL

austere ivy
#

Anyway Fredrik to answer your questions, the presence of a VM does not mean that the VM can't optimize to the underlying platform.

#

Like, if you have a silly C/C++ compiler, it won't optimize those things either.

#

Wiz, take notes, you could learn some things ;)

pulsar wigeon
#

🎣

void void
#

haha

austere ivy
#

baited oof

#

Okay see you folks later.

void void
#

how come wiz has a color and you dont brian

quasi valley
#

racist

void void
#

doesnt that mean something

pulsar wigeon
#

cuz i lost my table (╯°□°)╯︵ ┻━┻

void void
#

where do you have ur laptop then

#

or pc

quasi valley
#

┬─┬ ノ( ゜-゜ノ)

void void
#

oh I just saw the right side

#

lolol

#

if I sell my table, can I be on there too?

#

if I show my receipt and stuff

gloomy sphinx
#

Java is slow because it is powered by printers

pulsar wigeon
#

Java is slow because the bean farmers are unionized

ancient bolt
#

I sure wish intellij's REST API tool was better

#

has a couple annoying dealbreakers

merry talon
#

someone's ought to ionize them then

#

@ancient bolt is it supposed to be like postman?

#

or for creating em

gloomy sphinx
#

hot chocolate without the sugar is offending

ancient bolt
#

@merry talon like postman

#

it's a nice setup that I like quite a lot

#

very intellij-y, all text, with smart highlighting and whatnot

#

but when you run a request it creates a runconfig, which like wtf

#

also I can't put the window in a toolbar, it's just a normal editor

#

so easy to get lost and not organized

#

if they fixed those 2 issues it would be great

#

ironically the now deprecated "test RESTful webservice" or "REST Client" tool in intellij is better as it has neither issue

merry talon
#

oh

ancient bolt
#

but the new tool is cool as you can build requests using environment variables, and select the environment you wish to run it with when you run it

#

e.g. prod vs dev

#

I'm going to see if I can create a plugin that automatically deletes temp run configs after they're created and used once

void void
#

demon

#

what is version #39 about?

golden gust
#

We updated the build number

sour sinew
limber knotBOT
#

changelog #40: Incremented 39 to 40

void void
#

alright

#

ty

upper flicker
#

still no private tickets

#

Might be getting there though

ancient bolt
#

nice

merry talon
#

so I discovered that my weird issue with videos and gifs pinning my CPU and locking up my PC is specific to chromium

#

which is why it happens on discord too

#

but only arbitrarily

#

so weird

#

oh wow

#

disabling hardware accel fixed it

void void
#

same

#

hardware ace faks things ap

merry talon
#

I wonder if it was just the gpu encoders it didn't like

#

since some twitch streams worked others didn't

#

but I figured twitch would transcode it all to the same thing

limber knotBOT
#

twitch only transcodes bigger ones (you can tell that by whether or not a stream has quality options) otherwise you'll get whatever the streamer outputs

mental badge
tardy lynx
#

Aqua?

void void
#

hardware acceleration breaks youtube too

worn ember
#

what hardware acceleration are we talking about?

#

@upper flicker why do you need private tickets?

tropic flame
#

lol I always disable hardware acceleration

upper flicker
#

Because I don’t want your grubby hands on all the tickets

merry talon
#

phoenix616: all ones I've tried are partnered

#

and have that

limber knotBOT
#

strange

merry talon
#

all youtube videos work fine

#

presumably because they transcode to h264

limber knotBOT
#

there are video stats in the advanced settings menu, did you look at that yet?

#

(youtube also has video stats with that info iirc)

merry talon
#

hmm let me see

void void
#

for some reason when i go off the youtube tab for like 5 minutes and come back to it, the video stops playing but the audio works fine

worn ember
#

isnt h265 the new one?

merry talon
#

no one uses that yet

worn ember
#

slow mofo's

void void
#

h265+ is better

golden gust
#

it's all catchup

worn ember
#

ketchup

serene quail
merry talon
#

looks like both a non working and working stream are using avc1

#

which is h264

#

🤷

#

which youtube is using as well

hexed mirage
merry talon
#

h265 uses a lot more cpu

#

for a non proportionate reduction in file size

#

probably not worth it for them

golden gust
#

@hexed mirage Please don't PM us, we have an API called parchment for updates these days

worn ember
#

rock paper spigot

void void
#

Paper, Parchment, Fabric

merry talon
#

concrete paper spigot*

serene quail
#

youtube is mostly using vp9 and is falling back to h264 when unavayable

merry talon
#

guess its unavailable for me then

serene quail
#

what specs you have?

merry talon
#

shit

#

core 2 quad

serene quail
#

gpu(if you enabled hardware rendering in browser)

merry talon
#

integrated

serene quail
#

ooh

#

yeah that thing is definetly not supporting

merry talon
#

but like

#

it should just software decode it then no?

serene quail
#

what?

#

oh i am dumb read it wrong

#

yeah it does most of the time

#

even vp9

merry talon
#

or maybe it knows avc will be a better experience 🤷

serene quail
#

usually vp9 is better software decoded

#

like why does it even matter to you?

merry talon
#

wut

serene quail
#

also youtube stores all the original files

void void
merry talon
#

I dont think they do

#

only transcoded versions

serene quail
#

for example 4k videos uploaded before its support on youtube were upgraded to 4k

#

after it was supported

merry talon
#

my video I just downloaded isn't the original

serene quail
#

well ofc they dont deliver the original files to users

#

they deliver compressed but they still have the original

merry talon
#

why wouldn't they

#

downloaded through the studio I mean

#

my video

limber knotBOT
#

they probably compress them to save storage cost ¯_(ツ)_/¯

serene quail
#

lemme try uploading and downloading uncompressed

merry talon
#

then that's not the original lol

limber knotBOT
#

I figure they must be keeping the originals

merry talon
#

they have the filename of the original

#

but I can't download it

limber knotBOT
#

probably in some cold storage/backup or something

#

Otherwise when they did things like adding VP9 or AV1 support they'd either have to transcode from their transcode or only support it for new uploads

merry talon
#

yeah fair point

#

you can upload some huge videos though lol

#

but then again, they aren't profitable

serene quail
#

yeah tried downloading a music video i uploaded at ultrahigh bitrate and it downloaded a more compressed video

#

i had to 2 times upload 500 and 800 gb videos to youtube

merry talon
#

I wonder how they allocate the transcoding resources

#

whether they give more to big channels

worn prairie
serene quail
#

i think its the same for everyone

#

maybe depends on size

merry talon
#

yeah most likely

#

since they have a reputation about not really caring about big channels

#

lol

serene quail
#

like channel size wise i can only compare between 13 and 15k(i think) and it looked the same

merry talon
#

I dont get why there's still no setting to not make the video public until the transcode finishes