この度はATコマンドかるたをお買い求めくださいましてありがとうございます。本説明書ではATコマンドかるたの遊び方の説明をいたします。
- ATコマンドふだ 48枚
- 機能ふだ 48枚
- 説明書 (今読んでおられるものです) 1枚
| FROM debian:bookworm-slim | |
| ENV LANG=C.utf8 | |
| RUN apt-get update -y \ | |
| && apt-get install -y \ | |
| git \ | |
| pkg-config \ | |
| build-essential \ | |
| mecab \ | |
| mecab-ipadic-utf8 \ |
| package iprtb | |
| import ( | |
| "net" | |
| "testing" | |
| ) | |
| func Benchmark_PrefixTreeAlgorithm(b *testing.B) { | |
| rtb := NewRouteTable() |
| #!/bin/bash | |
| # usage: | |
| # sh-run.sh script-you-want-to-run.sh args... | |
| set -ue | |
| file="$1" | |
| should_remove_immutable_attr=0 |
| func! s:pm_template() | |
| let path = substitute(expand('%'), '.*lib/', '', 'g') | |
| let path = substitute(path, '[\\/]', '::', 'g') | |
| let path = substitute(path, '\.pm$', '', 'g') | |
| call append(0, 'package ' . path . ';') | |
| call append(1, 'use strict;') | |
| call append(2, 'use warnings;') | |
| call append(3, 'use utf8;') | |
| call append(4, '') | |
| call append(5, '') |
| FROM debian:stretch-slim | |
| RUN apt-get update && apt-get install -y openssh-server | |
| RUN mkdir /var/run/sshd | |
| RUN echo 'root:root' | chpasswd | |
| RUN useradd -m test | |
| RUN passwd -d test | |
| RUN sed -i'' -e's/^#PermitRootLogin prohibit-password$/PermitRootLogin yes/' /etc/ssh/sshd_config \ | |
| && sed -i'' -e's/^#PasswordAuthentication yes$/PasswordAuthentication yes/' /etc/ssh/sshd_config \ | |
| && sed -i'' -e's/^#PermitEmptyPasswords no$/PermitEmptyPasswords yes/' /etc/ssh/sshd_config \ |
| package net.moznion.javacard.helloworld; | |
| import javacard.framework.*; | |
| import javacardx.framework.*; | |
| public class HelloWorldApplet extends Applet { | |
| private final static byte HELLO_WORLD_CLA = (byte)0xB0; | |
| private final static byte SELECT_INS = (byte)0xA4; | |
| private final static byte HELLO_INS = (byte)0x50; | |
| private final static byte[] HELLO_TEXT = {(byte)'H',(byte)'e',(byte)'l',(byte)'l',(byte)'o'}; |
| version: '2.1' | |
| services: | |
| kibana: | |
| image: 'docker.elastic.co/kibana/kibana-oss:6.1.0' | |
| elasticsearch: | |
| image: 'docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.0' | |
| oauth2-proxy: | |
| image: 'a5huynh/oauth2_proxy:2.2' |
| user nginx; | |
| pid /var/run/nginx.pid; | |
| worker_processes auto; | |
| events { | |
| use epoll; | |
| } |
| use v6.c; | |
| use Crust::Request; | |
| use JSON::Fast; | |
| sub app($env) { | |
| my $req = Crust::Request.new($env); | |
| given $req.path-info { | |
| when '/' { |