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 ( | ) (20 | 50 | 100 | 250 | 500)
  • 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
  • 21:29, 28 May 2025 Kenneth talk contribs created page Cisco (Created page with "{{subpages}} Category:Cisco")
  • 05:32, 28 May 2025 Kenneth talk contribs created page UFW (Created page with "== ufw == Enable firewall: sudo ufw enable Disable firewall: sudo ufw disable Show rules: sudo ufw status sudo ufw status numbered # rule numbers (for easy delete) sudo ufw status verbose # with port numbers Allow traffic: # sudo ufw allow 22/tcp sudo ufw allow 22/tcp comment "SSH" sudo ufw allow 53/tcp comment "DNS" Disallow traffic sudo ufw deny 53/tcp Delete rule: sudo ufw delete allow 53/tcp sudo ufw delete 1 # rule number from 'ufw status nu...")
  • 17:25, 21 May 2025 Kenneth talk contribs created page Nft (Created page with "== nfs is replacement for iptables == * https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/8/html/configuring_and_managing_networking/getting-started-with-nftables_configuring-and-managing-networking * https://wiki.nftables.org/wiki-nftables/index.php/Quick_reference-nftables_in_10_minutes")
  • 21:32, 13 May 2025 Kenneth talk contribs created page Python/Problems (Created page with "== Roman Numeral to Integer == My favorite solution I found online: <ref>https://leetcode.com/problems/roman-to-integer/solutions/264743/clean-python-beats-99-78/</ref> <pre> class Solution: def romanToInt(self, s: str) -> int: translations = { "I": 1, "V": 5, "X": 10, "L": 50, "C": 100, "D": 500, "M": 1000 } number = 0 s = s.replace("IV", "IIII").repl...")
  • 21:03, 12 May 2025 Kenneth talk contribs created page DnD/Random Magical Effects (Created page with " https://centralia.aquest.com/downloads/NLRMEv2.pdf The Net Libram of Random Magical Effects version 2.00 By Orrex <pre> 0001 1d10 of casterís fingers turn to stone 0002 1d100 bees swarm harmlessly around the caster for several weeks 0003 1d100 sparkling motes dance about the casterís head until dawn 0004 1d100% of casterís body turns to iron for that many rounds 0005 1d12 ducklings identify the caster as their mother 0006 1d4 of casterís fingers move from his...")
  • 18:43, 9 May 2025 Kenneth talk contribs created page Windows/Download (Created page with "== Visual Studio Subscriptions Downloads == https://my.visualstudio.com/downloads === was MSDN === VS Subscription used to be called MSDN")
  • 23:39, 8 May 2025 Kenneth talk contribs created page DnD/Monsters (Created page with "== Doppelganger == https://www.sideshow.com/wp/wp-content/uploads/2022/09/dnd_doppelganger-596x990.jpg == Gibbering Mouther == https://www.sideshow.com/wp/wp-content/uploads/2022/09/dnd_gibbering_mouther-768x940.jpg == keywords ==")
  • 21:53, 8 May 2025 Kenneth talk contribs created page Windows/Remote Desktop (Redirected page to Remote Desktop) Tag: New redirect
  • 21:53, 8 May 2025 Kenneth talk contribs created page Windows/RDP (Redirected page to Remote Desktop) Tag: New redirect
  • 06:05, 8 May 2025 Kenneth talk contribs created page Whl (Created page with "See Python/Wheel")
  • 23:35, 1 May 2025 Kenneth talk contribs created page DnD/Schools of Magic (Created page with "* '''Abjuration: Protection, countermagic, and banishment spells. * '''Conjuration: Creating or summoning things, often involving the summoning of creatures or objects. * '''Divination: Knowledge-based spells, revealing information about the past, present, or future. * '''Enchantment: Spells that affect the mental state of creatures, often involving manipulation or influence. * '''Evocation: Spells that deal direct damage or have other powerful effects. * '''Illusion: Sp...")
  • 22:16, 29 April 2025 Kenneth talk contribs created page Linux/motherboard (Created page with "== Query Motherboard Model == sudo dmidecode -t 2 sudo dmidecode --string baseboard-product-name sudo dmidecode | more sudo lshw | grep -A5 "Mot" sudo dmesg | grep DMI: cat /sys/devices/virtual/dmi/id/board_* cat /sys/devices/virtual/dmi/id/board_{vendor,name,version} ref: <ref>https://askubuntu.com/questions/179958/how-do-i-find-out-my-motherboard-model</ref> == keywords ==")
  • 19:02, 29 April 2025 Kenneth talk contribs created page Git/WSL (Created page with "~/.gitconfig <pre> [user] name = Mr User email = mr.user@example.com signingkey = /home/mruser/.ssh/signing [commit] gpgsign = true [gpg] format = ssh [gpg "ssh"] allowedSignersFile = /home/mruser/.allowed_signers [filter "lfs"] required = true process = git-lfs filter-process smudge = git-lfs smudge -- %f clean = git-lfs clean -- %f [pull] rebase = true [core] fileMode = false [gpg] # program = gpg program =...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)