Hello {{name}} !!
{{! This is a comment, and it won't be rendered }}
class Token: | |
ASSIGN = 'assign' | |
NAME = 'name' | |
NUMBER = 'number' | |
PLUS = 'plus' | |
MINUS = 'minus' | |
LPARENS = 'lparens' | |
RPARENS = 'rparens' | |
DOUBLEDOT = 'doubledot' |
# Created by https://www.gitignore.io/api/unity | |
# Edit at https://www.gitignore.io/?templates=unity | |
# Jetbrain Rider Cache | |
.idea/ | |
Assets/Plugins/Editor/JetBrains* | |
# Visual Studio Code | |
.vscode/ |
import java.nio.ByteBuffer | |
import java.util.UUID | |
fun UUID.asBytes(): ByteArray { | |
val b = ByteBuffer.wrap(ByteArray(16)) | |
b.putLong(mostSignificantBits) | |
b.putLong(leastSignificantBits) | |
return b.array() | |
} |
1 shard, 0 replica.
Update default template:
curl -X PUT http://localhost:9200/_template/default -H 'Content-Type: application/json' -d '{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}'
#!python3 | |
""" | |
Convert a requirements.txt file to a Poetry project. | |
Just place in the root of your working directory and run! | |
""" | |
sourceFile = "./requirements.txt" | |
import re | |
import os |
## Author: Jiun Bae (2019/08/18) | |
## ## See also (https://github.com/jiunbae/ITE4053/tree/master/NumpyNeuralNetwork) | |
from typing import Optional, List, Union, Tuple, Iterable, Callable | |
from functools import reduce | |
import numpy as np | |
## Class Definition | |
# _Module |
Percentage:
<img src="https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png" width=50% height=50%>
Pixels:
<img src="https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png" width="150" height="280">