#general

3141 messages · Page 18 of 4

acoustic pilot
#

You're doing javadoc:jar but your configuration is specific to the javadoc execution.

#

goal, I mean.

#

You can move the sourcepath into the global javadoc configuration, and not the execution-specific configuration.

#

If you run it with javadoc:javadoc then your configuration would work.

#

Otherwise, it needs that one tweak.

stiff yarrow
#

does "download sources and documentation" count as using the javadocs?

#

its nice when the decompiler has comments in it

acoustic pilot
#

yeah, since it uses the generated -javadoc jar to provide that information.

#

or maybe not, maybe just uses the -sources jar 😛

slim nymph
#

i just gave up on it as the IDE started picking up the generated folders as a source and telling me i have dupe classes, dont care at this point 😛

stiff yarrow
acoustic pilot
#

Just do a mvn clean to get rid of the generated classes when you're ready to work on the code, @slim nymph

#

It shouldn't matter for your CI

slim nymph
#

true

acoustic pilot
#

Generating javadocs doesn't have to be part of your workflow, probably only ever should happen on your CI any way.

slim nymph
#

yep thats where i run it

acoustic pilot
#

If you move the sourcepath configuration into the top configuration where you have destDir, quiet, etc, then it should work.

slim nymph
#

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:3.0.1:javadoc (default-cli) on project Empire: An error has occurred in Javadoc report generation: Unable to write 'options' temporary file for command execution: /home/aikar/ssd-projects/emc/EMC-Plugins/Empire/target/site/apidocs/../public/javadocs/options (No such file or directory) -> [Help 1]

#

wat

sleek orchid
slim nymph
#

i did javadoc:javadoc as you said

acoustic pilot
#

Sounds like the destDir is breaking it.

#

Normally it will dump everything into target/site/apidocs

slim nymph
#

trying with <destDir>${basedir}/../public/javadocs/</destDir>

#

added basedir

#

oh thats why i didnt do that before

#

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:3.0.1:javadoc (default-cli) on project Empire: An error has occurred in Javadoc report generation: Unable to write 'options' temporary file for command execution: /home/aikar/ssd-projects/emc/EMC-Plugins/Empire/target/site/apidocs/home/aikar/ssd-projects/emc/EMC-Plugins/Empire/../public/javadocs/options (No such file or directory) -> [Help 1]

acoustic pilot
#

Does the .. make sense there?

#

With the basedir?

slim nymph
#

my plugin source is in a sub folder

acoustic pilot
#

oh

slim nymph
#

code is in Empire/src

#

as have other projects in the repo too

#

then the public repo is what the ci snapshots for javadoc deployment

#

folder*

acoustic pilot
#

It's failing to create the directory, maybe it has to exist already.

#

I'm guessing the plugin automatically creates target/site/apidocs but not the destdir.

#

Oh I just noticed the path was fucked lol

#

I guess destDir is always relative to target/site/apidocs ...

slim nymph
#

it worked before i switched to javadoc:javadoc

acoustic pilot
#

Well, with the sourcepath properly configured now, you can do it as you were doing it before

#

Or should be able to

#

That was the original issue.

slim nymph
#

i can prob just move the folder using the gitlab build steps

#

getting rid of destDir makes it compile now

acoustic pilot
#

Might be simpler if you can't figure it out

slim nymph
#

and all for nothing, still missing the delomboked methods

acoustic pilot
#

Whaaat

#

Impossibru >_>

acoustic pilot
#

All you changed there was move the sourcepath configuration, right? And you're still running it like you used to?

slim nymph
#

move sourcepath?

acoustic pilot
#

what's your configuration look like now?

slim nymph
#
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.0.1</version>
                <configuration>
                    <quiet>true</quiet>
                    <notimestamp>true</notimestamp>
                    <linksource>true</linksource>
                    <nohelp>true</nohelp>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>javadoc</goal>
                        </goals>
                        <configuration>
                            <sourcepath>${basedir}/target/generated-sources/delombok</sourcepath>
                        </configuration>
                    </execution>
                </executions>
            </plugin>```
#

it is invoking delombok

acoustic pilot
#

This is how it should look:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.0.1</version>
                <configuration>
                    <quiet>true</quiet>
                    <notimestamp>true</notimestamp>
                    <linksource>true</linksource>
                    <nohelp>true</nohelp>
                    <sourcepath>${basedir}/target/generated-sources/delombok</sourcepath>
                </configuration>
            </plugin>
#

Your sourcepath configuration currently is specific to that javadoc:javadoc goal in that specific execution

#

If you're running mvn clean install javadoc:jar then you really don't need that whole execution or its configuration.

slim nymph
#
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.0.1</version>
                <configuration>
                    <sourcepath>${basedir}/target/generated-sources/delombok</sourcepath>
                    <destDir>../public/javadocs/</destDir>
                    <quiet>true</quiet>
                    <notimestamp>true</notimestamp>
                    <linksource>true</linksource>
                    <nohelp>true</nohelp>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>javadoc</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>```
javadoc:jar runs but still missing the delomboked methods
#
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building plugins dev-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-javadoc-plugin:3.0.0-M1:jar (default-cli) @ plugins ---
[INFO] Not executing Javadoc as the project is not a Java classpath-capable package
#

oh wait ignore last message

#

im in the root repo which just has Empire as a child module

acoustic pilot
#

Yeah, that's not even the same version of the javadoc plugin, notice maven-javadoc-plugin:3.0.0-M1:jar

slim nymph
#

yeah im on newer

acoustic pilot
#

That configuration should work provided that you are triggering it.

slim nymph
#

ohh javadoc:javadoc seemed to work

acoustic pilot
#

javadoc:jar will run javadoc:javadoc as part of its process, since it's basically just a zipped up version of javadoc:javadoc

slim nymph
#

oh, i was looking at wrong folder

#

i had target/site/apidocs one

#

but it was pointing to the public

acoustic pilot
#

pls say it werkz

#

~_~

slim nymph
#

it did, i meant when i said it didnt work BEFORe i had wrong file open

#

now I had correct file open, i see it

acoustic pilot
#

Nice! 😄

acoustic pilot
#

Also just to be safe, might be worth syncing the delombok plugin's version with your lombok version

#

I think they're meant to be synced.

slim nymph
#

ah yeah

acoustic pilot
#

Although the delombok plugin seems to add .0 to the end of the lombok version.

slim nymph
#

yeah...

acoustic pilot
#

Yeah. could just add a .0 or use a second variable 😛

slim nymph
#

ironically i was thinking to move to gradle after 1.13 update lol

acoustic pilot
#

I like Maven enough not to switch to Gradle 😛

slim nymph
#

err how do I switch delombok to only run during javadoc stages

#

i dont want it running on normal compiles

acoustic pilot
#

A profile like Waterfall uses, maybe

#

That way your CI would build using that profile

#

While normal workflow wouldn't use it

#

