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).
- 05:35, 17 June 2026 Kenneth talk contribs created page Git/Branch (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 Kenneth talk contribs created page Git/Signing Unsigned (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 Kenneth talk contribs created page Mitmproxy (Created page with "https://www.mitmproxy.org/ mitmproxy is a free and open source interactive HTTPS proxy.")
- 15:28, 4 June 2026 Kenneth talk contribs created page Mitm (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 Kenneth talk contribs created page Linux/Open Files (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 Kenneth talk contribs created page Google/IssueTracker (Created page with " https://issuetracker.google.com/")
- 16:59, 18 May 2026 Kenneth talk contribs created page Movies (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.")