おるみん党の活動を広く一般市民に伝えるべく機関誌『測点』Vol.3の刊行を予定しています。 寄稿希望者に関しては、下記の要項をよく読み、締切までに原稿を提出してください
おるみん党機関誌『測点』では情報通信技術に関する内容を中心に、幅広く主に技術・工学に関する原稿を募集しています。 過去の寄稿内容としては
FROM ubuntu:20.04 as builder | |
ENV DEBIAN_FRONTEND noninteractive | |
ARG FFMPEG_VERSION="5.1.2" | |
ARG PROCS=4 | |
RUN set -x \ | |
&& apt-get update -qq \ | |
&& apt-get install -y --no-install-recommends \ | |
build-essential \ | |
autoconf \ |
$ smartctl -a /dev/nvme0n1 | |
smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.4.0-59-generic] (local build) | |
Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org | |
=== START OF INFORMATION SECTION === | |
Model Number: SAMSUNG MZQLW1T9HMJP-00003 | |
.... | |
$ mkfs.btrfs /dev/nvme0n1p1 | |
$ mount -t btrfs -o defaults,ssd /dev/nvme0n1p1 /mnt | |
$ TARGET=/mnt fio -f fio-bench-2g.txt --output-format=terse | tee fio-result-no-compress.txt | awk -F ';' '{print $3, ($7+$48) / 1000}' |
I hereby claim:
To claim this, I am signing this object:
[11242622.924146] recpt1: page allocation failure: order:6, mode:0x26040c0(GFP_KERNEL|__GFP_COMP|__GFP_NOTRACK) | |
[11242622.924153] CPU: 1 PID: 10662 Comm: recpt1 Tainted: G O 4.9.0-8-amd64 #1 Debian 4.9.110-3+deb9u4 | |
[11242622.924154] Hardware name: HP ProLiant ML110 G7, BIOS J01 07/01/2013 | |
[11242622.924155] 0000000000000000 ffffffff8c531e54 ffffffff8cc016d0 ffffb3204865fb28 | |
[11242622.924157] ffffffff8c38a78a 026040c0026040c0 ffffffff8cc016d0 ffffb3204865fac8 | |
[11242622.924166] ffffa05b00000010 ffffb3204865fb38 ffffb3204865fae8 f20a4bb6c05d8d4a | |
[11242622.924168] Call Trace: | |
[11242622.924173] [<ffffffff8c531e54>] ? dump_stack+0x5c/0x78 | |
[11242622.924176] [<ffffffff8c38a78a>] ? warn_alloc+0x13a/0x160 | |
[11242622.924178] [<ffffffff8c38a4ca>] ? __alloc_pages_direct_compact+0x4a/0xf0 |
import argparse | |
def foo(): | |
pass | |
def bar(): | |
pass | |
def parse(): | |
parser = argparse.ArgumentParser() |
# texlive.profile written on Sun Jul 23 14:41:25 2017 UTC | |
# It will NOT be updated and reflects only the | |
# installation profile at installation time. | |
selected_scheme scheme-custom | |
TEXDIR /usr/local/texlive/2017 | |
TEXMFCONFIG ~/.texlive2017/texmf-config | |
TEXMFHOME ~/texmf | |
TEXMFLOCAL /usr/local/texlive/texmf-local | |
TEXMFSYSCONFIG /usr/local/texlive/2017/texmf-config | |
TEXMFSYSVAR /usr/local/texlive/2017/texmf-var |
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="pattern"> | |
<test qual="any" name="family"> | |
serif | |
</test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>SourceHanSerifJP</string> | |
<string>NotoSerifJapanese</string> |
# -*- coding: utf-8 -*- | |
# record AGQR | |
# usage: use with crontab | |
# 29,59 * * * sleep 55; ruby agqr.rb | |
# requirements | |
# crontab, ruby => 2.0, ffmpeg, rtmpdump, mimms | |
require 'yaml' | |
rtmpdump = '/usr/bin/rtmpdump' |