home.social

#clanguage — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #clanguage, aggregated by home.social.

fetched live
  1. most cursed Mac thing you've heard all day, a midi file dispatched to the four-tone synth of the Macintosh Sound Driver

    #macintosh #programming #clanguage

  2. most cursed Mac thing you've heard all day, a midi file dispatched to the four-tone synth of the Macintosh Sound Driver

    #macintosh #programming #clanguage

  3. To make C code work as written on ARM64, I had to disable inlining for two key functions in gcc.
    #gcc #wg14 #clanguage #relaxedmemory #arm64

  4. To make C code work as written on ARM64, I had to disable inlining for two key functions in gcc.
    #gcc #wg14 #clanguage #relaxedmemory #arm64

  5. 🤔 Oh, another blog post claiming to solve all math problems with ✨tensors✨! 😴 Neural networks? Just some floating-point soup! 🍜 Let's reinvent the wheel by building a tensor library... from scratch... in C. Because that's exactly what the world needs. 🚀🙄
    zserge.com/posts/tensor/ #mathproblems #tensors #neuralnetworks #programming #Clanguage #innovation #HackerNews #ngated

  6. 🤔 Oh, another blog post claiming to solve all math problems with ✨tensors✨! 😴 Neural networks? Just some floating-point soup! 🍜 Let's reinvent the wheel by building a tensor library... from scratch... in C. Because that's exactly what the world needs. 🚀🙄
    zserge.com/posts/tensor/ #mathproblems #tensors #neuralnetworks #programming #Clanguage #innovation #HackerNews #ngated

  7. From the Comp-Cert release notes - sanity in C programming. Someone call ISO and complain.

    "Constant propagation: optimize "known integer or undefined" results. For example, &x == &x, which is either 1 or undefined, is now replaced by 1"

    #wg14 #Clanguage #undefinedbehavior #software

  8. From the Comp-Cert release notes - sanity in C programming. Someone call ISO and complain.

    "Constant propagation: optimize "known integer or undefined" results. For example, &x == &x, which is either 1 or undefined, is now replaced by 1"

    #wg14 #Clanguage #undefinedbehavior #software

  9. Finalmente pubblicato questo compilatore C scritto in JavaScript da Claude (interpreta il linguaggio e crea eseguibili per Windows). Potete trovarlo su GitHub in versione open source GPLv3. Si cercano beta testers per scovare gli errori fatti da Claude! #claudeai #clanguage #compilerdesign youtube.com/watch?v=-qe50sqx4jY

  10. Continuano gli esperimenti con Claude AI. Creare un interprete di linguaggio C e anche un compilatore/linker per Windows sono alla portata di Claude Sonnet 4.6 in versione gratuita? Scopriamolo assieme in questo video! #clanguage #artificialintelligence #claudeai #compiler #interpreter #x86 youtube.com/watch?v=zHHHjynC8Zg

  11. Continuano gli esperimenti con Claude AI. Creare un interprete di linguaggio C e anche un compilatore/linker per Windows sono alla portata di Claude Sonnet 4.6 in versione gratuita? Scopriamolo assieme in questo video! #clanguage #artificialintelligence #claudeai #compiler #interpreter #x86 youtube.com/watch?v=zHHHjynC8Zg

  12. Okay, more C (or just generally curly-braces-style-languages) discourse: I am a strong believer in aggressively using braces everywhere.

    Very occasionally I will omit them on single-line if/for/while statements, but even that makes me feel uncomfortable.

    I've seen far too many bugs resulting from not being aggressive about block delimiter usage over the years.

    Bonus: Diffs adding/removing single lines of code are cleaner.

    Toy systems language choice: braces are *required*.

    #CLanguage