Skip to content

Instantly share code, notes, and snippets.

View vdugnist's full-sized avatar

Vlad Dugnist vdugnist

View GitHub Profile
@vdugnist
vdugnist / vimrc
Last active September 11, 2017 08:41
" System
set encoding=utf8
set nobackup
" Use case insensitive search, except when using capital letters
set ignorecase
set smartcase
set hlsearch
" Syntax highlight
@vdugnist
vdugnist / croppy.sh
Last active January 30, 2017 13:24
Small script for video crop.
#!/bin/bash
# Small script for video crop. It takes a file as an argument.
# File format: source_name start_time end_time destination_name
# Example: GOPR0766.MP4 16:50 17:10 example
folder_name="croppy_result"
array_contains() {
local e
for e in "${@:2}"; do