All public logs
Jump to navigation
Jump to search
Combined display of all available logs of razwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 13:30, 8 December 2021 Razzi talk contribs created page How to sudo without typing password (Created page with " echo "$USER ALL=(ALL:ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/$USER <ref>https://askubuntu.com/questions/147241/execute-sudo-without-password</ref>")
- 12:09, 8 December 2021 Razzi talk contribs created page Thoughts (Created page with "For new services, make multiple accounts the rule, not the exception. Example: google calendar shows 1 user at a time by default, where you could theoretically be logged in as...") Tag: Visual edit
- 01:25, 7 December 2021 Razzi talk contribs deleted page Firefox (content was: "It's a browser. Wowser!", and the only contributor was "Razzi" (talk))
- 01:23, 7 December 2021 Razzi talk contribs created page How to pipe to clipboard ubuntu (Created page with " cat ~/.ssh/id_ed25519.pub | xclip -selection clipboard")
- 00:28, 7 December 2021 Razzi talk contribs created page Links (Created page with "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installation https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/qui...")
- 00:07, 7 December 2021 Razzi talk contribs created page How to disable paging for man (Created page with " export MANPAGER=cat thumb|The cat (1905) (14569302437)")
- 16:23, 6 December 2021 Razzi talk contribs created page Docker cli wrapper niceties (Created page with "Default to current dir for docker build: doc build -> docker build . Show prefix of unique container id Show less info for docker ps by default add status command which sho...")
- 15:49, 6 December 2021 Razzi talk contribs created page People Razzi follows (Created page with "https://ridiculousfish.com/ https://kennethreitz.org/ http://armin.ronacher.eu/ http://geemus.com/ https://brooklynhacker.com/ https://mek.fyi/") Tag: Visual edit
- 13:19, 6 December 2021 Razzi talk contribs created page How to view inline diff with git show (Created page with " git show --word-diff")
- 13:13, 6 December 2021 Razzi talk contribs created page How does go (for example docker ps) catch `ctrl-\`? (Created page with "A clue: https://stackoverflow.com/questions/26747590/sigint-and-sigquit")
- 12:37, 6 December 2021 Razzi talk contribs created page How to query file with jq (Created page with " wikistats2 $ jq .engines package.json { "node": "10.24.0", "npm": "6.14.11" }")
- 12:36, 6 December 2021 Razzi talk contribs created page How to configure microphone from command line on MacOS (Created page with "Would be great. Ideally it also shows the volume level, does record / playback to test audio quality")
- 11:24, 6 December 2021 Razzi talk contribs created page How to automatically source ~/.profile after editing it in fish shell (Created page with "<pre> function postexec_source_profile --on-event fish_postexec if test (echo "$argv" | string trim) = "$EDITOR ~/.profile" echo -n 'Sourcing .profile... '...")
- 11:19, 6 December 2021 Razzi talk contribs created page How to do whilespace-insensitive string compare in fish (Created page with "The problem: test "a b " = "a b" exits with 1; this comes up with `fish_postexec`: if test "$argv" = "$EDITOR ~/.profile" -> test vim ~/.profile = vim ~/.profile whic...")
- 11:11, 6 December 2021 Razzi talk contribs created page How to silence docker message "Use 'docker scan' to run Snyk tests against images" (Created page with " export DOCKER_SCAN_SUGGEST=false")
- 01:48, 5 December 2021 Razzi talk contribs created page Thinkpiece: optimal global keyboard shortcuts (Created page with "A modern operating system desktop environment can have many levels of nested applications when it comes to keyboard shortcuts. There's the core kernel keybinding handling (for...") Tag: Visual edit
- 00:19, 5 December 2021 Razzi talk contribs created page How to silence mediawiki warning "You have followed a link to a page that does not exist yet" when creating a page with visual editor (Created page with "https://wiki.abuissa.net/api.php?action=visualeditor&format=json&paction=parse&page=Rerere&uselang=en&formatversion=2 has the response: <pre> { "visualeditor": { "resul...")
- 18:04, 3 December 2021 Razzi talk contribs created page How to list recent changes via wikitext template (Created page with "<pre>{{Special:RecentChanges/10}}</pre> Looks like this {{Special:RecentChanges/10}} == See also == * https://www.mediawiki.org/w/index.php?title=Help:Recent_changes&hidebo...")
- 17:52, 3 December 2021 Razzi talk contribs created page Thinkpiece: alternative config option over /etc/.../50-config.conf (Created page with "<pre> root@7c32f54356fc:/# tree /etc/apt/apt.conf.d/ /etc/apt/apt.conf.d/ |-- 01autoremove |-- 70debconf |-- 99-yes-install.conf |-- docker-autoremove-suggests |-- docker-clea...")
- 17:21, 3 December 2021 Razzi talk contribs created page How to make apt install without prompt via config (Created page with " echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/99-yes-install.conf")
- 16:15, 3 December 2021 Razzi talk contribs created page How to edit mediawiki articles from the command line (Created page with "https://en.wikipedia.org/wiki/Help:Text_editor_support has some leads, like using lynx")
- 15:19, 3 December 2021 Razzi talk contribs created page How to make control-p work in docker (Created page with "Docker uses <code>c-p c-q</code> to detach, so <code>c-p</code> doesn't go up to the previous command in a command like <code>docker run -it debian bash</code> as I'd expect....") Tag: Visual edit
- 18:41, 2 December 2021 Razzi talk contribs created page How to get uid for unix user (Created page with "<pre> $ id kafka uid=499(kafka) gid=499(kafka) groups=499(kafka) </pre>") Tag: Visual edit
- 02:30, 1 December 2021 Razzi talk contribs created page How to skip tests when running `mvn install` (Created page with " mvn -T 1C install -Dmaven.test.skip -DskipTests -Dmaven.javadoc.skip=true <ref>https://stackoverflow.com/questions/24727536/maven-skip-tests</ref><ref>https://stackoverflow.c...") Tag: Visual edit
- 02:05, 1 December 2021 Razzi talk contribs created page How to extract tar to another directory (Created page with " tar -xf files.tar -C ../../ <ref>https://www.tecmint.com/extract-tar-files-to-specific-or-different-directory-in-linux/</ref> From the tar man page:<syntaxhighlight lang="te...") Tag: Visual edit
- 12:18, 30 November 2021 Razzi talk contribs created page MediaWiki:Common.css (Created page with "CSS placed here will be applied to all skins: .page-Main_Page .firstHeading { display: none; }")
- 10:46, 30 November 2021 Razzi talk contribs created page What does ampersand mean in yaml (Created page with "It creates a yaml anchor, which allows you to duplicate / inherit content. <pre> # YAML also has a handy feature called 'anchors', which let you easily duplicate # content ac...")
- 10:35, 30 November 2021 Razzi talk contribs created page How to switch desktops via keyboard shortcut on macos (Created page with "Control+left and control+right Configurable in System Preferences > Keyboard > Shortcuts > Mission Control.<ref>https://apple.stackexchange.com/questions/106559/keyboard-shor...")
- 16:09, 29 November 2021 Razzi talk contribs created page How to make find delete recursively (Created page with "<syntaxhighlight lang="text"> find airflow-dags/ -name __pycache__ | xargs rm -r </syntaxhighlight>") Tag: Visual edit
- 11:30, 29 November 2021 Razzi talk contribs created page How to query debian version (Created page with "<syntaxhighlight lang="text"> root@localhost:~# lsb_release -d Description: Debian GNU/Linux 11 (bullseye) </syntaxhighlight>") Tag: Visual edit
- 10:52, 29 November 2021 Razzi talk contribs created page How to make gpg key stay unlocked for a while (Created page with "<syntaxhighlight lang="text"> $ edify append ~/.gnupg/gpg-agent.conf >> default-cache-ttl 34560000 >> max-cache-ttl 34560000 $ gpg-agent reload gpg-agent[1237]: gpg-agent runn...") Tag: Visual edit
- 00:44, 29 November 2021 Razzi talk contribs created page How to get absolute path of file (Created page with "<code> root@localhost:/etc/apache2# realpath conf-available/mediawiki.conf /etc/apache2/conf-available/mediawiki.conf </code>")
- 00:07, 29 November 2021 Razzi talk contribs created page Firefox (Created page with "It's a browser. Wowser!")
- 00:07, 29 November 2021 Razzi talk contribs created page User:Razzi (Created page with "I am ze admin")