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)
  • 20:10, 3 August 2024 Kenneth talk contribs created page Linux/lolcat (Created page with "== lolcat == https://i.sstatic.net/sY3N5.gif")
  • 18:59, 3 August 2024 Kenneth talk contribs created page Linux/ts (Created page with "== ts == ts adds a timestamp to the beginning of each line of input == Timestamp Output == tail -f /some/device | ts")
  • 18:58, 3 August 2024 Kenneth talk contribs created page Linux/Timestamp Output (Redirected page to Linux/ts) Tag: New redirect
  • 18:19, 30 July 2024 Kenneth talk contribs created page FMS (Created page with "== FMS - Future of Memory and Storage == https://futurememorystorage.com/ August 6-8, 2024 Santa Clara Convention Center FMS: the Future of Memory and Storage has expanded the scope of Flash Memory Summit to encompass all tiers of Memory and Storage. As a leading global independent conference and exhibition, FMS is now in its 18th year, offering enhanced support to the industry. Serving as a centralized hub for professional growth, industry connections, and custom...")
  • 19:36, 29 July 2024 Kenneth talk contribs created page Visual Studio Code (Created page with "== Sort Lines == Sort lines - Visual Studio Marketplace https://marketplace.visualstudio.com/items?itemName=Tyriar.sort-lines Shortcut key: F9 == Upper Case == To convert text to all upper case, choose Edit > Advanced > Make Uppercase or press Ctrl+Shift+U. To convert text to all lower case, choose Edit > Advanced > Make Lowercase or press Ctrl+U. Make Uppercase or press Ctrl+Shift+U Make Lowercase or press Ctrl+U == keywords ==")
  • 19:15, 28 July 2024 Kenneth talk contribs moved page Pbis to BeyondTrust
  • 18:35, 28 July 2024 Kenneth talk contribs created page Keeper (Created page with "== Keeper External Plugin for Ansible and Kubernetes == Install Keeper Ansible Module https://docs.keeper.io/en/v/secrets-manager/secrets-manager/integrations/ansible/ansible-plugin#install-keeper-ansible-module external-secrets/external-secrets: External Secrets Operator reads information from a third-party service like AWS Secrets Manager and automatically injects the values as Kubernetes Secrets. https://github.com/external-secrets/external-secrets :External Se...")
  • 17:10, 22 July 2024 Kenneth talk contribs created page GitHub/Self-Hosted Runner (Created page with "https://docs.github.com/github/automating-your-workflow-with-github-actions/hosting-your-own-runners Download: (2.317.0 as of 2024.07.22) <pre> # Create a folder $ mkdir actions-runner && cd actions-runner # Download the latest runner package $ curl -o actions-runner-linux-x64-2.317.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-x64-2.317.0.tar.gz # Optional: Validate the hash $ echo "9e883d210df8c6028aff475475a457d380353f9...")
  • 21:37, 20 July 2024 Kenneth talk contribs created page Python/MongoDB (Created page with "== Test == <pre> #!/usr/bin/env python3 # python -m pip install pymongo import pymongo import urllib.parse # pymongo tutorial - https://www.w3schools.com/python/python_mongodb_getstarted.asp with open('../files/mongo.username', 'r') as file: username = file.read().replace('\n', '') with open('../files/mongo.password', 'r') as file: password = file.read().replace('\n', '') # pymongo.errors.InvalidURI: Username and password must be escaped according to RFC 398...")
  • 06:16, 20 July 2024 Kenneth talk contribs created page NTP/Windows (Created page with "== Windows NTP == == Windows Synchronization == ref: <ref>https://stackoverflow.com/questions/22862236/how-to-sync-windows-time-from-a-ntp-time-server-in-command</ref> net stop w32time w32tm /config /syncfromflags:manual /manualpeerlist:"0.it.pool.ntp.org 1.it.pool.ntp.org 2.it.pool.ntp.org 3.it.pool.ntp.org" net start w32time w32tm /config /update w32tm /resync /rediscover w32tm /query /status ----- Set time from the command line: net time /set \\10.10.10.1...")
  • 21:31, 18 July 2024 Kenneth talk contribs created page Python/3 (Created page with "== SyntaxWarning Literals == <blockquote> The compiler now produces a SyntaxWarning when identity checks (is and is not) are used with certain types of literals (e.g. strings, numbers). These can often work by accident in CPython, but are not guaranteed by the language spec. The warning advises users to use equality tests (== and !=) instead. (Contributed by Serhiy Storchaka in bpo-34850.) </blockquote> https://docs.python.org/3.8/whatsnew/3.8.html#changes-in-python-be...")
  • 20:07, 16 July 2024 Kenneth talk contribs created page Squid (Created page with "== Squid HTTP Proxy == == keywords ==")
  • 17:08, 16 July 2024 Kenneth talk contribs created page Helm (Created page with "== Kubernetes Helm == Use specific kubeconfig: helm --kubeconfig CONFIGFILE [otherparams] List releases: helm list List repos: helm repo list Add repo: # example add awx operator: helm repo add awx-operator https://ansible.github.io/awx-operator/ Update repo: helm repo update Search through your local repos, and display latest stable versions of repo/charts found: helm search repo Note: Charts are listed as REPO/CHART Search through your local repos for sp...")
  • 03:31, 13 July 2024 Kenneth talk contribs created page Pathfinder/Influence Encounter (Created page with " Influence - Rules - Archives of Nethys: Pathfinder 2nd Edition Database https://2e.aonprd.com/Rules.aspx?ID=3040 Influence Skill check (often Diplomacy) Discover Perception check")
  • 18:35, 12 July 2024 Kenneth talk contribs created page Windows/Task Scheduler (Created page with " %windir%\system32\taskschd.msc /s")
  • 05:04, 12 July 2024 Kenneth talk contribs created page Windows/Firewall (Created page with "== Allow ICMP == netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=block IPv6 version: netsh advfirewall firewall add rule name="ICMP Allow incoming V6 echo request" protocol=icmpv6:8,any dir=in action=allow netsh advfirewall firewall add rule name="ICMP Allow incoming V6 echo requ...")
  • 01:32, 10 July 2024 Kenneth talk contribs created page Openssh (Created page with "See SSH")
  • 20:43, 9 July 2024 Kenneth talk contribs created page Openjdk (Created page with " https://wiki.openjdk.org/display/jdk8u/Main https://github.com/adoptium/temurin8-binaries/releases/tag/jdk8u412-b08 https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_x64_windows_hotspot_8u412b08.msi")
  • 20:42, 9 July 2024 Kenneth talk contribs created page DnD/Potions (Created page with "https://drive.google.com/file/d/0B8XAiXpOfz9cMWt1RTBicmpmUDg/view?resourcekey=0-ceHUken0_UhQ3Apa6g4SJA https://drive.google.com/file/d/1r1aQtgq7BiS_7Uir2qDAzgEZbKEdhYsz/view https://www.reddit.com/r/DMAcademy/comments/jwsf4k/filling_in_a_potion_shop_final_table/ https://drive.google.com/file/d/1V_udNPxlTk_ufSyLsZ4caIO5LqFmE5LO/view?pli=1 https://www.reddit.com/r/DMAcademy/comments/zcp6cv/looking_for_a_list_of_potions_with_costs/ http://dnd5e.wikidot.com/wondrous-i...")
  • 23:46, 8 July 2024 Kenneth talk contribs created page Ruckus/ICX-7450 (Created page with " https://support.ruckuswireless.com/products/106-ruckus-icx-7450-campus-switches as of 2024.07.08: <pre> Model Name:ICX-7450Product Family:RUCKUS ICX SwitchesRecommended Software: Stability Release: Patches: RUCKUS ICX FastIron 08.0.95n (GA) Software Release (.zip) </pre>")
  • 23:45, 8 July 2024 Kenneth talk contribs created page Ruckus/ICX-7250 (Created page with " https://support.ruckuswireless.com/products/105-ruckus-icx-7250-campus-switches END OF LIFE As of 2024.07.08: Model Name:ICX-7250Product Family:EOL RUCKUS ProductsRecommended Software: Stability Release: Patches: RUCKUS ICX FastIron 08.0.95m (GA) Software Release (.zip)")
  • 02:20, 4 July 2024 Kenneth talk contribs created page CVE/CVE-2024-6387 (Created page with "A security regression (CVE-2006-5051) was discovered in OpenSSH's server (sshd). There is a race condition which can lead to sshd to handle some signals in an unsafe manner. An unauthenticated, remote attacker may be able to trigger it by failing to authenticate within a set time period. https://www.cvedetails.com/cve/CVE-2024-6387/")
  • 02:18, 4 July 2024 Kenneth talk contribs created page CVE (Created page with "{{subpages}} == Common Vulnerabilities and Exposures == == keywords ==")
  • 01:33, 4 July 2024 Kenneth talk contribs created page Ubuntu/Pro (Created page with "== Ubuntu Pro == https://login.ubuntu.com/ https://ubuntu.com/pro/dashboard Command to attach a machine: sudo pro attach TOKEN Status: pro status * Probably the most critical - "Canonical Livepatch service" - https://ubuntu.com/security/livepatch/docs Enable service: pro enable livepatch # enabled by default with pro Install / update pro client: sudo apt install ubuntu-pro-client List pro commands: pro help == keywords ==")
  • 00:17, 3 July 2024 Kenneth talk contribs created page REST (Created page with "== REST == "Representational state transfer (REST) is a style of software architecture for distributed systems such as the World Wide Web. REST has emerged as a predominant web API design model." [http://en.wikipedia.org/wiki/Representational_state_transfer] == Clean URL == "Clean URLs, RESTful URLs, user-friendly URLs or SEO-friendly URLs are purely structural URLs that do not contain a query string [e.g., action=delete&id=91] and instead contain only the path of the...")
  • 06:28, 28 June 2024 Kenneth talk contribs created page Windhawk (Created page with "== Windhawk == https://windhawk.net/ The customization marketplace for Windows programs == Disable grouping on the taskbar == https://windhawk.net/mods/taskbar-grouping == keywords ==")
  • 22:02, 24 June 2024 Kenneth talk contribs created page SOCKS (Created page with " ssh p@ENTER.YOUR.IP.HERE -f -N -D 9090 See Linux/SSH#SSH-D Proxy")
  • 00:09, 20 June 2024 Kenneth talk contribs created page AWX/Installation (Created page with "== Kubernetes Installation == kubectl -n ci-awx logs -f deployments/awx-operator-controller-manager -c awx-manager")
  • 20:23, 19 June 2024 Kenneth talk contribs created page AWX/Inventory Description (Created page with "== _awx_description == Add support for importing host/group descriptions https://github.com/ansible/awx/pull/6265 Adds support for custom scripts importing the Host and Group description in AWX by setting a var of _awx_description. This var gets removed and does not get added to the host or group variables in inventory. Note: doesn't seem to work??")
  • 19:01, 19 June 2024 Kenneth talk contribs created page Kubernetes/Rancher (Created page with "== Rancher == https://www.rancher.com/ == Quick Start == https://www.rancher.com/quick-start == Free Option == The community’s favorite Kubernetes management platform — free forever * 100% Open Source * Full Rancher Platform Experience * Community Support There is a paid Enterprise Support option with pricing from $8k to $40k (eg. https://www.trustradius.com/products/suse-rancher/pricing) == keywords ==")
  • 18:49, 19 June 2024 Kenneth talk contribs created page Windows/py (Created page with "Python Launcher <pre> Python Launcher for Windows Version 3.10.6150.1013 usage: py [launcher-args] [python-args] [script [script-args]] Launcher arguments: -2 : Launch the latest Python 2.x version -3 : Launch the latest Python 3.x version -X.Y : Launch the specified Python version The above all default to 64 bit if a matching 64 bit python is present. -X.Y-32: Launch the specified 32bit Python version -X-32 : Launch the latest 32bit Python X version...")
  • 21:30, 18 June 2024 Kenneth talk contribs created page Fiber Optics (Created page with "== Fiber Cables == === OS vs OM Fiber === The briefest explanation is that OS cables are all singlemode fiber, and OM cables are multimode fiber. === Multi Mode Cables === OM Cables. OM cables are designed to work across shorter distances and with less-expensive transmission parts. OM1, OM2, OM3, OM4, and OM5 OM1 and OM2 cables hit top speeds of around 1Gbps. OM3, OM4, and OM5 cables utilize laser-optimized multimode (LOMMF) transmission. This is more expensive, b...")
  • 18:47, 18 June 2024 Kenneth talk contribs created page GitHub/Copilot (Created page with "== Copilot == https://github.com/features/copilot == keywords ==")
  • 21:52, 10 June 2024 Kenneth talk contribs created page Windows 11 (Created page with "== Windows 11 == == Enable Long File Paths == <pre> Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] "LongPathsEnabled"=dword:00000001 </pre> ref: [https://superuser.com/questions/1807770/enable-long-paths-on-win-11-home]")
  • 06:38, 10 June 2024 Kenneth talk contribs created page Certbot (Created page with "== certbot == == Letsencrypt.org == See Letsencrypt.org === Ubuntu === Install: sudo apt-get update sudo apt-get install software-properties-common sudo add-apt-repository universe sudo add-apt-repository ppa:certbot/certbot sudo apt-get update sudo apt-get install certbot python-certbot-apache Auto install certificates: sudo certbot --apache Or just get a certificate: sudo certbot certonly --apache Test automatic renewal: sudo certbot renew --dry-ru...")
  • 20:14, 7 June 2024 Kenneth talk contribs created page Jq (Created page with "== jq == jq https://jqlang.github.io/jq/ jq is a lightweight and flexible command-line JSON processor. jq is like sed for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. == pretty print json == echo '{"foo": "lorem", "bar": "ipsum"}' | jq == tutorial == jq tutorial https://jqlang.github.io/jq/tutorial/")
  • 02:40, 4 June 2024 Kenneth talk contribs created page AWS/CLI (Created page with "== Install == curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install ref: https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html#cliv2-linux-install")
  • 23:10, 22 May 2024 Kenneth talk contribs created page MongoDB (Created page with "== MongoDB == MongoDB https://www.mongodb.com/ == Install MongoDB Community Edition == sudo apt-get install gnupg curl curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \ sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg \ --dearmor # Ubuntu 20: echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/7.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongo...")
  • 06:56, 22 May 2024 Kenneth talk contribs created page GitHub/gh/pr (Created page with "Add comment to Pull Request https://cli.github.com/manual/gh_pr_comment gh pr comment 13 --body "Hi from GitHub CLI"")
  • 06:55, 22 May 2024 Kenneth talk contribs created page GitHub/gh (Created page with "== Table of Contents == {{Special:PrefixIndex/{{PAGENAME}}/}}")
  • 23:03, 21 May 2024 Kenneth talk contribs created page Git/Repo Migration (Created page with "List all refs: git for-each-ref")
  • 20:14, 21 May 2024 Kenneth talk contribs created page Windows/Package Managers (Created page with "* [scoop.sh](https://www.9bis.net/kitty/index.html#!pages/scoop.md) * [chocolatey](https://chocolatey.org/packages/kitty) * [liberkey](https://www.liberkey.com/fr/catalogue/parcourir.html) * [portableapps](https://portableapps.com/apps/internet/kitty-portable)")
  • 20:14, 21 May 2024 Kenneth talk contribs created page Windows Package Managers (Redirected page to Windows/Package Managers) Tag: New redirect
  • 15:42, 21 May 2024 Kenneth talk contribs created page GitHub/Duplicating a Repository (Created page with " Duplicating a repository https://docs.github.com/en/repositories/creating-and-managing-repositories/duplicating-a-repository Mirroring a repository with large file storage objects https://docs.github.com/en/repositories/creating-and-managing-repositories/duplicating-a-repository#mirroring-a-repository-that-contains-git-large-file-storage-objects")
  • 21:18, 17 May 2024 Kenneth talk contribs created page PuTTie (Created page with "== PuTTie ==")
  • 21:17, 17 May 2024 Kenneth talk contribs created page KiTTY (Created page with "== KiTTY ==")
  • 21:17, 17 May 2024 Kenneth talk contribs created page Kitty (Redirected page to KiTTY) Tag: New redirect
  • 21:15, 17 May 2024 Kenneth talk contribs moved page Putty to PuTTY
  • 20:08, 17 May 2024 Kenneth talk contribs created page Microsoft/Teams (Created page with "Service Status: https://admin.microsoft.com/servicestatus")
  • 20:11, 16 May 2024 Kenneth talk contribs created page Veracrypt (Redirected page to VeraCrypt) Tag: New redirect
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)