My Impression of AI in Programming
The article discusses the author's experience using AI, specifically Google's Gemini, in programming a new tool called Tidy. The author highlights how AI helped streamline the development process by reducing the need for extensive documentation and community support. While acknowledging some limitations of AI-generated responses, the author finds it beneficial for mundane coding tasks and initial project setup.
- ▪The author used Google's Gemini AI to assist in developing a programming tool called Tidy.
- ▪AI helped the author avoid extensive reading of documentation and waiting for community responses.
- ▪The author notes that while AI can provide quick answers, they may not always be accurate or complete.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2304) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Paul J. Lucas Posted on May 24 My Impression of AI in Programming #ai #productivity #programming Introduction In a previous post, I wrote the following about using AI in developing my new tool include-tidy (Tidy) that uses Libclang, a library I’d never used before: What helped a lot was using AI (strictly speaking, an LLM), specifically Google’s Gemini (because I’m too cheap to pay for Claude, especially for a personal project that I have no intention of making any money from).
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).