Skip to content

Instantly share code, notes, and snippets.

View kpicaza's full-sized avatar
💭
Every day coding ;-D

Koldo Picaza kpicaza

💭
Every day coding ;-D
View GitHub Profile
@kpicaza
kpicaza / config
Last active January 23, 2021 13:10 — forked from pksunkara/config
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = NAME
email = EMAIL
username = USERNAME
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[web]
browser = google-chrome
@kpicaza
kpicaza / gist:615bcb16099fc2d9d0a3db6d59da2f74
Created October 15, 2016 20:13 — forked from plasticbrain/gist:3887245
PHP: mime types (array format)
<?php
$mime_types = array(
'.3dm' => 'x-world/x-3dmf',
'.3dmf' => 'x-world/x-3dmf',
'.a' => 'application/octet-stream',
'.aab' => 'application/x-authorware-bin',
'.aam' => 'application/x-authorware-map',
'.aas' => 'application/x-authorware-seg',
'.abc' => 'text/vnd.abc',
'.acgi' => 'text/html',