Kira Codes πŸ‘¨β€πŸ’»
77 subscribers
88 photos
21 videos
99 links
A place where I share my dev journey

Dm: @Raki_man
Download Telegram
Object Relational Mapping (ORM)

It’s a nice way to map object-oriented entities (classes/objects) to relational databases (tables/rows).

Think of it as a bridge between your application code and the database.

Instead of writing raw SQL like this:
"SELECT id, name, email, country, phone_number FROM users WHERE id = 20"


You can write something like this in code:
users.getById(20)


Popular ORMs include Django ORM, Prisma, TypeORM, and SQLAlchemy.
❀1πŸ‘1
How to share .env files with your team
Wouldn't it be better if Telegram had semantic image and video search? πŸ€”

Manually scrolling through thousands of pictures, videos is such a pain. 😩
πŸ‘2❀1
Vercel provides a free-tier analytics tool

1️⃣ Enable in Dashboard

Go to Vercel Project Dashboard β†’ Analytics

Enable Analytics

2️⃣ Install package

npm install @vercel/analytics


3️⃣ Add to your app (App Router)

import { Analytics } from "@vercel/analytics/react";

export default function RootLayout({ children }) {
return (
<html>
<body>
{children}
<Analytics />
</body>
</html>
);


4️⃣ Deploy

Deploy to Vercel and analytics start tracking automatically
Enable Vercel Speed Insights

1️⃣ Free Performance Insights

Vercel provides Speed Insights to measure real-world performance (Core Web Vitals)

2️⃣ Enable in Dashboard

Go to Vercel Project Dashboard β†’ Speed Insights -> enable

3️⃣ Install package
npm install @vercel/speed-insights


4️⃣ Add to your app (App Router)

import { SpeedInsights } from "@vercel/speed-insights/next";

export default function RootLayout({ children }) {
return (
<html>
<body>
{children}
<SpeedInsights />
</body>
</html>
);
}


5️⃣ Deploy
πŸ”₯1
Gemini is soooooo good at Amharic! πŸ‘Œ
Got this cool shirt as a gift πŸ”₯πŸ”₯πŸ”₯
πŸ”₯3
Cursor Year in Code 2025
πŸ”₯2
Forwarded from Dagmawi Babi
AI-SDK 6 is out πŸŽ‰
β€’ vercel.com/blog/ai-sdk-6

The Agent abstraction is the best, you can build any agent in the most comfortable DX way.

#AISDK
@Dagmawi_Babi
πŸ‘3
It has been a while since I touched C/C++ πŸ₯Ά
Good morning β˜€οΈ

Happy Monday πŸ™ŒπŸ™Œ
❀3
Finished watching Stranger Things final episode 😭😭😭
😒1
Forwarded from Solo codes (Brook Solomon)
Lets keep that Github green
❀1