#general

3141 messages Β· Page 1217 of 4

slim nymph
#

almost nothing supports HDR10+

#

Dolby Vision won

true canyon
#

But HDR10+ has at least 10 HDRs

coarse lily
#

Yeah I wouldn't buy a Samsung TV.

#

I don't even own a TV.

#

I'm that guy.

slim nymph
#

whoa nice video i just found: https://www.youtube.com/watch?v=S3FJHIY0ag8&feature=emb_rel_end Dolby looks better to me with better contrast

Today we answer the other question of whether Dolby Vision is better than HDR10+, the other dynamic metadata HDR format.

The Vizio P Series Quantum X is one of the only TVs that support all the HDR standards out there, and we’ll be using it for our comparison

πŸ‘‰πŸΎ Come along for the ride! https://bit.ly/2VZS3fL

++=========================++

ME...

β–Ά Play video
coarse lily
#

I mean Dolby is more bits.

#

So it stands to reason it'd look better.

slim nymph
#

that thumbnail is misleading, its inverse lol

#

dolby is the blue on left, hdr10+ on right in red

#

they refuse to add support for dolby vision

#

so youll be buying a tv that cant even support the best video format most providers use

#

amazons like the only one i know that supports 10+

#

Vizio is likely my next TV

#

I have an LG with the older spec of DV, which Xbox cant support apparently 😦

waxen panther
#

the parkour gets better

#

it's rough at the start

#

it's only bad when you're being impatient

#

which i was a lot

#

it's only bad when you're being impatient
Kappa

#

theres only a few places where it's like that tbh

#

you've just started the red planet right

#

or are you still on the first one

#

yeah i know exactly the bit you're failing on

#

it's easily the worst example of it

#

you wont be on red for long anyway

#

the next planet is easier

#

just dont jump horizontally while climbing

magic river
#

Isn't HDR10+ the open spec while Dolby is yet another license fee?

waxen panther
#

upwards is normally fine

magic river
#

Everything on Prime is HDR10+, that's not nothing

waxen panther
#

i prefer fallen orders tbh, it was frustrating at the start though

#

the lock in ness of uncharted for example annoys me

#

parkour is much easier when you get a few skills

#

have you had one of the training things yet

waxen panther
#

ah nah, you'll see what i mean when you get one

#

they're cool

tired mirage
#

Anyone know a plugin that lets people change their suffix with a command like /suffix?

ancient bolt
#

most things I watch on prime video, netflix, or disney+ tend to be dolby vision

#

in fairness dolby vision is a higher quality standard than HDR10

#

probably not anything that actually matters tho

void void
#

Is anyone here experienced with the holographic displays plugin?

#

πŸ˜”

void void
#

it does

#

I actually wanted to have a conversation about something

#

then ask

#

the question

golden gust
#

So, just ask your actual question or whatever

void void
#

^^^

limber knotBOT
#

If you have a question, please just ask it. Don't look for staff or topic experts. Don't ask to ask or ask if people are awake or available. Just ask the question to the channel straight out, and wait patiently for a reply.

golden gust
#

I haven't used HD in years, so, what I know is generally old distant memories, am not gonna say yes, I'm experienced with it, but, heck, maybe I know

void void
#

ask the question lmao

#

So basically I'm having a problem using {status: (bungeeserver)} I would set the name in and it will always be offline. It works for other servers but not the specific one I'm trying to do

#

Never occurred this before

ancient bolt
#

how the hell would that question not fall under....whatever

void void
#

The name matches what the bungee server is and I'm beggining to run out of ideas

golden gust
#

is there a player on the server which is apparently dead?

#

Does HD require a plugin on the other server?

void void
#
  1. Yes players can go on it
    2.no
golden gust
#

I mean, a plugin on the proxy or something

#

"can go" and "are on" are two different things

void void
#

I have HD on the server (not bungee) and pinger is already enabled

#

Let me double check pinger actually

#

pastebin it

#

dont just paste it in

limber knotBOT
void void
#

Which config you want me to send?

#

Pinger is on btw

#

Of bungee or the server it leads to

#

One sec my vps is being a bit weird all of a sudden

#

vps
kekw

waxen panther
#

Jettison Jerry
KEKW

void void
#

I feel like an idiot I just figured it out..... (accidentally deleted my config which lead me to reconfiguring and finding the issue)

wispy helm
#

Moba has had that for a while now.

#

281 day uptime πŸ‘€

void void
#

Lmao thanks

coarse lily
#

We did it.

#

Woo

ancient bolt
#

so yeah probably gonna Delete User

viral sapphire
#

anyone know the general process of running a paper server in a docker container?

waxen panther
#

typical, the anti-xray dev is the cheating forum user smh.

magic river
#
FROM adoptopenjdk:15-jdk-hotspot
RUN mkdir /opt/paper
COPY paperclip.jar /opt/paper
CMD ["java", "-jar", "/opt/paper/paperclip.jar"]
#

Modify from there

#

That's your Dockerfile, it needs to have a paperclip.jar next to it or you need to change the name in the COPY rule

#

(and the command)

#

You could get fancy and have it cache a patched server jar instead of redoing it each time but that's the advanced class (and I'd have to look up how to make it patch the server but not start it to show how to do that)

ancient bolt
#

wouldn't you save like 50MB or so if you did from adoptopenjdk:15-jre-hotspot?

magic river
#

Don't you need the JDK to do the patching?

ancient bolt
#

no

magic river
#

Then use jre instead

ancient bolt
#

well...not that I'm aware

#

just because I wrote paperclip doesn't mean I know how it works

golden gust
#

JRE is fine, only time we tell people to use the JDK is because the installer for that on windows generally does a slightly better job :L

