dasloop's comments

dasloop | 1 year ago | on: Dioxus 0.5: Web, Desktop, Mobile Apps in Rust

"Here at Dioxus Labs, we have an unofficial rule: only one rewrite per year."

If you have to rewrite your code once a year, maybe it helps to plan ahead before coding.

But, if you can rewrite your code once a year, you might not have too much code to worry about.

dasloop | 2 years ago | on: Ode to the M1

$4k / ($your-total-cost * 3). Assuming 3 years of ownership. Tools are not only a laptop but the idea, I believe, is valid.

dasloop | 3 years ago | on: The X500 Plus computer case (2013)

I had an Amiga 500, I love the computer very much. The problem with these projects is that you end up with a keyboard at an angle that is not ergonomic at all.

dasloop | 3 years ago | on: A Poor Man's API

Like, for example an OS, hardware even electricity! But if you give things for granted, why not docker or APISIX?

dasloop | 3 years ago | on: Chalet: A cross-platform project format and build tool for C/C++

ExternalProject_Add -> vcpkg or Conan. I have more experience with vcpkg and the steps are:

1) declare your dependencies in a vcpkg.json file (similar to npm's package.json). Example:

{ ... "dependencies": [ "openssl" ] }

2) Add it to your CMakeLists.txt file. Example:

    find_package(OpenSSL REQUIRED)
    target_link_libraries(main PRIVATE OpenSSL::SSL OpenSSL::Crypto)
page 1