Current tag (undefined if no tag on head)
git name-rev --tags --name-only $(git rev-parse HEAD)
| #!/bin/bash | |
| # fswatch script.py | xargs -n1 ./run.sh | |
| monkeyrunner < script.py |
| #!/usr/bin/env node | |
| const fs = require('fs'); | |
| const readline = require('readline'); | |
| const commitFile = process.argv[2]; | |
| const fromIDE = !process.stdout.isTTY; | |
| if (fromIDE) { | |
| process.exit(0); |
| . |
| input { | |
| # stdin { } | |
| file { | |
| path => "/path/to/catalina.out*" | |
| start_position => beginning | |
| } | |
| } | |
| # %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %marker - %msg%n |
| #!/bin/bash | |
| # Install Dartium content_shell | |
| $DART_SDK/../chromium/download_contentshell.sh | |
| unzip content_shell-linux-x64-release.zip | |
| mkdir content_shell | |
| mv drt*/* ./content_shell | |
| # Define html_test alias to run tests as dart w/ content_shell | |
| html_test(){ |
| *.dart.js | |
| *.js.deps | |
| *.js.map | |
| .buildlog | |
| pubspec.lock | |
| .pub/ | |
| .settings/ | |
| build/ | |
| packages |
| ## This is a directory/file filter for WinMerge | |
| ## This filter lets through only files XML/HTML developer cares about | |
| name: Dart | |
| desc: Lets through only files XML/HTML developer cares about | |
| ## This is an exclusive filter | |
| ## (it lets through only matching files) | |
| def: include | |
| ## Filters for filenames begin with f: |
Current tag (undefined if no tag on head)
git name-rev --tags --name-only $(git rev-parse HEAD)
http && tcp.port == 8080 && (http.host ~ "hostname" || http.next_response_in)
| FROM google/dart-runtime |