#general
3141 messages Β· Page 1217 of 4
But HDR10+ has at least 10 HDRs
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...
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 π¦
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
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
Isn't HDR10+ the open spec while Dolby is yet another license fee?
upwards is normally fine
Everything on Prime is HDR10+, that's not nothing
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
Anyone know a plugin that lets people change their suffix with a command like /suffix?
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
Well I dont think my question falls under that
it does
I actually wanted to have a conversation about something
then ask
the question
So, just ask your actual question or whatever
^^^
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.
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
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
how the hell would that question not fall under....whatever
The name matches what the bungee server is and I'm beggining to run out of ideas
is there a player on the server which is apparently dead?
Does HD require a plugin on the other server?
I mean, a plugin on the proxy or something
"can go" and "are on" are two different things
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
Please paste large logs to a pastebin: https://paste.gg
A sensible, modern pastebin. Share text and source code snippets with no hassle.
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
Jettison Jerry
I feel like an idiot I just figured it out..... (accidentally deleted my config which lead me to reconfiguring and finding the issue)
Lmao thanks
@pastel pivot you typed this post quicker than 3 seconds and our forums decided it meant you're a bot
so yeah probably gonna Delete User
anyone know the general process of running a paper server in a docker container?
typical, the anti-xray dev is the cheating forum user smh.
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)
wouldn't you save like 50MB or so if you did from adoptopenjdk:15-jre-hotspot?
Don't you need the JDK to do the patching?
no
Then use jre instead
well...not that I'm aware
just because I wrote paperclip doesn't mean I know how it works
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
15 is the new LTS, right?
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
that often causes issues with sqlite iirc
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
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
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
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
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
That one
no
most major plugins support java 11 just fine
Doubt any popular ones will give problems
i mean all the ones i use
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
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.
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.
the only stuff that would break is certain hacky reflection things
which most plugin authors will have known about these changes for years
Althuogh I doubt ChatControl has anything like reflection.
Because that would require knowing what reflection is.
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
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
Instead of java paper.jar
by adding the path where java is located before java
Yeah

/usr/bin/java11/etc.
You always do that, your PATH variable simply makes it so you don't have to type all of that out :P
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.
@meager tusk


