この度はATコマンドかるたをお買い求めくださいましてありがとうございます。本説明書ではATコマンドかるたの遊び方の説明をいたします。
- ATコマンドふだ 48枚
- 機能ふだ 48枚
- 説明書 (今読んでおられるものです) 1枚
| 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'}; |
| 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 \ |
| 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 \ |
| user nginx; | |
| pid /var/run/nginx.pid; | |
| worker_processes auto; | |
| events { | |
| use epoll; | |
| } |
| 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, '') |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use utf8; | |
| use 5.012000; | |
| use autodie; | |
| use XML::XML2JSON; | |
| sub get_json_contents { |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew install git ag ghq peco tmux reattach-to-user-namespace lua go tree jq nmap htop coreutils findutils gnu-sed colordiff hub automake autoconf shellcheck direnv cmake | |
| brew install vim --with-luajit | |
| curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| git clone https://github.com/tokuhirom/plenv.git ~/.plenv | |
| git clone https://github.com/tokuhirom/Perl-Build.git ~/.plenv/plugins/perl-build/ | |
| exec $SHELL -l | |
| plenv install 5.22.2 | |
| git clone https://github.com/rbenv/rbenv.git ~/.rbenv | |
| git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build |