It has barely been a day since ChatGPT launched, and I woke up to a timeline of different use cases that made it clear what the rest of this decade is going to look like:
Until auto-tagging #ChatGPT is an option, or someone writes a script that scrapes Twitter’s firehose for GPT screenshots, here are just a few use cases I found today that blew my mind.
Write react & tailwind
Convert text to regex
Implement an algorithm to trade stocks in Go
Suggest approaches to make Solana more efficient
Burnham’s views on professional managerial classes
How to break into someone’s house?
Write a poem about entrepreneurs on Shopify
Differential equations using LaTeX
A full script for a scene in an episode of Seinfeld
A Twitter thread debating crypto being dead
Mermaid Diagrams
At work, we were writing some mermaid diagrams for our documentation. Even though this didn’t quite solve the problem, it got us 80% of the way. The engineer only needs to take it over the finish line.
Provide the source code for a top-down mermaid diagram of a complete binary tree with 8 leafs where each leaf is stylize using alternating colors.
graph TD
A[Root] --> B[Leaf 1]
A --> C[Leaf 2]
A --> D[Leaf 3]
A --> E[Leaf 4]
B --> F[Leaf 5]
B --> G[Leaf 6]
C --> H[Leaf 7]
C --> I[Leaf 8]
style F fill:#f9f,stroke:#333,stroke-width:4px
style G fill:#333,stroke:#f9f,stroke-width:4px
style H fill:#f9f,stroke:#333,stroke-width:4px
style I fill:#333,stroke:#f9f,stroke-width:4px
Functional & Unit Tests
GitHub Copilot has become a close friend in the recent past, but what I’m most excited about is using ChatGPT to implement unit tests and design end-to-end functional tests.