❌️提供する
❌️…体験
| https://twitter.com/simizuganbare/status/1289371048136159232?t=sojOtn-_INURZ8a3EsvOGA&s=19 |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Script Host\Settings] | |
| "Enabled"="0" |
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| indent_style = space | |
| indent_size = 2 | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true | |
| tab_width = 8 |
| <# | |
| This script is for Japanese TeX users. | |
| TeXLive ISO高速ダウンローダー | |
| 後日GitHub本体の方でリポジトリ化する予定 | |
| Copyright © 2020 Tatsunori Uchino | |
| ライセンス: MIT | |
| #> |
| --- | |
| BasedOnStyle: Google | |
| --- | |
| Language: Cpp | |
| AlignAfterOpenBracket: AlwaysBreak | |
| PointerAlignment: Right | |
| Standard: Cpp11 | |
| ConstructorInitializerIndentWidth: 2 | |
| ContinuationIndentWidth: 2 | |
| AccessModifierOffset: -2 |
| # Append the following lines to your PowerShell's $PROFILE | |
| function Enable-VS2019X64Environment() { | |
| Invoke-CmdScript "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" | |
| } |
| version: "3" | |
| services: | |
| db: | |
| image: mariadb # or mysql | |
| # Note about collations: | |
| # utf8mb4_bin: double-width ascii chars != normal ascii chars, fast | |
| # utf8mb4_0900_ja_as_cs (genuine MySQL 8+ only): hiragana = katakana, sorts kana chars strictly | |
| # utf8mb4_0900_ja_as_cs_ks (genuine MySQL 8+ only): hiragana != katakana && double-with asciis = normal asciis, sorts kana chars strictly | |
| command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_bin | |
| ports: |
| # Replace '.' with '' to get $PYTHON_VERSION_INT directly | |
| # e.g. 3.7 | |
| PYTHON_VERSION = $(shell python -c "import sys;print('.'.join(map(str,sys.version_info[:2])))") | |
| # e.g. 37 | |
| PYTHON_VERSION_INT = $(subst .,,$(PYTHON_VERSION)) | |
| # e.g. 3 | |
| PYTHON_MAJOR_VERSION = $(basename $(PYTHON_VERSION)) | |
| # e.g. 7 | |
| PYTHON_MINOR_VERSION = $(subst .,,$(suffix $(PYTHON_VERSION))) | |
| all: |
| function conda($cmd) { | |
| # ↓ Change me | |
| $scripts_root = "C:\tools\Anaconda3\Scripts" | |
| function Add-ScriptsRootIfNeeded($exe) { | |
| $ret = if (Get-Command $exe -ErrorAction Ignore) { | |
| $exe | |
| } | |
| else { | |
| Join-Path $scripts_root $exe | |
| } |