home.social

#programminglanguage — Public Fediverse posts

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

  1. tested zig
    language is, as the version number suggests, unstable
    examples you find just don't work anymore
    wasn't fun to play with; revisiting in 2-5 years again

    github.com/bison--/learning-zig

    #zig #programming #programminglanguage

  2. tested zig
    language is, as the version number suggests, unstable
    examples you find just don't work anymore
    wasn't fun to play with; revisiting in 2-5 years again

    github.com/bison--/learning-zig

    #zig #programming #programminglanguage

  3. tested zig
    language is, as the version number suggests, unstable
    examples you find just don't work anymore
    wasn't fun to play with; revisiting in 2-5 years again

    github.com/bison--/learning-zig

    #zig #programming #programminglanguage

  4. tested zig
    language is, as the version number suggests, unstable
    examples you find just don't work anymore
    wasn't fun to play with; revisiting in 2-5 years again

    github.com/bison--/learning-zig

    #zig #programming #programminglanguage

  5. tested zig
    language is, as the version number suggests, unstable
    examples you find just don't work anymore
    wasn't fun to play with; revisiting in 2-5 years again

    github.com/bison--/learning-zig

    #zig #programming #programminglanguage

  6. 🤔 So you decided to create your own programming language because, why not? It's not like we have enough of those already, right? 😜 Fear not, amateur linguists: the author assures us it's "easier but harder," which is super helpful! 🙄 Oh, and don't hold your breath for this "not another CC/Rust killer" to ever actually exist. 😂
    lisyarus.github.io/blog/posts/ #programminglanguage #humor #technews #softwaredevelopment #codingjokes #HackerNews #ngated

  7. 🤔 So you decided to create your own programming language because, why not? It's not like we have enough of those already, right? 😜 Fear not, amateur linguists: the author assures us it's "easier but harder," which is super helpful! 🙄 Oh, and don't hold your breath for this "not another CC/Rust killer" to ever actually exist. 😂
    lisyarus.github.io/blog/posts/ #programminglanguage #humor #technews #softwaredevelopment #codingjokes #HackerNews #ngated

  8. 🤔 So you decided to create your own programming language because, why not? It's not like we have enough of those already, right? 😜 Fear not, amateur linguists: the author assures us it's "easier but harder," which is super helpful! 🙄 Oh, and don't hold your breath for this "not another CC/Rust killer" to ever actually exist. 😂
    lisyarus.github.io/blog/posts/ #programminglanguage #humor #technews #softwaredevelopment #codingjokes #HackerNews #ngated

  9. 🤔 So you decided to create your own programming language because, why not? It's not like we have enough of those already, right? 😜 Fear not, amateur linguists: the author assures us it's "easier but harder," which is super helpful! 🙄 Oh, and don't hold your breath for this "not another CC/Rust killer" to ever actually exist. 😂
    lisyarus.github.io/blog/posts/ #programminglanguage #humor #technews #softwaredevelopment #codingjokes #HackerNews #ngated

  10. 🤔 So you decided to create your own programming language because, why not? It's not like we have enough of those already, right? 😜 Fear not, amateur linguists: the author assures us it's "easier but harder," which is super helpful! 🙄 Oh, and don't hold your breath for this "not another CC/Rust killer" to ever actually exist. 😂
    lisyarus.github.io/blog/posts/ #programminglanguage #humor #technews #softwaredevelopment #codingjokes #HackerNews #ngated

  11. Bonjour 🙂

    Voici un petit comparatif de la programmation d'un bouton qui fait alterner un texte.

    ▶️ Événementiel (JavaScript/DOM, Gtk, Qt...)
    ------------
    label := 'state 1'
    on click:
    label := (if label = 'state2' then 'state1' else 'state2')

    ▶️ Mode immédiat (ImGui, G'MIC...)
    --------------
    setup:
    label := 'state1'
    draw:
    if click:
    label := (if label = 'state2' then 'state1' else 'state2')

    ▶️ FuncSug
    --------
    while true:
    label := 'state1'
    await click
    label := 'state2'
    await click

    #programmingLanguage #eventLoop #GUI

  12. I love the room the gives me to do advanced things.

    I think for general programming, something a lot safer is better, and I think the flexibility of C lends itself to bad patterns sometimes, but it has its place.

  13. I love the room the #C #programmingLanguage gives me to do advanced things.

    I think for general programming, something a lot safer is better, and I think the flexibility of C lends itself to bad patterns sometimes, but it has its place.

    #CLang #programming

  14. What about programming a memory game with 3 copies in place of 2? 🙂

    With FuncSug, you can program it in about 100 lines of clear synchronous code (50 if you delete the blank lines and comments)
    and you can change the number of copies easily: just change the line "var numberOfCopy := 3" 😉

    The memory game in the playground: cl4cnam.github.io/try_FuncSug/
    FuncSug: github.com/cl4cnam/funcSug

    #game #programmingLanguage #opensource

  15. I've added an example into the playground of FuncSug: "Canal Lock" from the educational software GCompris. What do you think about it?
    FuncSug is a language that allows to program completely synchronously without blocking.

    The example: cl4cnam.github.io/try_FuncSug/
    FuncSug: github.com/cl4cnam/funcSug
    GCompris: gcompris.net

    #education #game #programmingLanguage #GCompris #opensource

  16. J'ai ajouté un exemple dans le playground(*) de FuncSug : l'écluse du logiciel éducatif GCompris. Qu'en pensez-vous ?
    FuncSug est un langage qui permet de programmer de façon entièrement synchrone sans blocage.
    (*) Un playground permet de tester du code sans rien installer.

    ▶️ L'exemple : cl4cnam.github.io/try_FuncSug/
    ▶️ FuncSug : github.com/cl4cnam/funcSug
    ▶️ GCompris : gcompris.net

    #education #jeu #programmingLanguage #GCompris #opensource

  17. J'ai ajouté un exemple dans le playground(*) de FuncSug : l'écluse du logiciel éducatif GCompris. Qu'en pensez-vous ?
    FuncSug est un langage qui permet de programmer de façon entièrement synchrone sans blocage.
    (*) Un playground permet de tester du code sans rien installer.

    ▶️ L'exemple : cl4cnam.github.io/try_FuncSug/
    ▶️ FuncSug : github.com/cl4cnam/funcSug
    ▶️ GCompris : gcompris.net

    #education #jeu #programmingLanguage #GCompris #opensource

  18. J'ai ajouté un exemple dans le playground(*) de FuncSug : l'écluse du logiciel éducatif GCompris. Qu'en pensez-vous ?
    FuncSug est un langage qui permet de programmer de façon entièrement synchrone sans blocage.
    (*) Un playground permet de tester du code sans rien installer.

    ▶️ L'exemple : cl4cnam.github.io/try_FuncSug/
    ▶️ FuncSug : github.com/cl4cnam/funcSug
    ▶️ GCompris : gcompris.net

    #education #jeu #programmingLanguage #GCompris #opensource

  19. J'ai ajouté un exemple dans le playground(*) de FuncSug : l'écluse du logiciel éducatif GCompris. Qu'en pensez-vous ?
    FuncSug est un langage qui permet de programmer de façon entièrement synchrone sans blocage.
    (*) Un playground permet de tester du code sans rien installer.

    ▶️ L'exemple : cl4cnam.github.io/try_FuncSug/
    ▶️ FuncSug : github.com/cl4cnam/funcSug
    ▶️ GCompris : gcompris.net

    #education #jeu #programmingLanguage #GCompris #opensource

  20. J'ai ajouté un exemple dans le playground(*) de FuncSug : l'écluse du logiciel éducatif GCompris. Qu'en pensez-vous ?
    FuncSug est un langage qui permet de programmer de façon entièrement synchrone sans blocage.
    (*) Un playground permet de tester du code sans rien installer.

    ▶️ L'exemple : cl4cnam.github.io/try_FuncSug/
    ▶️ FuncSug : github.com/cl4cnam/funcSug
    ▶️ GCompris : gcompris.net

    #education #jeu #programmingLanguage #GCompris #opensource

  21. “The best people don’t quit after starting —
    no matter how many obstacles come."

    @python#begginer #coding #StartCoding #programminglanguage

  22. I was thinking to be fluent in another #ProgrammingLanguage/framework.
    The low hanging fruit would be #Java, but either way I'd have to learn #Springboot. Even thoudh I'd love to work with #vertx.
    But I was thinking about a low level language like #Cpp or #Rust.

    Any suggestions or tips? Is it even possible (or sustainable) this? How to keep up in the loop in both worlds?

    #Programming #Developer #SoftwareDeveloper #DeveloperExperience #Career #BolhaDev #Programmer

  23. I was thinking to be fluent in another #ProgrammingLanguage/framework.
    The low hanging fruit would be #Java, but either way I'd have to learn #Springboot. Even thoudh I'd love to work with #vertx.
    But I was thinking about a low level language like #Cpp or #Rust.

    Any suggestions or tips? Is it even possible (or sustainable) this? How to keep up in the loop in both worlds?

    #Programming #Developer #SoftwareDeveloper #DeveloperExperience #Career #BolhaDev #Programmer

  24. I was thinking to be fluent in another #ProgrammingLanguage/framework.
    The low hanging fruit would be #Java, but either way I'd have to learn #Springboot. Even thoudh I'd love to work with #vertx.
    But I was thinking about a low level language like #Cpp or #Rust.

    Any suggestions or tips? Is it even possible (or sustainable) this? How to keep up in the loop in both worlds?

    #Programming #Developer #SoftwareDeveloper #DeveloperExperience #Career #BolhaDev #Programmer

  25. I was thinking to be fluent in another #ProgrammingLanguage/framework.
    The low hanging fruit would be #Java, but either way I'd have to learn #Springboot. Even thoudh I'd love to work with #vertx.
    But I was thinking about a low level language like #Cpp or #Rust.

    Any suggestions or tips? Is it even possible (or sustainable) this? How to keep up in the loop in both worlds?

    #Programming #Developer #SoftwareDeveloper #DeveloperExperience #Career #BolhaDev #Programmer