#dev-general

1 messages ยท Page 279 of 1

prisma wave
#

Rust seems like it handles this pretty well

#

Cargo is a build tool, package manager, and a few other things afaik

jovial warren
#

if that's how you want it to work, that first needs to lookup some database of packages somewhere, find one that matches that, download it, and then when we build it, we package that with the program

prisma wave
#

well yes

#

centralised package manager

jovial warren
#

depends on how you want things to be packaged and how they are going to be accessed at runtime

frigid badge
#

epm sounds weird

prisma wave
#

true lol

jovial warren
#

isn't Elara an interpreted language actually?

prisma wave
#

for now

jovial warren
#

or is it translated

old wyvern
prisma wave
#

getting ready to start on the compiler

jovial warren
#

you planning on making a compiler?

prisma wave
#

JVM bytecode

#

yes

old wyvern
frigid badge
#

I'd help with the infrastructure, docker, k8s yes plz?

prisma wave
#

absolutely

#

omg that could be so fun

jovial warren
prisma wave
#

package repository backend written in elara

prisma wave
old wyvern
frigid badge
#

whatever they want to use

jovial warren
#

compilers are usually written in low-level languages aren't they? since they're rapid

prisma wave
#

yeah it's all in Go atm

frigid badge
#

Go is rapid

prisma wave
#

go is pretty fast yeah

#

not as low level as C but close

#

depends how you define it

old wyvern
#

Also we'll rewrite it to Elara later on anyway

frigid badge
#

and most compilers actually get rewritten in their own languages (not for every compiler!!)

old wyvern
#

^

jovial warren
#

yeah

prisma wave
#

yugi found a go port of ASM which will help

old wyvern
#

Yea theres still a lot in it to finish tho

#

Hopefully it doesn't take too long

prisma wave
#

indeed

#

idm

#

it will be fun

old wyvern
#

True

prisma wave
#

bytecode isnt actually that complicated

jovial warren
#

is Go a good language to learn?

old wyvern
#

Yes

jovial warren
#

is it an easy language to learn?

old wyvern
#

Its minimal but very useful

old wyvern
prisma wave
#

yes

#

it's designed to be very simple

#

it's different to most languages

#

but it's very simple

forest pecan
#

Also pretty fast

old wyvern
#

Altho somethings can get weird when working with "methods"

#

Like " where the fuck did the "tape" variable from my struct go that was there a stack frame ago?" ๐Ÿ˜Œ

jovial warren
#

things can just disappear like that?

old wyvern
#

No might have been my fault, I tried asking other go devs but they couldnt find the issue

#

But found a workaround and just went with that for now

prisma wave
#

weird

#

no generics tho ๐Ÿ˜ฉ

old wyvern
#

Yes it gets really annoying especially when working with slices

onyx loom
#

did u say the new beta version of go had generics or smth?

old wyvern
#

Theres just no concise way generically write something for a slice without having to match the actual type

onyx loom
#

idk

#

u guys were talking about a beta of go a while ago

prisma wave
#

idk if it's even in beta yet

#

but they are working on it

#

for go 2

old wyvern
#

Ah

onyx loom
#

o

lunar cypress
#

until then: lol no generics

prisma wave
#

๐Ÿ˜ฆ

#

tbf it's not that bad

old wyvern
#

๐Ÿ˜ฉ

prisma wave
#

you just have to repeat yourself fairly often

old wyvern
#

Very

#

Often

#

๐Ÿ˜‚

prisma wave
#

๐Ÿฅฒ

#

or you have messy casting

old wyvern
#

Especially when slices are involved

#

Its like it doesnt even consider other type matches when you specify that a type is a slice

prisma wave
#

one thing that is interesting is that interface{} is like boxing

distant sun
#

๐Ÿ“š Video courses from JomaClass:
๐ŸŽ“ New to programming? Learn Python here: https://joma.tech/35gCJTd
๐ŸŽ“ Learn SQL for data science and data analytics: https://joma.tech/3nteQih
๐ŸŽ“ Data Structures and Algorithms: https://joma.tech/2W89H33

๐Ÿ’ฌ Chat with me on Discord:
https://discord.gg/EQwMWFsmQs

โญ Support my channel to access my Private Discord Chat...

โ–ถ Play video
prisma wave
#

because it uses 8 bytes for the type of the interface, and 8 bytes for a pointer to the actual value

#

so an interface{} is more expensive than the underlying value

#

which i guess makes sense

winter iron
#

how would i create an armor stand that i can then send using protocollib

surreal quarry
#

I think its something to do with the SPAWN_ENTITY_LIVING packet

winter iron
#

what if i then wanna put it as a players passenger

surreal quarry
winter iron
#

so i would use

#

this to spawn it

#

and then send a passenger packet to put on player?

surreal quarry
#

i would assume so

winter iron
#

aight bet

surreal quarry
#

not great with protocollib tho so its not 100% that it will work

distant sun
#

plib has a wrapper

#

you can can use classes and methods instead of getX().write()

