Automatically translated.View original post

Anyone can Vibe Coding!

Shake a Simple Web with Google AI Studio, Ready to get on the web for free

Tell me, anyone can Vibe Coding!

.

Everyone says AI updates every day. Before, we used Google AI Studio to try generating photos and videos, right? We haven't been in for many months. There are a lot of updates. The team has knowledge sharing, teaching using Google AI Studio, and it can also be coded. Finished, we can use the code in Github for free! You have to try it. You can tell anyone.

.

First of all, what is Google AI Studio? is a tool that makes it easy for us to create and try out AI apps from Gemini. By typing in the prompt what we need, we can open Google AI Studio and login to access it.

So what's the procedure going on? Let's go see.

⭐ Prompt ordered an AI build of

Go to Build and put what we want to try, we can type in English or Thai, here we want a calculator that averages the input count for us, and then compares which one is the cheapest.

"'

Help make a calculator for

- Calculate the average of the input.

- Compute the price and quantity. Which is cheaper?

"'

"'

Create a website calculator for

- Calculate avg value with some output.

- Compare qualtity and price.

"'

The Model we will see Gemini 2.5 Pro. When pressed, it will be Advanced settings. We will change the model. There is Gemini 2.5 Pro and Gemini 2.5 Flash. The System instructions template will be React (TypeScript) as default and Angular (TypeScript). Then we can enter system instructions.

When we type what we want and fix the settings, press Build now, wait for AI to work, create a web for us.

⭐ Try tweaking the fix.

If you want more, type in the chat. See the difference in which one has been solved by pressing View diff or returning to the previous version with Restore checkpoint.

Besides text, we also upload files, whether they are images, text files, pdf files, and speak to order them. Another interesting thing is the add annotation feed like Firebase Studio that is framed or points the point we want. When you finish drawing, click Add to chat, it will screenshot us and tell us what to do, such as putting the average frame here.

If you want to change the name of the app, press the pen to change the name of the app and change the details. But you can't change your mind. Gosh, you can't change the prompt. If you forget that you used to type this prompt, you can see from here. Finish editing, don't forget to press Save.

What we see is the preview section. Select the Mobile and Tablet screen if you want to read the code in the code section.

⭐ Try sharing it with a friend.

Don't forget to press Publish your app, otherwise you can't share it, you can't open it, and you can check it again at Advanced share permissions. If you want to share just a few people, you can choose email like sharing a file from Google Drive.

⭐ Keep our code at Github.

First, press Save to Github to save the code, and it will go up next to us. Press Sign in to Github to continue, then select the one that is our Github user, and then press Install & Authorize to connect to our Github.

Then create a new repository, name it and set visibility to Public and press Create Git repo. Wait a minute. It will file change and commit messages that we do not have to do with it. Press Stage and commit all changes. We will get Github repo.

P.S. If we solve it in Google AI Studio, we can update Github, but if we solve the code in Github, it won't update at Google AI Studio.

⭐ Put the web up, Vercel.

In fact, there is an option to put it on Google Cloud Run. I understand that it will not be free because it thinks like pay-per-use, which some people see as sharing is probably over, haha. But it is long and then copied. It is more convenient to deploy as a website, which this Github Page does not support.

But there's another popular free one, Vercel, that works a lot.

First, go to his web and login with Github, then add New... → Project and select the desired repo. Press Import and then take to the New Project page. The Framework Preset is Vite and then press Deploy.

If the deployment is done, the white page must add this to the body on the index.html page. Because the browser does not understand the TypeScript in this project, it cannot run directly, so transpilation "to convert it to a JavaScript file (this one we ask Google AI Studio again).

"'html

< script type = "module" src =. "/ index.js" > < / script >

"'

When it's deployed, we can get urls that can be forwarded to friends, copy the domain.

If you want to solve it, you can order AI to solve it from Google AI Studio and update the code tab. To solve it, press Save and press Save to Github again. After a while, wait and finish.

I feel that the url is not pretty. Go to Settings → Domain and press the Edit button. Type the name you want, but you can not repeat what you already have, and then save.

.

You see, it's not that hard, right? What AI tools do you want to try? Comments can tell.

