dasloop
|
7 months ago
|
on: Poorest US workers hit hardest by slowing wage growth
Why the poor and working class? Increasing benefits on local products maybe will, maybe not, move to salaries. But first necessity goods are not very elastic making that products more expensive.
dasloop
|
1 year ago
|
on: I live my life a quarter century at a time
I`m pretty sure that most of us will be alive after that final act ;)
dasloop
|
1 year ago
|
on: Continuous reinvention: A brief history of block storage at AWS
So true and valid of almost all software development:
> In retrospect, if we knew at the time how much we didn’t know, we may not have even started the project!
dasloop
|
1 year ago
|
on: Do not buy a Hisense TV (or at least keep them offline)
Size against everything else?. image quality will be better in a TV with similar price. Also convenience.
dasloop
|
1 year ago
|
on: Show HN: Logfmtxx – Header only C++23 structured logging library using logfmt
I've probably been reading too much lately about FOSS developers not being able to find help maintaining packages. But yeah, it's not a helpful comment.
dasloop
|
1 year ago
|
on: Show HN: Logfmtxx – Header only C++23 structured logging library using logfmt
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: What is the Demoscene? An interview
Eric Prydz show Holo is, to me, like an Amiga demo but using gigantic holographic projectors. Updated graphics and sound but same vibes.
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
|
2 years ago
|
on: Show HN: An index of all monthly dividend stocks
Money in the pocket. If you trust the company you assume that the stock will recover the value eventually.
dasloop
|
2 years ago
|
on: Show HN: Tremor 3.0 – Open-source library to build dashboards fast
Take decisions :). Customization as a way to make an app better for my personal needs versus me (as a designer) not knowing how the app should be used and shifting the responsibility to the end user.
dasloop
|
3 years ago
|
on: HP bricking printers remotely if the client's credit card expires [video]
Downvoted because you do not have the HN subscription to write swear words?
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: Archery World Record: Most arrows through a keyhole [video]
dasloop
|
3 years ago
|
on: Barcelona-style “superblocks” could make cities greener and less car-centric
Using what metric? Taking into account externalities? Taking into account the price of the car, maintenance and insurance?
dasloop
|
3 years ago
|
on: Why high speed rail hasn’t caught on
In many HN publications the label "In USA" is applicable, the equivalent of "In mice" for many medical studies :)
dasloop
|
3 years ago
|
on: A way to torture an interviewer (C++, FizzBuzz)
We no longer ask candidates to write code. Instead we give them code to review and plenty of time. After that we do a meeting to discuss the changes. Works quite well for us.
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)
dasloop
|
3 years ago
|
on: Chalet: A cross-platform project format and build tool for C/C++
With the exception of CMake evolution (now days a defacto standard), package managers (as Conan or vcpkg) or the support for new C++ standards in major compilers (clang, gcc, Visual) ;)