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
https://twitter.com/simizuganbare/status/1289371048136159232?t=sojOtn-_INURZ8a3EsvOGA&s=19 |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Script Host\Settings] | |
"Enabled"="0" |
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
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 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 script is for Japanese TeX users. | |
TeXLive ISO高速ダウンローダー | |
後日GitHub本体の方でリポジトリ化する予定 | |
Copyright © 2020 Tatsunori Uchino | |
ライセンス: MIT | |
#> |
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
--- | |
BasedOnStyle: Google | |
--- | |
Language: Cpp | |
AlignAfterOpenBracket: AlwaysBreak | |
PointerAlignment: Right | |
Standard: Cpp11 | |
ConstructorInitializerIndentWidth: 2 | |
ContinuationIndentWidth: 2 | |
AccessModifierOffset: -2 |
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
# 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" | |
} |
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: "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: |
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
# 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: |
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
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 | |
} |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Calendars\Japanese\Eras] | |
"2019 05 01"="令和_令_Reiwa_R" |
NewerOlder