Skip to content

Instantly share code, notes, and snippets.

@Mrkisha
Mrkisha / git-specify-key.md
Last active March 1, 2018 15:21
Git specify ssh key

In ~/.ssh/config, add:

host github.com
 HostName github.com
 IdentityFile ~/.ssh/id_rsa_github
 User git

Verify that the permissions on IdentityFile are 400.SSH will reject, in a not clearly explicit manner, SSH keys that are too readable. It will just look like a credential rejection. The solution, in this case, is:

@Mrkisha
Mrkisha / composer-docker.sh
Last active March 4, 2018 12:29
Docker php composer run from docker
docker run --rm --interactive --tty --volume $PWD:/app --user $(id -u):$(id -g) composer
@Mrkisha
Mrkisha / README.md
Created November 4, 2017 19:03
Burn bootloader to attiny trough arduino uno and how to upload a scketch

How to burn bootloader to attiny trough arduino uno and how to upload a scketch

link

@Mrkisha
Mrkisha / bin > drun
Created May 10, 2017 07:52 — forked from jakzal/bin > drun
Docker with Symfony, RabbitMQ, Nginx
#!/bin/bash
set -e
set -u
set -o pipefail
COMMAND=${1:-"help"}
MACHINE_NAME=myapp
DENV=${DENV:-"dev"}
@Mrkisha
Mrkisha / bin > drun
Created May 10, 2017 07:52 — forked from ikwattro/bin > drun
Docker with Symfony, RabbitMQ, Nginx
#!/bin/bash
set -e
set -u
set -o pipefail
COMMAND=${1:-"help"}
MACHINE_NAME=myapp
DENV=${DENV:-"dev"}
@Mrkisha
Mrkisha / nginx.conf
Created May 8, 2017 08:26 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@Mrkisha
Mrkisha / copy_ssh.sh
Created April 26, 2017 13:39
Copy ssh key from one server to another
#server 1
cat ~/.ssh/id_rsa.pub
#server 2
nano ~/.ssh/authorized_keys
#copy key from server 1 to server 2
@Mrkisha
Mrkisha / commands.sh
Created April 6, 2017 11:08
Usefull Linux commands
# To find all socket files on your system
sudo find / -type s
Adyen Test Card Numbers
These cards are only valid on our TEST system and they will never involve any actual transaction or transfer of funds. The TEST card numbers will not work on the Adyen LIVE Platform.
For all cards use the following expiration and CVV2/CVC2/or CID for Amex.
For all cards:
Expiration Dates CVV2 / CVC3 CID (American Express)
08/2018 OR 10/2020 737 7373
@Mrkisha
Mrkisha / deploy.yaml
Created March 17, 2017 22:58 — forked from mblarsen/deploy.yaml
Solution for `git clone` using Ansible for repos with private submodules with github deploy keys
# Problem:
#
# If you use git submodules linking two private github repos, you'll need to create a separate deploy key for each.
# Multiple keys are not supported by Ansible, nor does ansible (when running git module) resort to your `.ssh/config` file.
# This means your ansible playbook will hang in this case.
#
# You can however use the ansible git module to checkout your repo in multiple steps, like this:
#
- hosts: webserver
vars: