Ethnic Vagina Finder
The Great Paper Chaser
I finally solved my first real coding problem
And it only took me 4 days
One of the functions I need the software to do is get absolute file paths. But for some reason, it wasn't working. Eventually I discovered that Svelte or any other web framework can only get relative file paths because of security concerns. So I had to find a way to have the back end do it. The front end finds the relative path, sends it to the backend, the backend finds the absolute path and sends it back to the front end.
In the beginning, I was relying on Claude, ChatGTP and Perplexity to figure out and fix the issue. But in the end, I had to do the investigation myself. I also started taking advantage of devtools, and putting event logs in my code files which makes it easy to troubleshoot.
And it only took me 4 days
One of the functions I need the software to do is get absolute file paths. But for some reason, it wasn't working. Eventually I discovered that Svelte or any other web framework can only get relative file paths because of security concerns. So I had to find a way to have the back end do it. The front end finds the relative path, sends it to the backend, the backend finds the absolute path and sends it back to the front end.
In the beginning, I was relying on Claude, ChatGTP and Perplexity to figure out and fix the issue. But in the end, I had to do the investigation myself. I also started taking advantage of devtools, and putting event logs in my code files which makes it easy to troubleshoot.