• 9 Posts
  • 108 Comments
Joined 1 year ago
cake
Cake day: January 25th, 2024

help-circle
  • I do have a career, I am a specialist of (kinda) GIS and data analysis related to hydrology. I’m currently on the path to complete my PhD within the next year. I have been really successful at pitching my programming ideas on non-programming domain. Solve problems for clients, make applications/algorithms that can outperform what they had before. It does sometimes make me feel like I’m a bit too wide on my skillsets related to others in my field, but at least in my immediate circles, I am still as good in the core aspects of my field. But there are so many people that are better specialist than me if I search around.

    But now, due to the current climate, and situation in the USA, I have been thinking I might have to move to another country before I finish PhD, and I might not be able to find a job in another country immediately, so I’m thinking of finding some small gigs I could do for some side income.

















  • Yeah, and there’s no plan to stabilize the ABI because it’s developing.

    You can use C ABI for some data formats, but you’re limited on what you can use (mostly primitives). There’s a crate stable-abi or abi-stable that provides a way to do things to keep it stable, but since it’s external crate it has limitations.

    I know it’s frustrating because I am writing something in rust that loads functions in runtime. I thought it’d be easy because programs written in C do it all the time. Rust gives a lot of advantages but working on dynamic loading hasn’t been fun. And there aren’t a lot of resources about this either.