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)
  • 21:16, 10 November 2025 Kenneth talk contribs created page Linux/fwupd (Created page with "== fwupd == fwupd - This project aims to make updating firmware on Linux automatic, safe, and reliable. https://github.com/fwupd/fwupd If you have a device with firmware supported by fwupd, this is how you can check for updates and apply them using fwupd's command line tools. # fwupdmgr get-devices This will display all devices detected by fwupd. # fwupdmgr refresh This will download the latest metadata from LVFS. # fwupdmgr get-updates If updates are availa...")
  • 06:13, 8 November 2025 Kenneth talk contribs created page Windows 11 Upgrade (Created page with "== Error: Your organization manages updates on this PC == The "Your organization manages updates on this PC" message in the Windows 11 PC Health Check typically appears when the system detects that update management is controlled by an external organization, even on a personal device. This can occur due to several reasons, including the presence of a linked work or school account, administrative policies set via Group Policy, or specific registry configurations related...")
  • 06:08, 8 November 2025 Kenneth talk contribs created page Windows 10/Windows 11 Upgrade (Created page with "See Windows 11 Upgrade")
  • 00:14, 5 November 2025 Kenneth talk contribs created page Python/PyInstaller Extractor (Created page with " https://github.com/extremecoders-re/pyinstxtractor PyInstaller Extractor is a Python script to extract the contents of a PyInstaller generated executable file. The header of the pyc files are automatically fixed so that a Python bytecode decompiler will recognize it. The script can run on both Python 2.x and 3.x. python pyinstxtractor.py test.exe git clone https://github.com/extremecoders-re/pyinstxtractor.git")
  • 21:24, 4 November 2025 Kenneth talk contribs created page Python/Decompile (Created page with "== uncompyle6 == Cross Python bytecode decompiler for Python bytecode up to Python 3.8. pip install uncompyle6 uncompyle6 your_filename.pyc uncompyle6 your_filename.pyc > your_filename.py")
  • 09:56, 4 November 2025 Kenneth talk contribs created page Tftp (Created page with "== tftp == == linux/tftp == See linux/tftp == keywords ==")
  • 23:09, 23 October 2025 Kenneth talk contribs created page Stars Without Number (Created page with "== Stars Without Number ==")
  • 22:39, 21 October 2025 Kenneth talk contribs created page Linux/Alternatives (Created page with " sudo update-alternatives --config java <pre> There are 3 choices for the alternative java (providing /usr/bin/java). Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/lib/jvm/java-6-openjdk/jre/bin/java 1061 auto mode 1 /usr/bin/gij-4.4 1044 manual mode 2 /usr/lib/jvm/java-6-openjdk/jre/bin/java 106...")
  • 06:37, 20 October 2025 Kenneth talk contribs created page Kubectl (Redirected page to Kubernetes) Tag: New redirect
  • 15:54, 13 October 2025 Kenneth talk contribs created page Synopsys (Created page with "== Synopsys ARC-V == ARC-V Processor IP | Synopsys https://www.synopsys.com/designware-ip/processor-solutions/arc-v-processors.html Enhancing RISC-V Design w/ ARC Processor IP | Synopsys Blog https://www.synopsys.com/blogs/chip-design/arc-processor-ip-risc-v.html Synopsys Moves To RISC-V To Help SoC Developers https://www.forbes.com/sites/karlfreund/2023/11/08/synopsys-moves-to-risc-v-to-help-soc-developers/ === Expansion or EOL === <blockquote> "A familiar fr...")
  • 22:12, 10 October 2025 Kenneth talk contribs created page Windows/getmac (Created page with "<pre> C:\> getmac Physical Address Transport Name =================== ========================================================== XX-50-41-00-00-XX \Device\Tcpip_{XX790ECD-12AF-4B02-98F6-4F2FD93F44XX} XX-E0-4C-68-18-XX \Device\Tcpip_{XX2417A6-A4C8-4A03-BB31-E87C0CBC84XX} XX-2F-74-DD-CB-XX \Device\Tcpip_{XX7F306D-F083-458C-A5E5-3AE3A80511XX} </pre> <pre> XX-EC-EF-61-FC-XX Media disconnected </pre>")
  • 17:34, 10 October 2025 Kenneth talk contribs created page Password (Created page with "== Correct horse battery staple == https://imgs.xkcd.com/comics/password_strength_2x.png https://xkcd.com/936/")
  • 07:37, 8 October 2025 Kenneth talk contribs created page Supermicro/ipmicfg (Created page with "See ipmicfg")
  • 15:52, 6 October 2025 Kenneth talk contribs created page Python/Coverage (Created page with " $ python -m coverage run -m pytest tests/test_example.py $ python -m coverage report -m $ python -m coverage html")
  • 21:47, 30 September 2025 Kenneth talk contribs created page Python/keyring (Created page with " https://github.com/jaraco/keyring <pre> >>> import keyring >>> keyring.set_password("system", "username", "password") >>> keyring.get_password("system", "username") 'password' </pre> <pre> $ keyring --help $ keyring set system username Password for 'username' in 'system': $ keyring get system username password </pre>")
  • 01:59, 27 September 2025 Kenneth talk contribs created page ASUS (Created page with "== OUI == The vendor of the MAC address 34:97:F6:xx:xx:xx is ASUSTek COMPUTER INC. The vendor is identified by the first six characters of the MAC address, which is known as the Organizationally Unique Identifier (OUI). MAC Address: 34:97:F6:xx:xx:xx OUI: 34:97:F6 Vendor: ASUSTek COMPUTER INC")
  • 01:58, 27 September 2025 Kenneth talk contribs created page ASRock (Created page with "== ASRock OUI == A8:A1:59:xx:xx:xx The vendor of the MAC address A8:A1:59:C6:6F:15 is ASRock Incorporation. The vendor is determined by the first three octets of the MAC address, known as the Organizationally Unique Identifier (OUI), which for this address is A8:A1:59.")
  • 17:30, 26 September 2025 Kenneth talk contribs created page Windows/WinDbg (Created page with "See WinDbg")
  • 19:58, 16 September 2025 Kenneth talk contribs created page Python/enum (Created page with "== enum — Support for enumerations == Python 3: enum — Support for enumerations https://docs.python.org/3/library/enum.html <pre> from enum import Enum # class syntax class Color(Enum): RED = 1 GREEN = 2 BLUE = 3 # functional syntax Color = Enum('Color', ['RED', 'GREEN', 'BLUE']) </pre> Convert string name or value to enum: <pre> def value_to_enum(color_value_str): try: return Color(color_value_str) except ValueError: retu...")
  • 03:46, 16 September 2025 Kenneth talk contribs created page Games/Foundry (Created page with "== Steam == https://store.steampowered.com/app/983870/FOUNDRY/ Release Date: May 2, 2024 Developer: Channel 3 Entertainment Publisher: Paradox Interactive == FOUNDRY == https://www.paradoxinteractive.com/games/foundry/about == Wiki == https://wiki.foundry-game.com/ == Server == amp/FoundryLaLa01/foundry/2915550/save/[SAVENAME]/_autosave_0 .. amp/FoundryLaLa01/foundry/2915550/save/[SAVENAME]/_autosave_4")
  • 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")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)