Hey everyone! It's been a while since I was an active Twitter user 4 years ago. But I'm back...well, not on Twitter anymore, but on X! 🚀 Excited to share my career journey and connect with awesome people. Stay tuned for some exciting updates! #NewBeginnings
The response was repeatedly limited to saying the refund would be credited.
This goes beyond a refund. How are expired products with unclear date markings being stored, picked, and delivered to customers? This raises serious concerns about quality checks and customer safety.
@Iqbalomania There’s no fixed “Sunnah dress” in Islam only general guidelines. Islam is universal, meant for all climates and cultures. So say kurta may be our tradition, clothing is a personal choice, and what someone wears shouldn’t be an issue as long as it follows those guidelines.
@zainaab_abbasi permissible (halal) way. Just bcz someone serves the deen doesn’t mean they must live in poverty, avoid wealth, or deny themselves halal comforts. The idea that religious people shouldn’t be rich or enjoy what is lawful is unfair. It’s unfortunate that some people think this way
@zainaab_abbasi Maybe the issue is that they state an Islamic lifestyle,even when it doesn’t align with certain lifestyles,and that’s where the resentment comes from. Also,why shouldn’t a religious person have a personal life? Scholars/religious figures, like anyone else, can enjoy life in every
@mysleepwell As i have mentioned, I was told that I will be having a discount of 30% on my new selected mattress as the compensation model was completely unjust,however each time the same 10% is proposed to me!
•I have repeatedly followed up via email and phone.
•I have been told multiple times that the issue is being looked into.
•No concrete update or resolution has been provided.
•There appears to be confusion and lack of coordination between the Sleepwell and Kurlon team
MRP for the upgraded mattress. This assurance was also conveyed to me over email and call.
Despite this confirmation, I have not received any formal resolution, written confirmation, or callback regarding the revised offer.
Since then:
Celery rate limits can literally save your database from midnight storms.
One bad loop and then a missing rate_limit='10/m', queue spamming thousands of tasks per minute.
Rate limit early, sleep peacefully later😩
#celery#softwareprogrammer
@MrAdnanRashid kinda accurate, but more accurate would be Israel = Iran = Saudi Arabia. Doing the same in Yemen unfortunately. May Allah give them courage to fight againist wrongdoers.
Celery retries: Know the difference
-> max_retries → your code fails, you retry
-> acks_late + reject_on_worker_lost → worker crashes, Celery retries
max_retries = logic-level
acks_late = infra-level safety
Use both. One handles failures, the other prevents loss
Celery beat + task not running?
Check timezone settings.
Beat might be on UTC while your schedule is in localtime. Misfires are silent.
#Celery#TaskScheduler
Django transaction.atomic is powerful—
But if you nest them and an inner block fails silently, the outer one can still commit.
Know when to raise.
#DjangoORM#Postgres