HackerTrans
TopNewTrendsCommentsPastAskShowJobs

funnyfoobar

37 karmajoined 4 lata temu

Submissions

Show HN: Mtg – Arcade games for the terminal, in Rust with Ratatui

github.com
4 points·by funnyfoobar·przedwczoraj·0 comments

If You Can't Own the PR, Please Don't Open One

getainative.com
2 points·by funnyfoobar·4 miesiące temu·1 comments

[untitled]

1 points·by funnyfoobar·4 miesiące temu·0 comments

Automating Myself Out of My Job – Part 2

blog.dsa.club
1 points·by funnyfoobar·5 miesięcy temu·1 comments

Automating Myself Out of My Job – Part 1

blog.dsa.club
1 points·by funnyfoobar·5 miesięcy temu·0 comments

Tell HN: I am afraid AI will take my job at some point

24 points·by funnyfoobar·7 miesięcy temu·39 comments

comments

funnyfoobar
·3 miesiące temu·discuss
Working on https://getAiNative.com

I kept seeing the same thing across engineering teams: everyone bought Copilot or Cursor seats, people used it for a few weeks, and then output didn't really change.

The tooling is good but teams are treating AI like autocomplete instead of integrating it into how they actually ship code.

My take is that AI starts making a real difference when you apply the same discipline you already have for software engineering.

Plan the work, implement, write tests, commit, open a PR, get it reviewed. If you just vibe code with no structure around it, you get messy diffs and hallucinated tests that nobody trusts.

So I'm building around that workflow. Think of it as giving AI the guardrails of your existing eng process.
funnyfoobar
·4 miesiące temu·discuss
I have been using AI workflows at work to increase the productvity. I have shared these workflows internally and at a couple of tech meetups I went to. I got positive response.

Some of these are present here: https://github.com/vamsipavanmahesh/claude-skills/

Planning to package this as a workshop, so companies could be benefit from AI Native SDLC.

Put together the site yesterday https://getainative.com

Couple of the people I have worked with in the past agreed to meet me for a coffee, will pitch this. Fingers crossed.
funnyfoobar
·5 miesięcy temu·discuss
Original author here: These skill have been adding a lot of value in very less time. After debugging a knarly bug for 4 hours, you might be exhuasted to explain in it a good way, this helps with that.
funnyfoobar
·5 miesięcy temu·discuss
I have replied to a comment adjacent to yours, for my parent comment. Please check i think if you follow the "process", it is avoidable.
funnyfoobar
·5 miesięcy temu·discuss
To be honest, what you have described only shows lack of process.

I am not talking about vibe coding here, which is totally different and understandable. But I am talking about the professional context where the structure is already in place.

Here is my workflow, if it helps:

1. I have a system level prompt i execute(command/skill) before I start anything which says things like

    i) follow SOLID principles
    ii) follow TDD
    iii) follow these testing principles like, don't test the implementation details etc
    and 20 other things
2. I give it the context of what I need to accomplish, and toggle the plan mode ask it follow the above things I have set at system level, and generate me a document to review step by step

3. I review everything, add feedback to the generated plan, prompt again, and finally finalize the plan

4. now that the plan is finalized, I would have a small alignment with co-workers and ask it implement step by step, and then before proceeding with next step, i will tell it to ask me for feedback

each steps code is reviewed and commited, before proceeding to next step

5. once all steps are done, manual testing is done, i do a local review

6. I have a specific skill which reviews everything, and gives me feedback

7. we have human reviewers who will review the code, and coderabbit

8. then we take it to the staging and uat before taking to prod

so see we have not skipped any process of "software engineering", claude code is just an accelrant

but if you are not doing most of the above steps, i see what you are saying would happen by default
funnyfoobar
·5 miesięcy temu·discuss
What you are saying may have made sense at the start of 2025 where people were still using github copilot tab auto completes(atleast I did) and was just toying with things like cursor, but unsure.

Things have changed drastically now, engineers with these tools(like claude code) have become unstoppable.

Atleast for me, I have been able to contribute to the codebases i was unfamiliar with, even with different tech stacks. No, I am not talking about generating ai slop, but I have been enabled to write principal engineer level code unlike before.

So i don't agree with the above statement, it's actually generating real value and I have become valuable because of the tools available to me.
funnyfoobar
·6 miesięcy temu·discuss
I was not expecting a couple of new apps being built, when the premise of the blog post talks about replacing "mid level engineers"

the thing about being an engineer at commercial capacity is "maintaining/enhancing an existing program/software system that has been developed over years by multiple people(including those who already left) and do it in a way that does not cause any outages/bugs/break existing functionality.

while the blog post mentions about the ability of using AI to generate new applications, but it does not talk about maintaining one over a longer period of time. for that, you would need real users, real constraints, and real feature requests which preferably pay you so you can priortize them.

I would love to see such blog posts where for example, a PM is able to add features for a period of one month without breaking the production, but it would be a very costly experiment.
funnyfoobar
·7 miesięcy temu·discuss
Yeah you are right, I am underselling myself in terms of just watering it down to LOC. But I was mostly talking about tangible outcomes that are obvious.

> AI can write 15k lines of code, but it cannot take Liability for a single one.

Thanks for writing this, I needed it.
funnyfoobar
·7 miesięcy temu·discuss
Yes, there will be always someone who is needed to program stuff. Totally agree with that.

But my question is "how many of those will be needed", because I am not saying that programmers are not needed.

When less numbers are needed, there will be so much competition in finding those jobs, esentially would also mean not able to find the work, as there will be always someone who would be willing to the job at lower wage and come to work with more youthful energy.

Just speaking out loud.
funnyfoobar
·7 miesięcy temu·discuss
I agree with the takes, but my only question would be.

If everyone is doing high level stuff like architecture and design, how many of "those people" will be really needed in the long term? My intuition is telling me the size of market needing number of engineers will shrink.
funnyfoobar
·7 miesięcy temu·discuss
Thanks for the clarification.

personally it would be too difficult for me to understand large chunks of work, like in your case "a week's worth of code" at a time. just wondering how do you go about it?

second, how do you pass such large PR's to your co-workers?(if you have any)
funnyfoobar
·7 miesięcy temu·discuss
The process you have described for Codex is scary to me personally.

it takes only one extra line of code in my world(finance) to have catastrophic consequences.

even though i am using these tools like claude/cursor, i make sure to review every small bit it generated to a level, where i ask it create a plan with steps, and then perform each step, ask me for feedback, only when i give approval/feedback, it either proceeds for the next step or iterate on previous step, and on top of that i manually test everything I send for PR.

because there is no value in just sending a PR vs sending a verified/tested PR

with that said, I am not sure how much of your code is getting checked in without supervision, as it's very difficult for people to review weeks worth of work at a time.

just my 2 cents
funnyfoobar
·9 miesięcy temu·discuss
I don't want to come across as judgemental or anything, nor I did deep research on your background.

It appears like you became a CTO, because you co-founded the company, not because you rose to the rank.

If you were to join a different company with this approach you are taking, I doubt if you would even reach Staff level.
funnyfoobar
·10 miesięcy temu·discuss
Bit late to see this, are you still hiring for project/delivery manager roles?
funnyfoobar
·w zeszłym roku·discuss
Would the local average for the compensation be a huge constraint? If I am applying from the eastern part of the world?
funnyfoobar
·w zeszłym roku·discuss
I am interested, however from +5:30 timezone. Last time when I emailed you, I did not get any response, would you like to consider me if I am flexible about the timing?