I hereby claim:
- I am pauljz on github.
- I am pauljz (https://keybase.io/pauljz) on keybase.
- I have a public key ASAUyjJg0ZyAEjP14zgeKotU5MMFO3BSgRP_Y6PTdYwE7wo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Install homebrew and dependencies if missing... | |
| if ! hash brew 2>/dev/null; then | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| fi | |
| if ! hash tesseract 2>/dev/null; then | |
| brew install tesseract | |
| fi | |
| if ! hash fswatch 2>/dev/null; then |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env node_modules/.bin/babel-node | |
| /** | |
| * This script is used to keep eslint passing as we upgrade our coding style. | |
| * | |
| * It will find all broken eslint rules in legacy code and automatically add eslint ignores for | |
| * any rules the file breaks. It will also clean up rules that are no longer in violation. | |
| * | |
| * This approach lets us make sure we're writing new code strictly without needing to constantly | |
| * rewrite our old code. | |
| */ |
| " Vim syntax file | |
| " Language: HTML | |
| " Maintainer: Claudio Fleiner <[email protected]> | |
| " URL: http://www.fleiner.com/vim/syntax/html.vim | |
| " Last Change: 2006 Jun 19 | |
| " Please check :help html.vim for some comments and a description of the options | |
| " For version 5.x: Clear all syntax items | |
| " For version 6.x: Quit when a syntax file was already loaded |
| pre.prettyprint | |
| code.lang-html | |
| :code | |
| <html> | |
| <head></head> | |
| <body></body> | |
| </html> |
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.Specialized; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Pvc | |
| { | |
| class DependencyGraph |
| using System; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| namespace FluentAutomation.Tests | |
| { | |
| [TestClass] | |
| public class Issue69Test : FluentTest | |
| { | |
| public Issue69Test() | |
| { |