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.*
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>attributeSetting</key> | |
<integer>1</integer> | |
<key>choiceAttribute</key> | |
<string>selected</string> | |
<key>choiceIdentifier</key> |
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.*
Update: As of 11 January 2022, git.io no longer accepts new URLs.
Command:
curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"
URLs that can be created is from:
https://github.com/*
https://*.github.com
#!/bin/bash | |
# Author: Matthieu Fronton <[email protected]> | |
# Profile: github.com/frntn | |
# Description: GnuPG web of trust : automate multiple scenarii to help the understanding of https://www.gnupg.org/gph/en/manual/x334.html | |
WAIT=4 | |
if [ -t 1 ]; then | |
cya="$(tput setaf 6)" |
Markdown files allow embedding images in it. However it requires the image to be hosted at some location and we can add the url of the image to embed it.
Example:
![Alternate image text](https://someurl/imagelocation/image.png)
We can use services like imgur or other services to host the images and use the hosted URL.
$ sudo apt-get install dex | |
$ /usr/bin/dex -c /usr/bin/dex -t ~/.local/share/applications/ | |
var server = "http://yourserveraddress:8065/"; //Your server and IP address | |
var apiKey = "API-XXXXXXXXXXXXXXXXXXXXXXXXX"; // Get this from your 'profile' page in the Octopus web portal | |
var endpoint = new OctopusServerEndpoint(server, apiKey); | |
var repository = new OctopusRepository(endpoint); | |
var task = new Octopus.Client.Model.TaskResource(); | |
task.Name = "AdHocScript"; | |
task.Description = "Script invoked via API"; |