Posts

Quran Page 36: The Sanctity of Marriage and the Ethics of Divorce (Surah Al-Baqarah 225-230)

Image
📖 About Surah Al-Baqarah (Page 36) Page 36 addresses the weight of our words and the complexities of domestic life. It begins by clarifying that Allah does not hold us accountable for unintentional oaths, but rather for what our hearts truly intend. The page then moves into the laws of Ila' (swearing off marital relations) and the detailed procedures for divorce (Talaq) . These verses establish the 'Iddah (waiting period) for women and the conditions under which a couple may reconcile or choose to part in a "good manner." It concludes with the specific ruling regarding a third divorce and the requirements for remarriage between the same parties. 🕌 Arabic Text (Page 36)   🌍 English Translation (Sahih International) Verse 225: Allah does not impose blame upon you for what is unintentional in your oaths, but He imposes blame upon you for what your hearts have earned. And Allah is Forgiving and Forbearing. Verse 226: ...

Quran Page 35: Social Responsibility and the Sanctity of Oaths (Surah Al-Baqarah 220-224)

Image
📖 About Surah Al-Baqarah (Page 35) Page 35 provides a compassionate look at the treatment of orphans , emphasizing that improving their situation is the best course of action. It then addresses the spiritual boundaries of marriage , prioritizing faith over physical attraction or worldly status. The page further clarifies the laws of purity within marriage and warns against using Allah’s name in oaths to prevent oneself from being righteous or reconciling between people. 🕌 Arabic Text (Page 35) 🌍 English Translation (Sahih International) Verse 220: To this world and the Hereafter. And they ask you about orphans. Say, "Improvement for them is best. And if you mix your affairs with theirs - they are your brothers. And Allah knows the corrupter from the amender. And if Allah had willed, He could have put you in difficulty. Indeed, Allah is Exalted in Might and Wise." Verse 221: And do not marry polytheistic women until they beli...

Your Pi as a Self-Backing-Up AI Agent — Skills in Git, Scripts on GitHub

11:30 AM · unexpected cron fire 🦞 OpenClaw on HAOS · Part 5 Your Pi as a Self-Backing-Up AI Agent — Skills in Git, Scripts on GitHub Every skill, script, and memory file version-controlled in a private GitHub repo. Edit on your PC, push, and the Pi pulls automatically. Midnight auto-backup keeps everything safe. Plus: fixing a cron that fired at the wrong time and staying on the Gemini free tier. 🥧 Raspberry Pi 5 · HAOS 📦 GitHub backup · SSH 🔧 Cron bug fixed 0 paid APIs ⚠ also fixed: cron fired at wrong time · wakeMode: now · tz defaulted silently ✓ resolved 1 GitHub Backup 2 Cron Bug 3 Token Tips 4 Lessons Automated Backup to GitHub over SSH A private GitHub repo as the single source of truth for all OpenClaw skills and scripts. Edit on your PC, push to GitHub, Pi pulls automatically. Daily midnight backup from Pi to GitHub. Zero manual file copying. Repo Structure ...

Quran Page 34: Divine Wisdom in Trials and Social Conduct (Surah Al-Baqarah 216-219)

Image
📖 About Surah Al-Baqarah (Page 34) Page 34 begins with the reality that some obligations may be difficult for the soul, yet they carry hidden benefits known only to Allah. It clarifies the sanctity of the Sacred Months and warns against the severe sin of averting people from the path of Allah. The page then transitions into the rulings on intoxicants (Khamr) and gambling (Maysir) , acknowledging their small benefits while emphasizing that their harm far outweighs their good. 🕌 Arabic Text (Page 34) 🌍 English Translation (Sahih International) Verse 216: Fighting has been enjoined upon you while it is hateful to you. But perhaps you hate a thing and it is good for you; and perhaps you love a thing and it is bad for you. And Allah knows, while you know not. Verse 217: They ask you about the sacred month - about fighting therein. Say, "Fighting therein is great [sin], but averting [people] from the way of Allah and disbelief in Him ...

Personal Stock Intelligence on a Raspberry Pi Running Home Assistant OS — No Paid APIs, No Scheduled Guesswork

🦞 OpenClaw on HAOS · Part 4 Personal Stock Intelligence on a Raspberry Pi + HAOS Running on a Raspberry Pi 5 with Home Assistant OS, three Python scripts replace your scheduled cron jobs with on-demand portfolio intelligence — live P&L, Google Sheets sync, and a buy/sell signal engine. No cloud, no paid APIs, no monthly fees. 🥧 Raspberry Pi 5 · HAOS 📊 25 Holdings 🐍 3 Python Scripts 0 API calls for data 🟢 Gemini Free Tier portfolio.py ▲ running sync_portfolio.py ▲ 25 synced signals.py ▲ 3 buy signals cron 14:30 Sun–Thu ▲ active Gemini Flash ▲ free tier HAOS 14.x ▲ running Yahoo Finance ▲ live portfolio.py ▲ running sync_portfolio.py ▲ 25 synced signals.py ▲ 3 buy signals cron 14:30 Sun–Thu ▲ active Gemini Flash ▲ free tier HAOS 14.x ▲ running Yahoo Finance ▲ live 🐍 portfolio.py · 🔄 sync_port...

Understanding Inference in Bayesian Networks: From Naive Bayes to Gibbs Sampling (with Python Examples)

Image
Inference in Bayesian Networks: From Naive Bayes to Gibbs Sampling In our previous post, we looked at how to represent uncertainty. Now, we look at the engine of the system: Inference . Inference allows us to take observed data (evidence) and calculate the probability of hidden states. Naive Bayes Inference Exact Naive Bayes assumes that features are independent given the class. Despite its "naive" name, it is a workhorse in modern applications. $$P(C \mid o_1, \dots, o_m) \propto P(C) \prod_{i=1}^m P(o_i \mid C)$$ Real-World Application: Spam Filtering When you receive an email containing the words "Offer" and "Free," a Naive Bayes classifier looks at the probability of those words appearing in known Spam vs. Not Spam emails. It assumes the word "Offer" appearing is independent of "Free" being there, allowing for lightning-fas...

Switch Your OpenClaw LLM Backend With One Command — Claude, Gemini, Ollama & OpenRouter

🦞 OpenClaw Series · Bonus Switch Your LLM Backend With llm-switch One shell script. Four providers. No config file editing. Switch between Claude, Gemini, Ollama, and OpenRouter from the terminal and restart. 🥧 Raspberry Pi 5 🦞 OpenClaw 🐚 Bash Script ☁️ GitHub Gist 🟢 Anthropic · 🔵 Gemini · 🟡 Ollama · 🟣 OpenRouter 1 Install 2 Providers 3 Commands 4 Internals Install llm-switch 📦 The script lives on GitHub Gist and gets installed into the container via your Samba share. Since /usr/local/bin resets on every add-on restart, the install is a one-liner you run whenever needed. 📄 llm-switch.sh — GitHub Gist gist.github.com/imnoor/f38b8e32e07a5cb0c01b2b53352e201f → Option A — Via Samba Share (recommended) 1 Download and save to your share Download the raw script from the Gist above. S...