• 4 Posts
  • 34 Comments
Joined 2 years ago
cake
Cake day: March 15th, 2023

help-circle

  • From the list, openscad requires the least tutorial. Solvespace is really easy also, but you need to watch some exciting modelling videos before you get the idea around it. Blender is hard.

    OpenScad also gives you a different modelling experience that lets you write reusable models, e.g. if you are a carpenter, 90% of your modelling is sizing and positioning fiberboards to shape a box. You can “automate” such tasks, easily. I wrote a script for myself that does that, and I’m now super fast at modelling furnitures. After some modelling you will be also capable of making such lib. (As a developer, I might be biased)

    If you are interested in this library: https://github.com/fxdave/woodworkers-lib



  • afaik, fedora is the testing distro for RHEL. I also felt this way, when a new gnome version released much earlier than for Arch and it had an obvious bug that could be catched with little testing.

    And many issues I found in Fedora’s bug tracker was auto closed by the new release. Which is quite frequent. Reviewing the bugs is not that frequent.



  • fxdave@lemmy.mltoLinux@lemmy.mlZed on Linux is out!
    link
    fedilink
    arrow-up
    3
    arrow-down
    5
    ·
    edit-2
    4 months ago

    I use rust only if we need performance, for small services. The industry does the same. People use node for backend but e.g. redis is in rust. It’s a good tool if you use it for the right stuff.

    EDIT: redis is not in rust, but e.g. aws writes many services in rust




  • Thanks for the question. GraphQL works with multiple languages, Cuple works only with Typescript. Despite this drawback this also gives you some advantages:

    • The Request and Response types are auto-inferred from the endpoint you write
    • Because the types are in Typescript you don’t need to generate a client, you just simply use it with @cuple/client and get instant feedback.
    • You don’t have to learn another language. It’s just typescript.

    Practically it means less boilerplate and it let’s you focus on the feature you write. Cuple is also not a query language, you get what the server sends you, it’s more likely a type-safe FFI binding. With Cuple you can build a REST API, or anything similar to that with HTTP method, header, path, query, body, and you can use it type-safely.