Obvs make sure you have the regex switch turned on in Find/Replace
Search: ^(?!.*expression).*
Search: search(.*)anotherthing
{ | |
"a4b": [ | |
"ApproveSkill", | |
"AssociateSkillWithSkillGroup", | |
"AssociateSkillWithUsers", | |
"CompleteRegistration", | |
"CreateAddressBook", | |
"CreateBusinessReportSchedule", | |
"CreateConferenceProvider", | |
"CreateContact", |
.gl-text-truncate { | |
white-space: unset !important; | |
} | |
div[data-qa-selector="job_link"] { | |
max-width: 1000px !important; | |
width: 1000px !important; | |
} | |
div.ci-job-component > div { |
# Why? | |
# To paste text into windows that normally don't allow it or have access to the clipboard. | |
# Examples: Virtual machines that do not yet have tools installed, websites that hijack paste | |
# | |
# Extended vs Simple? | |
# Extended includes an adjustable delay between keypresses and better handling of numbers | |
# | |
# Setup | |
# Create a service: open Automator, create new service, receive no input, | |
# use any application, run applescript code below, save. |
locals { | |
platform = substr(pathexpand("~"),0,1) == "/" ? "linux" : "windows" | |
command_map = { | |
windows = { | |
interpreter = "powershell", | |
command = "While( -not $(az account list-locations)){ Start-Sleep 5 }; echo Done!" | |
} | |
linux = { | |
interpreter = "bash", | |
command = "while ! az account list-locations){ Sleep 5 }; echo Done!" |
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | |
ip route get 1 | awk '{print $NF;exit}' | |
elif [[ "$OSTYPE" == "darwin"* ]]; then | |
# Mac OSX | |
ipconfig getifaddr en0 | |
else | |
# Unknown. | |
fi |
/* | |
Open this page and log in: https://partner.microsoft.com/en-us/dashboard/mpn/membership/benefits/visualstudio | |
The script will wait 15 seconds to wait for the subscription lists to load before exporting the data. | |
*/ | |
var output = "" | |
callback = function(){ | |
var msdnObj = $("table[aria-label='Visual Studio subscriptions'] span") |
#Insert this at the end of /etc.defaults/ddns_provider.conf | |
[Namecheap] | |
modulepath=/usr/syno/bin/ddns/namecheap.php | |
queryurl=https://dynamicdns.park-your-domain.com/update |
Toast|yes | |
Mid Sussex Golf Club|yes | |
Disney Store|yes | |
Grange Hotels|yes | |
Little Chef|yes | |
Zopa|no | |
Avery We Print|yes | |
Esure|no | |
Dansk|yes | |
The Entertainer|yes |
find *.png -exec magick "{}" -alpha discrete -channel rgb -evaluate add 100% +channel "{}" \; |