I hereby claim:
- I am kenji-miyake on github.
- I am kenji_miyake (https://keybase.io/kenji_miyake) on keybase.
- I have a public key ASBIjiqlnPligVGHAt9eYLPJTCKHjCwTbF0VzBhmbEdhEwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
QGIS3 has a tool called 'gdal2tiles.py' which can generate map tiles, but currently, it only supports TMS, not XYZ. However, QGIS3 loads XYZ by default and requires checkbox for TMS, so it's better to convert TMS to XYZ.
The difference between TMS and XYZ is just the name of Y-coordinate, so renaming works well. tms2xyz.py is a script for that.
; Common | |
#Persistent | |
#SingleInstance force | |
#MaxHotkeysPerInterval 100 | |
; Emacs Keybind | |
#If NOT WinActive("ahk_class ConsoleWindowClass") AND NOT WinActive("ahk_class CASCADIA_HOSTING_WINDOW_CLASS") | |
RCtrl & a:: Send {Home} | |
RCtrl & e:: Send {End} | |
RCtrl & k:: Send +{End}^{x} |
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates /t REG_SZ /v CopyNameTemplate /d "%%s" /f | |
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates /t REG_SZ /v RenameNameTemplate /d "new" /f | |
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates /t REG_SZ /v ShortcutNameTemplate /d "%%s.lnk" /f |
Import-Module PSReadLine | |
Set-PSReadlineOption -EditMode Emacs |
{ | |
"configurations": [ | |
{ | |
"name": "ROS", | |
"browse": { | |
"databaseFilename": "", | |
"limitSymbolsToIncludedHeaders": true | |
}, | |
"includePath": [ | |
"${workspaceFolder}/src/**", |
#!/usr/bin/env fish | |
function check-env-diff | |
# Check arguments | |
if test (count $argv) -lt 1 | |
echo "Please input command as the 1st argument." | |
return | |
end | |
set cmd $argv[1..-1] |
import argparse | |
import logging | |
import argcomplete | |
logger = logging.getLogger(__name__) | |
logger.setLevel("DEBUG") | |
def main(): |
#!/usr/bin/env python3 | |
import argparse | |
import os | |
import re | |
from pathlib import Path | |
from typing import Optional | |
import yaml | |
from github import Github |