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
const gulp = require('gulp'); | |
const uglify = require('gulp-uglify'); | |
const sourcemaps = require('gulp-sourcemaps'); | |
const buble = require('rollup-plugin-buble'); | |
const commonjs = require('rollup-plugin-commonjs'); | |
const nodeResolve = require('rollup-plugin-node-resolve'); | |
const rollup = require('rollup-stream'); | |
const source = require('vinyl-source-stream'); | |
const buffer = require('vinyl-buffer'); |
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
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: dd-agent-config | |
namespace: default | |
data: | |
kubernetes-config: |- | |
init_config: | |
instances: | |
- port: 4194 |
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
<?php | |
/** | |
* I had to parse an XLSX spreadsheet (which should damn well have been a CSV!) | |
* but the usual tools were hitting the memory limit pretty quick. I found that | |
* manually parsing the XML worked pretty well. Note that this, most likely, | |
* won't work if cells contain anything more than text or a number (so formulas, | |
* graphs, etc ..., I don't know what'd happen). | |
*/ |
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 | |
# Useful when you're making lots of changes in bundle/Resources/public and want | |
# to see the changes quickly in your browser. | |
# chmod +x the file then call the command like `./watch_assets.sh` | |
# Make sure you're in the project root directory (the one containing app, src etc) | |
if [ -z `which inotifywait` ] ; then | |
echo "You must install inotify-tools to use watch_assets" | |
exit 1 |