this post was submitted on 10 Feb 2025
139 points (91.1% liked)

Technology

62073 readers
4945 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
 

further details:

Meanwhile, the French financing will include commitments from the United Arab Emirates, American and Canadian investments funds and French companies like telecommunications firms Iliad and Orange, and aerospace and defense group Thales

A few days before France’s AI Action Summit, which kicked off on Monday, the UAE said it would invest between 30 billion euros and 50 billion euros in the construction of a one-gigawatt AI data center in France as part of a campus focused on the technology’s development.

https://www.cnbc.com/2025/02/10/frances-answer-to-stargate-macron-announces-ai-investment.html

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 2 days ago

Python is my primary language. For the way I write code and solve problems, it's the language where I need the least help from an LLM. Python lets you write code that is incredibly concise while still being easy to read. There's more of a case to be made for something like Go, since it seems like every single god damned function call ends up being variable, err := someFuckingShit() and then a if err!=nil and manually handling it instead of having nice exception handling. Even there, my IDE does that for me without requiring a computationally expensive LLM to do the work.

Like, some people have a more conversational development style and I guess LLMs work well for them. I end up constantly context switching between code review mode and writing code mode which is incredibly disruptive.