Kadamba Shri Mahadeva Temple (Tambdisurla)
Built in 1413 AD during the Vijaynagar empire, this temple dedicated to Shiva survived invasions due to its remote Western Ghats location. It lies at the foot of Anmod Ghat, linking Goa to Karnataka. The Kadamba dynasty, which ruled Goa between the tenth and fourteenth centuries, constructed it, making it the only preserved example of Kadamba-Yadava architecture in basalt stone in Goa.
The Mahadeva Temple, often referred to as the #TambdiSurla Temple, gets its name from ‘Surla’ after the nearby River Surla, and ‘tambdi’( तांबा ) denoting the copper-red color of the soil.
आपकी पूजा थाली में बना स्वस्तिक एक विज्ञान है ,कैसे
Thread 🧵
स्वस्ति न इन्द्र वृद्धश्रवाः, स्वस्ति नः पूषा विश्ववेदाः स्वस्तिनस्तावृष्यो अरिष्टनेमिः स्वस्ति नो बृहस्पतिर्दधातु
(यजुर्वेद सं. 25/16)
यह मंत्र इतना प्रसिद्ध है आपने कई बार कि तिलक आदि करते समय आशीर्वाद के रूप में विद्वान इसी का प्रयोग करते हैं।
इस मंत्र का शाब्दिक अर्थ है-महान कीर्ति वाला इन्द्र हमारा कल्याण करे विश्व के ज��ञान स्वरूप पूषा देव हमारा कल्याण करें जिसके हथियार अरिष्ट भंग करने में समर्थ हैं ऐसे गरुड़ देव हमारी रक्षा करें। बृहस्पति भी हमारे कल्याण की पुष्टि करें।
Junk food pretending to be healthy is far more dangerous than junk food! Here is why!
Examples of junk food: Coke, Pepsi, chocolates
Examples of junk food pretending to be healthy: Horlicks, Boost, Bournvita, Almost all biscuits, Tang, Glucose-D
We usually consume openly junk food only 1-2 times PER WEEK. But the problem is that we consume junk food marketing itself as healthy 1-2 times PER DAY.
As a result, in a week your child will consume 2 glasses of coke but 14 glasses of Boost/Bournvita.
Health is not what you do once in a week, health is what you do everyday!
Make sure to stay away from junk food pretending to be healthy!
@FinMinIndia@PMOIndia@nsitharaman@narendramodi Why PPF interest rate is not revised as per the market standards? When the banks are paying higher than 7.1% for FDs, & other components even higher than 9%; Then, why PPF rate is still 7.1% since April 2020???
We Recently Visited Ram Mandir 🛕
If You’re Planning with Your Family
• Connectivity
• Accommodation
• Free Sugam Darshan & Aarti
Here Are Few Important Details To Know
After studying 400s of geniuses, Psychologist Laszlo Polgar was sure that geniuses are not born, but made.
To prove his point, he committed a crazy idea to turn his 3 daughters into chess grandmaster:
The Polgar Genius Experiment (the most bizarre experiment on kids):
Is Redis Data Persistence Useful in Practice?
Redis is an in-memory database. If the server shuts down, the data will be lost.
There are two ways to save Redis data to disk:
- AOF (Append-Only File)
- RDB (Redis Database)
𝗔𝗢𝗙
Unlike a write-ahead log, the Redis AOF log writes after commands run. Redis runs commands to change the data in memory first. Then it writes the commands to the log file. AOF logs the commands instead of the data. This simpler design makes recovering data easier. Additionally, AOF records commands after they have executed in memory. So it does not block current write operations.
𝗥𝗗𝗕
The limitation of AOF is that it saves commands instead of data. When we use the AOF log to recover data, the whole log must be scanned. When the log size is large, Redis takes longer to recover. So Redis offers another way to save data - RDB.
RDB records snapshots of data at certain times. When the server needs recovery, the data snapshot can load directly into memory for fast recovery.
Step 1: The main thread forks the "bgsave" sub-process, which shares all the in-memory data. "bgsave" reads the data from the main thread and writes it to the RDB file.
Steps 2 and 3: If the main thread changes data, a copy is created.
Steps 4 and 5: The main thread then operates on the copy. Meanwhile, the "bgsave" sub-process continues writing data to the RDB file.
𝗠𝘆 𝗢𝗽𝗶𝗻𝗶𝗼𝗻
Recovery from disk takes too long. For most uses where Redis is used as a cache, using Redis replication and promoting the replica if the main Redis server fails catastrophically is better.
–
Subscribe to our weekly newsletter to get a Free System Design PDF (158 pages): https://t.co/kNfv0DVDdf