#dev-general

1 messages · Page 262 of 1

hot hull
#

oh god haskell

old wyvern
#

Had a battle with the godly errors of the lands of haskell

prisma wave
#

classic

#

you've experienced the pain 🥲

old wyvern
#

🥲

#

Also

#

Why THE FUCK

#

Does indentation matter

prisma wave
#
    let e = 
            if d >= b 
            then "true"
            else "false"
``` this can be replaced with `show (d >= b)` I believe
old wyvern
#

I thought it didnt

#

ah

hot hull
#

@quiet depot Still no update on the shirt :C

old wyvern
#

Hacktoberfest?

hot hull
#

yea

old wyvern
#

Yea they didn't deliver to everyone last time as well right?

prisma wave
#

aj you joining

hot hull
#

bruh I want my shirt :sad:

old wyvern
#

Sue them

hot hull
#

Ah yes sue them for not giving me free shit

#

big brain

old wyvern
#

Yes

prisma wave
#

welp im bored

#

starting now

#

:))

#

ooh

hot hull
#

My brain mooshy

obtuse gale
#

hello

hot hull
#

Goddamn it Yugi

old wyvern
#

😂

hot hull
#

Google is a marvelous thing

old wyvern
#

ew lists

hot hull
#

I hate arrays

old wyvern
#

Honestly generics are the one thing that lets java down in competitive coding

#

Makes it hard to compete with c++

steel heart
#

true

prisma wave
#

tf have i done wrong here

old wyvern
#

the collections are unusable without drastically slowing everything down

steel heart
#

all my homies hate java generics

prisma wave
#

compiler errors everywhere

#

🥲

old wyvern
#

Haskell?

#

Clojure?

#

f#?

prisma wave
#

f#

hot hull
#

Yugi, fingerguns

prisma wave
#

oh

#

missing parentheses

#

classic

old wyvern
hot hull
#

I'm too dumb to understand that

prisma wave
#

error FS0001: The type 'float' does not match the type 'int'

#

what

#

why

#

im adding 2 floats

#

????/

stuck harbor
#

lol

old wyvern
#

xD

prisma wave
#

what??????????????

hot hull
prisma wave
#

oh fuck off

hot hull
#

No :c

stuck harbor
#

wha

hot hull
#

Pandas

stuck harbor
#

confuse

prisma wave
#

hold on

stuck harbor
#

those are budget made in england pandas

prisma wave
#

mag(vec) is the sqrt(elems squared) no?

#

oh

#

multiplied

#

oh for fucks sake

#

the question gives you the magnitudes

#

i hate this

hot hull
#

u good?

prisma wave
#

i was trying to work out the magnitudes from the data

#

kill me

#

i hate the long questions

quiet depot
#

feelsbadman frosty

#

u could try contacting them

#

that’s what I did last time

#

you’ll want to contact kotis

#

although they’ll probs just to say to contact dhl

#

now another thing to note is

hot hull
#

I live in a fucked place

quiet depot
#

whatever postage service dhl gave it to when it reached europe may simply not provide tracking

prisma wave
#

fkifjifoj

#

stupid question

hot hull
#

It should atleast say it reached europe should it not?

quiet depot
#

no reason for it to

old wyvern
prisma wave
#

the question gave you the magnitudes, not the vectors

old wyvern
#

huh

#

It gave the vector

#

It gave 2 diff vectors and asked us to do a dot product

obtuse gale
#

if you do another ill be able to join that one

prisma wave
#

what

#

did it?

#

cuz i did that and the answer was wildly wrong

#

oh well

old wyvern
#

[a1 a2 .... an] . [b1 b2 ... bn] = a1*b1 + a2*b2 +....+an*bn

prisma wave
#

yeah

#

idfk what i did lmao

quiet depot
#

🍆

#

sorry I thought that may help with the issue

hot hull
#

😏

dry coral
#

clash of code later?

old wyvern
#

We clashing rn schol

#

join

dry coral
#

im in maths class rn

old wyvern
#

ah

obtuse gale
#

ill join next

dry coral
#

python isnt allowed right?

prisma wave
#

only on shortest

#

it's fine everywhere else

dry coral
#

alright

hot hull
#

took 4 min to figure out I forgot a fockin -

obtuse gale
#

ping me when u start next one

#

if you do another

old wyvern
#

Yea waiting for g♭

obtuse gale
#

g flat?

hot hull
#

he ded

old wyvern
#

yes

prisma wave
#

lol

#

im not

#

i jkust

#

BRUH

#

i was debugging for like 5 minutes just to find the function needed to start with a lowercase

#

i hate this

old wyvern
#

oh?

#

Thats enforced?

prisma wave
#

no

old wyvern
#

oh you invoked it wrong?

prisma wave
#

yeah im not 100% sure on the problem

old wyvern
#

welp

prisma wave
#

but it needed String.concat instead of String.Concat

hot hull
#

well yea

prisma wave
#

the annoying thing is, sometimes they're capitalized because of C# interop

#

and sometimes they're not

old wyvern
#

xD

prisma wave
#

so you have to either remember, check the docs, or guess

old wyvern
#

fun

hot hull
#

got enough for right now fingerguns

old wyvern
#

@obtuse gale

obtuse gale
#

couming

old wyvern
#

dont start, brb

#

checking on my brother

prisma wave
#

ok

old wyvern
#

back

#

I think thats everyone bm

prisma wave
#

kk

steel heart
#

playing coc w/o me

#

wow

#

It's treason then

prisma wave
#

join then

#

smh

obtuse gale
#

im like 5-10 numbers off each time 🤔

prisma wave
#

same

#

nvm

obtuse gale
#

What did you do lol

prisma wave
#

just changed the isLeapYear algorithm a bit

obtuse gale
#

isnt it just if its divisible by 4

#

or am i dumb

prisma wave
#

with the exception of centennial years (years that are multiples of 100) that aren’t multiples of 400.

obtuse gale
#

so its either divisible by 4 or 100?

#

what

prisma wave
#

if it's a multiple of 100, and a multiple of 400 then it's a leap year

#

otherwise check % 4 == 0

obtuse gale
#

why even check if its a multiple of 100 then

prisma wave
#

because if it's a multiple of 100 but NOT a multiple of 400

#

then it's not a leap year

obtuse gale
#

oh

prisma wave
#

1700 isn't a leap year

obtuse gale
#

im still off by a few numbers

#

it % 4 == 0 || (it % 100 == 0 && it % 400 != 0)

prisma wave
#

you need to check the 100 first

obtuse gale
#

what

prisma wave
#

because it's an exception

obtuse gale
#

why

prisma wave
#

probably

#

because it is?

obtuse gale
#

wdym

prisma wave
#

it says the description of a leap year at the top

obtuse gale
#

oh

#

i misunderstood u lol

prisma wave
#
let isLeapYear y = if y % 100 = 0 then y % 400 = 0 else y % 4 = 0
#

dont think i can get any smaller

obtuse gale
#

literally cant get this working lol

#

it % 4 == 0 || (it % 100 == 0 && it % 400 != 0)

this is what I had, whats wrong with this

#

where it is the year number obv

prisma wave
#

also

obtuse gale
#

wdym check the 100 first

prisma wave
#

...

#

do it before you check % 4 == 0

obtuse gale
#

doest hat change anything tho since its in an or

prisma wave
#

yes it does

#

because 1700 is divisible by 4

#

but isn't a leap year

obtuse gale
#

(it % 100 == 0 && it % 400 != 0) || it % 4 == 0

#

this lol?

prisma wave
#

yeah i jsut realised lol

dry coral
#

change isLeapYear to just a ltter

#

letter

prisma wave
#

i did that

steel heart
#

fuck

prisma wave
#

but the logic can be shorter too

old wyvern
#

close

obtuse gale
#

ok ive gotta go

old wyvern
#

I didnt see the time

obtuse gale
#

idk what was wrong wiht mine

prisma wave
#

with the exception of centennial years (years that are multiples of 100) that aren’t multiples of 400.
@obtuse gale y % 100 == 0 && y % 400 == 0

steel heart
#

dont look at my code pls lol

obtuse gale
#

yeha

#

then how check if its % 4

prisma wave
#

you know i literally sent the algorithm right

obtuse gale
#

yes

obtuse gale
#

but i cant read your foreign language

prisma wave
#

rly

steel heart
#

again

#

new

prisma wave
#

the logic is the important bit

obtuse gale
#

thats what i had is it not

#

(it % 100 == 0 && it % 400 != 0) || it % 4 == 0

prisma wave
#

no

#

it % 400 != 0 this is wrong

obtuse gale
#

o

prisma wave
#

it needs to be ==

steel heart
#

it % 100 == 0 && it % 400 == 0 || it % 4 == 0 && it % 100 != 0 it would have to be something like this then aj

prisma wave
#

i could've shaved 7 characters off mine lol

steel heart
#

weak

prisma wave
#

🙄

#

let r = Console.In.ReadLine >> int this is so cool

#

i love it

steel heart
#

ok new game

old wyvern
#

There was a shorter way but for some reason it kept giving answer in the range of correct+-1

prisma wave
#

it's equivalent to kotlin val r = { int(Console.In.ReadLine()) } but much prettier

#

weird

old wyvern
#

(to-1f)*0.2425 - (from)*0.2425

prisma wave
#

wow

#

anyone else?

old wyvern
#

did aj and scol leave?

dry coral
#

yeah i need to focus on my class

prisma wave
#

kk

#

10 second difference 😐

#

lol

#

what

old wyvern
#

ay

prisma wave
#

yours is much cleaner than mine lol

old wyvern
#

welp

prisma wave
#

i keep forgetting you can subtract 'A'

old wyvern
#

tbf scala seems very close to kotlin

prisma wave
#

yeah

#

pretty similar

old wyvern
#

also lazy args means it removed the need for the {}

#

kinda neat

prisma wave
#

where?

#

map?

old wyvern
#

the argument for the stream

#

yea

prisma wave
#

oh yea

#

thats pretty cool

old wyvern
#

Its pass by name

prisma wave
#
let getI c = max (int c - int 'A') 0

line |> Seq.sumBy getI |> printfn "%d"
``` could've been 2 lines lol
steel heart
#

