F
F
Ferro's Gitbook
Github
Docker Hub
Search…
Introduction
Programming
Git
Editor/IDE
HTML5/BS
JS
Vue
Python
Django
Linux
Networking
Web
Docker
Virtualization
Storage(SW)
BSD
Windows
Cloud
BI
DB
DevOps
Multimedia
Hardware
Electronic
Android/iOS
Apps
Powered By
GitBook
Programming
Interactive coding notes
Scripts of Powershell/Python/etc
GraphQL
Markdown
Parser
Converter
Windows Universal
OCR
Excel
Formula
CSharp
CSharp
.Net Core
Interactive coding notes
http://nbviewer.jupyter.org/github/fzinfz/scripts/tree/master/jupyter/
[
Source
]
Scripts of Powershell/Python/etc
https://github.com/fzinfz/scripts
GraphQL
http://graphql.org/
a query language and execution engine tied to any backend service.
1
enum Episode { NEWHOPE, EMPIRE, JEDI }
2
3
interface Character {
4
id: String
5
name: String
6
friends: [Character]
7
appearsIn: [Episode]
8
}
9
10
type Human implements Character {
11
id: String
12
name: String
13
friends: [Character]
14
appearsIn: [Episode]
15
homePlanet: String
16
}
Copied!
vi/vim
1
go to line: Esc , line#, Shift-g
2
:%s/pattern/replace/g_ # i/I: case in/sensitive
3
cw => change word
4
ciw => change word from cursor
5
:w !sudo tee % ===> sudo save
Copied!
VISUAL BLOCK mode
1
Ctrl+V;【select】;Shift + I; 【type text】; Esc
Copied!
VSCode
Regex for deleting empty lines: ^\s*$\n
extensions
1
AlanWalk.markdown-toc
2
shardulm94.trailing-spaces
Copied!
Debug Config
1
# launch.json
2
"args": [
3
"--help", ""
4
],
Copied!
Markdown
Parser
http://demo.showdownjs.com/
https://github.com/showdownjs/showdown#browser
1
var converter = new showdown.Converter();
2
var md = '- works in the server and in the **browser**';
3
var html = converter.makeHtml(md);
Copied!
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
Converter
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/
Windows Universal
OCR
https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/OCR
https://docs.microsoft.com/en-us/uwp/api/Windows.Media.Ocr
Excel
Formula
https://exceljet.net/sites/default/files/styles/function_screen/public/images/formulas/Split text string at specific character.png?itok=WM1v7nsL
1
=LEFT(B5,FIND("_",B5)-1)
2
=RIGHT(B5,LEN(B5)-FIND("_",B5))
Copied!
CSharp
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/interop/how-to-access-office-onterop-objects
CSharp
async:
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/
.Net Core
https://github.com/thangchung/awesome-dotnet-core
Previous
Introduction
Next
Git
Last modified
1yr ago
Copy link
Edit on GitHub
Contents
Interactive coding notes
Scripts of Powershell/Python/etc
GraphQL
vi/vim
VISUAL BLOCK mode
VSCode
extensions
Debug Config
Markdown
Parser
Converter
Windows Universal
OCR
Excel
Formula
CSharp
CSharp
.Net Core