Then all you need to do is to activate the profile like mvn clean install javadoc:jar -P profile_name

slim nymph
#

ok cool seems to work

static badge
#

:thumbsdownparrot:

acoustic pilot
#

yay

#

.lombok

limber knotBOT
#

[03:01:27] <gabizou> fuck you and the lombok horse you rode in on

acoustic pilot
#

But at least with this, Lombok is more bearable.

slim nymph
#

yeah i can understand resistance to lombok for API's w/ this issue, but least it has a solution

acoustic pilot
#

Gradle has more flexibility with being able to say, "only delombok as part of the javadoc process," which is cool.

#

Some more hoops with Maven >_>

slim nymph
#

i dunno i feel like this maven method was more intuitive

#

add plugins, done. if you wanna restrict scope, use a profile

acoustic pilot
#

Yeah, true. I guess I feel like profiles are kind of dirty 😛

slim nymph
#

auto activate profile for windows was nice ;P

#

default to .sh, switch to .bat for windows

acoustic pilot
#

ah, yeah. auto-activation is awesome

slim nymph
#

I then execute a script on compile

acoustic pilot
#

Hadn't even considered that, yeah that is pretty neat.

slim nymph
acoustic pilot
#

I wonder what other activators they have

#

Nice, can do properties, JDK version, and environment variables too

wide verge
jolly violet
#

i shaded 14 copies of lombok into my kotlin plugin AMA

static badge
#

why have you filled your plugin with even more cancer

austere ivy
#

spotted

#

why did you spread your cancer to me

#

i have contracted spotted leafitis

static badge
#

you earned that rank

stiff yarrow
#

does IntelliJ's maven regularly check for new snapshot dependency artifacts (ie a new version)?

limber knotBOT
#

Don't think so

#

You can force it tho

#

The maven panel has an button iirc or you can just do mvn clean install -U

stiff yarrow
#

what's the proper way to change item durability with ItemMeta?

limber knotBOT
#

setDurability?

#

How do I make a mob ignore a specific player?

#

cancel the target event

#

Ah, thanks

heady spear
#

50 questions with MiniDigger

limber knotBOT
#

Am a developers relations support robot, AMA

#

Can you set the pickupdelay of an item to -1? thonk

finite wave
#

Sure

#

Why though?

heady spear
#

-1 is just i^2

#

I happen to like squares

#

Square everything

finite wave
#

You mean sqrt(-5)^2

limber knotBOT
#

so youre never there but always square thonk

heady spear
#

Writing PlotSquared release notes:

  • Allow for customisation of all block components
  • Broke schematic support
  • Dropped FAWE support
  • Less commands
    ...

Just 4 years in the making

limber knotBOT
#

sounds great

finite wave
#

Ew

outer parcel
finite wave
#

Hehe

void void
whole spear
limber knotBOT
#

hehe

#

content_filter_denied: Games;Suspicious

#

😂

#

I can't access that url at work

finite wave
#

Lol

#

Shitty work filter

limber knotBOT
#

yep

stiff yarrow
#

MiniDigger: setDurability has been deprecated, after looking at the javadocs it suggests some weird alternativesdurability is now part of ItemMeta. To avoid confusion and misuse, getItemMeta(), setItemMeta(ItemMeta) and Damageable.setDamage(int) should be used instead. This is because any call to this method will be overwritten by subsequent setting of ItemMeta which was created before this call.

heady spear
#

Digger has a really low response time

limber knotBOT
#

yeah, you should set the durability on the item meta

#

sheeeeeeeee

#

am at work, ok?

heady spear
#

Someone restart it plz

#

w o w

stiff yarrow
heady spear
#

U love md5

#

Silly

pearl ibex
#

@stiff yarrow... I used to respect you.

finite wave
#

@stiff yarrow ban

stiff yarrow
#

GWcmeisterPeepoLove there is enough love for all

finite wave
pearl ibex
#

I want some Pepe love. D: :>

finite wave
#

@stiff yarrow Need help setting durability?

stiff yarrow
#

I was just wondering what the proper way to do it through ItemMeta was supposed to be

finite wave
#

Since 1.13 durability was moved to the Itemtag. So you’d just get the itemmeta. Cast it to Damageable and set damage recast to itemmeta

heady spear
#

Uhm just go in game and use the item a couple of times

#

Stop being lazy

quasi valley
#

what was the event when changing the hotbar slot called again?

normal echo
#

PlayerItemHeldEvent?

quasi valley
#

Ah yep, thanks

spiral garden
#

@finite wave where is that

finite wave
#

GoldenCrates

spiral garden
#

You can spam negative reviews and in discussion thread about that as many as you want, but I don't care ^_^ lmao

#

let me just decompile that real quick

#

good grief, 180 kilobytes

quasi valley
#

There doesnt even seem to be anything not working

spiral garden
#

core plugin

#

why

limber knotBOT
#

final String no_paper = this.plugin.getServer().getVersion().toLowerCase();

#

if (no_paper.contains("paper"))

#

return false;

#

heh

quasi valley
#

using discord formatting on irc

vernal moth
#

Reee, the bot isn't parsing multi line messages

limber knotBOT
#

lemme try this

#

final String no_paper = this.plugin.getServer().getVersion().toLowerCase();

#

if (no_paper.contains("paper"))

#

return false;``

vernal moth
#

Mmmh

stiff yarrow
#

using IRC in 2525

quasi valley
#

very heh thinking_eyes

limber knotBOT
#

final String no_paper = this.plugin.getServer().getVersion().toLowerCase();

#

if (no_paper.contains("paper"))

#

return false;

vernal moth
#

Der we go 😂

limber knotBOT
#

mmh?

stiff yarrow
#

don't judge an alpha version by its 10 USD cover

#

1.5 MB peepoGiga

limber knotBOT
#

well, its a zip

#

I bet it includes 100 dependencies and is actually just a skript 😂

finite wave
#

@vernal moth OMG Bob was making an AI ^ Photo below not sure if irc can see it prolly ot

#

Sec

limber knotBOT
#

of course I can see that pic

spiral garden
#

anything over 200mb is a disgrace

limber knotBOT
#

why wouldn't my client embed it?

spiral garden
#

and that's a strech

limber knotBOT
#

I can even see the pic even tho the discordapp.net domain is blocked at work

finite wave
#

Okay

limber knotBOT
#

since my client reverse proxies images to protect my privacy ;)

spiral garden
finite wave
#

Well, obviously Bob was ahead of me.

spiral garden
#

i don't understand how someone can make a plugin over 200mb

finite wave
#

Nd what is up with sponge size? @spiral garden

#

And*

stiff yarrow
#

@spiral garden who made a plugin over 200mb?

limber knotBOT
#

😂

heady spear
#

I shade in all libraries from maven central

#

Just to make it more interesting

finite wave
#

Same, stdlibs etc

limber knotBOT
#

thats a jar full of dependencies for my minigame lib

#

27mb

finite wave
#

