Keybase proof
I hereby claim:
- I am yasushi on github.
- I am yasushia (https://keybase.io/yasushia) on keybase.
- I have a public key ASA5vTNYB_jBJ4PtfhUxo_TFM2qkUTIcNiLfn5nnonV_2Qo
To claim this, I am signing this object:
FROM amazonlinux:2 | |
RUN amazon-linux-extras enable corretto8 | |
RUN yum -y install java-1.8.0-amazon-corretto-devel sudo vim perf tar && yum -y clean all | |
RUN curl -sL https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.2/async-profiler-1.8.2-linux-x64.tar.gz -o /tmp/async-profiler-1.8.2-linux-x64.tar.gz \ | |
&& mkdir /usr/local/async-profiler \ | |
&& tar xf /tmp/async-profiler-1.8.2-linux-x64.tar.gz --strip-components 1 -C /usr/local/async-profiler \ | |
&& cp /usr/local/async-profiler/build/libasyncProfiler.so /lib64 |
ffmpeg -f image2 -framerate 1 -loop 1 -video_size 900x900 -i soundonly_3_re.jpg -pix_fmt yuv420p -t 10 -r 1 -s 900x900 so3.mp4 |
#!/bin/sh | |
# | |
# An example hook script to verify what is about to be committed. | |
# Called by "git commit" with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. | |
# | |
# To enable this hook, rename this file to "pre-commit". | |
if git rev-parse --verify HEAD >/dev/null 2>&1 |
FROM debian:stretch-slim AS build | |
RUN apt-get update && apt-get -y --no-install-recommends install wget ca-certificates && wget -O /embulk "https://dl.bintray.com/embulk/maven/embulk-0.9.7.jar" | |
FROM openjdk:8-slim | |
COPY --from=build /embulk /usr/local/bin/embulk | |
RUN chmod 755 /usr/local/bin/embulk | |
RUN useradd -m -u 1000 user | |
USER user |
#!/usr/bin/env python3 | |
# -*- coding: utf-8; -*- | |
import sys, os, glob, itertools, re, functools, pprint | |
from collections import OrderedDict | |
from lxml import etree | |
from ebooklib import epub | |
I hereby claim:
To claim this, I am signing this object:
hdiutil makehybrid -iso -joliet -o test.iso ./root |
pinentry-program /usr/local/bin/pinentry-mac |
extern crate zip; | |
use zip::write::FileOptions; | |
fn main() { | |
let path = std::path::Path::new("dummy.zip"); | |
let file = std::fs::File::create(&path).unwrap(); | |
let mut zip = zip::ZipWriter::new(file); |
module Main | |
open System | |
open System.Security.Cryptography | |
open System.Text.RegularExpressions | |
let fromHex (s:string) = | |
s | |
|> Seq.windowed 2 | |
|> Seq.mapi (fun i j -> (i,j)) |