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

Dm: @Raki_man
Download Telegram
Key takeaways from DevFest 2025

1. Open Source Software(OSS) contribution (By @Kinfe123)

- Will help you stand out

- Boosts your chance of landing a job

- Will help you develop real engineering muscles like debugging, testing, understating large codebases

- Start from the open source tools you daily use (like better-auth)

- As long as technology exists, there will always be a problem to be solved/fixed/improved.

- Leverage the time you procrastinate to explore and understand

2. Understanding the fundamentals matters and JavaScript built-in AI Web APIs (By Maye Edwin)

- Like what the heck is Github, Git, docker.

- And keeping up with the latest dev tools update is essential

- Introduced to Built-in AI Web APIs such as Translator and Language Detector APIs which are game-changers. You can use these directly inside JavaScript with just a few lines of code.
πŸ”₯1
"I've got to lock in."

A few moments later...

scrolling, chatting, watching shorts 😭
😭1
Forwarded from Codative πŸ”­
These are some amazing quotes from #Devfest 2025

These are specifically from the session by @kinfishfarms

Enjoy πŸ˜‰

#Devfest2025 #Quotes
@codative
Forwarded from Solo codes (Brook Solomon)
Introducing Totals.

All your transactions in one place

Totals is a mobile app that automatically tracks your bank transactions by parsing SMS messages from Ethiopian banks. It gives you real-time balance updates, detailed transaction history, smart analytics, and clear financial insights, all stored securely on your device.

We built it to stop ourselves from going broke πŸ’Έ

Multi-Bank Support

Commercial Bank of Ethiopia (CBE)
Awash Bank
Bank of Abyssinia (BOA)
Dashen Bank
Telebirr
more coming soon....

download here

And its open source,
please drop a star or contribute

Github


shoutout to @abelwondafrash for coming up with the initial concept and design


By detached
@interested_imbecile
@ye_we
Forwarded from Dagmawi Babi
Media is too big
VIEW IN TELEGRAM
AI-SDK's devtools is pretty epic. If you're building AI Projects this definitely is a much better DX than printing things out in your terminal.

AI-SDK Devtools
β€’ v6.ai-sdk.dev/docs/ai-sdk-core/devtools

AI-SDK and AI Gateway is oftentimes all that you need to build your projects.

#AISDK #DevTools #Resources
@Dagmawi_Babi
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