I hereby claim:
- I am derpauli on github.
- I am codepauli (https://keybase.io/codepauli) on keybase.
- I have a public key ASCqGw0HrjsWP0k1ONWmNItJcm47SlLqJqifpiPsecjfQAo
To claim this, I am signing this object:
# create patch | |
git diff origin/main..origin/<branch-to-compare> -- folder/to/patch/ another.file > my.patch | |
# apply the patch | |
patch -p1 < my.patch |
# Run from an elevated PowerShell | |
# Credits to Chris Titus (https://christitus.com/windows-tool/) | |
iwr -useb https://christitus.com/win | iex |
import java.nio.charset.StandardCharsets; | |
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.Credentials.class | |
) | |
for (c in creds) { | |
println(c.id) | |
if (c.properties.description) { | |
println(" description: " + c.description) | |
} |
I hereby claim:
To claim this, I am signing this object:
import json | |
import boto3 | |
import zipfile | |
import tempfile | |
code_pipeline = boto3.client('codepipeline') | |
s3 = boto3.client('s3') |
'use strict'; | |
exports.handler = (event, context, callback) => { | |
const response = event.Records[0].cf.response; | |
const headers = response.headers; | |
// Server header to conceil technology | |
headers['server'] = [{ | |
key: 'Server', | |
value: "" |
import json | |
import boto3 | |
import zipfile | |
import tempfile | |
code_pipeline = boto3.client('codepipeline') | |
s3 = boto3.client('s3') |
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3000 | |
sudo iptables-save |