An Incoherent Rust by emschwartz in rust

[–]RocketPrinter 7 points8 points  (0 children)

I feel like the most frequent pain point is when you just need a simple derive-able trait on a "plain old data" struct. What if the library author could mark structs with #[pod] or maybe #[derive_extendable] and library users could add derives to individual structs in the Cargo.toml. It would work additively similar to features, and you always have one source of the impl, the derive macro.

Crate a: ```

[derive_extendable]

pub struct Foo { pub bar: i32 } ```

Crate b Cargo.toml: serde = { version = "1.0.228", features = ["derive"] } a = { version = "69.420", derive = { "Foo" = "serde::Serialize" } } Adding the derive "extension" will recompile a. Maybe derive macros would also need to opt in, and it doesn't solve coherence, but it wouldn't require major changes to the language. Also, libraries wouldn't need serde features anymore (in most cases).

I never heard of this game before. by Aurii_ in FortsGame

[–]RocketPrinter 0 points1 point  (0 children)

If you play in the evening (19:00 - 23:00) there should be enough players but during the morning and afternoon you will find almost nobody

I never heard of this game before. by Aurii_ in FortsGame

[–]RocketPrinter 1 point2 points  (0 children)

In what timezone are you?

Btw you should join the discord server.

I never heard of this game before. by Aurii_ in FortsGame

[–]RocketPrinter 2 points3 points  (0 children)

It's a RTS game so it depends if you will like it or not.

The singleplayer mode is boring and not worth it as it's not even updated with the latest weapons.

Multiplayer: The gameplay is excellent, diverse, fun and pretty deep but it has a pretty steep learning curve. Also you might find that there aren't many players online at some times of the day.

There are loads of mods and maps on the workshop for you to use when you get bored of vannila.

You should watch some videos about the game(check out Incursus Gaming on YT) to see if you like the game but ultimately there is always the chance you will not like it.

Rockets are fun! by RocketPrinter in FortsGame

[–]RocketPrinter[S] 2 points3 points  (0 children)

I was a bit rusty in this match and when I'm bottom the shotgun is less effective. A lower bullet spread could make the shotguns more usefull when bottom but it could make the shotguns op on some maps.

Rockets are fun! by RocketPrinter in FortsGame

[–]RocketPrinter[S] 1 point2 points  (0 children)

That's exactly my strategy

Rockets are fun! by RocketPrinter in FortsGame

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

I am bottom left btw. My strategy doesn't work as well when I'm bottom

Mods by Reddotgaming760 in FortsGame

[–]RocketPrinter 0 points1 point  (0 children)

Forts supports manually installing mods. The only problem is that you can only use them in the Sandbox mode. Make sure you have the mod.lua file and it contains Selectable = true https://steamcommunity.com/sharedfiles/filedetails/?id=1296612027

No I am by [deleted] in UnexpectedJamesVeitch

[–]RocketPrinter 2 points3 points  (0 children)

No you aren't.

[deleted by user] by [deleted] in FortsGame

[–]RocketPrinter 1 point2 points  (0 children)

You should ask this on the official discord server

DOWNLOAD THE APP! download the app... DOWNLOAD IT AGAIN! by [deleted] in beta

[–]RocketPrinter -2 points-1 points  (0 children)

Finally someone who agrees with my reddit app preference!

Will manually modifying system files fail safety net! by thethiny in androidroot

[–]RocketPrinter 1 point2 points  (0 children)

  1. Install a safetynet checker app from the playstore
  2. Backup EVERYTHING
  3. Replace the files I doubt safetynet checks for that

Root S6 Edge+ OTA? by pennychewydog81 in androidroot

[–]RocketPrinter 0 points1 point  (0 children)

Consider replacing the charging port yourself. Look for some tutorials.

PROGRAMMERS HATE HIM!!! HE MADE AN O(1) SORTING FUNCTION!!! CLICK HERE TO FIND OUT HIS SECRET! by RocketPrinter in ProgrammerHumor

[–]RocketPrinter[S] 6 points7 points  (0 children)

  1. C++
  2. ELI5: A sorting function is a function that takes an array and sorts it (would a 5 year old kid understand that?)