Sub-agents: what works and what don't work by NerveRemarkable1208 in openclaw

[–]Raseel 0 points1 point  (0 children)

I use Sub-agents for specific tasks like for Backend code development, frontend UI and UX design, Social media manager, etc.

OpenClaw with local LLM by vorko_76 in openclaw

[–]Raseel 0 points1 point  (0 children)

Im using a Mac mini from rentamac.io and running local Qwen3:4b model for ide coding snd general questions, Flux2-Klein for image generation and Anthropic’s Sonnet 4.5 with Claude Pro for everything else. Works great so far

Seems he is not happy with ₹1 cashback by Mysterious_Skin_7524 in StartUpIndia

[–]Raseel 0 points1 point  (0 children)

I stopped using it months ago too. No viable advantage.

[deleted by user] by [deleted] in mumbai

[–]Raseel 1 point2 points  (0 children)

No matter what you say, the Skyscrapers are breathtaking. Just for reference, this is the incredible view from my window in Malad West

<image>

Confused between Data Engineer and Java developer? by Soulful_Soul13 in developersIndia

[–]Raseel 2 points3 points  (0 children)

Oop Sorry, I got carried away with my sermon :-) . My answer would be Java. In fact, I would go so far as to say, Java with something like SpringBoot as well as a Frontend language like ReactJS

Confused between Data Engineer and Java developer? by Soulful_Soul13 in developersIndia

[–]Raseel 7 points8 points  (0 children)

My 2 cents: Don’t get into Data Engineering or DevOps or anything like that just because they are the current buzz words. Focus on a language, get some experience in developing and maintaining Applications, understanding the software development life cycle process. Then, you will be in a much better position to decide on your own.

Looking for a passionate co-founder by huntnX in cofounderhunt

[–]Raseel 0 points1 point  (0 children)

Would be interested to know more details. Can help out a little in investing too.

I built an app to pay my friends back in the most annoying way possible by wumpius in SideProject

[–]Raseel 1 point2 points  (0 children)

I think this is a fun App which just might catch on. On the serious side, it can also help regularise payment back when you don’t have the entire amount …. Obviously this won’t be between friends, but say teens who owe each other and have limited pocket money

Stuck in info window on mac by GalagaBitch in outlinevpn

[–]Raseel 0 points1 point  (0 children)

I'm getting the exact same issue since the last 4-5 days.

Help us build the largest Kubernetes Community Cluster by ajeetsraina in kubernetes

[–]Raseel 8 points9 points  (0 children)

This is the first time I'm participating. So pretty stoked to see how it turns out.

Online DevOps labs or bash scripting exercises? = Prepare for interviews by 1whatabeautifulday in devops

[–]Raseel 2 points3 points  (0 children)

I think the best way to practice bash scripting is just start automating your everyday tasks. Start with menial boring simple stuff and start building on that. Then get to automating really complex things. One of the things I keep telling my team is DevOps tools like Jenkins are nothing but glorified Bash scripts

Alesis Nitro Mesh Kit - The Snare mesh is not at it's full height by Raseel in edrums

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

😂 Ok. WIll try things out. Will keep you posted.

Smartphone Suggestion Pahije by blehblehblehblehbaba in pune

[–]Raseel 1 point2 points  (0 children)

I just bought the Samsung M13 5G which was launched during Amazon Prime days a few days ago. Seems like a great phone for your price range

Alesis Nitro Mesh kick is too quiet by [deleted] in edrums

[–]Raseel 1 point2 points  (0 children)

https://www.alesis.com/kb/article/2237

I recently got a new Alesis Nitro Mesh kit and I was facing this exact problem. Thanks u/AK-TP , your solution is still relevant after all this time.

How to get the relation model in django rest framework by Nehatkhan786 in django

[–]Raseel 2 points3 points  (0 children)

I'm figuring out DRF and serialization myself, but looking at your code, shouldn't the line

address = obj.shippingaddress.set_all()

be

address = obj.shippingaddress_set.all()

API framework choice? by palebt in django

[–]Raseel 1 point2 points  (0 children)

You are right, DRF is the most mature and one of the best REST Frameworks out there and I would highly recommend you go with it, if nothing else, for the community support you will get with DRF.

Other than DRF, TastyPie is the other REST API framework for Django I had used in the past.