#dev-general

1 messages · Page 398 of 1

obtuse gale
#

sorry

timber oak
#

How much does intellij ultimate edition cost and is it worth it?

hot heron
#

If you're a student you can get for free

lunar cypress
#

Not worth it imo unless your workplace covers it or something

#

That is, yeah, unless you're a student

#

Thing costs 500€, then 300 and then 200€ every year

timber oak
#

Or does the school have to pay for it

old wyvern
#

No

old wyvern
#

Apply there

timber oak
#

I got a school mail but should I use that here? Or my own one? The school got access to my school mail also ofc

old wyvern
#

Use the school one

timber oak
#

I can't translate a school name? lol

old wyvern
#

Use normal english letters to represent the same sound ig?

#

Or* just leave the field

timber oak
#

Not sure which github they're talking about

lunar cypress
#

Their list of school domains

#

They probably don't know yours yet

old wyvern
#

You can alternatively also use any documents from school to prove that you're a student I think

lunar cypress
#

Yeah

stuck harbor
#

use github student pack tho

#

why would u verify just for jetbrains

#

when u can use all the shit if u just verify with github

timber oak
stuck harbor
#

yes

#

u can

timber oak
#

With just verifying on github?

stuck harbor
#

yes

jovial warren
spring canyon
#

The wiki looks pretty neat tbh

normal talon
#

listeners page is amazing

lunar cypress
#

this emacs tutorial is trolling me

#

surely C-M-l will do something "useful" in the shell

prisma wave
half harness
#

bm

old wyvern
#

😮

prisma wave
prisma wave
half harness
#

why are haskell returns so confusing 😖

prisma wave
#

they're not that confusing

obtuse gale
#

the optimizing compiler is what you never were and what you will never be 🥲

The optimizing compiler's job is actually to generate the code you would have written if you were an expert on platform-specific optimizations and did not care about maintainability, just performance.

static zealot
prisma wave
#

as long as you remember that it's just a normal function you should be fine

#

It doesn't do anything special

#

There are no statements

half harness
#

huh?

prisma wave
#

so in a normal language you have statements and expressions, right?

obtuse gale
#

"normal language"

#

lmao

#

haskell is abnormal

half harness
#

yes

#

||why am I learning haskell 😩 and bringing myself to this pain||

prisma wave
#

Haskell only has expressions

prisma wave
obtuse gale
#

I know no haskell whatsoever but you are thinking of haskell the wrong way dkim

prisma wave
#

yeah you are

#

Don't try and compare it to imperative languages

half harness
#

all i know about haskell: ```hs
main = putStrLn "hi"

prisma wave
#

That's all you need

half harness
#

wat

obtuse gale
#

lmao

prisma wave
#

you know how to make a main function, and how to call functions

#

That's all there is to it

#

Pretty much

half harness
prisma wave
#

Ok not really

#

So

#

As I said just forget about return for the moment

half harness
#

ok

prisma wave
#

You only need it when working with monads

half harness
#

monad scary

prisma wave
#

scary word

#

They're actually kinda simple sort of ish

half harness
#

ish

obtuse gale
#

I just made a really complicated encrpytion algorythm, now time to write a decrpytion algorythm

#

ok

#

Good luck lol

half harness
#

theres a chance u wont be able to

obtuse gale
#

I am

#

I got everything I need

half harness
#

ok

prisma wave
#

Im not sure there's a simple explanation for every monad but IO is quite easy to explain

obtuse gale
#

I believe

half harness
#

since decrypting = harder than encrypting

obtuse gale
#

yeah

prisma wave
#

An IO a is just an IO action that gives you an a when executed

half harness
#

also its pointless if ur distributing the application

#

since the user can just decompile :p

prisma wave
#

so putStrLn returns an IO () because it's an IO action that returns () (which is like Unit in kotlin)

obtuse gale
#

I'm not using it for any application

#

just for practise

half harness
#

ahh okay

prisma wave
#

readLine returns an IO String because it's an IO action that returns a String once it's executed

half harness
#

practice*

obtuse gale
#

yeah

half harness
#

and then u have to do <- to convert to string or something?

obtuse gale
#

I'm glad I added a comment explaining every line now

half harness
prisma wave
#

What that's actually doing is quite similar to a CompletableFuture, you're saying "when this IO action completes, store the value here and we'll do something with it"

half harness
#

oh

#

ok

prisma wave
#

which is what the >>= operator does

obtuse gale
half harness
obtuse gale
#

They are two very different things lol

half harness
prisma wave
#
main = do
    name <- readLine
    print name

So this takes a user input and prints it, right?

half harness
#

my brain is jumbled up with haskell rn

prisma wave
#

Right

half harness
#

so thats like this:

prisma wave
#
main = readLine >>= print

This does exactly the same thing, it's saying "print the result of readLine once it's computed"

half harness
#
fun main() {
    val name = Scanner(System.`in`).nextLine()
    println(name)
}
prisma wave
#

yea

prisma wave
#

so readLine gives us an IO String

half harness
#

but how does >>= work

prisma wave
#

pretty much magic

#

actually no

#

Let's stick with the CompletableFuture analogy

half harness
#

lol

#

ok

prisma wave
#

= just makes a new Future that takes the previous one and prints it

#

It's kinda like .whenComplete or whatever

half harness
#

oh

prisma wave
#

All the actual magic is done behind the scenes when the main function runs

half harness
#

is it like action in kotlin thonking

prisma wave
#

we just say what we want to do, and the compiler converts that into all of the messy internals

half harness
#

sorta

prisma wave
#

action?

half harness
#

wait a minute

#

uihjdsm

#

yeah

#

i think

obtuse gale
#

sup

half harness
#

wwoah

prisma wave
half harness
#

that was fast

onyx loom
#

action in tornadofx? lol

half harness
#

so in this case its just println? idk

#

dfrtghujilouj

onyx loom
#

method reference?

half harness
#

yes

prisma wave
#

i think I know what you mean

#

And yeah it's similar

half harness
#

d;list#foreach

ruby craterBOT
#
default void forEach(Consumer action)
throws NullPointerException```
Description:

Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is specified. Exceptions thrown by the action are relayed to the caller.

