Viewing profile — elanning
elanning
HN member- Joined
- Wed, Jul 01, 2020, 6:02 AM UTC
- HN karma
- 97
- Public activity
- 45 items
- HN profile
- View on Hacker News ↗
About elanning
No profile information was provided.
Recent public activity
-
comment
Comment #44251183
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 install…
-
comment
Comment #43297388
It looks great, nice work. I’m impressed at the quick development too.
-
comment
Comment #42487998
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. Me…
-
comment
Comment #40508382
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 g…
-
comment
Comment #40507438
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. Fro…
-
comment
Comment #38798800
I’ve been having a good time using REST level 0.5 https://faithlife.codes/blog/2023/09/rest-level-zero-dot-fiv...
-
comment
Comment #38594938
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…
-
comment
Comment #33650302
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.
-
comment
Comment #33187735
Wow this could be incredibly useful for a lot of applications. I’m excited to see the new wave of tools this could spawn.
-
comment
Comment #33005969
This looks like a nice piece of work. I hope the author continues on it, or other fun hobby projects.
-
comment
Comment #32600076
This looks like a nice piece of work. This area and adjacent tooling areas are ripe for improvement.
-
comment
Comment #32505394
I review Posthog PRs occasionally. In addition to this, they’re also open source. Seems like a cool place.
- comment
-
comment
Comment #31981559
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 ca…
- comment
-
comment
Comment #31547627
This reminds of a principle I use. Always use the weakest type for the problem at hand. I don’t use a struct/record where a simple dictionary or tuple would do. I don’t use a class…
-
comment
Comment #31364589
Great idea. I think UI/UX designers would love a tool like this. Especially if they could import React components made by the development department.
-
comment
Comment #31043920
This chapter encapsulates much of data oriented design: https://www.dataorienteddesign.com/dodbook/node5.html
-
comment
Comment #29681969
I wrote a VS code extension and pre-commit hook for this kind of thing: https://github.com/elanning/checkr It's a nice inbetween solution for quick stuff not worth writing a full s…
-
comment
Comment #29533482
Greetings Greg, really great work. Thanks for sharing this. Now my greedy request: if you could take all this technology and make a blogging platform for developers, I would be gre…
-
comment
Comment #29424876
This is a good example of why understanding the principles of statistics can come in handy.
-
comment
Comment #28980312
Awesome hackathon project. The font scroll is great 90s website nostalgia.
-
comment
Comment #28275431
I believe Norvig later clarified that the negative correlation was untrue or statistical noise.
-
comment
Comment #28250082
I recently wrote a little Regex domain specific language that's translated into regular JavaScript regex. I was inspired by CCGrep: https://arxiv.org/abs/2003.05615 because its syn…
-
comment
Comment #28084565
As I understand it, overfitting is low bias, but high variance. It's perfectly fitting 5 linear data points with a complex polynomial, when the underlying function was a line. Thus…