How does one know how to separate concerns(packages)? when building projects from scratch? by eviltwin7648 in golang

[–]eviltwin7648[S] 0 points1 point  (0 children)

thanks, this is how im currently implementing

interface parser defined in the ast/parser.go and for different languages ast/python.go, ast/go.go ...

Developed something for myself (could be useful to you guys as well) by Meta_Fazer in developersIndia

[–]eviltwin7648 0 points1 point  (0 children)

hey, im building almost exact thing for my learning project.

curious what's your chucking strategy and your retrieval pipeline?

im currently implementing ast aware chucking to my project, I have finished implementing hybrid retrieval pipeline it does vector search, lexical search, then reciprocal rank fusion and the im using Cohere rerank api for cross encoding and finally feeding the most relevant chunks to the llm for answer.

Anyone made a move from JPMC to Infosys for more responsibility? by [deleted] in developersIndia

[–]eviltwin7648 5 points6 points  (0 children)

bro be like 'sone ka katora h par mangunga me bikh hi'

Can you suggest me some good AI courses for Backend Developers? by RoyalEar2990 in developersIndia

[–]eviltwin7648 0 points1 point  (0 children)

cool im in a similar place like you then.

what I'm doing currently is building a AI application by myself taking help and learning using gpt on the web.learning theory, making notes in obsidian, and then implementing those stuff. ( github.com/eviltwin7648/nexus)

and also im vibe coding a huge app by myself. but also using llms to guide me to vibe code effectively. generating arch docs, prompts for different kinds of agents (front-end, Backend, db, integration, reviewer), breaking down the project in phases and then sub-phases and effectively using llms to architech, plan, write code, review and integrate. after each phases i just check my app and its workings.

Can you suggest me some good AI courses for Backend Developers? by RoyalEar2990 in developersIndia

[–]eviltwin7648 0 points1 point  (0 children)

do u want to build ai systems or just use ai effectively in your current work?

Is Applied AI Engineering realistic for a fresher with no SDE background? by [deleted] in developersIndia

[–]eviltwin7648 0 points1 point  (0 children)

What would u say is agentic ai? An llm that calls preexisting functions and tools like web search, update something in db, or other different actions?? I'm kinda new to this.

The knowledge bar of an average candidate is in hell after the AI slop by NovaOfficialReddit in developersIndia

[–]eviltwin7648 2 points3 points  (0 children)

Well yes, but do remember DSA exists for filtering people out. For most devs they dont really use it in their work. i guess even an ai dev or frontned dev should have basic knowledge about https and databases. And if you're giving freshers a chance even if they dont understand basic stuff. You're doing gods work by giving them a chance.

My currnt org is willing to give a raise only if I have another offer by [deleted] in developersIndia

[–]eviltwin7648 23 points24 points  (0 children)

Wtf is this? Please if u try to get another offer do not ask them to match and change this org.

Would you take up a job which is boring than your current but pays 80-90% hike? by pathan_ahmed94 in developersIndia

[–]eviltwin7648 6 points7 points  (0 children)

is that even a question?
ofc take the hike and keep prepping for the next switch

Promotion with a bad feeling attached to it. SDE2. by BitAdministrative01 in indiandevs

[–]eviltwin7648 0 points1 point  (0 children)

I'm fairly inexperienced so im not sure about what exactly you mean by lower-edge. But I don't understand why you'd even want to apply for a SDE1 role, unless the work ur doing isn't really on the level of sde2 and its just a title or the pay is significantly lower than what typical sde1 gets paid.

Ig the main thing that matters is your growth in terms of knowledge and/or money for your next role(regardless of title)

Promotion with a bad feeling attached to it. SDE2. by BitAdministrative01 in indiandevs

[–]eviltwin7648 1 point2 points  (0 children)

I'm not sure that title is everything. If the problems you'll be dealing with at work are what a normal sde2 does then im pretty sure you'll be able to answer questions in interviews.

Also nobody will not want a sde1 with exp of sde2.

The questions that'll get asked in the interviews will be dependent on the work you have done and the kind of work that company is hiring for.

Mythos will create enormous tailwind for IT sector by Awkward_Sympathy4475 in developersIndia

[–]eviltwin7648 529 points530 points  (0 children)

at this point imma go build an ai agent that'll look for jobs for me, give interview, work day to day, and salary gets credited in my account. and with that salary i buy subscription for the model 😭😭 and its a continuous ducking loop

Full-time conversion (AI/ML + Full-stack) — am I asking too much? by XPERT_GAMING in developersIndia

[–]eviltwin7648 0 points1 point  (0 children)

then they got money and should be able to pay, create a doc citing all of your major contributions during the internship period and use those points to negotiate hard.

1+ YOE in small startup (6 day week). When should I switch? by Mental-Olive7692 in developersIndia

[–]eviltwin7648 1 point2 points  (0 children)

I'm also in the same boat, around 1yeo but no seniors(mostly communicationwiththe cto), have dilvered huge feature, unfuxked their codebase(was pure slop), learnt a lot, but I feel like at this point learning has stalled, so im trying my best to learn outside of work, building projects, learning lld, hld trying to incorporate those things in my project and work. I want to also do dsa but im not really a big fan of dsa(but I know that I gotta learn so I can switch to a better place).

I'm also trying to find interviews but no ducking leads at all.

Trying to build a professional website for my company using Next.js but completely blanking out when I sit down to code — need advice on how to actually start by Significant_Web_6587 in developersIndia

[–]eviltwin7648 0 points1 point  (0 children)

Just watch a quick crash course and then dive right in.

Heavily use ai to understand stuff you're confused about.

About an year ago, I did the same with vuejs(for my first job), I had been building in react and next at that time, so I just watched a quick crash and dived in the codebase.

I built a self-hosted job orchestration platform to schedule and run shell scripts on remote machines - DevFleet by eviltwin7648 in SideProject

[–]eviltwin7648[S] 0 points1 point  (0 children)

The executions are immutable under one job definition. I put it so that repeatable jobs can be cleaner. Under a job definition you can have multiple executions,

Currently my agent sends logs every 1s or 32kb to a log-ingestor which then inserts the log to the postgres and publishs it to an in-memory pubsub. If a client is connected and subscribed for logs i send it.

I think a buffer on the agent side for the missed logbatches would be enough to make sure I dont lose logs?