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/)WE
Posts
5
Comments
537
Joined
1 yr. ago

  • You seem to be implying an argument based on Modus tollens:

    1. If AI is the chief US innovation, then the US is massively fucked.
    2. The US is not massively fucked.
    3. Ergo, AI is not the chief US innovation.

    Well I disagree with the premise 2:

    The US is massively fucked.

    With that, no conclusion can be gained from premise 1.

  • Yea expats are foreign workers that intend to return home after some time. While immigrants are looking to stay.

    I still maintain that there is some ambiguity with "US expat" but I ain't no native speaker. So what do I know.

  • Unpopular opinion but proton works better than native games in many cases. Tbf I don't know about these titles in particular.

    I would love it if devs would target proton / wine as a platform. Using familiar (to them probably) interfaces while optimizing for the use with proton, e.g. using Vulkan instead of DirectX.

    I think that is actually happening with devs targeting the steam deck

  • I love rugged electronics. Seeing something that I instinctively think of as fragile being made tough is poetic to me.

    I have a friend in Finland that once drunkenly drove a nail into a log with a rugged phone. It was amazing

  • I don't understand, will you be an American that temporarily lives and works in another country?

    Or will you live and work in America temporarily?

    In the latter case: why choose the us?

    In the former case: Why only temporarily leave the US?

  • You probably have a skewed impression. This is common in some places like Germany, but it's far from the norm. (Even in Germany it's mostly telecom that does it for some reason.)

    Many ISPs only change the allocated IP only in cases like lost connections and some don't even do that giving out but not guaranteeing static IPs.

  • No, no, no. It's the end of times. I can hear the trumpets of the apocalypse.

    Now Valve needs to release half life 3 and the world as we know it will truly perish.

    Jokes aside. I hope this means work on a UI overhaul can seriously begin.

  • C++

    Jump
  • The only way to make Rust segfault is by performing unsafe operations.

    Challange accepted. The following Rust code technically segfaults:

     
        
    fn stackover(a : i64) -> i64 {
        return stackover(a);
    }
    
    
    fn main() {
        println!("{}", stackover(100));
    }
    
      

    A stack overflow is technically a segmentation violation. At least on linux the program recives the SIGSEGV signal. This compiles and I am no rust dev but this does not use unsafe code, right?

    While the compiler shows a warning, the error message the program prints when run is not very helpfull IMHO:

     
        
    thread 'main' has overflowed its stack
    fatal runtime error: stack overflow
    [1]    45211 IOT instruction (core dumped)  ../target/debug/rust
    
      

    Edit: Even the compiler warning can be tricked by making it do recusion in pairs:

     
        
    fn stackover_a(a : i64) -> i64 {
        return stackover_b(a);
    }
    
    fn stackover_b(a : i64) -> i64 {
        return stackover_a(a);
    }
    
    fn main() {
        println!("{}", stackover_a(100));
    }
    
      
  • Ist dann die Idee des Werts eines Menschen für irgendwas nützlich? Deswegen habe ich ja zuerst nach deiner Auffassung gefragt was wert ist.

    Welche Entscheidung kann man treffen, welche folgerungen, wenn man sagt dieser Wert ist unendlich.

    Falls es keine gibt würde ich behaupten, dass das eine Scheinaussage ist, die keinen echten Inhalt besitzt.

  • Was ist für dich wert? Als jemand der sich etwas mit Mathematik auskennt, führen Unendlichkeit oft zu fiesen paradoxen.

    Ein Beispiel: Bob macht einen sehr schlechten Witz, das er einen Mord begeht wenn ihm sein Freund nicht all sein Geld gibt.

    Nun ist es unwahrscheinlich, dass er das wirklich gemeint hat. Das weiß der Freund auch aber da die Möglichkeit -- wenn auch noch so klein -- besteht, ist der Erwartungswert des ganzen unendlich negativ, wenn der Freund nicht wirklich all sein Geld abgibt. Denn etwas kleines mit unendlich multipliziert ist noch immer unendlich.

    Es folgert, das der Freund sein Geld abgeben sollte. Denn Geld hat ja laut dir einen endlichen wert.

    Ein weiteres Beispiel ist das bekannte Trolley Gedankenexperiment.

    Eine Straßenbahn ist außer Kontrolle geraten und droht, fünf Personen zu überrollen. Durch Umstellen einer Weiche kann die Straßenbahn auf ein anderes Gleis umgeleitet werden. Unglücklicherweise befindet sich dort eine weitere Person.

    (Geklaut von Wikipedia)

    Ist in beiden Situationen: umgeleitet und nicht umgeleitet wirklich der gleiche Wert verloren gegangen? Denn falls ein Mensch unendlich viel wert hat, dann wäre das der fall, denn unendlich addiert mit unendlich bleibt unendlich.