half harness
#

is it possible to just get the raw packets and use wiki.vg

distant sun
#

nms

half harness
#

๐Ÿคท

winter iron
#

wait this wont actually work since i also need to store the armorstand and do stuff with it later

#

:9

half harness
#

bc i just want to get the 0x24 packet or whatever and then just get the 0 index value

prisma wave
#

what

half harness
#

๐Ÿคท

surreal quarry
#

just use protocollib

#

it will make your life easier

half harness
#

ok

distant sun
half harness
#

how would I for example cancel all packets

surreal quarry
#

tf

onyx loom
#

@JvmStatic ๐Ÿคข

distant sun
#

:))

#

you can create something similar to event listeners but for packets

sick fossil
#

Just want to know in guild, is it allow to fight guild vs. guild vs. guild vs. guild at they same time in arena or just for 2 guilds at they same time in arena like guild vs guild?

ocean quartz
#

Guilds plugin?

steel heart
#

?learn-java I must

#

?learn-java

compact perchBOT
#
FAQ Answer:

Start with this -
https://docs.oracle.com/javase/tutorial/java/concepts/index.html
Breeze through this skipping stuff that doesn't seem relevant like bitwise operators-
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/index.html
and then hit this
https://docs.oracle.com/javase/tutorial/java/javaOO/index.html

They're the first three from this larger thing - https://docs.oracle.com/javase/tutorial/java/index.html
Which you should definitely go through overall. But those three should be enough for slightly better understanding of wtf is happening here without feeling like a huge time sink
That one is a small part of this larger site - https://docs.oracle.com/javase/tutorial/index.html
wherein "Essential Java Classes" and "Collections" also have good useful stuff

forest pecan
#

but its still in development pensiveyeet

foggy pond
#

Anyone know of a good source where I can learn C++ from as a Java developer?

#

Wanna get ahead in my module in uni

#

I could ask my lecturer for sources, but I'd have to wait until monday to ask him so if someone else has anything feel free to lmk

#

Otherwise I'll wait till monday

surreal quarry
#

is packetwrapper for protocollib published to any repos

#

or do i gotta use mavenLocal

prisma wave
#

instead of python 2?

#

or just in general

#

you should be using it instead of python 2, yes

#

although they're similar

onyx loom
#

learn go

prisma wave
#

python is ridiculously easy

#

sure

#

or just like

#

common sense

hot hull
#

Download Warframe fingerguns

#

google what warframe is..

#

To even mention MW, disgusting

#

You said it as if they were similar

#

L

half harness
#

lol

#

is ยง a key on ur keyboard?

#

bc its sorta strange that you'd happen to press alt + 2 + 1 at the same time

#

ooooooooooooo

#

``1234567890-=qwertyuiop[]\asdfghjkl;'zxcvbnm,./ ~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?` <- keys on my keyboard

#

๐Ÿ‘€ ok

#

ok

#

wow-

#

wait

#

how do u get the red stuff

static zealot
#

why is your keyboard so ugly?

half harness
static zealot
#

?

#

oh its not QWERTY

#

why?

half harness
#

that super big enter key tho

#

๐Ÿ˜ฎ

static zealot
#

germans suck

#

not true.

ocean quartz
#

For some reason the whole jetbrains ide sync settings is completely broken thonking

static zealot
#

what is jetbrains ide sync settings?

#

xd

ocean quartz
#

To sync your settings between the different jetbrains ide

static zealot
#

ah

#

oh that sucks

old wyvern
ocean quartz
#

Had to manually set up webstorm ๐Ÿ˜ฉ

#

You weren't supposed to but i had to

old wyvern
#

Huh?

half harness
#

i had to manually setup intellij twice yesterday because it kept deleting my settings

old wyvern
#

I always setup each one

half harness
#

:c

ocean quartz
old wyvern
#

O.o

#

Welp

#

All my IDEs are very different

half harness
#

time to send spam email to that email

static zealot
#

did I tell you guys about the time I spent 2 hours and 7 minutes to fix one of Frosty's plugins just so to be told at the end that there's a new one he's working on and I should've used that one? xD

half harness
#

๐Ÿ˜ฎ

#

rip

ocean quartz
#

I have them basically the same, can't live without the nyan progress bar

half harness
#

that reminds me

old wyvern
#

๐Ÿ˜‚

static zealot
#

I don't like the nyan progress bar

half harness
#

I haven't played hypixel in over a week ๐Ÿ˜ญ

static zealot
#

for some reason

old wyvern
#

Seeing everything the same annoys me

static zealot
#

it kinda destroys my eyes

old wyvern
#

Its like it makes no sense

#

I have very huge fonts and materials in GoLand

half harness
old wyvern
#

Veesion in Rider

#

Vuesion + Lite Green in Ultimate

static zealot
#

oh right maven. fuck

ocean quartz
prisma wave
#

not between ide's

ocean quartz
#

Oh, is it?

#

Oh i guess that's for the settings repository plugin

static zealot
#

oh what?

#

is that with IJ?

