Create an empty git repo or reinitialize an existing one
git initCreate an empty git repo or reinitialize an existing one
git init| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |
| import re | |
| bvh_file = "Example1.bvh" | |
| def identifier(scanner, token): return "IDENT", token | |
| def operator(scanner, token): return "OPERATOR", token | |
| def digit(scanner, token): return "DIGIT", token | |
| def open_brace(scanner, token): return "OPEN_BRACE", token | |
| def close_brace(scanner, token): return "CLOSE_BRACE", token |
| #!/bin/sh | |
| # | |
| # a simple way to parse shell script arguments | |
| # | |
| # please edit and use to your hearts content | |
| # | |
| ENVIRONMENT="dev" |
| // | |
| // Regular Expression for URL validation | |
| // | |
| // Author: Diego Perini | |
| // Created: 2010/12/05 | |
| // Updated: 2018/09/12 | |
| // License: MIT | |
| // | |
| // Copyright (c) 2010-2018 Diego Perini (http://www.iport.it) | |
| // |