Micky Codes
Kanalga Telegram’da o‘tish
Software engineer | Game developer Let's explore the codding world.
Ko'proq ko'rsatish155
Obunachilar
+124 soatlar
+47 kunlar
+930 kunlar
Ma'lumot yuklanmoqda...
O'xshash kanallar
Ma'lumot yo'q
Muammo bormi? Iltimos, sahifani yangilang yoki bizning qo'llab-quvvatlash boshqaruvchimizga murojaat qiling>.
Taglar buluti
Kirish va chiqish esdaliklari
---
---
---
---
---
---
Obunachilarni jalb qilish
Iyun '26
Iyun '26
+8
1 kanalda
May '26
+10
1 kanalda
Get PRO
Aprel '26
+16
1 kanalda
Get PRO
Mart '26
+12
3 kanalda
Get PRO
Fevral '26
+10
1 kanalda
Get PRO
Yanvar '26
+21
3 kanalda
Get PRO
Dekabr '25
+11
2 kanalda
Get PRO
Noyabr '25
+45
2 kanalda
Get PRO
Oktabr '25
+47
1 kanalda
| Sana | Obunachilarni jalb qilish | Esdaliklar | Kanallar | |
| 15 Iyun | 0 | |||
| 14 Iyun | +1 | |||
| 13 Iyun | +1 | |||
| 12 Iyun | 0 | |||
| 11 Iyun | +1 | |||
| 10 Iyun | +1 | |||
| 09 Iyun | 0 | |||
| 08 Iyun | 0 | |||
| 07 Iyun | 0 | |||
| 06 Iyun | 0 | |||
| 05 Iyun | +1 | |||
| 04 Iyun | 0 | |||
| 03 Iyun | +2 | |||
| 02 Iyun | +1 | |||
| 01 Iyun | 0 |
Kanal postlari
| 2 | Not mine😭 | 52 |
| 3 | Idk what is the loot record in clash of clans but today is special i am getting the record amounts 🙌😋😁 | 45 |
| 4 | Today's chosen framework is Django Rest Framework which has Auth route with session setup plus best practice for folder structure and SQLite/PostgreSQL database connection to start from, have fun
GitHub Link: https://github.com/Alazar42/DjangoDRFStarterProject | 45 |
| 5 | 🎬 NileFlix: Discover movies, TV shows, and anime in one place. ✨
Features:
• Browse trending content 🔍
• Search easily
• Save favorites ❤️
• AI-powered recommendations 🤖
Built with Next.js, TypeScript, and better-auth. Powered by TMDB + external streaming embeds. ⚠️ No videos hosted.
🔗 https://nile-flix.vercel.app
Enjoy? Feedback welcome! 🙌 | 39 |
| 6 | I was working on gioui golang gui library so it was so bad and I didn't like the way of adding new widgets it is so deep nested and hard to control, and for someone comes from tools like JavaFX or Qt frameworks it much easy working on the ui separately like the following
@import "button.easy"
Window {
title: "Egg Timer"
VBox {
style: {
bgColor: "red"
}
Text {
text: "Decrement"
style: {
size: "16"
textColor: "white"
}
}
DecButton {}
}
}
DecButton {} comes from the imported file button.easy
@component DecButton {
Button {
id: decBtn
text: "Decrement"
onClick: Counter.Decrement
}
}
then setting up your main.go script with easy loader from the library i have done, that parses and stubs on to the main window using the real widgets from the gioui library, so your code will be easy as follows, the below code is even you can have a separate code to handle the events of the ui files,
Counter.Decrement this function is connected to the button from the .easy ui file
package components
import (
"easygioui"
"fmt"
)
// Counter holds the counter state.
type Counter struct {
count int
}
// Decrement decrements the counter.
func (a *Counter) Decrement() {
a.count--
easygioui.SetText("counterText", fmt.Sprintf("Counter: %d", a.count))
}
then finally your main.go looks like the blow, ik it might still look complicated but not as before😂😂
package main
import (
"fmt"
"os"
"easygioui"
"easygioui/examples/counter/components"
"gioui.org/app"
"gioui.org/layout"
"gioui.org/op"
"gioui.org/unit"
)
var ui *easygioui.UI
func main() {
// Load and cache the UI once
ui = easygioui.Load("examples/counter/ui/counter.easy")
if ui == nil {
fmt.Println("Failed to load UI")
os.Exit(1)
}
// Create app instance and bind it
appInst := &components.Counter{}
easygioui.Bind(appInst)
go func() {
w := new(app.Window)
w.Option(app.Title("Egg Timer"), app.Size(unit.Dp(400), unit.Dp(600)))
var ops op.Ops
for {
evt := w.Event()
switch e := evt.(type) {
case app.FrameEvent:
// Reset ops for the new frame
ops.Reset()
// Create a layout context for rendering
gtx := layout.Context{
Ops: &ops,
Now: e.Now,
Metric: e.Metric,
Source: e.Source,
Values: make(map[string]interface{}),
}
gtx.Constraints = layout.Exact(e.Size)
// Register and render the UI
easygioui.Register(&ops, gtx, ui)
e.Frame(&ops)
case app.DestroyEvent:
os.Exit(0)
}
}
}()
app.Main()
}
i have attached the image even I made a calculator using my own library it's still in development but to update you guys this is enough for now.
if you wanna follow or give a start here is the github link | 38 |
| 7 | Hello guys you can get free 30USD credits of claude in this website
https://tokenlb.net/sign-up?aff=T9Mg | 57 |
| 8 | Just launched my latest portfolio website.
Built to showcase my work in software engineering, backend systems, game development, and modern web experiences.
Portfolio: https://micky-codes.vercel.app
Feedback is always welcome. | 591 |
| 9 | Am mostly working on game development so my go to game engine is Godot, and besides that i love backend so my comfortable framework is FastAPI but i love em all except Spring Boot😭. | 81 |
| 10 | Just pushed an update on Equib Manager and running tests on it now.
been thinking a lot about how this whole equib system actually works in real life… and honestly my uncle is the one feeding me most of this real insight 😭
so I had to change a big part of the core structure again
now I added this thing called Contributor model
so basically:
members are not always just one person… sometimes they are like a small group
and contributors are the actual people putting money in
so payments now track contributors instead of just members
still testing everything but yeah… this feels way closer to how real equibs actually work
#equib_manager @atocodes | 64 |
| 11 | From Youtube i like these kinda contents apart from the programming
https://www.youtube.com/watch?v=yADuFx-pkNI | 70 |
| 12 | Quick update 👋
I’ve created a dedicated channel for Equib Manager 🚀
Starting from v2.0, all app updates, APK releases, new features, bug fixes, and client updates will be posted there.
This channel is mainly for clients and people using the app to stay updated and download the latest versions.
Don’t worry devs 😅 I’ll still share the build journey, code, lessons, and everything developer-related here as usual.
If you’ve been following Equib Manager, I’d really appreciate your support joining the channel or sharing it goes a long way ❤️
https://t.me/equbmanager
Let’s build this together 🚀
#equib_manager | 71 |
| 13 | Matn yo'q... | 1 |
| 14 | Try it and show us what you built, also if you have any comment you can type emmm here, 🙌🏾 | 119 |
| 15 | Just published Guaro to PyPI.
Guaro is a modern Python backend framework focused on unified REST + GraphQL APIs, async performance, automatic schema management, and multi-database support from a single model layer.
“Guaro” means “Back” in Amharic, inspired by backend systems and infrastructure(suggested by @vibybear73).
Supported databases:
- SQLite
- PostgreSQL
- MySQL
- MongoDB
Example:
from guaro import API
api = API()
api.run()
pip install guaro
PyPI:
https://pypi.org/project/guaro/
Repository:
https://github.com/Alazar42/Guaro | 141 |
| 16 | So let me tell you about my unique ability so if I sleep well I can have ideas to work on so most of the time it is for the devs community in my dream 😂😂, and for now my idea was making a backend framework Guaro which is a unified API framework for building REST APIs, GraphQL APIs, or both from one codebase, one schema system, and one execution engine. | 731 |
| 17 | Then finally "Guaro" is choosed by owner of @bearly_learning
think of it like these 😂😂
from guaro import Model
class User(Model):
id: int name: str
email: str
posts: list["Post"]
😂😂 | 104 |
| 18 | If it's more cultural or local name with a meaning it will be preferable | 120 |
| 19 | I am working on a new python backend framework trust me that will improve most of the development experience for backend ecosystem so if you have a name idea i would like you to suggest me🙌 | 844 |
| 20 | https://vt.tiktok.com/ZSxvc64At/
Liked this Metro man vs Omni man video🔥 the ending is unexpected 😂😂 | 121 |
Endi mavjud! Telegram Tadqiqoti 2025 — yilning asosiy insaytlari 
