Creates a color palette based on various input parameters.
Password strength check using bootstrap and bootstrap-validator.
Multi word twitter-typeahead.
This example adds multi-word ability to typeahead. The dropdown also follows the caret position thanks to Caret.js. Unfortunately, hinting and highlighting do not work, but I am out of time to play with it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export KEYNAME=$1 | |
for arch in `find $2 -maxdepth 1 -mindepth 1 -type d`; do | |
for deb in `find $arch -type f -name "*.deb"`; do | |
dpkg-sig -k $KEYNAME -s builder $deb | |
done |
NewerOlder