https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
javascript:(function(){ | |
const result = [...document.querySelectorAll('.text-bolt-elements-textSecondary + div > div > ._MarkdownContent_1mdbx_1')] | |
.map(node => node.innerText) | |
.reduce((acc, curr) => acc + curr + '\n\n', ''); | |
navigator.clipboard.writeText(result) | |
.then(() => alert('Content copied to clipboard!')) | |
.catch(err => alert('Failed to copy: ' + err)); | |
})(); |
{ | |
// settings related to pwsh terminal | |
"powershell.enableProfileLoading": true, | |
"terminal.integrated.defaultProfile.windows": "Pwsh🐒", // "Pwsh🐒", | |
// The terminal profile to use for automation-related terminal usage like tasks and debug. This setting will currently be ignored if `terminal.integrated.automationShell.windows` (now deprecated) is set. | |
"terminal.integrated.automationProfile.windows": { | |
"args": [ | |
"-NoLogo" | |
], |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
sudo dd if=/dev/zero of=/swap1 bs=1k count=1M
sudo mkswap /swap1
sudo chmod 600 /swap1
sudo swapon /swap1
# Make it permanent
echo '/swap1 none swap sw 0 0' | sudo tee -a /etc/fstab
brew install pandoc
brew cask install basictex # takes a few minutes
sudo tlmgr install collection-fontsrecommended
pandoc -f markdown -t latex ./myfile.md -o myfile.pdf
For a more organised and more update list please visit https://github.com/RayZz-/LCU-Arguments | |
This list will no longer be updated please refer to the repo linked above | |
These are known command line arguments for the LCU(including helper) some maybe outdated | |
or overtime may become outdated or some information maybe incorrect | |
if you would like to contribute please comment with updated information. | |
Usage example: | |
--app-name=kappa |
I think most of us realize that macOS isn't a Linux OS, but what that also means is that instead of shipping with the GNU flavor of command line tools, it ships with the FreeBSD flavor. As such, writing shell scripts which can work across both platforms can sometimes be challenging.
Homebrew can be used to install the GNU versions of tools onto your Mac, but they are all prefixed with "g" by default.
All commands have been installed with the prefix "g". If you need to use these commands with their normal names, you can add a "gnubin" directory to your PATH from your bashrc.
title | date | author | source |
---|---|---|---|
Disable macOS Firewall Logging |
April 9, 2017 |
Jon LaBelle |
Steps for disabling macOS Firewall logging to the appfirewall.log
file.
NOTE: Only disables logging, not the Firewall itself.
title | date | author | source |
---|---|---|---|
Disable macOS Firewall Logging |
April 9, 2017 |
Jon LaBelle |
Steps for disabling macOS Firewall logging to the appfirewall.log
file.
NOTE: Only disables logging, not the Firewall itself.