HN user

denfromufa

245 karma

ai code agents | co-founded aikynetix

Posts7
Comments145
View on HN

My wife hit a wall trying to upload a hefty PDF - every “shrink” tool we tried barely compressed the size, and some even made it larger! Frustrated by the state of PDF compressors (looking at you, Adobe), I turned to LLMs - Claude, Deepseek, and Gemini came up short, but OpenAI’s o4-mini saved the day with a perfect solution. That inspired me to build pdfmini: a tiny, open‑source, client‑side HTML app that crushes PDF sizes right in your browser!!! No installs, no fees, zero privacy worries - all your data stays on your machine.

Try pdfmini now:

https://den-run-ai.github.io/pdfmini/

Source code for pdfmini:

https://github.com/den-run-ai/pdfmini

I would appreciate if stackoverflow integrated something like a REPL or replit in their Q&A to reproduce example easily (maybe even CI?). For Python it would actually be very easy with backends such as Google Colab or even built-in ChatGPT Code Interpreter.

Biohacking Lite 6 years ago

One of the most important things not mentioned in the article is sleep. Not enough sleep and your diet will change. Not enough sleep and your body will not finish recovering overnight. Read the book “Why we sleep”. It will change your life.

P.S. I do marathon training and glycogen storing as well as activating the fat burning are essential!

Main features added to IPython:

- Show function signature in the terminal while completing.

- Assignments can trigger the display mechanism.

- IPdb can be called recursively.

- Support for system-wide configuration.

- Built-in support for Progress Bar.

More details here:

http://ipython.readthedocs.io/en/stable/whatsnew/version6.ht...

Main features added to Jupyter Notebooks:

- Internationalization.

- Shutdown server from command-line.

More details here:

https://medium.com/jupyter-blog/jupyter-notebook-5-1-0-ddc8b...

I was really surprised how efficient numpy arrays were at finding all combinations of the pieces. The backtracking is not using recursion, but instead a stack. This makes it more verbose to code and read, but easier to understand. I would like to make this notebook more interactive with ipywidgets and Unicode characters, so stay tuned ;)

If the deep learning network has enough layers, then can't it start incorporating "abstract" ideas common to any learning task? E.g. could we re-use some layers for image/speech recognition & NLP?