# Includes IT matters # Known IT # Today's story # Direct experience # Lemon 8 Howtoo

2025/11/14 Edited to

... Read moreหลายคนเสิร์ชคำว่า Google AI Studio / AI Studio แล้วเจอแต่หน้าเครื่องมือ แต่ไม่แน่ใจว่า “ทำงานร่วมกัน” (collaboration) ยังไง และต้องตั้งค่าอะไรถึงจะลื่น ๆ เราสรุปทริคที่ลองใช้เองให้แบบอ่านจบทำตามได้เลย 1) ตั้งค่าก่อนเริ่ม เพื่อให้ผลลัพธ์โค้ดออกมานิ่ง - เลือกโมเดล: ถ้าเน้นคุณภาพโค้ด/ความครบ ใช้ Gemini 2.5 Pro; ถ้าเน้นเร็ว ปรับเล็ก ๆ บ่อย ๆ ใช้ Gemini 2.5 Flash - เลือก Template ให้ตรงงาน: React (TypeScript) เหมาะกับโปรเจกต์เว็บทั่วไป, Angular (TypeScript) เหมาะกับงานที่ต้องการโครงชัด ๆ - เขียน System instructions สั้น ๆ แต่ชัด: เช่น “ให้สร้างเป็น Vite + React, แยก components, ใส่ validation, ทำ UI responsive สำหรับมือถือ” จะช่วยลดการแก้ซ้ำ 2) Prompt ให้โค้ดออกมาใช้งานได้จริง (ไม่ใช่แค่เดโม) เวลาสั่งทำเว็บ/แอปใน Google AI Studio แนะนำใส่รายละเอียดเหล่านี้เพิ่ม: - โครงหน้า: มี input อะไรบ้าง, ปุ่มอะไร, แสดงผลตรงไหน - กติกาการคำนวณ/เงื่อนไข: เช่น input ว่างให้เตือน, ตัวเลขติดลบรับไหม, ปัดทศนิยมกี่ตำแหน่ง - UX ที่อยากได้: auto focus, กด Enter เพื่อคำนวณ, ปุ่มล้างค่า - ขอ “ตัวอย่างข้อมูลทดสอบ” 2–3 เคส เพื่อเช็คว่าฟังก์ชันถูก 3) Collaboration/การแชร์ให้ทีมดูหรือช่วยรีวิว - ต้องกด Publish your app ก่อน ไม่งั้นลิงก์เปิดไม่ได้ - ถ้าจะให้เฉพาะบางคนดู ให้ไปดู Advanced share permissions แล้วใส่อีเมลแบบแชร์ไฟล์ Google Drive - เวลาส่งให้เพื่อน/ทีมทดสอบ เราชอบแนบ “สิ่งที่อยากให้ลอง” เช่น ลองกรอก 3 ค่า, ลองใส่ตัวอักษร, ลองบนมือถือ เพื่อให้ feedback ตรงจุด 4) ทำงานร่วมกันแบบแก้ไว: ใช้ View diff + Restore checkpoint เวลา AI แก้โค้ดตามคำสั่งเรา บางทีแก้เยอะเกิน ให้กด View diff ดูว่าเปลี่ยนไฟล์ไหนบ้าง ถ้าพังจริง ๆ ก็ Restore checkpoint กลับเวอร์ชันก่อนหน้า แล้วสั่งใหม่แบบละเอียดขึ้น (เช่น “แก้เฉพาะ component X ห้ามแตะ logic Y”) 5) ทริค Annotation ที่ช่วยลดการพิมพ์ยาว ฟีเจอร์ Add annotation คือวาดกรอบบนหน้าพรีวิวแล้วบอกว่าอยากให้ย้าย/ปรับตรงไหน เราใช้บ่อยตอนจัด UI บนมือถือ เช่น “ย้ายส่วนค่าเฉลี่ยขึ้นบนสุด, ปุ่มให้เต็มความกว้าง, เพิ่มระยะห่าง” ได้ผลเร็วกว่าอธิบายด้วยคำยาว ๆ 6) วงจร GitHub → Vercel ที่ทำให้ทีมทำงานง่าย - Save to GitHub เพื่อเก็บเวอร์ชันและให้คนอื่นเปิด PR/รีวิวได้ - โปรดจำไว้: ถ้าไปแก้ใน GitHub โดยตรง โค้ดจะไม่ย้อนกลับมาใน Google AI Studio ดังนั้นถ้าจะใช้ AI เป็นหลัก ให้แก้ใน AI Studio แล้วค่อย Save to GitHub - บน Vercel ให้ Import repo แล้ว Deploy ได้เลย จากนั้นทุกครั้งที่อัปเดต (Save to GitHub) Vercel จะ build ให้ใหม่อัตโนมัติ 7) เคสยอดฮิต: deploy แล้วหน้าขาว ถ้า deploy แล้วขึ้นจอขาว ลองเช็คก่อนว่าไฟล์ที่โหลดเป็น JavaScript ไม่ใช่ TypeScript (เบราว์เซอร์รัน TS ตรง ๆ ไม่ได้) วิธีที่เราเคยใช้คือเพิ่มสคริปต์ที่อ้างอิงไฟล์ .js ตามที่โปรเจกต์ build ออกมา แล้วค่อย redeploy อีกครั้ง โดยรวม Google AI Studio เหมาะมากสำหรับทำโปรเจกต์เล็ก ๆ/ต้นแบบเร็ว ๆ แล้วค่อยต่อยอดด้วย GitHub + Vercel ให้แชร์กับทีมได้แบบจริงจัง

