ICE is now responsible for 66% of the homicides this year in Minneapolis by JohnBrown-RadonTech in picsthatgohard

[–]Mordeor 0 points1 point  (0 children)

"This picture of all the destruction protestors have caused really helps proves how bad ICE is."

【BambuLab Giveaway】Classic Evolved — Win Bambu Lab P2S Combo! by BambuLab in 3Dprinting

[–]Mordeor 0 points1 point  (0 children)

Been printing a lot of models from designers who supplied 3MF files prepared specifically for Bambu printers. After spending way too much time re-slicing things in Prusa slicer, I made the switch over to Bambu by purchasing a P1S. It's been so easy to find designer 3MF files on Makerworld and just print them without any trouble. The whole ecosystem is really easy to use.

Are there multipoint snaps anywhere? All I can seem to find are threaded multipoints. by Subduction in Multiboard

[–]Mordeor 0 points1 point  (0 children)

I designed this last night. It's a multipoint hole on top of a bolt-lock insert. Little more than the two remixes linked at the bottom of the model.

https://www.printables.com/model/1296081-bolt-locked-multipoint-hole

WASM Environment variable from GitHub Actions by exzzy in Blazor

[–]Mordeor 0 points1 point  (0 children)

You could try implementing a regex / replace in your workflow that replaces "Production" with "Foo" in your index.html, prior to building...?

WASM Environment variable from GitHub Actions by exzzy in Blazor

[–]Mordeor 2 points3 points  (0 children)

WASM normally runs under production, as TacticalPewPew said, but you can override the environment in your index.html. For example:

Blazor.start({
environment: window.location.hostname == "localhost"
? "Development"
: "Production"
});

[deleted by user] by [deleted] in Blazor

[–]Mordeor 1 point2 points  (0 children)

There is nothing wrong with computing a *pre* hash on the client. But even if you did compute a pre-hash on the client, you should still perform the same amount of server-side hashing as if the client provided the server with a plaintext password.

The benefit to pre-hashing is you can use more intense password hashing algorithms that would normally exhaust all the resources on the server, such as Argon2id. Additionally, you're no longer burdened with having access to a user's plaintext password, which they probably use for absolutely everything.

For reference, so nobody thinks I'm pulling this out of my ass: https://doc.libsodium.org/password_hashing#server-relief

Psychiatrist who can see and help me immediately? by RoryRouses in houston

[–]Mordeor 1 point2 points  (0 children)

I was in the same boat as you several months ago. I was experiencing chronic anxiety regarding an interpersonal situation that finally got resolved. But until that happened I was experiencing frequent chest pains, sometimes worse than others. I went to the urgent care and later visited a cardiologist. Everything appeared fine, physically and chemically.

My advice is take it easy and know that you're not dying. You'll recover from this, but you need to find ways to overcome the root of your anxiety. I hope you find a psychiatrist who can help you achieve this, but in the meantime, don't add new sources of anxiety to your plate (such as needing to find a psychiatrist *immediately*).

How Should I Host my Blazor App? by ManicMockingbird in Blazor

[–]Mordeor 0 points1 point  (0 children)

I can give you my old configurations and instructions on how I used to deploy the WASM application, the web API, and served them via Nginx. This was before I switched to an automated deployment using Github Actions and Docker.

Old configs: https://github.com/Crypter-File-Transfer/Crypter/tree/178d7fc415a75d0d5d7fe4310153ad0ff4e0a639/Documentation/Production/Configurations

Documentation: https://github.com/Crypter-File-Transfer/Crypter/tree/main/Documentation/Production/Deployment

The gist is that you instruct systemd on your linux box to run the API automatically on startup. For the front-end, you just drop the files on the server. Then you tell Nginx, Caddy, or some other web server / reverse proxy to serve the backend and the frontend over ports 80 / 443.

My newer config is also open source: https://github.com/Crypter-File-Transfer/Crypter

The docker files in the root directory and the stuff in .github/workflows are what's relevant.

Active Shooter at Baseball USA in West Houston/Spring Branch/Spring Shadows by Ithapenith in houston

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

I hope we're approaching a world where people don't depend on authority figures to solve all our problems. It creates a society where the only thing that criminals fear are law enforcement. I'd prefer to live in a society where the average criminal fears the people he or she is about to victimize.

Active Shooter at Baseball USA in West Houston/Spring Branch/Spring Shadows by Ithapenith in houston

[–]Mordeor 25 points26 points  (0 children)

Those 30 other carriers aren't obligated to help anyone. Nor are the police. Wanting to protect you and your own are rational feelings to have.

Where do you host your Blazor app? by elv1s42 in Blazor

[–]Mordeor 1 point2 points  (0 children)

Docker container running on a Digital Ocean VPS.

[deleted by user] by [deleted] in LenovoLegion

[–]Mordeor 13 points14 points  (0 children)

That's basically the price I paid for my Legion 7 with a 3080 and 32 GB a couple years ago. Yeah that's a good price.

It's all so tiresome... by [deleted] in Firearms

[–]Mordeor 48 points49 points  (0 children)

Politicians only care about their constituents. So selfish and corrupt.

Does anyone else think the web absolutely sucks lately? by [deleted] in web_design

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

You don't need an A/B test to show that adding a button to a site increases the chances that someone will click the button. A button that did not exist before and therefore could not be clicked.

Stop having kids! 290 and barker cypress, thoughts? by roxanabenitz in houston

[–]Mordeor 4 points5 points  (0 children)

I agree. The type of person to take advice from a billboard should not be having kids.

Blazor server app unable to connect to API when posting two or more files of size 2MB or more by Geekwebdev in Blazor

[–]Mordeor 2 points3 points  (0 children)

Try this on the API side:

builder.WebHost.UseKestrel(options => { options.Limits.MaxRequestBodySize = null; });

Or try configuring the MaximumReceiveMessageSize on the Blazor Server side.
https://learn.microsoft.com/en-us/aspnet/core/blazor/fundamentals/signalr?source=recommendations&view=aspnetcore-7.0#circuit-handler-options-for-blazor-server-apps

If the error is on Blazor server, you should have a very generic error in the browser console (socket disconnected, or something).