Python =~ 3.11
pip install -U -r <(curl -L https://gist.githubusercontent.com/Ishotihadus/f88fe21b501dee1ff5a60e9c7512f811/raw/requirements.txt\?t=$(date +%s))
qs -l USE_SSH=1 -l rt_F=1 -l h_rt=72:00:00 -g gax12345 'module load cuda/12.3 cudnn/8.9 && python train.py' |
AllCops: | |
NewCops: enable | |
TargetRubyVersion: 3.3 | |
Metrics/AbcSize: | |
Max: 170 | |
Metrics/BlockLength: | |
Max: 250 |
module Base32 | |
TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567' | |
TABLE_REVERSE = Array.new(256) | |
TABLE.each_byte.with_index{|c, i| TABLE_REVERSE[c.ord] = i} | |
TABLE_REVERSE.freeze | |
PADDING = [0, 0, 0, 0, 0].pack('C*').freeze | |
def self.encode32(str, padding: false) | |
bytes = String.new(str, encoding: Encoding::ASCII_8BIT) | |
bytesize = bytes.bytesize |
.*\\.pacificabahai\\.org regexp soft | |
.*\\.uwenku\\.com regexp soft | |
(.\+\\.)?gamedbs\\.jp regexp soft | |
(.\+\\.)?pinterest\\.[a-z]\+ regexp soft | |
(.\+\\.)?stackovernet\\.com regexp soft | |
4answered.com soft | |
android.developreference.com soft | |
askdev.info soft | |
askjapan.me soft | |
atmarkit.itmedia.co.jp soft |
このメモでは、小学高学年〜中学生向けに書かれた、同世代の青春がテーマとなっている小説を児童文学と呼ぶ。
日能研読書ガイド: http://www.nichinoken.co.jp/np5/nnk/books/guide/view/top/TopView.php
### | |
### custom.rule -- カスタム設定 | |
### | |
la,ぁ,ァ,ァ | |
li,ぃ,ィ,ィ | |
lu,ぅ,ゥ,ゥ | |
le,ぇ,ェ,ェ | |
lo,ぉ,ォ,ォ | |
lka,ヵ,ヵ,カ |
#!/usr/bin/env ruby | |
require 'json' | |
require 'net/http' | |
require 'shellwords' | |
require 'uri' | |
unless ARGV[0] | |
warn "usage: #{$0} RecordID [TrackNo] [Output]" | |
exit 1 | |
end |
# frozen_string_literal: true | |
require 'net/http' | |
require 'uri' | |
def fetch(target, file) | |
query = URI.encode_www_form('mode' => 'dl', 'category' => 'character', 'target' => target) | |
uri = URI.parse('https://cinderella-mercari.idolmaster.jp/?' + query) | |
request = Net::HTTP::Get.new(uri) | |
request['Authority'] = 'cinderella-mercari.idolmaster.jp' |
TCLSH = tclsh | |
PREFIX = /usr/local | |
TMP = /tmp/__wavesurfer_build | |
ROOT = $(shell pwd) | |
RUNTIME_win = $(ROOT)/build/kit/tclkit-8.5.8-win32.upx.exe | |
RUNTIME_linux = $(ROOT)/build/kit/tclkit-8.6.6-linux-i386-xcompile | |
RUNTIME_linux64 = $(ROOT)/build/kit/tclkit-8.6.6-linux-amd64 | |
# for 32-bit OSX builds, uncomment these |