Related posts

Learn the basics of computer science & coding ✨
This book caught my eye and I don't regret purchasing it. This book is filled with bite-sized info to learn computer science and coding, and the information was also very well presented. When I shared this book one day, I got a lot of messages about the book details so I also included them here
teal.days

teal.days

1719 likes

How to Learn Coding Fast Even as a Beginner
#codingforbeginners #programming #studymotivations #webdevelopment #learntocode
Aysha

Aysha

793 likes

CPT Coding
Here is a practice CPT coding question question. It shows how to find the CPT code for an abdominal biopsy. The CPT book has all of the different procedure codes in it. At least one CPT code must be on every claim that you submit to the insurance company. #medicalbiller #medicalcoder #medicalc
midnightcoding

midnightcoding

896 likes

Medical coding student 👩🏻‍🎓
I’ve been studying medical coding for the past year and a half, and I’ll be finishing my program in two months. I’m excited to start my career and find a job working from home, where I can use my skills to help with medical records. #medicalcodingstudent #medicalcoder #workfromhomelifestyle
Ipamskii

Ipamskii

674 likes

A desk setup with a monitor displaying a car, a laptop, and various items. Overlay text reads "5 FREE CODING BOOTCAMP Beginner to advanced" and "SWIPE," indicating an introductory image for a list of coding bootcamps.
A laptop screen displays the Codecademy website, featuring a sign-up form and text about transforming teams with tech skills. The image highlights Codecademy as a free coding resource.
A laptop screen shows the freeCodeCamp website, emphasizing learning to code, building projects, and earning certifications for free. It also displays a certification example and logos of companies that hire graduates.
5 coding bootcamps to kickstart your tech career 👩‍💻
1. freeCodeCamp - Duration: Self-paced - Success Rate: Well-known for helping learners build strong portfolios and get jobs. FreeCodeCamp has a vast community and provides comprehensive hands-on projects. 2. App Academy Open - Duration: 24 weeks (full-time) or 48 weeks (part-ti
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

514 likes

Kickstart your coding career with these 3 tools!
Are you wanting to learn to code, but do not want to pay the huge costs of bootcamps or courses? Here are free coding learning platforms/courses to look at: ✺ | Free Code Camp Free Code Camp has over 10,000 tutorials! Their tutorials cover front-end, back-end, data visualization, and so much mo
Itsleilahclaire

Itsleilahclaire

123 likes

📚 How I’m SelfTeaching Medical Coding from Scratch
Hey! 👋 I wanted to share my journey of self teaching medical coding yes, even with three kids, a packed schedule, and no prior healthcare background. If you’re thinking of diving into a new skill or career path, this might give you that little push 💪✨ 📌 Why Medical Coding? I wanted something
Jasmine Pinkk

Jasmine Pinkk

500 likes

A woman works on a laptop by a large window overlooking a city skyline, with the title "Top Free Platforms To Learn Coding" overlaid.
The Codecademy logo is displayed above a text box detailing its interactive coding lessons, quizzes, and projects for beginners, set against an orange cityscape.
The Coursera logo is shown above a text box explaining its free coding courses from universities, including assignments and peer-reviewed projects, against an orange cityscape.
Top Free Platforms to Learn Coding
If you aren’t sure if coding it for you, there are multiple free platforms you can check out to give it a shot! I started learning how to code through the following platforms around 5 years ago, loved it and decided to major in Computer Science at University of Maryland, and am now a software engin
anjali.gama

anjali.gama

308 likes

A desk setup featuring a Dell monitor, a white CHERRY keyboard, and a pink mouse, with the text overlay "easy coding projects for beginners" and a "LEARN MORE" button.
A white note card listing "Easy coding projects for beginners" including a to-do list app, personalized calculator, weather app, and simple quiz game, with descriptions for each.
An outdoor scene with a wide road lined by palm trees and buildings under a clear blue sky, with the text overlay "Comment 💻 if you'll try these projects!"
Easy Coding Projects!!
If you want to learn how to code then these are the perfect beginner projects! Here are some fun and easy projects to build your skills: To-Do List App: Create a simple app where you can add, edit, and delete tasks—perfect for practicing JavaScript or Python. ✅ Personalized Calculator: Build a
CompSkyy

CompSkyy

172 likes

Study Math & Vibecoding with me (Verdent AI) 📚🍵
Cramming for midterm math exams feels like a nightmare. I have to review all my old notes, practice math problems, and go over advanced concepts every night :(( I know I can’t do this alone, so I turned to "Verdent AI" from @verdent__ai to create my own Math Solver Agent. It helps me un
studywithemmane

studywithemmane

36 likes

Fun coding games!
#lemon8diarychallenge
ピンクの曼珠沙華

ピンクの曼珠沙華

30 likes

Best app to Learn Coding
Looking for the best app to learn coding without spending thousands on bootcamps or wasting hours on random YouTube tutorials? 📱👨‍💻 Let me save you the search: BootSelf is a game-changer for beginners. This app gives you: ✅ A 24/7 AI coding mentor — ask anything, anytime ✅ Real-time code exp
Code with BootSelf AI

Code with BootSelf AI

324 likes

Anyone Can Code with AI
Tom from AI Basics

Tom from AI Basics

0 likes

A CPT 2023 Professional Edition medical coding book, with text overlay "How I Studied Medical Billing & Coding With no healthcare background." The book's ISBN and barcode are visible.
An open medical coding textbook page, likely CPT, showing detailed codes and descriptions with handwritten notes, highlighting, and a blue Sharpie marker.
A page from a medical coding textbook, likely CPT, filled with extensive handwritten annotations, highlights, and circles around various medical procedure codes.
How I Studied Medical Billing & Coding From Home
How I Studied Medical Billing & Coding From Home With Just Two Books and No Healthcare Background Two years ago, I decided to study medical billing and coding from home. I had no healthcare experience. No idea what CPT or ICD-10 even meant. I just knew I needed a job I could do remotely —
𝓒𝓪𝓲𝓽𝓵𝔂𝓷

𝓒𝓪𝓲𝓽𝓵𝔂𝓷

589 likes

Vibe Coding: The AI Coding Trend
Vibe coding = telling AI what you want and letting it build the code. It feels magical, but also a little dangerous long-term. #VibeCoding #AICoding #TechTrends #WomenInTech #CodeWithAI
Katherine Geleta

Katherine Geleta

63 likes

A social media post by Aditya (@adityadotdev) with a Luffy profile picture, captioned 'Day 1 of vibe coding'. It shows a humorous coding error: entering '17' for age results in 'User with this age already exists'.
Vibe coding be like...
Vibe coding = AI assisted coding 😅🙂‍↕️ #fyp #vibecoding #MEME #memes #Lemon8
mimems4u

mimems4u

55 likes

Key color coding method
I trained my brain to focus on only one color per review session. One day I only looked at red, next day I review purples. It sticks better this way 📚📚📚 I used to reread the SAME page 5x, now I just follow the colors, my brain knows what to look for. I was drowning in unorganized notes. Everyt
VowArchive

VowArchive

93 likes

A man with tattoos and headphones codes at a desk with a large curved monitor, keyboard, water bottle, and plant. The image highlights an "ADHD Coding Setup" for focus.
A man codes at a desk with a large monitor, keyboard, iPad, water bottle, and plant. The image emphasizes "Desk Essentials For Success" in a minimal workspace.
A man codes at a desk featuring a DELL 49" ULTRASHARP monitor with a light bar, noise-cancelling headphones, a felt desk mat, and a to-do list. This shows a focused coding environment.
Engineering an ADHD Coding Setup
As an Engineering ADHDer, I learned the hard way that a clutter-free workspace can make or break my focus 🌟. Too much going on around me? Instant distraction. The worst part is regaining that same level of focus. So, I keep my setup minimal—just the essentials like my laptop, my iPad Air, and y
Michael Burbank

Michael Burbank

144 likes

A desk setup features a monitor displaying coding topics like DSA and Web Development, a pink Stanley tumbler, and a keyboard. Text overlay reads 'coding projects for your portfolio'.
A white box lists coding project ideas: Expense Tracker, Habit Tracker App, Recipe Finder by Ingredients, and Interactive Data Visualizer, each with a brief description.
A laptop screen displays 'one day at a time.' with a text overlay asking viewers to comment if they'll add these projects to their portfolio.
Unique Coding Projects You NEED In Your Portfolio!
Want to make your portfolio stand out? Here are some unique coding projects that showcase your skills and creativity: Expense Tracker: Build a personal finance tracker to monitor spending, categorize expenses, and visualize budgets with graphs. 💰 Habit Tracker App: Create an app to log daily ha
CompSkyy

CompSkyy

82 likes

A spiral-bound notebook displays handwritten medical abbreviations and their definitions, color-coded with various pens and highlighters. The image is titled 'MEDICAL BILLING AND CODING' and features 'STUDY TIPS' overlaid in pink, illustrating an organized approach to learning complex medical terminology.
Medical Billing and coding
Color coding has saved my behind with coding! There are SO many codes, and so many sections to go through! The billing cycles ESPECIALLY!!! I resorting form different colored pens, to different colored highlighters so they don’t all run together when reading! Highly…HIGHLY recommend a color
Ashley 💜💋

Ashley 💜💋

448 likes

The image features a laptop on a dark background with blue and green wavy lines, displaying the title "TOP AI TOOLS TO VIBECODE YOUR NEXT APP." It highlights tools for coding, backend, payments, and authentication, with the Deft Point logo.
This image lists AI tools for coding and prototyping, including GitHub for code hosting, GitLab for CI/CD, Cursor for AI-powered editing, Lovable for low-code SaaS, ValidateFast for SaaS ideas, Replit for browser IDE, StackBlitz for dev environments, and Bolt.new for AI-first prototyping.
The image presents a list of backend and database tools. It includes Supabase as a Firebase alternative, PocketBase for lightweight backend, Firebase as a service, Hasura for GraphQL APIs, PlanetScale for serverless MySQL, Neon for serverless Postgres, Railway for app deployment, and Render for cloud hosting.
27 Al Tools to Vibecode Your Next App
Want to build an app but don't know where to start? These are the top Al tools for coding, backend, payments, and authentication that make launching your SaaS 10x faster. From Supabase to Stripe and everything in between, this stack covers prototyping, databases, monetization, and user au
Deft Point Consulting

Deft Point Consulting

10 likes

Three smartphones display app interfaces for meal planning and recipes, illustrating "How to make money with VIBECODING" against a backdrop of computer monitors.
This image describes building your own app or turning PDFs into app-like web apps, featuring a meme of Dr. Evil saying, "I'll take one million dollars."
The image discusses joining affiliate programs to earn commissions by promoting vibecoding tools, featuring a meme of a man with a martini saying, "Don't mind if I do."
Is vibe coding profitable?
Yes. And I’m not even talking about the more complex versions of vibe coding. I’m talking about the non-complex, still profitable versions like: • building app-like web apps • turning PDFs into interactive tools • selling templates • launching paid communities • offering consulting or st
Bria | Social, Design, & AI

Bria | Social, Design, & AI

20 likes

A flat lay of medical coding study materials, including textbooks, index cards, markers, and colored pencils, arranged on a wooden table. The image is overlaid with the text 'Medical Coding'.
Medical Coding. 📚
Recently finished and passed my Medical Coding class now studying for my CPC exam. 🙌🏽 Any tips or tricks before taking the test❓Also, I completed Medical Terminology and Medical Billing as well. Looking forward to leveling up my career in healthcare insurance ! #medicalcodingtips #medicalcodinga
Tash

Tash

338 likes

A young woman's face is superimposed over a laptop and an open ICD-10-CM 2025 medical coding book, with text overlays 'MEDICAL BILLING AND CODING' and 'ICD-10-CM 2025'. A crying emoji is on the book, suggesting the task's difficulty.
Medical billing and coding
Anyone doing medical bill and coding ?! 😭
Xodaniixo

Xodaniixo

28 likes

A medical coding study setup on a wooden table, featuring a large blue ICD-10-CM 2025 codebook, a spiral notebook with handwritten notes, and a pen. An iPad Mini and a folded newspaper are in the background. Text overlay reads: 'I'm getting ready to study Medical Coding! My desk setup!'
Time for some Medical Coding study time!
Another day another Medical Coding study session! This is my desk setup btw! It's really my kitchen table as I don't like to be isolated in my bedroom when family is around. That and my desk in my bedroom is a mess right now. To keep things organized I take my iPad Mini (used for stud
⌨️Keyboard_Fanatic⌨️

⌨️Keyboard_Fanatic⌨️

155 likes

Why Medical Coding is a good Career
Medical Coding is a great career. If you decide to take a coding course, make sure it prepares you for an exam from either AAPC or AHIMA because those are the only 2 organizations that employers accept certifications from. My course is 16 weeks and will prepare you to take the CPC exam from AAPC. F
midnightcoding

midnightcoding

181 likes

A flat lay image shows a laptop, a coffee cup, and greenery. A white oval graphic states 'MEDICAL CODING TIP' with a pink flower. Below, large text advises: 'CONTINUOUSLY EDUCATE YOURSELF ON NEW CODING RULES AND UPDATES.'
Medical Coding Tip
Did you know that the codes are updated every year? ICD-10-CM codes are updated every October and CPT codes are updated every January. If you are planning on taking the CPC exam in 2024, you can use 2024 or 2023 books. #medicalcoding #medicalcoder #medicalcoders #medicalcodingstudent #me
midnightcoding

midnightcoding

16 likes

ICD-10-CM Coding Practice
Here's a quick video showing how to find the ICD-10-CM code for congestive heart failure. This video was originally on my TikTok, and over there I do subscription videos that are more advanced and are meant for students who are getting ready to take the CPC exam. If you're interested in
midnightcoding

midnightcoding

513 likes

A pink graphic with the text "Beginner Friendly Coding Languages" and an outline of a desktop monitor displaying code, introducing the topic of beginner-friendly programming.
A pink graphic detailing HTML, including its definition as a hyper-text markup language for web design, its front-end nature, simple syntax, and compatibility with CSS and JavaScript, alongside a browser icon and HTML5 logo.
A pink graphic describing JavaScript for web and app development, its back-end capabilities, synergy with HTML, and widespread teaching resources, accompanied by a mobile app interface and the JavaScript logo.
Coding Languages for Beginners!
These were my first coding languages! 👩‍💻 Also CSS!! It pairs perfect with html. I left it off the list just because of how it works with html, they go hand in hand! Get out and start coding👾 #code #learntocode #codingstudent #coding #embracevulnerability
LOLLIPOPAK

LOLLIPOPAK

361 likes

An overhead view of IT bootcamp prep items including a laptop, binder, headphones, notebooks, sticky notes, and pens, with text 'IT Bootcamp Prep CODING + CYBER SECURITY'.
A laptop displaying an 'Intro to HTML' course page, accompanied by a mouse, highlighting the computing setup for the bootcamp.
Packages of assorted gel pens and colorful dual-tip markers, essential writing tools for studying and note-taking.
Coding + Cyber Security Bootcamp Prep
HEY GWRLS🎀 I have officially enrolled into IT Bootcamps *screaming insideee* (Coding + Cyber Security to be specific).. I’ve been thinking of going into the IT field for over a year now + I finally took the brakes off and I’m fully committed! This is super exciting for me because I was that
Ohmyguillen

Ohmyguillen

79 likes

The image shows an open ICD-10-CM coding book with alphabetical tabs, illustrating how to find the code for endometriosis.
A hand points to the 'E' tab in the ICD-10-CM book, demonstrating the first step to locate a code in the index.
The image displays the ICD-10-CM Index to Diseases and Injuries, highlighting the 'Encounter - Endometriosis' section to find the relevant term.
ICD -10-CM Coding Practice
Medical coders use the ICD-10-CM book to find diagnosis codes. There are thousands of different codes. There are many rules and guidelines that a coder needs to understand :) The examples that I post are for people to just learn and see the basics. If you want to become a medical coder, my next
midnightcoding

midnightcoding

507 likes

5 high paying tech jobs that doesn’t need coding
1. Product Manager - What to study: Business, project management, or a tech-related degree with a focus on understanding customer needs, product life cycles, and market research. Knowledge of Agile methodologies is beneficial. - Job description: Oversees the development and success of a pro
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

261 likes

ICD-10-CM coding practice
Here is a quick video showing how to find the code for sprained ankle in the ICD-10-CM book. If this app gets banned you can find all of my coding tutorials on Yo*Tube. #coding #medicalcoding #medicalcoder #medicalcodingcourse
midnightcoding

midnightcoding

193 likes

A desk setup with a white keyboard, ergonomic mouse, and pink notebook. Text overlay reads 'ACE YOUR TECH INTERVIEW' with an A+ symbol, indicating the article's main topic.
A desk with a computer monitor displaying a learning platform, a white keyboard, and colorful pens. Text overlay says 'PRACTICE PROBLEMS DAILY' and 'Use platforms like HackerRank or LeetCode to improve.'
A desk with a computer monitor, white keyboard, notebook, glasses, and a tablet. Text overlay states 'FOCUS ON DATA STRUCTURES' and 'Understand arrays, stacks, and trees thoroughly.'
How To Prep For Your Coding Interview!
Coding interviews can feel super intimidating, but the right prep strategy can make all the difference. Whether you’re a beginner or brushing up for your next big opportunity, here are some tips to help you crush it. Practice problems daily. Platforms like HackerRank, LeetCode, and Codeforces ar
CompSkyy

CompSkyy

32 likes

Step 6: Coding ICD-10-CM
Check for “Excludes” notes In the Tabular: Excludes1 = NEVER code both together (mutually exclusive). Excludes2 = Both can be coded if both apply (the condition listed is not part of the first one). Why you care: this prevents you from double-coding something that’s clinically the same thing
Melea King

Melea King

34 likes

Want to Learn How to Vibe Code?
Did you know you can get certified in vibe coding? If you’re ready to level up in 2026, this is it! Comment “Me” for info. #vibecoding #ai #level up #cr8tiveai #2026
Cr8tive Ai

Cr8tive Ai

3 likes

Future billing & coding tech 🥰
I just started this program in September. It’s a 3 month program. Soo far I’ll give it a 7/10. It’s not bad it’s just ALOT to remember and take in. What are some great study tips? Anything would help! I honestly feel like my modules are not providing the information I should be knowing. #codingstu
116.cherryy

116.cherryy

120 likes

An image promoting a medical coding course starting in September. It's a 16-week program preparing for the AAPC CPC exam, including materials and weekly live Zoom instruction. The text is overlaid on a desk with a keyboard, a medical coding book with tabs, and a hand.
Medical Coding Course Info
My next medical coding course starts in September. It is a 16-week program to help prepare you to take the CPC exam from AAPC. My program includes everything that you need to be successful, but I think the most important part is the live instruction component. We complete coding questions together
midnightcoding

midnightcoding

80 likes

A handwritten 'Bible Highlight color coding System' in a notebook, showing different colors assigned to various biblical themes. Purple is for God, pink for women/family, green for faith/salvation, red for love/grace, blue for wisdom/teachings, yellow for worship/miracles, orange for males/history, and gray for evil/sin/judgment.
Bible Highlight (color coding system)💜🩷💚❤️💙💛🧡🩶🤍
Nadia lang

Nadia lang

178 likes

Morning Routine for Medical Billing Coding Class 📚
Short video but these are how my Saturday mornings go at 8:30am. Although sometimes tiring I love the course and can’t wait to take my CPC exam. #medicalcodingstudent #medicalcoder #medicalcodingcourse #embracevulnerability
Tajah🌸

Tajah🌸

241 likes

Coding and My Analog Hobonichi Planner Spread
It's been such a quiet summer for me. I'm trying to make my own website from scratch and it's fun but... I get lost in the code hole for long periods of time. I forgot how difficult simple ideas can become when you aren't a real programmer. 😅 📜 Hobonichi cousin #planner #plann
J Winsor Art

J Winsor Art

82 likes

Medical Coding Tips
Medical coding can be difficult to learn in the beginning, but it is so worth it. It's a great career and you can go into many different directions with it :) How much do you know about medical coding? It always surprises me when people don't know what a medical coder does. Sometimes I f
midnightcoding

midnightcoding

21 likes

We used vibe coding, Base44, and Lovable
Tonight’s live was pure magic! ✨ We created a system that actually builds brand board mockups—yep, real image outputs! We used vibe coding, Base44, and Lovable to make it happen. We’re taking DIY branding to the next level!
KENDRAKREATEDIT📲

KENDRAKREATEDIT📲

14 likes

A person with long brown hair and white headphones sits at a desk, looking at a computer monitor displaying code. The desk features a digital clock, keyboard, mouse, and decorative lights, emphasizing a focused coding study environment.
A tablet displays notes on Big O Notation properties, with overlaid text emphasizing understanding code over memorization. A white keyboard and glasses are visible in the background, highlighting a study setup.
A handwritten index card defines 'Data Structures' on a desk with two candles and pens. The word 'practice.' is repeated three times, reinforcing the importance of hands-on coding practice.
I Was Failing My Coding Class Until I Did THIS!
Okay let’s be real, when I first started my coding classes, I had no idea how to study. I thought I could treat it like any other class: take notes, reread slides, maybe cram before exams… yeah no. That method had me struggling. I was barely understanding the material, my code wouldn’t run, and
CompSkyy

CompSkyy

31 likes

A desk setup with a monitor displaying code in Eclipse IDE and an open textbook, with text overlay "LEVEL UP your coding skills!" and "START", introducing methods to improve coding skills.
A MacBook keyboard and an iPad showing handwritten notes on cache performance, with text overlay "level 1 Solve a simple algorithm" and "Try problems on platforms like LeetCode or HackerRank."
A person standing at a FlexiSpot desk, working on a MacBook, with text overlay "level 2 Build a small script" and "Automate a simple task like renaming files or fetching data."
The One Where We Get Better at Coding!
It's 2025 and we need to IMPROVE our coding skills girl! Here's how I'm doing it: 1️⃣ Solve a Simple Algorithm I hop onto platforms like LeetCode or HackerRank and pick a beginner-friendly problem. It’s not just about solving it but learning how to break the problem down into smalle
CompSkyy

CompSkyy

131 likes

Medical Coding Tip
One of the most important things you can do if you are a medical coding student or someone who is new to the field, is try to get a medical coding mentor. This could be a teacher, or a co-worker, but there are many experienced people who like to help new coders and show them the ropes. I was fo
midnightcoding

midnightcoding

24 likes

Recently got into coding!✨
It’s surprisingly fun,especially when you run a code successfully🙌🏼 such a great sense of achievement!!! P.s. the website that got me hooked: codebay👈🏼 #codinggirl #study #lemon8partner #learning #selfimprovement #techgirlie #studywithme
Aura✨

Aura✨

41 likes

Coding for the girlies
#benfn #fn #fortnite #proof
✞ ᶻᵃᶜʰ ✞

✞ ᶻᵃᶜʰ ✞

0 likes

See more