okay wtf

#

is it alphabetic order or what

prisma wave
#

yeah

#

HI = 15 because H is 7 and I is 8

steel heart
#

that explains why I got so fucking high numbs

prisma wave
#

lol

#

whenever there are chars and numbers it's always either alphabet or ascii values

steel heart
#

used hashCode

#

:[

prisma wave
#

lmao

viscid charm
#

Player p = (Player)Bukkit.getOfflinePlayer(args[2]);

#

would that work?

#

or nah?

#

getOfflinePlayer <-?

hot hull
#

Don't cast to online player

#

It'll throw a CCE

dry coral
#

im back

hot hull
#

hi back, I'm dad

old wyvern
#

@distant sun oh btw I think private clashes increases xp too actually

#

I didnt do any public yet today but it went up from a few private rounds

obtuse gale
hot hull
#

OfflinePlayer#getPlayer

obtuse gale
#

What does that do if the players offline?

hot hull
#

null

obtuse gale
#

d;method OfflinePlayer#getPlayer

hot hull
#

Hence you should do a check before if it's online

obtuse gale
#

ah

hot hull
#

d;paper OfflinePlayer#getPlayer

ruby craterBOT
#
@Nullable
Player getPlayer()```
Description:

Gets a Player object that this represents, if there is one If the player is online, this will return that player. Otherwise, it will return null.

Returns:

Online player

lunar cypress
#

what is this sentence

old wyvern
#

Yea the paragraph seems to end after the if there is one but whoever wrote it forgot to add a .

hot hull
#

My brain

#

It ouchies

lunar cypress
#

oh that makes sense

#

I didn't see that somehow

prisma wave
#

Yeah it doesn't add newlines I don't think

#

There should be a break between "one" and "If"

old wyvern
#

mhm

lunar cypress
#

(@quiet depot )

#

ensuring that p becomes \n\n and br becomes \n should be easy right?

quiet depot
#

@lunar cypress I think so

#

mind making an issue about that?

lunar cypress
#

can do

quiet depot
#

please refer to that specific example so I can reproduce it

lunar cypress
#

I think I'll just make a general issue for html -> markdown and mention that in there

prisma wave
#
  • wondering why any of my debugs werent working
  • tried about 8 different things and recompile each time, clean build, restart IJ
  • suddenly realise i was copying a jar from a different folder
#

pain

lunar cypress
#

I know that feel

prisma wave
#

🥲

#

it's terrible

quiet depot
#

thx for issues btw johnny

prisma wave
#

also why does compiling small changes for hotswapping take a century

#

sometimes

#

is there a way to delegate the compilation to gradle?

#

It's been 10 minutes and it's still going

#

Wtf is this

pure arrow
#

wiki on how to make papi placeholders?

onyx loom
prisma wave
onyx loom
#

😐

#

"Helpful" role

prisma wave
#

so helpful

#

ill help if you use the right channel

onyx loom
#

🤣

prisma wave
#

otherwise you're getting the random FP language website

onyx loom
oak raft
#

yeah bm aint that helpful

onyx loom
#

ikr

half harness
#

lol

prisma wave
obtuse gale
#

[Request] Create a plugin that readds ai for Giants that were added in 18w50a and removed in 19w03a. The plugin must support (at least) 1.14.4, 1.15.2, and 1.16.4
That... was never a thing, was it?

#

Giants never had AI

hot hull
#

Seems to be added in a snapshot

#

No?

obtuse gale
#

I don't think they ever had any

static zealot
#

semen

obtuse gale
#

cum

hot hull
#

I wonder why they removed the ai kek

obtuse gale
#

I wonder why they did all that crap to then revert it lol

#

Rumor has it that Mojang uses GitHub to git Minecraft's code oldeyes

hot hull
#

Someone get employed by github thank you very much

onyx loom
#

just hack mojangs github

hot hull
#

Yesyes

obtuse gale
#

Aah found it

#

The hint

prisma wave
#

😮

obtuse gale
lunar cypress
#

they wont open source it though

#

sadly

onyx loom
#

and thats where we come in and leak it 🥲

oak raft
prisma wave
#

No 😊

oak raft
#

D:

hot hull
#

@ocean quartz I need to register an enum if I want to use it as a command param right?

ocean quartz
#

Yeah, haven't worked on that in a while

hot hull
#

kk

static zealot
hot hull
#

kek

onyx loom
#

burn it

static zealot
#

getting used back to US Keyboard is a bit hard

ocean quartz
#

$15 to work with obfuscated code kek

static zealot
#

xD

hot hull
#

Even if you give me 100$, no thanks fingerguns

onyx loom
#

frosty u would never deny money

hot hull
#

When it comes to obfuscated code I would

static zealot
#

I've tried to work with some like 2 days ago. tried to edit an existing plugin so I wouldn't have to make mine

#

after 2 minutes I decided to make my own

old wyvern
#

Pay me 100 and im in

#

Dont expect it to ever be completed tho

hot hull
#

Depends on plugin size, I'd rather make you a new one fingerguns

#

And open source it ofc

static zealot
#

nah it was just a global staff chat with a command

#

so just /staffchat MESSAGE

#

ezz

hot hull
#

I'll make that from scratch for 15$ 👀

surreal quarry
#

14.99

#

or 100 helpchat xp

#

is my offer

hot hull
#

A Multimap is just Object, Set<Object> right?

#

or what

steel heart
#

No

#

That’s a SetMultimap

hot hull
#
 * <li>a → 1, 2
 * <li>b → 3
#

Collection then, same shit

steel heart
#

Yes

#

But ListMutlimap, SetMultimap and FrostyMultimap are all different

hot hull
#

yeye just different types

#

Trying to figure out the best storage solution for boosters

#

Probably just Map<UUID, Set<Booster>>

steel heart
#

I don’t like guavas stuff like Table, Bimap and Multimap

#

They’re slower in my experience

#

But at the cost of removing certain awkwardness and being richer

hot hull
#

Doubt it makes much difference with how little data I have

steel heart
#

¯_(ツ)_/¯

little hamlet
#

does anyone know about a plugin that when you die no one can pick up your items for an x amount of time?

little hamlet
#

kk

half harness
#

I can do it for free

#

🙂

little hamlet
half harness
#

unless u already have deluxecombat

little hamlet
#

can i dm you?

half harness
#

Isn't what you wanted is for no one to pick up items when died?

#

🤔

static zealot
#

that's exactly what DeluxeCombat does

#

if you die you can lock the drops

#

for an amount of time

#

so no one can pick them up

little hamlet
#

okok soz ye perfect ty ill look on it

static zealot
#

or you can do it so only owner of the drops can pick them up

half harness
#

deluxecombat is paid .-.

static zealot
#

and great

#

the best combat plugin out there.

#

for what it does

steel heart
#

BlitzCombat tho

#

2021

static zealot
#

nah

#

2023

#

2 years of wasting time

#

and in 2023 I'll say 2025

#

damn 2025 is so close. closer than 2015

#

I barely can comprehend the fact that we're in 2021

viscid charm
#

best combat?

#

I use CombatTagPlus

static zealot
#

still not as good as DCombat

#

like nowhere close

viscid charm
#

What server has DCombat been tested on?

static zealot
#

mine

#

lmao

viscid charm
#

How many players?

static zealot
#

up to 28

#

never had lag problems

#

with it

viscid charm
#

You need more testing tho. Need to test it on some larger servers with 200-300+ players

#

ct tag has been tested with larger servers

static zealot
#

oh right. let me just get 200 players on my server real quick xD

viscid charm
#

Wait are u dev?

#

the dev

static zealot
#

no

viscid charm
#

of Deluxecombat?

static zealot
#

lmao

viscid charm
#

oh ok lol

static zealot
#

just a user

static zealot
oak raft
#

why do you ask that blitz lmao

static zealot
#

maybe he can test it xD

limber stream
#

If anyone could make me a plugin ( Paid ) (Pickaxe level system) dm me

static zealot
viscid charm
#

in the past. not anymore

#

why is the development channel not workign for me?

half harness
#

hm

#

I thought compile was bad

#

in build.gradle

#

yet matt uses it

#

in mf

#

compile "me.mattstudios.utils:matt-framework:{version}"

quiet sierra
#

compile is a feature that's removed on a newer version of gradle

#

I use it

#

But I think you can just replace it for implementation

static zealot
#

u can

ocean quartz
half harness
#

;-;

#

also

#

nvm

oak raft
#

guys

#

how am I supposed to have this client satisfied 🥲

hallow yew
#

Does placeholderapi have a pinger port?

half harness
#

oof

static zealot
prisma wave
#

so much

static zealot
#

I mean if BM hates them I have to hate them as well. so I hate people like that so much

oak raft
dawn hinge
#

very

prisma wave
#

very

static zealot
#

very

oak raft
#

im pissed cuz I just wanna take my money and leave

#

but now I have to deal with this 💀

static zealot
#

hmm is there a restart bungee command?

oak raft
#

yea

static zealot
#

?

#

end just stops it doesn't it?

oak raft
#

wait you mean in game?

static zealot
#

ye

#

or console works as well

surreal quarry
#

if the client literally doesnt know what they want its the most infuriating thing

static zealot
#

I mean that's why you ask for a 23 page google docs

surreal quarry
#

if its not a big commision i would drop it lmao

oak raft
#

idk its my first commision

#

im setting up a couple things for $25

surreal quarry
#

yea ik im saying if it were me lol

#

you can do whatever

oak raft
#

would you drop it? he wants crates, ranks, and /shop

#

and auction house

onyx loom
oak raft
#

thats what IM SAYING

surreal quarry
#

you will be doing a lot more work than you think i feel like. he doesnt know what he wants, so you are going to have to come up with it yourself, then hes gonna say its wrong so you have to redo it, but he doesnt know how he wants it redone, so you have to do it all yourself again etc

onyx loom
#

guys literally braindead

oak raft
#

it annoys me beyond your imagination

onyx loom
#

🥲

oak raft
#

im trying to explain that im just here to execute his ideas

#

not create the ideas.

surreal quarry
#

yea lol

dawn hinge
#

well

#

good luck

static zealot
#

I mean he probably wanted someone to make the economy for him

#

he didn't want just set up

#

but didn't mention it

oak raft
#

oh, you know what he told me? he said just copy a /shop off another big server

static zealot
#

because just setting up those things if you have everything planed is easy to do on your own

oak raft
#

im here like thonking

surreal quarry
#

lmfao

static zealot
#

fuck I really hoped /end would also restart lmao but doesn't

#

welp my day is ruined

surreal quarry
#

/restart

static zealot
#

restart ain't a thing on bungee

surreal quarry
#

oh wait is end bungee

#

yea

#

nvm

#

if its your start script you can add a while true

static zealot
#

its the default one made by ptero

oak raft
#

so what are you using to restart rn?

#

im confused

static zealot
#

nothing lmao

oak raft
#

oh lol

static zealot
#

I was just hoping there's a restart command

#

oh wait

#

there's a start command?

#

nvm

#

I mean commands won't even work when bungee is offline lmao

#

welp time to learn how to make a restart script lmao

oak raft
#

script fingerguns
plugins angry_fingerguns

static zealot
#

I mean you can't start the server from plugins

oak raft
#

sure u can

#

you just have to be skilled enough

static zealot
#

how? the plugins are not enabled when the server is stopped

oak raft
#

you're proving my point, you don't know which means you aren't skilled enough fingerguns

static zealot
#

good one

#

you made me laugh

#

not

oak raft
static zealot
#

yo @surreal quarry I just add while true to my startup command?

#

oh found this js #!/bin/sh while true do java -jar -Xms1024M -Xmx1024M -jar Spigot.jar sleep 5 done

oak raft
#

blitz if u didnt laugh at my joke

surreal quarry
#

yea i think so blitz

oak raft
#

you'll def laugh at this LOL

static zealot
#

at what?

oak raft
#

the vid

static zealot
#

what vid?

oak raft
#

o_O

static zealot
#

you think I'm that young

oak raft
#

oh wait I already used this pic in here hahaha

static zealot
#

I've seen more than you'll ever see

oak raft
#

🧢

#

aren't you like 17

static zealot
#

a bit older

oak raft
#

19

static zealot
#

yep

oak raft
#

we aint that far apart

static zealot
#

but do you know how you keep a fool in suspense?

oak raft
#

yea

static zealot
#

so anyone got any ideas why IIJ crashes when I open any project?

#

no errors or anything no messages just goes to the main page

oak raft
#

maybe because it's intellij...?

#

why are you even bothering with that garbage

ocean quartz
static zealot
# oak raft why are you even bothering with that garbage

I give you a 5 seconds head start to run. after that I'll hunt you down, torture you until your last breath, then resurrect you just to repeat the process and I'll do this until the end of my life then I'll let you die and I'll leave heaven to follow you in hell where you'll go just to torture you some more just to then after you've burned for millennia I'll throw a drop of water on your toe so you remember how good water was and then let your burn forever.

onyx loom
#

brutal

#

calm down blitz

static zealot
#

jk you ain't even getting those 5 seconds

#

die you sinner!!!

onyx loom
#

😱

half harness
#

wtf

#

xD

static zealot
#

he talking shit about IIJ. he deserves all that and more

half harness
#

ah ok

#

ur 19 years old 👀

oak raft
#

hahaha

half harness
#

thats a lot for 19 yr

oak raft
#

he aint wrong

static zealot
#

I found a nice 60 CM tall, 30 CM wide stick. I think I'll also shove that up his ass

half harness
#

👀

oak raft
#

👀

static zealot
#

k think I'll calm down now

#

sike

oak raft
#

well hey, the proof is in the pudding

static zealot
#

you ain't getting away with all that shit

half harness
#

whats IIJ

static zealot
#

you talked

oak raft
#

ur ij keeps crashing

static zealot
oak raft
#

which means its DOG

static zealot
oak raft
#

switch over to eclipse while you're still sane

half harness
#

NO

#

eclipse

#

hmm

#

🤔

static zealot
#

please leave. before I assemble an army of kids and make them all punch your testicles

half harness
#

👀

oak raft
#

eclipse > ij

static zealot
#

until you bleed semen

half harness
#

wOaH tHeRe

static zealot
#

k nvm then

#

bye

oak raft
#

nono

#

im not that dumb

#

oh wait

static zealot
#

I think your existence is enough of a punishment for you

oak raft
#

what are you gonna do? ban me? 😏

#

hehee

static zealot
#

nah you don't deserve that privilege

#

the only person that does is Frosty

oak raft
#

rip

static zealot
#

for asking me to follow him on github and never following back

#

he's the only person I follow and no one follows me

oak raft
#

I'll follow you, you must feel honored as an eclipse user is about to follow you so try and contain ur emotions

static zealot
oak raft
#

wtf is iij

static zealot
#

IntelIJ

oak raft
#

no

#

its ij

static zealot
#

no its not

onyx loom
#

where does the second i come from

oak raft
#

yes it is

static zealot
#

what second i?

onyx loom
#

II

#

J

static zealot
#

its i l

#

l i *

#

oh wait its double l

onyx loom
#

😐

static zealot
#

Intellij better ?

onyx loom
#

no

static zealot
#

if its lower caps

onyx loom
#

IJ

static zealot
#

its IntelliJ

oak raft
#

ij or nothing

static zealot
#

so please leave me alone

oak raft
#

ij or eclipse fingerguns

static zealot
#

ij

#

that's not even a choice

onyx loom
oak raft
#

thats what I thought haha

static zealot
#

its like saying, being rich, having anything you want or being dead

#

lmao

onyx loom
#

dead fingerguns

oak raft
static zealot
#

lmaop = laughing my ass off please

oak raft
#

my school is forcing me to use eclipse fingerguns

static zealot
#

what?

onyx loom
#

ouch.

static zealot
#

ok tell them I'm coming

#

just getting my armor ready

oak raft
#

alright, I'll just let them know that an angry blitz is coming

static zealot
#

I mean wdym by making you use it?

#

just use what you want lmao

#

don't give a shit about what they say

oak raft
#

and jupyter too, whatever that is

static zealot
#

my teacher made me use CodeBlocks and for an entire year I used an online compiler

oak raft
#

like they want assignments done in eclipse

static zealot
#

just because I could lmao

oak raft
#

ig I could just use IJ ||<- see what I did there?|| and just say eclipse bad 🖕

static zealot
#

or at least get a dark theme for Eclipse

#

if that even exists

ocean quartz
#

Idk how one can say eclipse is better than ij like wtf

static zealot
steel heart
#

It might be

ocean quartz
#

Oh hey, it's mr television

#

I've seen that before though

onyx loom
#

fame or shame

oak raft
#

wouldn't be surprised if fame or shame was an actual thing in america at this point

static zealot
#

what's fame or shame

lunar cypress
#

daddy you killed them!!

onyx loom
#

😂

#

smh blitz uncultured

static zealot
#

yep

#

oh GTA V mission? didn't play a lot of that game

#

just like an hour or 2

lunar cypress
#

It's a fictional TV show in GTA V yeah

oak raft
#

who said its fictional? thonking

static zealot
#

me

oak raft
#

I thought gta was exactly like LA

#

you can't tell me otherwise

static zealot
#

what's LA?

#

that a game that tried to copy GTA?

oak raft
#

I suppose

static zealot
#

xD

oak raft
#

now stop distracting me from completing this clients work

#

oh wait I don't even know what im supposed to be doing 🥲

static zealot
#

how do I update my java version on a dedi ? xD

lunar cypress
#

you'll have to overcome that yourself

#

can't ask us to stop writing

#

close discord

oak raft
#

close discord? pfffft

#

no way

lunar cypress
#

I also have some stuff to do but it's just programming assignments

#

Although I really wish I didn't have to do this in Java

#

I miss so many features and concepts from other languages

oak raft
#

java good

#

kotlin bad

#

don't be a kotlin karen

#

be a java jeff

static zealot
#

lmao

lunar cypress
#

I'm really not speaking of kotlin here

steel heart
#

Kotlin isn’t bad nor is java

oak raft
#

Conclure

#

seems you've missed my point

#

don't be a kotlin karen

#

be a java jeff

static zealot
#

yes I missed your point

oak raft
#

which means kotlin bad

steel heart
#

Python snakes are the best

oak raft
#

java god

static zealot
#

by just 2 points

oak raft
#

goo

#

gooD

#

GOOD

static zealot
#

yes Java is god

#

how did we not see this

#

before

oak raft
#

¯_(ツ)_/¯

steel heart
#

Remence justify why kotlin karen is bad

oak raft
#

ok so

#

u say karen right

#

what do u think of?

#

||asnwer the question so I can move on with my point||

steel heart
#

Maybe an actually knowledgeable Karen

prisma wave
steel heart
#

Not again sad

lunar cypress
#

bruh no hate but I wouldn't get this done in Haskell within the next 2 days

prisma wave
#

no

#

because haskell is so WELL designed and PRAGMATIC that it requires YEARS of research into type theory before you can become productive with it

lunar cypress
#

😔

prisma wave
#

bro monoids arent that complicated bro you're just thinking about them in the wrong way dude come on bro

steel heart
#

So by that we can conclude HTML is a programming language

prisma wave
#

o

prisma wave
#

ADVANCED language

steel heart
#

HTML is a programming language by the majority of accounts. It is a markup language and it ultimately gives declarative instructions to a computer. This is the definition of a computer program, making HTML a programming language. (:

prisma wave
#

that ycombinator website is a great source of material

#

even the NAME is a FP circlejerk

#

ever heard of the lambda calculus?

steel heart
#

Yo it’s stupid syntaxually

lunar cypress
#

I dream in lambda expressions

#

speaking of which I'm tired and barely got anything done 👍

prisma wave
#

nice

lunar cypress
#

I hate proving the existence of things

#

Because it usually involves just guessing solutions

#

And for this last assignment I've got no clue

steel heart
#

Maybe get some rest?

oak raft
#

rest is out of the question

steel heart
#

Sleep then

#

Unconsciousness

lunar cypress
#

Well, I will, but I have to hand it in in about 10 hours so yeah

steel heart
#

Holy shit, get some coffee?

lunar cypress
#

Nah man, Im gonna sleep now, that one thing is not that important

static zealot
#

that's a spoiler ^

half harness
#

lol

keen creek
#

hkw would i fork purpur into my own server jar?

half harness
#

ohhh boy

keen creek
#

?

obtuse gale
#

Doesn't it have instructions in the readme?

keen creek
#

its confusing

#

ill try again tho

prisma wave
surreal quarry
#

that language is probably worse than elara

prisma wave
#

Of course it is

half harness
#

nvm

distant sun
#

math

half harness
#

ik

#

😦

#

but i dont want to do math

onyx loom
#

progressbar expansion 😎

half harness
#

😐

distant sun
#
    private static String progressBar(long current, long required) {
        final int length = 50;

        if (required < 1) {
            return "max";
        }

        final double percentage = (double) current / required * 100D;
        final int filled = (int) Math.floor(percentage * length / 100);

        return ChatColor.GREEN + StringUtils.repeat(":", filled) + ChatColor.GRAY + StringUtils.repeat(":", length - filled);
    }```
half harness
#

👀

#

StringUtils

distant sun
#

apache

half harness
#

ok

#

also

#

ChatColor.GRAY 👀

#

lol

distant sun
#

take it or I will remove it

half harness
#

i took it

#

and adding around 5 more

#

xD

surreal quarry
#

73

#

or 112

#

im not sure

distant sun
#

86

night canyon
#

how do I compile the file from the source code in github?

surreal quarry
#

either mvn package or gradle build

night canyon
surreal quarry
#

its just a command

oak raft
#

whats wrong with flamecord

#

im seeing people roast it

obtuse gale
#

If you're seeing people roast it.. maybe you should read those critiques instead of asking somewhere random?

#

lol

distant sun
#

x.anal

surreal quarry
#

👍

forest pecan
hot hull
#

Anyone up for some COC?

#

@old wyvern, @prisma wave, @obtuse gale, @distant sun

obtuse gale
#

yes

#

fuck among us

distant sun
#

im in game rn

hot hull
#

.c

#

:c*

#

I'll do some randoms I guess

#

If anyone wanna join

obtuse gale
#

lol i just joined ur game through the homepage frosty

#

i didnt use the link

hot hull
#

Scholtes 😮

obtuse gale
#

are we friends on coc or are you just on the main page frosty lol

hot hull
#

friends Aj iirc

#

I don't get why people leave lmao

obtuse gale
#

bruh howd they get 10 from 30 and 20

#

shouldnt it be = time * speed

hot hull
#

Lowest I can get lmao

#

time * speed / 60 Aj

#

Since it's grams per minute

obtuse gale
#

o

hot hull
#

python is a scam when it comes to shortest lmao

obtuse gale
#

shit

#

ive gotta go

hot hull
#

:c

#

Look at this dude

#

38

dry coral
#

🙂

obtuse gale
#

just remembered im working in 10 minutes and im not ready at all

dry coral
#

i added 1 character by accident

#

lol

hot hull
#

I don't actually know why I used java lmao

dry coral
#

//

#

instead of /

hot hull
#

share code

dry coral
#

shared

#

i assumed input would be float

night canyon
#

anyone wanna teach me how to use maven to compile file from github.

hot hull
#

I don't get this one

dry coral
#

same

hot hull
#

got it

#

how tf is it 66 tho

dry coral
#

😐

hot hull
#

number length Schotles

#

Scholtes*

dry coral
#

im in the middle of physics and trying to do this

hot hull
#

I forgot to remove the - tho

dry coral
#

my focus is 0%

hot hull
#

Fuck physics, this is more important

#

All the fuckers using python smh

night canyon
#

Anyone who wants to teach me how to use maven to compile a file from github.

hot hull
#

There's plenty of tutorials online which give you a step by step process

dry coral
#

@hot hull i can play for 15 mins

dry coral
#

it says ur in a game

prisma wave
#

I can join in just over an hour

#

got a lesson soon

hot hull
#

Yea it's full

dry coral
#

is it reverse?

hot hull
#

yea

prisma wave
#

Product bottom numbers * top number?

#

Wait no

#

sum of bottom * top number

#

I think

#

Or not

#

Works for the first 2 then stops

#

Idk lol

dry coral
#

3*6 = 18

hot hull
#

idk either lol

#

Scholtes, Test 3 fucks that theory

dry coral
#

i know

#

thats why i said its wrong

#

first one would also be 3*6

#

its not a number with 3

#

because 3 times anything isnt 14

#

nvm

#

i know

#

first number is how many numbers there are

#

and then sum

#

of each number squared

#

1^2 + 2^2 + 3^2

#

3^2 + 3^2

#

4^2 + 10^2

#

it works

#

took me a hot minute to figure that out

distant sun
#

big brain time

prisma wave
#

huge

dry coral
#

only thing im good at is scavenger hunt thingies

#

where u have to find patterns

distant sun
#

reverse is actually cool

prisma wave
#

i like reverse

hot hull
#

So long it's not dumb examples

dry coral
#

frosty taking ur time

hot hull
#

uh yea nah already done, playing pubg kek

prisma wave
#

i can join soon

#

the lesson is covering something we've already done so i dont need to pay attention lol

regal gale
#

Man, really wish i could join a coc for once, but never have time

hot hull
#

doubt

regal gale
#

Even though I suck at math, but math pattern is my style

prisma wave
#

extensions working

#

and they're somewhat fast

#

which is good

errant geyser
#

Nice

prisma wave
#

very nice

hot hull
#

I don't get the extend part

prisma wave
#

it's like an extension function

#

except you can use a different name instead of this

#

this is the default

#

eg

#

but you can define an alias

#

which is cool

errant geyser
#

Just like how as works in Python's imports, just as an extension

prisma wave
#

^

regal gale
#

Any coc on?

prisma wave
#

im down for one soon

hot hull
#

u down for sum coc 😏

old wyvern
#

Im in for clash as well

hot hull
#

same

regal gale
#

One problem: I don't even know how COC works thonkeyes

#

Just gotta figure that the pattern, that's all?

old wyvern
#

There are 3 modes

#

Fastest, Shortest, Reverse

regal gale
#

I only met reversed once

old wyvern
#

Fastest -> Problem given, ranking basrd on time taken

#

Shortest -> same but ranking based on code length

#

Reverse -> IO only given, find the problem and solve it, ranking by time taken

regal gale
#

I love reverse lol

old wyvern
#

Lol

regal gale
#

Welp, gotta finish my plugin kit

#

Tag me if ready 👀

old wyvern
#

Plugin kit?

regal gale
#

Looks quite the same to how BKCommonLib works, but with my own style from all my experience I have gathered from commissions

#

That is, no nms, only spigot api ._.

old wyvern
#

I have no idea what BKCommonLib is

regal gale
#

I love to start off simple first, then I will go with it later

old wyvern
#

I assume its like some wrapper on spigot that comes with foundations for some patterns you commonly use?

regal gale
#

Yeah

old wyvern
#

Oh ok

regal gale
#

In all of my #showcase , I made different lib based on each

#

I actually took the lib from bergerkiller (the dude creating BKCommonLib), then adjust to adapt with latest version, and with radian too

#

Jesus.. just realized I made this function in kotlin ._.

#

Hope anyone don't mind

regal gale
#

=paste

compact perchBOT
#
HelpChat Paste

Please use a paste service to share configs, errors, code and long logs.
HelpChat Paste

regal gale
hot hull
#

@prisma wave @old wyvern @distant sun

#

I'll make a public lobby efe

#

Join fast

regal gale
#

Why not just wait lol

hot hull
#

Because the other one is private and noone seems to want to join

regal gale
#

That's otherwise...

#

Are you setting its max health?

#

It only have 300 hp at max

old wyvern
#

@hot hull start a private one

old wyvern
#

@regal gale

winter iron
#

why