Skip to content

Instantly share code, notes, and snippets.

@ivanalejandro0
ivanalejandro0 / notes.sh
Created October 22, 2018 21:09 — forked from junegunn/notes.sh
Managing notes with fzf
#!/usr/bin/env bash
#
# Managing notes with fzf (https://github.com/junegunn/fzf)
# - CTRL-L: List txt files in descending order by their modified time
# - CTRL-F: Search file contents
NOTE_DIR="${NOTE_DIR:-$(dirname "${BASH_SOURCE[0]}")}"
TRASH_DIR="$NOTE_DIR/trash"
export NORENAME=1
cd "$NOTE_DIR"
@ivanalejandro0
ivanalejandro0 / PackageApplication
Last active July 26, 2017 18:43
PackageApplication script from Xcode 8.2.1. This was removed on Xcode 8.3 and not handled yet by cordova, see https://stackoverflow.com/a/43935071
#!/usr/bin/perl
#
# PackageApplication
#
# Copyright (c) 2009-2012 Apple Inc. All rights reserved.
#
# Package an iPhone Application into an .ipa wrapper
#
use Pod::Usage;