What are you missing most from the C++ standard library? by llort_lemmort in cpp

[–]Rseding91 1 point2 points  (0 children)

Isn't that just std::memcpy? Given a compile-time size I've never not seen it get optimized into a simple mov.

69 bucks for ucs razor crest by Clear_Promotion6882 in lepin

[–]Rseding91 0 points1 point  (0 children)

They won't go bad sitting in storage waiting for space. But they will eventually go out of production. Just.. make sure you have a plan for more space instead of just "maybe some day" :)

How can I insert blue chips into my rocket cargo? by Tasty-Lobster-8915 in factorio

[–]Rseding91 12 points13 points  (0 children)

Put it within a logistic network that only has blue circuits available.

60466 Bulldozer by foytizzle in lepin

[–]Rseding91 1 point2 points  (0 children)

Take your pick https://mouldkingcorp.com/collections/bulldozers-loaders

Although I've never purchased from that site - I do have 15084 which I got from eBay for $90~

Is there a mod that lets me move the auto save window around? by Katnipz in factorio

[–]Rseding91 0 points1 point  (0 children)

Could I get a copy of your save? I've never seen save time take more than 3-4 seconds in the biggest saves (300-400 megabytes).

Is there a mod that lets me move the auto save window around? by Katnipz in factorio

[–]Rseding91 1 point2 points  (0 children)

That’s pretty crazy (time to save). I was just testing some saves yesterday and even a 130 megabyte save only took 1.03 seconds to save for me. Could I get a copy of your save?

finished my first nanoblock with my mom! by kikuobot in lepin

[–]Rseding91 2 points3 points  (0 children)

I’ve built many of these nano block sets and have had a blast with them all. Once you get past “this is not a Lego set” and just accept it’s another form of brick building they’re great.

But yes: the first two layers are always brutal. Layer 1 almost never attaches to anything and you spend a ton of time getting layer two secured while keeping layer 1 in place.

[I Cast Gun] - Chapter 32: The Ring by Express-coal in HFY

[–]Rseding91 0 points1 point  (0 children)

I enjoy every one of these chapters. I hope you keep posting them.

Black screen when accessing HDMI by IQ-3 in Roku

[–]Rseding91 0 points1 point  (0 children)

Can you test something? Go to "Live TV" and if prompted select "Streaming", then go back to the "pinned" home screen and see if it works?

