HackerTrans
TopNewTrendsCommentsPastAskShowJobs

elanning

no profile record

comments

elanning
·작년·discuss
I wrote a minimal implementation of this feedback loop here:

https://github.com/Ichigo-Labs/p90-cli

But if you’re looking for something robust and production ready, I think installing Claude Code with npm is your best bet. It’s one line to install it and then you plug in your login creds.
elanning
·작년·discuss
It looks great, nice work. I’m impressed at the quick development too.
elanning
·2년 전·discuss
I know the feeling. I like to picture it as a kitchen, and those “bat-whatever” gadgets are like those silly infomercial cooking tools that are only good for one specific thing. Meanwhile the good abstractions are like a nice knife, that can be used in so many different contexts.
elanning
·2년 전·discuss
Big mistake on my part; I should clarify I fine-tuned both PaddleOCR and TrOCR on large amounts of data specific to my domain. I cannot speak on the best out of the box “ready to go” solutions (besides cloud ones, which were quite good with the right pre and post processing).
elanning
·2년 전·discuss
I’ve done a lot of OCR work and tesseract is nearly a decade out of date at this point. It is not a serious technology for anything requiring good accuracy or minor complexity. From what I’ve seen, GPT-4V completely smokes tesseract, but then again, most modern OCR systems do. If you want fast and pretty powerful OCR, check out paddle. If you want slower but higher accuracy, check out transformer based models such as TrOCR.
elanning
·3년 전·discuss
I’ve been having a good time using REST level 0.5

https://faithlife.codes/blog/2023/09/rest-level-zero-dot-fiv...
elanning
·3년 전·discuss
Also plugging my related project: https://github.com/Ichigo-Labs/cgrep From the comments in this thread, it seems a lot of people have built or needed an easy way to quickly create static analysis checks, without a bunch of hassle. I think extended regex is a great way to do this.
elanning
·4년 전·discuss
Rest in peace to one of the greats.

You might want to consider reading The Design of Design if you liked The Mythical Man-Month.
elanning
·4년 전·discuss
Wow this could be incredibly useful for a lot of applications. I’m excited to see the new wave of tools this could spawn.
elanning
·4년 전·discuss
This looks like a nice piece of work. I hope the author continues on it, or other fun hobby projects.
elanning
·4년 전·discuss
This looks like a nice piece of work. This area and adjacent tooling areas are ripe for improvement.
elanning
·4년 전·discuss
I review Posthog PRs occasionally. In addition to this, they’re also open source. Seems like a cool place.
elanning
·4년 전·discuss
This is typically a good way to organize React projects, in my experience. A few top-level components which hold state with a useReducer and have a few functions to make backend calls, as needed. You could consider the reducer the model and the top-level component the controller. All components that sit below the top-level are pure view components. Props in, view out. They at most hold a minor amount of UI state. They don’t make API calls or update state themselves, that must be done with a callback to the top-level component.

This makes testing simple as you can test the reducer without rendering any UI. The pure view components are also easy to test. Then a few end to end tests to tie everything together.

https://www.reactguide.dev/#mc-v-trees Has more info on how to scale the pattern for larger apps.