#

the color picker

onyx loom
#

i remember dreamweaver having that feature when i had to use it for college, but dreamweaver sucks and that was like its only good feature xd

ocean quartz
static zealot
#

is it good?

ocean quartz
#

Decided to try it since i've had it for almost a year and only used ij ultimate xD

static zealot
#

ah its just a javascript ide

ocean quartz
#

Seems pretty good so far

static zealot
#

and its paid

ocean quartz
#

Web ide

#

HTML, CSS, TS, JS, etc

static zealot
#

ye but from what I can see its 30 days free then paid only?

#

or is it same as IJ?

ocean quartz
#

It's paid yeah

distant sun
ocean quartz
#

Gonna need to renew my license pretty soon ๐Ÿ˜ฌ

distant sun
#

I always forget what I do for renewal lmao

winter iron
#

is it possible to disable the check for passengers on player teleport by editing the server jar or smth

old wyvern
#

I like the difference to be evident

distant sun
#

??

#

wut

ocean quartz
#

When i renew i'll try applying for more than 1 key

forest pecan
#

different types of ide

distant sun
#

wdym matt

forest pecan
#

there is a python ide, intellij, php and Go?

#

i think

#

so thats why yugi wants them to be different

distant sun
#

a lot more

old wyvern
ocean quartz
distant sun
#

lol you can do that?

half harness
#

Would it be worth looking in the spigot repo to see when the playerinteractevent fires or is that a bad idea?

forest pecan
#

Matt are you in college or smthing?

ocean quartz
#

Yeah, as long as you work on my projects you can have one

#

Nah

forest pecan
#

oh

#

rip

distant sun
#

damn nice matt

old wyvern
#

He finished college I think

onyx loom
forest pecan
#

hes old ๐Ÿฅถ

old wyvern
#

He has it kal

forest pecan
#

hes not a boomer

ocean quartz
forest pecan
onyx loom
#

o

ocean quartz
half harness
#

๐Ÿ˜ฎ

old wyvern
#

oo ๐Ÿ˜ฎ

forest pecan
#

are you home schooled

half harness
#

|| ur too smart to be in college :))) ||

hot hull
#

Matt, are you missing much? Not really no

steel heart
#

Yo

forest pecan
#

your dog is hot

steel heart
#

1.17 might break compatibility check

forest pecan
#

Yeah they are changing

#

up the material class

#

*enum

ocean quartz
#

I am actually, the more years passed the more i regretted not going to college

steel heart
#

All enums

forest pecan
#

Yep

ocean quartz
steel heart
#

Or like the registry ones

forest pecan
#

they are distinguishing between material and block

forest pecan
hot hull
#

What kinda job you got rn Matt?

forest pecan
#

hot spigot dev near you !!!

static zealot
distant sun
#

fr matt

ocean quartz
# hot hull What kinda job you got rn Matt?

I basically do the business part of my dad's company, he owns a gardening company and I do the client talking, job searching, and things like that, and in the summer I work with him

old wyvern
#

๐Ÿ˜ฎ

half harness
#

ur gardening-

#

that's not how I imagine matt

distant sun
#

why dont you start before it is too late @ocean quartz

old wyvern
#

Good point

ocean quartz
#

It's pretty tough for me to do that right now, I am considering going to college once I get married though

forest pecan
#

its going to be tough tho

#

after marriage ngl

#

like studying and also uh

half harness
#

matt married ๐Ÿ˜

forest pecan
#

if you are getting children ahm

ocean quartz
#

For me it'll be easier than if I went now

forest pecan
#

its tuff

distant sun
#

Matt Jr. aww

half harness
#

lmao

ocean quartz
#

Marriage != having children xD

forest pecan
#

yeah

#

lol

#

i was like "if"

#

cause i didnt know

distant sun
#

it is a pack

forest pecan
#

lmfao

distant sun
#

marry now and receive a free kid for 18 years

ocean quartz
#

There is nothing free about kids

distant sun
#

you receive it for free

forest pecan
#

you can take me as a kid

distant sun
#

duh

#

stupid

forest pecan
#

im free

#

:)

distant sun
#

adopt me @ocean quartz

forest pecan
#

i mean obviously there are taxes

#

but like

#

im free

#

:)

ocean quartz
#

You're too old ;p

forest pecan
#

who

distant sun
#

and what

#

I can still call you daddy

ocean quartz
#

Gaby is too old

onyx loom
#

is 17 too old

forest pecan
#

i can send you a toe reveal if you want evidence

ocean quartz
#

For adoption yes

onyx loom
#

โ˜น๏ธ

distant sun
#

smh matt

forest pecan
#

is 14 too old KEKW

hot hull
#

An 18 year old can legally adopt a 17 year old

forest pecan
#

yo frosty

#

adopt me

distant sun
#

26 can adopt 19

#

easy

hot hull
#

No Gaby

distant sun
#

I will send you the papers after exams @ocean quartz

#

go away frosty

ocean quartz
#

Sure thing

distant sun
#

