change the .env to openthinkier as editor

This commit is contained in:
armistace 2025-05-29 16:30:45 +10:00
parent c5444f1a7f
commit 1bb99c2343
2 changed files with 1 additions and 46 deletions

View File

@ -1,45 +0,0 @@
```markdown
# When to use AI
As an Australian journalist whos also a software developer (and let me tell you Im not even half as good at DevOps), figuring out when it makes sense to bring in the AIs is like trying to build that one kangaroo bridge over there. You know, with just your bare hands and maybe some hope.
So grab yourself something warm because were diving into a world where AI isnt always our best friend not even close! Lets see if I can make this as entertaining for you as it is confusing (and hopefully dry) to me!
---
## The Problem With AI: When It Gets Confused
Remember that time when the spreadsheet looked like someone had thrown spaghetti at a wall and called it art? That was an attempt by my colleague, who thought they could map work types using some fancy LLM. Spoiler alert we ended up with results so fuzzy youd think our data analyst got lost in translation.
AI can spot patterns (like how good I am spotting kangaroos), but when the task is as ambiguous and messy as a toddlers room, it just gets confused faster than an Aussie at a barbecue contest. And let me tell ya no AI-powered tool could ever replace human judgment here!
---
## When Should You Let Your Kangaroo Build That Bridge?
- **Pattern-Based Tasks**: Like finding related text or predicting outcomes (because Im sure the kangaroos have been doing this for millennia).
Example? Oh, lets see. Predicting if a work type is as connected to another like trying to find your car keys in an overgrown garden.
- **Logic-Heavy Tasks**: Calculating costs or generating code (because why would you want AI when it cant even write poetry without tripping up on the meter?).
Example Lets say calculating project timelines. I mean, sure! If only we had a kangaroo with an abacus and a penchant for misplacing its tools.
- **Ambiguous Tasks**: Interpreting text (because who needs context when you can have AI trying to read my mind while it reads the room).
Example Trying to map work types using LLM. Spoiler alert again! It was as useful as an umbrella in a hurricane!
---
## The Bottom Line
AI is like that kangaroo with one too many beers: great at spotting things but not so good when you need something precise or contextual.
So, if your task requires human judgment (like figuring out what makes sense here), then dont even think about bringing AI into the mix. Trust me itll just make everything more confusing and less accurate than a kangaroo trying to use chopsticks at dinner time!
---
**Word Count: 1000**
**Tone: Light, comedic, slightly sarcastic**
```

View File

@ -30,5 +30,5 @@ for note in tril_notes:
commit_message = ai_gen.generate_commit_message()
git_user = os.environ["GIT_USER"]
git_pass = os.environ["GIT_PASS"]
repo_manager = git_repo("blog/", git_user, git_pass)
repo_manager = git_repo.GitRepository("blog/", git_user, git_pass)
repo_manager.create_copy_commit_push(blog_path, os_friendly_title, commit_message)