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/)C
Posts
0
Comments
38
Joined
12 mo. ago

  • Yes, but there's an official microsoft app named Terminal, and it's honestly a very good application. You can do CMD and Powershell, as well as WSL, all in the same native windows 11 app.

  • I'd say Meta hiring someone to work on WhatsApp. Man, is that piece of software crap... Every update, a new UI bug/glitch appears

  • Tenerife, Paris, Milan, among others. I've only ever traveled within Europe.

  • Idk, but I've never paid more than 30€/night on AirBnB

  • I just recently bought a Samsung 16GB 5600MT/s stick for 45€ and received a 32GB stick instead! Sorry, but I wanted to brag x)

  • Hi, excuse me, but it looks like you dropped this: /s

  • But mypy will not accept it :)

  • That is not the same as building an OS in Python hahaha

  • You just cannot do it, I'm afraid. Python is an interpreted language, and requires de CPython library to be translated into machine code so that it can then be run, but that requires an underlying OS that makes the calls. The closest thing would be micropython, which can be run inside the Linux kernel, but that's about it. The only thing I can think of is using a custom compiler that would generate either C/C++ or assembly code from a Python script, and then compile it using a standard C/C++/assembly compiler.

  • You can in fact statically type in Python. For example, defining variables:

     python
        
    six: int = 6
    hello_world: str = "Hello World!"
    
    
      

    Or defining functions:

     python
        
    def foo(x: int) -> int:
        return x**2
    
    
      

    If you only want to use static Python, you can use the mypy static checker:

     sh
        
    # Install mypy if you don’t have it
    pip install mypy
    
    # Run the checker on the file (e.g., example.py)
    mypy example.py
    
      
  • Why would you hate on it? It has its usecases. You won't build an OS in Python, but I'd much rather do data processing in Python than in C

  • It's actually pretty unbelievable. I've met people who look aloke before, but this is pretty astonishing. I'm not familiar with either of them, but IIRC one of them is a singer IRL today and the other was an actress that acted like she was a singer, so I guess coincidences do happen...

  • Or use rclone/cryptomator and encrypt ur files before uploading them ;) (S3Drive is a nice app for that and is very user friendly, although not foss (uses rclone))

  • That's really a judgement call and my recommendation is that you decide what is most important to you:

    • Morality of the company
    • Repairability
    • Security
    • Hardware I am not putting privacy here since you can achieve it with both brands (fairphones are compatible with e/os and other LineageOS derivatives like iodéOS, which are privacy focused ROMs).

    If your main concern is either having the best hardware or the best security, go with pixel. If it's repairability or having an ethically produced phone, go with fairphone. I am a user of GrapheneOS on a pixel myself, but am thinking of going for a fairphone whenever this pixel dies. I didn't particularly like the fairphone 5 due to its size and design, but I really like the design of the FP6, so maybe I'll buy the FP7 when it comes out ;)

  • Or a "fantasma/casper"

  • But there are workarounds like the one Infomaniak uses (I believe Proton does it too). When sending an encrypted email to a non encrypted user, a link is sent instead of the contents of the email instead. In any case, encryption at rest with user provided keys and things like that are always an option.

  • Emails could be end to end encrypted, so the mail server wouldnt be able to see the emails. Basicslly PGP but out-of-the-box