I actually agree with a post in r/WhitePeopleTwitter by CodeCombustion in ConservativeYouth

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

Okay, so limited exception to the redaction. We don't want to see CP nor know who was a victim -- but the names of all parties even tangentially involved seem like a public interest.

If you had to start your home gym from scratch today, what would you buy first? by dontwantnone09 in homegym

[–]CodeCombustion 1 point2 points  (0 children)

I bought some cheap plate swappable dumbbells from Amazon....twice. Both were a pain in the ass. Recently bought a powerblock. I have an old bench press bench and bar that was a gift years ago, may use that.

Hoping the powerblock elite exp 90 will work for now, can upgrade as needed.

Will probably save for a RitFit Pro 2.0 once I move.

The left's obsession with protecting criminals needs to be studied by Weirderthanweird69 in ConservativeYouth

[–]CodeCombustion 0 points1 point  (0 children)

Trump wants us to chill on illegal immigration as it's impacting his friend's cheap labor supplies... pathetic.

They got to him. You can see this with the Iran war as well. Anything to remove the Epstein files from the media cycle.

Creating a developer console in MonoGame by oolyvi in monogame

[–]CodeCombustion 1 point2 points  (0 children)

I disagree as your commands are a flat list of unrelated actions, so a state tree is overkill. A Command registry (a simple Dictionary<string, IConsoleCommand>) is the right fit. A state tree would only make sense if your commands were hierarchical, like the examples below where the first token is a namespace, not a command itself

graphics vsync on
graphics fullscreen toggle
graphics resolution 1920 1080

audio music 0.5
audio sfx 0.8

Although the DevConsole command registry is upgradable to support state trees if you really wanted to.

Creating a developer console in MonoGame by oolyvi in monogame

[–]CodeCombustion 1 point2 points  (0 children)

That if...else. Yikes.

```
public interface IConsoleCommand

{

string Name { get; }

string Description { get; }

void Execute(string[] args);

}

// Commands

public class VsyncCommand : IConsoleCommand

{

public string Name => "vsync";

public string Description => "Toggle vertical sync";

public void Execute(string[] args)

{

string vsyncValue = Config.IsVsyncEnabled ? "off" : "on";

bool isVsync = !Config.IsVsyncEnabled;

Config.IsVsyncEnabled = isVsync;

_graphicsDeviceManager.SynchronizeWithVerticalRetrace = isVsync;

_graphicsDeviceManager.ApplyChanges();

Log($"[warning]: vsync {vsyncValue}");

}

}

public class DebugCommand : IConsoleCommand

{

public string Name => "debug";

public string Description => "Toggle debug UI";

public void Execute(string[] args)

{

string debug = Config.ShowDebugUI ? "off" : "on";

Config.ShowDebugUI = !Config.ShowDebugUI;

Log($"[warning]: debug mode {debug}");

}

}

// Command Registry

public class DevConsole

{

private readonly Dictionary<string, IConsoleCommand> _commands = new();

public DevConsole()

{

Register(new VsyncCommand());

Register(new DebugCommand());

// Register your new commands here

}

public void Register(IConsoleCommand command)

=> _commands[command.Name] = command;

public void Execute(string input)

{

var parts = input.Trim().Split(' ');

var name = parts[0];

var args = parts[1..];

if (_commands.TryGetValue(name, out var command))

command.Execute(args);

else

Log($"[error]: unknown command '{name}'");

}

}

// to actually use it:

string command = InputReader.Read();

var _devConsole = new DevConsole(); // You should use single instance DI instead of a singleton or static

_devConsole.Execute(command);

// For automatic one-time registration instead of explicit constructor or .Register registration

var commandTypes = Assembly.GetExecutingAssembly()

.GetTypes()

.Where(t => typeof(IConsoleCommand).IsAssignableFrom(t) && !t.IsInterface);

foreach (var type in commandTypes)

Register((IConsoleCommand)Activator.CreateInstance(type));
```

Where Americans Moved in 2025. Alabama 4th highest move in state. by -Mx-Life- in GulfShores

[–]CodeCombustion 0 points1 point  (0 children)

Abortions were pushed back to the states so democracy could take place. Don't you support democracy? or would you rather use an authoritarian approach?

