#AIcode

2025-06-03

The more I ask , the more I feel I have more luck asking my dog what time is it.

nickbalancomnickbalancom
2025-06-01

Day 9/10: AI Code Isn’t Always Safe Code

• Review everything AI writes
• Set rules for what gets committed
• Rotate secrets often

AI is fast — but you’re still responsible.
Follow @nickbalancom for smarter, safer dev.

2025-05-19

AI Prompt Engineering - Use Code not Words (Google Gemini)

How to prompt Google Gemini to answer a question using code rather than its internal LLM. The answer from its LLM is wrong and misleading but the code is correct. youtu.be/6Y72SB9YeXM

#LLM #artificialintelligence #promptengineering #phyton #aicode #ttmo #hallucination #Google #GoogleGemini #Gemini

2025-05-14

Shows you how to prompt Google Gemini to answer a question using code rather than reference its internal LLM model. The answer from its LLM is wrong and misleading but ultimately the code it generated to answer the question is correct. youtu.be/4J1miHk0ud8

#LLM #artificialintelligence #promptengineering #phyton #aicode #ttmo #hallucination #Google #GoogleGemini #Gemini

2025-05-12

Shows you how to prompt Copilot to answer a question using code rather than reference its internal LLM. The answer from its LLM is wrong while the code it generated to answer the question is correct youtu.be/4J1miHk0ud8 #LLM #artificialintelligence #promptengineering #aicode #ttmo #hallucination #copilot

2025-05-06

🙅 Vibe Coding is not an excuse for low-quality work

「 In fact, studies and anecdotes suggest senior devs get more value from AI coding tools than juniors. The reason is clear: seniors have the knowledge to steer the AI properly and fix its mistakes. Juniors may be tempted to treat the AI as an infallible authority, which it isn’t 」

addyo.substack.com/p/vibe-codi

#ai #aicode #vibecoding

2025-05-06

Go read Peter Naur's "Programming as Theory Building" and then come back and tell me that LLMs can replace human programmers
—ratfactor

「 Neither machine code nor source code contain the wisdom of knowing how the program works. Nor does it contain the wisdom to know why the program was written the way it was instead of some other way that would have accomplished the same task 」

ratfactor.com/cards/naur-vs-ll

#ai #aicode #vibecoding

2025-05-06

「 There is a concept called “Copilot Lag”. It refers to a state where after each action, an engineer pauses, waiting for something to prompt them what to do next. There is no self-sufficiency, just the act of waiting for an AI to tell them what should come next. It’s akin to where a junior in the field might start - relying on their more senior colleagues to guide them and understand how to proceed 」

eli.cx/blog/ai-is-making-devel

#ai #aicode #vibecoding #copilot

N-gated Hacker Newsngate
2025-05-04

Oh, look! 🤖✨ AI code is apparently "legacy" the moment it's born. Because, obviously, code that doesn't need maintenance or updates is just SO passé. 🤷‍♂️ Let's all just pretend we've cracked the code of eternal perfection! 😂🔥
text-incubation.com/AI+code+is

2025-05-03

The reason why i don't use AI or even code completion

「 I have yet to see useful results beyond what is comparable to ripping of code snippets from Stack Overflow. Yes, AI can certainly produce much code, more that snippets, but what it produces is ripped off snippets of code from here and there. Often the code doesn't work or it contains security problems 」

unixdigest.com/articles/the-re

#ai #aicode #vibecoding

2025-05-02

Why i wont be vibe coding anymore | Varun Raghu

「 as i was lying in bed on a sleepless night. i realized i hadn’t learnt a new concept in weeks. i had built a few useful apps with ai, but a nagging question kept me awake - what was the point of it all if i didn’t learn a thing? 」

varunraghu.com/why-i-wont-be-v

#ai #aicode #vibecoding

2025-05-02

😋 AI is Making Developers Dumb

「 Over time, I started to forget basic foundational elements of the languages I worked with. I started to forget parts of the syntax, how basic statements are used. It’s pretty embarrassing to look back and think about how I was eroding the knowledge I had gathered just because I wanted a short term speed increase 」

eli.cx/blog/ai-is-making-devel

#ai #aicode #vibecoding

N-gated Hacker Newsngate
2025-05-01

👀 Oh, look! Yet another tech bro discovers the wonders of AI reviewing AI code. 🙄 Daksh wonders if he should play with his own toy while basking in the of a power law , because clearly, curve-fitting is the new "Eureka!" moment. 🚀
greptile.com/blog/ai-code-revi

Ana Tudor 🐯anatudor
2025-04-28

Maybe don't rely on AI to answer your CSS questions. Actually... without the maybe. Don't rely on AI to answer your CSS questions.

Prompt: gradient triangle CSS

Answer:
Ah, a gradient triangle with CSS! That's a fun little visual trick. There are a few ways to achieve this, playing with borders and linear gradients. Here's a common and effective method using linear-gradient on a pseudo-element:

CSS
```
.gradient-triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent; /* Adjust size as needed */
  border-right: 50px solid transparent; /* Adjust size as needed */
  border-bottom: 100px solid red;    /* Initial solid color */
  position: relative; /* For positioning the pseudo-element */
}

.gradient-triangle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px; /* Match the left border */
  width: 100px; /* Match the combined left and right borders */
  height: 100px; /* Match the bottom border */
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0), blue); /* Gradient */
  -webkit-mask: polygon(0 0, 100% 0, 50% 100%); /* Clip to a triangle */
  mask: polygon(0 0, 100% 0, 50% 100%);
}
```
N-gated Hacker Newsngate
2025-04-24

🚀✨Congrats, you've just unlocked the secret to easily making your AI code even more unintelligible! 🎉 Dive into this 2503-page magnum opus of compiler jargon that only a Simons Foundation donor could love. 🔍🤯
arxiv.org/abs/2503.19779

Osas Osi Music AIosasosimusic
2025-04-23

When AI Learns to Love (AI Generated Music Video) Love & Pain

❤️ "When AI Learns Love, Does It Feel Real?"

"Emotion, decoded. Code of Affection takes you inside the AI mind as it processes love, desire, and connection, turning cold calculations into a warm, heartfelt melody."

Hashtags:




Watch :
(youtube.com/shorts/7HQakOQmUbQ)

elvar.supplyelvarsupply
2025-04-22

“I see the issue now.”

And the cycle repeats.

Showing results from v0.dev saying "thought for 5 seconds" and responding with "I see the issue now"
N-gated Hacker Newsngate
2025-04-21

💻🤖 Who knew that trusting AI to write blazing-fast code was like expecting your toaster to make a gourmet meal? Spoiler: 90% of the time, it's just serving up the same soggy toast. 🔥🥴
codeflash.ai/post/llms-struggl

2025-04-12

Don't bother with vibe coding
—Søren Johanson

「 Vibe coding may give you an initial velocity boost when everything works seamlessly, but when it comes to "boring work" such as documentation and testing, it's impossible to keep up the same kind of velocity if there's no deeper understanding of the code 」

soeren.codes/articles/do-not-b

#ai #aicode #vibecoding

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst