paul_manias | 6 months ago | on: Ask HN: What are you working on? (September 2025)
paul_manias's comments
paul_manias | 6 months ago | on: Ask HN: What are you working on? (September 2025)
Codex in the cloud has been leveraged to do 95% of the work and Claude 5%. We've output 10.5K LoC and 774 individual tests to ensure compliance to the spec.
Lately I've been feeling like we're living firmly in the future. This would easily be an 8+ month project on my own not including the tests, yet we're now on track for completion in 10 days. A min. 25x speed increase is a crazy level of productivity for me and it's hard to believe I'm still seeing articles claiming that AI coding isn't productive.
paul_manias | 6 months ago | on: Claude Sonnet 4.5
Sonnet on the other hand gets tripped up constantly due to the complexity. I'm not seeing the improvement I was hoping for with 4.5, and it's just given up on attempting to implement support for date-time functionality. Codex has nailed the same task, yet Anthropic claim OpenAI have the inferior product?
I'm pretty sad about this as I'm gunning for Anthropic and would have loved to see them at least match Codex with this new release. If OpenAI stays on this course then Claude Code is toast without an important breakthrough. It doesn't help that they're also the more expensive product and have service quality issues pushing people to quit the platform.
paul_manias | 1 year ago | on: How to develop on Windows: comparing native, MinGW, Cygwin, WSL
MSVC generates significantly faster & smaller code, doesn't require additional DLLs in the final build, and the C++ compiler behaves predictably. Critically it also works very well with CMake, so my build process is seamlessly aligned with Linux.
The VS debugger is a major help too - gdb can do the same stuff, and there are UIs for gdb, but debugging through VS is just more productive and convenient. Times change!
paul_manias | 2 years ago | on: Why Roses Smell Nice
I find that scents don't last too long, but I think this is to be expected. On my property most of the scent from roses is produced in the first week's bloom before dissipating.
paul_manias | 3 years ago | on: Show HN: Forma – An efficient vector-graphics renderer
It's at https://github.com/parasol-framework/parasol but fair warning though, it is in alpha right now and going through an overhaul.
paul_manias | 4 years ago | on: Ask HN: Have you found a good desk chair?
paul_manias | 4 years ago | on: Ask HN: Have you found a good desk chair?
Before I had the Aeron I'd replace my office chairs every 4 years or so. Not only have I saved money long term, their longevity makes them the better choice for the environment.
Enjoy your chair, you'll get a lifetime of use out of it.
paul_manias | 4 years ago | on: How many flies are in my apartment?
paul_manias | 4 years ago | on: How many flies are in my apartment?
The next day, same story. The flies were now appearing throughout the day. They all looked the same. Where the hell were they coming from? The windows were still closed. I kept vacuuming.
Eventually things were starting to get very irritating. I hunted for an entry point for days without finding anything and the flies just kept on appearing. I was pretty good at vacuuming flies by this point.
By day six I spotted a group of them hanging out near my Kentia palm. Aha! A fly had laid eggs in the soil of the plant. I had no idea that it was a suitable food source for larvae. Needless to say I quickly filled it with gravel and I guess that's the story of how I became a qualified Fly Detective.
paul_manias | 5 years ago | on: You can handle The Diamond with CMake
That is where CMake really shines - it takes the headache out of managing complex, sprawling builds once you get it setup, and you won't have to keep tweaking the config to manage every other dev's system. I grant that the documentation is not perfect and there is a significant time investment in getting everything 'just so', but the long-term time savings make up for that completely in my experience.
paul_manias | 5 years ago | on: SVG: The Good, the Bad and the Ugly
(path (M 368.296, 1.514) (c -0.908, 0 -1.818, 0.011 -2.716, 0.021)
(c 0.053, 0, 0.106, 0, 0.159,0) (c 147.196, 0.836, 265.306, 94.672, 267.029, 183.784)
(c 0, 0.581, 0.065, 35.087, 0.065, 35.087) (h 49.415)
(v -33.471) (h 37.094) (v -31.376)
(C 719.342, 77.099, 575.826, 1.514, 368.296, 1.514)
(z))paul_manias | 5 years ago | on: SVG: The Good, the Bad and the Ugly
For the most part, SVG path outlines are almost always defined in software like Illustrator and Inkscape. Bezier curves are beyond the average person's ability to create or modify without visual aids. Simple path constructs aren't all that common in practice and the examples I see posted here aren't representative of real-world use.
SVG does provide transform capabilities to move, rotate and scale paths easily, and those features can be applied within a text editor. For anything else there are plenty of visual tools to aid path modification. Personally I've modified many an SVG file manually, but when it comes to the paths I can't say that seeing them laid bare would be of a help to my workflow.
paul_manias | 5 years ago | on: SVG: The Good, the Bad and the Ugly
I'll throw in my 2 cents here because the responses aren't addressing why the path descriptors are stylised in this way. Whether SVG's underlying document format was XML, JSON, SGML, CSS or whatever is irrelevant. However else you did it, any alternative would be more verbose because the 'd' tag already offers the most compact way of describing vector paths in text form.
And that's the point - it's small. Even in this compact form, it's not unusual for path strings to reach kilobytes in length when floating point numbers are catered for. Thus we need the path descriptions to be as small as possible for optimal parsing of the file and keeping the file size down.
As a side-note I disagree with the author's conjecture that SVG doesn't succeed as a machine-focused language or a human-focused language. I think it serves both sides of the coin quite well in practice (certainly more-so than HTML) and a pared back version already exists in the form of SVG Tiny.
paul_manias | 5 years ago | on: A Framework for Writing Better Documentation