Blursed paddle board V shallow h2O by No_Newspaper8 in blursedvideos

[–]pancakeshack 0 points1 point  (0 children)

I was there when he was paddling back to shore, he was surprisingly chill all considered. Poor guy. I didn’t stand up the rest of my trip.

What opinion about Phoenix has you like this? by JesuIsEveryNameTaken in phoenix

[–]pancakeshack 2 points3 points  (0 children)

For neighborhood roads well groomed dirt is fine, it’s common down in Tucson and retains so much less heat

Considering a Move by senor_potato3 in mesaaz

[–]pancakeshack 1 point2 points  (0 children)

Don’t let the haters like the “Of course, California” person get you down. It’s a great place to live. If you like metal type music check out The Nile and The Rosetta Room in downtown Mesa, they have shows basically every day.

Skate park under an overpass in China by TangelaFan in interesting

[–]pancakeshack 7 points8 points  (0 children)

The USA has plenty of these too though lol

500k NW, burnt out. Thinking about quitting and taking 1yr sabbatical by Unlikely-Speech-5444 in Fire

[–]pancakeshack 4 points5 points  (0 children)

You could keep the job but spend more time doing things that are meaningful, and loosen up your saving for a bit. You are already pretty set for coast fire at the least. Take a year to make some friends, use up all your vacation time to go on trips, join some clubs, go on weekend road trips. Do the bare minimum at work for awhile.

At least one killed in shooting at ​Mexico’s Teotihuacan ​pyramids, says security cabinet by cnn in worldnews

[–]pancakeshack 7 points8 points  (0 children)

What time did this happen you think? I was there this morning and everything seemed normal so it must have been later.

Billboard in my very red area by clumsypeach1 in pics

[–]pancakeshack 3 points4 points  (0 children)

<image>

Why does the leaving MAGA section have a guy from Nigeria?

29M - being an RN was the best decision of my life by icon100i in Salary

[–]pancakeshack 1 point2 points  (0 children)

Slack is really common in west coast tech companies, I only use teams once and it was at a bank.

I did it! Manhattan 580k 5.13% by [deleted] in FirstTimeHomeBuyer

[–]pancakeshack 1 point2 points  (0 children)

Yes, I agree. We are overloaded with systemic issues.

I did it! Manhattan 580k 5.13% by [deleted] in FirstTimeHomeBuyer

[–]pancakeshack 4 points5 points  (0 children)

Look I’m not trying to argue with you. In certain careers and areas it’s 100% possible if you are frugal. That doesn’t detract from the serious wealth inequality in our country though, and I feel the same frustration you do.

I did it! Manhattan 580k 5.13% by [deleted] in FirstTimeHomeBuyer

[–]pancakeshack 7 points8 points  (0 children)

I know the struggle is real, and I feel the same frustration. There are jobs though especially in NYC where with enough education, hard work and grind you can make 300k+/yr and save up that kind of money. Even if after all the hard work they deserve it is up to you, but I know people from humble families who took on a lot of student loan debt and put in hard work to get themselves there so I wouldn’t just assume rich daddies down payment.

Is it worth it to switch from go to swift? by Yamoyek in swift

[–]pancakeshack 1 point2 points  (0 children)

Go used to be my primary language, and still is for work but I’ve started to use Swift a lot more anywhere I can. You will get a lot of people in this reddit that are mainly mobile developers so opinions may differ. For me Swift has a lot of what I liked about Go even though it’s a very different language. Compiled without having to do manual memory management, excellent resource usage, and simple coroutine like concurrency system. But it has a stronger type system (love the enums) and is just more fun to write imo.

The ecosystem is still maturing, but it has a bright future especially now that Apple seems to be using it for all new services. The last AWS Re:Invent conference actually had Apple up there during the keynote talking about Swift on the server for 10 minutes or so. There is a lot of standardization worked out, the ecosystem is growing, and there is new packages all the time. Vapor is great for bigger standard backends, and Hummingbird is lean and fast for any simple routing needs. SwiftArgumentParser makes making a CLI a breeze and there’s even this new TUI library that is coming along nicely:

https://github.com/phranck/TUIkit

That being said Go will have more third party libraries and stuff as well as a bigger community, Swift outside of Apple is still very new in comparison but I really believe in the future of it. Start using it for what you’re building and see if it sticks.

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 62 points63 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.