{*}
Add news
March 2010 April 2010 May 2010 June 2010 July 2010
August 2010
September 2010 October 2010 November 2010 December 2010 January 2011 February 2011 March 2011 April 2011 May 2011 June 2011 July 2011 August 2011 September 2011 October 2011 November 2011 December 2011 January 2012 February 2012 March 2012 April 2012 May 2012 June 2012 July 2012 August 2012 September 2012 October 2012 November 2012 December 2012 January 2013 February 2013 March 2013 April 2013 May 2013 June 2013 July 2013 August 2013 September 2013 October 2013 November 2013 December 2013 January 2014 February 2014 March 2014 April 2014 May 2014 June 2014 July 2014 August 2014 September 2014 October 2014 November 2014 December 2014 January 2015 February 2015 March 2015 April 2015 May 2015 June 2015 July 2015 August 2015 September 2015 October 2015 November 2015 December 2015 January 2016 February 2016 March 2016 April 2016 May 2016 June 2016 July 2016 August 2016 September 2016 October 2016 November 2016 December 2016 January 2017 February 2017 March 2017 April 2017 May 2017 June 2017 July 2017 August 2017 September 2017 October 2017 November 2017 December 2017 January 2018 February 2018 March 2018 April 2018 May 2018 June 2018 July 2018 August 2018 September 2018 October 2018 November 2018 December 2018 January 2019 February 2019 March 2019 April 2019 May 2019 June 2019 July 2019 August 2019 September 2019 October 2019 November 2019 December 2019 January 2020 February 2020 March 2020 April 2020 May 2020 June 2020 July 2020 August 2020 September 2020 October 2020 November 2020 December 2020 January 2021 February 2021 March 2021 April 2021 May 2021 June 2021 July 2021 August 2021 September 2021 October 2021 November 2021 December 2021 January 2022 February 2022 March 2022 April 2022 May 2022 June 2022 July 2022 August 2022 September 2022 October 2022 November 2022 December 2022 January 2023 February 2023 March 2023 April 2023 May 2023 June 2023 July 2023 August 2023 September 2023 October 2023 November 2023 December 2023 January 2024 February 2024 March 2024 April 2024 May 2024 June 2024 July 2024 August 2024 September 2024 October 2024 November 2024 December 2024 January 2025 February 2025 March 2025 April 2025 May 2025 June 2025 July 2025 August 2025 September 2025 October 2025 November 2025 December 2025 January 2026 February 2026 March 2026
1 2 3 4 5 6 7 8 9 10 11 12 13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
News Every Day |

I'm an Amazon tech lead who got promoted by building AI products. Here are my top vibe coding tips.

Anni Chen says she sees firsthand how AI-assisted workflows behave not just in prototypes but under real-world scale.
  • An Amazon tech lead says she got promoted quickly by building AI products.
  • Anni Chen uses AI not just to code, but to integrate AI's output into products.
  • She laid out her top tips for vibe coding and what common AI coding mistakes to avoid

This as-told-to essay is based on a conversation with Anni Chen, who has worked in Amazon software engineering for about three-and-a-half years. It has been edited for length and clarity. Business Insider has verified her employment history.

AI helped me code, but more importantly, it helped with turning it into products. It's the combination of grasping AI and translating it into scalable products that helped me get promoted faster.

I started off as a Software Engineer I, an entry-level role, in 2022. I was in the recommendations team working on serving recommendation widgets.

About two years ago, I started working on AI products on the side. That became huge and eventually spun off into its own team, which I'm a founding engineer of.

I was promoted in the recommendations team to Software Engineer II, and then I got promoted in the current team to senior engineer.

I focus on what we call memory, which powers personalization in generative AI experiences across Amazon.

AI writes 95% of my code

I started using AI as a side project to generate engaging titles for recommendation widgets when ChatGPT and Claude emerged. I saw how powerful it is in generating something really creative.

I started thinking: whenever I have a question or I want to code something up, I'll just ask AI for help first before I attempt it.

I saw that the solution it came up with was leveling up my own code, and it helped me code more, too. Now I would say almost 95% of the code authored by me is written by AI.

I'm not just using AI to code; I also integrate AI's output into products. I need to have a deep understanding of how AI works, what works well, and what doesn't.

I have to be open and receptive to new models and tools coming out that can help with product iterations and make products better.

I work as a tech lead on large-scale LLM-driven systems in production environments, so I have a front-row seat to how AI-assisted workflows behave, not just in prototypes but under real-world scale and cross-team collaboration.

Top tips for vibe coding

The first tip is understanding the inner workings of LLMs and where they might fail.

LLMs are pre-trained — they're trained on a large corpus, and it's a probabilistic game. It's followed by supervised fine-tuning, so the model will answer based on the structuring of a question and the answering format. Lastly, it's followed by RLHF — reinforcement learning from human feedback.

By understanding these three steps, you can know, for example, when the LLM will not understand what you're talking about, and when it needs domain knowledge from you. You will know when to use a new window or why hallucinations happen.

By understanding the limitations of the context window, you know when to break problems down. You will learn how to follow the structure to break things down into lower levels, and then you slowly focus on each component and generate.

By understanding the inner workings, you also know that you have to explain things to a peer. If you don't explain in detail, it will default all those assumptions to the most common pattern, but that might not fit your use case.

My second tip: Think before vibe coding.

If you check the answer first, then your thoughts will be swayed by the answers. Compare your thoughts versus the LLM's and see what the gaps are — what you didn't know, and why the answer differs. From there, you know what implicit assumptions you haven't told the LLM.

Thirdly, prompt for hard questions. Ask questions like what is the fallback when there is an error, or how this is going to scale? This is like a teacher asking a student, or a senior engineer asking a junior engineer to make sure the hard cases are covered. If you want the product to scale, think about it from day one and be conscious about asking those scaling questions.

Lastly, review and understand. Always review at each step, not just review after the whole code is generated. This ensures errors stop early rather than cascading all the way to the end, where you need to redo everything.

Creating wrong code is very dangerous. The presence of code makes people think, "Okay, this is good, it's working." But wrong code that enters production can cause more damage than the absence of functionality.

Understanding code is still important

You have to understand your own code. AI lowers the barrier to writing code, but not the responsibility for understanding it.

If something goes wrong and the code was committed by you, you're the one responsible.

Imagine your code breaks in production, and you need to fix it, and you say, "I also don't know, AI told me." That's not the correct way.

I don't think we can entrust AI with such high-stakes tasks yet.

Understanding becomes easier with AI because it's also a perfect learning opportunity. You can simply open another window and ask it to explain the concept.

If you ask in the same window about what it produced, it will explain only in that context. But you want to understand the concept more generally and see whether it makes sense to apply in this case.

Do you have a story to share about coding with AI? Contact this reporter at cmlee@businessinsider.com.

Read the original article on Business Insider
Ria.city






Read also

Cryptio Secures $45 Million to Fix Digital Asset Accounting

Morrissey Cancels Concert in Spain Due to 'Sleep Deprivation,' Blames Hotel for Being an 'Indescribable Hell'

DHS identifies suspect in Michigan synagogue attack

News, articles, comments, with a minute-by-minute update, now on Today24.pro

Today24.pro — latest news 24/7. You can add your news instantly now — here




Sports today


Новости тенниса


Спорт в России и мире


All sports news today





Sports in Russia today


Новости России


Russian.city



Губернаторы России









Путин в России и мире







Персональные новости
Russian.city





Friends of Today24

Музыкальные новости

Персональные новости