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
(function() { | |
var app = angular.module('mcbSingleSelect', []) | |
.directive('singleSelect', [singleSelectDirective]); | |
function singleSelectDirective() { | |
return { | |
restrict: 'EA', //E = element, A = attribute, C = class, M = comment | |
scope: { | |
//@ reads the attribute value, = provides two-way binding, & works with functions | |
optionsList: '=?', |
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
<!DOCTYPE html> | |
<html manifest="manifest.appcache"> | |
<head> | |
<link href="css/custom.css" rel="stylesheet" type="text/css" /> | |
<link href="libs/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" /> <script src="libs/lodash.js/3.10.1/lodash.min.js"></script> <script src="libs/jquery/2.1.4/jquery.min.js"></script> | |
<script src="libs/angular.js/1.3.18/angular.min.js"></script> | |
<script src="libs/moment.js/2.10.3/moment-with-locales.min.js"></script> | |
<script src="libs/bootstrap-datepicker/1.4.0/js/bootstrap-datepicker.min.js"></script> | |
<link href="libs/bootstrap-datepicker/1.4.0/css/bootstrap-datepicker.min.css" rel="stylesheet" type="text/css" /> | |
<link href="libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" type="text/css"/> |
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
(function() { | |
var app = angular.module('app', ['smart-table', 'cf', 'user']); | |
app | |
.controller('Cont', ['$scope', '$q', '$location', '$window', '$sce', 'service', '$filter', 'user', ControllerMethod]) | |
.service = app.service('service', ['$q', '$http', Service]) | |
.directive('iframeOnload', [ | |
function() { | |
return { | |
scope: { |
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/bash | |
dir=$(dirname "${BASH_SOURCE[0]}") | |
find -wholename "*${1}" | |
find -wholename "*${1}" -exec vim '{}' \; -quit |
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/bash | |
########## | |
# | |
# parameters: | |
# conf: (required) points a cdnjs-client.json file; eg. [cdnjs-client.json](https://gist.github.com/matthewbednarski/30dd4b65221a8c8c67ee) | |
# | |
# requires: jq, wget | |
# | |
########## |
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
{ | |
"cloudflare": { | |
"root": "https://cdnjs.cloudflare.com/ajax/libs", | |
"relative-location" : "src/main/webapp/libs", | |
"dependencies": { | |
"font-awesome": { | |
"version": "4.4.0", | |
"css": [ | |
"font-awesome.min.css" | |
], |
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/bash | |
#### | |
# | |
# | |
# http://misc.flogisoft.com/bash/tip_colors_and_formatting | |
# | |
# | |
#### | |
echo-blue () { |
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/bash | |
dir=$(dirname "${BASH_SOURCE[0]}") | |
# requires pandoc and sed | |
# example usage | |
# ./pandoc2redmine.sh README.md output.Redmine.textile | |
# | |
in=$1 |
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
(function() { | |
var app = angular.module('cf', []) | |
.filter('isCodiceFiscale', [codiceFiscale]); | |
/** | |
* taken from https://gist.github.com/TheHiddenHaku/6951634 | |
* | |
* A function for evaluating if a string is a valid codice fiscale | |
* | |
* @param String codiceFiscale |
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/bash | |
if [[ "" == "$1" ]] && [[ "" == "$2" ]]; then | |
jmx=9010 | |
debug=8787 | |
elif [[ "" == "$2" ]]; then | |
jmx=$1 | |
debug=8787 | |
else | |
jmx=$1 |