New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 21:47, 30 September 2025Python/keyring (hist | edit) ‎[385 bytes]Kenneth (talk | contribs) (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 2025ASUS (hist | edit) ‎[728 bytes]Kenneth (talk | contribs) (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 2025ASRock (hist | edit) ‎[369 bytes]Kenneth (talk | contribs) (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 2025Windows/WinDbg (hist | edit) ‎[14 bytes]Kenneth (talk | contribs) (Created page with "See WinDbg")
  • 19:58, 16 September 2025Python/enum (hist | edit) ‎[1,850 bytes]Kenneth (talk | contribs) (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 2025Games/Foundry (hist | edit) ‎[421 bytes]Kenneth (talk | contribs) (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 2025Windows/Windhawk (hist | edit) ‎[16 bytes]Kenneth (talk | contribs) (Created page with "See Windhawk")
  • 16:12, 27 August 2025Windows/Taskbar Ungroup (hist | edit) ‎[16 bytes]Kenneth (talk | contribs) (Created page with "See Windhawk")
  • 16:44, 22 August 2025Windows/SHA256 (hist | edit) ‎[1,133 bytes]Kenneth (talk | contribs) (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 2025Aluminum (hist | edit) ‎[961 bytes]Kenneth (talk | contribs) (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 2025WinDbg (hist | edit) ‎[5,213 bytes]Kenneth (talk | contribs) (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 2025Python/Hex (hist | edit) ‎[336 bytes]Kenneth (talk | contribs) (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 2025PCIID (hist | edit) ‎[1,430 bytes]Kenneth (talk | contribs) (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 2025Python/Typing (hist | edit) ‎[92 bytes]Kenneth (talk | contribs) (Created page with " https://docs.python.org/3/library/typing.html https://dagster.io/blog/python-type-hinting")
  • 02:15, 18 August 2025Games/Trine 4 (hist | edit) ‎[261 bytes]Kenneth (talk | contribs) (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 2025Games/Save Game Location (hist | edit) ‎[303 bytes]Kenneth (talk | contribs) (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 2025RHEL/firewalld (hist | edit) ‎[1,338 bytes]Kenneth (talk | contribs) (Created page with "== List Ports == == Add Port == firewall-cmd --add-port=80/tcp --permanent firewall-cmd --reload")
  • 03:55, 2 August 2025Games/Trine 5 (hist | edit) ‎[424 bytes]Kenneth (talk | contribs) (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 2025Python/requirements.txt (hist | edit) ‎[64 bytes]Kenneth (talk | contribs) (Created page with " pip freeze > requirements.txt pip install -r requirements.txt")
  • 23:43, 28 July 2025GitHub/Angry Unicorn (hist | edit) ‎[240 bytes]Kenneth (talk | contribs) (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 2025Scuba/Avelo (hist | edit) ‎[40 bytes]Kenneth (talk | contribs) (Created page with "https://diveavelo.com/howAveloWorks.html")
  • 02:27, 23 July 2025Python/Serial (hist | edit) ‎[1,827 bytes]Kenneth (talk | contribs) (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 2025Windows/Time (hist | edit) ‎[895 bytes]Kenneth (talk | contribs) (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 2025Linux/PowerShell (hist | edit) ‎[1,008 bytes]Kenneth (talk | contribs) (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 2025Games/Trine 1 (hist | edit) ‎[925 bytes]Kenneth (talk | contribs) (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") originally created as "Games/Trine"
  • 04:16, 14 July 2025Games/Trine 2 (hist | edit) ‎[345 bytes]Kenneth (talk | contribs) (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 2025CPU (hist | edit) ‎[71 bytes]Kenneth (talk | contribs) (Created page with "== Linux/Dual Core vs Dual Proc]] See Linux/Dual_Core_vs_Dual_Proc")
  • 03:07, 6 July 2025Git/Windows (hist | edit) ‎[1,320 bytes]Kenneth (talk | contribs) (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 2025Git/Large File Hunt (hist | edit) ‎[3,177 bytes]Kenneth (talk | contribs) (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 2025Windows/User Home Folder (hist | edit) ‎[242 bytes]Kenneth (talk | contribs) (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")