Compare commits
2 commits
3437f5ee65
...
2a768f7aca
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2a768f7aca | ||
|
|
dccb03fd69 |
3 changed files with 6 additions and 2 deletions
1
TODO
1
TODO
|
|
@ -5,6 +5,7 @@
|
|||
- Make references(the tiny number things) appear to the side instead of the bottom on desktop, try to make it bottom of page in print or bottom of print otherwise, might need grid or float hard to say atm
|
||||
- refer to implementation here https://blog.kizu.dev/repetition-and-attribution/
|
||||
- Or just yolo that stuff with Anchor + css feature detection https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_anchor_positioning
|
||||
- https://gemini.google.com/share/b49e9d4eeb18 can't handle overlap but I can have it so js bumps when overlap is detected until it stops
|
||||
- Fix articles with inline html in them and/or links
|
||||
- fix /posts/HackBU2024/
|
||||
- ico?
|
||||
|
|
|
|||
|
|
@ -85,6 +85,9 @@ That said this tooling is still woefully inadequate in terms of maintaining code
|
|||
|
||||
Anecdotally after starting on the writing that became this post I started refactoring the code and... unfortunately I'm running into many cases where the LLM made a bad decision based on insuffiecient information or incompetence. For example it defaulted to running the nodes of the graph in a fully synchronous manner (for loop of await in Rust 😬), using strings in places where strings shouldn't go as well and it used `Arc` in places where multiple threads never cropped up.
|
||||
|
||||
Ultimately that refactor was made easier with an LLM but for better and worse it was only necessary because the code was written by an LLM.
|
||||
|
||||
|
||||
----------------
|
||||
|
||||
So, LLM Agents have recently gotten popular in some parts of software development.
|
||||
|
|
|
|||
|
|
@ -234,8 +234,8 @@ blockquote {
|
|||
max-width: fill-available;
|
||||
width: fit-content;
|
||||
/* this may bite me in the ass*/
|
||||
display:flex;
|
||||
justify-content: center;
|
||||
/*display:flex;
|
||||
justify-content: center;*/
|
||||
}
|
||||
|
||||
pre {
|
||||
|
|
|
|||
Loading…
Reference in a new issue