This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pushd /tmp && \ | |
curl -L -O https://launchpad.net/veracrypt/trunk/1.26.24/+download/veracrypt-1.26.24-Debian-12-amd64.deb && \ | |
curl -L -O https://installers.privateinternetaccess.com/download/pia-linux-3.7-08412.run && \ | |
sudo dpkg --install veracrypt-1.26.24-Debian-12-amd64.deb && \ | |
chmod +x pia-linux-3.7-08412.run && \ | |
./pia-linux-3.7-08412.run && \ | |
popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon May 23 10:19:11 UTC 2022 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyspark.sql import SparkSession | |
spark = SparkSession.builder.getOrCreate() | |
sc = spark.sparkContext | |
print(f"Hadoop version = {sc._jvm.org.apache.hadoop.util.VersionInfo.getVersion()}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl s_client -showcerts -servername mydomain.com -connect mydomain.com:443 2>/dev/null | openssl x509 -inform pem -noout -text | le | |
ss |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import string | |
print ''.join([random.SystemRandom().choice("{}{}{}".format(string.ascii_letters, string.digits, string.punctuation)) for i in range(63)])" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILE: /var/log/jenkins.log | |
------------------------------ | |
Feb 29, 2016 1:17:34 PM winstone.Logger logInternal | |
INFO: JVM is terminating. Shutting down Winstone | |
Running from: /usr/share/jenkins/jenkins.war | |
Feb 29, 2016 1:18:04 PM winstone.Logger logInternal | |
INFO: Beginning extraction from war file | |
Feb 29, 2016 1:18:05 PM org.eclipse.jetty.util.log.JavaUtilLog info | |
INFO: jetty-winstone-2.9 | |
Feb 29, 2016 1:18:06 PM org.eclipse.jetty.util.log.JavaUtilLog info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import requests | |
TOKEN='XXX' | |
ISSUE = 3 | |
REPO_OWNER='someone' | |
REPO = 'aproject' | |
TARGET_BRANCH = 'master' | |
FORKED_BRANCH = 'task/fix-tests' | |
FORK_OWNER = 'me' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- http://www.opscode.com/chef/install.sh | sudo bash -s -- -v 11.4.4-2 |