ly dad

hot hull
#

I can adopt my gf lol

half harness
#

O_o

hot hull
#

Which is kinda fucked

forest pecan
#

wait

distant sun
#

lmao

forest pecan
#

WaT

#

lmfao

distant sun
#

step daughter

half harness
ocean quartz
#

What are you doing step daughter

hot hull
#

Oh god

forest pecan
#

Hey

#

thats my friend

#

oh wait im not adopted

#

๐Ÿฅฒ

old wyvern
#

well this escalated quickly

distant sun
#

@ocean quartz could you go to a cs uni?

ocean quartz
#

Yeah, over here there isn't really a minimum grade required for that, basically you do an exam and if your grade is high enough you enter, your highschool grades don't really matter for it

old wyvern
#

Here its a mosh pit

#

๐Ÿ™‚

#

Death by Exams

distant sun
#

Well it works the same here but not last year ...

static zealot
#

yeah. where I wanted to go it used to have 3 ways to go in and one was 25% highschool marks and 75% a test they give you. Unfortunately last year because of covid they took the highschool grades only

#

so I didn't go this yeart

#

year*

ocean quartz
#

God, i really regret stuff from highschool, I had the equivalent of A+ in programming, and other stuff like that, but would skip boring classes which made me have to repeat 1 year, then I didn't pass on that highschool, so had to drop it and do a 6 months night highschool stuff

distant sun
#

stupid smh

#

!!!

static zealot
#

I failed Maths xD

ocean quartz
#

Was very stupid

stuck harbor
#

its fun seeing how other countries' university sytems work

static zealot
#

almost failed chemistry as well but I knew someone that knew the teacher and had them talk to her xD because she wouldn't talk to me at all. Like she hated me or something

#

I mean here is mostly the university that choses how they want to take people.

stuck harbor
#

in the UK the system is all standardised for undergrad

#

bloody ucas

static zealot
#

most of them is based on the baccalaureate exam grades but some are more special and need special exams or some don't even require baccalaureate

stuck harbor
#

lol baccalaureate

#

i did welsh bacc

#

cause i had to

#

it was shite

#

its just like 'is murder okay? is poverty bad?'

distant sun
#

bacc is bs lol

static zealot
#

yeah it is

stuck harbor
#

like yes i have a moral compass wjec

static zealot
#

I literally had 4 years of C++ and all they teached us is how to pass the Bacc

onyx loom
#

wjec ๐Ÿคข

static zealot
#

I failed the math one 2 times which I mostly knew will be like that.

ocean quartz
#

I used to love math

static zealot
#

me too

#

until High School lmao

stuck harbor
ocean quartz
#

Even in highschool was nice

stuck harbor
#

they are nice folk

#

they aren't as bad as the OCR

#

i was originally gonna do one of their courses, thank rngesus i didnt

static zealot
#

I had a very bad teacher. Like she was 70+ and she didn't really know how to teach. Like she was very smart I can say that. but didn't know how to teach. she was talking to us like we were scientists and sometimes didn't explain thing, she was thinking how to solve them herself and sometimes even think out loud and then just tell us what the result was.

onyx loom
#

both as bad as each other

stuck harbor
#

oi

distant sun
#

a friend did 2 years of pseudo code @static zealot ๐Ÿคฃ

ocean quartz
#

I had a super hot Math teacher in highscool

stuck harbor
#

nice?

distant sun
#

haha

onyx loom
#

me too ๐Ÿ™‚

distant sun
#

me neither, ours has 70 years

#

like

#

LITERALLY

#

she invented math

static zealot
old wyvern
static zealot
#

all my teachers were the age of my grandma

old wyvern
stuck harbor
#

sadge

static zealot
#

well

#

actually

#

I lied

#

there was one for like 2 months

ocean quartz
#

Oof i had 3, math, pa, history

static zealot
#

but she left

stuck harbor
#

helpchat needs a sadge emote

old wyvern
#

We had a CS teacher but she left last sem

stuck harbor
#

i didn't even do CS in my own high school

#

had to do it at the sixth form

#

'cause my school followed the 2012 ICT course

#

for some fekin reason

#

madmen

ocean quartz
#

My math teached was like 30yo which is pretty uncommon, normally teachers are in their last days

stuck harbor
#

one of my maths teachers was just outta uni

static zealot
#

their last day is actually not enough. some are even dead and came from their graves to teach us

#

or torture us whatever you want to call it

stuck harbor
#

my school paid a lot for good teachers cause it was infamously and continuously rated shittly

ocean quartz
#

My other math teachers were all old farts

stuck harbor
#

the council invested legit tens of millions of pounds to make my school better lol

#

didn't work, still shit

static zealot
#

we had students come in some of the classes and teach us. but those were rare

#

lmao

ocean quartz
#

Oh man, i miss school

stuck harbor
#

i heard stuff about how my old school got even worse grades last year 'cause of the algorythm being really classist

#

grades were originally put thru an algorythm to standardise them cause of covid

#

