I wouldn't invest a lot of mental effort in this as the company will own the idea anyways.
Ask HN: AI hackday at work – what shall I work on?
11–20 of 35 posts
Re: Ask HN: AI hackday at work – what shall I work on?
#12Re: Ask HN: AI hackday at work – what shall I work on?
#13The 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.
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?
#14Re: Ask HN: AI hackday at work – what shall I work on?
#15This 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?
#16Re: Ask HN: AI hackday at work – what shall I work on?
#17Re: Ask HN: AI hackday at work – what shall I work on?
#18The knee-jerk anti-hackday reactions are all so tedious. I guess at the end of the day we all get the autonomy we deserve.
Re: Ask HN: AI hackday at work – what shall I work on?
#19It 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?
#20Find 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.