All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 16:12, 27 August 2025 Kenneth talk contribs created page Windows/Windhawk (Created page with "See Windhawk")
  • 16:12, 27 August 2025 Kenneth talk contribs created page Windows/Taskbar Ungroup (Created page with "See Windhawk")
  • 16:44, 22 August 2025 Kenneth talk contribs created page Windows/SHA256 (Created page with "== certutil == certutil -hashfile [FILE] SHA256 certutil -hashfile [FILE] sha256 certutil -hashfile [FILE] SHA256 > file.certutil # does not appear to be designed for compare other than visually Example: <pre> C:\test> certutil -hashfile SOMEFILE sha256 SHA256 hash of SOMEFILE: 2f4a20cca5fce6f872bcfc17828fe7cc4f398ce69de25f5798b0d3ffbxxxxxxx CertUtil: -hashfile command completed successfully. </pre> == get-filehash == Get-FileHash -Algorithm SHA256 [FILE] get-f...")
  • 18:01, 20 August 2025 Kenneth talk contribs created page Aluminum (Created page with "== Aluminum 20-2020 Extrusion == https://8020.net/20-2020.html 20-2020 20mm X 20mm T-Slotted Profile - Four Open T-Slots 20-2020 is a 20mm x 20mm metric 20 series square T-slot profile with four open T-slots, one on each 20mm face. The profile is smooth, which makes it resistant to dirt and debris buildup while also being easy to clean. The 20-2020 profile is compatible with all 20 series fasteners. The 20-2020 profile is part of the smallest profile series 80/20...")
  • 22:28, 19 August 2025 Kenneth talk contribs created page WinDbg (Created page with "== WinDbg == https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/ == WinGet == See WinGet winget install Microsoft.WinDbg")
  • 16:36, 18 August 2025 Kenneth talk contribs created page Python/Hex (Created page with "To convert a bytes object to a hexadecimal string in Python, the most straightforward and recommended method is to use the built-in .hex() method available on bytes and bytearray objects. Python # Example bytes object my_bytes = b'\x00\xff\x10\xab' # Convert to a hexadecimal string hex_string = my_bytes.hex() print(hex_string)")
  • 16:36, 18 August 2025 Kenneth talk contribs created page PCIID (Created page with "To update the PCI ID database in Linux, which provides human-readable names for PCI devices, the update-pciids command is used. This command downloads the latest version of the pci.ids file from the official PCI ID repository. Steps to Update the PCI ID Database: Ensure Internet Connectivity: . The update-pciids command requires an active internet connection to download the updated pci.ids file. Execute the Command: . Open a terminal and run the update-pciids command wit...")
  • 16:35, 18 August 2025 Kenneth talk contribs created page Python/Typing (Created page with " https://docs.python.org/3/library/typing.html https://dagster.io/blog/python-type-hinting")
  • 02:16, 18 August 2025 Kenneth talk contribs moved page Games/Trine to Games/Trine 1
  • 02:15, 18 August 2025 Kenneth talk contribs created page Games/Trine 4 (Created page with "== Save Game Location == ref: https://www.pcgamingwiki.com/wiki/Trine_4:_The_Nightmare_Prince Windows %APPDATA%\Trine4\ Steam <Steam-folder>\userdata\<user-id>\690640\remote\ Steam Play (Linux) <SteamLibrary-folder>/steamapps/compatdata/690640/pfx/[Note 1]")
  • 01:49, 18 August 2025 Kenneth talk contribs created page Games/Save Game Location (Created page with "== Steam Version == Windows: C:\Program Files (x86)\Steam\userdata\[YOUR ACCOUNT ID]\35700\remote. macOS (OS X): Refer to the Steam folder for your account's user ID. Linux: $HOME/.frozenbyte/Trine1/. == GOG Version == Windows: `%appdata%\Trine2\` (e.g., C:\Users\[USERNAME]\AppData\Roaming\Trine2).")
  • 16:46, 3 August 2025 Kenneth talk contribs created page RHEL/firewalld (Created page with "== List Ports == == Add Port == firewall-cmd --add-port=80/tcp --permanent firewall-cmd --reload")
  • 03:55, 2 August 2025 Kenneth talk contribs created page Games/Trine 5 (Created page with "== LAN Only == Trying to get 2 GOG to work - didn't seem to work though? https://www.pcgamingwiki.com/wiki/Trine_5:_A_Clockwork_Conspiracy Non-EPIC / Offline (v)LAN Multiplayer • Link The usage of EPIC Games servers for multiplayer can be disabled and "LAN only" can be forced by opening %appdata%\Trine5\options.txt and adding setOption(networkModule, "UseEOS", false) setOption(networkModule, "UseLANOnly", true)")
  • 18:33, 30 July 2025 Kenneth talk contribs created page Python/requirements.txt (Created page with " pip freeze > requirements.txt pip install -r requirements.txt")
  • 23:43, 28 July 2025 Kenneth talk contribs created page GitHub/Angry Unicorn (Created page with "== Angry Unicorn == When GitHub is having a case of the Mondays https://i.imgur.com/FqTafVN.png That's quite the mean-looking... very angry... bright colorful and pretty... little pony... can I pet it? My emotions are all over the place")
  • 22:01, 23 July 2025 Kenneth talk contribs created page Scuba/Avelo (Created page with "https://diveavelo.com/howAveloWorks.html")
  • 02:27, 23 July 2025 Kenneth talk contribs created page Python/Serial (Created page with "== List Windows COM Ports == <pre> # https://stackoverflow.com/questions/12090503/listing-available-com-ports-with-python import serial.tools.list_ports for device in serial.tools.list_ports.comports(): #print(dir(device)) print(device) # COM9 - USB Serial Port (COM9) print(f'description: {device.description}') # USB Serial Port (COM9) print(f'device: {device.device}') # COM9 print(f'hwid: {device.hwid}') # USB VID:PID=0403:6011 SER=FT78U7W3C print(f'interfac...")
  • 19:13, 15 July 2025 Kenneth talk contribs created page Windows/Time (Created page with "== tzutil == To set the time zone to "Pacific Standard Time", the command would be: tzutil /s "Pacific Standard Time" tzutil /s "Mountain Standard Time" To see a list of available time zones, use: tzutil /l == ntp == To change NTP servers and sync: net stop w32time w32tm /config /syncfromflags:manual /manualpeerlist:"ntp.example.com" net start w32time w32tm /config /update w32tm /resync /rediscover w32tm /query /status w32tm /query /peers w32tm /query /...")
  • 21:56, 14 July 2025 Kenneth talk contribs created page Linux/PowerShell (Created page with "== Install == <pre> ################################### # Prerequisites # Update the list of packages sudo apt-get update # Install pre-requisite packages. sudo apt-get install -y wget # Get the version of Debian source /etc/os-release # Download the Microsoft repository GPG keys wget -q https://packages.microsoft.com/config/debian/$VERSION_ID/packages-microsoft-prod.deb # Register the Microsoft repository GPG keys sudo dpkg -i packages-microsoft-prod.deb # Delete...")
  • 04:16, 14 July 2025 Kenneth talk contribs created page Games/Trine (Created page with "== Save Game Location == The save game location for Trine 2 depends on whether you're using Steam Cloud. If using Steam Cloud, the saves are located within the Steam installation folder, specifically: C:\Program Files (x86)\Steam\userdata\[YOUR ACCOUNT ID]\35700\remote If not using Steam Cloud, the saves are located in: %APPDATA%\Trine")
  • 04:16, 14 July 2025 Kenneth talk contribs created page Games/Trine 2 (Created page with "== Save Game Location == The save game location for Trine 2 depends on whether you're using Steam Cloud. If using Steam Cloud, the saves are located within the Steam installation folder, specifically: C:\Program Files (x86)\Steam\userdata\[YOUR ACCOUNT ID]\35700\remote If not using Steam Cloud, the saves are located in: %APPDATA%\Trine2")
  • 21:06, 11 July 2025 Kenneth talk contribs created page CPU (Created page with "== Linux/Dual Core vs Dual Proc]] See Linux/Dual_Core_vs_Dual_Proc")
  • 03:07, 6 July 2025 Kenneth talk contribs created page Git/Windows (Created page with "== Issues == === 2.50.0.windows.1 - git clone hangs intermittently on large repos === Worked in 2.49 and earlier. Failing in "2.50.0.windows.1" <pre> $ git clone git@github.com:openjdk/jdk.git Cloning into 'jdk'... remote: Enumerating objects: 1582524, done. remote: Counting objects: 100% (1275/1275), done. remote: Compressing objects: 100% (585/585), done. Receiving objects: 0% (1/1582524) </pre> Temporary Workaround: * tracked down a workaround that works with...")
  • 03:25, 29 June 2025 Kenneth talk contribs created page Git/Large File Hunt (Created page with "== Kill Large Files == == Find Large Files == git rev-list --objects --all | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | sed -n 's/^blob //p' | sort --numeric-sort --key=2 | cut -c 1-12,41- | $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest * git rev-list --objects --all: Lists all objects reachable from any reference. * git cat-file --batch-check='%(objecttype) %(objectname) %(objec...")
  • 02:10, 29 June 2025 Kenneth talk contribs created page Windows/User Home Folder (Created page with " Change name of user profile folder in Windows 10 https://techpros.helpspot.com/index.php?pg=kb.page&id=6 wmic useraccount get name,SID HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\<SID> ProfileImagePath")
  • 23:30, 18 June 2025 Kenneth talk contribs created page Windows/Server Evaluation (Created page with " Upgrade and conversion options for Windows Server | Microsoft Learn https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options")
  • 23:27, 18 June 2025 Kenneth talk contribs created page Linux/Custom SSL Certificate (Created page with "== Man in the Middle SSL Firewall Snooping == If your work uses a Custom SSL Certificate for the firewall to inspect traffic, several Linux applications will encounter issues with this. == Check == Look for CN that is not google's: echo ":: Looking for Required Decryptor Cert..." curl -Ikv --max-time 10 https://www.google.com 2>&1 | grep "CN=decrypt.example.com" if [ $? -eq 0 ] ; then echo ":: Yes, Cert Required" else echo ":: No, Cert Not Required" fi...")
  • 23:11, 18 June 2025 Kenneth talk contribs created page Linux/X11 Forwarding (Created page with " Local on system: DISPLAY=localhost:0.0 Using Putty/Kitty with VcXsrv: DISPLAY=localhost:10.0 Most simple X11 programs like xterm, xclock will just work with default settings. Some, like gvim, need this always redirect GL setting: <ref>https://github.com/microsoft/WSL/issues/8791</ref> export LIBGL_ALWAYS_INDIRECT=1 Some programs like Firefox just refuse to X11 forward, due to AppArmor restrictions. Tried killing AppArmor but it made the system sad, and Firefox t...")
  • 21:45, 17 June 2025 Kenneth talk contribs created page Mac/Virtualization (Created page with "== Boot Camp == Install Windows directly on Mac, if Intel processor. Not virtualization. Needs some extra help for Windows 11. == Parallels == The GOLD standard for Mac Virtalizaiton == UTM == A little klunky, but functional == VMWare Fusion == Free for usage, even in work environment https://www.vmware.com/products/desktop-hypervisor/workstation-and-fusion :"Run Windows, Linux and other virtual machines with VMware Workstation Pro for Windows and Linux or VM...")
  • 15:03, 15 June 2025 Kenneth talk contribs created page XT250 (Created page with "== Partzilla == 2023 Yamaha XT250 - https://www.partzilla.com/catalog/yamaha/motorcycle/2023/xt250-xt250p-b1uh")
  • 18:59, 14 June 2025 Kenneth talk contribs created page HTML/Text Fragments (Created page with "== Text Fragments == Text fragments - URIs | MDN https://developer.mozilla.org/en-US/docs/Web/URI/Reference/Fragment/Text_fragments == Syntax == In a similar manner to document fragments, text fragments are appended onto a URL after a hash symbol (#). The syntax however is a bit different: https://example.com#:~:text=[prefix-,]textStart[,textEnd][,-suffix]")
  • 18:55, 14 June 2025 Kenneth talk contribs created page Utah/OHV (Created page with "== Stret Legal Motorcycle == <b>I have a street-legal motorcycle. Do I need a Utah non-resident OHV permit?</b> If your street-legal motorcycle is registered and plated in your home state, then you do not need to purchase a Utah non-resident OHV permit. If a machine is plated and follows all of Utah’s street-legal requirements, then it is no longer considered an off-highway vehicle and is technically considered a “passenger vehicle” or, in this case, a street-lega...")
  • 20:56, 12 June 2025 Kenneth talk contribs created page Windows/Screen Saver (Created page with " HKEY_CURRENT_USER\Control Panel\Desktop ScreenSaveActive 0 Then restart your computer or log out and back in to apply the changes. -- HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Control Panel\Desktop ScreenSaveActive (REG_SZ) - 0 ScreenSaveTimeOut (1800) - 9999 ref: <ref>https://winaero.com/force-disable-screen-saver-in-windows-10/</ref>")
  • 10:40, 11 June 2025 Kenneth talk contribs created page OHV/Trailer (Created page with "== Tailer Floor Mount Tie Downs == https://www.easternmarine.com/floor-accessories-tie-downs == motorcycle mount == https://www.bikebinderz.com/ You can select any of our kits but dirt bike kit L track and E track will suit your needs. https://www.bikebinderz.com/collections/2022-line-up/products/bike-binderz-l-track-dirt-bike-kit-black?variant=39620905304153 https://www.bikebinderz.com/products/bike-binderz-safety-lock?variant=27846179337 <s>https://www.bike...")
  • 09:21, 11 June 2025 Kenneth talk contribs created page GitHub/Checkout (Created page with "https://github.com/actions/checkout")
  • 14:45, 9 June 2025 Kenneth talk contribs moved page Windows/App Locker to Windows/AppLocker
  • 14:45, 9 June 2025 Kenneth talk contribs created page Windows/App Locker (Created page with " serivces - check for Application Identification secpol.msc Applicaiton Control Policies properties on AppLocker, to verify it is enabled Executable Rules -> Create default Rules")
  • 14:36, 9 June 2025 Kenneth talk contribs created page Windows/Security Policies (Created page with "== Local Security Policy == Local Security Policy Editor: secpol.msc == Local Group Policy == Local Group Policy Editor: gpedit.msc")
  • 14:08, 8 June 2025 Kenneth talk contribs created page Mac/PS1 (Created page with "~/.basn_profile export PS1="\W\$ " ln -s .bash_profile .bashrc")
  • 00:16, 8 June 2025 Kenneth talk contribs created page Mac/GNU (Created page with " Install and Use GNU Command Line Tools on macOS/OS X - Top Bug Net https://www.topbug.net/blog/2013/04/14/install-and-use-gnu-command-line-tools-in-mac-os-x/")
  • 00:15, 8 June 2025 Kenneth talk contribs created page Mac/Brew (Created page with "https://www.topbug.net/blog/2013/04/14/install-and-use-gnu-command-line-tools-in-mac-os-x/")
  • 21:09, 1 June 2025 Kenneth talk contribs created page Dr Who (Created page with "== The Long Song == The Long Song (with lyrics) - Doctor Who https://www.youtube.com/watch?v=fPisDzhYrCg == keywords ==")
  • 16:52, 30 May 2025 Kenneth talk contribs created page Microsoft/Office/365 (Created page with " https://m365.cloud.microsoft/?auth=2&home=1")
  • 16:52, 30 May 2025 Kenneth talk contribs created page Microsoft/Office/My Apps (Created page with " https://myapps.microsoft.com/")
  • 16:51, 30 May 2025 Kenneth talk contribs created page Microsoft/Office/Word (Created page with " https://word.cloud.microsoft/?wdOrigin=OFFICEDOTCOM.SHELL")
  • 16:50, 30 May 2025 Kenneth talk contribs created page Microsoft/Office/Visio (Created page with "https://m365.cloud.microsoft/launch/visio?auth=2")
  • 16:30, 30 May 2025 Kenneth talk contribs created page DnD/Adventure Levels (Created page with "== Recommended Level for Published Adventures == ref: https://rpg.stackexchange.com/questions/209853/what-is-the-recommended-level-for-each-published-adventure === Hardcovers & Boxed Sets === <pre> Title Levels The Lost Mine of Phandelver (revamped as Phandelver and Below: The Shattered Obelisk, see below) 1-5 Hoard of the Dragon Queen 1-8 The Rise of Tiamat 8-15 Princes of the Apocalypse 1-15 Out of the Abyss 1-15 Curse of Strahd 1-10 Storm King's Thunder 1-1...")
  • 21:54, 28 May 2025 Kenneth talk contribs created page Cisco/CBS220 (Created page with "== Default Login == cisco / cisco == Serial Console == Baud rate: 115200 tio -b 115200 /dev/ttyUSB0 == Show Running Config == sh run == Default Config == <pre> SwitchXXXXXX#sh run config-file-header CBS220-48T-4X SwitchXXXXXX v2.0.1.5 CLI v1.0 @ ! ! ! username "cisco" privilege admin secret 8 $8$xxxxxxxxxxxxxxxxxxxxxxxxxxx ! ! ! sntp server pool.ntp.org sntp server time-a.timefreq.bldrdoc.gov sntp server time-b.timefreq.bldrdoc.gov sntp server time-c.timefreq...")
  • 21:50, 28 May 2025 Kenneth talk contribs moved page Cisco /VPN to Cisco/VPN without leaving a redirect
  • 21:49, 28 May 2025 Kenneth talk contribs moved page Cisco VPN to Cisco /VPN
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)