Skip to content

Instantly share code, notes, and snippets.

@nobiinu-and
nobiinu-and / TeslaV100_4_-hashcat.txt
Created July 21, 2019 04:23
Hashcat 4 * Tesla V100-PCIE-16GB (Azure NC24rs v3)
hashcat (v5.1.0) starting in benchmark mode...
Benchmarking uses hand-optimized kernel code by default.
You can use it in your cracking session by setting the -O option.
Note: Using optimized kernel code limits the maximum supported password length.
To disable the optimized kernel code in benchmark mode, use the -w option.
OpenCL Platform #1: NVIDIA Corporation
======================================
* Device #1: Tesla V100-PCIE-16GB, 4064/16258 MB allocatable, 80MCU
@nobiinu-and
nobiinu-and / roman_numerals_calculator.elm
Created April 15, 2017 14:26
ローマ数字の計算機のElmコード。Assert関数は自前で用意。モブプログラミングでTDDで書いたもの。アジャイルジャパン2017にて / Roman Numerals Calculator elm code written in a mob programming session in TDD way at Ajile Japan 2017
import Html exposing (li, text, ul)
import String exposing (split)
add a b =
numberToRoman ((romanToNumber a) + (romanToNumber b))
romanToNumber roman =
List.length(split "" roman)
{- case roman of
"I" -> 1