I hereby claim:
- I am drazul on github.
- I am dlagua (https://keybase.io/dlagua) on keybase.
- I have a public key whose fingerprint is A5FB 097C 5C7C D4BA BCD7 3B97 BCB1 4543 88E3 BEF1
To claim this, I am signing this object:
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# |
#------------ Add path to system variable ------------------------------------- | |
$path2add = ';C:\path;' | |
$systemPath = [Environment]::GetEnvironmentVariable('Path', 'machine'); | |
If (!$systemPath.contains($path2add)) { | |
$systemPath += $path2add | |
$systemPath = $systemPath -join ';' | |
[Environment]::SetEnvironmentVariable('Path', $systemPath, 'Machine'); | |
write-host "Added to path!" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# JUST DISABLES McAfee on MacOS | |
# https://gist.github.com/pjobson/11167316#gistcomment-2787864 | |
function help() { | |
echo "Disables McAfee" | |
} | |
function disable() { | |
function me() { |
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
#!/bin/bash | |
namespace=${namespace:-default} | |
scheduledsparkapp=${scheduledsparkapp} | |
name=${name} | |
while [ $# -gt 0 ]; do | |
if [[ $1 == *"--"* ]]; then | |
param="${1/--/}" |