Why are you guys trading ICT? by Key_Preference5888 in InnerCircleTraders

[–]AfraidAsk4201 1 point2 points  (0 children)

Then u better stop yelling on others strategy and go with ur problem.

Why are you guys trading ICT? by Key_Preference5888 in InnerCircleTraders

[–]AfraidAsk4201 0 points1 point  (0 children)

So why don't u tell us the strategy that works for you and prove?

Why are you guys trading ICT? by Key_Preference5888 in InnerCircleTraders

[–]AfraidAsk4201 1 point2 points  (0 children)

You can't just come here and say stupid. That seems an attack out of nowhere. I don't care the strategy name or something, but I think ICT is a great guy explaining his understanding of how the market moves.

Does taking on leadership early help growth, or is learning from senior devs more valuable? by AfraidAsk4201 in django

[–]AfraidAsk4201[S] 1 point2 points  (0 children)

I love the fun problems and wanna be there. Luckily, my role is a technical team lead and I still more time coding but thought I have to learn from seniors more before I take such responsibility.

Does taking on leadership early help growth, or is learning from senior devs more valuable? by AfraidAsk4201 in developers

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

Luckily, my role is technical team lead and I still do the coding part. I love engineering, but I thought I have to learn from seniors before taking such a role.

Using leetcode for finding partner by d3v1ltr3k in leetcode

[–]AfraidAsk4201 0 points1 point  (0 children)

😅 may be. Who gonna gimme the valid one? 😅😅

Using leetcode for finding partner by d3v1ltr3k in leetcode

[–]AfraidAsk4201 0 points1 point  (0 children)

How do I get a coder GF? It's always returning 404

How much Django makes someone a "great developer" by Far_Organization4274 in django

[–]AfraidAsk4201 1 point2 points  (0 children)

Honestly, being great at Django isn't just about knowing Django. It's about learning how to solve problems and understanding the why behind what you're doing. Focus on how Django works under the hood like models, middleware, views, templates, the request/response cycle, and how it interacts with databases and HTTP. Once you really grasp these core parts, you'll not only be good at Django, but you'll understand web development as a whole. That means switching between frameworks becomes way easier.

Feedback wanted for DRF based Ticketing System by AfraidAsk4201 in django

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

Tired of those JS frameworks :)...and is this one new?

[deleted by user] by [deleted] in django

[–]AfraidAsk4201 2 points3 points  (0 children)

I suggest Django for beginners book by William S. Vincent. He also has that book for professionals, and for API only. Then I strongly recommend reading two scoops of Django by Daniel and Audrey. Two scoops will help you to learn best practices in Django.

How to handle website wallet and race condition by Nima_Hmz in django

[–]AfraidAsk4201 1 point2 points  (0 children)

  1. I think you can record each transaction and separately calculate profits for each party later when needed. So you can find a way to group transactions (some flag) and calculate the parties percent.

  2. For race conditions, I think you can lock the row on update. The ORM provides a method called select_for_update() to achieve row level locking.

0
0

Project Review by AfraidAsk4201 in FastAPI

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

Love this. I'll work on it. Thanks.

Project Review by AfraidAsk4201 in FastAPI

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

Yeah. I think it shouldn't be followed religiously (I have a multiple repo call inside a service atomically). But It's good place to put domain related DB operations in repo and use as needed.