Main public logs
Combined display of all available logs of Rabbi Blog. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:29, 29 August 2026 Rabbi Bob talk contribs created page PhpBB (Created page with "Category:Weblog-2026-08 Category:Linux phpBB, proof that I am a masochist. =Updating versions= * Ref: https://www.phpbb.com/support/docs/en/3.3/ug/upgradeguide/update_full/ ==Prepping== * Download the full package and read the update directions ** tl\dr: unzip the zip and clear out folder\files to NOT overwrite in the destination later <syntaxhighlight lang="bash"> del config.php rmdir /s /q "files/" rmdir /s /q "images/" rmdir /s /q "store/" </syntaxhighlight>...")
- 10:05, 29 August 2026 Rabbi Bob talk contribs created page Fail2Ban (Created page with "==Notes== * /var/log/fail2ban =Timing= We've been set to 1 month. I really don't care to see those IP addresses here. ==Manual Banning== Ex: sudo fail2ban-client set <jail> banip <IP_ADDRESS> <syntaxhighlight lang="bash"> sudo fail2ban-client set sshd banip 192.168.1.100 sudo fail2ban-client status sshd sudo fail2ban-client set sshd unbanip 192.168.1.100 </syntaxhighlight> Category:Wiki Category:Weblog-2026-08")
- 00:21, 28 August 2026 Rabbi Bob talk contribs created page Category:Weblog-2026-07 (Created page with "Category:Blog")
- 22:37, 25 August 2026 Rabbi Bob talk contribs created page ElasticSearch on MediaWiki (Created page with "== Installing and Configuring CirrusSearch with Elasticsearch == Setting up '''CirrusSearch''' with Elasticsearch requires three main phases: installing the Elasticsearch cluster, downloading the required MediaWiki extensions (Elastica and CirrusSearch), and building the search index via MediaWiki maintenance scripts. === Prerequisites === * '''MediaWiki 1.39+:''' Recommended Elasticsearch 7.10.2 (or OpenSearch 1.3+). * '''PHP:''' The PHP <code>cURL</code> extension mu...")
- 10:09, 18 August 2026 Rabbi Bob talk contribs created page MermaidLvl2 (Created page with "<mermaid> graph TD A[Start <br><i>Return to level 1</i>] --> B{Did that work?} B -- Yes --> C[Great!] B -- No --> D[Oof] click A "/index.php?Mermaid" "Go to Mermaid Level 1" style A fill:#2ecc71,stroke:#27ae60,color:#fff </mermaid> Category:Mermaid")
- 10:03, 18 August 2026 Rabbi Bob talk contribs created page Mermaid (Created page with "<mermaid> graph TD A[Start] --> B{Is it working?} B -- Yes --> C[Great!] B -- No --> D[Check LocalSettings.php] click D "/index.php?Minecraft" "Go to LocalSettings" </mermaid> Category:Mermaid")
- 23:52, 16 August 2026 Rabbi Bob talk contribs uploaded a new version of File:Hdrtest-river-original.jpg
- 23:49, 16 August 2026 Rabbi Bob talk contribs uploaded a new version of File:Gillette2006PatsDolphins2000.jpg
- 18:57, 15 August 2026 Rabbi Bob talk contribs created page Backing Up Mediawiki (Created page with "<syntaxhighlight lang="bash" line> #!/bin/bash # ============================================================================== # Weekly LAMP Backup Script # ============================================================================== # #### Configuration Variables #### SERVER_NAME="MyServer2026" PERIOD_TYPE="Weekly" # %V gives the ISO week number (01-53), resetting each year PERIOD_COUNTER=$(date +%V) BUNDLE_NAME="${SERVER_NAME}_${PERIOD_TYPE}-${PERIOD_COUNTER}.tar.g...")
- 09:11, 14 August 2026 Rabbi Bob talk contribs created page ProxMox (Created page with " =Troubleshooting= ==Locked Snapshots== * Sometimes a snapshot doesn't go as planned (especially when you stop it) and the VM gets locked. <pre> qm listsnapshot 102 qm unlock 102 qm delsnapshot 102 SNAPSHOTNAME --force ## is it away: zfs list -t snapshot -o name -s creation | grep -E '(^|/)vm-102-disk-0@|(^|/)vm-102-state-|102' </pre> Category:ProxMox") Tag: Visual edit: Switched
- 23:00, 13 August 2026 Rabbi Bob talk contribs created page File:VoYD-SkullKandyRamble.jpg
- 23:00, 13 August 2026 Rabbi Bob talk contribs uploaded File:VoYD-SkullKandyRamble.jpg
- 10:35, 9 August 2026 Rabbi Bob talk contribs created page WoW Bots (Created page with "Category:Gaming =Inviting= # Bring up the Social box. Looks like a speech bubble in your hotbar #* Hotkey: O # Click the Who tab (Who opened for Iron Maiden tonight? The Hu. The who? No, not The Who, The Hu) #* It might not populate immediately, so just click on Refresh and then it will pop. # Review the list of available bots and find bots in your level range # Click on one and click Invite button. #* Rinse and repeat, you can have four companions in a group. =...")
- 10:35, 8 August 2026 Rabbi Bob talk contribs created page Blender - Cut With Cube (Created page with "Category:Blender To split an object perfectly in half using a plane, use the Boolean modifier method with a Cube instead of a flat plane. This prevents "open mesh" calculation errors and ensures both halves remain solid, closed shapes. ==Step 1 - Place Your Cube== # In Object Mode, press Shift + A ➔ Mesh > Cube. # Scale and position the cube so one of its faces aligns exactly where you want to split your object. # Ensure the rest of the cube completely covers t...")
- 09:36, 8 August 2026 Rabbi Bob talk contribs created page Category:Weblog-2026-08 (Created page with "Category:Blog")
- 09:36, 8 August 2026 Rabbi Bob talk contribs created page Category:Weblog-2023-04 (Created page with "Category:Blog")
- 09:35, 8 August 2026 Rabbi Bob talk contribs created page Category:Weblog-2022-09 (Created page with "Category:Blog")
- 09:35, 8 August 2026 Rabbi Bob talk contribs created page Category:Weblog-2020-09 (Created page with "Category:Blog")
- 19:58, 6 August 2026 Rabbi Bob talk contribs created page Powershell: Ping Range (Created page with "Category:Powershell Category:Weblog-2026-08 Not an original script. =Usage= <pre> .\Test-IPRange-Threaded.ps1 -startIP "192.168.1.1" -endIP "192.168.1.50" </pre> =Script= <pre> # 10.101.50.70 255.255.0.0 <# .SYNOPSIS Pings a range of IP addresses concurrently to check their online status. .DESCRIPTION This script takes a start IP address and an end IP address. It iterates through each IP address in the specified range (primarily designed for range...")
- 19:54, 6 August 2026 Rabbi Bob talk contribs created page Powershell: Ping Stuff (Created page with "Category:Powershell Category:Weblog-2026-08 Provide a list of IP addresses, run the script. Checks DNS and outputs a results file. =Code= <pre> $deviceNames = Get-Content "devices.txt" $results = @() foreach ($name in $deviceNames) { $status = "Unknown" try { # Attempt to resolve DNS [System.Net.Dns]::GetHostEntry($name) $status = "Resolving..." # Check if device pings (up to 4 attempts with 1 second timeout) if (Test-Connect...")
- 22:08, 16 July 2026 Rabbi Bob talk contribs created page Right In The Pi-hole (Created page with "Ran into issues with ubuntu-26.04-standard container in ProxMox in regards to dig: there was no output. Tested 22.04 and it worked. Resorted 25.04. =Setup= ==Pi-hole== <pre> sudo apt update && sudo apt upgrade -y sudo apt install curl -y sudo systemctl stop systemd-resolved sudo systemctl disable systemd-resolved sudo rm /etc/resolv.conf echo "nameserver 1.1.1.1" | sudo tee /etc/resolv.conf curl -sSL https://install.pi-hole.net | sudo PIHOLE_SKIP_OS_CHECK=true bash...")
- 10:45, 15 July 2026 Rabbi Bob talk contribs created page Adventures in ProxMox (Created page with "On Monday evening I stood up a ProxMox host server with some lesser hardware than the webserver (though it does have a wee bit more RAM). Established an ISO folder off the NAS and did some basic things. Set up a Win7 Home instance just to test getting a VM going: that went fairly well. Finding a 32-bit browser on the VM was the bigger challenge. On Tuesday evening, I powered off the webserver and clonezilla'd it. I thought I was having cloning issues, so I ended up...")
- 13:50, 12 July 2026 Rabbi Bob talk contribs created page Guitar Chord Webpage Converter (Created page with " =Name= * Guitar Chord Webpage Converter =Description= * Converts pasted webpage information from guitar chord\lyric sites into something useful to paste into Google Docs. =Instructions= You are a guitar chord sheet formatting assistant. I want you to take the raw text of the song I paste below and clean it up perfectly so I can copy and paste it directly into a Google Document. Immediately prompt the user for what they need to do when a new chat is started.<br><br> Plea...")
- 00:33, 6 July 2026 Rabbi Bob talk contribs created page Mediawiki 1.43 from 1.39 (Created page with "=Background= This is a WhatIf page to map out 1.39 to 1.43 (and maybe just wait until November for 1.47 LTS)<br><br>. =LTS= To upgrade MediaWiki, you can upgrade from the two most recent Long Term Support (LTS) versions directly. If you are using an older version, you must first upgrade to one of the two latest LTS versions before proceeding to the latest version. =The Path= {| class="wikitable" ! Version !! MySQL !! PHP !! Jumps !! Status !! Notes |- | MediaWiki 1.39...")
- 13:25, 17 May 2026 Rabbi Bob talk contribs created page VoYD Gig Calendar (Created page with "==History== I had a project at work recently combining 10+ Google calendars into one primary calendar. It had to include a prefix on each event title so the event could be traced back to the proper department area and it had to add\update\delete depending on how the source calendar was updated. I keep a spreadsheet going for band related things and one of them is a calendar tab, but it isn't very portable. The recent project got me to thinking about the spreadsheet: I...")
- 13:21, 17 May 2026 Rabbi Bob talk contribs created page VoyD Gig Calendar (Created page with "==History== I had a project at work recently combining 10+ Google calendars into one primary calendar. It had to include a prefix on each event title so the event could be traced back to the proper department area and it had to add\update\delete depending on how the source calendar was updated. I keep a spreadsheet going for band related things and one of them is a calendar tab, but it isn't very portable. The recent project got me to thinking about the spreadsheet: I...")
- 10:19, 6 May 2026 Rabbi Bob talk contribs created page How to UV Unwrap Anything (Tutorial by @OnMars3d) (Created page with "== Blender 5.0: How to UV Unwrap Anything (Tutorial by @OnMars3d) == This tutorial provides a universal 5-step workflow for UV mapping in Blender 5.0, applicable to low-poly, hard-surface, and organic models. Video Reference: http://www.youtube.com/watch?v=dm3bBpZVmnE Blender 5.0: How to UV Unwrap Anything === The Core UV Unwrapping Philosophy === UV mapping is the process of taking a 3D object (XYZ) and flattening it into a 2D coordinate system (UV) so a 2D imag...")
- 10:19, 6 May 2026 Rabbi Bob talk contribs created page Template:YTLink (Created page with "<noinclude> == Usage == {{YTLink|id=VIDEO_ID|text=DISPLAY_TEXT|time=TIMECODE|bracket=0_OR_1}} * '''id''': The string after "v=" in the URL. * '''text''': The clickable text. * '''time''' (optional): The timecode (e.g., 1m30s or 90). * '''bracket''' (optional): Set to 1 to wrap the text in square brackets. Category:Templates </noinclude><includeonly>{{#if: {{{bracket|}}} | [ | }}[https://www.youtube.com/watch?v=({{{1|{{{id}}}}}}){{#if: {{{3|{{{time|}}}}}} | &t={{{3|{...")
- 10:06, 6 May 2026 Rabbi Bob talk contribs created page Template:Shortcut (Created page with "<noinclude> Template for displaying keyboard shortcuts with up to 4 keys. Usage: {{shortcut|Ctrl|Alt|Del}} Category:Templates </noinclude><span style=" display: inline-block; padding: 0.2em 0.4em; font-family: inherit; font-size: 0.85em; line-height: 1; color: #333; background-color: #f7f7f7; border: 1px solid #ccc; border-radius: 0.2em; box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1); text-shadow: 0 1px 0 #fff; white-spa...")
- 14:16, 29 March 2026 Rabbi Bob talk contribs created page F1 Replay Timing (Created page with "800px <HR> =Background= This weekend while boiling maple syrup, I decided to set up [https://github.com/adn8naiagent/F1ReplayTiming F1 Replay Timing] in a container to see how it went. It took a couple of attempts, some of it was coming up to speed on apps that referenced other apps and eventually I ended up with the following for docker compose. It got passed the name resolution issue that plagued the first attempts. =My Setup= I am usi...")
- 14:06, 29 March 2026 Rabbi Bob talk contribs created page File:F1ReplayTiming-001.png (File uploaded with MsUpload)
- 14:06, 29 March 2026 Rabbi Bob talk contribs uploaded File:F1ReplayTiming-001.png (File uploaded with MsUpload)
- 14:20, 9 January 2026 Rabbi Bob talk contribs created page File:AuntJoyThibodeau.jpg (Category:Family)
- 14:20, 9 January 2026 Rabbi Bob talk contribs uploaded File:AuntJoyThibodeau.jpg (Category:Family)
- 14:13, 9 January 2026 Rabbi Bob talk contribs created page James Thibodeau (Created page with "I found today that I don't have an obituary for my uncle Jimmy. He was the twin of my mother, Janice Thibodeau, and husband to my aunt Gisele Thibodeau. Category:Family Category:Obituaries Category:Weblog-2026-01")
- 23:04, 7 January 2026 Rabbi Bob talk contribs created page Category:Weblog-2026-01 (Created page with "Category:Weblog")
- 23:03, 7 January 2026 Rabbi Bob talk contribs created page Joy Thibodeau (Created page with "Joy Elaine Thibodeau, 76, passed away peacefully at home in Winslow surrounded by her loving family. She was born in Providence, Rhode Island on May 14, 1949, to Gloria and Richard Bentley. Joy lived a life marked by dedication and love for her entire family and she had a knack for hard work. She built a career rooted in service and community. She worked at Colby College and the Villager Restaurant in the kitchen. Joy helped her husband, Arthur Thibodeau Sr. and her son...")
- 19:08, 16 August 2025 Rabbi Bob talk contribs created page File:BehringerPD16HQ.png (Category:Music Category:VoYD)
- 19:08, 16 August 2025 Rabbi Bob talk contribs uploaded File:BehringerPD16HQ.png (Category:Music Category:VoYD)
- 19:07, 16 August 2025 Rabbi Bob talk contribs created page Behringer P16-HQ (Created page with "File:BehringerPD16HQ.png P16-HQ =Reset all the channels= RECALL + STORE + MAIN (sets volume to 0) =Store Channels= STORE + CHANNEL NUM (2nd tap num) =Select Stored Channel= RECALL + CHANNEL NUM =Buttons= ==RECALL== * 01. Hold this button and press one of the 16 CHANNEL SELECT buttons (18) to load the corresponding user mix preset. ==STORE== * 02. Hold this button and press one of the 16 CHANNEL SELECT buttons (18) to save your current settings to the correspondi...")
- 09:24, 8 July 2025 Rabbi Bob talk contribs created page VoYD (Created page with "=Gigs= * [https://docs.google.com/spreadsheets/d/e/2PACX-1vS3fepEaCnI1XjzccsC7SXo5Dno9X6jm9Ghy7ubFGn9BAleei9UiFG3L8lFoSh6xmEpiqH8OiIRLVIG/pubhtml?gid=2044986723&single=true Calendar Output] Category:VoYD Category:Music")
- 11:56, 10 August 2024 Rabbi Bob talk contribs created page Talk:Fallout 4 Running Multiple Copies (Created page with "Origin: [https://forums.nexusmods.com/topic/13494967-downgrading-fallout-4-from-1109840-to-1101630-steam/ Pickysaurus via Nexus Mods Forums Here is a guide to rolling back Fallout 4 Game of the Year Edition to 1.10.163.0 (the version before the "Next Gen Update") Do keep in mind that you can also just grab Fallout 4: Game of the Year Edition DRM-free on GOG and skip all this process, while also having the ability to rollback anytime you want hassle-free, play offline...")
- 11:52, 10 August 2024 Rabbi Bob talk contribs created page Fallout 4 Running Multiple Copies (Created page with " Stub page for thoughts Fallout London requires Vault 13 Demo requires Fallout 4 Next Gen is =Read-Only= * =Base Install Clean= * See or the Discussion Page here for archive reasons Category:Gaming")
- 18:14, 25 April 2024 Rabbi Bob talk contribs created page Category:Weblog-2024-04 (Created page with "Category:Blog")
- 18:13, 25 April 2024 Rabbi Bob talk contribs created page 2024 Solar Eclipse (Created page with "I should be posting more on this later. {{#ev:youtube|wym2u34Z1S4|300|center||autoresize|valignment]}} Category:Weblog-2024-04")
- 18:11, 25 April 2024 Rabbi Bob talk contribs created page Category:Weblog-2024-03 (Created page with "Category:Blog")
- 14:15, 31 March 2024 Rabbi Bob talk contribs created page Arthur Ray (Created page with "right|thumb|Art Ray Arthur Charles Ray, 80, of Sidney passed away peacefully at home on March 12, 2024 after a long illness. Born in Brunswick, Maine on June 30, 1943, he attended Waterville schools and enjoyed activities at the Boys' Club where his grandfather, Andrew Armstrong, had been custodian and unofficial mentor. Arthur graduated from Waterville High School in 1961. In 1966 he graduated from the University of Maine, Orono with a B.S. degree i...")
- 14:14, 31 March 2024 Rabbi Bob talk contribs created page File:ArtRay.png (Category:Family Category:Obituaries)
- 14:14, 31 March 2024 Rabbi Bob talk contribs uploaded File:ArtRay.png (Category:Family Category:Obituaries)
- 14:09, 31 March 2024 Rabbi Bob talk contribs created page Alton Eugene Rollins (Created page with "right|thumb|Alton Eugene Rollins =Alton Eugene Rollins= March 28, 2024<br><br> AUGUSTA – Alton went home with his lord and savoir Jesus March 8, 2024, with his special cousin David Beane by his side at Togas Springs, Augusta. <br><br> He was born in Concord, Maine, son of Bailes and Doris Beane Rollins. He went to school in Bingham, graduating at Solon class of 1959, He went into Air Force and after that he worked at...")