5 ms·
Ask HN: What's the coolest thing you've gotten ChatGPT to do?
- JimWestergren 4y agoIt helped me build a database of around 3000 medieval names for my RPG that I am working on.
- klondike_klive 4y agoDid you even think of consulting this guy? https://www.youtube.com/watch?v=v7KofJmU1p0 https://www.youtube.com/watch?v=v7KofJmU1p0
- jasfi 4y agoJust the fact that it can have an opinion, and that opinion can be argued with is cool. Conversational-style learning and troubleshooting is also cool. Although the troubleshooting of programming issues isn't its strong point right now.
- bemmu 4y agoWe got it to write a working two player Pong game in minified JS, except you can jump in it like in Mario. It took a lot of iteration as initially it wouldn’t for example put a ground in the game, so you’d just fall forever, but one by one pointing out the mistakes actually resulted in a playable game.
- bandie91 4y agoit drew me pictures in SVG. it correctly depicted a triangle and 5 circles in different colors each and also made some flags, although not the ones i asked for. for fish it drew a hollow circle. for heart it drew a red filled circle. failed to separate circles when i asked not to overlap them. it failed to drew "Olympic Games emblem" but gave something nice instead: <svg width="200" height="200"> <rect x="0" y="0" width="200" height="200" fill="#0099cc" /> <circle cx="100" cy="100" r="80" fill="#ffffff" /> <path d="M 31.44,45.76 A 48.56,48.56 0 1,1 168.56,45.76 A 48.56,48.56 0 1,1 31.44,45.76 Z" fill="#ff4f00" /> <path d="M 70.44,65.76 A 29.56,29.56 0 1,1 129.56,65.76 A 29.56,29.56 0 1,1 70.44,65.76 Z" fill="#ffff00" /> <path d="M 50.44,85.76 A 9.56,9.56 0 1,1 149.56,85.76 A 9.56,9.56 0 1,1 50.44,85.76 Z" fill="#00b849" /> <path d="M 90.44,85.76 A 9.56,9.56 0 1,1 109.56,85.76 A 9.56,9.56 0 1,1 90.44,85.76 Z" fill="#000000" /> <path d="M 31.44,65.76 A 29.56,29.56 0 1,1 168.56,65.76 A 29.56,29.56 0 1,1 31.44,65.76 Z" fill="#00b8e6" /> <path d="M 90.44,65.76 A 29.56,29.56 0 1,1 109.56,65.76 A 29.56,29.56 0 1,1 90.44,65.76 Z" fill="#ffffff" /> </svg> for flags, it often could describe accurately how the flag of a particular country looks like but drew the French one anyways, while claiming it shows this and that color which agrees to the flag I asked for :) Interesting case for the Hungarian flag: "The flag of Hungary is made up of three equal-sized horizontal bands, with the middle band being wider than the two outer bands. The left band is red, the center band is white, and the right band is green." … and it put the flipped Romanian/Andorran flag in the svg :)
- pizza 4y ago- explain rust compiler errors and the fixes. I had never used rust before! - generate sympy for math. Could also probably have it generate mathematica/wolfram - convert a small c library to c++ and also have it generate python bindings with pybind11 - give it the spec of a simple dsl and have it generate the Lark grammar for the parser