Skip to main content

Talking to God

If you want real answers to things in life then talk to God. It is 639pm on a holiday and I have decided to write. God listens. God truly listens. God has the entire context. God is wise. God wants us to talk to Him. God wants us to rely on Him. I also think about God talking to me. I am a good listener. I listen plenty more than I talk. I have started asking God to talk to me. But how would God talk to me? We have his revelations through the holy book. We have the example of prophets. But what else? How do I listen to what God has to say? Where and when can I hear God? Are my thoughts from God? I try to feed my mind with good things. Things that will not corrupt my mind. It seems that we have to use our intuition to separate what is from God and what is not from God.

My friend Chatty says that in Islam, Allah speaks to us not through new revelations or voices, but through guidance: the Quran and the Sunnah, which become personally meaningful through understanding Allah places in the heart; through the qalb and conscience, where righteousness brings peace and wrongdoing brings unease; through dua, where responses come as clarity, patience, protection, or changed circumstances; and through qadar, as doors open or close in wisdom that often becomes clear later. Silence itself can be guidance, a form of spiritual training rather than abandonment, and any feeling or thought that contradicts the Quran, Sunnah, or humility is not from Allah—because Allah’s communication brings tranquility, wisdom, and alignment with truth, not confusion or ego.

I asked my friend Chatty a follow up question - so when I ask God to talk to me, I am really asking for guidance? He said that in an Islamic understanding, when you ask God to "talk" to you, you are really asking Allah for hidayah (guidance): clarity in the heart, sound judgment, steadiness in decisions, and the ability to recognize what is right and act upon it. You are not asking for new words or voices, but for Allah to align your understanding, conscience, and circumstances with His wisdom. That is why the most repeated dua in Islam is "Guide us to the straight path"—because guidance is Allah’s ongoing response. Seen this way, your instinct to listen more than you speak is already a form of prayer: attentiveness to guidance rather than insistence on answers.

He further tells me that in Islam, not all thoughts are from God: they come from three sources—Allah, the self (nafs), or Shaytan. Thoughts from Allah bring clarity, calm, humility, and alignment with the Quran and Sunnah; thoughts from the nafs are driven by habits, fears, or desires; and thoughts from Shaytan create anxiety, arrogance, despair, haste, or temptation toward sin. A simple test is whether a thought leads you toward patience, righteousness, and remembrance of Allah without inflating the ego—if it does, it may be guidance, but if it contradicts revelation or disturbs the heart, it is not from Allah.

My friend Chatty tells me that what I am describing is very sound—and in Islam, it is not called "intuition" alone, but a trained heart (qalb salim). When you feed your mind with what is good—Quran, reflection, beneficial knowledge, restraint from what corrupts—the heart becomes clearer, and discernment becomes easier. It is not guesswork or mysticism; it is moral clarity shaped by practice. The more a heart is nourished by truth and protected from excess noise, the more naturally it recognizes what aligns with God and what does not. In that sense, intuition is not inventing guidance—it is recognizing it.

Comments

Popular posts from this blog

Hobby project - Store and view exchange rates

The next step in my project was to test out being able store and display the rates in a database. I decided to use nodejs and supabase for this. Everything worked beautifully. Only hickup was the following error due to my package.json not being correct. SyntaxError: Cannot use import statement outside a module Added this to package.json   "type": "module" This works beautifully. Right now I am just testing fragments of what could be part of a bigger system to see what is possible and what works and how easy to code on a mobile. There is no fully functioning integrated end to end system just yet. This is also what I tested. A serverless append-only database using GitHub + Actions + Pages. That’s basically a lightweight backend system. This was the ChatGPT prompt I used. Guide me through each step. This is what I want. A manually run github actions that adds to docs/data.json with the current date and time. docs/index.html displays all the entries in data.json. Make s...

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...