there was a whole controversy about how it raised the grades of posh people and lowered the grades of poor people

ocean quartz
#

@onyx loom You'll one day feel the same way

onyx loom
#

i mean its much better than college

#

but i still wouldnt go back

stuck harbor
#

its not like the british education system wasnt classist to begin with

#

my target grades were always low cause my postcode just happened to be in a poor area

#

they kinda derped that one up lol

onyx loom
#

just be richer

stuck harbor
#

i was definitively middle class

#

its just that my area wasn't

forest pecan
#

make a premium spigot plugin

#

earn $$

stuck harbor
#

it wasnt based on actual income lol

#

it was all managed by a private company

#

cause of maggie thatcher

forest pecan
#

buy the private company

stuck harbor
#

mm why?

forest pecan
#

earn $$ from spigot premium plugin

#

then buy it

#

lol

stuck harbor
#

so i can raise the estimated grades of people i don't know?

#

it doesnt affect me anymore lol

forest pecan
#

lol

hallow crane
#

reposilite time

static zealot
hot hull
#

Blitz what the fuck, community, ew

forest pecan
#

^^

static zealot
forest pecan
#

oh rip

#

you're out of college?

static zealot
#

never went. finished highschool last year, failed my math baccalaureate and I couldn't go to any college that was what I wanted. so I have to wait til next year when I can take the exam again.

static zealot
#

?

half harness
#

ur missing out ๐Ÿ˜”

#

the purple

static zealot
#

missing out on what exactly?

half harness
#

the purple

static zealot
#

the loading screen?

half harness
#

yes

static zealot
#

k

half harness
#

the purple

static zealot
#

I'm just wining then

half harness
#

u gotta get ultimate for that purple

static zealot
#

is there no maven repo for JDA?

ocean quartz
static zealot
#

I just found it as well xD

hot hull
#

@static zealot Imagine not paying 600 yearly for that sexy db integration smh

ocean quartz
#

โ‚ฌ249.00 actually

static zealot
#

ugh dk what you're talking about which means I don't need whatever that is yet. If I'll ever need it I'll probably pay for it

ocean quartz
#

IJ is โ‚ฌ149.00

static zealot
#

IJ is actually free.

#

xD

old wyvern
#

IJ Community Edition is free*

static zealot
#

yeah I know. Well Ultimate too if you're a student

ocean quartz
#

Tbh you don't really need ultimate

static zealot
#

yeah I don't even know what ultimate offers over community. Like for now it does all I need and by the time I'll need ultimate I'll either be in college or have finished college.

foggy pond
#

I don't understand what :: is in c++

#

Does Java have anything like it

#

I tried looking it up online but I don't understand the explanations exactly, thought if there's something like it in Java I may understand it easier

#

Sometimes I have to use :: to access functions of a class, other times I can just use . so I am confused

static zealot
#

In C++, scope resolution operator is ::. It is used for following purposes.

#

define function outside class and access global variable if there is local variable with same name

#

ah there's more

foggy pond
#

So it is used to access static elements, and sometimes it has the use of this. in java

#

That's what I understood so far

static zealot
#

there's like 5 uses in that list

half harness
#

any way to prevent the sidebar tab thingies from taking up my whole screen?

static zealot
#

what?

#

in minecraft?

#

or where?

half harness
static zealot
#

ah

#

press on Gradel

half harness
#

same with the other sidebar stuff

static zealot
#

on the right

#

and it closes it

#

but you can also just make it smaller

half harness
static zealot
#

you can just make it smaller by clicking while on the left side of it

ocean quartz
#

You you know you can resize it right?

static zealot
#

like on the edge

#

yeah resize that's the word

#

fuck

half harness
#

lol

static zealot
half harness
#

lol

#

||that theme tho||

static zealot
#

what's whit the theme?

half harness
#

um

#

nothing ๐Ÿ˜…

static zealot
#

you talking about font? is what Matt uses as well. Pretty sure he just gave me a copy of his theme

half harness
#

im talking about the colors

static zealot
#

yeah still from Matt

#

cool down

#

is 2 words. cooldown is not a word in the english dictionary I think

half harness
#

does intellij ultimate have better error catching than intellij community or smth

static zealot
#

that's why I just added it to the IJ dictionary

#

no?

#

its same for community

half harness
#

bc i dont remember it spellchecking "cooldown" in community

#

unless the dictionaries are not synced

static zealot
#

oh believe me it does xD

#

I've made a cooldown plugin

#

and that's when I learnt I can justa dd the word to the IJ dictionary

#

because it was pretty annoying

half harness
#

lol

ocean quartz
half harness
#

lol

static zealot
#

oh idk.

ocean quartz
#

The theme is Atom One Dark

static zealot
#

you told me what your font is as well

#

pretty sure

#

let me check

#

I have no idea where to check nvm

#

xD

#

ah settings

#

I think

ocean quartz
#

Yeah, but i assumed you already had the theme xD

static zealot
#

yeah the theme. Idk

#

I just changed the font and then used the thing you gave me