magic river
#

15 is the new LTS, right?

golden gust
#

17

#

15 is latest release afaik

magic river
#

Ah, well use 15 anyway, it's better πŸ˜›

#

Just make sure you bump to 16 and then 17 when they come out

#

Since the JVM does basically everything itself you could probably get away with using the alpine variant for an even smaller image but that might break any dependencies that use JNI libraries

golden gust
#

that often causes issues with sqlite iirc

magic river
#

I don't know why people get so hyped about using alpine in docker though, musl's malloc is slow as fuck so most things run really badly

golden gust
#

I can see the pros of tryna have a minimal af environment, but, alpine is one of those "great until it breaks stuff and you spend hours tryna track it down" type deals

magic river
#

If I had to guess I'd say it came from the Go people

#

Their binaries use a GC that has its own allocator and the runtime only touches libc to support local name resolution so having a crap libc doesn't bother them

#

rust using jemalloc can sometimes make sense on alpine too

#

Pretty much everything else, no

ancient bolt
#

the allocator doesn't matter for java either, esp if you pretouch. if you don't pretouch then it'll only matter until you've reached -Xmx

#

the JVMs allocator once it's received memory is extremely fast

merry talon
#

oh yeah I used to run everything in alpine

#

and then I realized the time spent fooling with it one night was so much I could've just bought another drive

#

apk is cool though

left swift
#

That one

lean kiln
#

no

grave rover
#

most major plugins support java 11 just fine

left swift
#

Doubt any popular ones will give problems

grave rover
#

i mean all the ones i use

lean kiln
#

even java 15 should be fine for most plugins now

#

now that protocollib is fixed

#

lots of people have been using 11 for like 2+ years now

coarse lily
#

You should be updating plugins as new releases are out anyway.

#

It's not a pain to replace a plugin with an update.

#

Sure, in a perfect world you just drop in the updated plugin. But you have to test stuff which can take time.

#

But anyway, the point is that most or all of the "big" stuff works on Java 11.

lean kiln
#

you can never be 100%

#

things that have issues are edge cases

coarse lily
#

I don't think anyone's made a list.

#

There's like 23094823098 plugins.

#

Best thing to do is to setup a test server of your stuff and test it.

#

Since no one knows your setup but you.

lean kiln
#

the only stuff that would break is certain hacky reflection things

coarse lily
#

hacky plugins.

#

Like ChatControl

lean kiln
#

which most plugin authors will have known about these changes for years

coarse lily
#

Althuogh I doubt ChatControl has anything like reflection.

#

Because that would require knowing what reflection is.

lean kiln
#

11 is not a big deal

#

I would say you will most likely have no issues using java 15

#

11 even less issues

#

and I would recommend 11 as it is LTS

#

You can have multiple JDKs installed to your machine, the JAVA_HOME environment variable points to the directory of the active one

coarse lily
#

Do java -version

#

If you have 1.8 then install 1.11 as well.

meager tusk
#

If you don't want to change your JAVA_HOME

#

you can just use the directory of java ig

#

bin/java -jar

#

or something like that

lean kiln
#

yeah u can just use the executable with a fully qualified path

#

java.exe on windows

coarse lily
#

Instead of java paper.jar

meager tusk
#

by adding the path where java is located before java

coarse lily
#

Yeah

meager tusk
coarse lily
#

/usr/bin/java11/etc.

meager tusk
#

You always do that, your PATH variable simply makes it so you don't have to type all of that out :P

coarse lily
#

Yeah that's generally what you'd do if you aren't running more than one Java version.

#

But it's pretty standard to run a few.

spiral robin
#

@meager tusk peepoheart peepoxYes

meager tusk
spiral robin
viral hornet
#

morn kenny

quasi valley
#

does good old paste.gg have api you can easily use to create pastes? didn't find anything on it :(

#

gday coumm

viral hornet
quasi valley
#

jc javascript smolBonk

lean kiln
#

oh camm beat me lol

quasi valley
#

ah perfect, thank you πŸ˜„

viral hornet
#

I would never beat you jmp πŸ˜”

#

Not in the mean way SlowPensive

lean kiln
#

lmao

#

whats the nice way to beat someone

viral hornet
#

😳

#

Uhh

lean kiln
#

bruh

viral hornet
#

I don't konw what you're talking about

lean kiln
#

imdead

viral hornet
#

niiight jmp

potent fossil
#

henlo camm

#

@viral hornet πŸ₯Ί notice me

viral hornet
#

simple πŸ₯Ί

lean kiln
#

is it 2012 in australia yet

potent fossil
#

yay pepelove

viral hornet
#

it is not

#

5 more painful hours

#

I'm going to take my sleeping meds and a few whiskys in an hour or so

potent fossil
#

implying it will be better in 2021

viral hornet
#

So I just wake up in 2021

lean kiln
#

kek

potent fossil
#

watch something horrible happen on new years

viral hornet
#

Well

#

here's hoping nothing does

potent fossil
#

breaking news godzilla literally just appeared -- wait, getting new information -- ah, okay, there is actually a dedicated godzilla per 1 million living persons on earth

merry talon
#

not even 1:1?

potent fossil
#

no need

void void
lean kiln
#

yeah I heard aikar was in dinnerbones basement

#

idk what they were doing though

viral hornet
#

@twin lagoon gm

void void
#

Oh nice aikar has been secretly working for mojang

vernal moth
#

I wish

void void
#

That's why sculk sensors aren't as laggy as i thought they would be

void void
pastel pivot
vernal moth
#

Working for and working with is different

twin lagoon
#

they're in talks with mojang (as said by aikar)

#

just not working for

#