The behavior of this method is unspecified if the action performs side-effects that modify the underlying source of elements, unless an overriding class has specified a concurrent modification policy.

Throws:

NullPointerException - if the specified action is null

Parameters:

action - The action to be performed for each element

half harness
#

well

#

consumer

#

:p

#

or in kt

#

(String) -> Unit

prisma wave
#

yeah it's a similar concept

#

A lot of the stuff from streams and kt are based on haskell

#

The only difference is that in haskell you're not allowed to have side effects

#

everything has to be pure

#

Which is why the IO type exists

half harness
#

uh

#

but print isn't pure

prisma wave
#

true

#

Kind of

#

Haskell makes it pure by using the IO type. print isn't actually doing anything, it just returns a value that says "when this is executed, print blah". Then all the IO stuff gets converted into impure things by the compiler

#

You might think this is weird

#

It kinda is

#

But it means as far as you're concerned, everything is pure. All the stuff that might not be is hidden away behind the scenes

onyx loom
#

haskell a catfish

prisma wave
#

🥲

#

It's just an abstraction

#

Java abstracts over pointers and memory to make programming simpler, haskell abstracts over side effects for the same effect

oblique heath
#

illegal

#

you need to make a pure computer that can execute true pure code

#

no input or output

prisma wave
#

I like that idea

#

as a wise man once said, "haskell is useless but very safe"

static zealot
#

thonking k

prisma wave
#

i made the IO type in java

#

for educational purposes

#

and it works

static zealot
#

for educational purposes huh?

prisma wave
#

yes

#

very educational

oblique heath
#

:o

prisma wave
#

i broke it

#

i fixed it

static zealot
hot hull
#

where you see this

static zealot
#

ddpe.netlify.app But you need to request the package stuff rom settings/privacy

#

from*

#

lmao that's my usual sleep pattern

#

you can also just inspect the package yourself since its just a bunch of json files

#

but the website does it for you

obtuse gale
#

what website?

static zealot
#

ddpe.netlify.app

#

I literally said above

#

here direct link

#

lazy

hot hull
#

Gotta wait for data to be sent

obtuse gale
static zealot
#

took me 1 day to get it

#

they'll email you a zip

#

no

onyx loom
#

terrible

static zealot
#

we had this conversation yesterday.

onyx loom
#

were all switching to eclipse

static zealot
#

we'll have to live an entire year with this theme

#

eclipse ftw

hot hull
#

¸ugly as fuck

half harness
static zealot
#

still...

prisma wave
#

no

obtuse gale
#

nice

half harness
#

69

hot hull
#

heh

ocean quartz
prisma wave
#

bro $70 just for a x2 multi

#

im ashamed

onyx loom
#

🤣

#

#1 on leaderboard btw

#

congrats on that!!11!!

prisma wave
#

totally worth it

onyx loom
#

🥲 🥲 🥲 🥲

sly sonnet
prisma wave
#

package.zip

#

from privacy settings

sly sonnet
#

