Fork me on GitHub
#clojure-europe
<
2022-11-28
>
RAMart06:11:09

Hi y'all! 👋 🥐

simongray08:11:37

good morning

dharrigan08:11:19

Good Morning!

simongray08:11:40

We’re launching one of the projects I’ve been working on since 2020 and of course all of the researchers in my project group are suddenly busy suggesting completely new features to implement before tomorrow crying-laughing-joy-blood

🚀 7
😂 1
mdiin08:11:59

Best way to get feedback from users: “Hey, this thing we’re building for you that you have showed absolutely no interest in? We’re shipping tomorrow.” 😂

mdiin08:11:54

🤞 that you have a smooth launch.

🙏 1
simongray08:11:25

Thanks, @U0522J5HN. Yes, that is precisely what’s going on. They suddenly discovered a feature I made almost 1 year ago last week and starting praising it, even though it was heavily requested by them and I had already made a big announcement of it back when I made it. 😛

❤️ 1
simongray08:11:21

So it’s great that they’re finally taking interest, but also kinda funny.

😂 1
robert-stuttaford08:11:08

clients don't know what they want until they can see it

👏 1
eval202012:11:01

Very relatable 😁. It’s just Cunningham’s Law in action: if you want feedback, don’t ask for feedback, just deploy v0.1 of the feature. Good luck! 🙂

😁 1
mdiin08:11:47

Godmorgen

grav08:11:03

Morning!

otfrom09:11:20

morning. Can anyone explain why my knees and muscles are sore?

thomas09:11:48

40K bike ride?

Gabriel Kovacs09:11:53

Not enough 40k bike rides and/or not enough ice cream

otfrom09:11:46

not enough is right

otfrom09:11:51

need more practice on both

😄 2
robert-stuttaford09:11:52

you're hugging people all wrong

otfrom10:11:38

that is a distinct possibility

jkxyz10:11:00

Can't help but feel that god screwed us with knees. When cybernetic enhancements are finally a thing I'm definitely getting them replaced with better ones

😄 1
robert-stuttaford10:11:21

and the food-pipe intersecting with the air-pipe

robert-stuttaford10:11:50

and nostril hair. wtf

😁 2
Gabriel Kovacs10:11:59

isn't that just apply filter :thinking_face:

lread13:11:10

I could use a new back... but I think the one I've got will just have to do.

ordnungswidrig10:11:16

hello again

👋 4
simongray11:11:17

@mpenet TIL about Helidon/Nima (via https://github.com/mpenet/nima)

🥴 1
thomas12:11:03

Why oh why Java can't you be simple? new Graph().equals(new Graph()) == false 😞

thomas12:11:10

Looks like I have to write my own equals code 😞

borkdude12:11:05

It could also be that it does implement equals but one of the objects in your graph does not

thomas13:11:35

just written my own .equals didn't turn out that difficult, but just finding out I needed to do that took some time.

👍 1
RAMart13:11:47

@U052852ES when implementing equals, don't forget to implement hashCode as well "to maintain the general contract for the hashCode method, which states that equal objects must have equal hash codes." (https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html#equals(java.lang.Object))

thomas13:11:23

yup, done that. thank you for reminding me though.

💪 1
slipset13:11:03

There’s a project for that. https://projectlombok.org

thomas13:11:09

I heard of that, never used it though.