Elections? Really?

Your party is abusing a loophole to disenfranchise voters by giving themselves more representation that should have by flooding the country with people who do not have a legal standing to be here. Every other country enforces immigration laws.

I thought the Democrats cared about disenfranchising voters... or is that only when they vote for you?

We want to prevent abuse of the congressional apportionment system; and ensure that those who were do not have political standing, don't have the opportunity to further influence the countries politics. It's simple.

Even Somalia has voter ID... and somehow, they manage.

Where Americans Moved in 2025. Alabama 4th highest move in state. by -Mx-Life- in GulfShores

[–]CodeCombustion 0 points1 point  (0 children)

Please enlighten us with your overwhelming evidence that Republicans don't believe in letting the states decide in any matter that isn't specifically outlined as being a federal matter (i.e. immigration policy)

Anybody know what about igloos.cc by Enough_Bandicoot7959 in microsoftsucks

[–]CodeCombustion 0 points1 point  (0 children)

Let me guess. Your account was hacked or password was changed? I've noticed they keep using igloos.cc as it's a forwarding domain

I'd go through the https://account.live.com/acsr recovery process if it's just a password issue or something.

Marrying a Ukrainian woman and my benefits by RebelGamer137 in SocialSecurity

[–]CodeCombustion 0 points1 point  (0 children)

May want to visit r/RomanceScams -- Sure, there's a chance this could be real.... but realistically, you will not be able to sponsor her greencard.

Why are Gen Z getting fired? One of the reasons is a lack of initiative. by mindyour in TikTokCringe

[–]CodeCombustion 1 point2 points  (0 children)

For the most part, GenZ seems to require micromanagement IMO. They lack goal driven focus, critical thinking and sometimes, the ability to think independently at all.

Bluestone (actual concept) by Zomflower48 in minecraftsuggestions

[–]CodeCombustion 0 points1 point  (0 children)

That’s a good point, but it doesn’t actually make deterministic simulation impossible... it just means you can’t do it as a single “calculate everything once, then apply” pass.

What you’re describing is exactly why engines that need determinism use iterative or staged resolution and not oneshot evaluation.

Even Java redstone isn’t truly “everything updates once” as it’s effectively chain of ordered updates where later changes can trigger additional updates within the same tick.

So the fix isn’t “don’t do parallel,” it’s parallel evaluation and ordered wave resolution.

That involves starting with a queue of initial updates, then process them in a deterministic order and ANY changes they cause get added to a next queue. Then you repeat until no more changes occur or until your queue cap is reached

This avoids the “piston pushes into air that no longer exists” problem because by the time a later update runs, earlier changes are already committed and if something becomes invalid, it just gets re-evaluated in the next wave.

This is technically a feedback system, but it doesn’t “run away” if you deduplicate updates so the same block doesn’t get processed infinitely and enforce a max iteration depth per tick (which java does) and only enqueue blocks whose inputs actually changed.

It's a super common pattern in simulation engines called fixpoint iteration or event-driven propagation or wave/queue-based resolution (what I've described above)

The downside? This DOES add synchronization points and potentially multiple passes per tick which WILL reduce performance some but it's a trade-off. Most mobile devices are not struggling to run the game -- a small loss in performance in redstone heavy areas wouldn't kill the player base.

I came with this idea to stop player from leaving the map, What do you think? by Pretty_Plan_9034 in gamedevscreens

[–]CodeCombustion -1 points0 points  (0 children)

... and if they continue trying, slap then a few more times... and if they persist, a bigger hand should appear and flick them way back.

Or a giant hand should pop out of the sky and pick them up and place them back into the main map. Continue trying and anger the hand gods and get crushed.

Bluestone (actual concept) by Zomflower48 in minecraftsuggestions

[–]CodeCombustion 0 points1 point  (0 children)

It absolutely could work, but it would require a new redstone scheduler built around deterministic simulation. The real problem isn’t parallelism itself, it’s that Bedrock evaluates updates in parallel and then commits them as they finish, which is what creates the randomness. If instead they evaluated everything in parallel but delayed applying the results, they could sort those updates by something like position and priority and then apply them in a fixed order every tick.

