Skip to content

Instantly share code, notes, and snippets.

View minorua's full-sized avatar
👻

Minoru Akagi minorua

👻
  • Okayama, Japan
  • 11:00 (UTC +09:00)
View GitHub Profile
@minorua
minorua / matome.sh
Last active December 21, 2023 07:09
TIMELINEメモを一つのファイルにまとめるスクリプト
# Works on Git Bash
cat 2023*.txt > temp.txt
sort temp.txt | uniq > 2023.txt
rm temp.txt
@minorua
minorua / give_titles.py
Created December 21, 2023 07:08
Evernoteからエクスポートされるenexファイルの「無題のノート」のタイトルをコンテンツの1行目の文字列で置き換えるスクリプト
import sys
from xml.dom import minidom
filename = sys.argv[1]
print("Parsing " + filename)
dom = minidom.parse(filename)
notes = dom.getElementsByTagName("note")
@minorua
minorua / debug_with_vscode.md
Last active September 27, 2024 11:51
Debugging a QGIS plugin with VS Code

QGIS

  1. ScriptRunnerでdebugpy_OSGeo4W.pyを実行。

VS Code

  1. 次で.vscode/launch.jsonを作成。remoteRootを${workspaceFolder}に変更。

Menu / Run / Add Configuration…