Skip to content

Instantly share code, notes, and snippets.

View stefanymarie's full-sized avatar

Stefany Marie Serino stefanymarie

View GitHub Profile
@stefanymarie
stefanymarie / renamer.sh
Created August 28, 2014 05:07
Rename Files with creation date from EXIF tag
#!/bin/bash
# The directory where the photos are
SOURCE_DIR=/home/sserino/Pictures/PROCESS/Old
# The destination directory
DEST_DIR=/home/sserino/Pictures/PROCESS/Renamed
# The date pattern for the destination dir (see strftime)
DEST_DIR_PATTERN="%Y_%m_%d_%H_%M_%S"
@stefanymarie
stefanymarie / Default (Linux).sublime-keymap
Last active August 29, 2015 14:19
Sublime Text Custom Settings
[
{ "keys": ["super+m", "super+m"], "command": "toggle_minimap" },
{ "keys": ["super+equals"], "command": "null" },
{ "keys": ["super+plus"], "command": "null" },
{ "keys": ["super+minus"], "command": "null" },
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} },
]