Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)ST
Posts
6
Comments
740
Joined
2 yr. ago

  • I have three setups DEV: an environment that is almost useless thanks to how many changes have to be made between production and the development environment.

    TEST: A More useful exact cloan of production that you still have to edit specific things but it is usually the same each time.

    PROD: this one just never works right.

  • At this point we should just swing to 10 gbps sfp+ ports, it's faster, it's lower latency, it's upgradable to 100gbps, it travels over fiber, but most importantly, it is a network protocol and we can use it for our Internet.

  • Diogenes gets to much credit for acting like a Hobo, he was just a cynical edge lord before it became popular. Who made a name for himself by acting up in public. He should be ashamed of himself for presenting such destructive and inaccurate ideas as a beneficial philosophy.

  • Um, we solved this problem years ago, we charge industry for dirty power produced and that incentivizes the industries to install power line filters and capacitors and if they don't we use the extra they are paying to clean it up. They might not be having to pay for dirty power since its commercial not industrial but all that requires is forcing them to be in industrial zones or changing the electrical price structure, this is a solved issue

  • Gotta say, Ai can be kinda neat:

     
        
    # Assuming these are inputs
    num = int(input("Enter a number: "))
    string_input = input("Enter a string: ")
    
    def process_data(data_list, number):
        result = ""
        if number == 2:
            for char in data_list:
                result += data_list[char]
            return result
        elif number == 1:
            result = data_list[number]
            for char in data_list:
                result += data_list[char]
            return result
    
    # Main function call
    output = process_data(list(string_input), num)
    print(output)
    
    # This seems like an external tool for copying to clipboard, e.g., pyperclip
    import pyperclip
    pyperclip.copy(output)