This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #CC = gcc or g++ | |
| CC = gcc | |
| #CFLAGS are compile flags such as -lm to include <math.h> | |
| #or -std=c++0x for C++11 | |
| CFLAGS = -Wall -std=c99 | |
| #TARGET is the name of your main file | |
| TARGET = myMain | |
| #OBJECTS = $(TARGET).o library1.o library.o, all the header files here | |
| OBJECTS = $(TARGET).o myLib.o | |
| #EXTRA Command line arguments |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Use VIM | |
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| " SECTION Vundle | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # /etc/bash.bashrc | |
| # | |
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| # Bash colors | |
| txtblk='\e[0;30m' # Black - Regular | |
| txtred='\e[0;31m' # Red |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # TIMUR ZSH Theme | |
| function directory_information { | |
| if [[ -f .on_cd ]] | |
| then | |
| if [[ -f .on_cd_lock ]] | |
| then | |
| echo " " | |
| else | |
| echo " " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################################## | |
| # Sample OpenVPN config file for | |
| # 2.0-style multi-client udp server | |
| # | |
| # Adapted from http://openvpn.sourceforge.net/20notes.html | |
| # | |
| # tun-style tunnel | |
| port 443 | |
| proto tcp-server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Installs javacc 5 | |
| # My friends are just too lazy =,= | |
| # Bash colors | |
| txtblk='\e[0;30m' # Black - Regular | |
| txtred='\e[0;31m' # Red | |
| txtgrn='\e[0;32m' # Green | |
| txtylw='\e[0;33m' # Yellow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " File: `~/.config/nvim/init.vim` | |
| filetype off | |
| " Required for Python on MacOS | |
| " | |
| " brew install python | |
| " brew install python3 | |
| " pip2 install neovim --upgrade | |
| " pip3 install neovim --upgrade | |
| " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Host $HOST | |
| IdentitiesOnly yes | |
| Hostname $IP | |
| IdentityFile ~/.ssh/$private_key | |
| User $username | |
| Host aur.archlinux.org | |
| IdentityFile ~/.ssh/aur | |
| User aur |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Usage: ./crack-keepass.sh passwords.kdbx dict.txt | |
| # | |
| # The dictionary file can be generated with: | |
| # https://github.com/TimurKiyivinski/permutatify | |
| while read i | |
| do | |
| echo "Using password: \"$i\"" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "2" | |
| services: | |
| gitlab: | |
| image: gitlab/gitlab-ce | |
| network_mode: "bridge" | |
| restart: always | |
| volumes: | |
| - './gitlab/config:/etc/gitlab' | |
| - './gitlab/logs:/var/log/gitlab' | |
| - './gitlab/data:/var/opt/gitlab' |
OlderNewer