Kek

limber knotBOT
#

vgl itself is 500kb

spiral garden
#

@finite wave i have to shade in toml4j

stiff yarrow
#

@vernal moth ..how

heady spear
#

PlotSquared is only 1.5mb

finite wave
#

I just scrape maven central for random libs

spiral garden
#

since configurate is bad

limber knotBOT
spiral garden
#

and by bad i mean idk how to use it

heady spear
#

I make good plugin

limber knotBOT
#

@stiff yarrow how what?

stiff yarrow
#

how did you hit 25+ megs in dependencies

finite wave
#

@heady spear Not really 😜

heady spear
#

Uhm, yes?

limber knotBOT
finite wave
#

Copy pare

heady spear
#

We’re at like 400k downloads, someone liked it

spiral garden
#

how to hide size

finite wave
#

You’d wish

limber knotBOT
#

mmmh, paper-api is set to scope compile, wtf

spiral garden
#

where

stiff yarrow
#

@vernal moth which one of these dependencies is a big fatty then?

finite wave
#

Good

spiral garden
#

oh i see

#

that's some quality code right there @vernal moth

heady spear
#

Y’all don’t know how to quality

spiral garden
finite wave
#

Reflections lib is like 1-2mb

spiral garden
#

oh god

heady spear
#

Shut up I’m better than you I can run faster than you and I’m stronger so like shut up before I send my family on you they will best you so watch out and I know where your mailbox lives so like

#

Cells.cells.forEach

#

Java 8 plz

finite wave
quasi valley
heady spear
#

Stop being bad thx

finite wave
#

?

heady spear
#

Holy dumb

void void
#

note if you only need the keys or values you could loop over those alone

spiral garden
#

@quasi valley holy hell

heady spear
#

Stop spreading fake nudes

#

Needs

#

Nudes

#

News

#

There we go

stiff yarrow
#

I just shove dependencies in my jar so if it gets stranded in a desert it can survive off its stored bloatlibs for weeks

heady spear
#

You could have used the money you threw at md5 to survive

finite wave
#

Maven is a bloatlib

heady spear
#

Yet, you didn’t.

quasi valley
heady spear
#

Ew windows

#

Stop

finite wave
#

13mb is nothing

heady spear
#

Go away

stiff yarrow
heady spear
#

U r md5 fanboy

finite wave
heady spear
#

I donated like $30 to spigot, I want refund

quasi valley
#

write an email to md and ask that

#

please

#

will 100% work

heady spear
#

Helo ur server lag and I don want give me money back or I sue

tropic flame
#

you won't get banned

finite wave
#

Maybe

heady spear
#

Yours truly,
City mom street

quasi valley
#

hello, paper > spigot, please me money give

heady spear
#

Also he banned me once so like wth that’s rude

#

How dare he ban me after I gave him my money

finite wave
#

KennyTV::suicide

quasi valley
tropic flame
#

abortion > spigot

heady spear
#

Watch zbk do the stoopid

finite wave
#

@tropic flame Shhha

heady spear
#

See?

finite wave
#

We don’t wanna redo the chat

quasi valley
#

lets throw bananas at him

finite wave
#

From yesterday about abortion

tropic flame
#

i know LMAO

heady spear
#

But conservative abstinence dude isn’t here

#

So it’s safe

finite wave
#

Shh, he’ll show up

#

I couldn’t care less about abortion lol

quasi valley
#

||somebody mention him||

finite wave
#

free(KennyTV)

tropic flame
#

||hey mister i have the legal rights to say you shouldn't abort altho the kid's not even mine||

heady spear
#

That was when plotsquared got regular $1k donations

tropic flame
#

wait what

heady spear
#

Although the money was worth it for the Facebook theme

finite wave
#

I’ve prolly only made 2000$ total developing mc

heady spear
#

I’ve only made like... $4k from the plugin?

cedar spade
#

I've had a couple of donations, not much

heady spear
#

I think I’ve made ~$10k to $15k from Minecraft

quasi valley
#

city, most people dont even earn 1€ at that age thonk

stiff yarrow
#

those are pretty good numbers @heady spear

tropic flame
#

donations > making a living from premium plugins and then complain that sPiGoT hAs tO aLlOw DrM 'CaUsE mY InTeLlectuAl ProPerTy, fucK GpLv3

finite wave
#

You are an idiot. We live in Scandinavia. That’s our monthly salary

heady spear
#

Looool

finite wave
#

From 15-18

heady spear
#

I’ve never needed to work a real job lol, Minecraft has been enough for the last 5 years

finite wave
#

You live at hole though

#

In a hole

cedar spade
#

I maintain plugins for people to use, not for people to buy

finite wave
#

**

tropic flame
#

DRM = Dis Rarted, Ma'am

heady spear
#

No 😦 I live in expensive apartment

#

Not in hole

finite wave
#

@heady spear Tbh, we get paid to get our education anyway

#

Enough work

heady spear
#

True 😛

#

Because we have a sensible social safety net

quasi valley
#

US

heady spear
#

Not like those other shithole countries

finite wave
#

US is royally fucked

heady spear
#

Not even good fucking

finite wave
#

Look at their president atm

#

Such a carrot

heady spear
#

It’s like dry semihard dick covered in sand

cedar spade
#

I have no desire to sell software built off hundreds of other people's hard work

tropic flame
#

Unlock the American Dream for only $9999.99! Powered by EA.

heady spear
#

I made most of my money off of commissions

#

Most of my code has been standalone

#

Also, with that logic you couldn’t work in software development at all lol

quasi valley
#

but there the other people are paid, too :p

finite wave
heady spear
#

People make a hell of a lot of money from my code too

cedar spade
#

Developing server mods against Minecraft like CB until 1.8 and Sponge are the hard part, and that's done by the community

heady spear
#

But I released it for free

#

So why the hell would that be a bad thing

quasi valley
#

its not

heady spear
#

I mean, shit if I were to be salty about creative servers getting donations

#

And by the same logic, I am completely fine with making money from Minecraft plugins

#

I wouldn’t ever sell premium resources though. That just doesn’t feel right.

#

For a lot of the stuff I do, I could just swap out bukkit for something else and still be fine

#

If my client uses bukkit, then I will use that API as well. Then be decently happy when I have enough money to pay my rent

stiff yarrow
#

What's your monthly expenses like city

heady spear
#

I’ve made a serious effort to cut my expenses down as far as possible. Paying bills and food is around $1200

#

Then there’s books for school, bus tickets and shit like that

#

We get some money for going to uni, then I take student loans. That’s around $1100

stiff yarrow
#

you pay your bills with just minecraft?

heady spear
#

Everything that isn’t covered by student loans and the money from uni is covered by Minecraft

#

Our loans aren’t for school tho, they’re for living expenses

#

Just aimed at students

quasi valley
#

Still wondering why our systems are so scuffed

#

people do their best at discouraging you from studying (unless you search for something entirely by yourself)

