Sophos Anti Virus hogging your processor? Can't remove it because of tamper protection?
# change into preferences
cd /Library/Preferences
# confirm locations of sophos files
ls com.sophos.*
 |
Sophos Anti Virus hogging your processor? Can't remove it because of tamper protection?
# change into preferences
cd /Library/Preferences
# confirm locations of sophos files
ls com.sophos.*
alias btcinfo='bitcoin-cli getwalletinfo | egrep "\"balance\""; bitcoin-cli getnetworkinfo | egrep "\"version\"|connections"; bitcoin-cli getmininginfo | egrep "\"blocks\"|errors"'
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "./ConfirmedOwnerWithProposal.sol"; | |
/** | |
* @title The ConfirmedOwner contract | |
* @notice A contract with helpers for basic contract ownership. | |
*/ | |
contract ConfirmedOwner is ConfirmedOwnerWithProposal { |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.7; | |
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol"; | |
/** | |
* THIS IS AN EXAMPLE CONTRACT WHICH USES HARDCODED VALUES FOR CLARITY. | |
* PLEASE DO NOT USE THIS CODE IN PRODUCTION. | |
*/ | |
contract RandomNumberConsumer is VRFConsumerBase { |
# https://unix.stackexchange.com/questions/334382/find-out-what-scripts-are-being-run-by-bash-at-login | |
# prepends the given path(s) to the supplied PATH variable | |
# ex. add_to_path 'PATH' "$(go env GOPATH)/bin" | |
function add_to_path() { | |
# (P)1 path is expanded from $1 | |
# ##: Removes leading : | |
local -x pth="${(P)1##:}" | |
# (s.:.) splits the given variable at : |
alias lncli0='docker exec -it playground-lnd-0 lncli --macaroonpath /root/.lnd/data/chain/bitcoin/signet/admin.macaroon ' | |
alias lncli1='docker exec -it playground-lnd-1 lncli --macaroonpath /root/.lnd/data/chain/bitcoin/signet/admin.macaroon ' | |
alias lncli2='docker exec -it playground-lnd-2 lncli --macaroonpath /root/.lnd/data/chain/bitcoin/signet/admin.macaroon ' |
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# docker run -it -v "$(pwd)":/mnt --name ordy debian | |
# Debian GNU/Linux 11 (bullseye) | |
# apt update && apt install curl | |
set -x |
# Run these once, to set aliases to git | |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
git config --global alias.co checkout | |
git config --global alias.br branch | |
git config --global alias.ci commit | |
git config --global alias.st status | |
git config --global alias.sw switch |