uk
Feedback
Kira Codes 👨‍💻

Kira Codes 👨‍💻

Відкрити в Telegram

A place where I share my dev journey Dm: @Raki_man

Показати більше
75
Підписники
Немає даних24 години
Немає даних7 днів
-230 день
Архів дописів
Finished watching Stranger Things final episode 😭😭😭

Good morning ☀️ Happy Monday 🙌🙌

https://bundlephobia.com/ Found this app that lets you find the cost of adding a npm package to your bundle. You can also upload your package.json file

photo content

It has been a while since I touched C/C++ 🥶

Repost 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 comforta
+1
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

Cursor Year in Code 2025
Cursor Year in Code 2025

Got this cool shirt as a gift 🔥🔥🔥
Got this cool shirt as a gift 🔥🔥🔥

Gemini is soooooo good at Amharic! 👌

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

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

Wouldn't it be better if Telegram had semantic image and video search? 🤔 Manually scrolling through thousands of pictures, videos is such a pain. 😩

Just got free domain for 1 year for my portfolio through the github student developer pack .TECH domains

How to share .env files with your team
How to share .env files with your team

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.

Repost from baka Codes
POV: when I want to sleep early @bakacodes

Repost from Dagmawi Babi
The Python community got something awesome today, Ty, an extremely fast Python type checker and language server, written in R
+1
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