When compiling a C/C++ file with gcc using external libs:
gcc (pkg-config --cflags --libs <libs_you_wanna_load> | tr -s ' ' '\n') -o example-1 example-1.c
When compiling a C/C++ file with gcc using external libs:
gcc (pkg-config --cflags --libs <libs_you_wanna_load> | tr -s ' ' '\n') -o example-1 example-1.c
Remove "Ghost" User
/msg nickserv ghost
| /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ | |
| /* Document | |
| ========================================================================== */ | |
| /** | |
| * 1. Correct the line height in all browsers. | |
| * 2. Prevent adjustments of font size after orientation changes in | |
| * IE on Windows Phone and in iOS. | |
| */ |
| lsof -i $1 | awk 'FNR == 2 {print $2};' | xargs kill -9 |
git stash -u
Stash files included the untracked ones
git log --full-history --all -- <path-to-file>
git log -u <path-to-file>
| (ns forca.core | |
| (:gen-class)) | |
| (def total-de-vidas 6) | |
| (defn perdeu [] (print "Voce perdeu")) | |
| (defn ganhou [] (print "Voce ganhou")) | |
| (defn letras-faltantes [palavra acertos] | |
| (remove (fn [letra] (contains? acertos (str letra))) palavra) |
| import csv | |
| import json | |
| csvfile = open('file1.csv', 'r') | |
| jsonfile = open('file2.json', 'w') | |
| fieldnames = ("firstname", "lastname", "phone", "birthdate") | |
| reader = csv.DictReader( csvfile, fieldnames, delimiter='\t') | |
| for row in reader: |