heady spear
#

I’ve also done non-Minecraft commission work in the past :p when I actively work on plotsquared I pretty much rely on donations, though

#

I come from a realllllllyyyyyy poor family

#

So the money has gone to things like medication and whatnot over the years

#

It’s not like I’m rolling in Minecraft cash, lol

stiff yarrow
#

well I realized that when you said you only made 15k so far, which wouldn't be enough to live on for very long

heady spear
#

Yeah no :p I rely on student financing.

stiff yarrow
#

I was just curious if you were actively making enough to live on

coarse urchin
stiff yarrow
#

which I guess you are because of financing from school

heady spear
#

I am going into debt, so I’m really not

#

80% of my income is from loans, lol

limber knotBOT
#

I wouldn't want to life off of minecraft, I am happy the way it is now: a hobby

quasi valley
#

Dont take those loans for granted :p

limber knotBOT
#

what do you need to pay back?

#

iirc in germany you only need to pay back 50% of student loans

heady spear
#

I have to pay back all of it, but at a very low interest over a decently long time

limber knotBOT
#

(but its nearly impossible to get once since you only get once if your parents can't pay for you and the threshold is super low)

quasi valley
#

well there are scholarships

heady spear
#

It will only be like $80k in the end, so I’m fine

quasi valley
#

How much does a semester cost for you / how many semesters are you going to take?

heady spear
#

We don’t pay for school. But living expenses are, uh, decently high

quasi valley
#

ah yeah

#

now I get it

heady spear
#

So I’m very lucky in that regard

quasi valley
#

Im lucky enough as that my parents have an apartment to spare entirely for me, I'd probably go down living by myself

#

tho thats currently under renovation, so I am essentially living in two rooms packed with everything 👀

heady spear
#

I live in a 20 square meter apartment across from campus

worn ember
#

@heady spear missed me owo

quasi valley
#

Oh thats also nice

heady spear
#

It’s the most expensive fucking apartment in this fucking town

limber knotBOT
#

and then there as sad ppl like me who would be able to afford a very decent flat or apartment or whatever but since there is way too much demand and virtually no supply its impossible for me to find anything

worn ember
#

Move.

quasi valley
#

what state do you live in mini?

#

||other than constant anxiety partyparrot ||

heady spear
#

That’s the problem here too

limber knotBOT
#

state

tropic flame
#

may we please make a change.com petition so americans start using actual measurement units?

worn ember
#

it's a problem everywhere

limber knotBOT
#

pfff

stiff yarrow
#

temporarily staying at my moms while I look for a new place so right now my monthly expenses is about 300 bucks

tropic flame
#

laughs in Meter and Celsius

limber knotBOT
#

am from cologne, germany

heady spear
#

Also why student housing is so damn expensive

quasi valley
#

well city then 😂

worn ember
#

Hotel mama still best

heady spear
#

Some people rent single rooms for $1500

limber knotBOT
#

see, the price isn't even the issue for me

quasi valley
#

Oh boy

limber knotBOT
#

I would pay insane prices

#

but I just don't get any :D

heady spear
#

Student housing is the biggest issue with our system

#

And is the sole reason why students go into debt here, lol

quasi valley
#

The high student loans sounded too good to be true

#

thats why

worn ember
#

Move to a low population area

#

but have shitty internet probably

#

😢

heady spear
#

I’m fine because I do private development for a server, and they pay decently well

limber knotBOT
#

nowadays we have good internet in low population areas

#

but I don't want to have a 1 hour commute to work

heady spear
#

My grandma has 100/100 lol

quasi valley
#

Its getting better in our area, but still rarely over 50

limber knotBOT
#

like, I would buy a house with 400m2 for the price of a 40m2 flat downtown if I would be ok with driving to work for an hour

heady spear
#

That’s the one good thing with this apartment

#

I get free fiber

limber knotBOT
#

"free"

#

its in your rent :D

heady spear
#

It’s not, though. Otherwise I could get more money from the government 😛

#

I pay $20 extra for mandatory utilities and shit, and that includes the internet cost. But I’d need to pay that regardless, so it’s essentially free

#

I have to pay tv tax tho

#

Despite not owning a tv

stiff yarrow
#

Lol

finite wave
#

@heady spear Tv Tax is weird as shit

heady spear
#

I am essentially paying for melodifestivalen

#

And the off chance we have to host Eurovision

#

Fuck public service.

finite wave
#

I’m not paying to have a tv. Other than the channels of course

limber knotBOT
#

in germany you pay if you have a household

#

its ok, public tv channels with no intention to make money are important

#

else you end up like murica

heady spear
#

The thing is, they have the shittiest shows

#

It’s like documentaries about yarn production in Finland during the 1950’s

quasi valley
#

are the news somewhat "objective" at least? thinking_eyes

limber knotBOT
#

sure

quasi valley
#

US

#

i mean city, I know that they are in Germany :p

heady spear
#

The news reports are local, and about the most random shit

limber knotBOT
#

we get both local (city) and new from germany and the world

heady spear
#

Greta lost her can opener so the entire retirement home pitched in to buy a new one. Someone saw an elk. A car drove off the road.

#

That kind of stuff

limber knotBOT
#

we got multiple news shows

#

one for local stuff, one for state level stuff, the tagesshow, which is 15 minutes of international/country level news

heady spear
#

Same. But the ones with actual news aren’t public service 😛

limber knotBOT
#

kek

finite wave
#

Same here

heady spear
#

Public service here is random “cultural” stuff, and documentaries about shit no one gives a fuck about

cosmic gorge
#

they say stuff based off of random pools of messages so it lined up pretty well

uneven blaze
#

A good cpu for minecraft server? (150 - 400 players)

#

90 EUR - 110 EUR

#

nono, i need a dedicated server

#

for my minecraft server

limber knotBOT
#

yes he is renting

#

I swear I have the worst luck hiring artists to do basic illustrations for me

#

haire me

#

they do 1 thing then vanish for months on end

#

it's rather aggravating

thorn ermine
worn ember
#

i'm always availible for graphical design lol

#

as long as it doesnt involve drawing

true canyon
#

Can I rent a MiniDigger for cheap? I need some boxes moved.

worn ember
#

Yes.

limber knotBOT
#

minidiggers don't move boxes

#

minidiggers move dirt!

worn ember
#

Thats nice. I need to get a tree dug out

#

get to work

slim nymph
#

@vernal moth need to be nice if wanna convince devs to come work with us >_>

limber knotBOT
#

am nice, ok!

#

:D

slim nymph
#

not that latest reply!

limber knotBOT
#

but yeah, ill leave him alone now

#

hey, I offered help, he said he doesn't care 🤷‍♂️

ancient bolt
#

wait i thought mbaxter wasn't allowed here anymore

#

something about him not respecting the tacos

slim nymph
#

could edit the comment 😛

limber knotBOT
#

I can't think of a way to say what I want to say in a nice way 🤷

ancient bolt
#

then say it in tacos

slim nymph
#

delete it then 😛

limber knotBOT
#

yeah just did

stable oriole
limber knotBOT
#

ill redirect my hatred to Spottedleaf

#

I blame your ugly theme

fallen oracle
#

Looks like Eclipise

slim nymph
#

that looks like windows window manager bugging out

finite wave
#

Prolly os

#

Is

limber knotBOT
#

docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY

#

Error response from daemon: Get https://registry.gitlab.com/v2/: error parsing HTTP 403 response body: invalid character 'F' looking for beginning of value: "Forbidden\n"

#

reeee

#

what did gitlab break?

slim nymph
#

it breaks for people who use 'ree'

ancient bolt
#

What was the mean comment?

#

was this on spigot?

slim nymph
#

yeah some plugin that intentionally disables on paper

#

im trying to convince them to support us, mini's like "your a piece of shit" essentially lol

ancient bolt
#

link?

#

i guess he already deleted 😦

slim nymph
#

"you sound like a developer that will happly work together with users to solve problems and whos plugins should be recommended to everyone.
not."

ancient bolt
#

soooo

#

we could add a transformer

#

to un-disable paper in that plugin

limber knotBOT
#

because he said he doesn't care

slim nymph
#

im tryign to convince him to care 😛

ancient bolt
#

I might do that later today if i find time

slim nymph
#

@ancient bolt I already wrote a plugin to override that class and remove the paper check

ancient bolt
#

haha nice

slim nymph
#

bukkits stupid classloader order made it easy

finite wave
#

Meh

slim nymph
#

bukkit will pull from other plugins class loaders before your own

finite wave
#

@slim nymph Did u do it?

slim nymph
#

do what?

finite wave
#

Patch it into paper

#

Hahaa

slim nymph
#

no, i made a plugin

limber knotBOT
#

no just a plugin

slim nymph
vivid mirage
void void
slim nymph
#

welcome new people

ancient bolt
#

probably best to leave that thread alone tbh

#

otherwise paper is basically brigading this guy on spigotmc

#

no good

static badge
#

people still give a shit about that random plugin?

limber knotBOT
#

oh cool

finite wave
#

Spigot -> Paper can be done but not Paper -> in some cases. He doesn’t get it

limber knotBOT
#

gitlab banned my vps

finite wave
#

Lol

woven otter
#

Aikar dropping bombs. Nice

limber knotBOT
#

stupid rack-attack

slim nymph
#

@static badge plugin seems to have decent capabilities

true canyon
#

MiniDigger what if I ask you to move boxes containing dirt?

heady spear
#

Just recorded my mom admitting to stealing my identity =)))

