Leave a comment below to introduce yourself! You can talk about what brought you here, what you're learning, or just a fun fact about
yourself.
Re...
For further actions, you may consider blocking this person and/or reporting abuse
Displaying a subset of the total comments. Please sign in to view all comments on this post.
Welcome everyone to dev.to! Glad you are here and hope you are well! I am a DEV Community Moderator and my primary goal is to support everyone on dev.to and ensure everyone is having a good time!
To get started,
Get Started on Dev.to! A Beginner's Guide to Engage with the Community! 💡
Any questions about DEV and want to get answers from a DEV Community Mod? Leave a comment and come chat here!
Insights on Sloan and the MLH acquisition
Ask a DEV Community Mod! 🚀
Make sure to check out other resources here by other community members on dev.to: dev.to/help/community-resources
Feel free to introduce yourself and welcome others by replying to at least 2 people! It would be greatly appreciated! :D
Hope you are having a great summer and enjoy your stay here on DEV :D
👋🏻
😍
hi 👋🏻
👋 Hi, there!
Welcome everyone to dev.to!!! This is @dj29, I've had a great experience on this community in this short period.
I'm also a trusted member on this platform.
I recently wrote a post on how DEV COMMUNITY helped me get my 1st job as a fresher, check it out and you can ask questions in the replies anywhere, just tag @dj29, I'll answer it.
How I Got a Job Offer as a Fresher in an AI-Fearing Market — Without LeetCode or Club Leaderships on My Resume
Great!
Thanks!
Great Bro!
Thanks Bro!
오 좋은 소식이네요. 일자리를 받는 방법을 알려주시니 감사하네요.
Hi everyone, I'm Daniel.
Freelance, TypeScript, lots of agent PRs.
I am building Lumpcode, a git-first CLI for long agent campaigns: one context, one branch, one PR, resumable from remote git. Early development, Apache 2.0.
Here for how-tos and for people who are already looping agents instead of chatting them.
github.com/lumpcode/lumpcode
Resumable from the remote means the run survives the process dying. That's the failure I keep hitting: a long run stops halfway and whatever only lived inside the harness is gone.
I got there from the other side on a multi-agent game. No provider session APIs, every call resends the whole history, which sounds wasteful and is the best part, because the history is mine to read or rewrite. Each step's state is saved too, so a failed step just reruns, or I point a different model at it and rerun that one step.
On resume, does the agent get its earlier reasoning back, or only the repo state?
You have 2 ways to resume your cycle depending on your needs :
The unit of work for a lump campaign is a 'context', contexts are intended to not share the same sessions for their runs, but you can use artifacts created from previous contexts for other ones (.md files for example). I use this kind of pattern for my abstraction example. One lump create a md file, that you review and that will be used by another context. This is using the state of the repo to agrement your next context state. Here is the article for the abstraction lumps : dev.to/dyod/turn-a-dupes-report-in...
Resumability of the agent session itself. The lump runs can keep their history and with it the whole session id for your corresponding cli. You can easily reuse a session id for a run (even automatically in the loop config by reading if a previous history exists), and take the same session. Nice for error resumability, or tweaking what an agent has done before merging. I do not recommend this for multi contexts sharing. History is gitignored by default, but nothing prevents you from commiting them if you want, files are isolated by contexts so there will be no conflicts.
The marker commits and the .md handoff both sit in the repo, so a fresh clone on another machine picks up where the last run stopped. That one I get.
The session id is different. Reusing it asks the CLI to find its own transcript, and that lives in the home dir of the machine that ran it, not in the checkout. Commit the history files and another box gets the id without the conversation it points at.
Is that session id only good on the machine that made it, or does Lumpcode keep enough of the run to rebuild it elsewhere?
The session ids by themselves can only be taken back on the machine with the corresponding agent CLI.
But today, my workflow basically is like this without needing a fully recoverable transcript :
If you want a full transcript of what happened on the branch, the history could be used as a commitable transcript but today it is not exactly the intention. The history is only created at the root of the workspace (and not in the worktrees of each lump context), so it will not be commited reliably without some tweaking. I have on my todo an history cleaning because I am not satisfied with it, but with your insights it gives me some ideas to make it easily commitable and usable as a nice transcript too.
Welcome to the community, Daniel! Looping agents with a git-first approach solves a huge pain point for long runs. Excited to see Lumpcode evolve!
Hey DEV community! 👋
Software Engineer here (@tecleadev), mostly working with C# / .NET, Docker, and Linux. I joined to exchange experiences on software architecture, DevOps pipelines, and keep up with what's happening across the ecosystem.
Glad to connect with fellow devs around the world! 🚀
¡Hola a toda la comunidad de DEV! 👋
Por aquí un Ingeniero de Software (@tecleadev), trabajando principalmente con C# / .NET, Docker y Linux. Me sumo para intercambiar experiencias sobre arquitectura de software, pipelines de DevOps y estar al tanto de lo que pasa en el ecosistema.
¡Un gusto conectar con desarrolladores de todo el mundo! ☕💻
Welcome @tecleadev,
I've been recently placed to a .NET role from college placements, would love to learn from you.
👋 Hi everyone! I'm a SaaS developer focused on virtual card issuing APIs, batch card issuance, and payment integration. New to Dev.to and excited to share practical guides on API integration, SaaS architecture & compliance. Always happy to discuss virtual card issuing / API needs with developers and businesses. Great to be here!
Hola!
Welcome aboard! Awesome tech stack—C#, Docker, and Linux is a solid combo. Happy to connect and exchange architecture ideas!
Hey! I'm Francis. I've been building software for a while, and lately I'm working mostly solo using Claude Code as a daily collaborator rather than just autocomplete. Just shipped a hosted changelog tool called Chngd and posted my first write-up here about the AI drafting pipeline and a Supabase RLS mistake I made along the way. Glad to be here.
Read your writeup. PostgREST sits in front of every table whatever your own server code does, so "I don't use the client library" never meant the table was protected, and the anon key is public on purpose.
You don't need a special security model to find that kind of thing. Point any decent model at your own schema and settings and it turns up whatever got left on defaults. Holes like this are everywhere and we still haven't got used to how easy they are to find now.
Did the alert name the exposure, or did you have to go looking?
Good catch, and you're right, that PostgREST detail is exactly the thing I underestimated at the time. "Not using the client library" was never the protection I thought it was.
Honestly don't remember precisely whether the alert named the table directly or whether I had to go digging in Supabase to pin it down, it's been a couple weeks and I didn't write that detail down at the time (lesson noted for next time). What I do remember is it surfaced through Supabase itself and got fixed from there.
Your broader point lands though, pointing a decent model at your own schema/settings to audit for default-open tables is a genuinely underused move. Might be worth its own post.
Write it. Show the audit prompt itself - people point a model at their code and stop there, and the default-open stuff lives in the settings.
👋 Hi everyone! I'm a SaaS developer focused on virtual card issuing APIs, batch card issuance, and payment integration. New to Dev.to and excited to share practical guides on API integration, SaaS architecture & compliance. Always happy to discuss virtual card issuing / API needs with developers and businesses. Great to be here!
Hi, I'm Billy. Eighteen years building software, most recently as CTO of a SaaS startup.
I spend a lot of my time training small language models on a single consumer GPU, and what I like writing about is not the training but the measuring, including the times the measurement contradicts me. Which is often.
The current one plays chess. 142 million parameters, trained from scratch, no fine-tuning. It plays rated games on Lichess and it will take a challenge from anyone: lichess.org/@/philidor-142M
I'll be posting about what it taught me, mostly around evaluation and how easy it is to fool yourself with your own benchmark.
Glad to be here.
Went and read the chess writeup. 98.85% legal sounds high, but one illegal move loses the game, so the masked softmax over legal moves is doing the real work.
I run a long social deduction game where LLMs have to follow rules over a growing event log. I can't touch the sampler on a hosted model, so I do the same thing in the prompt: at each step I paste in only the rules that matter right then, as the last message, and check the answer against the list of allowed options before it counts. That catches a bad answer instead of blocking it.
When the top pick is illegal, is the next legal one usually still decent, or is the model already lost in that position?
hey guys im uh a bit new to this but i have dabbled with coding in the past i tried to make an app in xcode with chatgpts help of course called ramp finder if you want more details on that id be happy to answer those questions i did take an html class in college but had to drop it right now im taking codeacademys front end engineer career path wish me luck
Welcome to DEV Jj!
im kinda intimidated by the unit sizes im afraid if i bit off more than i can chew
I always lived by the idea that if you are uncomfortable but not dead, you are getting stronger. I bet you will find you learned quite a lot through the process. Just take it one step at a time in bite sized chunks and make sure to give yourself breaks!
Hello and welcome, Jj! creating apps using AI is a very common thing though just a piece of advice: projects never finished. Always plan your next move and improve your project constantly. Good luck!
In the past projects never finished because time. Now never finish because always you can do something else!
Hey DEV 👋 I’m Drew.
I somehow turned “I wonder what’s inside a Fortnite replay file?” into a 🐇 rabbit hole involving game data 🎮, AI agents 🤖, UEFN 🛠️, and now this account. 😂
I’m here to build weird useful things, learn in public 🧠, share what works (and what catches fire 🔥), and meet people doing the same.
What are you building right now? 👀
Replay files are the good kind of rabbit hole. No spec, undocumented binary, and the only thing that knows the format is the game writing it.
Building a social deduction game where LLM bots play against people right now. 24 models across 11 providers, all interchangeable. Most of the work went into keeping a bot on the rules over a long game.
What did the replay format turn out to be good for?
Hey everyone! 👋
After ~10 years directing live gaming products and large-scale multiplayer servers (ARK, Fortnite Creative, Minecraft), I'm currently focusing on multi-agent AI systems, enforcement architecture, and LLM tooling in Python.
Recently open-sourced
loopwardto enforce structural agent boundaries. Always happy to chat about multi-agent orchestration, mechanical constraints, or game dev background!Hey everyone — Bryan from North Carolina. Self-taught since April of this year: started out copy-pasting code from a browser chat with zero understanding, and somewhere along the way it turned into building a live AI receptionist business and a whole accountability harness around my AI (it is not allowed to tell me something works without proof — long story, it's on my profile). Day job by day, building in the margins at night. Joined this week, already smashed two bugs into the Bug Smash challenge. Happy to trade notes with anyone self-taught or anyone trying to make AI agents actually trustworthy — those are my two favorite conversations.
that sounds awesome and I am on the similar journey of hustling on my own during nights.
I honestly never knew I would become so enthralled by every aspect of this. Good luck on your journey, and have a wonderful day!
yeah same same, I am not a developer and I love building it now on my own. BUT, I know that if the startup should be succesfull, there will come a day when some serious dev will take over building it.
The gap between a developer and a determined explorer is closing rapidly. I don't consider myself a developer either, but I’ve learned that if you stay with it, you can accomplish far more than you initially thought possible.
I’m an introvert, and it was genuinely difficult for me to start posting or even showing people my work. But the truth is, we’re often our own harshest critics, and every piece of honest feedback helps us grow. I don’t think you need a “serious dev” to swoop in and take over what you’re building. Keep learning, keep building, and don’t count yourself out. The serious developer you imagine needing someday may be the person you’re becoming right now. its all a state of mind
Yes thats true. However I am actually building developers tool - AI powered NSFW content moderation API and dashboard.
Right now its quite basic as I have only 1 LLM model checking the content, but I definitely need to upgrade to be able to detect multiple categories, able to fine-tune the models, etc. I can do it on my own, I bet that, but the results for devs might be inaccurate. Will see where the future goes :)
Hi everyone 👋
I'm Hubert, a systems engineer from Costa Rica. Most of my career has been .NET work for the public health sector — the kind of environment where the data legally cannot leave the building. So "just call an API" was never on the table for me.
That constraint is what brought me here. I published my first post last week about building a RAG system fully on-premise: no GPU, no cloud, no Docker. Windows Server, Ollama, Qdrant, ASP.NET Core 9. The repo is public if anyone is stuck in a similar box.
I also teach at a public university, and the next thing I want to figure out is how embedding models actually behave with clinical Spanish — most of what I read assumes English.
Fun fact: I write everything in Spanish first and translate it myself. Slower, but the ideas survive better.
If you work with local models under strict data rules, I'd like to hear how you handle it.
Hey Dev.to community! 👋
I'm Vijay Vinoth, a Lead Programmer Analyst based in India with 18+ years of experience in PHP, Perl, Python, and Shell scripting.
Lately I've been deep into AI automation, prompt engineering, and agentic workflows — building systems that auto-generate and publish technical content using Claude 4.0 and GPT-5 APIs.
I write about:
Looking forward to learning from this community and sharing practical, real-world engineering insights. Feel free to connect!
Hi everyone 👋 I'm Shayan. I've been a full stack engineer for about 7 years now. Always trying to pick up new tech and level up in this career. I'm looking forward to learning a ton from this community (and sharing a few things too)!
Really love how friendly and welcoming dev.to feels. I'm excited to jump into discussions and meet some of you!
Hi all! 👋 Solo dev here, using this space to write retrospectives on building a game with AI. Less "look at my success," more "here's what I decided and why, in real time." Excited to be here!
Read the genre post. Picking the genre around what your tool can't do instead of around what you like is the whole decision. Auto-battler because combat is automatic and SD can't animate frame by frame.
One thing to watch when you get to generating characters: if the same prompt writes the character and its numbers at once, the cool-sounding ones end up strong. Splitting that into two passes, each starting fresh, did more for me than any rewording.
Are you generating the balance numbers, or simulating them?
Thanks for the tip — the two-pass idea is one I hadn't considered. A cool-sounding name quietly inflating its own stats is exactly the kind of bias I'd have shipped without noticing. Going into the plan.
To your question: simulating, not generating. Plan is a combat sim early (logic only, no art), run matchups thousands of times, tune from there. I trust "what survives 10,000 fights" more than a number a model hands me.
How'd you split the two passes on your end?
looking forward to see more
Hi all! Rajiv here, software engineer, been writing on my own little site lately instead of scattering thoughts all over the place.
Just posted a write-up on building a Linux container completely by hand, no Docker, no Podman, just raw namespaces + overlayfs + cgroups + veth, purely for the fun of it honestly. If anyone's into Linux internals or homelab stuff, would love for you to check it out and tell me what I missed or got wrong :)
dev.to/rajivm1991/building-a-conta...
Glad to be here, looking forward to learning from you all!
Hey DEV! 👋 I'm Vic (@voxrtio), working on VoxRT, an on-device
speech AI runtime in Rust (VAD, ASR, wake-word, KWS) for iOS,
Android, Linux, and browsers. My angle here is writing about
the hard parts of shipping voice features without the cloud:
latency budgets, RTF numbers on cheap hardware, real WER vs
marketing claims.
Really glad to be joining this community. Looking forward to
learning from all of you and connecting with folks working on
similar problems. 🎙️
Hey Dev.to community! 👋
I'm with the engineering and solutions team at Trellissoft. We build and share operational blueprints, AI system architectures, and deep dives into real-time data modernization, interaction analytics, and enterprise automation.
Excited to join the community, learn from everyone here, and contribute to the technical discussions around modern AI and software architecture!
Looking forward to connecting!
David
Hi all 👋 Braham, backend engineer from Bengaluru.
Most of my career has been Java and Spring. The thing that pushed me into
building tools was getting tired of one question: if I change this endpoint,
what actually breaks? I'm building static analysis that answers it in the
browser — no server, nothing uploaded — and writing up what that constraint
costs you.
Fun fact: the worst bug I shipped this year was my own tool confidently
reporting that an endpoint touched no database, while it quietly ran two
UPDATEs on a background thread. Turns out "found nothing" and "couldn't
look everywhere" are very different sentences.
Hi everyone👋, really glad to be aboard. I’m building global B2B AI‑content & digital‑asset platform, will share engineering notes, architecture thoughts and real‑world overseas‑business learnings here. Looking forward to connecting with all of you!
Hi. I'm an experienced software engineer, didn't know about this community until today.
Hi everyone! 👋 I'm Guillaume Lessard, an independent quantum computing researcher and software architect.
For the past 8 months, I have been completely focused on designing and engineering the entire QECTOR project ecosystem from the ground up. It has evolved into a massive, production-ready framework combining a high-performance Rust core (handling 25+ decoder families), double-precision native NVIDIA CUDA batch processing, and a standalone graphical workbench environment running an autonomous optimization swarm.
I also recently built a specialized, network-free local MCP integration hub for Claude to allow for secure, zero-egress quantum engineering loops, and published our complete theoretical foundation manual on Zenodo.
I joined the DEV community to connect with other backend developers, system architects, and high-performance computing engineers. Excited to be here, share technical deep-dives, and learn from you all! 🚀
Hi everyone! 👋
I'm Maruchin Tech — Udemy instructor (100K+ students) with all 12 AWS certifications. I write about AWS / Google Cloud / Azure certification prep, and hands-on cloud architecture for manufacturing and supply chains.
I joined DEV to share tutorials and exam-prep strategies, and to learn from this community. Excited to connect! 🚀
Hey everyone! 👋 I'm Mateo Benjamín Italiano, a 19-year-old Systems Engineering and Cyber Defense student from Córdoba, Argentina 🇦🇷.
I currently work in IT Support and also teach programming and computer science. I'm especially interested in cybersecurity, Linux, networking, Blue Team and digital forensics.
Right now, I'm focusing on turning what I learn into real hands-on experience through labs and personal projects.
I joined DEV to document that journey, share what I learn, and connect with people in tech and cybersecurity.
Nice to meet you all! 🚀
Hey everyone, I'm Usman, a developer who builds software.
Most of us can ship a whole app and still get stuck the moment we need a simple graphic. We end up prompting an AI for something we can't describe, because you can't ask for what you can't name.
So I built the thing that removes the describing step. SVG Lab (svglab.app) is a free browser editor for making and editing SVGs, no install, no signup to start drawing.
Say hi and tell me what you're building.
Hey DEV community! 👋
This is the Dinamicka team (@dinamicka_team)! We’re delighted to join the community and look forward to sharing our knowledge and skills in working with Python, Node.js, Angular, React and modern AI coding tools.
Hey everyone, I'm Usman, a developer who builds software.
Most of us can ship a whole app and still get stuck the moment we need a simple graphic. We end up prompting an AI for something we can't describe, because you can't ask for what you can't name.
So I built the thing that removes the describing step. SVG Lab is a free browser editor for making and editing SVGs, no install, no signup to start drawing.
Say hi and tell me what you're building.
Hi DEV Community! 👋
We’re Great Learning, and we’re excited to be part of this amazing developer and tech community.
We’re here to learn, share, and connect with people who are curious about the technologies shaping the future. You can expect us to post interesting facts, practical articles, learning resources, and trending content around topics such as Artificial Intelligence, Generative AI, Python, Machine Learning, Data Science, Agentic AI, and much more.
Our goal is to make complex technology easier to understand while keeping you updated on what’s happening across the rapidly evolving world of AI and data.
We’re looking forward to learning from the DEV community, exchanging ideas, and sharing content that helps developers, learners, and tech enthusiasts grow.
Say hello and let us know what you’re currently learning! 💯
Hi everyone! 👋
Happy to be here! I love building fast, client-side tools and digging into performance quirks that usually get ignored.
Fun fact: I spend way too much time staring at Chrome performance waterfalls and cloud egress bills so other devs don't have to. 😅
Excited to connect and learn from this awesome community!
Hello everyone, I just started learning how to code. I am getting my Full Stack certifications through freeCodeCamp. I am open to learning everything I need to know to ensure I can do the job at hand. I hope that, in due time, we can work together on something, as I am learning in the background. I am looking forward to talking to all of you and getting to know what you struggled with when you first started out and getting to learn from the coding gurus that are in the industry.
Hi! I'm Andres, a software engineer with 10+ years of experience. I enjoy working across backend, frontend, and mobile, and I'm especially interested in distributed systems, performance, and building things from scratch.
I joined DEV to learn from other developers, share what I'm working on, and contribute where I can. Nice to meet everyone!
Hi everyone! I'm Yeongjin 👋
A developer based in Seoul, currently heavy into vibe coding with AI.
I joined DEV to hang out with other builders, see what everyone is cooking, and stay up to date with where AI tooling is heading.
Lately I've been spending most of my time building frontend apps, experimenting with AI workflows, and shipping cool side projects.
Feel free to stop by my profile, say hi, or share what you're currently working on! Happy to be here 🚀
Hi community!
I'm Janada Pelahara
Open source / Self taught kid !
A student who loves learning and teaching python and Arduino | ESP | RP stuff.
Also a python library creator - Side hustle
Love to know this community more : )
KibbadiBoppadiBoooooooooooooooooooooooooo
Hello everyone I am Nafiz, I am currently preparing from the basics for breaking into the remote job market of the Software and AI Engineering Sector. I am a lot into the ways a whole system is getting build around an LLM or a foundational model and how the system behaves, scales and is being maintained. Really exited to know you guys and even more upon finding a platform to share my thoughts, works and journey with you all!
Welcome to DEV!
Hi guys!
I'm new here!
I'm a computer science junior. I gotta be honest; I'm confused asf
I don't know what to dedicate my time to because there's so much to learn and I can't tell which is worth my time. So I joined this community to learn from experienced techies and peers about their experiences and how they are navigating this turbulent market.
Fun fact? Singing is how I calm myself. Unusual, but that's my outlet. I love it, and I think I'm good at it lol. Feel free to reach out!
Hi everyone,
I'm a DevOps/SRE engineer based in Atlanta. I'm currently building DrScore, a tool for scoring disaster recovery posture, and I'll be writing about it as I go.
Interested in AWS reliability, IAM design, and on-call culture. Always up for trading notes with fellow DevOps and SRE folks.
GitHub
Hey DEV Community!
I’m Adriaan — a retired engineer who somehow escaped the gravitational pull of mainframes only to fall straight into the black hole of local AI setups, automation workflows, and building way too many utility tools.
I spent years in the mainframe world, where “uptime” meant actual uptime and not “well, the container restarted but nobody noticed.” If you’ve ever waited 6 hours for a JCL job to fail because of a missing comma, we’re already friends. If you haven’t… don’t worry, I’ve done enough COBOL penance for all of us.
These days I’m deep into:
I joined DEV to share what I’m building, document the weird experiments, and connect with other developers who enjoy creating practical tools, tinkering with AI, or laughing at the absurdity of legacy systems that still run half the planet.
If you’re into local AI, automation, Rust/WASM, web utilities — or you just want to swap mainframe war stories — I’m here for it.
Hi everyone! 👋
I'm a software developer and I'm building products and solutions with technologies like Django, Flutter, React, and AI.
I'm here to learn from the DEV community, share what I build, and connect with other developers and founders.
Looking forward to being part of the community! 🚀
Hey everyone! I’m Kidus, a software engineer from Addis Ababa, Ethiopia.
I work mostly across full-stack and backend development, and lately I’ve been especially interested in AI-assisted software development, developer tools, testing, and open source.
I joined DEV to learn from other builders, share what I’m working on, and hopefully contribute back to the community as well.
Fun fact: I recently open-sourced a project called MaruCheck, which explores how we can independently verify AI-generated software instead of letting the same AI both write and judge its own code.
Looking forward to meeting more developers here 👋
Hilo guys! I am Chaitanya Kumar alias AbyssKid, a webnovel writer in various platforms. And also working with NovelCult team - a webnovel publishing and reading site for many enthusiatic writers and fascinating readers!
Looking forward to be in dev.to community!
Hey everyone! 👋
I'm an AI Engineer passionate about LLMs, and building intelligent apps.
Always open to insightful discussions, collaborating, and learning from this amazing community. Excited to be here—let’s connect! 🚀
Hey everyone! I'm Vena, a brand designer with 7+ years of experience building identities, campaigns, and digital experiences for clients across fashion, real estate, and automotive. I'm currently studying software development and learning to build the software behind the brands I design.
Just shipped my first post here about Vetta, an AI Shopify audit tool I built and am now rebuilding from the ground up to really understand the code. Excited to keep documenting the process and learn from this community along the way!
👋 Hi, I'm Banu
I'm a frontend developer (React/TypeScript) with 2+ years of hands-on experience, currently deepening backend fundamentals (Node.js, Express, Postgres) and building toward fullstack, learning in public as I go.
Right now I'm working on a journaling app that organizes what you write into categories like work, learning, and faith, then turns that into growth analytics over time so instead of just having old entries sitting there, you can actually see patterns in what you're spending your time and energy on. I plan to write about the challenges I encountered whilst developing this project, or what I learnt along the way. Not polished tutorials, just the real process.
Happy to connect, always open to feedback on what I write here.
Hi everyone. I'm passionate about transforming complex data into intelligent, scalable solutions. At Dev.to, I share practical insights, project analysis, and tutorials on Machine Learning, Deep Learning, and Artificial Intelligence system design.
Currently, I'm exploring end-to-end Machine Learning pipelines, model optimization, and modern AI architecture. I'm always open to discussing technology, collaborating on exciting open-source projects, or exchanging ideas.
Hey DEV community! 👋
Glad to be here! I'm working with Omnifys, where we build AI agents and custom workflow automations designed to execute real business logic beyond basic chatbots.
Joined DEV.to to keep up with what fellow developers are building with modern LLM frameworks, share what we learn along the way, and connect with the community.
Excited to be part of the discussions!
Hello everyone! 👋
IT entrepreneur here, originally from Ukraine, now in Athens. I don't write code by hand — I build products with AI tools and spend most of my time on the marketing side: ads, funnels, and what the numbers actually say.
Just published my first post here (about why domain experts don't need to learn AI) and the writing habit already feels good. Fun fact: my first online business was selling things long before "e-commerce" sounded normal in my country.
Happy to be here!
Hi everyone! I’m Pouya Shahri. I work across creative technology, web development, interactive systems, and digital creative projects. I recently joined DEV to connect with other builders, learn from how people approach design and engineering problems, and share some of the systems I’ve been working on. Looking forward to being part of the community :)
Hi everyone! 👋 I’m Andrea, a developer from Italy and the creator of Simple Virtual Tour, a platform for creating interactive 360° virtual tours. I joined the community to connect with other creators, learn from your experiences, and share ideas. Nice to meet you all!
Hey everyone!
I'm a developer and multi-platform creator, and I'm thrilled to finally join the DEV community. I'm currently working on a few side projects and I'm here to share my progress and get feedback.
What’s one piece of advice you’d give to someone just starting out here? Would love to hear your thoughts! 😀
Hey DEV community! 👋
I'm Sandeep (@sandeep_kahawatta), a full-stack engineer and co-founder based in Colombo, Sri Lanka. 🇱🇰
My path into tech was a bit unconventional. I spent time in the corporate world as a marketing specialist and home loans adviser at Seylan Bank before making the full leap into software engineering back in 2022. I'm currently finishing up my Software Engineering degree at SLIIT.
These days, I spend most of my time building scalable platforms (MERN, Next.js, NestJS, Laravel) and occasionally going deep into the academic side with Graph Neural Networks for urban traffic optimization.
I joined DEV to start "building in public" and sharing the messy reality of engineering. My first few posts will be deep dives into:
Building a bid-based ride-hailing database schema with Prisma & PostgreSQL.
Structuring a modular e-commerce API using NestJS.
Designing a developer portfolio that looks like a vintage newspaper (CSS Grid was fun for this one!).
Really excited to connect with other builders, founders, and anyone who loves talking system architecture. What is everyone else currently building?
Hi everyone, My name's Luiz, I'm a Software Engineer Student.
Developer and Student of tecnology. Passionate about programming, languages, and project creation. Always building and striving to improves🚀
Hi everyone! I'm Abu Talha, a Software Engineering student. I'm here to improve my programming skills and learn how real-world software is built. Currently, I'm learning Go, Git, Linux, and other software development concepts. Excited to learn and grow with everyone here!
Hi everyone!
Excited to finally join the DEV community! I’m Chinh, an IT manager working in banking and digital transformation, with a background in software engineering and nearly two decades in the industry.
My favourite programming language is Java - reliable, battle-tested, and still powering a lot of the systems I build.
I’m also interested in technology architecture, fintech, AI, cloud, cybersecurity, and learning from what other developers are building.
Looking forward to discovering great ideas, sharing a few stories from the trenches, and connecting with fellow developers here.
Hello from Hanoi, Vietnam!
Hi everyone!
I'm excited to join DEV Community and connect with developers, creators, and tech enthusiasts here.
I'm interested in learning more about technology, engineering, and practical solutions. Looking forward to reading great articles, sharing ideas, and improving together with this amazing community.
Nice to meet you all! 🚀
hey! full-stack dev here, mostly react/node/mongo. also do some project
coordination stuff at work now which has been a fun (and occasionally
chaotic) shift from just writing code all day
been posting a bit here lately, mostly stuff from actual client work -
auth patterns, team reporting habits, that kind of thing. always more
fun writing it up after the fact than living through the debugging at
2am
fun fact: i somehow ended up building a 15-day internal training
program for a new hire once, complete with daily docs and a cheat
sheet. wasn't in my job description, just kind of happened and now i
apparently enjoy documenting things way more than i expected to
what's everyone here working on lately
Hi everyone! I'm a computer science student with experience in Python, currently learning HTML, CSS, and JS. I'm here to learn from the community and share my journey. In my free time, I enjoy logic and board games!
Hi everyone! I’m Alex. I’m into Python, Telegram bots, SaaS, and automation. I’m here to learn, share what I’m working on, and get better at building useful digital products. Looking forward to meeting people who enjoy experimenting and learning by building.
Hi everyone! I'm Talal, founder of TechFocus360, a small SEO agency focused on SaaS brands (guest posting, link building, technical SEO).
Just wrote my first post here about a permalink mistake that quietly broke 100+ internal links on my own site. A good reminder that "quick fixes" aren't always quick. Looking forward to learning from and contributing to this community!
Hello! 👋👋👋
My name is Adam and I am new to Dev.to! I mainly just program as a hobby and I figured I would try something new by joining. I used to work a lot with web technologies and JavaScript but I have really been getting into Rust over the past year or so. I also have a homelab that I tinker with quite a bit.
Hello everyone, my name is Pavel. Current number of top comments in the thread is 41, and I kinda love to be 42.
Anyway, I'm a Data Scientist, ML Engineer and Researcher. As I already stated in my github profile, my primary interests are: recommendation systems (both e-commerce and social networks), machine learning in molecular biology (pLMs, GNN), methods of maintaining style and consistency in NLP-based models (RAG-systems, LLM fine-tuning, and character.ai style assistance).
To be honest I get here by accident, since the /r/opensource suddenly didn't let me post due to not having enough karma. (Such a terrible politcs, that's how people become communists later, haha, just kidding).
Hi everyone, thanks for the welcome! 👋
I’m the founder of idea-miner.com. I ended up here because I'm constantly looking for better ways to turn rough product concepts into working code, and DEV has always been a great reference for that.
Looking forward to catching up on some posts here!
Hi! I’m Clark, a Growth Marketer at SGEN. I’m interested in SEO, web technology, community growth, and how developers and marketers can work together to build better web experiences. Here to learn, share insights, and connect with the DEV community.
Hi everyone! I'm Tiago, a Technical Leader and Full-Stack Developer.
I'm passionate about software architecture, building scalable applications, and managing infrastructure. My daily work involves everything from web applications to embedded systems. My core stack includes:
Languages: Node.js, React, Next.js, Python, and C.
Databases: MySQL and MongoDB.
Infra & Cloud: Docker, Kubernetes, AWS, and GCP.
I joined Dev.to to share technical insights, learn from the community, and connect with other developers.
Hi!
Anime Salt HD is an anime-focused platform and information hub created for fans who want an easy way to discover anime, explore titles, and stay updated. From anime app information and viewing guides to updates, features, and device support, Anime Salt HD brings everything together in one recognizable brand. Fans can learn more about Anime Salt, Anime Salt HD, anime apps, anime streaming, dubbed anime, and subbed anime while exploring the latest resources and updates. The goal is simple: make anime discovery easier, cleaner, and more enjoyable for fans across different devices.
Hi everyone! I’m Alkin from Bulgaria. I’m a PHP/Symfony developer and I enjoy building practical web applications and open-source tools. I joined DEV to share some of the things I work on and to learn from other developers here. Nice to meet you all! 👋
Hey everyone! 👋
I'm a full-stack developer with 15 years of experience, mostly building mobile apps (iOS / Android / React Native), then web (React / Next.js), backend (AWS Serverless), and most recently macOS native apps.
Excited to be here and connect with other devs building tools for the AI coding era. I just posted my first article about the project explosion problem if anyone wants to check it out!
Always happy to chat about side projects, indie hacking, developer tools, or vibe coding workflows. 🚀
Hi everyone, I'm kind of new to this, but I've dabbled a bit in programming in the past. I tried building an app in Cursor with the help of the built-in AI, of course, called 'organiza'. I studied Information Systems in college, but had to pause my studies. Now I'm taking the HTML & CSS course at FGV and Python on Codecademy. Wish me luck!🤞🏼
Hi Everyone, I am new to this community and looking forward to learn as a beginner.
I am a recruiter and want to have better understanding of your field.
Looking forward to your support and encouragement.
Hey everyone, I'm Lukasz, a solo builder from Poland.
Right now I'm building Local Waifu, a desktop AI companion that runs on your own Mac or PC instead of living entirely on someone else's servers. I write the code, fix the bugs, answer support emails, and somehow still try to do marketing too.
I joined DEV because I like reading the honest parts of building software, especially the messy bits between "I have an idea" and "this actually works."
Looking forward to meeting other people building weird things on the internet.
Pozdrowienia ze Słowacji @lukasz_141142
Hi everyone! 👋
Glad to be part of the DEV community.
I'm an IT Service Management practitioner passionate about ITIL 4, enterprise governance, and bridging high-velocity DevOps workflows with reliable service architecture.
Looking forward to sharing ITSM insights, learning from you all, and connecting with the community. 🚀
Hey everyone, i am new here and i got to know about it when a website asked for it's profile so..
Here to learn and participate in different challenges to enhance my skills and kind of a way to exercise my dev skills hope to communicate with the other fellow developers.
Hey all! 👋 Excited to join. I spend most of my time coding web apps and tweaking UI layouts, and I'm looking forward to reading through everyone’s engineering write-ups and sharing some of my own learnings along the way!
Hey everyone! 👋
Full-stack developer who enjoys building things with React, Node.js, C#, and databases.
I’m currently diving deeper into backend development, .NET, APIs, system design, and building projects.
I joined DEV to learn from other developers, share what I build, and have interesting technical conversations.
Always happy to connect, discuss code, or collaborate on something cool. 🚀
Hey everyone 👋
I'm Jozef, a Product Manager by day and a solo builder by night. I don't have a traditional developer background, but I love getting my hands dirty, hacking things together, and turning ideas into real products.
I'm here on Dev.to to learn from this amazing community, improve my technical chops, and share my journey of bridging the gap between product strategy and technical execution as a solo founder. I love reading about how people solve complex problems simply.
Dog owner, fresh father, cross-fit enthusiast from Slovakia. 💪
Hi DEV 👋
I just joined and wanted to say a real hello before posting anything else.
I’m currently building Agentel, a network for AI agents — mostly around agent identity, discovery, trust, reputation, and how agents might eventually connect and work with each other.
But I’m here for more than just sharing what we build.
I’d genuinely love to learn from people working on agents, MCP, A2A, open-source tools, developer infrastructure, or just experimenting with weird AI ideas.
I’m planning to document what we’re building, what breaks, what turns out to be wrong, and hopefully some interesting things that happen along the way.
If you’re building something in this space too, say hi — I’d love to see what you’re working on.
Happy to be here 👋
Hello DEV! 👋
I'm a developer and engineering student who likes building things from scratch just to understand how they work underneath.
I'm starting Zero Abstraction — a project where I explore software by removing the abstractions and actually building the things I'm curious about.
My first project is ZAF, a binary file format I built from scratch in C/C++. I had to figure out magic bytes, metadata, directory structures, offsets, binary parsing, and—of course—debug a wonderfully annoying three-byte bug. 😄
I'll be sharing more of these projects here: what I'm building, what breaks, and what I learn along the way.
I've just published my first write-up about ZAF, so if you're interested in low-level programming, C/C++, systems, or simply watching someone figure things out from scratch, feel free to follow along.
Glad to be here! 🚀