Skip to content

Instantly share code, notes, and snippets.

{
"basics": {
"name": "Branko Kovacevic",
"image": "",
"email": "[email protected]",
"phone": "+381 64 123 4567",
"location": {
"city": "Novi Sad",
"countryCode": "RS"
},
@TerrorSquad
TerrorSquad / .zshrc
Last active May 5, 2019 11:31
Antigen .zshrc file
source /home/$(whoami)/antigen.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle command-not-found
# Essential ZSH plugins
@TerrorSquad
TerrorSquad / id_rsa.pub
Created February 13, 2019 12:29
Goran Ninkovic - VivifyIdeas MacBook SSH Public key
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDxtjEsEv+TBghd5yLDlY8DNJIOO7bsPFpXnX+jmHp9gS9nBYnxWjDeDCJoOYYGQk85osljlKQA3s0pEiwN6ke+AibY90z/XEU6LgCVBCFa4f4s7cwgnPhE8vLHDQcoPPdZrQs+a86yceHaRUsRYZ1XQZ5IxiZcbIqy2/+3u/sOyVWmjHUr/sQdOjqwq6o7sxLlH3NGNXuRQPrAtpmdxr0BNY5qwMLfP7FhQs6IbnzgciQISTKt5AeiNY9IH4spIedjZ/nQY1R62JBTcyNnDnpvNqC5rhDuX/X1zvZmlgDAbw1T1tYlVDcChr3WE9qJFXq6O67FbeokxKUoUzSUxJ77 [email protected]
@TerrorSquad
TerrorSquad / .docker_aliases
Last active December 24, 2018 10:19
ZSH configuration for macOS
#!/bin/sh
alias dm='docker-machine'
alias dmx='docker-machine ssh'
alias dk='docker'
alias dki='docker images'
alias dks='docker service'
alias dkrm='docker rm'
alias dkl='docker logs'
alias dklf='docker logs -f'
@TerrorSquad
TerrorSquad / post_installation_script.sh
Last active November 25, 2018 17:20
Installation script of software required for software development.
#! /usr/bin/env bash
# This script will install the required software for software development and also software for general use.
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root!";
exit 1
else
# Install ZSH
sudo apt install -y zsh;
@TerrorSquad
TerrorSquad / Dockerfile
Created July 17, 2018 12:57
Magento 2 - Docker configuration
FROM sensson/magento2
COPY src/cron /etc/cron.d/magento2
COPY src/ /var/www/html/