Skip to content

Instantly share code, notes, and snippets.

@stef-k
stef-k / nginx.conf
Created June 10, 2017 08:43
main Nginx configuration file with small customizations (gzip - client max body)
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
@stef-k
stef-k / molokai.vim
Created June 9, 2017 23:06
Vim Molokai theme by Author: Tomas Restrepo <[email protected]>
" Vim color file
"
" Author: Tomas Restrepo <[email protected]>
" https://github.com/tomasr/molokai
"
" Note: Based on the Monokai theme for TextMate
" by Wimer Hazenberg and its darker variant
" by Hamish Stuart Macpherson
"
@stef-k
stef-k / update-composer-packages.sh
Created June 5, 2017 21:44
update composer packages on server using www-data user
sudo -u www-data /usr/local/bin/composer install
@stef-k
stef-k / .vimrc
Last active January 3, 2018 09:14
Vim config file
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab autoindent
" Auto indent
set ai
" Smart indent
set si
" Enable syntax highlight
syntax enable
" Show current position
set ruler
" Do not take backups of current file
# put this in nginx.conf http block
proxy_cache_path /var/cache levels=1:2 keys_zone=nginx_cache:10m max_size=10g inactive=60m
use_temp_path=off;
# on vhost config put
proxy_cache nginx_cache;
# This block will catch static file requests, such as images, css, js
# The ?: prefix is a 'non-capturing' mark, meaning we do not require
# the pattern to be captured into $1 which should help improve performance
@stef-k
stef-k / nginx.conf
Created August 31, 2016 16:31 — 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
@stef-k
stef-k / .bashrc
Last active August 21, 2016 15:59
Ubuntu bashrc file
# A somewhat custom .bashrc config with the following extras:
#
# * Virtualenvwrapper for Python 3.x
# * Go language path setup
# * Node and NPM path setup and code completions
# * Android SDK path setup
# * ~/bin/ path etup
#
# Tested on
# DISTRIB_ID=Ubuntu
@stef-k
stef-k / identifypanic.go
Created July 21, 2016 18:58 — forked from swdunlop/identifypanic.go
Identify a GOLANG Panic Function and Line in Recovery
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
import "runtime"
import "strings"
func identifyPanic() string {
var name, file string
#!/usr/bin/env bash
# Records the screen of an android device
# DEBUG ON DEVICE MUST BE ENABLED
# Additionally you may want to enalbe
# the "Show Touches" option in developer settings
# Copyright (c) 2015 Stef Kariotidis <stef.kariotidis[at]gmail[dot]com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# removes old kernels
sudo apt-get remove --purge $(dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d')