oh lemme try

half harness
forest pecan
onyx loom
#

just requested my data

static zealot
#

if only everyone would read my message smh

onyx loom
#

what the fuck pulse

#

why

half harness
static zealot
forest pecan
#

lol

obtuse gale
#

even stackoverflow bullies php

half harness
#

lol

prisma wave
#

good

half harness
#

whats so bad about php

gleaming fractal
#

Afternoon all

lunar cypress
half harness
#

Morning :)

lunar cypress
#

ah, found it

half harness
#

its not afternoon for everyone ;-;

quiet depot
#

i linked source yesterday smh

#

pretty sure I tagged you too

#

anyway

#

how do you guys pronounce cache

oblique heath
#

cash

ocean quartz
half harness
#

uh

#

so?

quiet depot
#

cube pronounces it like "kaysh"

half harness
onyx loom
#

lol

half harness
#

piggy

oblique heath
#

like... quiche?

#

like that? lmao

quiet depot
#

similar

oblique heath
#

weird

quiet depot
#

a instead of e sound

lunar cypress
quiet depot
#

o

#

sorry

oblique heath
#

yeah that's a very unusual pronunciation lol

quiet depot
#

ahh it was bardy I told

static zealot
lunar cypress
#

yep, thanks

#

error PepeHands

spring canyon
#

That's a really nice tool

#

gj

lunar cypress
#

does it run for you?

#

locally, I mean

quiet depot
#

@lunar cypress ran for me, how did you run it?

#

it errored with npm but worked well with yarn

spring canyon
lunar cypress
#

hold on let me try yarn

old wyvern
quiet depot
#

I pronounce it "cash"

old wyvern
#

💀

lunar cypress
#

hmm, how do I resolve this? warning " > rollup-plugin-svelte@7.1.0" has incorrect peer dependency "rollup@>=2.0.0"

#

I tried installing rollup globally

quiet depot
#

I got that error with npm, are you still getting it with yarn?

lunar cypress
#

yeah

quiet depot
#

hm

spring canyon
#

I get that too, but it's just a warning

#

The site works for me with yarn

quiet depot
#

o

lunar cypress
#

ok that's weird then the error is probably due to something else

#

because I get an error that something isn't exported

#

should probably run this in docker

hot hull
#

What is this shit???????

#

I wonder why, I wonder how, they could've fucked up so badly

humble silo
#

I dont think ive updated yet lol

hot hull
#

Honestly not worth it

humble silo
#

I guess they decided to go abstract...

#

im a comedian

hot hull
#

They had so many choices, and this one was the wrong one

half harness
#

lol

spring canyon
#

I like it

hot hull
#

Your opinion doesn't matter

#

<o/

humble silo
#

Eh, i mean they do like a hundred updates a day so it will change fast

hot hull
#

Hopefully

spring canyon
#

┬─┬ ノ( ゜-゜ノ)

half harness
#

(╯°□°)╯︵ ┻━┻

loud gyroBOT
#

┬─┬ ノ( ゜-゜ノ)

onyx loom
#

bro IJ 2021 gives u warnings that ur using http:// instead of https:// this is a great update well worth it!!!!!

pale shell
#

debating adding full hex color support thonking

half harness
#

(╯°□°)╯︵ ┻━\┻

spring canyon
#

2021.1 is a pretty nice update tho

humble silo
hot hull
#

I'm waiting for some more db stuff, so we can visualize tables and stuff

#

That'd be cool

onyx loom
#

scala integration, java 16 support, code with me

hot hull
#

for relationed tables

onyx loom
#

isnt that ultimate can do frosty?

#

or smth similar

humble silo
#

Oh here we go... lovin it already

onyx loom
#

kek

humble silo
#

"Jetbrains space"

spring canyon
#

Space is awesome too

static zealot
#

❤️

spring canyon
#

ah ye, it now shows you the changelog

hot hull
#

Now that is amazing Blitz

#

Actual beauty

lunar cypress
#

that looks kinda cheap

hot hull
#

you look kinda cheap smh, it's simplistic yet modern

humble silo
#

i have a friend that uses a version of IJ that was before 2015 so he doesnt have to pay for it anymore and it looks terrible lol... He also uses light theme

static zealot
#

when do I get the update? xD

quiet depot
#

both are trash

pale shell
#

can i keep both editions or?

onyx loom
#

2020 had good art imo

pale shell
#

Also, if I install 2021 do I loose all my work?

humble silo
#

This is actually a good update, gotta get that Java 16 though

prisma wave
#

no?

onyx loom
#

no?

half harness
pale shell
#

