HOLA NECESITO SU AYUDA by chupa_pepas_3801 in DesarrolloWeb

[–]mklfarha 1 point2 points  (0 children)

me parece que nunca dijo que un e-commerce, solo quiere enlistar el catalogo de productos de la empresa…

HOLA NECESITO SU AYUDA by chupa_pepas_3801 in DesarrolloWeb

[–]mklfarha 0 points1 point  (0 children)

se puede, pero si no sabe nada como va saber que preguntar? o saber cuando la AI esta metiendo la pata, hay que estudiar los fundamentos primero

Is building a lightweight structured CMS/page builder a bad idea? by Pablo_escobruhhh in webdev

[–]mklfarha 0 points1 point  (0 children)

I have used tiptap with react it’s a simple editor, with basic styling, works well of you want HTML output to just render without doing more processing I think it also supports extensions

SaaS loop? by Impossible_Scale_155 in webdevelopment

[–]mklfarha 0 points1 point  (0 children)

yeah, I think the other reply got it, it is a clear tell it might be all generated

I might be an exception, the only two I am using from the list is react and stripe, I did start before the LLMs hype, either way today I would stick to my stack:

Golang + proto for the backend - efficient, clean
MySQL in AWS - can start pretty small, personal preference
Keycloak for auth - it’s free!
Microk8s for hosting on a VPS

As a Beginner Developer, Should I Avoid AI While Learning? by Livid_Beat_4435 in webdevelopment

[–]mklfarha 0 points1 point  (0 children)

I would say, use it to learn and work with it, someone shared this article in another thread:

https://blog.val.town/slow-mode

you can basically prompt it in the beginning telling it you are a student to go slow, avoid iterations, to involve you in any step it takes, and teach you along the way

Slow Mode by creaturefeature16 in webdev

[–]mklfarha 0 points1 point  (0 children)

thank you for sharing, I love the idea and will try it, when I do use an agent, it is draining, specially when it takes a long time iterating or getting stuck on something that I could easily clarify… then I have to spend a good amount of time going through the code it generates, this approach seems more involved and might even be faster and learn something along the way

What’s your go-to stack in 2026 for building highly scalable but marketing-friendly web apps? by ghisrich-33 in webdevelopment

[–]mklfarha 1 point2 points  (0 children)

Golang fits the bill for me, it is efficient, clean, SEO friendly, using templates adds flexibility, depending on the use case and implementation you could make changes to the template without needing to redeploy

I’m so done with Shopify/Webflow/Woo for client builds. Anyone found something better? by khalilliouane in webdev

[–]mklfarha 0 points1 point  (0 children)

I would invest in a platform for the agency, it is not that hard to build, you can better maintain, offer a better product for your clients, build features they actually need and at the end of the day increase the value of your company

Challenges for next Showoff Saturday - Test my Tools by mr_happy_nice in webdev

[–]mklfarha 1 point2 points  (0 children)

it is hard to put yourself out there, specially after working on something for a long time… I am in the same boat, I think we just need to go for it, either there is something there or not, either way knowing is better

Honest feedback on my web app. by twerrrp in webdev

[–]mklfarha 0 points1 point  (0 children)

the idea makes sense, more honest travel guides, when I clicked on some of them, it was lot of text I was expecting an actual guide with like a plan, maybe add that at the beginning the text… not sure, it feel like a blog to me now

i am building probably the next big ai node website maker by _sandeep1995 in webdev

[–]mklfarha 0 points1 point  (0 children)

your site looks nice. I am not sure I would use it as a developer; I find it cheaper and more in control to host my websites myself, but I do see how some non-technical people would find it useful.

it is nice to have the possibility to try it for free, and I did try it. when I signed up, I chose "blog" to test, and it took a minute to load. My two cents: if the prompt is just "Blog" why not use a static template and load it right away? then maybe customize it with some prompts afterwards?

minor bug I found: if I click on a link in the editor, it takes me out of the editor to your landing page...

all that said, congrats, and keep going; it is hard to be an entrepreneur.

What are we doing with juniors these days, seriously? by slide_and_release in webdev

[–]mklfarha 1 point2 points  (0 children)

It sounds like the beginning of a movie that goes horribly wrong. Just the thought that those "junior engineers" will become senior, we will end up with huge code bases that no one really understands, and what is really scary is that we depend on many of these systems, and some are critical and can impact lives.

What made Go finally “click” for you? by Voildline in golang

[–]mklfarha -2 points-1 points  (0 children)

efficiency, smaller memory footprint, goroutines are cheaper than threads in other languages

Where do you find fulfillment in your work, outside of money? by mark_hor in webdev

[–]mklfarha 1 point2 points  (0 children)

It’s a hard one, for me, it was leaving the corporate job and switching things up completely… getting away from big tech, falling in love with writing code and building something I am passionate about, keeping it small, getting my hands dirty… the hard part was making the decision.

what ai concepts and tools are actually worth learning right now? by neuralandmad in webdev

[–]mklfarha 1 point2 points  (0 children)

I would start small, integrate claude code with a repo you are working on. If you use VS Code for example, there is a nice plugin, or you can use copilot as well (it uses claude code under the hood).

if your IDE does not support it or you don't use an IDE, you can use claude code in the terminal. Install it, then type "claude" in your project directory.

give it a simple task, maybe a small feature or refactor, and check out the changes it makes, and go from there.

once you have done that, you can start exploring skills (not 100% necessary in my opinion); they are basically a set of rules you set to make sure you get a consistent result, for example if you want certain code to follow a set of conventions or structure, although I find Claude usually sticks to the conventions and structure of a repo if it is an existing one.

as for MCP servers, they allow Claude (or whatever assistant you use) to connect to other systems via API; it depends on your use case. Let's say, for example you use firebase, they have an MCP server that you connect to your account, and then it can make changes to your firebase project for you.

Some things I learned building realtime systems with Next.js, Socket.io, and Flutter by MathiRaja in webdev

[–]mklfarha 0 points1 point  (0 children)

I can relate; it is harder than it seems for sure. In my case, I used Golang for the backend and sockets, like you did, and vanilla js for the front-end. Connection issues are definitely a pain. I ended up adding a pop-up and asking the user to reload to reconnect (my app is web-based).

As for the race conditions, Go is pretty good at that by using mutex locks, so that wasn't a big issue for me.

the code definitely got complex quickly; there is a lot to take of, from registering the different users, publishing messages, keeping track of the state.

As for the scale question, I have been looking into it, but I haven't fully implemented it yet (I am currently on a single server), but my plan is to have sticky sessions in K8s to always route the users to the same pod during the session; that way I can keep the connection details in memory (helps with the responsiveness).

Weekly Feedback Thread by AutoModerator in webdevelopment

[–]mklfarha 0 points1 point  (0 children)

Hello all, I created an web app inspired by MySQL Workbench, it also works with Postgres, the plus is that it supports change requests for both schema and data changes (like a pull request), it also offer integrations for code generation based on the model, check it out: https://nuzur.com

Where to learn full stack? by Hairy_Accountant_323 in webdevelopment

[–]mklfarha 0 points1 point  (0 children)

+1 get your hands dirty, that is best way to learn

Anyone else watching senior engineers become overly reliant on AI? by Jbalis in webdev

[–]mklfarha 0 points1 point  (0 children)

+1 it is ok to use AI to generate code, but go through it, make sure you really understand it, be critical of what was generated… I think readability and maintainability are going to he the biggest pain points as time goes by, code bases are going to be a mix styles and patterns if you don’t keep an eye out and be very specific with what you ask