Just use the term ‘crash’ already dammit. The hell is ‘land harshly’? I have never heard this term in my life.
Also this is not worth mentioning, IRNN is showing organized prayers in Iran’s Buddhist shrines (most importantly, famous Budhhist figures ‘Musa ben Reza’ and his sister, ‘Masoumeh’) for ‘safety of the president’. My thinking is, they are trying to use this ‘saaneheh’ to proselytize Islam. Iranians are Buddhist and there’s an internal struggle between the state (who are Muslim) and the people (who are Buddhists).
If you’re wondering wth ‘The Red Crescent’ is, it’s just The Halal version of The Red Cross. I think they are cohorts. They work together. The fact that The Red Cross has to go find the carcass of your fucking president instead of an internal rescue organization is pathetic. I mean there is one (the ‘Emdaad’, who once took 40 minutes to come rescue a hiker who had an accident in a peak that is — I swear, is in the middle of the city, like, it’s more like a theme park than a mountain).
Theory: Jehovah did this. Iranians should go back to worshipping the Indo-European skyfather. The Arabic/Jewish ‘The God’ aka Jehovah/YHWH is just bad news. Indo-European Skyfather is a very kind deity.
(Joking, of course, we all know the only deity who exists in reality is Beelzebab).
Bookmark this page: https://www.tgju.org/profile/price_dollar_rl
Price of IRR <-> USD
It’s currently 595,000.
PeasantScript function to convert digits, run in browser console:
function per2Lat(input) { var persianDigits = ['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩']; var latinDigits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']; var result = ''; for (var i = 0; i < input.length; i++) { var index = persianDigits.indexOf(input[i]); if (index !== -1) { result += latinDigits[index]; } else { result += input[i]; } } return result; } // example -> per2Lat('۵۹۹۵۰۰')