I won't go into a rant on the implications of this yet, but as I was working on my current job search, where I was keeping track of some data in spreadsheets, it occurred to me that I would prefer working with something a little more humane than copy pasting from terminal, spreadsheets, and webpages.
I decided to use see how far I could get programming a new application just be describing it. This is a purely anecdotal experiment, there is no control group, even.
I started by thinking about my process as a sales funnel
For each website in my list, are the following satisfied?
I was just deleting entries from a spreadsheet when it occurred to me that this was valuable info that I was losing. What I needed was a database driven application that would mark decisions as events instead of just deleting entries.
I didn't want to just build a webapp, though, because I wanted to automate as much of my work as possible.
I wanted: * a local application * backed by a database * written in Python * that could drive a web browser
Application development is iterative, so I didn't try to start with a single prompt. Here are key prompts I used.
when I press ctrl-n I want that to be like I clicked the next url in the listbox from what is currently selected. update the form so there is a keyboard shortcut to the "i" which will alter the droplist to the ignore value. Also add a keyboard shortcut so the key "s" will do change the droplist to the save value. Add a menubar to the form with a File entry which has a single entry nested in it called "Import Urls".
When this menu command is clicked, open up a dialog to browse for a file. When the file is selected, import each line of the file creating a new websites entry for it. If the entry starts with a / then also add a visits record for that website entry and set the date to the current time. Add a menubar to the form with a File entry which has a single entry nested in it called "Import Urls". When this menu command is clicked, open up a dialog to browse for a file. When the file is selected, import each line of the file creating a new websites entry for it. If the entry starts with a / then also add a visits record for that website entry and set the date to the current time. Make it so I can import text files that don't have a file extensionand this was my favorite one, adding a keyboard shortcut to my app to scroll the browser. I wanted this because often websites had job page links at the bottom and I would have to mouse scroll.
The app I eventually produced included support for:
As we keep saying, this technology will only get better and better. I'll keep developing with this and I guess the role we have will transition to a producer instead of an author.
Lines | % of lines | |
---|---|---|
ChatGpt | 510 | 95% |
PatOnlyMe | 25 | 5% |
Total | 535 | 100% |
posted 2024-03-26