#

but he was talking about colors anyways. so its fine

ocean quartz
static zealot
#

yeah I don't have a custom theme

#

just the default one pretty sure

prisma wave
static zealot
#

don't even know how to change it xD

half harness
#

ye

#

i noticed

half harness
static zealot
half harness
static zealot
#

k

#

let me see if I can find a white theme like the discord one

half harness
static zealot
#

because that's better than default right? xD

#

also idk about you but I like the blue community loading screen. is better than a lot of loading screens

#

idk. atome dark one them is not that good imo

#

oh fuck

#

it broke my colors

half harness
#

?

static zealot
#

damn

#

this sucks

#

I installed Material Themes

#

and it broke my colors because it selected a theme for me

half harness
#

lol

#

get atom one dark tho

static zealot
#

that's what I have rn

#

and it sucks

#

idk man this is ugly

#

it doesn't even embed that's how bad it is xd

#

it doesn't want to destroy your eyes

half harness
#

EW

#

EWW

prisma wave
#

@Throws ๐Ÿ˜

static zealot
#

its default code

#

it got converted from java to kotlin by IJ

#

how do I zoom in and out in IJ?

#

bcz ctrl+wheel doesn't rly work

half harness
#

did u change ur theme yet

static zealot
#

ye. its atom one dark now but I don't really like it

half harness
#

screenshot?

static zealot
#

1 sec let me enable zoom

half harness
#

||except for the font|| that looks ๐Ÿ˜

static zealot
#

the font and the colors are the only thing I like

half harness
#

colors?

#

wait

#

isn't that the whole theme

#

colors

static zealot
#

its so ugly. everything looks like everything

half harness
static zealot
#

idk its same colors I had before

half harness
#

whats so ugly about this

static zealot
#

those that you said are ugly

forest pecan
#

i feel like the original intellij dark theme is underrated

#

it isn't that bad tbh

static zealot
#

yeah

#

it was pretty good

forest pecan
#

Yeah

static zealot
forest pecan
#

lmfao

half harness
#

whys it look like that

forest pecan
#

the colors blending in look ass

#

like the line number colors

#

and the project tree

static zealot
#

yeah idk

half harness
static zealot
#

its pretty ugly

half harness
#

๐Ÿคท

static zealot
#

is that atom one dark?

half harness
#

yes

stuck harbor
#

I recommend the material night owl theme

half harness
stuck harbor
#

very darkness

#

why do u have the gradle panel open tho?

#

wastes space

half harness
#

im constantly building

stuck harbor
#

same

half harness
#

trying to fix a bug ๐Ÿ˜ญ

stuck harbor
#

Shift+F10 tho

half harness
#

?

static zealot
#

now how the hell do I go to the default theme? xD

#

why are they red tho?

#

the file names

half harness
#

?

#

prob git

#

not committed = red

static zealot
#

ahh right I forgot it appeared yesterday

#

ah I see

half harness
static zealot
#

you spammed

half harness
#

that never happened to me before

prisma wave
half harness
#

whats that

prisma wave
#

You can just hit the arrow

half harness
#

i press the red hammer?

#

wat

#

ok

old wyvern
#

LMAOBLESS!

half harness
#

๐Ÿ™„

prisma wave
#

the arrow

half harness
#

dont question - i didn't make the name

static zealot
#

hmm with git inside IJ is there a way to select folders that will never get updated? without going manually each time and selecting them?

half harness
#

gitignore

#

right click -> add to gitignore or smth

static zealot
#

ah

#

ty

#

oh

#

I have a .gitignore file now wher I can just add the files I want to ignore. nice

static zealot
#

how did I use the version from gradle in the files under resources?

steel heart
#

I like using just processResources with the same interpolation style maven uses I think

#

But many others like replace tokens

#

processResources {
doFirst {
file("${buildDir}/resources").listFiles().each {
delete it
}
}

from(sourceSets.main.resources.srcDirs) {
    String name = shadowJar.archiveBaseName.get();
    expand "pluginVersion": version,
            "pluginMain": "${rootProject.group}.${name.toLowerCase()}.${name}",
            "pluginName": name
}

} smtng like this

#

The very header is for removing any earlier generated ones in the build dir

#

Then in plugin yml:
name: ${pluginName}

#

Etc

forest pecan
#

that moment of happiness

#

when you get your build to pass

#

for the first time while working on your project

static zealot
#

hmm discord bots are a bit weird

steel heart
#

They are frickin awesome

#

Apart from rest api shit

static zealot
#

no like weird to create idk why

#

like I made the bot, generated the jar and what do I do now? xD I got no idea lmao

steel heart
#

java -jar name.jar

static zealot
#

hmm. it doesn't find my main class.

#

oh damn I'm so good

#

at this xD

steel heart
#

what plugin do u use @static zealot

#

like gradle plugin

static zealot
#

Nah I was just being stupid. dw about ti

steel heart
#

ok nic

static zealot
#

javax.security.auth.login.LoginException: The provided token is invalid! wtf you mean ๐Ÿ˜ฆ

