But, also, wow! Windows-only and AGPLv3 is not a combination I think I've ever seen before.
sirjaz · 6h ago
We need more things like this. I know people don't like Windows Server because it is not open source, but it is simple to use and get up and running. Also, user management is easy.
yndoendo · 1h ago
I don't like Microsoft products, such as Windows, because I used them through out the years and find all the edge cases where they don't hold up. Windows OS is too fragile with their kludge of internal designs. Corrupt registry or WMI repository bakes systems with ease. This has nothing to do with Open Source.
OSes that use plain text configuration files are easy to resurrect. Windows is fixed with reinstall the OS. Linux and BSD are fixed with editing a config file or reinstalling a single corrupt application / library.
Example of bad versus good design is DirectX shader compilation. Windows can only perform this while the game is running. Linux with WINE can perform this without the game running. Windows will have bad FPS during the first run / scene with many games because of this.
PS. Windows print system is really bad in the industrial environment because they do not follow label markup language stands. Number of label DSLs have a print quantity setting to save memory. Want 1000 copies printed, one print job with print quantity set to 1000. Windows spools up 1000 copies of the label and sends each to the printer. This eats up the memory on printers in no time. It also brakes the ability to clear the print queue just on the printer. Extra steps require the Windows print job to be canceled and they the printer's queue to be cleared. Otherwise The printer will receive the next 990 of the 1000 print job.
mathfailure · 4h ago
For Windows only.
Abandonware.
npodbielski · 3h ago
Looks like it is .NET Framework, so there is possibility to port it to .net core and possibly use via dll or .so as library inside other, linux desktop framework (or in something more portable like Flutter).
sowbug · 5h ago
OT: someone please make a RPi image that "prints" a page to an eink display. I want to duct-tape an RPi Zero and a rechargeable battery to the back of a display, then be able to print recipes to it while cooking. Other people might print board-game rules or speech notes while rehearsing -- anything that you'd typically print and then throw away after brief usage.
I know I could make a PDF, sideload it to a Kindle, etc. Too many steps. I just want the display to appear as a printer on my phone.
xrendan · 5h ago
I have some really old code that pretty much does this, I'll see if I can find it.
xrendan · 5h ago
Ugh, I don't have it. It was from before I used git.
Basically to do this you have a cups server that exposes itself as a network printer that prints to a specified PDF directory and then you have a program watching that directory for new files and if there's a new one it opens up whatever pdf viewer you want in full screen.
I always wanted to tackle this use case with receipt printers, those thermal narrow paper rol ones. But those things are freaking expensive!
literalAardvark · 2h ago
Thermal paper has some pretty horrible effects on your health, I'd avoid that.
whartung · 1h ago
Just curious if the folks at CVS chart particularly high on these horrible effects, considering the no doubt thousands of feet of receipts they handle each day there.
For those unaware, at the CVS Pharmacy if you walk in and buy so much as a pack of gum, you're likely to walk out with at least 3 feet of receipt. They use them to tack on ads and coupons.
colechristensen · 3h ago
Restaurants are going out of business all the time, there's your source
IlikeKitties · 5h ago
Sounds pretty vibe codable, why don't you try it yourself?
criddell · 7h ago
Why use Tesseract for this? Windows' built-in OCR is so much better in my experience.
jeroenhd · 7h ago
Microsoft's OCR engine supports Windows 10.0.10240.0 and up. This project intends to support Windows 7 and up.
In theory you could maintain code paths for both, offering a slimmer package for Windows 10+, but that'd also cost more time and effort to maintain.
Also, not many people know Windows comes with an OCR API. It's extremely underused in my opinion.
I suspect because of the vintage of this project. This is built on .net Framework 4.x, hence windows only.
edit: and goes deep into COM for device interfaces. Wow! blast from the past.
wolfi1 · 4h ago
.Net Framework is mostly a wrapper for COM
PeterStuer · 4h ago
That's a bit of a streach. Yes, .Net was MS's next gen of component tech following (D)COM, but it grew way past that from the start.
Oras · 7h ago
Yeah, tesseract has lots of issues especially identifying tables
kittikitti · 5h ago
This is an incredible idea! I really like it because it sounds so obvious after being exposed to it but I never thought of it before! I wonder what other ways we could integrate GPT's, LLM's, and other AI into the simple "Print" functionality across all our devices.
johnea · 1h ago
Just another poster child of windoze suk.
Of course, CUPS based printing has had built in print to PDF for years...
But, also, wow! Windows-only and AGPLv3 is not a combination I think I've ever seen before.
OSes that use plain text configuration files are easy to resurrect. Windows is fixed with reinstall the OS. Linux and BSD are fixed with editing a config file or reinstalling a single corrupt application / library.
Example of bad versus good design is DirectX shader compilation. Windows can only perform this while the game is running. Linux with WINE can perform this without the game running. Windows will have bad FPS during the first run / scene with many games because of this.
PS. Windows print system is really bad in the industrial environment because they do not follow label markup language stands. Number of label DSLs have a print quantity setting to save memory. Want 1000 copies printed, one print job with print quantity set to 1000. Windows spools up 1000 copies of the label and sends each to the printer. This eats up the memory on printers in no time. It also brakes the ability to clear the print queue just on the printer. Extra steps require the Windows print job to be canceled and they the printer's queue to be cleared. Otherwise The printer will receive the next 990 of the 1000 print job.
Abandonware.
I know I could make a PDF, sideload it to a Kindle, etc. Too many steps. I just want the display to appear as a printer on my phone.
Basically to do this you have a cups server that exposes itself as a network printer that prints to a specified PDF directory and then you have a program watching that directory for new files and if there's a new one it opens up whatever pdf viewer you want in full screen.
Setup a shared pdf printer: https://askubuntu.com/questions/1310867/how-to-set-up-shared...
For those unaware, at the CVS Pharmacy if you walk in and buy so much as a pack of gum, you're likely to walk out with at least 3 feet of receipt. They use them to tack on ads and coupons.
In theory you could maintain code paths for both, offering a slimmer package for Windows 10+, but that'd also cost more time and effort to maintain.
Also, not many people know Windows comes with an OCR API. It's extremely underused in my opinion.
https://github.com/microsoft/PowerToys
edit: and goes deep into COM for device interfaces. Wow! blast from the past.
Of course, CUPS based printing has had built in print to PDF for years...
[1] Common Unix Printing System