4

Do you use rust?
What have you built with it?

Comments
  • 0
    #following
  • 0
  • 4
    (1) Yes
    (2) More recent exemples are:
    - Tools to refactor a very large php codebase
    - Very basic vulkan based programs
    - Image processing algo (processing time: python=3sec, rust=0.8sec) (python version uses cuda, rust uses opencl)

    You can do anything in Rust, there are so many libs! And cargo makes using them super easy.
    But it's hard to push for it when no one knows it at your workplace.
  • 0
    I don't have that much experience with it, but many CLI tools I'm using are made with Rust.
  • 0
    Firefox
  • 0
    I learnt rust and made one crate, which no one world probably use. It was hard, but I enjoyed every bit.
  • 0
    Discord bot
    Embedded systems runtime
    Working on an OS
  • 1
    @RememberMe Isn't a Rust OS just one gigantic blob of unsafe {}?
  • 1
    I'll post some of my work here I guess. Rust is by far my favorite language.

    Perif: A program to control lightning/sidetone on peripherals. https://github.com/olback/perif

    Autoplank: Move plank across multiple monitors. https://github.com/olback/autoplank

    rdg: Frontend for rdesktop on Linux. https://github.com/olback/rdg-linux

    Library Loader: Implementation of SamacSys library loader for Linux & Mac. https://github.com/olback/...

    Barium: A very work in progress end to end encrypted chat server and client. https://github.com/olback/barium

    And a few more smaller things and a few crates/libraries. There is basically no limit on what you can do with Rust.
  • 3
    @PrivateGER yes and no
    The bit that talks to the hardware, the lowest layer is unsafe. Stuff on top isn't (apart from a few data structures)
  • 0
    clans of naked cannibals.

    flame thrower death traps to harvest noobs.

    hadrians wall.

    the somalian navy.
  • 1
    Yup, working on embedded systems and an accompanying server
Add Comment