I hereby claim:
- I am c0bra on github.
- I am bhannman (https://keybase.io/bhannman) on keybase.
- I have a public key ASAtthfP7ozPs_MEAMmOAVNNJZPQd_GaDhcOpqIE0KcAcQo
To claim this, I am signing this object:
| <html> | |
| <body> | |
| <button id="btn">Test</button> | |
| <script> | |
| var btn = document.getElementById('btn'); | |
| btn.addEventListener('click', function() { | |
| // "width=800,height=600,toolbar=1,resizable=1,left=-220,top=-4" | |
| window.open('https://google.com', 'TableauAuth', "width=800,height=600,toolbar=1,resizable=1,left=-220,top=-4"); | |
| }); | |
| </script> |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Stash unstaged changes | |
| git stash -q --keep-index | |
| npm run build | |
| npm run toc | |
| # Stage changes | |
| git add -u |
| Dim list As List(Of EXM_Spirometry)() | |
| list.ForEach(Sub(x) | |
| ' Do whatever you want in this block. | |
| End Sub) |
| const cluster = require('cluster'); | |
| const Benchmark = require('benchmark'); | |
| const chance = require('chance').Chance(); | |
| const smeans = require('../src/smeans'); | |
| let suite = new Benchmark.Suite(); | |
| // Generate dataset | |
| let data; | |
| if (cluster.isMaster) { |
| ADMIN="your-email@you.com" | |
| # set alert level 90% is default | |
| ALERT=90 | |
| df -H | grep -vE '^Filesystem|tmpfs|cdrom|^//|/mnt' | awk '{ print $5 " " $1 }' | while read output; | |
| do | |
| #echo $output | |
| usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 ) | |
| partition=$(echo $output | awk '{ print $2 }' ) | |
| if [ $usep -ge $ALERT ]; then | |
| echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" | |
| /* js */ | |
| var app = angular.module('plunker', ['ngSanitize']); | |
| app.controller('MainCtrl', function($scope, $sce) { | |
| $scope.data = {}; | |
| $scope.val = $sce.trustAsHtml('🏠'); | |
| }); | |
| // Grunt task: | |
| karma: { | |
| unit: { | |
| configFile: 'test/karma.config.js', | |
| background: true | |
| } | |
| }, | |
| // test/karma.config.js | |
| module.exports = function(config) { |
| .directive('ngVisible', function () { | |
| return function (scope, element, attr) { | |
| scope.$watch(attr.ngVisible, function (visible) { | |
| element.css('visibility', visible ? 'visible' : 'hidden'); | |
| }); | |
| }; | |
| }) |
| jade: { | |
| build: { | |
| options: { | |
| pretty: true | |
| }, | |
| files: [ | |
| { | |
| expand: true, | |
| src: '<%= src.jade %>', | |
| cwd: 'src/', |