Skip to content

Instantly share code, notes, and snippets.

View deeGraYve's full-sized avatar
🔥
here be dragons

Dmitry Golomidov deeGraYve

🔥
here be dragons
View GitHub Profile
#!/bin/bash
cat .gitignore | egrep -v "^#|^$" | while read line; do
if [ -n "$line" ]; then
OLD_IFS=$IFS; IFS=""
for ignored_file in $( git ls-files "$line" ); do
git rm --cached "$ignored_file"
done
IFS=$OLD_IFS
fi

Pixel art out of box shadow magicerizer

SASS mixin that hands a maxtrix of lists to a function, to create a bit of pixel art out of box shadows. Co-made with @shadowmint. TODO - multiple colours!

A Pen by Jack Armley on CodePen.

License.

language: objective-c
before_script:
- chmod +x scripts/travis/add-key.sh
- chmod +x scripts/travis/remove-key.sh
- chmod +x scripts/travis/testflight.sh
- ./scripts/travis/add-key.sh
script: xctool -workspace [Workspace name].xcworkspace -scheme '[Scheme to use]' -configuration [Build configuration name] -sdk iphoneos7.1 CONFIGURATION_BUILD_DIR='~/build/' build
after_success:
- ./scripts/travis/testflight.sh
after_script:
@deeGraYve
deeGraYve / 1readme.md
Last active August 29, 2015 14:20 — forked from jszmajda/1readme.md