I've never updated to the newer editions of intellij sorry

static zealot
#

wait that's the art for community and ultimate edition?

half harness
#

files are stored in ur hard drive/ssd

static zealot
#

bcz they used to have different themes

#

right?

prisma wave
half harness
onyx loom
#

no?

half harness
#

slightly different

#

iirc

prisma wave
half harness
#

but 2021 might be same

pale shell
onyx loom
#

no need to import even

half harness
half harness
prisma wave
pale shell
#

there's like so much changes omg

onyx loom
#

if u update IJ when u get the notification itll automatically transfer all ur settings

half harness
#

not for me

onyx loom
#

or even update through toolbox itll do same

prisma wave
#

finally scala integration

half harness
#

for me it automatically trafered

half harness
#

i used toolbox

prisma wave
#

i will now be writing plugins in scala

humble silo
#

Epic code with me update, ive used that like once

pale shell
#

hey Kaliber remember when i only stuck with 1.8? 😄

onyx loom
#

do i

#

idk

half harness
#

1.8 = best

onyx loom
#

die dkim

pale shell
#

you kept making me update

onyx loom
#

good

#

so did u

pale shell
#

and i refused

half harness
#

how do i make toolbox tell me when theres update?

pale shell
#

BUT

static zealot
pale shell
#

now i only use latest

half harness
onyx loom
#

u are a changed man i see

pale shell
#

I refuse to load my plugins on versions lower than 1.16

humble silo
pale shell
#

:)

gleaming fractal
#

Is it okay to use Oracle OpenJDK 16 for plugins or should I be using Java ver 1.8

half harness
#

nooo dont use 16

humble silo
#

Idk, ive always used 1.8

half harness
#

use java 1.8 or 11

pale shell
#

i always use 1.16

pale shell
#

no i mean mc 1.16

gleaming fractal
#

Just reading documentation gonna make my first plugin

old wyvern
#

Use jdk 56

static zealot
#

hmm do I have to do something special to update? Bcz I no longer get the update notification

onyx loom
#

using jdk16 just means that everyone else running ur plugin will also have to use 16

spring canyon
half harness
#

when i was updating intellij all my other ides needed updating too

static zealot
#

what's that and where do I get it

onyx loom
#

yes 1.16 is better in both ways yes

half harness
onyx loom
humble silo
#

I dont think i even have a JDK for anything later than 12

onyx loom
#

u cant edit it now dkim

static zealot
onyx loom
#

too late 🙂

old wyvern
#

Oh

#

Yea toolbax

#

box*

half harness
pale shell
#

i like that taskbar update

half harness
#

FAKE

#

A

#

AAA

#

1.16 > 1.8 api
1.8 > 1.16 gameplay

onyx loom
#

objectively wrong

spring canyon
#

yes

half harness
#

what is EAP?

gleaming fractal
#

So if i write in 16 their server will have to use 16 also

onyx loom
#

early access program

pale shell
#

I hope they fixed the PR bugs

half harness
#

and a lot of plugins will break

old wyvern
static zealot
prisma wave
#

found out that scala has monads today

old wyvern
#

The target version matters

obtuse gale
old wyvern
pale shell
#

brister $ mitten?

half harness
pale shell
#

why the dollar

prisma wave
half harness
#

right?

pale shell
#

dude your name changes hourly

prisma wave
obtuse gale
half harness
obtuse gale
#

in fact I would say less than .1%

old wyvern
#

brister <| mitten

pale shell
#

Am i wrong or did jetbrains make kotlin?

prisma wave
#

😮

#

yes they did

onyx loom
#

they did yes

half harness
old wyvern
#

mitten |> brister

prisma wave
#

😮

pale shell
#

they don't really post much kotlin examples on there whatsnew thing

prisma wave
#

no need

oblique heath
#

brister:mitten:[]

gleaming fractal
#

Thanks, gonna go with 1.8 AdoptOpenJDK 1.8.0_282 👌

old wyvern
#

brister . mitten

onyx loom
#

its more about the IDE rather than what language theyre using tho

prisma wave
pale shell
#

might get people to actually use it fingerguns

prisma wave
#

21

#

69

half harness
oblique heath
prisma wave
#

dont cons me

oblique heath
#

you've been constructed

half harness
#

and set ur target to 1.8

#

or 11

obtuse gale
onyx loom
#

8 is no longer LTE

#

do not support java 8 users 🙂

half harness
prisma wave
#

no bro my pvp

static zealot
#

k can anyone tell me what IJ toolbox is and where do I find it?

obtuse gale
#

and in 6 months we will only support Java 17

