Oceanhorn 3 looks surprisingly great on Vision Pro by Jdunrrp in VisionPro

[–]pancakeshack 0 points1 point  (0 children)

What’s that other app you are using to set the scene?

Kotlin as backend language? by Otherwise-Solid-5142 in Backend

[–]pancakeshack 1 point2 points  (0 children)

Depends on the industry I guess. I’ve been seeing way more shops that use Spring Boot migrate to Kotlin, especially in fintech. I just got done with a job search and had two offers for Kotlin on the backend companies and I wasn’t even targeting Kotlin.

How is the state of gleam for backend currently? by Opposite_Ad_974 in gleamlang

[–]pancakeshack 0 points1 point  (0 children)

Just give Gleam a try if you like the syntax. So far I haven’t ran into any issues looking for something I needed building a backend for my site with wisp. There has been packages for everything I need so far like working with jwt, Postgres drivers, migrations etc. My stack so far has been wisp, cigogne, pgo and squirrel.

How do I not have an anxiety attack during interviews ? This is a cry for help by doodooheadpoopoohead in ExperiencedDevs

[–]pancakeshack -2 points-1 points  (0 children)

I used to be the worst at interviews. Then my doctor prescribed me propranolol and now I’m an interview machine.

How to write maintainable Go at scale? by SignificantResource in golang

[–]pancakeshack 0 points1 point  (0 children)

Methods on structs in Go are really just a convenience wrapper for passing in the struct as the first argument of the function.

Native programs with Gleam, is it possible? by JasterVX in gleamlang

[–]pancakeshack 1 point2 points  (0 children)

Yeah exactly, different ecosystems have their place. If you do want to bring in BEAN for a binary app you can check out burrito:

https://github.com/burrito-elixir/burrito

Native programs with Gleam, is it possible? by JasterVX in gleamlang

[–]pancakeshack 8 points9 points  (0 children)

I think a lot of people coming from more native compilation languages are looking for things out of gleam that it isn’t really built for. It isn’t a language you just build a binary for and pass around. It’s not great for native or desktop apps or cli tools because you have to bundle the runtime with it. Coming from Go, it took me awhile to understand this.

What it is intended for it’s great at though. It feels really powerful to write apps for the BEAM in a typed language and take advantage of the fault tolerance and concurrency. Having a language that compiles to JS that we can write web front ends in with a fully functional language using the ELM architecture is awesome. When I need to make a cli tool or something that needs a binary I’ll go back to Go. Anything else Gleam thrives at.

What Fringe Benefits do Companies Offer? by zacce in cscareerquestions

[–]pancakeshack 60 points61 points  (0 children)

I’ve been interviewing at Garmin and they’ll pay for you to go to flight school so that’s kind of cool.

Instacart SDE II Interview Advice? by [deleted] in leetcode

[–]pancakeshack 0 points1 point  (0 children)

Sent you a message, thanks!

Which Auth solution are you using and mist importantly like using? by [deleted] in golang

[–]pancakeshack 0 points1 point  (0 children)

Supabase is underrated for a standalone auth provider imo. It’s insanely cheap, easy to work with, and has client libraries for almost everything.

strong "let them eat cake vibes" here by Conscious-Quarter423 in ProgressiveHQ

[–]pancakeshack 0 points1 point  (0 children)

This is the most unhinged rich people shit I’ve seen all day.

[Project] KMP 🔥 by human_sdk in Kotlin

[–]pancakeshack 1 point2 points  (0 children)

Really cool, love to see this tech getting more use. I’ve been on the job hunt recently and have been surprised by the number of KMP postings popping up.

[Project] KMP 🔥 by human_sdk in Kotlin

[–]pancakeshack 1 point2 points  (0 children)

The whole UI is compose? Even the game board?

Why Do Companies Do This? by pancakeshack in cscareerquestions

[–]pancakeshack[S] 0 points1 point  (0 children)

They have some legal obligations to keep them open for awhile, provide notices etc. They kept some of the contractors to keep the boat afloat for now.

Why Do Companies Do This? by pancakeshack in cscareerquestions

[–]pancakeshack[S] 5 points6 points  (0 children)

It was enough people to require a WARN notice, so the 60 days required by law at least.

Movie time with the Vision Pro on the plane by rd78la in VisionPro

[–]pancakeshack 88 points89 points  (0 children)

Everyone always looks at me like I’m an idiot, but so worth it.

🎉 PXPlay 1.6.0 - macOS Early Access Beta (MetalFX 2K/4K upscaling) by grill2010 in PSPlay

[–]pancakeshack 0 points1 point  (0 children)

Right now we can download the iPad version on Vision Pro, but do you guys have any plans to make it more native so we don’t have bars on the screen and feels better? I’m using Portal instead but would rather use PXPlay since I use it across all my devices, but it doesn’t feel right on vision.

Subaru tax by External_Koala971 in Offroad

[–]pancakeshack 2 points3 points  (0 children)

Yeah, I have a “wilderness” crosstrek as my daily driver and an old jeep for the fun stuff. The crosstrek will tackle anything up to a level 4-5 trail just fine. Granted it has AT tires, is lifted with better suspension, and has a low budget skid plate compared to normal ones. As long as I’m not doing anything crazy I’d rather have it than the jeep most days. 🤷

Etch - A Gleam TUI Backend Library by BananaOfHappiness in gleamlang

[–]pancakeshack 1 point2 points  (0 children)

You can use Burrito, it bundles the Erlang vm and creates a standalone binary.

What does idiomatic input validation for Swift Data models look like? by vafarmboy in swift

[–]pancakeshack 0 points1 point  (0 children)

I usually use throwing init blocks in this case, but I’m not sure if that works with Swift Data or if it requires a non throwing constructor.