http://nbviewer.jupyter.org/github/fzinfz/scripts/tree/master/jupyter/ [Source]
https://github.com/fzinfz/scripts
http://graphql.org/ a query language and execution engine tied to any backend service.
enum Episode { NEWHOPE, EMPIRE, JEDI }interface Character {id: Stringname: Stringfriends: [Character]appearsIn: [Episode]}type Human implements Character {id: Stringname: Stringfriends: [Character]appearsIn: [Episode]homePlanet: String}
go to line: Esc , line#, Shift-g:%s/pattern/replace/g_ # i/I: case in/sensitivecw => change wordciw => change word from cursor:w !sudo tee % ===> sudo save
Ctrl+V;【select】;Shift + I; 【type text】; Esc
Regex for deleting empty lines: ^\s*$\n
AlanWalk.markdown-tocshardulm94.trailing-spaces
# launch.json"args": ["--help", ""],
http://demo.showdownjs.com/ https://github.com/showdownjs/showdown#browser
var converter = new showdown.Converter();var md = '- works in the server and in the **browser**';var html = converter.makeHtml(md);
https://github.com/chjj/marked#browser https://github.com/jonschlinkert/remarkable https://github.com/evilstreak/markdown-js https://github.com/markdown-it/markdown-it https://github.com/evilstreak/markdown-js#browser
Text/HTML table: https://html.ferro.pro/md.html CSV/WIKI table: http://jakebathman.github.io/Markdown-Table-Generator/ HTML(non table): https://domchristie.github.io/to-markdown/
https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/OCR https://docs.microsoft.com/en-us/uwp/api/Windows.Media.Ocr
=LEFT(B5,FIND("_",B5)-1)=RIGHT(B5,LEN(B5)-FIND("_",B5))
async:https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/