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

Dm: @Raki_man
Download Telegram
We’re excited to invite you to a LIVE WEBINAR hosted by the EOTC Open Source Community.

This session is an introduction. and also it’s a moment to understand who we are, why we exist, and where we are going.

πŸ“Œ What you’ll gain by joining:

A clear understanding of our mission, structure, and long-term vision

Insight into how the community serves the Church and society through technology

An opportunity to see how you can contribute, grow, and belong

A chance to connect with people who share the same purpose and values

πŸ“… Date: 20th December 2025
⏰ Time: 9:00 PM
πŸ“ Platform: Google Meet

Whether you’re already part of the community or just curious to learn more, this session is for you. Come listen, ask questions, and discover how we are building something meaningfulβ€”together.

πŸ‘‰ Ready to be part of the journey? Join us and learn the heart of the community.
❀2
Forwarded from Meles Tesfay πŸ’»
Why do programmers prefer dark mode?
Because light attracts bugs! πŸ˜‚

Stay bug-free and code in peace✌️
😁2
Forwarded from KiNFiSH Farms
Better Auth Studio v1.0.73 released and it is on public beta.

[ website ] [ github ]
πŸ”₯2
Forwarded from Dagmawi Babi
The Python community got something awesome today, Ty, an extremely fast Python type checker and language server, written in Rust.

Ty
β€’ docs.astral.sh/ty

Been checking it out on some of my python scripts and it's really fast and so good. Just awesome :)

If you use Zed editor it comes by default but do checkout the installation guides incase it's not enabled on your system.

#Python #Ty
@Dagmawi_Babi
❀2
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++ πŸ₯Ά