I hereby claim:
- I am danielkaczmarczyk on github.
- I am danielk2 (https://keybase.io/danielk2) on keybase.
- I have a public key ASB64cH6wvCrSanhLKffjm4gWw_mqRpaX_B32XL3ON-jcAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| commit_regex='(ED\-\d+)|(QUICKFIX)\s.+' | |
| error_msg="Aborting commit. Your commit message must start with a ED-<JIRA ticket number> prefix, or with the word QUICKFIX. Regex: (ED\-\d+)|(QUICKFIX)\s.+ " | |
| if ! grep -iqE "$commit_regex" "$1"; then | |
| echo "$error_msg" >&2 | |
| exit 1 | |
| fi |
| http://mirror.netcologne.de/savannah/wined3d/1.1.38/ | |
| Copy ddraw.dll, libwine.dll and wined3d.dll from extracted $SYSDIR folder into the root folder of your JA2 installation |
| function guessNumber(number) { | |
| guess = prompt("Guess a number between 1 and 100"); | |
| console.log("guess after prompt:", guess); | |
| guess = +guess; | |
| console.log("guess after +guess", guess); | |
| if (guess === number) { | |
| return console.log("You got it! The number was", number); | |
| } |