Kaga hakkin wani?
Wallahi completely refrain from it, duk rikicin ka ya tsaya between you and your lord, he’d forgive you. kar ka yadda kaje lahira with someone’s Alhaki on your shoulders, zaka sha wahala.
The Day of Arafah is unmatched in virtue. The Prophet says: “There is no day on which Allah frees more people from the Fire than the Day of Arafah. For those not on Hajj, fasting on this day expiates the sins of the previous year and the coming year, as he ﷺ said, “I hope from Allah that fasting on the Day of Arafah will expiate the year before it and the year after it”. It is the day Allah perfected the religion with the verse, “This day I have perfected for you your religion”, and the best du’a is the du’a of Arafah: “La ilaha illallahu wahdahu la sharika lah…”
May Allah answer our prayers, heal our sick, forgive our parents and loved ones, bring peace and blessings to Nigeria, and admit us into His mercy.
RANAR ARAFA
Ga tsohuwar ajiya domin wannan Rana
JADAWALIN YADDA ZAKA RIBACI RANAR ARFA
👇
A ribaci ranar da:
1. Bayan Ka yi barci a kan lokaci
2. Ka tashi Ka samu falalar sahur
3. Ka yi addu'a kafin alfijir ya keto
4. Ka yi Istigfari Ka nemi tuba
5. Ka halarci sallar Asuba cikin jam'i
6. Ka zauna bayan salla kana azkar
7. Ka daure cikin Ibada har Rana ta hudo
8. Ka tashi Ka yi raka'a biyu Ka samu ladan Hajji da Umra
9. Ka Dan kishingida don samun karfin yin Ibada a wannan yini
10. Kana tashi Ka yi sallar Walaha, raka'a 4/6/8
11. Nau'anta salon Ibadarka;
yi salla
yi karatun Kur'ani
yi kabbara
yi addu'a
yi zikirai
12. Jeka sallar Azahar Ka yi "Sunan Rawatib" kafin salla da bayan salla
13. Samu lokaci Ka Kara karanta AlKur'ani
14. Ka yawaita Hailala "La'ilaha Illal Lahi Wahdahu La Sharika Lahu Lahul Mulku wa Lahul Hamdu wa Huwa ala Kulli Shai'in Kadir"
15. Halarci salla La'asar a jam'i,
16. Yi Azkar din yamma
17. Yi karatun Kur'ani har zuwa yamma likis
18. Koma ga addu'a, roki duniya da Lahira, Kada Ka roki duniya kadai
19. Yi addu'ar Ka zama cikin 'yantattun wannan yini
20. Ka kaskantar da kanka ga Allah, Kada ka yi zaton ka sha gaban wasu a wajen Allah don ibadarka
21. Yi buda Baki Ka Kara da addu'o'i ga kanka/iyalanka/yanuwanka/ Musulmi/ kasarka
Allah Ya karba mana kadan, Ya ba mu Mai yawa Ya Kareem.
Master JS in 2 months? Which JS? The same one wey we dey use? 😂
Person wey draw this roadmap just want make everybody high. Inside that 60 days, na only 'Hello World' and small if/else you fit sabi. Before you even understand why your Async/Await dey move like Lagos Danfo wey break down, 2 months don finish.
Mastering JS no be by timeline, na by many sleepless nights and debugging. If you enter React for May as that roadmap talk, you go just dey copy-paste code wey you no understand. JavaScript get wahala wey pass two months curriculum. From Closures to Hoisting, the thing go humble you😭😂
25 signs your VIBE CODED app will BREAK at 500 users :
Save this before you go live !
1/ no load testing before launch
> you don't know where it breaks because you've never pushed it
> one traffic spike and you're debugging live in production
2/ session data stored in server memory
> works on one instance
> breaks the moment you need two
3/ file uploads going directly to your app server
> disk fills up. server dies. files lost.
> move uploads to object storage on day one
4/ synchronous email sending in API routes
> slow email provider = slow API response for every request that triggers one
> offload to a queue. always.
5/ no queue system for background tasks
> everything blocking
> one slow task pauses everything behind it
6/ hardcoded secrets in deployment scripts
> sitting in your CI logs
> visible to anyone with pipeline access
7/ single database with no read replica
> all reads and writes hitting one machine
> first real traffic spike kills query performance
8/ no CDN in front of static assets
> every image served by your app server
> 500 concurrent users = 500 image requests hitting your backend
9/ DB migrations running automatically on app start
> two instances deploy at the same time
> both run migrations. race condition. data inconsistency.
10/ no database backup ever tested with a restore
> you have backups
> you've never actually restored from one
11/ unindexed foreign key columns
> every JOIN is a full scan
> slow at 100 rows. broken at 100,000.
12/ no rate limiting anywhere
> 500 users. one of them is a bot.
> your server is now a bot server
13/ API responses with no compression
> JSON payloads sent uncompressed
> 10x the bandwidth they need to use
14/ no error alerting configured
> app crashes at 3 AM
> you find out when a user emails you at 9 AM
15/ transactions not used for multi-step writes
> step 1 succeeds. app crashes. step 2 never runs.
> data is now inconsistent permanently
16/ health check endpoint missing
> load balancer sends traffic to crashed instances
> users get 502s. you get support emails.
17/ memory leaks in long-running processes
> memory grows slowly. server hits 100%.
> everything grinds to a halt. restart. repeat.
18/ no graceful shutdown handling
> deploy kills active requests
> users mid-action get errors with no retry
19/ dependent on a third-party API with no fallback
> that API goes down
> your core feature goes down with it
20/ all logs written to local disk
> logs rotate off
> incident happens. no history to debug with.
21/ no circuit breaker on external calls
> external service is slow
> your thread pool fills waiting for it. everything queues.
22/ unparameterized search queries
> search with any real data volume
> 5-second response times at scale
23/ no connection timeout on outbound HTTP calls
> external API hangs
> your thread hangs with it. indefinitely.
24/ WebSockets not handled by a stateful service
> horizontal scale breaks real-time features
> every user gets disconnected
25/ no runbook for common incidents
> something breaks at 2 AM
> nobody knows what to do. everyone panics.
you can ship fast and still build something that holds.
bookmark this before you go live.