pufferfisherpowder

joined 1 year ago
[–] [email protected] 5 points 1 month ago

YOLO πŸš€πŸ™ˆ

[–] [email protected] 6 points 1 month ago* (last edited 1 month ago)

You must be CEO of your own ignorance

[–] [email protected] 2 points 1 month ago

Einfach dies das, einfach verschiedene Dinge?

[–] [email protected] 8 points 1 month ago (4 children)

First of I run linux on my personal machine.
Second, I shut down my work machine at the end of the day and if there is an update - let it update. The result? Not a single problem with windows updates in years! Strange, I know.

Sidenote: I always thought people were partially making fun of windows updates because you have to reboot all the time. I have to log out to switch from integrated to dedicated graphics in Linux and pretty much 90% of all updates require a reboot. And to conserve battery I have to shut down the laptop anyway, since hibernation is but a dream. But whatever, it's not a competition.

[–] [email protected] 3 points 1 month ago

You don't invest in independent contractors, that's the disruptive part taps forehead

[–] [email protected] 10 points 1 month ago (2 children)

Geminis answer: LLMs cannot perform the computations needed to find a SHA-512 hash with specific characteristics. This requires specialized hardware and software designed for brute-force calculations.

ChatGPT: Yes, getting an AI to solve a problem like finding a SHA-512 hash with 12 leading zeros would indeed take a significant amount of computational time and resources. This is because it would require brute-forcing through a vast number of inputs to find one that produces the desired hash, which is a computationally intensive task.

Finding a SHA-512 hash with 12 leading zeros involves iterating through possible inputs and hashing each one until you find a hash that starts with 12 zeros. This is a classic example of a proof-of-work problem, similar to what is used in cryptocurrency mining.

Here's a Python script that demonstrates how one might go about attempting this task:

import hashlib

def find_hash_with_leading_zeros(target_zeros):
    target = '0' * target_zeros
    nonce = 0
    
    while True:
        input_str = f'{nonce}'
        hash_result = hashlib.sha512(input_str.encode()).hexdigest()
        
        if hash_result.startswith(target):
            return nonce, hash_result
        
        nonce += 1

# Example: Find a SHA-512 hash with 12 leading zeros
target_zeros = 12
nonce, hash_result = find_hash_with_leading_zeros(target_zeros)

print(f'Nonce: {nonce}')
print(f'Hash: {hash_result}')

Running this script can take a very long time, especially as the number of leading zeros increases. The number of possible combinations grows exponentially, making it a time-consuming process.

To actually implement this in a controlled and efficient manner, specialized hardware (like ASIC miners used in cryptocurrency mining) would be required. This is beyond the capabilities of typical general-purpose CPUs and would indeed tie up computational resources for a significant amount of time.

[–] [email protected] 5 points 1 month ago

I can think of ways you could please me πŸš€πŸ€€

[–] [email protected] 9 points 1 month ago (2 children)

What an effortless Troll

[–] [email protected] 1 points 1 month ago (1 children)

The client works fine, it's just the virtual file system option that turns off after a reboot.

[–] [email protected] 3 points 1 month ago (4 children)

Yes, but I can't get the virtual file system/on-demand sync to work properly. It turn off every time I reboot. I gave up after a while since it's experimental for now anyway.

[–] [email protected] 2 points 1 month ago

Thanks! I looked at it but I would like to stop giving money to MS. So my plan is to ultimately move away from OneDrive.

[–] [email protected] 2 points 1 month ago

Thank you! I thought was going nuts. It's been such a long time since I had think about whether something is synced or a way to set it up. With OneDrive I could just grab the files I needed from the cloud and push them off the drive if I needed space. It really took away any hassle about sync.

It really feels like moving to Linux is a step back 10 years when it comes to cloud storage.
I also tried nextcloud but the smart / on-demand/ virtual file system is experimental in the Linux client and doesn't work as seemlesly as OneDrive. Besides being turned off every time I restart.

view more: β€Ή prev next β€Ί