/MyNote

Personal Notes. Markdown files.

Primary LanguagePython

MyNote

Personal Notes. Markdown files. (public)

Summary

Link to summary (generated by tool/indexing.py)

Reading List

Link to reading list

filename convension

  • yyyy-MM-dd-hhmmss.md, in note folder.
  • On windows, using powershell to create markdown file.
$usedate = "{0:yyyy-MM-dd-hhmmss}" -f (get-date)
$filename = $usedate + ".md"  
$filepath = New-Item -name $filename -ItemType file
$filepath