spartanatreyu
today at 12:42 AM
> When it comes to things I am not good at at, it has given me the illusion of getting 'up to speed' faster. Perhaps that's a personal ceiling raise?
Disagree. It's only the illusion of a personal ceiling raise.
---
Example 1:
Alice has a simple basic text only blog. She wants to update the styles on his website, but wants to keep his previous posts.
She does research to learn how to update a page's styles to something more "modern". She updates the homepage, post page, about page. She doesn't know how to update the login page without breaking it because it uses different elements she hasn't seen before.
She does research to learn what the new form elements and on the way sees recommendations on how to build login systems. She builds some test pages to learn how to restyle forms and while she's at it, also learns how to build login systems.
She redesigns her login page.
Alice believes she has raised the ceiling what she can accomplish.
Alice is correct.
---
Example 2:
Bob has a simple basic text only blog. He wants to update the styles on his website, but wants to keep his previous posts.
He asks the LLM to help him update styles to something more "modern". He updates the homepage, post page, about page, and login page.
The login page doesn't work anymore.
Bob asks the LLM to fix it and after some back and forth it works again.
Bob believes she has raised the ceiling what he can accomplish.
Bob is incorrect. He has not increased his own knowledge or abilities.
A week later his posts are gone.
---
There are only a few differences between both examples:
1. Alice does not use LLMs, but Bob does.
2. Alice knows how to redesign pages, but Bob does not.
3. Alice knows how login systems work, but Bob does not.
Bob simply asked the LLM to redesign the login page, and it did.
When the page broke, he checked that he was definitely using the right username and password but it still wasn't working. He asked the LLM to change the login page to always work with his username and password. The LLM produced a login form that now always accepted a hard coded username and password. The hardcoded check was taking place on the client where the username and password were now publicly viewable.
Bob didn't ask the LLM to make the form secure, he didn't even know that he had to ask. He didn't know what any of the footguns to avoid were because he didn't even know there were any footguns to avoid in the first place.
Both Alice and Bob started from the same place. They both lacked knowledge on how login systems should be built. That knowledge was known because it is documented somewhere, but it was unknown to them. It is a "known unknown".
When Alice learned how to style form elements, she also read links on how forms work which lead her to links on how login systems work. That knowledge for her went from an unknown known to a "known known" (knowledge that is known, that she now also knows).
When Bob asked the LLM to redesign his login page, at no point in time does the knowledge of how login systems work become a "known known" for him. And a week later some bored kid finds the page, right clicks on the form, clicks inspect and sees a username and password to log in with.