HackerTrans
TopNewTrendsCommentsPastAskShowJobs

remorses

no profile record

Submissions

The Region Consolidation Project

fly.io
1 points·by remorses·9 เดือนที่ผ่านมา·0 comments

Show HN: Spiceflow – fast, simple and type safe TypeScript API framework

getspiceflow.com
1 points·by remorses·ปีที่แล้ว·0 comments

Show HN: AntiDetection, make ChatGPT generated text undetectable and more human

antidetection.com
1 points·by remorses·ปีที่แล้ว·0 comments

100x Faster Babel `scope.rename()`

gist.github.com
1 points·by remorses·2 ปีที่แล้ว·0 comments

Remix for Next.js Developers, Learn by Example

remixfornextdevs.com
2 points·by remorses·2 ปีที่แล้ว·0 comments

Show HN: Docker-phobia: Analyze Docker image size with a treemap

github.com
91 points·by remorses·2 ปีที่แล้ว·30 comments

Show HN: User onboarding with AI agent for a collaborative Markdown editor

holocron.so
2 points·by remorses·3 ปีที่แล้ว·0 comments

Show HN: Holocron, Notion like editor for Markdown files, synced with GitHub

holocron.so
3 points·by remorses·3 ปีที่แล้ว·2 comments

Ask HN: Why does ChatGPT API charge for input tokens?

1 points·by remorses·3 ปีที่แล้ว·0 comments

Akarso: Open-source WorkOS alternative built on top of Supabase

akarso.co
2 points·by remorses·3 ปีที่แล้ว·1 comments

comments

remorses
·10 เดือนที่ผ่านมา·discuss
No support for multiple agents at the same time is a non starter
remorses
·ปีที่แล้ว·discuss
Using AI agents productively requires setting up a repository for collaboration, it means writing docs and making the build process easy and fast.

As any other tool AI is slow to adopt but has huge gains later on
remorses
·ปีที่แล้ว·discuss
Framer is one of the website builders with the best export capabilities, this is because it’s built on top of React. You can use unframer [0] to export components as React and ship anywhere

[0]: https://github.com/remorses/unframer
remorses
·2 ปีที่แล้ว·discuss
If you set temperature to zero the output will be always the same, not a distribution. If instead you increase temperature the LLM will sometimes choose other tokens than the one with the highest score, but it won’t be that much different
remorses
·2 ปีที่แล้ว·discuss
Insurance period minus one standard deviation
remorses
·2 ปีที่แล้ว·discuss
If only there was a way to make radio signal clear even with background noise. Maybe one day someone will invent frequency modulation instead of this stupid AM thing
remorses
·2 ปีที่แล้ว·discuss
Goblin is a service that builds a go binary for your platform on the fly and downloads it in PATH. This is a much faster way than setting up Github Actions to build an executable for every possible platform on every release. You can also use go install if you know what you are doing.
remorses
·2 ปีที่แล้ว·discuss
You can also install it with go, I updated the readme

go install github.com/remorses/docker-phobia
remorses
·2 ปีที่แล้ว·discuss
/skæm/ a dishonest plan for making money or getting an advantage, especially one that involves tricking people
remorses
·2 ปีที่แล้ว·discuss
Is the code open source?
remorses
·2 ปีที่แล้ว·discuss
Mojo is faster because it compiles every function body in parallel, basically every function calls LLVM separately. This means you have to do everything else yourself, which is not easy.
remorses
·2 ปีที่แล้ว·discuss
I am pretty sure the existing release process already takes much more than 2 hours.
remorses
·3 ปีที่แล้ว·discuss
It’s another one of my projects, holocron wasn’t ready when I made the blog
remorses
·3 ปีที่แล้ว·discuss
A license that doesn’t allow reselling the service is good enough

For example I saw this with Tailwind UI
remorses
·3 ปีที่แล้ว·discuss
== does not exist
remorses
·3 ปีที่แล้ว·discuss
It is specifically an alternative to the WorkOS Admin Portal component, a hosted website you can send to your customers to make setting up SSO easier.

The full source code is on GitHub: https://github.com/remorses/akarso
remorses
·4 ปีที่แล้ว·discuss
The best practice for me is to not use bash or zsh, use a better defined and robust language like JavaScript or python
remorses
·4 ปีที่แล้ว·discuss
Struct of arrays (also called MultiArrayList in Zig), instead of storing big structs in an array you store each field in a separate array and if you need to fetch the full struct you reconstruct it from the arrays.

The benefit is that the arrays items memory size is smaller and has no padding, it also increases cache locality.
remorses
·4 ปีที่แล้ว·discuss
One optimization he made is inlining jsx createElement calls
remorses
·4 ปีที่แล้ว·discuss
I would also suggest to avoid too complex genrics, these tend to make te code unreadable and make the compilation super slow.

Usually generic code tries to make everything type safe but having some portions of your code be dynamic is completely fine imo.