pale shell
#

time to update to 2021 pog

half harness
humble silo
half harness
#

theres like a billion 1.8 pvp servers

obtuse gale
pale shell
#

ye

humble silo
#

Dang didnt know i could hold out on the update

prisma wave
half harness
#

and like a bunch of small 1.16 pvp servers

static zealot
pale shell
#

i didn't know it was a thing until today

half harness
pale shell
#

whats toolbox

static zealot
half harness
#

1.16 has its ups

#

its good in smps and stuff

onyx loom
half harness
#

i personally find smps boring

prisma wave
prisma wave
#

i know

half harness
#

p v p v p v p v p v p v p v p

static zealot
#

but why do I need Toolbox to update IJ? I never did. It always gave me a notification. Or does it only send that after they can fully confirm its stable?

onyx loom
#

u dont

prisma wave
#

but your point is that there are lots of 1.8 pvp servers, even though 1.8 servers are only 8% of all servers

onyx loom
#

toolbox is only useful if ur actively using multiple jetbrains IDEs imo

half harness
humble silo
#

Sometimes you just have to question why you do things like this

prisma wave
half harness
# prisma wave dumb point

what I'm saying, is that I prefer pvp over things like factions, and the 1.8 pvp community is a lot larger, so i prefer 1.8.
however, u guys prefer non-pvp stuff, so you like 1.16.

static zealot
#

nah. minecraft is made so you don't play it

#

lmao

prisma wave
#

i played bedwars the other day and holy shit is 1.8 pvp boring

oblique heath
#

wait is factions not pvp?

static zealot
#

@obtuse gale have you never used a thing for something that its not meant for?

#

just bcz the initial intention was not that

static zealot
#

doesn't mean you can't do that

onyx loom
static zealot
#

xD

ocean quartz
old wyvern
#

(++ "Brister") >=> (++ "Mitten) $ Just []

hot hull
#

BM, 1,16 bw = godly

prisma wave
old wyvern
#

Oh wait that probably wont work

half harness
#

pvp = doesn't require creativity

static zealot
#

Minecraft is a SANDBOX... you're meant to do anything you want. Not just to build. smh

onyx loom
prisma wave
#

1.16 combat is fun, idk about pvp but minecraft pvp in general is shit

half harness
#

smp = requires creativity

obtuse gale
old wyvern
#

Actually

#

Hmmm

half harness
old wyvern
#

May work

half harness
#

i just said that

old wyvern
#

Wait

static zealot
#

so is building ...

half harness
static zealot
#

you can hate on 1.8 but don't hate on pvp please

prisma wave
ocean quartz
# half harness im not creative ;p

You don't have to be creative, make a single player world in hard mode, go explore, try beating the dragon, beat the wither, have some fun

static zealot
#

I love killing 9 yo, who then proceed to "fuck my mother" for being better than them.

onyx loom
#

fefo 🤨

obtuse gale
#

kali 👀

static zealot
#

with 20 cps

prisma wave
#

yugi what is >=>

half harness
#

and then i died

prisma wave
#

i presume i need to import from somewhere

oblique heath
#

🐠

half harness
#

and then quit

quiet depot
#

mc boring

#

modded good

#

play modded

#

10/10

ocean quartz
half harness
obtuse gale
quiet depot
#

smh

half harness
#

im good at 1.8 pvp, i like pvp, you guys like survival

#

its just different interests

onyx loom
#

git: 'gud' is not a git command. See 'git --help'.

ocean quartz
static zealot
#

moded is just to much for me lmao. I have a bad memory anyways... I would just see something and the next minute wonder if I've seen that thing before and what it does

#

lmao

half harness
#

You need more than clicking for pvp

static zealot
half harness
#

🤷 i like it, you don't, idc, it's just preference

oblique heath
half harness
#

i beat you

#

last time

#

._.

#

and then u left

#

lol

static zealot
#

yoooo anyone has like 3 minutes to join my mc server and test a deluxemenus dev build?

#

maybe 6 minutes

ocean quartz
prisma wave
#

@old wyvern ;-;

static zealot
static zealot
#

1.16.5

humble silo
#

ew ok

static zealot
half harness
prisma wave
#

wait is >=> just like . but with monads?

#

seems like it

static zealot
#

I don't want you to join my server! Someone else please? xD

humble silo
#

lol i dont like 1.16 but dm me the ip

#

lol

static zealot
#

:)) kk

half harness
humble silo
#

yes

static zealot
#

oh nooo

#

that's 2 of them

prisma wave
#

ooh fun

half harness
#

finally someone in this server that likes 1.8