static badge
#

good god

finite wave
#

Porn?

woven otter
#

what's with server owners wanting to join plugins in one singular plugin

true canyon
#

That's a nice response you wrote there aikar

golden gust
#

Less hassle, especially if you can somehow find a way to pretend its yours

limber knotBOT
#

uh so.... git ninja time

#

i slapped git filter-branch to extract subdirectory commits

#

but repo is still like ~200mb

#

which means it contains old repository objects, however unreachable or something

finite wave
#

@golden gust I mean. I could easily make plugins look like they are mine

limber knotBOT
#

how can i make that repo smaller/drop unreachable objects?

woven otter
#

some of them say that it's for better performance

finite wave
#

Just add Jan infront of their name in the plugin.yml

woven otter
#

that's just stupid

golden gust
#

Well, yea, that, spretty easy, @finite wave

#

new NullPointerException().printStackTrace()

#

Well, or, if you wanna go the full mile, just go for a throw new NullPointerException() 100% @finite wave certified

finite wave
#

What?

golden gust
#

I was trying to say that to make it look like yours, all I gotta do is throw a few NPEs 😛

limber knotBOT
#

boys

#

I got a treat for you

#

and it's a youtube video I just made

finite wave
#

Yeah i got that, i’m not gonna take it lightly though. Imma fuck u up @golden gust /s

limber knotBOT
#

I'm just giving it a minute for the footage to get up to 1080p at least

woven otter
#

/s

limber knotBOT
#

come on youtube give me the extra pixels

golden gust
#

what a waste of pixels

limber knotBOT
#

pls

#

my poor fee fees can only take so much

#

(^-^) Debugging Minecraft: The many stages of grief - length 3m 25s - 4 views - MagmaGuy on 2019.03.18

#

that resolution

#

if you give it a few more mins it'll probably go up to ultrawide 60fps

#

^-^ You do know that the docs state to never try to do stuff like open inventories in the click event? :P

#

clearly I don't

#

uh

#

you mean the inventory click event or just the interact event

golden gust
#

click event is an inventory interact event

limber knotBOT
#

yeah I'm not opening inventories on the inventory interact event

#

I was opening them on the interaction with the villager

golden gust
#

ah, you were probably fighting the server

limber knotBOT
#

the actual issue was weirder

heady spear
#

I don’t debug my code

limber knotBOT
#

so

heady spear
#

Either it works or users make github tickets

#

I don’t have time for testing

limber knotBOT
#

when opening a custom inventory on the entity interact event the first time that inventory got opened after a server restart and only via the interact event the clicks in that inventory would not get caught in the event until the inventory got closed and opened back up again

#

that inventory could be opened via command just fine and work

#

but it would still mess up the first time it got opened through the entity interaction

#

There any documentation for waterfall?

#

Documentation in what sense? I started toying working on some stuff a while back, but time, etc...

slim nymph
#

@golden gust electroniccatBOTToday at 10:31 AM
^-^ You do know that the docs state to never try to do stuff like open inventories in the click event? :P

what?

#

why would that be not allowed

golden gust
#

Or was it just the open events maybe, I recall there being some issues with it

slim nymph
#

opening an inventory in an open inventory event?

#

but like all chest gui plugins open inventories in click events lol

