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
| # localhost上で、AnsibleのBestpracticeなディレクトリ構成の雛形を作成します。 | |
| # | |
| # 以下のように、localhost指定で作成します・ | |
| # ansible-playbook -i localhost, -c local initializer.yml | |
| - hosts: localhost | |
| vars_prompt: | |
| - name: "root_dir_name" | |
| prompt: "生成するディレクトリ名を指定してください。" | |
| confirm: no |
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 perl | |
| use strict; | |
| use warnings; | |
| use utf8; | |
| use autodie; | |
| use feature qw(say); | |
| use File::Spec; | |
| use FindBin qw($Script $Bin); | |
| use LINE::Notify::Simple; |
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
| #!/bin/bash | |
| cpu_num=$(nproc) | |
| array=() | |
| echo -n "worker_cpu_affinity " | |
| if [ $cpu_num = 1 ]; then | |
| echo "auto;" | |
| exit | |
| fi |
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
| #!/bin/sh | |
| TARGET_MD=$1 | |
| ### call md verifying when idle. | |
| ###### | |
| # HOW TO USE | |
| ### md_sync_call.sh md0 | |
| error_exit() { |
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
| Port 9022 | |
| #AddressFamily any | |
| #ListenAddress 0.0.0.0 | |
| #ListenAddress :: | |
| #HostKey /etc/ssh/ssh_host_rsa_key | |
| #HostKey /etc/ssh/ssh_host_ecdsa_key | |
| #HostKey /etc/ssh/ssh_host_ed25519_key | |
| KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256 | |
| Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr |
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
| VERSION 1.0 CLASS | |
| BEGIN | |
| MultiUse = -1 'True | |
| END | |
| Attribute VB_Name = "VBAAccelator" | |
| Attribute VB_GlobalNameSpace = False | |
| Attribute VB_Creatable = False | |
| Attribute VB_PredeclaredId = False | |
| Attribute VB_Exposed = False | |
| Option Explicit |
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
| # this is read by the standalone daemon and embedded servers | |
| [server] | |
| # this is only for the mysqld standalone daemon | |
| [mysqld] | |
| port = 3306 | |
| socket = /run/mysqld/mysqld.sock | |
| datadir = /var/lib/mysql | |
| server-id=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
| Attribute VB_Name = "ModuleUtility" | |
| Option Explicit | |
| '=== 参照設定で有効にしておく項目 === | |
| 'Microsoft Scripting Runtime | |
| ' FileSystemObject | |
| ' | |
| 'ストリーミング関係(UTF-8なcsvを出力や読み込みなど) | |
| 'Microsoft ActiveX Data Objects x.x Library | |
| ' ADODB.stream |
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
| # This file is part of systemd. | |
| # | |
| # systemd is free software; you can redistribute it and/or modify it | |
| # under the terms of the GNU Lesser General Public License as published by | |
| # the Free Software Foundation; either version 2.1 of the License, or | |
| # (at your option) any later version. | |
| [Unit] | |
| Description=Container %i | |
| Documentation=man:systemd-nspawn(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
| #!/usr/bin/env perl | |
| package State ; | |
| use strict; | |
| use warnings; | |
| use feature qw(say); | |
| use base qw(Class::Accessor); | |
| use Storable qw(lock_nstore lock_retrieve); | |
| use Digest::SHA qw(sha256_hex); |