HackerTrans
TopNewTrendsCommentsPastAskShowJobs

vanyle

no profile record

Submissions

No one can force me to have a secure website

tom7.org
5 points·by vanyle·3 ay önce·1 comments

Design.md that capture designs of popular websites

github.com
3 points·by vanyle·3 ay önce·0 comments

[untitled]

1 points·by vanyle·3 ay önce·0 comments

Rust challenges and how we can address them

blog.rust-lang.org
4 points·by vanyle·4 ay önce·0 comments

My Philosophy on Alerting from a Site Reliability Engineer at Google

docs.google.com
1 points·by vanyle·6 ay önce·0 comments

comments

vanyle
·geçen ay·discuss
Centralized package repositories like the one provided by canonical have similar limitations to the Mac App Store, you need to get your app reviewed, you need to push updates to each platform where you distribute your app and in exchange you get visibility.

I'd argue that installing and updating apps on MacOS is simpler than on Linux distros because most apps have built-in auto-updates (or you can just drag the app to the applications folder) instead of having to rely on snap / apt / insert your package manager which may a lot of outdated and unmaintained packages and apps.
vanyle
·3 ay önce·discuss
I tried raylib and I love it, but I need to build a lot from scratch (like most game frameworks). But I also really dislike engines as I prefer making games with code rather than a GUI. I am currently working on a framework/engine hybrid called vectarine [1] where I make my game with code while still enjoying niceties of an engine like hot reloading, integrated debugging, asset management etc.

[1] https://github.com/vanyle/vectarine
vanyle
·5 ay önce·discuss
Having built crossplatform native app supporting MacOS app, I have never gotten notarization to work as I'm not using xcode a lot.

I'm curious, how much does it cost? Is it per build or a subscription? How do you make it work financially for an open-source project?
vanyle
·9 ay önce·discuss
The git seems to only contain the build of the website with no source code.

The author is probably using git to push the content to the hosting server as an rsync alternative, but there does not seem to be much leaked information, apart from the url of the private repository.
vanyle
·10 ay önce·discuss
For CLI tools, the program usually only executes for a few seconds and then returns. In this context, you don't even need arena allocators or any memory management at all. You can write the tool in C with malloc and let the OS free the memory at the end without worry.

You could argue with the reasoning that C feels more practical than Zig for real-world CLI tools.

The argument provided by the author feels a bit besides the point.