this post was submitted on 23 Feb 2025
471 points (79.7% liked)

Technology

63186 readers
3688 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] null_dot@lemmy.dbzer0.com 14 points 1 day ago (2 children)

I think the idea is that you can use it for reformatting small sets of data I guess.

"make all the dates in this CSV iso-8601"

[–] nickwitha_k@lemmy.sdf.org 1 points 1 hour ago

"make all the dates in this CSV iso-8601"

This is a use of AI/LLM processing that I could agree with, if it could be trusted. Since it cannot, better to open in vim and regex replace, or process with Python.

That said, I'd rather store as epoch and display as ISO-8601 as the arithmetic is much less prone to error in epoch than any other format.

[–] TheGrandNagus@lemmy.world 10 points 1 day ago (2 children)

Genuinely very useful, however I feel that can be achieved without a login and paid AI subscription.

[–] null_dot@lemmy.dbzer0.com 3 points 20 hours ago

You're right of course.

Like the other commenter said for this specific problem you'd use a spreadsheet.

It's just an example though and there are others, like maybe removing url encoding from a string or something.

Again this can be done in some other tool without much fuss, but the versatility offered by notepad will be useful for a lot of people.

[–] lambalicious@lemmy.sdf.org 11 points 1 day ago

Heck, it probably can be done with a regex. (Yeah, I know)

There's no need to kill three forests just to do the exact same work you could have done by opening your dataset in Excel.