Live data from Hacker News

Ask HN: AI hackday at work – what shall I work on?

news.ycombinator.com

11–20 of 35 posts

Re: Ask HN: AI hackday at work – what shall I work on?

#11

I wouldn't invest a lot of mental effort in this as the company will own the idea anyways.

I’m not thinking of anything particularly ambitious. Just something fun I can work on by myself or with a couple of others and can demo to the rest of the company (I work for a pretty small company). They won’t be bothered about “owning” the work.

Re: Ask HN: AI hackday at work – what shall I work on?

#13

The best uses of AI I’ve come across are one that are integrated well into a tool I’m already using and just make my job a little bit easier. So look for something where you could add a little box that says “summarize the messages in this thread” or “suggest a title for this note” or something along those lines.

* and that work transparently -

Don’t put a button that says “suggest a title for this note” - make the LLM create a title, put it in a placeholder that the user just has to press “TAB” (or something) to confirm

Re: Ask HN: AI hackday at work – what shall I work on?

#15
Lately I've been experimenting with using TDD approaches for LLM assisted coding. There is a little bit on YouTube and some research papers on this topic. But most of it relates to how well you understand the test suites for the given language / framework to ask for the tests to be designed in the right way.

This has been great in gpt-4o for python because it has a built in interpreter. So I can describe the way I want the API to look, ask it to write tests in Python, write the code to satisfy those tests, and then run the unit tests in it's own local python env to see if the code works.

This streamlines things a lot. I find I can get working artifacts from gpt this way when other I often have to have a bit of a back and forth where I'm the one testing and pasting in errors.

For gpt-4o this only works with python though (for now).

It might be interesting to build a platform like this, even in your local laptop that allows the LLM to shell out to a sandbox for something like React with the unit tests configured so the LLM can run them and get the output.

Interestingly, frameworks like react also have test suites around ui/ux concepts. I haven't tried it, but I think it would be interesting to use that same approach with those test frameworks to attempt to get better looking frontends (something the LLMs are not especially good at out of the box)

Re: Ask HN: AI hackday at work – what shall I work on?

#19
An AI buzzword detector. Like Battlestar Galactica had the Cylon Detector.

It doesn't have to work, like the Cylon Detector didn't. And it could be used to justify what's written by ChatGPT isn't, just like the Cylon Detector was used to show Cylons were not Cylons.

But most importantly, it can justify you keeping a job throughout the AI bubble buzz, even landing a few bonuses, before it all blows over. Just like the Cylon Detector.

Re: Ask HN: AI hackday at work – what shall I work on?

#20
LLMs are the easiest thing to use, especially if it's all one day. They are also particularly good at data transformation.

Find some data... if nothing else maybe source code or internal docs (if you can't get business data). And think about how you'd want it transformed. Graphviz graphs, CSVs, RSS... some data format that is well understood (including by the LLM), and ideally where you can dump the data into some app or visualization and you don't have to implement that part.

Now your task is collecting and chunking the data, writing the prompts to transform it, and putting the output somewhere interesting (and iterate). Doable in a shortish amount of time but can still be very cool with the right data and prompts.

Post reply on HN