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. 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 π
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
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
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
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
Forwarded from αα
α α¨ αα
αα«
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.
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βοΈ
Because light attracts bugs! π
Stay bug-free and code in peaceβοΈ
π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
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:
You can write something like this in code:
Popular ORMs include Django ORM, Prisma, TypeORM, and SQLAlchemy.
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