lemmyrs
Most likely programming in Rust otherwise figuring this thing out.
- 11 Posts
- 27 Comments
Gonna assume this was a test post. It worked!
lemmyrs@lemmyrs.orgMto Rust Lang@lemmyrs.org•Come build Zellij WebAssembly (Rust) plugins for your terminal with us!English61·2 years agoOh wow, this seems like a fantastic addition. One of these days I really gotta switch from my decade old tmux workflow to zellij!
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Two week (well 17 days) update!English1·2 years agoSo there’s two options (assuming
/r/bevy
even wants to consider migrating here):- We setup a dedicated Bevy community
/r/bevy
could potentially use the existingRust: Game Development
community we have here
I don’t really have preference either way. I do think that project-specific communities could certainly become a thing if people prefer to keep discussions laser focused.
And yeah, unfortunately I can’t really make it free-for-all community creation simply because of potential DDOS/spam attacks and things rampantly becoming out of hand (part of the reason the instance is also application based).
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•New communities and consistent namingEnglish1·2 years agoI think TWiR can certainly belong in
Rust: News
along with any other relevant potentially recurring content (I’m thinking rustfmt, useful pkg update(s), news articles etc perhaps).I’ve noticed its kinda challenging finding communities for folks and it’s also kinda hard to make an actual announcement of sorts. I do, however, try to “pin” posts which I believe to be particularly important for the members to know. Honestly though, I too am figuring this out along with y’all :)
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Full transparency and maintenance costsEnglish1·2 years agoTheir pricing and reputation is certainly good. However, it seems like they don’t have simple full server snapshot support. I think that’s mandatory at this point in case of potentially irrecoverable failures.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Yes, we were down for ~2 hours :(English10·2 years agoSigh, I tried it one more time. Same problem. Downtime this time was probably < 5 mins though so hopefully not noticeable. I am wondering whether the database is in some bad shape (no idea why/how). I guess we wait and retry with
0.18.1
.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Yes, we were down for ~2 hours :(English1·2 years agoWell, the lemmy container kept running into:
lemmy | 2023-06-24T23:28:52.716586Z INFO lemmy_server::code_migrations: Running apub_columns_2021_02_02 lemmy | 2023-06-24T23:28:52.760510Z INFO lemmy_server::code_migrations: Running instance_actor_2021_09_29 lemmy | 2023-06-24T23:28:52.763723Z INFO lemmy_server::code_migrations: Running regenerate_public_keys_2022_07_05 lemmy | 2023-06-24T23:28:52.801409Z INFO lemmy_server::code_migrations: Running initialize_local_site_2022_10_10 lemmy | 2023-06-24T23:28:52.803303Z INFO lemmy_server::code_migrations: No Local Site found, creating it. lemmy | thread 'main' panicked at 'couldnt create local user: DatabaseError(UniqueViolation, "duplicate key value violates unique constraint \"local_user_person_id_key\"")', crates/db_schema/src/impls/local_user.rs:157:8
despite the fact that:
lemmy=# select id, site_id from local_site; id | site_id ----+--------- 1 | 1 (1 row)
So you can see that it was unconditionally trying to create a local_site and running into a DB constraint error. I further narrowed it down to this piece of code:
/// /// If a site already exists, the DB migration should generate a local_site row. /// This will only be run for brand new sites. async fn initialize_local_site_2022_10_10( pool: &DbPool, settings: &Settings, ) -> Result<(), LemmyError> { info!("Running initialize_local_site_2022_10_10"); // Check to see if local_site exists if LocalSite::read(pool).await.is_ok() { return Ok(()); } info!("No Local Site found, creating it.");
At this point I gave up because I couldn’t really tell why
LocalSite::read(pool).await.is_ok()
was, well…not ok.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Two week (well 17 days) update!English2·2 years agoWill you update to Lemmy 0.18.0 (announced today)? The new HTTP API is allegedly more lightweight.
Of course I will! I was just waiting for a few more instances to bump theirs before I update this one.
By the way, I updated my dark theme published here for lemmy-ui 0.18.0 :)
Most excellent, I have been using your CSS with Stylebot :) You could also submit a PR to lemmy-ui repo btw with your custom theme so it gets even easier for people to try.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Two week (well 17 days) update!English3·2 years agoI think it’s likely to spike again when the api goes dark
That’s a fair point. I think I might bump up the specs of this instance over the weekend (will make an announcement prior).
I haven’t been back there, is any consensus forming regarding whether people will use /r/rust, !rust@lemmyrs.org, or !rust@programming.dev going forward?
I am still of the opinion that both can (and probably should) co-exist. This particular instance will always be Rust focused, federated and have rust dedicated micro-communities. Whether it continues to grow only time will tell I suppose.
I can somewhat relate. I mostly do something like this (instead of the exact dependency version):
chrono = {version = "0", features = ["serde"]} clap = {version = "4", features = ["derive"]} anyhow = "1"
I do, however, typically write application code instead of library, so it’s probably less critical for me. Occasionally do run into dependency hell here and there, but nothing too bad so far!
lemmyrs@lemmyrs.orgMto LemmyRS: Meta@lemmyrs.org•Will lemmyrs defederate from controversial instances?English1·2 years agoHey, thanks for bringing this up. I completely agree that this is indeed something that we should discuss as a community. I haven’t had the chance to make a thread about this yet, so we’ll use this one :)
I have been keeping an eye on the de-federation of some instances but afaict the primary reason they did that was because of the open signup nature of those instances resulting in a flood of potential bot/troll accounts which the mods couldn’t keep up with (understandably so). LemmyRS is (and probably will be in the foreseeable future) an application only instance. We just don’t currently have the infrastructure or the manpower to deal with a completely open instance.
Any user who signs up using this instance presumably understands the target topic is Rust (and we have communities on this instance to cater to those users, so it’s already pretty self-isolated in that sense). If someone wants to subscribe to communities on other federated instances they’re completely open to do so. While things settle I think this approach should serve us well (please feel free to disagree and provide any counter arguments).
But again this isn’t my unilateral decision, I would simply do what the users of this instance want as a group.
A few things:
- Instances are like their own self-hosted Reddits with communities being the sub-reddits. We have (had?) r/python, r/rust, r/golang along with r/programming; we can do the same here with topic-focused instance (like this one). I can imagine there being instances like lemmygo.org, lemmypy.org etc if the Reddit exodus continues.
- You don’t need multiple accounts to access communities (sub-reddits) from other instances (reddit). A single account on any instance allows you to access communities from any other instance. The UX/UI is a bit wonky, but it works.
- As @erlend_sh@lemmyrs.org pointed out, micro-communities like cli, wasm, networking etc can potentially become big enough and/or have specifics that are more suitable to exist on a topic-based instance.
Personally, I don’t have any preference. I will simply subscribe to the community which is the most active on whichever instance.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Full transparency and maintenance costsEnglish0·2 years agoI’ll certainly make a post detailing that in a day or two. Just have to be careful about regulations etc.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Full transparency and maintenance costsEnglish0·2 years agoCurrently we don’t have anything setup (we’re just too tiny right now). I’m talking to other instance admins about best practices around donations/tips.
I’m looking into Open Collective as the platform to accept donations at some point.
lemmyrs@lemmyrs.orgOPMto LemmyRS: Meta@lemmyrs.org•Full transparency and maintenance costsEnglish1·2 years agoLooks like https://old.reddit.com/r/rust/comments/146qxzn/building_a_better_rrust_together/jnrtsac/ sparked some incoming user activity.
Took a couple screenshots of the instance’s stats:
-
Containers:
-
Host file system:
-
vultr bandwidth:
-
lemmyrs@lemmyrs.orgto Gaming@beehaw.org•How many steam deck folks are here and what are you playing?English1·2 years agoDead cells by far!
lemmyrs@lemmyrs.orgto Gaming@beehaw.org•How many steam deck folks are here and what are you playing?English4·2 years agoIn order of play time on the deck:
- Dead Cells
- Hades
- Katana Zero
- Hi-Fi Rush
- Neon White
Borderlands series is pretty fun split screen!
lemmyrs@lemmyrs.orgto Technology@beehaw.org•what would Reddit need to do to get you to go back19·2 years agoIf
old.reddit.com
gets taken down, I’m out for good.As good as the fediverse is, there has to be a tremendous amount of work to make it easier for non-tech folks to participate. I am excited though, being here certainly feels like the good old simpler web.
Done. Update post coming shortly.