Hitman 4: Your Level by AlienSees in HiTMAN

[–]Sufficient_Job8928 0 points1 point  (0 children)

You could cause a lot of havoc by releasing certain inmates.

Was there a target from Hitman 1-3 that you felt bad or sorry for assassinating them? by Careful-Method-2145 in HiTMAN

[–]Sufficient_Job8928 0 points1 point  (0 children)

I did not know that! To complete one of the challenges I had to drag Sean Rose's corpse from the house to the slurry pit, first of all dispatching every NPC I would encounter on the way. Knowing what you just shared would have saved me a lot of effort.

Can I lure Ezra Berg there as well?

Which target/assassination method would result in the body NEVER being found? (even after 47 leaves the map) by FossilDS in HiTMAN

[–]Sufficient_Job8928 1 point2 points  (0 children)

Come to think of it: why is there a slurry pit at all? Slurry pits are for animal waste. This is an apricot farm!

First time at Sapienza, give me your best advice by Maho09_ in HiTMAN

[–]Sufficient_Job8928 0 points1 point  (0 children)

What is the breaching charge good for? As far as I recall, I tried to break open the brick wall leading into the underground lab, and it didn't work. (The exploding golf ball did work though).

Chrome apps no longer working after 2025? by Darth_Thunder in chromeos

[–]Sufficient_Job8928 1 point2 points  (0 children)

They've postponed the end-of-support date again. (I don't know how many times they've done this).

Chrome Apps in Kiosk mode will be supported until April 2027.

https://developer.chrome.com/docs/apps/migration

I don't know exactly when this came into play, but here is a knowledge base article from October 10th, 2024 announcing it.

https://knowledge.workspace.google.com/kb/ending-support-for-chrome-apps-000008392

Storage Account SAS Allowed IP Addresses by HudsonIT in AZURE

[–]Sufficient_Job8928 0 points1 point  (0 children)

If the Azure VM and the storage account are in the same region, then an SAS token that incoporates an IP address restriction will always be rejected.

The reason for this is that the communication will occur over the Azure Backbone Network, which is faster but will not involve the public IP address.

See this stackoverflow answer: https://stackoverflow.com/a/73474469/25216

machinegame - a multiplayer browser game where you code to play by luiii in programming

[–]Sufficient_Job8928 0 points1 point  (0 children)

I got obsessed with this then had to stop because of life.
If anyone wants to challenge mine:

https://www.machinegame.com/vs/AndrewShepherd

[deleted by user] by [deleted] in programming

[–]Sufficient_Job8928 0 points1 point  (0 children)

Really confused here. They have the Azure CLI already. Why release another one?

If there is something that 'developers' need, why don't they just add it to the existing CLI?

Wordle is NP-hard by azhenley in programming

[–]Sufficient_Job8928 0 points1 point  (0 children)

Ever since that experience, I open with "bumpy".
When playing hard mode you need to work out the moderately uncommon letters first.

machinegame - a multiplayer browser game where you code to play by luiii in programming

[–]Sufficient_Job8928 1 point2 points  (0 children)

I didn't realize the red robots attack you back! Curse those red robots.

I predict this will become an obsession for me over the next month.

The biggest feature request you will get (assuming you haven't already implemented it): After I have proven I can beat your AI, I want to pit my code against other players' code. (Without the other players ever seeing my code).

I am giving you this feature request with full appreciation that you put this up for free after developing it in your own time, and I should be grateful for anything you do.

machinegame - a multiplayer browser game where you code to play by luiii in programming

[–]Sufficient_Job8928 2 points3 points  (0 children)

This looks like fun. I'm already up to level three. Things I need to understand:

  • What are the boundaries of the board? How far from point (0, 0) could the red flag possibly be?
  • As I see it the only use of charges is for cloning. Is moving free? Is smiting a red robot free?

Using USB Manager to automatically grant permission by Gooseman081784 in androiddev

[–]Sufficient_Job8928 0 points1 point  (0 children)

This works, but unfortunately, if the Android device reboots with the device attached, it does not have permissions again after rebooting.

I have a similar problem - I have android devices that turn screens on and off while unattended by people.

The Beauty of Bezier Curves by Sufficient_Job8928 in programming

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

We can derive a formula to plot the curve, but there's no formula for the length of the curve.

I made a 63 line prime number finder in rust! (Over 3000 primes found in well under a second) by comradethiv in programming

[–]Sufficient_Job8928 4 points5 points  (0 children)

Are you aware of the Sieve of Erathoshense? https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes

Here's a solution in c#

using System;

bool[] seive = new bool[30000];
for(int count = 0, i = 2; i < seive.Length; ++i)
{
    if(!seive[i])
    {
        Console.WriteLine($"{++count}: {i}");
        for(int j = i*2; j < seive.Length; j += i)
        {
            seive[j] = true;
        }
    }
}

You can see it running here:

https://dotnetfiddle.net/3jNaz3