home.social

#rustcommunity β€” Public Fediverse posts

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

  1. πŸŽ₯ New Video Online – Rust in Paris 2025 πŸ¦€

    At the latest edition of Rust in Paris, Florian Glicher @skade explored how Rust supports the shift from β€œmove fast and break things” to β€œmove fast on stable foundations.”

    πŸ‘‰ Watch the full talk here: youtu.be/DZkW5uozWcw

    Huge thanks to Florian for sharing a unique perspective on Rust’s past, present, and future πŸ™Œ

    #RustLang #RustInParis #RustProgramming #OpenSource #RustCommunity #SoftwareEngineering

  2. πŸŽ₯ New Video Online – Rust in Paris 2025 πŸ¦€

    At the latest edition of Rust in Paris, Benjamin Bouvier @bnjbvr explained why Rust compile times can be slow β€” and how to speed them up without sacrificing quality.

    πŸ‘‰ Watch the full talk here: youtu.be/EHu15-E89YY

    Huge thanks to Benjamin for breaking down the compiler process and sharing practical tools to help Rust developers build faster πŸ™Œ

    #RustLang #RustInParis #RustProgramming #OpenSource #RustCommunity #Compiler #Performance

  3. πŸŽ₯ New Video Online – Rust in Paris 2025 πŸ¦€

    At the latest edition of Rust in Paris, Yvan Sraka @yvan went beyond proc-macros, showing how a trait-based framework can overcome Rust’s limitations in compile-time reflexivity and enable safe, efficient interoperability.

    πŸ‘‰ Watch the full talk here: youtu.be/0tyXK7dfUW4

    Huge thanks to @yvan for pushing forward the conversation on Rust tooling and interoperability πŸ™Œ

    #RustLang #RustInParis #RustProgramming #OpenSource #RustCommunity

  4. πŸŽ₯ New Video Online – Rust in Paris 2025 πŸ¦€

    At the latest edition of Rust in Paris, Guillaume Gomez @imperio explained how doctests work β€” from keeping code examples up-to-date to enabling tests you can’t easily write with unit tests.

    πŸ‘‰ Watch the full talk here: youtu.be/NmgNi6kFXZI

    Huge thanks to Guillaume for his contributions to Rust tooling and for showing us the hidden power of doctests πŸ™Œ

    #RustLang #RustInParis #RustProgramming #OpenSource #RustCommunity #Doctests #RustTooling

  5. πŸŽ₯ New Video Online – Rust in Paris 2025 πŸ¦€

    At the latest edition of Rust in Paris, Omar Hiari explored the foundations of a strong Embedded Rust ecosystem, breaking it down into five essential pillars.

    πŸ‘‰ Watch the full talk here: youtu.be/UIqchWfD35I

    Huge thanks to Omar for his expertise, vision, and contributions to the Rust and embedded systems community πŸ™Œ

    #RustLang #EmbeddedRust #RustInParis #RustProgramming #OpenSource #RustCommunity

  6. πŸš€πŸŽ‰ Behold, the latest shiny object for the Rust fan club: a graph-vector database that nobody asked for but everyone will pretend to need. πŸ€–πŸ’Ύ Because what the world really needed was yet another way to store AI's endless babble, now with 30% more buzzwords! 🌟
    github.com/HelixDB/helix-db/ #RustDatabase #RustCommunity #AIStorage #BuzzwordOverflow #GraphVector #HackerNews #ngated

  7. Understanding string slicing in #RustLang πŸ¦€:

    Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

    let multibyte_string = "EspaΓ±a";
    let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

    Ensure your slices align with valid UTF-8 character boundaries.

    #Programming #CodeTips #LearningRust #RustCommunity #Unicode

  8. Understanding string slicing in #RustLang πŸ¦€:

    Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

    let multibyte_string = "EspaΓ±a";
    let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

    Ensure your slices align with valid UTF-8 character boundaries.

    #Programming #CodeTips #LearningRust #RustCommunity #Unicode

  9. Understanding string slicing in #RustLang πŸ¦€:

    Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

    let multibyte_string = "EspaΓ±a";
    let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

    Ensure your slices align with valid UTF-8 character boundaries.

    #Programming #CodeTips #LearningRust #RustCommunity #Unicode

  10. Understanding string slicing in #RustLang πŸ¦€:

    Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

    let multibyte_string = "EspaΓ±a";
    let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

    Ensure your slices align with valid UTF-8 character boundaries.

    #Programming #CodeTips #LearningRust #RustCommunity #Unicode

  11. Understanding string slicing in #RustLang πŸ¦€:

    Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

    let multibyte_string = "EspaΓ±a";
    let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

    Ensure your slices align with valid UTF-8 character boundaries.

    #Programming #CodeTips #LearningRust #RustCommunity #Unicode