home.social

Search

1000 results for “mo8it”

  1. Huh, my (old-ish) post about apparently landed on the front page of Hacker News two days ago 🤯

    news.ycombinator.com/item?id=4

    I noticed it after seeing an unexpected spike in :
    oxitraffic.mo8it.com

  2. I fixed the problem with the energy 😅

    I also ported the code to use f64 everywhere instead of f32 for physics.

    2^14 spheres this time ✨

    I also made the repository public but it will not be published as a library. It is just my educational progress with my thesis:
    codeberg.org/mo8it/master-thes

    #Bevy #XPBD #egui #RustLang #Rust

  3. I fixed the problem with the energy 😅

    I also ported the code to use f64 everywhere instead of f32 for physics.

    2^14 spheres this time ✨

    I also made the repository public but it will not be published as a library. It is just my educational progress with my thesis:
    codeberg.org/mo8it/master-thes

  4. I fixed the problem with the energy 😅

    I also ported the code to use f64 everywhere instead of f32 for physics.

    2^14 spheres this time ✨

    I also made the repository public but it will not be published as a library. It is just my educational progress with my thesis:
    codeberg.org/mo8it/master-thes

    #Bevy #XPBD #egui #RustLang #Rust

  5. I fixed the problem with the energy 😅

    I also ported the code to use f64 everywhere instead of f32 for physics.

    2^14 spheres this time ✨

    I also made the repository public but it will not be published as a library. It is just my educational progress with my thesis:
    codeberg.org/mo8it/master-thes

    #Bevy #XPBD #egui #RustLang #Rust

  6. I fixed the problem with the energy 😅

    I also ported the code to use f64 everywhere instead of f32 for physics.

    2^14 spheres this time ✨

    I also made the repository public but it will not be published as a library. It is just my educational progress with my thesis:
    codeberg.org/mo8it/master-thes

    #Bevy #XPBD #egui #RustLang #Rust

  7. : I solved day 2 using the parser in and my solution takes 6-8 µs on my machine.

    Of couse, we are dealing with the category "BLAZINGLY FAST" 🚀😜

    You are welcome to benchmark your code against mine and start performance wars 🥊

    codeberg.org/mo8it/advent-of-c

    EDIT: @corpsmoderne came up with a version about twice faster than mine with even less code! See his comment below 🏆️

    PS: I know about premature optimizations, but let me have my fun 😝

  8. , a self-hosted, simple and privacy respecting website traffic tracker 🌐

    ➡️ Demo: oxitraffic.mo8it.com

    I just published version 0.6 with a image! 📦️
    (You don't have to use Docker though)

    Do you have a ?
    I can host it for you if you want to test it with your website :blobcatheart:

    Of course, it is written in 🦀
    Check out the README, I spent a lot of time on it 😇
    codeberg.org/mo8it/oxitraffic

    Boost? 🔃🥰

  9. @mo8it #oxitraffic looks like a great little tool, thanks for your efforts!

    Can it also show how long people spend on a page?

  10. I released some updates to , a self-hosted, simple and privacy respecting website traffic tracker 🌐

    codeberg.org/mo8it/oxitraffic

    I improved the design, added more stats and fixed some bugs ✨

    Demo: oxitraffic.mo8it.com

    Any feature suggestions? :ablobcathappypaws:

    I can host it for you if you want to test it with your website :blobcatheart:

    BTW, my Rust vs Julia blog post is still exploding 🤯

  11. : Self-hosted, simple and privacy respecting website traffic tracker 🌐

    A web app that I did write with to see how many read my blog posts 🧐

    I did just publish a version which I consider ready for public usage 🤗

    The screenshot shows the call history of one of my blog posts 📈

    Check out the README for a demo and more details about how it works and how you can host it:

    codeberg.org/mo8it/oxitraffic

  12. :ferris: vs :julia:

    Rust vs Julia in scientific computing

    Why I think that Julia doesn't solve the two-language problem and when you should use Rust instead.

    mo8it.com/blog/rust-vs-julia

    The blog post is the base for my tiny talk at which is now public:

    youtu.be/0JkbNFpXlXc

    Think of the recording as a trailer. The blog post has many more details and aspects that can not fit into 7 minutes ⏳️

    I hope for discussions across both communities 🥰

  13. @cindox Rocket is stagnating and Axum is going up like a rocket 🚀😉

    My recommendations would be and .

    I don't have experience with frontends (e.g. yew) so far, but if you just want Templates, check out

    My blog posts might be helpful:

    Axum + Askama: mo8it.com/blog/getting-started

    SQLx: mo8it.com/blog/sqlx-interactin

  14. Adblockers blocking anonymous telemetry: @mo8it wrote a blog article on the experience of using #OxiTraffic for privacy preserving telemetry and how this still ended up with my site being featured on #EasyList, a default blocklist of #uBlockOrigin

    I don't have a good solution here but I am pretty sure there is a problem

    https://mo8it.com/blog/privacy/

  15. Well apparently I'll be talking at rustlab about #winnow 🦀 🚀 after I was introduced to it by @mo8it last year, big fan now.

    Go #rustlang

    rustlab.it/speakers/fraire-wil

  16. Today i am stuggling with #SQLX migrations in #RustLang.
    I have an app, which starts with a sync main fn, which then continues in an async init fn.
    I have placed the migrate! macro there, but i am not able to migrate on `cargo build`. Anybody got a clue here?
    The documentation just says to run the macro when the application starts.
    Taggin @mo8it for being and sqlx-evangelist 😁️

  17. I've completed "Scratchcards" - Day 4 - Advent of Code 2023 #AdventOfCode

    The 2nd part was really hard, but in the end I managed to do it anyways.

    I tried @epage #winnow this time, a replacement for #rust #nom . And even though I don't get why `&mut &str` is needed, I found it really easy to pick up.

    Thanks @mo8it for the recommendation

    adventofcode.com/2023/day/4
    github.com/woile/adventofcode/

  18. Really interesting approach from Paul Goulart at mixing and with the takeaway (paraphrased)

    "Julia is great for debugging the *math* problems, Rust is great for debugging the *code* problems, and supporting both of those at once Is a lot less work than doing all of it twice"

    Followed by another great talk by @mo8it highlighting the footguns and benefits of Julia (check out his blog post mo8it.com/blog/rust-vs-julia/)

    I wasn't expecting so much Julia but I'm loving it!

  19. integration in 🪟

    asciinema.org/a/902151

    Works well with terminal text editors like :helix:

    Will be released soon ✨️

  20. With that, we have a new guide for "Community Exercises" ✨

    rustlings.rust-lang.org/commun

    You can create your own exercises and let the program manage them 😃

    I have heard that the community is thinking about creating some exercises for Bevy beginners 😉

    @alice_i_cecile @chrisbiscardi

  21. Launched a new website for 🎉
    rustlings.rust-lang.org

    It even has a new link 🔗

    What do you think? Anything missing? 🤔

  22. I replaced my document readers and with Papers 📖

    flathub.org/apps/org.gnome.Pap

    Papers is planned to replace Evince as the default document viewer on :gnome:

    It is a fork of Evince with about a third of the code migrated to :ferris:

  23. Released a new version of to use the new version of that fixes the following database security vulnerability:

    ⚠️ RUSTSEC-2024-0363
    rustsec.org/advisories/RUSTSEC

    Also replaced Askama with for the templates. The migration was trivial 😃

  24. Wrote a small fish shell function to easily start a clean benchmarking project with divan :D