Live data from Hacker News

Ask HN: What are you working on (August 2024)?

news.ycombinator.com

11–20 of 1001 posts

Re: Ask HN: What are you working on (August 2024)?

#11
Building more Amazon scraper websites. Working on a framework to minimize the effort of creating them, and currently testing to see if I can automate most of the process with Anthropic’s Sonnet.

The most recent site is https://computerdisplayprices.com

When I’m done, I’m probably going to make a blog post or two just talking through the automation I figured out so far. LLMs are amazing force multipliers.

Re: Ask HN: What are you working on (August 2024)?

#13
Working on: https://www.mylondonhomesearch.co.uk/

To help Londoners find their perfect home by filtering for proximity to parks, river, PoIs, commute time, etc.

The website is not optimized for mobile and customers have to pay to access the functional filters/properties.

Re: Ask HN: What are you working on (August 2024)?

#16
Right now I'm mostly thinking about AI. Right this minute I'm sitting in a cafe reading a book on Multi-Agent Oriented Programming with a framework called JaCaMo[1], and later tonight when I get home I'll probably spend some time getting my Fuseki[2] server loaded with some base schemas (SKOS, FOAF, etc) as I slowly start working on getting things set up to explore some ideas around integrating symbolic logic with LLM's.

And I took my new quadcopter drone out and did some flying last night for the first time. As in, my first time flying a drone, ever. The results were... predictable. Let's just say, I bought a cheap (will wind up destroyed. In less than an hour I managed to crash it into fences, walls, bushes, cars, dumpsters, the ground, an armadillo, Elvis Presley, a 1974 AMC Gremlin, and Nickelback. Well, more or less.

It brought to mind this famous scene[3] from the movie Days of Thunder:

Harry: I want you to go back out on that track and hit the pace car.

Cole: Hit the pace car?

Harry: Hit the pace car!

Cole: What for?

Harry: Because you hit every other god-damned thing out there and I want you to be perfect.

[1]: https://jacamo-lang.github.io/

[2]: https://jena.apache.org/documentation/fuseki2/

[3]: https://www.youtube.com/watch?v=xll0VOsiE84

Re: Ask HN: What are you working on (August 2024)?

#19
I'm writing a new property-testing library for TypeScript. [1]

I wanted a way to define new Arbitraries that's easier than working with .map(), .chain(), .oneOf(), and other combinators that require you to think in terms of sets. It has those combinators, but you can also write code to randomly generate one value at a time. It uses an approach to shrinking that's inspired by Hypothesis.

Along the way, I ended up adding a Domain subclass, which also does validation like Zod. Not sure where I'm going with that, but it's also useful for generating unique keys.

(The documentation isn't done and doesn't explain what's interesting about it. Caveat: it's Deno-only, and will probably stay that way unless someone wants to help.)

[1] https://jsr.io/@skybrian/repeat-test

Re: Ask HN: What are you working on (August 2024)?

#20
I'm currently building a mobile-friendly Postgres database tool. Think dbeaver but on Android.

Writing and editing SQL queries on the phone can get tedious. Rather than just giving users a tiny textfield, I am exploring if there are better ways to build SQL queries on a touchscreen

Here's the makeshift landing page: https://getselectable.com/

Post reply on HN