New pages
Jump to navigation
Jump to search
- 22:32, 7 February 2026 USB (hist | edit) [4,957 bytes] Kenneth (talk | contribs) (Created page with "== USB Testing ==")
- 01:43, 7 February 2026 Winget (hist | edit) [14 bytes] Kenneth (talk | contribs) (Created page with "See WinGet")
- 07:33, 6 February 2026 Python/3.14 (hist | edit) [26 bytes] Kenneth (talk | contribs) (Created page with "See Ubuntu/Python/3.14")
- 22:45, 5 February 2026 Ubuntu/Python/3.14 (hist | edit) [889 bytes] Kenneth (talk | contribs) (Created page with " sudo add-apt-repository ppa:deadsnakes/ppa sudo apt update sudo apt install python3.14")
- 22:43, 5 February 2026 Ubuntu/Python (hist | edit) [6 bytes] Kenneth (talk | contribs) (Created page with "Python")
- 18:58, 3 February 2026 Ubuntu/Unattended Upgrades (hist | edit) [118 bytes] Kenneth (talk | contribs) (Created page with " sudo apt install unattended-upgrades See: https://documentation.ubuntu.com/server/how-to/software/automatic-updates/")
- 01:24, 3 February 2026 Games/Wildmender (hist | edit) [225 bytes] Kenneth (talk | contribs) (Created page with " Active Saves: %USERPROFILE%\AppData\LocalLow\Muse Games\Wildmender\worlds\ Backup Saves: %USERPROFILE%\AppData\LocalLow\Muse Games\Wildmender\backup\ Linux Save Path: <SteamLibrary-folder>/steamapps/compatdata/1599330/pfx/") originally created as "Wildmender"
- 01:07, 2 February 2026 Ikea (hist | edit) [552 bytes] Kenneth (talk | contribs) (Created page with "== Gaming Shelves == https://www.ikea.com/us/en/p/billy-bookcase-black-oak-effect-40477340/ BILLY bookcase is a beloved icon that never goes out of style. Thanks to its versatility you can use it in many different ways at home – regardless of whether you store books or everyday items in it. Bookcase, black oak effect, 31 1/2x11x79 1/2 " https://www.ikea.com/us/en/images/products/billy-bookcase-black-oak-effect__1097080_pe864708_s5.jpg <!-- backup: https://i.imgur...")
- 22:55, 1 February 2026 CodeScene (hist | edit) [9,574 bytes] Kenneth (talk | contribs) (Created page with "== CodeScene == https://codescene.com/ == CLI Tools == https://codescene.io/docs/cli/index.html")
- 03:30, 30 January 2026 Windows 11/Install (hist | edit) [270 bytes] Kenneth (talk | contribs) (Created page with "== Bypass Microsoft Account Creation == Press Shift+F10 to get the command prompt, and run: start ms-cxh:localonly To start the local user account creator ref: * https://www.reddit.com/r/sysadmin/comments/1jp5vln/an_alternative_to_bypass_microsoft_account/?rdt=38527")
- 06:46, 28 January 2026 Games/Goat Simulator Remastered (hist | edit) [269 bytes] Kenneth (talk | contribs) (Created page with "== Epic Games == === Install Location === C:\Program Files\Epic Games\GoatSimulatorRemastered === Save Game Location === %LOCALAPPDATA%\Goatsim_UE4\Saved\SaveGames %LOCALAPPDATA%\Goatsim_UE4\Saved\SaveGames.1 # Backup %LOCALAPPDATA%\Goatsim_UE4\Saved\Config")
- 23:06, 25 January 2026 IPv4 (hist | edit) [330 bytes] Kenneth (talk | contribs) (Created page with "== IPv4 == == IPv6 == See IPv6 == Get My Public IPv4 Address == == keywords == Category:IPv6 Category:IP Address")
- 07:24, 25 January 2026 Epic Games (hist | edit) [1,381 bytes] Kenneth (talk | contribs) (Created page with "== Achivements == Troubleshooting Achievements * Launcher Cache: Clearing the Epic Games Launcher cache can resolve issues. Ref: * Achievements are not updating in the Epic Games Launcher - Epic Games Store Support - https://www.epicgames.com/help/en-US/epic-games-store-c-202300000001639/launcher-support-c-202300000001735/achievements-are-not-updating-in-the-epic-games-launcher-a202300000014828 == How do I clear the Launcher cache on PC? == 5. %localappdata% %local...")
- 21:59, 24 January 2026 CentOS/Grub (hist | edit) [2,980 bytes] Kenneth (talk | contribs) (Created page with " grub2-mkconfig -o /boot/grub2/grub.cfg <pre> # grub2-mkconfig -o /boot/grub2/grub.cfg Generating grub configuration file ... Adding boot menu entry for UEFI Firmware Settings ... done </pre> performance tweaks /etc/default/grub <pre> # vim grub GRUB_TIMEOUT=60 GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT="console" #GRUB_CMDLINE_LINUX="crashkernel=auto rhgb quiet splash selinux=0" #GRUB_CMDLINE_LINUX="crashkernel=auto rhgb quiet splash intel_pst...")
- 20:08, 23 January 2026 Windows/Save Passwords (hist | edit) [73 bytes] Kenneth (talk | contribs) (Created page with "== Remote Desktop Save Passwords == See Remote_Desktop#Save_Password")
- 19:57, 21 January 2026 Ubuntu/APT (hist | edit) [593 bytes] Kenneth (talk | contribs) (Created page with "== add-apt-repository == <pre> # 1. Install the tool if needed (for older systems) sudo apt install software-properties-common # 2. Add the repository (replace ppa:user/repo or deb URL with the actual one) sudo add-apt-repository ppa:user/repo # For Launchpad PPAs # OR sudo add-apt-repository 'deb [arch=amd64] http://repo.address/ubuntu focal main' # For direct deb lines # 3. (Optional) Fetch GPG Key if not handled automatically # wget -qO - https://repo.address/key....")
- 03:58, 20 January 2026 Windows/Memory Check (hist | edit) [333 bytes] Kenneth (talk | contribs) (Created page with "To check your Windows memory (RAM) for errors, use the built-in Windows Memory Diagnostic Tool, accessible by searching "memory diagnostic" in the Start Menu or typing mdsched in the Run dialog (Win+R), which restarts your PC to scan for issues and reports results after logging back in, helping diagnose crashes or freezes. mdsched")
- 01:59, 10 January 2026 Linux/PATH (hist | edit) [642 bytes] Kenneth (talk | contribs) (Created page with "== Show PATH == echo $PATH == Find the Full Path of a Specific Binary == which [command] Example: which grep == Search PATH == List All Available Binaries/Commands compgen -c | sort Advanced Method (for Full Paths) - If you need the full path to all executables in your PATH, you can use a loop or a more complex find command. A robust method is to use find within the directories specified by $PATH: # IFS=:;: Temporarily sets the internal field separator to a...")
- 20:40, 9 January 2026 DevEx (hist | edit) [1,273 bytes] Kenneth (talk | contribs) (Created page with "== Developer Experience / DevEx / DevX / DX == '''DevX''' / '''DevEx''' / '''DX''' are abbreviations for Developer Experience, referring to the overall quality and ease of a software developer's interaction with their tools, systems, processes, and environment. While some sources suggest DevX for a general focus and DevEx for specific programs (like Roblox's Developer Exchange), most use them interchangeably to describe creating an efficient, productive, and satisfying...")
- 19:16, 5 January 2026 Ad Blocker (hist | edit) [470 bytes] Kenneth (talk | contribs) (Created page with "= Chrome = == uBlock == https://chromewebstore.google.com/detail/ublock/epcnnfbjfcgphgdmggkamkmgojdagdnn?hl=en * see also https://ublockorigin.com/ == Total Adblock == https://chromewebstore.google.com/detail/total-adblock-ad-blocker/gekdekpbfehejjiecgonmgmepbdnaggp?hl=en == Ghostery == https://chromewebstore.google.com/detail/ghostery-tracker-ad-block/mlomiejdfkolichcflejclcbmpeaniij?utm_source=ghostery.com&utm_campaign=direct * https://www.ghostery.com/")
- 22:49, 3 January 2026 Apache/Proxy (hist | edit) [11 bytes] Kenneth (talk | contribs) (Created page with "== Proxy ==")
- 22:49, 3 January 2026 Apache/Installation (hist | edit) [18 bytes] Kenneth (talk | contribs) (Created page with "== Installation ==")
- 07:37, 1 January 2026 Windows 11/Uninstall Registry (hist | edit) [372 bytes] Kenneth (talk | contribs) (Created page with "Key Registry Locations For 64-bit apps on 64-bit Windows: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall For 32-bit apps on 64-bit Windows: HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall For per-user apps (installed for current user only): HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall")
- 21:15, 30 December 2025 Google/Workspaces (hist | edit) [706 bytes] Kenneth (talk | contribs) (Created page with "== Tweaks ==")
- 21:23, 29 December 2025 Ansible/Windows/ConfigureRemotingForAnsible.ps1 (hist | edit) [20,033 bytes] Kenneth (talk | contribs) (Created page with "== ConfigureRemotingForAnsible.ps1 == As of 2025.12.29 https://raw.githubusercontent.com/ansible/ansible-documentation/devel/examples/scripts/ConfigureRemotingForAnsible.ps1 <pre> #Requires -Version 3.0 # Configure a Windows host for remote management with Ansible # ----------------------------------------------------------- # # This script checks the current WinRM (PS Remoting) configuration and makes # the necessary changes to allow Ansible to connect, authenticate...")
- 21:20, 29 December 2025 Ansible/Windows (hist | edit) [1,901 bytes] Kenneth (talk | contribs) (Created page with "== Ansible for Windows == https://raw.githubusercontent.com/ansible/ansible-documentation/devel/examples/scripts/ConfigureRemotingForAnsible.ps1")
- 23:50, 27 December 2025 Linux/ARP (hist | edit) [173 bytes] Kenneth (talk | contribs) (Created page with "== Address Resolution Protocol == == Clear ARP Cache == sudo ip -s -s neigh flush all == ARP Ping == # arping -i [INTERPACE] [MAC] arping -i enp38s0 d0:50:99:fe:07:2d")
- 18:46, 19 December 2025 Windows/Delete Unowned Folder (hist | edit) [737 bytes] Kenneth (talk | contribs) (Created page with " takeown /f "C:\Path\To\Folder" /r /d y icacls "C:\Path\To\Folder" /grant Administrators:F /t rmdir /s /q "C:\Path\To\Folder"")
- 18:45, 19 December 2025 Windows/Take Ownership (hist | edit) [422 bytes] Kenneth (talk | contribs) (Created page with " takeown /f "C:\Path\To\Folder" /r /d y icacls "C:\Path\To\Folder" /grant Administrators:F /t rmdir /s /q "C:\Path\To\Folder"")
- 18:43, 19 December 2025 Windows/Link (hist | edit) [247 bytes] Kenneth (talk | contribs) (Created page with "== Create Symbolic Link == WARNING: RUN FROM ELEVATED ADMINISTRATOR WINDOW!! Command line: # Create Directory Symbolic Link mklink /D Link Target Powershell: New-Item -ItemType SymbolicLink -Path "C:\path\to\link" -Target "C:\path\to\target"")
- 19:58, 17 December 2025 Docker/Desktop (hist | edit) [65 bytes] Kenneth (talk | contribs) (Created page with "== Switch to Linux Containers == https://i.imgur.com/BTZzltk.png")
- 20:05, 15 December 2025 Windows/Snappy Driver Installer Origin (hist | edit) [335 bytes] Kenneth (talk | contribs) (Created page with " https://www.glenn.delahoy.com/snappy-driver-installer-origin/ https://www.reddit.com/r/software/comments/ui3orx/snappy_driver_installer_vs_origin/?rdt=65297 The old: https://sdi-tool.org/ SDI: https://sdi-tool.org/ SDIO: http://www.snappy-driver-installer.org/")
- 17:18, 15 December 2025 Ykman (hist | edit) [21 bytes] Kenneth (talk | contribs) (Redirected page to YubiKey) Tag: New redirect
- 17:18, 15 December 2025 Yubi (hist | edit) [21 bytes] Kenneth (talk | contribs) (Redirected page to YubiKey) Tag: New redirect
- 17:17, 15 December 2025 Yubikey (hist | edit) [21 bytes] Kenneth (talk | contribs) (Redirected page to YubiKey) Tag: New redirect
- 09:35, 14 December 2025 Duo (hist | edit) [85 bytes] Kenneth (talk | contribs) (Created page with "== Duo Security == Duo Security https://duo.com/ == keywords ==")
- 08:58, 14 December 2025 Steam/Samira (hist | edit) [162 bytes] Kenneth (talk | contribs) (Created page with "== Samira - Steam Achievement Manager for Linux == See Steam/Samira == Steam Achievement Manager == See Steam/Steam Achievement Manager == keywords ==")
- 08:56, 14 December 2025 Steam/SamRewritten (hist | edit) [226 bytes] Kenneth (talk | contribs) (Created page with "== SamRewritten == https://github.com/PaulCombal/SamRewritten == Steam Achievement Manager == See Steam/Steam Achievement Manager")
- 08:19, 14 December 2025 Steam/Console Commands (hist | edit) [40,222 bytes] Kenneth (talk | contribs) (Created page with "== Family Sharing Max == Increase the Family Sharing Max from 5 https://steamcommunity.com/sharedfiles/filedetails/?id=873543244#:~:text=below%2E-,Family%20Sharing%20%E2%80%94%20Library%20for%20friend%20%28Regionally%20limited%29")
- 07:27, 14 December 2025 Steam/Steam Achievement Manager (hist | edit) [2,209 bytes] Kenneth (talk | contribs) (Created page with "== Steam Achievement Manager == Steam Achievement Manager https://github.com/gibbed/SteamAchievementManager <blockquote> Steam Achievement Manager (SAM) is a lightweight, portable application used to manage achievements and statistics in the popular PC gaming platform Steam. This application requires the Steam client, a Steam account and network access. Steam must be running and the user must be logged in. This is the code for SAM. The closed-source version original...")
- 07:25, 14 December 2025 Steam/Achievements (hist | edit) [2,654 bytes] Kenneth (talk | contribs) (Created page with "== Achivement Storage == C:\Program Files (x86)\Steam\appcache\stats UserGameStats_[AccountID]_[AppID].bin References: https://github.com/gibbed/SteamAchievementManager/issues/500")
- 22:04, 13 December 2025 Python/Flask (hist | edit) [5,668 bytes] Kenneth (talk | contribs) (Created page with "== Flask == == Installation == ## Linux / macOS mkdir myproject cd myproject # python3 -m venv .flask python3 -m venv .venv . .venv/bin/activate ## Windows mkdir myproject cd myproject py -3 -m venv .venv .venv\Scripts\activate ## Next Common Step # pip install Flask pip3 install Flask # End deactivate References: * https://flask.palletsprojects.com/en/stable/installation/ == Quick Start == Hello World helloworld.py <pre> from flask import Flask...")
- 21:56, 13 December 2025 Flask (hist | edit) [20 bytes] Kenneth (talk | contribs) (Created page with "See Python/Flask")
- 23:35, 4 December 2025 Powershell (hist | edit) [37 bytes] Kenneth (talk | contribs) (Created page with "== pwsh == See Windows/PowerShell")
- 23:35, 4 December 2025 Pwsh (hist | edit) [26 bytes] Kenneth (talk | contribs) (Created page with "See Windows/PowerShell")
- 09:49, 4 December 2025 Windows/Hide Volume Button (hist | edit) [149 bytes] Kenneth (talk | contribs) (Created page with "run: shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9} Reference: https://superuser.com/questions/1689421/how-do-i-hide-the-volume-icon-in-windows-11")
- 20:17, 3 December 2025 VSCodium (hist | edit) [143 bytes] Kenneth (talk | contribs) (Created page with "== Copilot in VSCodium == [GUIDE] 2025 How to run Copilot in VSCodium (without VSCode) https://github.com/VSCodium/vscodium/discussions/1487")
- 17:21, 3 December 2025 VSCode (hist | edit) [26 bytes] Kenneth (talk | contribs) (Created page with "See Visual Studio Code")
- 19:33, 1 December 2025 Spanning Tree Protocol (hist | edit) [1,626 bytes] Kenneth (talk | contribs) (Created page with "== Spanning Tree == Spanning Tree Protocol (STP) is a network protocol that creates a loop-free logical topology for Ethernet networks by blocking redundant links. It prevents network loops that can cause "broadcast storms," which overwhelm a network and bring it down. STP ensures there is only one active path between any two devices and automatically reroutes traffic through a backup link if an active one fails, thus providing network redundancy and stability * Preven...")
- 09:55, 29 November 2025 Xorriso (hist | edit) [68 bytes] Kenneth (talk | contribs) (Created page with "== xorriso ==")