- 持田
- Craftsman Software という受託(?)の会社で YAML 書いてる
This file contains hidden or 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
| #!/usr/bin/env bash | |
| function generateRandomAlNumString() { | |
| local chars=($(echo {a..z} {A..Z} {0..9})); | |
| local string=() | |
| local index | |
| local loopIndex | |
| for loopIndex in {1..16}; do | |
| index="$(( RANDOM % 62 ))" | |
| index="$(( index + 1 ))" |
This file contains hidden or 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
| @Grab('org.jsoup:jsoup:1.17.2') | |
| import org.jsoup.* | |
| import groovy.transform.* | |
| @ToString | |
| @EqualsAndHashCode | |
| @Sortable(includes = ['gdpPerPerson'], reversed = true) | |
| class Gdp implements Iterable<Long> { | |
| final int country |
This file contains hidden or 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
| [ | |
| { | |
| "sur": "OutOfMemoryError", | |
| "pron": "アウトオブメモリーエラー", | |
| "pos": "Japanese_Koyuumeishi_ippan", | |
| "priority": 5, | |
| "accentType": 9, | |
| "lang": "ja" | |
| }, | |
| { |
This file contains hidden or 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
| import {Context} from "./Context"; // API のリクエスト先が格納されているオブジェクト | |
| import * as pako from "pako"; // zlib を使えるようにするライブラリー | |
| // javap サービスへのリクエストが成功して返ってきた javap の結果(複数ある)が格納されるオブジェクトの型 | |
| export type JavapSuccess = { | |
| contents: JavapOutput[], | |
| }; | |
| // javap の結果 ファイル名とその内容 | |
| export type JavapOutput = { |
This file contains hidden or 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
| @Grab('spring-aop') | |
| @Grab('aspectjrt') | |
| @Grab('aspectjtools') | |
| @Grab('aspectjweaver') | |
| import groovy.util.logging.Slf4j | |
| import java.lang.annotation.Retention | |
| import java.lang.annotation.Target |
- もちだ(mike-neck)
- 株式会社クオカードで Kotlin と TypeScript と Terraform と YAML 書いてる
- JJUG CCC 2020 Fall(2020/11/7) で
jqの話する - https://jjug.doorkeeper.jp/events/112842- Java の話は一切しない
NewerOlder