@viral hornet almost happy new year tacoplead

coarse lily
#

I guess people see Mojmap and they think "paper is part of Mojang"

mental meadow
#

hwweo

viral hornet
#

aurora peepohey

ancient bolt
#

so it was a machine who posted it

twin lagoon
#

awawa

mental meadow
#

uwu

#

what should i do know that my post is finished

#

I got an idea but webdev sucks

vernal moth
#

Glad you had the same idea πŸ˜‚

mental meadow
#

I don't think I did but what was your idea

coarse lily
#

Hey webdev has feelings too.

vernal moth
#

I mean, just looking around stuff and point out stuff that is ugly on hangar and should look differently helps

mental meadow
#

I can do that, and probably help fix a bit as well

#

But that wasn't my idea lol

coarse lily
#

Mini I might be working on a redesign.

mental meadow
#

i sadly didn't win the lottery yesterday

#

I say it's rigged

pastel pivot
#

DemonWav yes CTRL+V. But I wrote it.

potent fossil
void void
#

everything is smaller in alpine

coarse lily
potent fossil
#

i meant of you

#

nudes

coarse lily
#

Look you gotta go look at the billboards just like everyone else.

#

No special treatment.

void void
cosmic raft
#

boo!

coarse lily
#

Evenin'

quasi valley
#

baa!

potent fossil
#

LMAO

#

fucking star trek discovery

#

they're eating replicated food and osira goes "doesnt quite taste like the real thing ... blablabla" and the admiral goes "its made of our shit you know"

vernal moth
#

cool, I deadlocked IJ

#

I cant interact with any window, butcause I need to solve a rebase conflict

#

but I cant interact with that window

coarse lily
#

Yikes

void void
#

just use git cli smh

vernal moth
#

I just ran git -> update project mikro

#

I cant just pull since I have local changes

#

IJ solves thgat nicely normally

void void
#

git stash?

#

idk what "update project" does in ij

#

i suppose it tries to pull

vernal moth
#

shelves, ye

ancient bolt
#

Yeah intelliJ's shelves are nicer than git stash but you gotta do it through intelliJ obv so I usually stick with stash

#

I actually really like intellij's git UX but I still tend to use the CLI

olive garden
#

How do you handle WSL and non-WSL development? Should I have a git.exe and git, same with mvn, java, gcc, etc? Maybe a symlink so that WSL and non-WSL share the local maven repo

#

wsl git on windows is way too slow

twin lagoon
#

run everything in wsl?

ancient bolt
potent fossil
#

Can I run IJ in WSL? Cause otherwise doesnt seem there is good integration

ancient bolt
#

Yeah you can

#

Really easy and works great

potent fossil
#

oh really

#

surprising

olive garden
#

Do I want to move all my stuff inside the WSL filesystem though?

ancient bolt
#

Just need an x11 server in windows which you can install easily

potent fossil
#

oh shit

twin lagoon
#

definitely

potent fossil
#

demon write a blog post with copypaste steps thx

twin lagoon
#

you can mount your WSL filesystem as network share

#

\\wsl$

olive garden
#

yeah, you told me about that a few months ago :D

twin lagoon
#

you don't have to run IJ in WSL but you can

ancient bolt
#

Z said microsoft has plans to bake that all into later versions of win10 directly too, but he didn't provide a source

#

It would be amazing if they did tho

twin lagoon
#

it's a thing in the insider preview or going to be a thing

#

it's legit

ancient bolt
#

Omg

#

Literally seamless Linux apps in windows. The year for Linux on the desktop is here, provided by windows

twin lagoon
#

Yup! Here are some key differences:

  • You don't need to start up or start the server, we'll handle that for you
  • We are running a Wayland based server
  • Lovely integration with Windows (notice the drop shadow on the Window, icon support, and more!)
#

To put it in a sentence: We have a Wayland server running in WSL, and connect to that via an RDP connection from Windows! :)

ancient bolt
potent fossil
#

ooh thanks

twin lagoon
#

ooo i can update the wsl kernel

ancient bolt
#

Ooh wayland instead of x11

#

Super modern

#

I'm sure windows wayland actually works and is stable on all hardware too

#

/me runs

#

This is like the seamless mode of vbox but it actually works and it's not awful

olive garden
#

Is there any downside if I do all development related stuff in the WSL FS? I think I would stick to installing IDEs on Windows FS.

ancient bolt
#

Yeah big performance and compatibility downside

olive garden
#

Well as long as I don't actually run my code, it shouldn't be that big of an issue, right?

twin lagoon
#

build speed is faster in wsl

olive garden
#

Or is it as noticeable as WSL git in windows FS?

mental meadow
#

it's so awesome to run intellij inside WSL2 and have it on your desktop

#

I even got plasma working and had got a desktop πŸ˜„ but that's pretty annoying/useless in wsl2

twin lagoon
#

5.4 clappywappy

swift root
#

Hi leaf

#

Mr leaf

#

How goes it

minor badge
#

larreeeeh

twin lagoon
#

laaaaaaaaaaaaaaaaarry

swift root
#

aaaaaaaaaaaaaaaaaah

#

I want leaf to insult me or something

#

owo

#

No md

cedar spade
#

why not ping

#

