recursed

joined 1 year ago
[–] [email protected] 3 points 1 year ago (4 children)

Divinity Original Sin II is also an amazing game to play with your Significant Other as well. We sunk in well over a hundred hours into this game and it was a blast!

[–] [email protected] 18 points 1 year ago (2 children)

I'd be interested in seeing the code and checking it out. Open Source it only if you're comfortable and there's no sensitive data in the repo though.

It wouldn't hurt and there's no down-voting a repo so I see no downsides besides fellow developer engagement and learning from one another.

[–] [email protected] 1 points 1 year ago

You can find it as the two overlapping squares at the bottom of the header:

[–] [email protected] 1 points 1 year ago

Personally using Lemmy as I find the interface, syntax (linking users and communities), and deployment easy to use.

Also I personally want to contribute to Lemmy and learning Rust is a high priority in my personal and work life.

[–] [email protected] 0 points 1 year ago (1 children)

You can see boss event timers from the wiki and there are links to each: https://wiki.guildwars2.com/wiki/Event_timers

Or you can use https://gw2timer.com/ which shows a map of where they are.

[–] [email protected] 26 points 1 year ago (1 children)

This made me chuckle for a good 10 minutes!

At work we’re currently in the last layer of the iceberg with 35+ microservices, with ten different Kubernetes instances for different uses and a supported OnPrem version.

It is bit of a learning curve and we definitely have two “mono-services” that we’re actively braking down due to it accumulating seven years worth of different ideas and implementations.

I think currently I’m still heavily in favor in microservices in a project of our scale as it easily let’s us enhance, trash, or reimplement different areas of the app; but man is it a pain in the ass to manage sometimes 😂

[–] [email protected] 3 points 1 year ago (2 children)

The format seems written by ChatGPT 😂 not that it is… just similar

[–] [email protected] 0 points 1 year ago (1 children)

For me the decentralized nature of Lemmy / Kbin, (the only two reddit clones i know right now), is what’s really bringing me in.

I’ve been on Reddit for over a decade and seen communities completely close and go private because either a lack of moderation or infestation of bots. With how Lemmy and Kbin are set up, if one group of people don’t agree with another, they can set up shop on a different server.

This really gives users power over communities instead of having to do different naming such as r/animemes vs r/goodanimemes.

[–] [email protected] 0 points 1 year ago (1 children)

Very awesome! I'm excited to hear more fellow developers are creating more tools to browse Lemmy! Persistent cache seems really interesting! Excited for the future!

[–] [email protected] 2 points 1 year ago

Neovim with coc-rust-analyzer.

There’s also coc-rls.

[–] [email protected] 3 points 1 year ago

Given this project has been around for many years, (looking at their releases), I wouldn’t say it’s “early” to modularize their code. It’s very common practice to abstract out / move commonly executed code into their own packages and modules to allow ease of reuse across the app. This way if an entire subpackage needs to be moved or deleted, all related code could be affected at once and code which references it, simply needs to be edited. Typically these places to edit are much easier to handle since most of “calling code” wouldn’t touch the modularized / abstracted code, only their callables.

[–] [email protected] 2 points 1 year ago

Flatseal is a great tool as mentioned by julianh but wanted to mention that you can use the following command to add a directory on an already installed flatpak from this askubuntu post.

flatpak override <package_name_here> --nofilesystem=<path_here>
view more: next ›