Skip to content

Instantly share code, notes, and snippets.

View tstachl's full-sized avatar

Thomas Stachl tstachl

  • Pilina
  • Remote
View GitHub Profile
@tstachl
tstachl / ssh_setup.sh
Created February 20, 2018 22:24
Steps to set up SSH keys for a newly created user account on my VPS.
# create the directory for ssh
mkdir -p ~/.ssh
# make sure it's editable only for the current user
chmod 700 ~/.ssh
# create the authorized keys file
touch ~/.ssh/authorized_keys
# use your favorite editor to add the public key
vim ~/.ssh/authorized_keys
@tstachl
tstachl / sshd_config
Last active February 20, 2018 23:21
My sshd_config with Root and Password access diabled.
# /etc/ssh/sshd_config
# ...
# Authentication
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
# ...
@tstachl
tstachl / restart_ssh_client.sh
Created February 20, 2018 23:33
After any changes to the SSH configuration the service needs to be restarted.
sudo service ssh restart
@tstachl
tstachl / authy_ssh.sh
Created February 21, 2018 00:02
Steps to install Authy SSH CLI.
# download the code from github
wget https://raw.githubusercontent.com/authy/authy-ssh/master/authy-ssh
# run the install
sudo bash authy-ssh install /usr/local/bin
# enable it
sudo /usr/local/bin/authy-ssh enable `whoami`
# test it
@tstachl
tstachl / docker-compose.yml
Created February 21, 2018 01:48
File to test Docker Compose.
version: '3'
services:
nginx:
image: nginx:alpine
ports:
- '80:80'
- '443:443'
restart: always
@tstachl
tstachl / docker-compose.yml
Created February 21, 2018 02:38
A compose file containing the logging service via logsprout.
version: '3'
services:
logger:
image: gliderlabs/logspout
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
command: "syslog+tls://${PAPERTRAIL_URL}"
restart: always
@tstachl
tstachl / Dockerfile
Created February 21, 2018 03:31
A custom Dockerfile to copy a config file into the image.
FROM nginx:alpine
COPY nginx.vh.default.conf /etc/nginx/conf.d/default.conf
@tstachl
tstachl / .eslintrc.json
Last active April 24, 2018 12:41
Sane default eslintrc close to Salesforce DX.
{
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 5
},
"globals": {
"$A": true,
"AuraContext": true,
@tstachl
tstachl / create_scratch_org
Created May 24, 2018 23:24
Create a new scratch org for SCMT development.
#!/bin/bash
echo "Creating a new scratch org"
sfdx force:org:create -f config/project-scratch-def.json -a $1 --setdefaultusername --durationdays 30
sfdx scmt:audit:enable -u $1
echo "Pushing source"
sfdx force:source:push -f -u $1
sfdx force:user:permset:assign --permsetname SCMT_Audit -u $1
sfdx force:data:record:update -s User -w "firstname='User'" -v "UserPermissionsKnowledgeUser=true" -u $1
sfdx force:org:open -u $1
require 'desk_api'
DeskApi.configure do |config|
config.username = '[email protected]'
config.password = 'Example1'
config.endpoint = 'https://sample.desk.com'
end
customer = DeskApi.customers.create({
first_name: 'Test',