half harness
old wyvern
#

kleisli composition

static zealot
#

1.5

humble silo
#

MLG rush for life lol

onyx loom
prisma wave
#

fancy

static zealot
#

bcz whoever likes 1.8 is just half a person

half harness
onyx loom
#

dkim is bipolar

#

whats the ip blitz

humble silo
#

lol yes

half harness
obtuse gale
onyx loom
old wyvern
prisma wave
#

i guess it doesnt work here because binding a string would only work on a single Char?

#

that seems to be what the error suggests

old wyvern
#

Damn boi stayin at home from the pandemic I see

pale shell
#

Seems like the new intellij version doesn't like Kite AI 😦

half harness
#

we need to duel

onyx loom
humble silo
#

Decent, as i said, better at MLG rush

half harness
#

lol ik

half harness
#

i suck at it

onyx loom
#

is that meant to be an insult

half harness
#

but oh well 🤷

humble silo
half harness
humble silo
#

oh lol

old wyvern
#

++ returns the summed up string

half harness
#

i get like 14 cps max :c

prisma wave
half harness
#

i can't drag

humble silo
#

Ah i see, cant autoclick

half harness
#

just double

humble silo
#

loser

old wyvern
#

No

prisma wave
#

wot

humble silo
#

lol

prisma wave
#

String is just [Char]?

half harness
prisma wave
#

and lists are monads

#

no?

old wyvern
#

Uh

#

I mean

pale shell
#

holy moley the new 2021 version is fast af

onyx loom
#

holy moley

pale shell
#

it used to take 20+ seconds to gradle build this project now it's 4 seconds

old wyvern
#

Im not sure if that compiler treats it the same way

prisma wave
#

hmm

old wyvern
#

But

humble silo
#

why would a different version of IJ make a difference?

old wyvern
#

We used Just at the end

ocean quartz
old wyvern
#

So m is already constraint to Maybe

prisma wave
#

yeah that's probably the reason

pale shell
#

i mean it's just odd that I update and it's much faster

half harness
jovial warren
#

I can barely get 7

half harness
half harness
prisma wave
#

because like this works

#

so strings are definitely monads

jovial warren
#

because ~7 CPS is about normal for regular human beings

half harness
#

in mlgrush if u click <20cps u lose

pale shell
#

@prisma wave running shadowJar now builds in 221ms

prisma wave
#

pog

pale shell
#

used to take much longer

half harness
#

i'll admit, mlgrush is a gamemode where high cps = win

onyx loom
quiet depot
#

what's mlgrush

half harness
#

i just butterfly (non doubleclick)

half harness
jovial warren
#

because maybe you have a better life than that

humble silo
jovial warren
#

lol

half harness
# quiet depot what's mlgrush

i personally dont play it much bc its mostly just click 25 cps = win, but its just a bridge with beds on each side and each person has a kb stick

humble silo
#

Nah, its click really fast to win

half harness
#

lol

pale shell
#

am i remembering correctly that 1.9 was a flop?

half harness
#

edited

jovial warren
ocean quartz
humble silo
jovial warren
#

1.8 PvP mechanics bad

#

new PvP mechanics on top

half harness
humble silo
old wyvern
half harness
jovial warren
humble silo
#

bet

ocean quartz
spring canyon
half harness
#

:)

humble silo
old wyvern
#

Conclusion? mc bad

jovial warren
#

all these who seem to think that mechanics that are basically the biggest try hard wins are good are actually stupid

#

that's literally what 1.8 and prior PvP is

half harness
#

you guys should try playing bridge

#

not bridging

jovial warren
#

it's the guy with the saddest life wins

half harness
#

but bridge

ocean quartz
#

Omg yes let's all dogbridge

humble silo
#

I play bridge with my grandparents

#

does that count?

onyx loom
#

woof woof

prisma wave
#

@old wyvern i got this so far thonking

half harness
prisma wave
#

i dont think >=> will work

humble silo
jovial warren
half harness
#

you guys should try playing bridge in hypixel*

#

what

jovial warren
#

trying to think of the best way to update viewing chunks for players

onyx loom
ocean quartz
#

Ah yes the high pickle

half harness
#

bridge is probably the gamemode where theres most skill

humble silo
#

In fact, Nothing in 1.8 takes ANY skill

humble silo
#

Factz

jovial warren
#

I originally thought of an algorithm that calculates the row of chunks to load and the row to unload and then loads/unloads those chunks

onyx loom
#

no

#

kovaak

remote goblet
#

I said I LIKE AIMLABS

jovial warren
#

but that sounds way too complicated lol