#

k this shit is broken

#

oh damn.

#

now I feel really dumb

frigid badge
#

lol

static zealot
#

it has 2 tokens. one is the application token and the other is the bot token

#

and I didn't notice

#

damn I'm to good at this stuff

static zealot
#

hmm is there a way to change the build path with gradle?

quiet depot
#

yes

static zealot
#

googling it rn. xD

quiet depot
#

but what do you actually want

static zealot
#

forgot google is a thing

quiet depot
#

do u want the entire build dir to move

#

or just the jar

static zealot
#

well instead of the jar going in my Projects/Project-Name/builds/libs foldert

#

just go to the desktop

#

yes the jar

#

just the jar

steel heart
#

Copy the jar maybe? Rather than changing the path?

quiet depot
#

and now another question

static zealot
#

oh buildDir

#

is that it?

quiet depot
#

do u want the jar to move or to be copied

#

no buildDir isnโ€™t it

static zealot
#

any of them works.

#

because RN I'm just testing on discord bots

steel heart
#

If you want to change the build/libs use libsDirName iirc

static zealot
#

and Instead of having to do java -jar WHOLE PATH HERE just do java -jar JarName

quiet depot
#

blitz u can test them in ij

static zealot
#

oh?

quiet depot
#

iโ€™ll show u how when i get on pc

static zealot
#

kk.

steel heart
static zealot
#

ping me because I might be sleeping so I'll see tomorrow

steel heart
#

(:

quiet depot
#

yeah if u follow that youโ€™ll get it set up

#

along with hotswapping

steel heart
static zealot
#

kk thanks

quiet depot
#

that guide just has a few extra things

#

hold up

static zealot
#

you have the gradle one and the how to run your minecraft server in IJ

#

is that the one?

#

yeah I think that's the one

quiet depot
#

yeah that's the one

#

just instead of creating a new folder

#

just run it directly in build/libs

static zealot
#

oh yeah it works. thanks

#

yeah that's what I did

forest pecan
#

i made an abomination

static zealot
#

oh?

#

well time to learn how to use regex I guess xD

steel heart
#

Java regex be like
?();?:):?:(:)?gsuebdkao**^^~>

forest pecan
#

omg

#

my name is so good

#

so cool

static zealot
#

u forgot the 69

forest pecan
#

there

#

lol

static zealot
#

that's the good stuff

#

damn such a cool name

forest pecan
#

ikr

static zealot
#

maybe add a NOSCOPE360

#

as well

forest pecan
#

discord character limit for nicknames

static zealot
#

@old wyvern you want me to take the photos in PS and make them better? Like no white background? xd

old wyvern
#

No

#

wait

static zealot
#

PAINT THEN?

old wyvern
#

oh

#

sure

forest pecan
#

yo yugi let me change up your pfp

old wyvern
#

I mean

#

xD

old wyvern
forest pecan
#

nah

forest pecan
#

i promise it wont

old wyvern
#

Im not sure if I trust that a lot

#

but sure

static zealot
#

u sure you want Paint art? xD

old wyvern
#

No do it in PS

steel heart
#

Lmao

old wyvern
#

Make Elara proud

static zealot
#

well I'm a Paint master

#

not a PS master

old wyvern
#

But jokes aside

static zealot
#

PS is trash

old wyvern
#

Elara faster than kotlin O.o

prisma wave
#

elara faster than kotlin

#

Our 100% accurate microbenchmarks prove it

old wyvern
#

^

prisma wave
#

Also

#

Kotlin's time doesn't include lexing parsing and compiling

#

So it's EVEN slower

#

Compared to chadlara

old wyvern
#

ayyyy

#

Elara ftw

steel heart
#

chadlara

#

Lol

static zealot
old wyvern
#

YES!

prisma wave
#

accurate representation

forest pecan
#

@mellow valley

#

@mellow valley

static zealot
#

wait didn't you get banned from discord yet?

#

we need to make it happen

forest pecan
#

wait

#

what

#

lol

static zealot
#

xD

prisma wave
#

Real trump

steel heart
#

Fake fake trump

static zealot
#

@DefinitelyYesTrueRealNotTrum

serene cave
#

Hello Yugi

#

I am the president

static zealot
serene cave
#

Hello

#

i am the president

#

of the united states of america

forest pecan
#

wtf lol

static zealot
#

why did you just make that account?

#

lmao

old wyvern
#

xD

static zealot
#

=whois

compact perchBOT
#
BlitzGamer_88#0531
Profile

@static zealot

ID:

444552204158763016

Created:

May 11 2018

Status

offline Offline

Linked Accounts:

**GitHub: **BlitzGamer-88
**Spigot: **BlitzGamer88
**Minecraft: **BlitzGamer_88

serene cave
#

whos pulse

static zealot
#

=whois 804502355910852650

compact perchBOT
#
Donald Trump#4085
Profile

@serene cave

ID:

804502355910852650

Created:

Jan 28 2021

Status

online Online

