Mix.install([
{:benchee, "~> 1.3"},
{:kino_benchee, "~> 0.1.0"},
{:jason, "~> 1.4"},
{:jiffy, "~> 1.1"},
{:benchee_markdown, "~> 0.3.3"}
])
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function formatMatch({ indices, value }) { | |
let lastIndex = 0; | |
return ( | |
<span> | |
{indices.map(([start, end], index) => { | |
const nonMatch = value.slice(lastIndex, start); | |
lastIndex = end; | |
const match = value.slice(start, end); | |
return ( | |
<React.Fragment key={index}> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```json | |
{ | |
"test": true | |
} | |
``` |
I hereby claim:
- I am christianalexander on github.
- I am calexanderbolste (https://keybase.io/calexanderbolste) on keybase.
- I have a public key ASByxhqXGTxmCM6GRDNyukQEv9RY04MpLeuJvp8AECUgsQo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package task6.money; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* Created by Christian Alexander on 11/10/14. | |
*/ | |
public class Test { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Christian Alexander on 10/26/14. | |
*/ | |
import java.awt.Point; | |
import java.awt.Dimension; | |
import java.util.*; | |
import java.awt.Graphics; | |
import java.awt.Graphics2D; | |
import java.awt.RenderingHints; | |
import java.awt.Color; |