morn kenny
does good old paste.gg have api you can easily use to create pastes? didn't find anything on it :(
gday coumm
@quasi valley ?
https://github.com/SerenModz21/paste.gg
A wrapper for the paste.gg api. Contribute to SerenModz21/paste.gg development by creating an account on GitHub.
jc javascript 
alternatively, https://github.com/ascclemens/paste/blob/master/api.md
oh camm beat me lol
ah perfect, thank you π
bruh
I don't konw what you're talking about
imdead
niiight jmp
is it 2012 in australia yet
yay 
it is not
5 more painful hours
I'm going to take my sleeping meds and a few whiskys in an hour or so
implying it will be better in 2021
So I just wake up in 2021
kek
watch something horrible happen on new years
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
not even 1:1?
no need
Oh nice aikar has been secretly working for mojang
I wish
That's why sculk sensors aren't as laggy as i thought they would be
Oh :(((
haha, the truth is: sometimes before I finally send a message I let a spell checker check if I didn't make a typo. Then I paste it back in.
Working for and working with is different
they're in talks with mojang (as said by aikar)
just not working for
@viral hornet almost happy new year 
I guess people see Mojmap and they think "paper is part of Mojang"

hwweo
aurora 
so it was a machine who posted it
uwu
what should i do know that my post is finished
I got an idea but webdev sucks
Glad you had the same idea π
I don't think I did but what was your idea
Hey webdev has feelings too.
I mean, just looking around stuff and point out stuff that is ugly on hangar and should look differently helps
Mini I might be working on a redesign.
DemonWav yes CTRL+V. But I wrote it.
send pics
size
everything is smaller in alpine
I will when it's ready.
Look you gotta go look at the billboards just like everyone else.
No special treatment.
malloc is slower but it's nothing what throwing in mimalloc can't fix
boo!
Evenin'
baa!
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"

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
Yikes
just use git cli smh
I just ran git -> update project mikro
I cant just pull since I have local changes
IJ solves thgat nicely normally
shelves, ye
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
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
run everything in wsl?
As expected, didn't take long https://blog.jetbrains.com/idea/2020/12/intellij-idea-2020-3-1/
Can I run IJ in WSL? Cause otherwise doesnt seem there is good integration
Do I want to move all my stuff inside the WSL filesystem though?
Just need an x11 server in windows which you can install easily
oh shit
Nice.
definitely
demon write a blog post with copypaste steps thx
yeah, you told me about that a few months ago :D
you don't have to run IJ in WSL but you can
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
Omg
Literally seamless Linux apps in windows. The year for Linux on the desktop is here, provided by windows
Check out this sneak preview of our work on adding Linux GUI application support to WSL! https://t.co/lcx4WWwxTo
1475
4716
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! :)
ooh thanks
ooo i can update the wsl kernel
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
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.
Yeah big performance and compatibility downside
Well as long as I don't actually run my code, it shouldn't be that big of an issue, right?
build speed is faster in wsl
Or is it as noticeable as WSL git in windows FS?
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
https://owo.whats-th.is/9T2q5RZ.png building the wsl kernel takes less than 5 minutes apparently
5.4 
larreeeeh
laaaaaaaaaaaaaaaaarry
Who
Leaf
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 π€
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
how u update kernel ok thx
https://github.com/microsoft/WSL2-Linux-Kernel/tree/linux-msft-wsl-5.4.y clone this repo with that branch
you can migrate w/ wsl2 without data loss
hold my hand michale
i am trying ok
step 2 to 5
i have very limited braincells
Understandable.
<@id>
damn this whole time i've been lied to
@static badge oh good, you're finally awake! Time to go to bed leaf it's very late
I'm worried
Leaf is back 
He never left
He is little man from off brand LA and will not talk OR sleep
he should just get ban instead
cuz hes a furry
@potent fossil uwu
@quasi valley hangar wen
@quasi valley hangar wen
I have to debug dum issues with my Maintenance plugin >:(
f
so, soonβ’οΈ
yeah fix it so i can add to whitelist if they're offline
Who needs a maintenance plogin, just shut down da server π
you dumb dumb idiot !
just use mc-uuid
Kenny pls make maintenance shut down my server kthx
Is that the one using cf
?
kernel fried chicken
the cloudflare workers one is from electroid
mmm Linux flavour
Just do it next year 
dad jokes incoming
are you ok?
smh
Good question
π
Can we not upload random files kthx
hmm yes let's all post random source code as files
o/
\o
kashike 
cutie
/o\
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
Good night
stef
Hi Proxi
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
yeah you can do that
jetbrains toolbox does not want to play nicely with me
doesnt wanna open in windows
firefox works fine though
it kinda takes a while for me to open
process starts in linux, VcXsrv has stuff that looks like errors but idk
ok it worked that time...not a consistent error
weirdness
@viral hornet 
its not ! using my frik frakking icons that i set for the shortcut https://owo.whats-th.is/XS56DS4.png
this is why i hate windows i should go back to linux

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
thru reboot?
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
that's what the government wants you to say
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%
42% for what income lvl
the upper limit but not really limit because there is another one
no limit, just not realistically possible to reach or smth
tax law is difficult, lol
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

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?
I got some questions about paper
does it make me create a server on my own pc?
that others can join
yes
and if so is it bad for the pc
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
if you make your server public and host from home you are likely to get attacked
but hey, that would be too social
how would i keep it private
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
ah i see
so i cant make one right now and keep it private

yeah yeah

dont judge me idriz 
Buying OVH. Brb.
Mini stop complaining, that system is pissing me off for the past 3 years π
well, I didnt realize that I was so rich that I had to pay max rate π
Ew OVH
somebody should have told me I am rich
hello @potent fossil <3333 how r u?
do I get to do rich ppl shit now?
@heady spear im NOT good
Yes, moar taxes
yes you can now simp all of us on github mini
oh π¦
hey city β€οΈ
windows is make very much anger in me right now
hi aurora! π
awawawawawawa
oh, understandable
Windows gang
nmf 
I already do simp you ^^
You don't pay taxes here if you earn less than 11k a year π
same in germany
smh gotta add higher tiers
It's 9k over here
unbelievable >:C
sad!
exactly
but thats different city since you a business entity
city you are an entity
yea exactly
ye fair mini, and I'll get ~$10k in tax returns in 2022
so im relatively happy
Imagine getting something back 
last year I got 25β¬ back :3
I got 200 euro back, because I pay -200 in taxes apparently
The tax offices always missed the due date and I got it months later like wtf
stop being lazy
missed this message, thats nice
I got 700 euro back for last year
What's the design of hangar look like currently?
idk how it works elsewhere but we pay preliminary taxed based on our expected yearly earnings
Do I have to build it to see or is there somewhere I can see
for this year am gonna let my taxes be done by a friend for a crate of beer
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.
thanks
Someone shoot me I need the consistency.
and this does not account for write-offs :3
do we have a hangar logo yet?
not that I'm aware of
not that I know of
I can draw something, I'm a skilled person.
i honestly cant even think of anything for a logo
tf for logo do you make for "hangar" lol
Not like the logo must be related to the word.
true, but at least have some correlation with it
not with the name but with the "brand"
see that's what I tried with my logo
You can choose w/e you want, establish it and ensure people remember it and boom, logo dun
https://hangar.minidigger.me/assets/images/ore-colored-03ecb326d95929a9640afcb42cac22b7.svg
it's a paper plane inside a hangar!
lol
looks more like paper in a pp tip
no u π
logo ideas include stuff like this
is phoenix not in here?
i think he left
kek
at least on irc
why
oh heres in here ok
did you bully him?
proxi kicked him
why


its working for me simple π€· https://i.imgur.com/7P1AQQd.png
is that a shortcut pointing to a vbs script?
yes
how did you make your shortcut
right click > create shortcut
huh, its not opening for me lol
no lol, we are figuring out why windows hates us
Windows hates every power user
yes
and is "pending" 0
nope its still trucking
wait until thats finished i guess
we shall see, it appears to be running again because i deleted the icon cache forcefully

btw theres a nice thing i have installed
Microsoft PowerToys is a set of utilities for customizing Windows 10. Utilities include ColorPicker (click anywhere to grab a color value), FancyZones (shortcuts to position windows into a grid layout), File Explorer Add-ons (preview SVGs or Markdown files), Image Resizer (resize one or many images with a simple right-click), Keyboard Manager (r...
its just an improvement to windows for me
yeah used to use powertoys all the time at my last job
heheheh powertoys heheh
city stop
what ?? am not doing anything .
HMM
powertoy me city .
okay bby
hold on gonna drink water that comment was too thirsty
have fun x
Ooh they didn't have "PowerToys Run" before
that's basically dmenu
and it WORKS WITH MY ICON WHILE WINDOWS SEARCH DOESNT
ok whatever
no clue why it works for me but not you lol
prob something to do with the indexing
whatever itll start randomly working later and ill be pissed
The joy of windows 
lul
if you aren't caught off guard by something that you wanted to happen 3 days ago and just started working, you can have your money back!
The best kind of working is kinda working 
thats kinda true
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
what kernel version are you on?
i know that seems really yikes
gonna have to keep it manually updated no?
does windows do weird reinstalls during updates and shit
no
When you are still on WSL 1 π
wat
guys i dont know what is happening!
help me my ping is 6000
i dont have this problem on other servers
mfw building this kernel required bc to be installed
but my own now gives me problems
how long did kernel take 2 compile for you michale
like 5 minutes for me
what j flag
j12 out of the 16 threads i have
how many cores do you have
took indeed 5 minutes or so
i ran -j6 lol
i have 8 threads and gave it 8 
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 
cant run webgl in firefox
i love that the most
its like spotlight for windows
startmenu >
no
yes
alright now it says firefox supports webgl but its not available or not enabled
and idk how to enable it lol.
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
I've had issues with run not starting with Windows and having it do a coldstart when I pressed the hotkey
i used the powertoys keyboard thing to overwrite a windows keybind
should hopefully work everywhere
no clue what application tbh been ages ago
michale ur cute
awa
Sleep into 2021 
i'm not sleeping till 2021
no that is my friend
why
just do it
Because I said
very convincing
That's the proper channel
https://github.com/PaperMC/Paper/issues/4968 someone just close this guys issue
https://timings.aikar.co/?id=ae3a79db9acd461886351ca72abd862c no plugins server using the default start.sh
guy comes into paper-help asking the same thing twice caring way too much about his startup tps

happy new year everyone. thank you for making minecraft playable, devs.
β€οΈ
hi eternity 
Context
I think it's deliberate
With it being dinnerbone, and there having being a bukkit/scrapbukkit project...
Bukkit 2.0 confirmed?
it's a rust discord bot
quite advanced
seems like bone is sticking to his bot names ^^
no wait
scrapbukkit was a simple utils kinda plugin, right?
yep
https://github.com/Bukkit/ScrapBukkit/tree/master/src/main/java/com/dinnerbone/bukkit/scrap/commands
found it
hi michale
michale dissapears
wer michale
michale 2 wen

michale doesn't need a new version
i just use viaversion
Via
1.16.3 server hosts be like
hahahh guy im officially 85
i slipped when cleaning my shower and hit my head and my elbow
my arm is blue now

peak 2020
hey it's unlikely to get worse until 2021
are you left handed?
he reads a book, simple
uncultured swine
...with his hand? π
the kama sutra, naturally
where is villagemonstret
kash who made your avatar
This thing looks interesting. https://github.com/dzikoysk/reposilite
billy uses it for purpur
I think this is what EssX is using for the new maven repos?
Well that answers my next question.
Not really
i dont see it in the readme
It can proxy them but it does a bad job
oh i didnt read proxy in that context
ie caches 404 pages as files
michale 
@umbral tiger 
caching 404 
Oh interesting MD
wow
Okay I won't worry about looking into migrating over then just to save some resources.
a worthy click
dusted out my pc, dropped temps like 8C lol
net/ess3/EssentialsX/2.18.1 was literally a nexus page that it cached
new pc wen
if i get dat 4k stimulus check π
i wanna build a new sff rig with a 3080
i just had to drop tons of money on stuff, cant drop more atm
fucking 5000$ fence really hurt
f
which was forced upon me, wasnt gonna do that this year
arent neighbors fun
yep
you dont live in a hoa do you
yes
what is a hoa
homeowners association
bunch of cunts lmao
lawsuit over like an inch into her property aikar?
i kek
@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.
you know how petty lawsuits people can do
idk if that's by you
and with how she is, i believe she would
i'm not even sure if that's a leak
Oh, mine is compression. A small leak actually, but needs to be fixed anyways.
o
shes the kind that loves to find something to complain about someone behind their back, but nice to you in person
pressing f for your life in a hoa with demon neighbors aikar
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.
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
she complains about lots of things overall, my landscaper does most people around mes yard, so he hears her complaints a lot
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
i also will not deal with that
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
The most popular stories on /r/prorevenge are nothing but "fuck HOAs"
looool
Aikar: King of Petty
I did exactly what she asked
ah now you can call the hoa on her for not maintaining her land
her fence doesnt perfectly line her property
i had them line mine up perfectly to my line
ill be your first upvote
"Backstory: I am the most famous MInecraft server developer."
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
hYtAlE
Hytale will completely replace Minecraft /s
is there any particular reason you dont release on GH?
free the homie nnyak!!
what
the hitler man got banned
@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
understand
was he though
xe is pro program xe
he is banned and will stay that way. he, as everyone else, is guaranteed one chance to appeal his ban

@potent fossil what were u gonna say ?? π
wat
im really resisting the urge to comment what i want to say
nothing, satan had taken over my body
he was going to say step bro i fell in the shower and need help
I don't want to get fucked. I want my arm to not be cracked and oofing
its funny because city literally just fell in the shower
inb4 "stop existing then"
that was what i was going to say
sadge
shut up
π
take it back
no
then pay with your blood
nothing of value lost
smh old ppl die while slipping in the shower all the time
i am old
so
there's a risk .
thats a very cute dog
do you have a coffin yet ?
awww
I'll happily inherit your money City

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
what money lol
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
You must have money somewhere. Even if you think you don't, I'll find it.
Also no reason to spam releases when we don't do proper releases
Nice

Yeah GH releases isn't that well suited for continuous builds
Spread the ashes in the farmland and become one with the crops next season
hope u eat the food grown with the ashes that were once my entire ass
and what advantage is there to releasing on github?
i dont know, i was just asking
only thing i can guess is release notifs maybe
"oh we forgot to update github, everyone whos using it as a source is out of date"
it could
Sorta, but, it's another thing we'd have to set something up to hook into for 0 gain
(i dont actually want it im just playing devils advocate)
until it breaks and no one notices cause none of us care about that source
it only needs to push a tag, then curl a jar to release endpoint
but the paper page works great
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
but we should totally release on github
you first barty π₯Ί
Plugins in 2021 with only 1.8 support 
Nooooooooo
We love your presence here
Or whatever bullshit would make you feel wanted or something
thank you cat
please 
Those needed /s, but, ambiance woulda ruined it or something
Foreshadowing and all that bs
Gm @limpid comet @waxen panther @umbral tiger

good morning aber 
where the fuck is my gm
I didn't want to mass ping and get ban
gm @everyone
i've taken up modded minecraft with the boys
#aberisoverparty
Gm @potent fossil @spare venture @twin lagoon

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







for some reason i am running wsl 1














