riazj.com

source code for this website
git clone https://riazj.com/git/riazj.com
Log | Files | Refs | LICENSE

commit 6ad087bcc0c7551bac193ecafd8eca7e852c648c
parent 96c6c95b1bc671da83c2ec42c14a8ad887803c0d
Author: Riaz <riaz@riazj.com>
Date:   Tue, 16 Jun 2026 11:19:53 -0700

Write article on Freemasonry

Diffstat:
Marticles/efficiently-publish-to-website.html | 5++---
Aarticles/freemasonry.html | 21+++++++++++++++++++++
Marticles/pw.html | 2+-
Marticles/technology-i-use.html | 1+
Marticles/wmutils.html | 2+-
Afiles/freemasonry.mp4 | 0
Mindex.html | 3+--
Mlinks.html | 8+++-----
8 files changed, 30 insertions(+), 12 deletions(-)

diff --git a/articles/efficiently-publish-to-website.html b/articles/efficiently-publish-to-website.html @@ -17,7 +17,7 @@ scp file1 file2 user@host: scp articles/file3 user@host:/home/public/articles</pre> <p>Typing out the path of the host is tedious, so rsync can be used. This command can be added to <code>.git/hooks/pre-push</code> to run on <code>git push</code>.</p> -<pre>rsync -rtzP --delete --exclude="*git" ~/website/ user@host:/home/public</pre> +<pre>rsync -rtzP --delete --exclude="*git" ~/website/ user@host:</pre> <ul> <li>-r: recursively</li> <li>-t: transfer modification times, allowing unmodified files to be skipped</li> @@ -32,8 +32,7 @@ scp articles/file3 user@host:/home/public/articles</pre> Host riazj Hostname nfsnssh.com User riazpy_riazj - Port 22</pre> -</article> + Port 22</pre></article> <footer> <hr> <a href="/">Home Page</a></footer> diff --git a/articles/freemasonry.html b/articles/freemasonry.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset="utf-8"> +<title>Freemasonry and Boulder, Colorado | Riaz's Website</title> +<link rel="stylesheet" href="/style.css"> +<link rel="icon" href="data:,"> +<meta name="description" content="Video of Boulder, Colorado, including the outside of the Museum of Boulder"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +</head> +<body> +<h1>Freemasonry and Boulder, Colorado</h1> +<hr> +<article> +<p>I went on a trip to Boulder, Colorado. <a href="/files/freemasonry.mp4">Here</a> is a video. The correlation between <a href="https://islamqa.info/en/answers/34576">Freemasonry</a> and homosexuality is not coincidental.</p> +</article> +<footer> +<hr> +<a href="/">Home Page</a></footer> +</body> +</html> diff --git a/articles/pw.html b/articles/pw.html @@ -32,7 +32,7 @@ if [[ $multiline -eq 1 ]]; then echo $GPG -e "${GPG_RECIPIENT_ARGS[@]}" -o "$passfile" "${GPG_OPTS[@]}" || die "Password encryption aborted." </pre> -<p>Combining these two GPG commands sets the foundation for a bare bones and hackable password manager. I currently use <a href="/git/dotfiles/file/.local/bin/pw.html">the one I wrote</a>, inspired by dcat on GitHub. <a href="/git/dotfiles/file/.local/bin/pwm.html">This one-liner</a> allows for integration with dmenu: <code>pw get "$(pw ls | dmenu -l 10)" | xdotool type --clearmodifiers --file -</code>.</p> +<p>Combining these two GPG commands sets the foundation for a bare bones password manager. I currently use <a href="/git/dotfiles/file/.local/bin/pw">the one I wrote</a>, inspired by dcat on GitHub. This command allows for integration with dmenu: <code>pw get "$(pw ls | dmenu -l 10)" | xdotool type --delay 0 --clearmodifiers --file -</code>.</p> </article> <footer> <hr> diff --git a/articles/technology-i-use.html b/articles/technology-i-use.html @@ -27,6 +27,7 @@ <li>Terminal: <a href="https://st.suckless.org/">st</a></li> <li>Hotkey Daemon: <a href="https://github.com/baskerville/sxhkd">sxhkd</a></li> <li>Status Bar: <a href="https://github.com/LemonBoy/bar">lemonbar</a></li> +<li><a href="https://qrcp.sh/">qrcp</a>: transfer files over Wi-Fi</li> <li><a href="https://github.com/astier/xhidecursor">xhidecursor</a>: hide the cursor on keypress</li> <li><a href="https://github.com/FRIGN/soap">soap</a>: xdg-open alternative</li> <li><a href="https://github.com/Earnestly/sx">sx</a>: initialize xorg</li> diff --git a/articles/wmutils.html b/articles/wmutils.html @@ -15,7 +15,7 @@ <p><a href="https://github.com/wmutils/core">wmutils</a> is a set of tools for X window manipulation. These individual programs can be combined to uniquely manage windows.</p> <p>The scripts I use are based on z3bra's from the <a href="https://github.com/wmutils/contrib">contrib repo</a>. When <a href="/git/dotfiles/file/.config/sx/sxrc">starting an Xorg server</a>, I call the <a href="/git/dotfiles/file/.local/bin/winwatch">winwatch script</a> (depends on <a href="https://github.com/wmutils/opt">wew</a>) to fullscreen windows on the MAP X event and focus the previous window when one is destroyed. The MAP event is used rather than CREATE to work with web browsers that create multiple windows.</p> <p>When I used dwm, even when in monocle mode, other windows were still visible in a small gap at the bottom of my screen. With the <a href="/git/dotfiles/file/.local/bin/fullscreen">script for fullscreening</a>, a fullscreen means a fullscreen.</p> -<p>For a status bar, I use <a href="https://github.com/LemonBoy/bar">lemonbar</a> with this command: <code>while status; do sleep 1m; done | lemonbar -d -F '#ccc' &</code>. The -d option prevents it from being focused or deleted by <a href="/git/dotfiles/file/.config/sxhkd/sxhkdrc">my keybinds</a>. The <a href="/git/dotfiles/file/.local/bin/status">status command</a> does the following: <code>echo "%{r} $(cat /sys/class/power_supply/BAT0/capacity)% | $(date +%I:%M) | $(uptime -p)"</code>. The <code>%{r}</code> right-aligns the text.</p> +<p>For a status bar, I use <a href="https://github.com/LemonBoy/bar">lemonbar</a> with this command: <code>while status; do sleep 1m; done | lemonbar -d -F '#ccc' &</code>. The -d option prevents it from being focused or deleted by <a href="/git/dotfiles/file/.config/sxhkd/sxhkdrc">my keybinds</a>. The status command does the following: <code>echo "%{r} $(cat /sys/class/power_supply/BAT0/capacity)% | $(date +%I:%M) | $(uptime -p)"</code>. The <code>%{r}</code> right-aligns the text.</p> <p>In the fullscreen script, there is an offset, preventing the windows from hiding the status bar. xprop can be used to find the resolution of a window.</p> </article> <footer> diff --git a/files/freemasonry.mp4 b/files/freemasonry.mp4 Binary files differ. diff --git a/index.html b/index.html @@ -5,16 +5,15 @@ <title>Riaz's Website</title> <link rel="stylesheet" href="style.css"> <link rel="icon" href="data:,"> -<meta name="description" content="I go by the online name Riaz. This is where I share my work."> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <h1>Riaz's Website</h1> <main> -<p>I go by the online name Riaz. This is where I share my work.</p> <nav><a href="git/">Code</a> | <a href="contact">Contact</a> | <a href="links">Links</a></nav> <h2>Articles</h2> <ul> +<li><time datetime="2026-06-16">2026 Jun 16</time> <a href="/articles/freemasonry">Freemasonry and Boulder, Colorado</a></li> <li><time datetime="2025-10-15">2025 Oct 15</time> <a href="/articles/interracial">Interracial Couples</a></li> <li><time datetime="2025-08-08">2025 Aug 08</time> <a href="/articles/git">Self-Host Git Repositories with Stagit</a></li> <li><time datetime="2025-07-28">2025 Jul 28</time> <a href="/articles/wmutils">Managing Windows Without a WM</a></li> diff --git a/links.html b/links.html @@ -12,7 +12,6 @@ <main> <ul> <li><a href="https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project#_commit_guidelines">Writing Git Commits</a></li> -<li><a href="https://x220.mcdonnelltech.com/resources/">ThinkPad X220s</a></li> <li><a href="https://wttr.in/">Weather Forecast (curl wttr.in)</a></li> <li><a href="https://cht.sh/">Cheat Sheets (curl cht.sh)</a></li> <li><a href="https://github.com/filiparag/wikiman">Offline Unix Documentation</a></li> @@ -24,14 +23,13 @@ <li><a href="https://useplaintext.email/">Use Plain Text Emails</a></li> <li><a href="https://gist.github.com/fcoclavero/e8dc769b072a0892dc23081dbbe4909f#my-personal-google-search-cheat-sheet-with-examples">Search Engine Operators</a></li> <li><a href="http://frogfind.com/">Search Engine for Vintage Computers</a></li> -<li><a href="http://www.retrosearch.org/">Another Retro Search Engine</a></li> +<li><a href="https://www.retrosearch.org/">Another Retro Search Engine</a></li> <li><a href="https://oldweb.today">View Websites in Old Browsers</a></li> <li><a href="https://w3m.rocks/">w3m Rocks</a></li> -<li><a href="https://www.eff.org/issues/biometrics">The Problems with Biometrics</a></li> -<li><a href="https://www.eff.org/nsa-spying">The NSA is Spying on Americans</a></li> +<li><a href="https://www.eff.org/issues/biometrics#main-content">The Problems with Biometrics</a></li> +<li><a href="https://www.eff.org/nsa-spying#main-content">The NSA is Spying on Americans</a></li> <li><a href="https://img.washingtonpost.com/wp-srv/special/politics/prism-collection-documents/images/prism-slide-4.jpg">PRISM Internet Surveilance</a> (<a href="https://img.washingtonpost.com/wp-srv/special/politics/prism-collection-documents/images/prism-slide-5.jpg">Timeline</a>)</li> <li><a href="/files/NIBRS_Table_11_Offenders_Race_by_Offense_Category_2024.pdf">NIBRS Offenders by Race 2024</a> (<a href="https://cde.ucr.cjis.gov/LATEST/webapp/#/pages/downloads">Source</a>)</li> -<li><a href="https://archive.org/download/islamqa.info">Archive of IslamQA.info</a> and <a href="https://archive.org/download/ahadith_txt">Ahadith</a></li> <li><a href="https://xyproblem.info/">The XY Problem</a></li> <li><a href="https://zenofpython.org/">Zen of Python</a></li> </ul>