golden gust
#
 * The following should never be invoked by an EventHandler for
 * InventoryClickEvent using the HumanEntity or InventoryView associated with
 * this event:
 * <ul>
 * <li>{@link HumanEntity#closeInventory()}
 * <li>{@link HumanEntity#openInventory(Inventory)}
 * <li>{@link HumanEntity#openWorkbench(Location, boolean)}
 * <li>{@link HumanEntity#openEnchanting(Location, boolean)}
 * <li>{@link InventoryView#close()}
slim nymph
#

that seems like an unnecessary doc

#

inventory management in click event is pretty normal

#

pretty sure we violate everyone of those except workbench/enchanting

wide chasm
#

In my inventory framework I'm also updating the inventory by calling Inventory#openInventory inside an InventoryClickEvent and it seems to work fine.

slim nymph
#

saying you shouldnt close an inventory is also a wtf lol

#

i guess you could 1 tick delay it

#

but it works fine as is

#

prob a relic of old bukkit days

golden gust
#

Wonder if it's one of those oddball things that you might hit with some inventories in some conditions but not others

slim nymph
#

if anything after the ICE processing assumes its still open yeah it could cause issues, but if that ever came up we could fix it

#

but hasnt affected anyone in years

unreal quarry
limber knotBOT
#

Damn

#

When I lived with my grandparents we lived pretty close to an industrial park which ended up having a nice huge fire

#

Worse part is is that somehow our block was easily forgotten about, so we didn't really hear much until we heard it on the news

unreal quarry
#

City alarms we're going off. Big ass cloud of smoke covering the sky. Shelter in place notices came and went. Highway was shutdown. Schools are closed. Hard to miss lol

#

I caught the smoke yesterday on my GoPro riding my bike around, but it was just 1 tank on fire then. Woke up today to learn it's spread to 8

heady spear
#

what the fuck is going in in Utrecht? has everyone just decided to go shooting people all of a sudden

wide chasm
#

Ehh, it wouldn't be the first time there was a shooting in the Netherlands. It's not like they're daily, but it happens multiple times a year it seems.

wet hull
woven otter
#

Let's say that I have an abstract class and two methods that can be optional. My question would it be okay to leave them empty or would it be wrong or is there even better way to handle this?

limber knotBOT
#

100% depends on the usecase

#

but yes, its perfectly valid to have empty default methods

woven otter
#

Okay good. If you're are wondering about use case it's a Handler for specific text channels in discord that have 2 optional methods onMessage onReaction and they can be executed from listeners

limber knotBOT
#

yeah, thats normal

#

all adapters do that

woven otter
#

Okay thanks

wet hull
#

im really curious on how the server got verified

limber knotBOT
#

you ask discord to get verified and they will verify you

wet hull
#

oh ok

limber knotBOT
#

theres some form I believe

#

and some requirements

wet hull
#

im really interested in this bot

#

lmao

limber knotBOT
#

am I cool bot, I know

wet hull
#

i can only code a bot to say something with a command

limber knotBOT
#

We met their guidelines on the website and basically emailed them until they did it for us ¯_(ツ)_/¯

wet hull
#

but then it just says the message you included and deletes your one

#

this is probz done in console

limber knotBOT
#

It's an IRC bridge

wet hull
#

ooh

limber knotBOT
#

we are on the good side

wet hull
vernal moth
#

Not the bad side

limber knotBOT
#

hai der

#

am you

#

^^

wet hull
#

wowzers!

#

i am committing bot genocide

plush grove
austere ivy
#

I was going to put an F reaction but apparently Spotted has spread his Leafititis on me. Thus, I must put it in chat.

#

🇫

woven otter
#

ewww

#

source?

austere ivy
#

Some people are even trying to convince me to become democratic lol.

#

So presumptuous too.

tropic flame
#

l o l politics

vestal jasper
#

lol politics

austere ivy
#

"I assume you support this and I assume you support that."

#

Lol what.

#

I made a simple statement on net neutrality being good and that people need to form their own opinions.

unreal quarry
austere ivy
#

Yikes.

unreal quarry
#

I don't get how they can claim explosion hazard is minimal for an uncontrolled fire that's continuously spreading between gasoline products :S

austere ivy
#

/r/youngpeopleyoutube is one of my favorite subreddits now haha.

vestal jasper
#

oh no

austere ivy
#

Bird box challenge

unreal quarry
#

'Ray Russell, spokesman for Channel Industries Mutual Aid, which is helping in the response, said firefighters have had "pretty good success controlling the fire" and stopping it from spreading to other tanks. The tanks that are burning contain gas, oil and chemicals, according to Intercontinental Terminal Company, which owns the facility.'

Me: Wat. It started as 1 tank on fire. Then 2.. Now 8...

austere ivy
#

BIRD BOX CHALLENGE

#

Also whose being blamed/whose playing for it, Billy?

#

ITC?

#

The uh Intercontinental Terminal Company?

slim nymph
#

the people are paying for it

unreal quarry
#

No clue yet. Let's put it out first, then play the finger pointing game

slim nymph
#

through a wrecked environment

#

i bet that air quality is lovely right now

tropic flame
#

tbh I'd look forward for an "Avast Lite"

unreal quarry
#

They keep monitoring that, aikar. So far so good.

#

Well, no worse than usual for the area lmao

slim nymph
#

if they == the company, not like id trust it lol

unreal quarry
#

FEMA is here and all sorts of others.

#

It's out of ITCs hands at this point

austere ivy
#

Aikar

#

You should come out here to Colombia.

#

Specifically, Bogota.

slim nymph
#

yes silly named person

austere ivy
#

The smog is so bad you can't see clouds haha xD

unreal quarry
#

Idk who is in charge, but it's not ITC.

austere ivy
#

Also talking about pollution, it is disgusting and there is so much people, and so much traffic

tropic flame
#

@austere ivy isn't that because of all the weed--

austere ivy
#

I do not want to live in Bogota haha

#

no Logics.

#

not that kinda smog.

slim nymph
#

weed wouldnt be making smog

quasi valley
#

but snog

austere ivy
#

the kinda smog that makes you cough and is toxic for you, the kinda smog that is pitch black, alll over the city

tropic flame
#

yeah it was a joke sorry sometimes I think it's too obvious not to put /s ok thx

austere ivy
#

yea I wish I could be back in america sometime

unreal quarry
#

Surprisingly our pollution levels are pretty decent for being the chemical plant capitol of the world

austere ivy
#

but hey in 2 days I will be

#

<o/

#

\o>

#

(for 3 weeks)

#

Chicago does too :P

#

I don't think that the smell is pollutin

#

pollution

#

I think it's all the trash that's littered all over the street

#

and tightly-packed people with tightly-packed sewers

#

yeah I mean that too BUT I live right next to a pfizer plant

#

and it's nowhere near Chicago

#

like I dunno it smells a bit different.

#

chicago just smells like trash o-o

#

oh yeah, super

#

go out in the country haha

#

but I mean nothing you can do about light pollution

#

it's.. light

#

kinda happens when you have 10000 people in a tight space all trying to cram in homework at a late time :P

#

maybe you should head over to...

#

SWEEEET HOME ALLAABAMAAA

#

(something something) TIDES ARE NEEWWWWW

#

SWEEEET HOOOME ALLLAAABAMAAAAA (dada dada da da daaaa)

#

WHERE THE TIDES (???) NEWWWWW

#

OK THEN COME ON OVER TO

prime adder
austere ivy
#

It's great here.

#

I mean it's just a better ohio.

#

I like it, and I've been to Chicago, uh New Jersey, uh Colombia, uh Florida

#

that's where my father is from™

#

and I totally agree™

#

yike

#

That's where my "extended family" is and uh..

#

I don't really like it there, everyone is kind of.. odd.

#

I think.. I don't quite remember honestly. Might've been more north.. maybe? I doubt it.

#

Been a long time since I've gone there and my grandparents had this huge house on a hill and they had just acres of farmland in new jersey.

#

And it was a big creepy mansion style house.

#

I'm Christian, and I 100% no doubt believe that house is haunted.

#

Like legit when sleeping there, randomly the radio and tv would turn on.

#

Then off.

#

Just for a bit. Odd noises, everywhere, things turning on and off.

#

And there's one room in the house that no one could open..

#

And then there was another one that was infested with thousands and thousands, maybe tens of thousands of lady bugs. Really weird stuff.

#

And then they had pigs and cows and stuff, they smoked in there so it wasn't very nice smelling, and it was old decor and everything from the 1940s or 1950s or 1960s or something. Just.. very not good haha.

#

And there's stairs. Suuper steep stairs that lead up to a tight maze-like hallway with doors everywhere. Like doors and doors and just.. blagh.

#

Yeah how is nj nowadays?

#

yikes.

#

yeah that's the problem with everything, chicago, colombia, apparently NJ, it's all a lot of traffic.

#

I live in a small town in Michigan now and even now it's getting a bit more trafficy but it's not too bad honestly. Only during rush hour is it not empty.

#

where's thanos when you need him

#

also is there a lot of old-school kinda 1950s diners?

#

oh yeah I meant that.

#

black and white tile, red chairs kinda thing?

#

yup. hasn't changed one bit.

#

cheap corn-starch syrup for your pancakes, eggs, and one piece of bacon?

#

yeah I remember, my father loves those because apparently it was his childhood :P

limber knotBOT
#

Got a f load of Thread/ERROR stuff

slim nymph
#

our first IRC support user of the new era!

#

#\paper-help is for paper-help Lakeisha

limber knotBOT
#

Seems there is something wrong with chunks

slim nymph
#

your harddrive appears to be slow in this case

#

is it an SSD?

#

someone used a portal, its loading chunks

#

its not a bug ,just shows your server is having trouble loading chunks

limber knotBOT
#

The ARC is 32GB of ECC DDR4 but the NAS array is not SSD

#

on ZFS

#

so cow

slim nymph
#

SSD's are strongly recommended

limber knotBOT
#

could be that...

slim nymph
#

It's guaranteed that

#

stack trace shows its reading data from the file

#

is something blocking the FS though, thats some slow reads

limber knotBOT
#

Aikar but I guess this all comes down to the disks not being SSD?

golden gust
#

No need to try mentioning somebody every message

#

But, especially in areas like that where the server is loading up chunks looking for things, having a fast disk is pretty critical

limber knotBOT
#

IOPS with ZFS generally sucks

slim nymph
#

is that a network NAS mount?

Drives: HDD Total Size: 256.1GB (86.4% used)
ID-1: /dev/sda model: Samsung_SSD_850 size: 256.1GB

#

shows you do ahve an SSD

#

network mounting the world files is strongly discouraged

limber knotBOT
#

MC does not live on that SSD. That is the "mainframe" that uses kvm to split up stuff. MC is on the ZFS

#

and anything that uses CoW is gonna have be slow..

tropic flame
#

mfw my phone was at 47% of battery and now it's at 50%, then I look down and I see my charger plugged although my phone is not connected to it and I don't remember when I did this

#

am I dying or something

limber knotBOT
#

yes

#

You sure it is the disks? Not in the mood to fork out for 24TB of SSD if its not needed =)

golden gust
#

I mean, we only have a top down view of what was going on when the server took too long to tick, but it's pretty clear that it's stuck behind reading from the disk

woven otter
#

Just wondering. How would you monitor any exceptions that are printed in console?

limber knotBOT
#

Thanks guys.

tropic flame
#

puns

slim nymph
#

LaKeisha why do you need 24TB for mc lol

#

running 16k renders of dynmap?

upper flicker
#

MY DYNMAP WILL BE THE MOST 4K HDR ULTAHIGHRES BLURAY EXPERIENCE EVER AIKAR

#

and yeah, dynmap was always the largest part of my server for that ^ reason, not even memeing

austere ivy
#

want

#

wat what

#

24tb???

#

my own computer has 500 gb ._.

limber knotBOT
#

that a rpi?

golden gust
#
Filesystem           Size   Used  Avail Capacity iused               ifree %iused  Mounted on
/dev/disk2s1        766Gi  653Gi  105Gi    87% 6022249 9223372036848753558    0%   /
/dev/disk0s3        187Gi  165Gi   22Gi    89%  374566            23094174    2%   /Volumes/BOOTCAMP
/dev/disk3s3        1.6Ti  1.1Ti  576Gi    66% 9011186             4722456   66%   /Volumes/DATA
/dev/disk3s2        186Gi   87Gi   99Gi    47%  201957          4294765322    0%   /Volumes/NFSDATA
upper flicker
#

my main drive for linux is like 240G

austere ivy
#

_<

upper flicker
#

never come close to filling it

vestal jasper
#

250GB boot drive, 1TB home drive, 1TB windows drive.
Not close to filling any of them.

golden gust
#

Wanna get my downloads folder to auto move stuff over to the data drive after it's not been touched for a while

fallen oracle
limber knotBOT
#

I got a fat ZFS NAS in RAIDZ-2.

upper flicker
#

I actually had some hard drives die so Im back down to just one 4TB storage disk

limber knotBOT
#

caps looks stupid btw

upper flicker
#

that I have split in two between ntfs and a real filesystem

fallen oracle
#

@gloomy sphinx You alive?

limber knotBOT
#

lol you said ntfs

upper flicker
#

lock contention bb

woven otter
#

@upper flicker you have a server or you had a server?

golden gust
#

my data drive (Which is more "random crap and stuff I care about" on a single drive) is exfat, for that cross compat love

upper flicker
#

I dont run an MC server anymore no

limber knotBOT
#

at least mirror them.

woven otter
#

how did Paper project start btw

limber knotBOT
#

somebody hating somebody...as always

upper flicker
#

I dont trust exfat to not lose or corrupt data over time

golden gust
#

A man named Z750 and some old legend who apparently went by the name of gsand

upper flicker
#

Paper started because spigot didnt want a set of changes

#

and we wanted them

#

and thats it

limber knotBOT
#

told ya

upper flicker
#

thats not the same thing

limber knotBOT
#

oh

woven otter
#

that's pretty awesome that it turned out like this tbh

upper flicker
#

I'm kind of... idk is it oldschool? about forking

#

fork often fork for no reason

#

somebody says no thats okay, click fork and do it yourself

#

that attitude is kind of going away

#

imo yes

#

I saw it as the opportunity to work together because everyone can just use eachother's work as they please

#

I never saw it as an everyone must work together

#

most projects have or had a valid reason to fork at one point or another

limber knotBOT
#

Think of every OS out there...idk like OBSD etc. Always some dickery and fighting and ppl leaving to start something new.

upper flicker
#

even those weirdos working on that dumpster fire cinnamon de

#

The BSDs havent been part of the same tree in 30 years

limber knotBOT
#

96?

upper flicker
#

thats a much larger issue than "dickery and fighting"

limber knotBOT
#

Thinking Theo

#

but his dickery was a good thing imo

upper flicker
#

I would have to refresh my history on OpenBSD specifically, you may be right there

woven otter
#

I considered donating to paper. Is that a thing here?

upper flicker
#

perhaps I spoke too broadly

#

its a thing, it just goes to covering bills

#

Paper hasnt ever made any money for anyone afaik, except outside of people selling forks

#

or people running servers that do make money using paper, which is fine

#

open source freedoms

limber knotBOT
#

Nothing good comes from a mutual consensus in the long run according to evolution.

austere ivy
#

I disagree.

woven otter
#

Sure. That's a good way to spend donations

austere ivy
#

^

#

Well at the same time if you have one person working on something you'll never achieve something greater than just one person can do.

#

I mean that's why Aikar isn't the only paper dev.

woven otter
#

If I make this donation it will be my first donation to anything ever lol(at least on the internet)

austere ivy
#

And that's why we have open source.

limber knotBOT
#

actually maybe your right. Thinking of symbiotic relationships. Like mitocondria in cells etc

#

Gonna smoke a bowl...brb

upper flicker
#

The earth is a hexagonal prism

#

wake up sheeple

austere ivy
#

no

#

it's a cube

#

it's a cylinder

#

that explains how it wraps

#

wait so is it

#

a hexadecimal gon

#

?

#

so convincing

woven otter
#

Earth is 13D vibrating string construct. Wake up sheeple

austere ivy
#

australia is a myth

#

made by nasa

woven otter
#

universe is a myth

#

your consciousness is an illusion

#

Yeah but how would you prove that

worn ember
#

We're a simulation inside a simulation

woven otter
#

that not a proof though

#

no it's multidimensional playground for conscious cunts

austere ivy
#

ok bye people

worn ember
#

Kbye

woven otter
#

k thx bye

tropic flame
#

mfw captchas get on my password auto-type's way

vernal moth
#

[19:53:59,407] <launcher> WARN AnnotationConfigApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'autoOptimizer' defined in com.ubnt.service.AppContext: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.ubnt.service.I.B]: Factory method 'autoOptimizer' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'deviceManager' defined in com.ubnt.service.AppContext: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.ubnt.service.super.D]: Factory method 'deviceManager' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'eventManager' defined in com.ubnt.service.AppContext: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.ubnt.service.O00O.B]: Factory method 'eventManager' threw exception; nested exception is java.lang.NoClassDefFoundError: javax/activation/DataSource

#

why do I even try to run software at this point?

#

I bet they can't deal with java 11

austere ivy
#

Oh no! You've been infected with a virus. You must pay me 105381 bitcoin in order to get that message out and I'll fix the virus. Thanks.

woven otter
#

no u pay me that amount of bitcoin

void void
#

Oh wow Paper's Discord has changed.

austere ivy
#

Oh no! You've been infected with a virus. You must pay me 689138 bitcoin in order to get that message out and I'll fix the virus. Thanks.

#

Can someone add a reaction "no u" to my thing?

#

I can't, I caught leafititis.

void void
#

Dead meme.

austere ivy
#

I did. I actually did.

upper flicker
#

do you know da wae @static badge

static badge
#

ye since I got more than 2 braincells i can store information like paths

stiff yarrow
#

show us da wae brudda

upper flicker
unreal quarry
slim nymph
heady spear
#

yay plotsquared release for y'all be happy celebrate good time woooow

quasi valley
#

love that really large and flashy sign that you cannot possibly oversee

slim nymph
#

The 11 foot 8 Bridge (formally known as the Norfolk Southern–Gregson Street Overpass and nicknamed The Can-Opener) is a railroad bridge in Durham, North Carolina, United States, that has attracted media coverage and popular attention because tall vehicles such as trucks, b...

upper flicker
#

jesus

#

we had one that was like just 13' and that caused tons of problems

#

lower than that just sounds bad

static badge
#

well if it's lower then it's more obvious you can't pass

upper flicker
#

just more likely someone will hit it apparently

#

the human condition

finite wave
#

Someone help me with some C

static badge
#

maybe it could be the cure for cancer

#

if u hit it

#

.ask

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.

finite wave
#

This is the wrong channel though

#

But usre

upper flicker
#

there is no help channel for c

static badge
#

there's really no C channel

quasi valley
#

there is clinical help

#

for c

static badge
#

any other but here is inappropriate

finite wave
#

After looping over memory i get multiple values that are wrong. Eg -> https://tknk.io/KbDu and only one correct one ```
∙vHello, how are you Jan?
Base: 0061B000
Start: 00004EA5
End: 00004EC0

#

Code

static badge
#

monkaW win32

finite wave
#

@static badge I'm using win64

#

Compiling for Win32 iirc

static badge
#

the api for windows is referred to as win32

#

regardless of the target arch

finite wave
#

Oki, u know why i get this issue?

static badge
#

the naming for 64 is also wow64

#

(don't ask me it's windows retardation)

slim nymph
#

cant wait for rofl128

static badge
#

lul

upper flicker
#

because thats what everyone siad when they found out they got winders on a different arch

#

anyone know what arm's is now that they're doing that

#

is it wtfarmhf

heady spear
#

there is tnt dupe in 1.14 have you fixed it yet?

upper flicker
#

bug in plotsquared

#

plugin

#

closed

heady spear
#

We don't have bugs in our software.

static badge
#

I'd suspect things can be duplicate in memory due to things like printf and realloc

finite wave
#

It's running on a different programs memory.

#
int main() {
    SetConsoleTitle("Change Memory Test\n");
    printf("Waiting on memory change <3\n");
    char pen[] = "Hello, how are you Jan?";
    while (1){
        if (strcmp(pen, "Hello, how are you Jan?") != 0){
            printf("%s\n", pen);
            break;
        }
    }
    printf("Memory changed <3\n");
    char test [1];
    gets(test);
    return 0;
}
static badge
#

not exactly familiar with the api you're using but it looks like you're going through the entire program's memory

#

with the way you've done that there will duplicates

finite wave
#

Shouldn't be though, i'm looping through a program where there is only supposed to be 1 instance.

static badge
#

printf can dump its shit to a buffer

#

not to mention the string will be stored statically

finite wave
#

So, the issue was the strcmp

#

It had an instance with Jan? in it.

#

Fixed it

static badge
#

not to mention the string will be copied to the stack

finite wave
#

Wasn't stack address though.

modest solstice
finite wave
golden gust
#

All of his plugins have that

vestal jasper
#

They're all from the same dev

finite wave
#

@golden gust Not all

#

Only found these two

golden gust
#

Well, as many as I've cared to check lol

stiff yarrow
#

this plugin author almost seems not all there thonkeng

finite wave
#

He added it not that long ago it seems though. ;/ Hmm

upper flicker
#

might just be that shared core plugin