Linked Accounts:

None Linked!

old wyvern
#

xD

serene cave
#

What

old wyvern
#

Trump was a lie

serene cave
#

I am real trump

old wyvern
#

It was an alien all along

static zealot
steel heart
#

trump watu think about joe

serene cave
#

hes ugly

#

just like u

steel heart
#

wow

old wyvern
#

Trump ugly imperative programmer

serene cave
#

hey

#

who change my name

steel heart
#

99% pulse

serene cave
#

Who's pulse

old wyvern
#

The new president of the united states

steel heart
serene cave
#

Oh

#

yeah fuck him

obtuse gale
#

hm

quiet depot
#

don't fucking swear

serene cave
#

fuck pulsebeat underscroe zero two

#

hey i can send the military over

steel heart
#

wow

#

no thx

serene cave
#

no

#

my name

#

it cap

#

cap

#

big cap

steel heart
#

it suits u

serene cave
#

no

#

big cap

forest pecan
#

Joe Biden celebrity?

#

aww man

steel heart
serene cave
#

What is that

#

is that code

#

what's code

old wyvern
#

UgLY

serene cave
#

whos ugly

#

u?

steel heart
#

mutability

#

so nice

old wyvern
#

Pulse

forest pecan
#

?

steel heart
#

why u smurfing

forest pecan
#

whats a smurf

serene cave
#

ur moms a smurf

static zealot
steel heart
#

lfmao

old wyvern
#

๐Ÿ˜‚

serene cave
#

yo

prisma wave
quiet depot
#

that picture is very confusing

serene cave
#

you gay

steel heart
#

lol

static zealot
#

to be honest I wouldn't be surprise if Pulse is just Trump undercover

steel heart
#

exactly

serene cave
#

whos pulse

forest pecan
#

what

static zealot
#

like trying to infiltrate between the cool kids

serene cave
#

The only cool kid i see here

prisma wave
#

nancy

serene cave
#

is me

#

yall scrubs

prisma wave
#

bill clinton

serene cave
#

๐Ÿ˜‹

steel heart
quiet depot
#

bm nancy is a great name

steel heart
quiet depot
#

u should see the nicks i give to people in my irl friend server

prisma wave
obtuse gale
#

with transient can i just make it not print the field at all, atm its just printing it as null

serene cave
#

i like to formate my hair into corn

static zealot
#

lmao

prisma wave
#

hmmm

#

I guess with that in mind

#

Nancy is fine

static zealot
prisma wave
#

Although not my first choice

serene cave
prisma wave
#

lol

obtuse gale
#

jackson

steel heart
#

eww

static zealot
obtuse gale
#

spring

prisma wave
#

dumbass is typing

static zealot
#

hello

serene cave
#

hi dumbass

#

my name is donald trump

prisma wave
#

hi barack obama

static zealot
#

who's dumbass?

prisma wave
#

barack

old wyvern
#

barr

serene cave
#

whos barack

prisma wave
#

idk

old wyvern
#

barak globama

steel heart
#

sup

prisma wave
#

joe bidome

static zealot
obtuse gale
#

why do I feel that's blitz?

static zealot
#

who's blitz?

serene cave
#

^

static zealot
#

DT? nah

#

its probably pulse

old wyvern
#

๐Ÿ‘

static zealot
#

well not probably

#

100%

serene cave
#

Who's pulse

#

aw fuck

prisma wave
#

ban this man

#

Immediately

serene cave
#

yo guys you should mod me

#

im a very good admin

static zealot
# static zealot

because as you can see in the past 8 minutes pulse has said nothing while trump has been talking a lot

serene cave
#

my name tells it all

forest pecan
#

im just listening

steel heart
#

lol

serene cave
#

lol

static zealot
obtuse gale
prisma wave
forest pecan
#

yes

#

i am

prisma wave
steel heart
#

I am da man in da water

prisma wave
#

The type signature haskell's composition operator has a lot of meaning ๐Ÿฅฒ

obtuse gale
#

fixxd

serene cave
#

yo whos this kid theotherpig

static zealot
#

well anyways back to my stuff

serene cave
#

whos this kid

static zealot
prisma wave
serene cave
steel heart
#

we need a brister brister

static zealot
#

no idea what that is but no

serene cave
#

Children's Online Privacy Protection Act

prisma wave
#

lol

quiet depot
#

says u have to be 13 to sign up on spigot (and everything else)

static zealot
#

wait a fucking second

#

how does @serene cave get nickname when he's not a booster.

#

@quiet depot

steel heart
#

lol

static zealot
#

is it really you>

quiet depot
#

wat

prisma wave
#

lol

old wyvern
#

xD

static zealot
#

you mother trucker

obtuse gale
#

hmm

prisma wave
#

exposed

static zealot
#

lmao

#

6969 iq

quiet depot
#

i'm nicknaming him but its not my account

static zealot
#

ah ok nvm then xD

old wyvern
#

xD

static zealot
#

69 iq

prisma wave
#

corrupt admins being corrupt again