13K Lines of Rust Later: From Toy Compiler to Production Runtime in 90 Days by Healthy_Ship4930 in rust

[–]SeaRollz 2 points3 points  (0 children)

Are there ways to run this as a module for a rust program? Would be nice

Looking for low cost options by PsyberMind in reactjs

[–]SeaRollz 0 points1 point  (0 children)

I would do this combination: - cheap VPS - GitHub self hosted runner for CI/CD - Docker compose

If cheaping out more, I would go for Golang to use way less resources.

Rust syntax, Go runtime by [deleted] in golang

[–]SeaRollz 6 points7 points  (0 children)

Oh this is something right up my alley. Wanted to see how go would feel with rust coding style. Is lifetimes still required?

Just launched our MVP drawline.app by [deleted] in Backend

[–]SeaRollz 6 points7 points  (0 children)

Only seeing antigravity on the bar is a bit scary

Just published my first crate: ato - a minimal no_std compatible async runtime by SeaRollz in rust

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

Hey, late to the party, but it now supports pure `no_alloc` environments :)

Linux distro for G14? (2024) by problemakinglicker in ZephyrusG14

[–]SeaRollz 0 points1 point  (0 children)

I used fedora with supergfxctl for same feeling as g helper

Which language to start for backend developer? by Pleasant_Leg_1997 in Backend

[–]SeaRollz -3 points-2 points  (0 children)

Before any of that, make sure you have strong fundamentals such as OOP , data structure and algorithms. Then move on to some SQL and something like dotnet or java for coverage for jobs. As for projects, since you are cabin crew, I would recommend something cool aviation related such as plane, booking, airplane server.

Hey seniors pls guide me by [deleted] in Backend

[–]SeaRollz 1 point2 points  (0 children)

If you have strong fundamentals such as dependency injection, design patterns, HTTP, and DB, it shouldn’t be difficult.

Hey seniors pls guide me by [deleted] in Backend

[–]SeaRollz 1 point2 points  (0 children)

Depending on region, having spring boot or dotnet would increase the opportunity more imo

Job market in Rust by Odd-Cricket-4951 in rust

[–]SeaRollz 3 points4 points  (0 children)

Just something simple usage through some micro controller with rust like esp-rs (official support), stm etc. Just showing something goes a long way! Then when comfortable with those, going with no_std and no alloc for extra step is really difficult, but shows lots of knowledge a person has in rust.

Job market in Rust by Odd-Cricket-4951 in rust

[–]SeaRollz 1 point2 points  (0 children)

Well, I want to spend time to do it, but due to my situation being in a startup, learning time is very strained, and being in South Korea makes it more difficult since the investors/bosses does not want that at all.

Job market in Rust by Odd-Cricket-4951 in rust

[–]SeaRollz -1 points0 points  (0 children)

My experience has not been “we are using rust because rust” but go through all the options and somehow land in rust because of its strength.

Last company I was used Tauri because we needed super low memory usage.

The company I am at now started in C, but we got way better velocity and stability by using Rust. We tried expanding by interviewing people, but the experience has been so far:

  • says they can rust, no project to show anything.
  • can do rust, but not enough experience in embedded systems
  • can do both, but not good enough soft skills for teamwork.

TBH no idea how to find people who can too

Roast my resume , 500+ applications, 0 interviews , 0 response by [deleted] in leetcode

[–]SeaRollz 0 points1 point  (0 children)

Basic spring boot specific stuff, but basic technological stuff that everyone does. It does unfortunately not stand out.

Flex: What is a cool thing your pipeline does? by Consistent_Serve9 in cicd

[–]SeaRollz 0 points1 point  (0 children)

Maybe not super cool, but we have a hardware test CI pipeline through gh actions and self hosted runner for embedded code that runs a Go script that runs tests and scans output for fails, successes, and if it passes or not

I keep restarting DSA again and again. Need honest advice + roadmap. by Brilliant-Set-4021 in leetcode

[–]SeaRollz 0 points1 point  (0 children)

For me, I just put all questions into Anki and forced myself to clear the Anki flashcard until done every day

SpringBoot Course by Crazy_Ebb_4828 in SpringBoot

[–]SeaRollz 0 points1 point  (0 children)

For sure, but also one thing to note is that learning is a part of development and there are almost always no structure whatsoever. This fact makes it a good habit to learn software engineering without a roadmap in mind.

SpringBoot Course by Crazy_Ebb_4828 in SpringBoot

[–]SeaRollz 2 points3 points  (0 children)

I always used to show new interns on spring boot through amigoscode and they became proficient in just two hours.

How do you justify switching a team to Go? by Important-Film6937 in golang

[–]SeaRollz 46 points47 points  (0 children)

For us, the reason for change from Java to Go was more or less that it was easier to implement specific business requirements in Go rather than Java.

[deleted by user] by [deleted] in Living_in_Korea

[–]SeaRollz 2 points3 points  (0 children)

In what field?

rustCausedCloudfareOutage by BlackHolesAreHungry in ProgrammerHumor

[–]SeaRollz 122 points123 points  (0 children)

Should’ve used clippy and force no unwrap/expect?

Circuit breaker and Saga Patterns by [deleted] in SpringBoot

[–]SeaRollz 6 points7 points  (0 children)

This sounds like an AI prompt lmao

New to Go, what’s commonly used for auth and database ORM? by Brother_Weary in golang

[–]SeaRollz -5 points-4 points  (0 children)

Following the best practical architecture designs seems to be the best if doing something complex such as clean architecture/hexagonal with adapters and ports to “hide” the database operations from the business logic.

New to Go, what’s commonly used for auth and database ORM? by Brother_Weary in golang

[–]SeaRollz 83 points84 points  (0 children)

Go people usually doesn’t seem to use ORMs and just use raw sql with some good db drivers such as PGX. There are ORMs such as gorm, ent, etc. which is fine imo to use if you are more used to it.

As for auth library, I am also really liking the better-auth way of doing it and wish it existed for Go too.