half harness
#

if you main bridge and someone else mains classic duels or something, you'll probably still win

humble silo
#

But that takes no skill

#

so why do it

prisma wave
humble silo
#

as you said

half harness
#

skyblock 🤢 i dont like sandbox

onyx loom
#

then why are u playing minecraft

half harness
#

lol

ocean quartz
#

Dkim i feel like minecraft is the wrong game for you

half harness
#

val runs at like 20 fps

onyx loom
#

🤡

half harness
#

so i can't play that

#

and idk any other game 😛

onyx loom
#

bad game anyway

half harness
#

besides roblox

onyx loom
#

but u should upgrade ur pc

prisma wave
jovial warren
#

sounds like the perfect game for you ngl dkim

#

Roblox

ocean quartz
#

Try raid shadow legends

half harness
jovial warren
onyx loom
#

u dont need 1k for a pc

#

actually u might because of scalpers rn but yeah

half harness
#

wel

#

$1k if you want it to be worth it

#

yes

#

i thought you knew

onyx loom
#

before scalpers became popular u could get a good pc for 600 or so

half harness
#

?

ocean quartz
#

Oh yeah or afk arena dkim

half harness
#

i have like a 10 year old pc :ccccc

half harness
#

afk arena?

#

what

ocean quartz
#

Unity

onyx loom
#

remences showcase actually looks pretty good ngl

#

i was quite surprised

#

cute

prisma wave
#

are u cheating on me

#

i hate u

#

😡

obtuse gale
#

hypotenuse ?

prisma wave
#

has

#

hask

#

h

onyx loom
#

why the heck is my terminal like this in ij 2021 thonking

#

can i change this font or smth

prisma wave
#

git gud

onyx loom
#

git: 'gud' is not a git command. See 'git --help'.

prisma wave
#

Thanks

old wyvern
#

@prisma wave ((return . (++) "Mitten") >=> (return . (++) "Brister") $ "") >>= putStrLn

#

There we go

#

🥲

prisma wave
#

oh my god

lunar cypress
#

ok, no luck with this discord data thing. @quiet depot how did you get to run it? did you really just follow the repo instructions with yarn?

prisma wave
#

omg it actually works

old wyvern
#

xD

prisma wave
#

it doesn't fit in a nickname though 🥲

#

this is kinda weird, shouldn't m be List at this point?

obtuse gale
old wyvern
#

how about this? (Just.(++)"Mitten")>=>(Just.(++)"Brister")$""

prisma wave
#

sadly not

#

32 characters

prisma wave
#

oh no i see

#

because return could be for any monad, it only knows we want a List/String after the >=>

#

right?

old wyvern
#

return :: a -> IO a
++ :: [Char] -> [Char] -> [Char]

(++) "Mitten" :: [Char] -> [Char]

return . (++) "Mitten" :: [Char] -> IO [Char]

prisma wave
#

o

lunar cypress
#

why tf does it fail in a plain docker container

prisma wave
#

return isn't just for IO though

#

is that just inferred because of the putStrLn later on?

old wyvern
#

not lists

prisma wave
#

hmm good point

quiet depot
prisma wave
#

ok makes sense

