README is empty
README is empty
This was to inspect an issue with datatables in an angular / bootstrap application, when applying options and formatting numbers with numeral.js. This gist does not contain the solution, which is wrapping the dtColumnDefs - definition in a $timeout. See discussion under l-lin/angular-datatables#287.
Forked from Louis LIN's Pen Row Grouping in v0.4.0 #228.
This file contains 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
USE Exercises | |
GO | |
/* *********************************************************************************************** | |
* | |
* CRONTAB EXPANDER | |
* | |
* ***********************************************************************************************/ | |
/************************************************************************************************** |
This file contains 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
#! /bin/sh | |
mvn help:effective-pom 2>/dev/null | \ | |
grep -i -E '^ *<' | \ | |
sed -e 's/ xmlns.*=".*"//g' | \ | |
xmlstarlet sel -t -n -o "Plugin[:phase:goal]" -n \ | |
-o "---------------------------------------------------" -n \ | |
-m "/project/build/plugins/plugin" -v "artifactId" -n \ | |
-m "executions/execution" -v "../../artifactId" -o ":" -v "phase" -o ":" -m "goals" -v "goal" -n |