seems important and terrifying. This morning Opus 4.6 was blowing my mind in claude code... onward and upward
HN user
maxmaio
Congrats Ben and Jacob!
I use tailwind on all of my projects now and like it. I've used a lot of the css fads of the last decade (css in js was the worst which ironically is what the author recommends) and tailwind is the most ergonomic for me -and apparently most web devs considering how popular it is.
"Did you really say bundler?" If you dont use a bundler this is a fair point. But I'm confident you do use one so adding tailwind is ~3 lines of code.
We are currently focused on business customers :/ but that may change in the coming months!
We have seen a lot of use cases in finance and are currently working with a few firms. Accuracy is generally their primary requirement. We've been focusing on not just accuracy but also the audit experience which includes confidence scoring. Your right about security and we are currently undergoing a soc 2 audit.
Generally firms are outsourcing the data entry and are already manually auditing with shortcuts like summing values.
Relating to formatted in the table they expected. We extract the data directly into their template format so it is always in the table they expect.
This is something we are hyper focused on. shoot me an email at max@midhsip.dev - you can also try our financial analysis template in our playground for free: https://app.midship.ai/demo.
yes we can! shoot me an email max@midship.dev
Hi! In our playground we only included a few templates, but in our app you can create any template you'd like! So yes we can extract from academic papers! shoot me an email: max@midship.dev
Send me an email here: max@midship.dev so we can learn more. We're in the process of a SOC 2 audit and should be HIPAA by end of the month!
This is an interesting use case! We've heard similar stories from people dealing with pensions. Today we are ready to solve out of the box the extract data from a factsheet into excel or CSV step. Shoot me an email at max@midship.dev!
We're excited for foundational models to improve because we hope it will unlock a lot more use cases. Things like analysis after extraction, able to accurately extract extremely complex documents, etc!
We saw initial traction with real estate firms extracting property data like rent rolls. But we've also seen traction in other verticals like accounting and intake forms. The original idea was very ambitious and when talking to potential customers they all seemed to be happy with the existing players.
+1 to what mitch said. We believe there is a large market for non-technical users who can now automate extraction tasks but do not know how to interact with apis. Midship is another option for them that requires 0 programming!
The reducto guys are great! Their benchmark is not exactly how we would index our product because we extract into a user specified template vs. extracting into markdown (wysiwyg). That being said their eval aligns with our internal findings of commercial OCR offerings.
We currently support pdf, docx, most image types (jpeg/jpg, png, heic), and excel.
saving the email as a pdf would work!
Yes there is definitely a boom in document related startups. We see our niche as focusing on non technical users. We have focused on making it easy to build schemas, an audit and review experience, and integrating into downstream applications.
Yes today we support exports to csv or excel from our web app!
Supabase is amazing
Super cool program by the way!
Hey there, was getting linker errors because panel.pc wasn't in Pkg-config. Turns out installing ncurses with homebrew gives you ncurses v6 which doesn't have .pc files.
https://mrcook.uk/how-to-install-go-ncurses-on-mac-osx ^ this guide is really helpful and explains how to fix the issue
unable to get this running on macOS... anyone else having issues?
I'm having trouble coming up with this approach on my own. could you share it please?
I know it's not super relevant to node vs python3, but your fib(n) has a time complexity of O(2^n)... with a dp approach it can be solved in O(n). also your space complexity can be reduced to O(1).