lunar cypress
#
FROM node:15.11.0
WORKDIR /usr/local/app
COPY . .
RUN yarn install
CMD ["yarn", "dev"]
```does this run for anyone else
#

it shouldn't but

#

at this point idk

quiet depot
#

not a big company that doesn't care about it

#

an individual

half harness
#

but what if they dont store it?

quiet depot
#

you can't know that

old wyvern
#

But what if they do?

half harness
#

what data does it have?

quiet depot
#

everything you've ever done on discord

old wyvern
#

All your messages

prisma wave
#

im pretty sure they don't. it processed much too quickly to have been uploading anything

lunar cypress
#

I don't care what they do with it, if I have the opportunity to run it locally I'm going to use it

quiet depot
#

better safe than sorry

prisma wave
#

like the zip was 250MB and it only took like 10 seconds

#

fair enough

lunar cypress
#

and also I want to understand this error

prisma wave
#

@old wyvern how's this

#

wanted to use mempty to show off but that wouldn't fit 🥲

old wyvern
#

🥲

onyx loom
#

do u guys see a problem here?

prisma wave
#

LMAO

#

damn you

#

beat me to it

onyx loom
#

🥲

half harness
half harness
#

i barely check it because i have to scroll down to see the channels :p

prisma wave
#

i will happily develop your plugin in a short timeframe for the large price of $0

onyx loom
#

idk i just got back to my pc after 2 minutes and saw the noti

#

No need to shout.

half harness
#

oh wow

#

so thats why i never get anything 😭

onyx loom
#

get what

obtuse gale
#

you need to specify a valid range

half harness
#

i did

onyx loom
#

include the maximum ur willing to pay

half harness
#

you're requesting for free

ocean quartz
#

You need to specify a valid price

half harness
#

that is your budget; it's basically saying "I have $0 to spend"

obtuse gale
#
onyx loom
#

might wanna put some details on what u actually need too

obtuse gale
#

Budgets must be either a set value or a range.
A budget should not be: “DM for info”, Just “Negotiable”
Percentages of profits to be allowed only if a range of expected profits is also included.

prisma wave
half harness
#

oh wow

#

its $10-50 now

prisma wave
#

your place in the societal hierarchy is defined by how many 🥲 reactions your messages get

onyx loom
#

lmao

prisma wave
#

the elite have over 6 🥲s

#

the peasants have 1

obtuse gale
#

lol

half harness
#

also @vivid venture you'll prob get more people who'll do it if you put what the plugin is about

#

so that they won't be like, oops, i can't do it

onyx loom
half harness
#

just filtering out the ppl yk

onyx loom
#

would much appreciate it

#

thank

obtuse gale
#

yeah but that's against guidelines lmao

onyx loom
#

i am now elite 😊

static zealot
#

yw

#

You don't have to say the price. Just your budget. You then negotiate the price in private.

prisma wave
half harness
#

and at least put a brief description - for example, an antilag plugin, chat plugin, minigame, etc

#

then u can discuss further in DMs

onyx loom
#

7 unique reactions

#

congrats bm

prisma wave
#

cheers

half harness
#

#827055635052888075 message
two three types of devs:

  1. someone who does it for fun
  2. someone who just does it to get money
  3. someone who does it for fun but want some money too
prisma wave
#
  1. In this YTer server and tryna beat the YTer to getting 100k subs by counting to 100k lol
half harness
#

lol

#

that was quick

onyx loom
half harness
#

the $50 probably caught someone's eyes

static zealot
#

or they're just sick of ya'll

prisma wave
#

DKIM

onyx loom
#

its too "pure" for him

half harness
#

imagine not having a dedicated ide smh

prisma wave
#

i am GOING to hurt YOU

prisma wave
onyx loom
#

oh no

half harness
#

😳 oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no oh no

#

kaliber save me

onyx loom
#

no lol

half harness
#

why

prisma wave
#

just do everything on the repl smh

half harness
#

what is repl

prisma wave
#

read eval print loop

#

interactive console

half harness
#

um

prisma wave
#

do you have java 9+ installed?

half harness
#

yes

#

ofc

#

isn't that what the scratch file has

prisma wave
#

open a cmd and type jshell

#

kinda

half harness
prisma wave
#

smh

half harness
#

on this laptop i have java 8 iirc

#

i cba updating

prisma wave
#

if you have ghc installed you can do ghci for a repl which is cool

half harness
#

i dont have ghc on this

prisma wave
#

thats a you problem

obtuse gale
#

@quiet depot what was the issue with adventure-api javadocs on DD?

half harness
#

😳

prisma wave
#

fix yourself bro and the world is yours

half harness
#

😫

prisma wave
#

you just gotta have the right mindset

quiet depot
#

d;adventure textcomponent

ruby craterBOT
#
public interface TextComponent
extends ScopedComponent<TextComponent>, Builder>```
TextComponent has 9 super interfaces, and  2 extensions.
Description:

A component that displays a string.

This component consists of:

content
:
string to be displayed

obtuse gale
#

o

half harness
#

what can i use haskell for

quiet depot
#

well

#

mostly fixed it

#

ig there's other issues

obtuse gale
#

lol the generics

prisma wave
half harness
#

sure, it's a nice language.. but what can i use it for

prisma wave
#

anything

#

it's general purpose

half harness
#

example?

prisma wave
#

yugi has made a discord bot in it

#

which... isn't the best use

#

but

#

it works

onyx loom
#

its like java without the OOP and instead its functional
u can do anything

prisma wave
#

^

half harness
#

oh

#

bm

#

do u recognize this image

prisma wave
#

oui

#

is it coming

half harness
#

yes

prisma wave
#

hurry

#

im about to alt tab

half harness
#

this

prisma wave
#

ah

#

yes

half harness
#

😮

prisma wave
#

i think

#

yep 🥲

half harness
#

what about this one

prisma wave
#

look the drawings are ugly

#

the rest of the book is good tho

half harness
#

lol

#

its $50

prisma wave
#

free online