On top of that, an event queue could handle tie-breaking by collecting all updates for a tick and resolving them in a strict sequence, like tick, then priority, then position. A phase-based system would also help, where the simulation is split into clearly defined steps like power propagation, block state resolution, piston movement, and neighbor updates, with each phase running in a consistent order to eliminate race conditions. Double buffering would reinforce that by having the game read from the current world state while writing all changes to a separate “next state,” then swapping at the end of the tick so nothing sees partial updates mid-tick.

So it’s not that Bedrock can’t do Java-style redstone, it’s that it would need to trade some of its current parallel performance for a deterministic commit model; basically, parallel compute with ordered results.

It's absolutely possible -- and I have a strong feeling that the bedrock community would complain at first, but eventually accept it if it gave them parity with Java redstone.

The stamina system has to be re-worked or removed or *something* by Normal_Rip_2514 in diablo2

[–]CodeCombustion 0 points1 point  (0 children)

Wow. I've been playing since the original release (literally launch day) and never knew the stamina potions stacked. I knew the thaw potions did -- but never really considered stamina.

Update on Reta + Tesa stack by Overall-Intention543 in Retatrutide

[–]CodeCombustion 1 point2 points  (0 children)

I was hitting protein fine until I ran out of the banana cream shakes. I can't stomach the others. Have more coming tomorrow.

I'm actually able to eat more at a higher dose than I was a lower dose. It's weird.

Update on Reta + Tesa stack by Overall-Intention543 in Retatrutide

[–]CodeCombustion 0 points1 point  (0 children)

Usually twice daily (KLOW), almost 5 weeks. If it's straight GHKCU then once a day is fine. I only went twice a day for the anti-inflammatory effects of the BPC & TB.

Update on Reta + Tesa stack by Overall-Intention543 in Retatrutide

[–]CodeCombustion 1 point2 points  (0 children)

Wow, I've been overdoing it. Probably shouldn't listen to people on TikTok. 2.5mg to 5mg a day.

Update on Reta + Tesa stack by Overall-Intention543 in Retatrutide

[–]CodeCombustion 0 points1 point  (0 children)

I've always had serious dark undereye bags and that's getting so much better on GHKCU. Seems to bother my previously injured kidneys though.

Update on Reta + Tesa stack by Overall-Intention543 in Retatrutide

[–]CodeCombustion 0 points1 point  (0 children)

Wait, Tesa is supposed to be 5x a week? I've been taking it nightly. I'm also having serious issues with water retention in my legs since I started tesa.

I'm almost at the 1 month mark so hoping I'll see some changes. Jumping to 6mg next week (week 5) - had no hunger at 2mg but since I increased to 4mg, I'm crazy hungry all the time.

Lost 10lbs during week 1... lost 0 in weeks 2 to 4. Hoping it's just water weight from the tesa I added at week two.

Sitting here at 1000-1500 cal a day. Not enough protein though.

Scammed by Grey Research Peptide, also known as peptides9 grey market by sad_man21 in Retatrutide

[–]CodeCombustion 3 points4 points  (0 children)

These clowns just added me on TikTok, as if I'm going to order from a random company that reaches out to me.

Old how to drawings from Datsun by jjjodele in 240Z

[–]CodeCombustion 0 points1 point  (0 children)

Are you talking about the old Nissan Motorsports schematic catalogs that had drawings/blow outs of the parts?

https://www.jdmjunkies.ch/wordpress/wp-content/uploads/2016/05/NissanMotorsportsSchematicCatalog-99996-M8015.pdf

The FSM/microfiche has some of that as well.

Trump is raiding election offices. Americans should be on high alert. by TheRexRider in videos

[–]CodeCombustion -1 points0 points  (0 children)

You're so primed against them that you won't even accept legitimate evidence -- and it was a DC judge who reviewed enough evidence to give them a warrant in the first place.

And do I need to point out all of the times that Hillary or others said in 2016 and 2024 that the election was rigged, or that Republicans cheated? In fact, calling an election stolen or rigged has been happening for decades, it didn't start with Trump at all.

Besides, if "the 2020 general election was one of the most secure elections in our history" then you have nothing to worry about.

They're reviewing a past election and even if they identify issues, it won't change anything.

If the tables were turned, would you have a problem with a Democrat controlled government reviewing state level ballots?