:(

swift root
#

Who

cedar spade
#

Leaf

potent fossil
#

oki so am trying to run jetbrains toolbox in wsl using the windows x server but it no worketh because fuse isnt there, but fuse is installed however the kernel module aint there πŸ€”

swift root
#

I can't get mobile to load the ping and I'm too lazy to find another way md

#

What am I going to do

twin lagoon
potent fossil
#

what the fuck PES_AngeryAussie for some reason i am running wsl 1

twin lagoon
#

you can migrate w/ wsl2 without data loss

potent fossil
#

hold my hand michale

twin lagoon
potent fossil
#

that doesnt even say how to do it

#

it just gives requirements

twin lagoon
#

it does

#

read the page wtf

potent fossil
#

i am trying ok

twin lagoon
#

step 2 to 5

potent fossil
#

i have very limited braincells

ashen cliff
#

Understandable.

potent fossil
#

ok there

#

it worked this time

potent fossil
#

damn this whole time i've been lied to

swift root
#

@static badge oh good, you're finally awake! Time to go to bed leaf it's very late

#

I'm worried

potent fossil
#

Leaf is back PogChamp

fallen oracle
#

He never left

swift root
#

He is little man from off brand LA and will not talk OR sleep

potent fossil
#

Oh that's right, he's not banned just muted

#

My b

lean kiln
#

he should just get ban instead

swift root
#

No longer muted tho

#

Freeeee

lean kiln
#

cuz hes a furry

minor badge
#

@potent fossil uwu

cedar spade
#

@quasi valley hangar wen

minor badge
#

@quasi valley hangar wen

quasi valley
#

I have to debug dum issues with my Maintenance plugin >:(

minor badge
#

f

quasi valley
#

so, soonℒ️

potent fossil
#

yeah fix it so i can add to whitelist if they're offline

mossy vessel
#

Who needs a maintenance plogin, just shut down da server 😠

potent fossil
#

you dumb dumb idiot !

quasi valley
#

someone actually asked for that as well yesterday

potent fossil
#

yeah so FIX IT

quasi valley
#

NO

#

THEN I NEED SOME DUM MOJANG API LIB

potent fossil
#

just use mc-uuid

twin lagoon
#

i still use kenny's maintenance plugin on various servers

potent fossil
#

get UUID, add to list, profit

#

ok do it now kneny

cedar spade
#

Kenny pls make maintenance shut down my server kthx

fallen oracle
#

Is that the one using cf

cedar spade
#

?

swift root
#

cloudfarts

#

colonel fanders

#

carrion firds

cedar spade
#

kernel fried chicken

twin lagoon
#

the cloudflare workers one is from electroid

cedar spade
#

mmm Linux flavour

twin lagoon
quasi valley
#

OKAY OKAY

#

I'LL DO IT IN A FEW DAYS

mossy vessel
#

Just do it next year kekw

quasi valley
#

dad jokes incoming

cedar spade
#

it's ok

#

is it ok?

quasi valley
#

are you ok?

cedar spade
#

Good question

void void
wild escarp
#

πŸ‘€

mossy vessel
#

Can we not upload random files kthx

cedar spade
#

hmm yes let's all post random source code as files

cedar spade
#

o/

quasi valley
#

\o

twin lagoon
#

kashike PeepoClapHappy

mossy vessel
#

cutie

cedar spade
#

/o\

coarse lily
#

Okay it's 3:51AM and I finally got this thing to work.

#

So I'm going to sleep.

#

But victorious.

#

Tomorrow: vacation.

#

G'night folks

wide chasm
#

Good night

minor badge
#

cutePepeWave stef

wide chasm
#

Hi Proxi

potent fossil
#

does wsl machine get usb devices from windows?

#

i.e. an android phone so adb tools in wsl could see it

#

oh my god this is so hot

mental meadow
#

yeah you can do that

potent fossil
#

jetbrains toolbox does not want to play nicely with me

#

doesnt wanna open in windows

#

firefox works fine though

mental meadow
#

it kinda takes a while for me to open

potent fossil
#

process starts in linux, VcXsrv has stuff that looks like errors but idk

#

ok it worked that time...not a consistent error

#

weirdness

twin lagoon
#

@viral hornet tacoplead

viral hornet
#

michael

potent fossil
#

this is why i hate windows i should go back to linux

wild escarp
#

everything is 1 million times more complicated lol

#

im pretty sure the app drawer has a cache or smth and that it takes a second to update the icons

potent fossil
#

thru reboot?

wild escarp
#

maybe lol, windows is weird

#

but i love it anyways

potent fossil
#

i deleted the iconcache and rebooted again and still nay

#

so big rip

vernal moth
#

just looked into tax stuff for next year

#

on my next raise, ill be at the highest tax rate in german

#

wtf

#

how does that make any sense?

#

can we tax rich ppl more pls?

#

ppff no embedd

#

blue line is max/border tax rate, dotted line is the avg rax rate, x = taxable income, y is tax rate

twin lagoon
#

basically martin is FUCKING rich

#

when are you buying me a tesla model 3

vernal moth
#

how is max at 42%?

#

thats the thing michael

#

am not rich

twin lagoon
#

that's what the government wants you to say

vernal moth
#

so I dont see why ppl richer than me shouldn tpay more taxes?

#

am right at the avg income per year michael

#

so the 50% of ppl that earn more than me pax not much more taxes than me

#

which is fucking bullshit

#

oh apparently we have another step at 260k

#

to 45%

potent fossil
#

42% for what income lvl

vernal moth
#

57k+

#

but its the upper limit

#

nobody pays 42%, see the avg line

potent fossil
#

the upper limit but not really limit because there is another one

vernal moth
#

no limit, just not realistically possible to reach or smth

#

tax law is difficult, lol

potent fossil
#

ok this is annoying me. i have shortcuts to vbs files and set icons on the shortcut and windows wont show the icon in search

vernal moth
#

apperently we had a max tax rate of 56% up to 1989

#

of course sweden is still doing that with 55%, cause they get it

#

the new boss of our "worker" party apperently wants to raise it to 50% again, so thats something

#

sadly his party is a joke

#

idk why this is so hard to do?

fringe garnet
#

I got some questions about paper

#

does it make me create a server on my own pc?

#

that others can join

potent fossil
#

yes

fringe garnet
#

and if so is it bad for the pc

vernal moth
#

raise the limit to 50%+, then raise the point where you pay max to like 80k. that way, taxes are lower for most ppl and higher for ppl who have enough money anyways

potent fossil
#

if you make your server public and host from home you are likely to get attacked

vernal moth
#

but hey, that would be too social

fringe garnet
#

how would i keep it private

potent fossil
#

and if you've never experienced a good ol' DOS boot off its quite scary the first time :D

#

buy a host

#

and run paper there

fringe garnet
#

ah i see

meager tusk
#

a server from a host

#

not an actual host

fringe garnet
#

so i cant make one right now and keep it private

meager tusk
potent fossil
#

yeah yeah

meager tusk
potent fossil
#

dont judge me idriz pepelove

meager tusk
#

Buying OVH. Brb.

mossy vessel
#

Mini stop complaining, that system is pissing me off for the past 3 years πŸ˜‚

vernal moth
#

well, I didnt realize that I was so rich that I had to pay max rate πŸ˜‚

twin lagoon
#

Ew OVH

vernal moth
#

somebody should have told me I am rich

heady spear
#

hello @potent fossil <3333 how r u?

vernal moth
#

do I get to do rich ppl shit now?

potent fossil
#

@heady spear im NOT good

mossy vessel
#

Yes, moar taxes

mental meadow
#

yes you can now simp all of us on github mini

heady spear
#

oh 😦

mental meadow
#

hey city ❀️

potent fossil
#

windows is make very much anger in me right now

heady spear
#

hi aurora! πŸ˜„

twin lagoon
#

awawawawawawa

heady spear
#

oh, understandable

worn ember
#

Windows gang

mossy vessel
#

Or move to a country with better tax rates

#

Works both lul

twin lagoon
#

nmf pepelove

vernal moth
mental meadow
#

You don't pay taxes here if you earn less than 11k a year πŸ˜„

vernal moth
#

same in germany

mental meadow
#

smh gotta add higher tiers

mossy vessel
#

It's 9k over here

heady spear
#

I pay 52% taxes rn

#

avoid Sweden if you like money

mental meadow
wild escarp
#

sad!

mossy vessel
#

Dis you?

#

smh

mental meadow
#

exactly

vernal moth
#

but thats different city since you a business entity

mental meadow
#

city you are an entity

meager tusk
#

taxes? i don't pay emrunaway

mossy vessel
#

Idirz committing tax fraud

#

gonna call the cops

meager tusk
#

Oh no no no

#

They don't know

twin lagoon
#

idriz ur too young for taxes

meager tusk
#

yea exactly

heady spear
#

ye fair mini, and I'll get ~$10k in tax returns in 2022

meager tusk
#

and you're an adult

heady spear
#

so im relatively happy

mossy vessel
#

Imagine getting something back kekw

mental meadow
#

last year I got 25€ back :3

wide chasm
#

I got 200 euro back, because I pay -200 in taxes apparently

mossy vessel
#

The tax offices always missed the due date and I got it months later like wtf

#

stop being lazy

vernal moth
#

I got 700 euro back for last year

meager tusk
#

What's the design of hangar look like currently?

heady spear
#

idk how it works elsewhere but we pay preliminary taxed based on our expected yearly earnings

meager tusk
#

Do I have to build it to see or is there somewhere I can see

vernal moth
#

for this year am gonna let my taxes be done by a friend for a crate of beer

potent fossil
#

ok so apparently when you have a vbs file in windows, and make a shortcut to it, set an icon on that shortcut, and put the shortcut in the start menu....the icon for it does show up in the main start menu, but if you search for the app the icon is the default vbs icon.

vernal moth
#

its staged here

meager tusk
#

PES_ThumbsUp thanks

potent fossil
#

Someone shoot me I need the consistency.

heady spear
#

and this does not account for write-offs :3

meager tusk
#

yeah that needs some work

worn ember
#

do we have a hangar logo yet?

mental meadow
#

not that I'm aware of

vernal moth
#

not that I know of

mossy vessel
#

I can draw something, I'm a skilled person.

worn ember
#

i honestly cant even think of anything for a logo

#

tf for logo do you make for "hangar" lol

meager tusk
#

Minecraft lava bucket texture.

mossy vessel
#

Not like the logo must be related to the word.

worn ember
#

true, but at least have some correlation with it

#

not with the name but with the "brand"

mental meadow
#

see that's what I tried with my logo

mossy vessel
#

You can choose w/e you want, establish it and ensure people remember it and boom, logo dun

mental meadow
meager tusk
#

lol

worn ember
#

looks more like paper in a pp tip

mental meadow
#

no u 😠

worn ember
#

thats not very nice of you

vernal moth
potent fossil
#

is phoenix not in here?

mental meadow
#

i think he left

potent fossil
#

kek

mental meadow
#

at least on irc

worn ember
#

why

potent fossil
#

oh heres in here ok

worn ember
#

did you bully him?

mental meadow
#

proxi kicked him

potent fossil
#

@wheat quarry thanx 4 pr

#

i mean issue

worn ember
#

why

potent fossil
warm anchor
olive garden
#

wait what

#

is pheonix gone?

potent fossil
#

no he is here

#

just left irc and i didnt expect it

wild escarp
potent fossil
#

is that a shortcut pointing to a vbs script?

wild escarp
#

yes

potent fossil
#

how did you make your shortcut

wild escarp
#

right click > create shortcut

potent fossil
#

wtf

#

thats what i did, still no worketh

wild escarp
#

huh, its not opening for me lol

visual egret
#

what?

#

do you need help with toolbox?

wild escarp
#

no lol, we are figuring out why windows hates us

warm anchor
#

Windows hates every power user

visual egret
#

what do you mean?

#

are you complaining about windows search

wild escarp
#

no, wsl

#

and windows search

#

so yes i guess lol

visual egret
#

have you enabled indexing?

potent fossil
#

yes

visual egret
#

and is "pending" 0

potent fossil
#

nope its still trucking

visual egret
#

wait until thats finished i guess

potent fossil
#

we shall see, it appears to be running again because i deleted the icon cache forcefully

visual egret
#

btw theres a nice thing i have installed

#
#

its just an improvement to windows for me

potent fossil
#

yeah used to use powertoys all the time at my last job

heady spear
#

heheheh powertoys heheh

minor badge
#

city stop

heady spear
#

what ?? am not doing anything .

minor badge
#

HMM

potent fossil
#

powertoy me city .

heady spear
#

okay bby

potent fossil
#

hold on gonna drink water that comment was too thirsty

heady spear
#

ur cute

#

ok am going to the supermarket to pick up a package have fun u guys xx

minor badge
#

have fun x

potent fossil
#

Ooh they didn't have "PowerToys Run" before

#

that's basically dmenu

#

and it WORKS WITH MY ICON WHILE WINDOWS SEARCH DOESNT

#

ok whatever

wild escarp
#

no clue why it works for me but not you lol

potent fossil
#

prob something to do with the indexing

#

whatever itll start randomly working later and ill be pissed

warm anchor
#

The joy of windows weebravemove

worn ember
#

windows very gud

#

stp hatin cuz u bed

wild escarp
#

lul

wild escarp
warm anchor
#

The best kind of working is kinda working Krappa

worn ember
#

thats kinda true

potent fossil
#

hmm well this is hell

#

firefox cant run webgl when run from wsl cause no graphics driver or smth and i cant install nvidia drivers in wsl cause it wants a new kernel

wild escarp
#

what kernel version are you on?

potent fossil
#

4.19 lmao :(

#

but it's microsoft's WSL one

wild escarp
potent fossil
#

i know that seems really yikes

wild escarp
#

you can update to microsofts 5.4

#

im on it 🀷

potent fossil
#

gonna have to keep it manually updated no?

twin lagoon
#

yeah i just updated mine to 5.4

#

no issues

potent fossil
#

does windows do weird reinstalls during updates and shit

twin lagoon
#

no

potent fossil
#

that would break that

#

ok then

mossy vessel
#

When you are still on WSL 1 πŸ‘€

potent fossil
#

wat

mossy vessel
#

πŸ˜‚

#

I didn't update stuff for ages

untold wasp
#

guys i dont know what is happening!

#

help me my ping is 6000

#

i dont have this problem on other servers

potent fossil
#

mfw building this kernel required bc to be installed

untold wasp
#

but my own now gives me problems

twin lagoon
#

use the proper channel

potent fossil
#

how long did kernel take 2 compile for you michale

wild escarp
#

like 5 minutes for me

potent fossil
#

what j flag

twin lagoon
#

j12 out of the 16 threads i have

wild escarp
#

how many cores do you have

twin lagoon
#

took indeed 5 minutes or so

wild escarp
#

i ran -j6 lol

potent fossil
#

i have 8 threads and gave it 8 KEKWHYPER

wild escarp
#

cause I read cores and didn't think threads

#

i should've used my 12 lol

potent fossil
#

kinda crazy how compilation can be so heavy

#

oh it finished while i was doing something else

#

ok running 5.4 now but still no gpu accel apparently pensivecowboy

#

cant run webgl in firefox

visual egret
#

its like spotlight for windows

twin lagoon
#

startmenu >

visual egret
#

no

twin lagoon
#

yes

potent fossil
#

alright now it says firefox supports webgl but its not available or not enabled

#

and idk how to enable it lol.

visual egret
twin lagoon
#

on linux / macos i'd agree

#

but powertoys run can't be called from every application having used it before & the search results don't seem to be as good as windows' start menu

visual egret
#

describe one

#

im interested

potent warren
#

I've had issues with run not starting with Windows and having it do a coldstart when I pressed the hotkey

potent fossil
#

i used the powertoys keyboard thing to overwrite a windows keybind

#

should hopefully work everywhere

twin lagoon
#

no clue what application tbh been ages ago

potent fossil
#

michale ur cute

twin lagoon
#

awa

slim nymph
#

I don't wanna get out of bed

#

I need to start realignment on sleep for work now lol

mossy vessel
#

Sleep into 2021 panda_sleep

worn ember
#

i'm not sleeping till 2021

untold wasp
#

can someone please join vc to help me with my server

#

i litteraly am unable to join!

potent fossil
#

what does it say when you get kicked

#

looks like someone is helping you

untold wasp
slim nymph
#

Text is better than voice

untold wasp
#

why

visual egret
#

just do it

slim nymph
#

Because I said

heady spear
#

very convincing

slim nymph
#

That's the proper channel

twin lagoon
#

guy comes into paper-help asking the same thing twice caring way too much about his startup tps

balmy token
#

happy new year everyone. thank you for making minecraft playable, devs.

limpid comet
#

❀️

warm anchor
#

Hi bluely

limpid comet
#

hi eternity WatamePog

vernal moth
#

why did I read that as scrapbukkit?

true canyon
#

Context

limber knotBOT
#

I think it's deliberate

true canyon
#

With it being dinnerbone, and there having being a bukkit/scrapbukkit project...

limber knotBOT
#

Bukkit 2.0 confirmed?

twin lagoon
#

it's a rust discord bot

#

quite advanced

vernal moth
#

seems like bone is sticking to his bot names ^^

#

no wait

#

scrapbukkit was a simple utils kinda plugin, right?

limber knotBOT
#

yep

vernal moth
#

found it

potent fossil
#

hi michale

visual egret
#

michale dissapears

quasi valley
#

wer michale

visual egret
#

michale 2 wen

twin lagoon
quasi valley
#

michale doesn't need a new version

twin lagoon
#

i just use viaversion

ashen cliff
#

Via

visual egret
#

1.16.3 server hosts be like

twin lagoon
#

ur shitty

#

@quasi valley uwu

heady spear
#

hahahh guy im officially 85

#

i slipped when cleaning my shower and hit my head and my elbow

#

my arm is blue now

twin lagoon
heady spear
#

peak 2020

quasi valley
#

hey it's unlikely to get worse until 2021

heady spear
#

if my arm is broken fr ill get mad

#

it's my left arm and I need it to program

quasi valley
#

are you left handed?

potent fossil
#

what do you do with your right arm while programming

#

wait

#

dont answer that

cosmic raft
#

he reads a book, simple

quasi valley
#

uncultured swine

cedar spade
#

...with his hand? πŸ‘€

potent fossil
cedar spade
#

City is never ok

#

Town > city

quasi valley
#

where is villagemonstret

potent fossil
#

kash who made your avatar

fallen oracle
twin lagoon
#

billy uses it for purpur

fallen oracle
#

I think this is what EssX is using for the new maven repos?

cedar spade
#

It's uh, interesting

#

Not sure whether we'll keep it long term or just set up Nexus

fallen oracle
#

Well that answers my next question.

potent fossil
#

can it do repo mirrors?

#

nope

#

nexus it is

cedar spade
#

Not really

fallen oracle
#

Yeah it can

#

Well it says it can?

potent fossil
#

i dont see it in the readme

cedar spade
#

It can proxy them but it does a bad job

twin lagoon
#

glare clappywappy

#

pinapl clappywappy

#

simple PeepoClapHappy

potent fossil
#

oh i didnt read proxy in that context

cedar spade
#

ie caches 404 pages as files

potent fossil
#

michale PES_Aheago

fallen oracle
#

Hi Michael!

twin lagoon
#

@umbral tiger BongoButt

potent fossil
#

caching 404 PES_Angery

fallen oracle
#

Oh interesting MD

umbral tiger
#

Uwu

potent fossil
#

wow

fallen oracle
#

Okay I won't worry about looking into migrating over then just to save some resources.

potent fossil
#

a worthy click

heady spear
#

I am not okay

#

my arm hurts when I exist

potent fossil
#

im really resisting the urge to comment what i want to say

slim nymph
#

dusted out my pc, dropped temps like 8C lol

cedar spade
#

net/ess3/EssentialsX/2.18.1 was literally a nexus page that it cached

twin lagoon
#

new pc wen

slim nymph
#

if i get dat 4k stimulus check πŸ˜›

potent fossil
#

i wanna build a new sff rig with a 3080

twin lagoon
#

3080 PogPause

slim nymph
#

i just had to drop tons of money on stuff, cant drop more atm

#

fucking 5000$ fence really hurt

potent fossil
#

f

slim nymph
#

which was forced upon me, wasnt gonna do that this year

potent fossil
#

arent neighbors fun

slim nymph
#

yep

potent fossil
#

you dont live in a hoa do you

slim nymph
#

yes

potent fossil
#

LOL

#

rip

twin lagoon
#

what is a hoa

slim nymph
#

but regardless of hoa, she could prob bring a lawsuit

#

home owners association

potent fossil
#

homeowners association

#

bunch of cunts lmao

#

lawsuit over like an inch into her property aikar?

#

i kek

peak dirge
#

@twin lagoon I see you have a leak with Tuinity. There's a small one that's my fault, will PR to Tuinity to fix.

twin lagoon
#

it's the playerchunkmap one

slim nymph
#

you know how petty lawsuits people can do

twin lagoon
#

idk if that's by you

slim nymph
#

and with how she is, i believe she would

twin lagoon
#

i'm not even sure if that's a leak

peak dirge
#

Oh, mine is compression. A small leak actually, but needs to be fixed anyways.

twin lagoon
#

o

slim nymph
#

shes the kind that loves to find something to complain about someone behind their back, but nice to you in person

potent fossil
#

pressing f for your life in a hoa with demon neighbors aikar

true canyon
# twin lagoon what is a hoa

Imagine moving into a new home, but before signing all the papers you agree that you will follow a bunch of rules controlled by an elected group of power-hungry old people who can change those rules, fine you for breaking those rules, and otherwise make your life hell.

twin lagoon
#

yeah no ours i'm not even sure is a leak, probably too little memory

#

170 players, 3 view-distance, 20gb ram or so

#

it doesn't like 5 no-tick view-dist since it just old-gens and complains about playerchunkmap

cedar spade
#

mmm leeks

#

good soup

slim nymph
#

she complains about lots of things overall, my landscaper does most people around mes yard, so he hears her complaints a lot

potent fossil
#

a hoa in georgia tried to make a 93 year old veteran take his american flag down and threatened to fine him $150 USD a day until it was down

#

he fought it and won but lmao

#

theyre ridiculous

peak dirge
#

when I buy a house, and there's an HOA, I'm like "lolnope"

#

not dealing with that

potent fossil
#

i also will not deal with that

slim nymph
#

he had me put up a metal barrier between my yard and her yard to keep my grass from spreading into hers cause he knew shed complain about it

peak dirge
#

The most popular stories on /r/prorevenge are nothing but "fuck HOAs"

potent fossil
#

looool

slim nymph
#

hope she enjoys her gap!

#

have fun managing weeds in there

potent fossil
#

Aikar: King of Petty

slim nymph
#

I did exactly what she asked

formal turret
#

ah now you can call the hoa on her for not maintaining her land

slim nymph
#

her fence doesnt perfectly line her property

potent fossil
#

please post there

#

with pic

slim nymph
#

i had them line mine up perfectly to my line

potent fossil
#

ill be your first upvote

peak dirge
#

"Backstory: I am the most famous MInecraft server developer."

potent fossil
#

lmao

#

i wonder when the next game "like" Minecraft will come out, and by "like" I mean garnering as large of a community and modability and jazz like that

twin lagoon
#

hYtAlE

wide chasm
#

Hytale will completely replace Minecraft /s

visual egret
true canyon
void void
#

free the homie nnyak!!

potent fossil
#

what

twin lagoon
#

the hitler man got banned

potent fossil
#

ah yes i know, didnt ever know the persons name

#

never cared

twin lagoon
minor badge
#

@visual egret because we don't want to risk anything copyright-wise

#

paperclip is and has always been a grey area, and we'd rather keep source up and independent of compiled files. if someone decides to take action, source will still be there

void void
#

nnyak was a god tho

visual egret
#

understand

potent fossil
#

was he though

void void
#

xe is pro program xe

minor badge
#

he is banned and will stay that way. he, as everyone else, is guaranteed one chance to appeal his ban

void void
heady spear
#

@potent fossil what were u gonna say ?? 😠

potent fossil
#

wat

heady spear
#

im really resisting the urge to comment what i want to say

potent fossil
#

nothing, satan had taken over my body

twin lagoon
#

he was going to say step bro i fell in the shower and need help

heady spear
#

I don't want to get fucked. I want my arm to not be cracked and oofing

potent fossil
heady spear
#

inb4 "stop existing then"

potent fossil
#

that was what i was going to say

waxen panther
#

sadge

heady spear
#

fuck u simple that is so rude

#

i hate u now

potent fossil
#

shut up

twin lagoon
#

πŸ˜”

potent fossil
#

take it back

heady spear
#

no

potent fossil
#

then pay with your blood

twin lagoon
#

have a picture of a dog

potent fossil
#

runs in place

#

turns around, runs into wall in place

heady spear
#

i could have passed out

#

and u r here making jokes

twin lagoon
#

nothing of value lost

heady spear
#

smh old ppl die while slipping in the shower all the time

#

i am old

#

so

#

there's a risk .

minor badge
#

thats a very cute dog

potent fossil
#

do you have a coffin yet ?

minor badge
#

awww

wide chasm
#

I'll happily inherit your money City

twin lagoon
potent fossil
#

isnt it very Legit that you buy your own coffin and you buy your own gravesite and if you dont have money they just burn you

heady spear
#

what money lol

potent fossil
#

we live in a Society

#

but then even the urn for your ashes costs money

#

if you cant afford you can go in a cardboard box

wide chasm
#

You must have money somewhere. Even if you think you don't, I'll find it.

potent fossil
#

if you cant afford that you go in the trashcan with the communal ashes

#

πŸ˜”

vernal moth
vernal moth
potent fossil
wide chasm
#

Yeah GH releases isn't that well suited for continuous builds

left swift
#

Spread the ashes in the farmland and become one with the crops next season

potent fossil
#

hope u eat the food grown with the ashes that were once my entire ass

left swift
#

I will and it will be delicious

#

Ass corn

slim nymph
visual egret
#

i dont know, i was just asking

slim nymph
#

makes no sense to release in multiple places, consistency is key

#

less confusing

potent fossil
#

only thing i can guess is release notifs maybe

slim nymph
#

"oh we forgot to update github, everyone whos using it as a source is out of date"

potent fossil
#

couldnt it be automatified

#

with automagics

minor badge
#

it could

golden gust
#

Sorta, but, it's another thing we'd have to set something up to hook into for 0 gain

potent fossil
#

(i dont actually want it im just playing devils advocate)

slim nymph
#

until it breaks and no one notices cause none of us care about that source

minor badge
#

it only needs to push a tag, then curl a jar to release endpoint

#

but the paper page works great

golden gust
#

Which is 2 steps we don't have to do if we don't care to release there and keep it on our pretty system

merry talon
#

but we should totally release on github

waxen panther
#

you first barty πŸ₯Ί

livid swan
#

Plugins in 2021 with only 1.8 support mclegends_hyperKEKW

golden gust
#

Nooooooooo

#

We love your presence here

#

Or whatever bullshit would make you feel wanted or something

waxen panther
#

thank you cat

merry talon
#

please pleading

left swift
#

Hmm this one doesn't slap as much as the other ones

golden gust
#

Those needed /s, but, ambiance woulda ruined it or something

#

Foreshadowing and all that bs

spiral robin
#

Gm @limpid comet @waxen panther @umbral tiger broccoHug peepoheart

limpid comet
#

good morning aber PES3_Smile

potent fossil
#

where the fuck is my gm

spiral robin
#

I didn't want to mass ping and get ban

potent fossil
#

you know what no

#

aber you're cancelled

merry talon
#

gm @everyone

limpid comet
#

i've taken up modded minecraft with the boys

left swift
#

#aberisoverparty

spiral robin
#

Gm @potent fossil @spare venture @twin lagoon pflush peepoxYes

left swift
#

Mods mass ping

potent fossil
#

fine, i just closed filezilla. was about to press delete on my nameless install