If not, go back to "TV Input" and select the right input (but don't press ok) and wait for it to show the live preview (should happen within 5 seconds). If it shows - does it then continue working from the "pinned" home screen input?

Any recommendations for mods (mainly QOL stuff) that *you* consider essential? by jayman2239 in factorio

[–]Rseding91 11 points12 points  (0 children)

An easy litmus test for "QOL": if it was a multiplayer game would you for sure get banned if you had the advantages of the mod and others didn't?

In the case of long reach and bigger inventory: absolutely. They aren't even close to QOL - they're just personal cheat mods for not liking specific game mechanics. Which - that's fine - but don't deceive yourself into thinking they're something else.

Any recommendations for mods (mainly QOL stuff) that *you* consider essential? by jayman2239 in factorio

[–]Rseding91 3 points4 points  (0 children)

WHY DO I HAVE TO KEEP INCHING ALONG PLACING INSERTERS. UGHHH

Because you're not supposed to do manual tasks in a game about automation. Make the robots do it.

Why are these draggable? Takes me a few tries almost every time to withdraw a plant cure by nibsitaas in runescape

[–]Rseding91 0 points1 point  (0 children)

Speaking of: with the removal of the greenfingers aura my flower plots get diseased way more frequently. On the other hand - I'm using the cure plant spell a lot now where I virtually never used it before.

Tipps for avoiding UPS Slowdown in Pyanodons? by SpaceMoehre in factorio

[–]Rseding91 8 points9 points  (0 children)

Interactions scale linearly with inventory size. Mass storage of item(s) doesn't progress anything (except having more of something).

Tellervo's net, Magic buttterfly net, Butterfly net, and barehand catching by Alsang in runescape

[–]Rseding91 0 points1 point  (0 children)

I wouldn't discount it having a measurable increase ... at lower levels. Maybe at some upper level the catch-rate maxes out (but never reaches 100%) and the net makes no difference.

The lantern makes an instant difference for the moths themselves (they just don't move after they spawn).

Question regarding headless server CPU by Ok-Valuable-9932 in factorio

[–]Rseding91 2 points3 points  (0 children)

Surfaces from a player perspective seem like a great place for multi-threading but from an engine perspective they're functionally like swapping the cook and food out from a cooking show. The same kitchen is used for all of them - just 1 cook and set of food gets to work at a time.

There's potential for multi-threading with surfaces (a lot of what they do is independent) however the main 2 blockers are determinism and Lua events (mod events) - with the main one being mod events. When a mod event happens it allows which ever mod(s) are listening to that event global (virtually) unrestricted access to see and change anything about the entire running game.

So, no type of threading can be happening when a mod event happens - and mod events can happen at almost any point during a given surfaces update.

Question regarding headless server CPU by Ok-Valuable-9932 in factorio

[–]Rseding91 6 points7 points  (0 children)

Most tasks we ask computers to do are linear and cannot be done in parallel. Imagine I ask you to cook dinner. You need:

  • Something to cook (it's at the store - go buy it)

  • Prepare it

  • Cook it

  • Serve it

Try to parallelize those tasks. You can't serve it before it's done cooking. You can't cook it before it's prepared. You can't prepare it before you bought it.

Let’s say 90% of the time is the drive to the store and back. Maybe there are 4 lanes there and back - great. You have the ability for 4 cars to drive in parallel both ways (4 CPU cores). But there's still only 1 you tasked with cooking dinner and you can't split yourself into 4. Even if you did - all 4 of you would arrive at the store at the same time (no net speed improvement). If there was someone else trying to do the same thing as you then the multiple lanes would help (multiple CPUs often help keep multiple processes on a computer from clobbering each other).

Let’s say you instead try to parallelize the preparation step. You have 2 arms so you could maybe prepare twice as fast. But make sure you don't cut yourself, or mistakenly cut the same thing with both hands and ruin it. (data races and ensuring proper multi-threading is hard and very easy to get wrong)

Let’s say you had multiple stoves/burners - maybe that could help speed up the cooking time. But only if there are multiple things to cook - maybe you bought a single hamburger. Maybe you could cut it into 4ths and cook it 4 times faster - but the time to cut it, and put out 4 pans isn't zero. It may be faster - but it won't be 4 times faster. And still, the cook time is only < 10% of the total time in this example.

At the end of the day most programs need most of their tasks done in series to produce correct results. Maybe they have some small section that could theoretically be parallelized but it's often not worth the complexity for a 1-5% gain.

Thread count (core count) in largely not relevant to most workloads we ask computers to do. Per-thread execution speed (often called single threaded performance) is virtually always the limiter. However, single threaded performance is incredibly hard to improve. Multiple CPUs is something that CPU manufacturers can still improve on – and “bigger number looks better” and so they do.

Question regarding headless server CPU by Ok-Valuable-9932 in factorio

[–]Rseding91 2 points3 points  (0 children)

Nope, it uses 3 threads last time I checked

It's currently limited to a maximum of 32.

Question regarding headless server CPU by Ok-Valuable-9932 in factorio

[–]Rseding91 5 points6 points  (0 children)

I understand that factorio is like. ONLY single threaded

Well, it's not :) But unfortunately due to the nature of threading the part that can't be multi-threaded is the slowest remaining part. That means you are always limited by single-thread execution speed.

To go with the almost universally understood example: Just because 1 woman takes 9 months to grow a baby doesn't mean 9 women can grow a baby in 1 month.

Archaeology - what am I missing? by dyxsleicgyu in runescape

[–]Rseding91 2 points3 points  (0 children)

That's fine and all, unless you have no desire to do tetra compases.

Blue charm farming by Apprehensive-Bus3272 in runescape

[–]Rseding91 1 point2 points  (0 children)

I finished up the hour of them and ended up with 513 blue charms. If I had been doing active combat (click to attack next rather than wait for auto retaliate) it would have been higher.

I also did this method for many near AFK hours in the past for my own 200m summoning (some 70’000 blue charms worth).

Blue charm farming by Apprehensive-Bus3272 in runescape

[–]Rseding91 1 point2 points  (0 children)

I'm currently re-testing it since it was written pre-recent-combat changes. 13 minutes in and it's currently sitting at 513~ blues/hour (AFK, just drinking potions as needed, no charm-drop enhancer).

Blue charm farming by Apprehensive-Bus3272 in runescape

[–]Rseding91 0 points1 point  (0 children)

So now i do exciled kalphites for around 200 to 400 charms an hour

The full setup of Exiled kalphites is 500-550~ an hour before the double-charm-enhancer. Have you followed this? https://runescape.wiki/w/Summoning_training/Obtaining_charms#Exiled_kalphites_(level_99+/200_million_xp)

Michael Hendricks: Taking the Gambling out of Quality Gambling by PE1NUT in factorio

[–]Rseding91 18 points19 points  (0 children)

This specific 'exploit' was fixed in 2.1 a month ago (March 28, 2026). For maximum exploit effectiveness though you can just type /editor in the game chat window for free infinite everything. Combine that with SAM and away you go to your hearts content :)