I hereby claim:
- I am laser on github.
- I am lasericus (https://keybase.io/lasericus) on keybase.
- I have a public key ASC9zkxig-oNF8OP2GS2jTNPEW0GOVoPMIfR0WvR0buulQo
To claim this, I am signing this object:
public abstract class Tree { | |
// Constructor private so the type is sealed. | |
private Tree() {} | |
public abstract <T> T match(Function<Empty, T> a, | |
Function<Leaf, T> b, | |
Function<Node, T> c); | |
public static final class Empty extends Tree { | |
public <T> T match(Function<Empty, T> a, |
echo "" | |
echo "$(date "+%T") 'fork' a process..." | |
# opens the file as input fd 666 before the background job (curl) is started | |
exec 666< <(curl -s 'http://www.fakeresponse.com/api/?sleep=4') | |
echo "" | |
echo "$(date "+%T") 'fork' second process..." | |
# opens the file as input fd 666 before the background job (curl) is started | |
exec 777< <(curl -s 'https://cdn.bringatrailer.com/wp-content/uploads/2017/09/59c4506ce4ca8_P6155050-e1506103879707.jpg') |
go test ./... \ | |
-v \ | |
-run "$(cat commands/foo_test.go \ | |
| grep -oE "^func Test[^(]*" \ | |
| sed -e "s/func //" \ | |
| tr "\n" "|" \ | |
| sed -e "s/|$//")" |
var codes = { | |
"AD": "AD\\d{3}", | |
"AM": "(37)?\\d{4}", | |
"AR": "([A-HJ-NP-Z])?\\d{4}([A-Z]{3})?", | |
"AS": "96799", | |
"AT": "\\d{4}", | |
"AU": "\\d{4}", | |
"AX": "22\\d{3}", | |
"AZ": "\\d{4}", | |
"BA": "\\d{5}", |
I hereby claim:
To claim this, I am signing this object:
DHT|peer-id | |
0|uPody | |
1|nGjie | |
2|ur5o2 | |
3|mM69R | |
4|26R1S | |
5|jyzxZ | |
6|wtMS5 | |
7|MDKez | |
8|t26G5 |
#!/bin/sh | |
if git rev-parse --verify HEAD >/dev/null 2>&1 ; then | |
against=HEAD | |
else | |
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 | |
fi | |
for FILE in $(git diff-index --name-only $against) ; do | |
# Check if the file contains Print |
From Wikipedia:
Pig Latin is a language game or argot in which words in English are altered, usually by adding a fabricated suffix or by moving the onset or initial consonant or consonant cluster of a word to the end of the word and adding a vocalic syllable to create such a suffix. The objective is to conceal the words from others not familiar with the rules.
First, head here to join our Zoom meeting. It will help me following along while you work through the assignment.
Write a program that calculates purchase price for movie tickets using any language you like. It should not be a full-blown web app; it can be a simple class or collection of methods invokable by your test suite. We'll provide you with some requirements, test-cases, and even a sample interface - all you have to do is give us some software.