Skip to content

Instantly share code, notes, and snippets.

View samiare's full-sized avatar

Samir Zahran samiare

View GitHub Profile
@samiare
samiare / README.md
Last active July 5, 2021 17:58
Misc HTML/CSS/JS things

A collection of little hacks and a reusable code snippets that I have collected over time.

@samiare
samiare / xcode_comments.sh
Created December 16, 2020 20:49
Finds TODO and FIXME tags and displays them as warnings in the buildtime issue navigator.
TAGS="TODO:|FIXME:"
echo "searching ${SRCROOT} for ${TAGS}"
find "${SRCROOT}" \( -name "*.swift" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" | perl -p -e "s/($TAGS)/ warning: \$1/"