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/)ZA
Posts
1
Comments
485
Joined
2 yr. ago

  • Modern C compilers have a lot of features you can use to check for example for memory errors. Rusts borrow-checker is much stricter as it's designed to be part of the language, but for low-level code like the Linux kernel you'll end up having to use Rust's unsafe feature on a lot of code to do things from talking to actual hardware to just implementing certain data structures and then Rust is about as good as C.

  • AFAIK he's not talking to RN either, and if you look at actual parties and not groups then RN is the strongest party. It looks more like he's trying to break the NFP to get the support of some of the parties like social democrats or greens, because in such a coalition his party would be the strongest. In a coalition with RN his party wouldn't be the strongest and would have a hard time claiming the prime minister position.

  • Did everyone become stupid in the last 10 or so years? We used to write huge apps in Python without any type checkers or static analysis tools and never had any problems we wouldn't have had in statically typed languages.

  • As the other comments have already said it's not Python. Not sure what you mean with text formatting, do you mean that it's multiple strings that are concatenated using +? You don't need the + in Python, you can do

     python
        
    some_function(
        "part one of really long string"
        " part two of really long string"
    )
    
    
      

    Which is identical to

     python
        
    some_function("part one of really long string part two of really long string")