Programming
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: String
name: String
friends: [Character]
appearsIn: [Episode]
}
type Human implements Character {
id: String
name: String
friends: [Character]
appearsIn: [Episode]
homePlanet: String
}
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/pandao/editor.md
https://github.com/hiroi-sora/Umi-OCR
text on screen: https://docs.microsoft.com/en-us/windows/powertoys/text-extractor
https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/OCR
https://docs.microsoft.com/en-us/uwp/api/Windows.Media.Ocr
https://exceljet.net/sites/default/files/styles/function_screen/public/images/formulas/Split%20text%20string%20at%20specific%20character.png?itok=WM1v7nsL
=LEFT(B5,FIND("_",B5)-1)
=RIGHT(B5,LEN(B5)-FIND("_",B5))
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/interop/how-to-access-office-onterop-objects
async:https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/
https://github.com/thangchung/awesome-dotnet-core
https://docsearch.algolia.com/docs/DocSearch-v3
Last modified 29d ago