Skip to content

Instantly share code, notes, and snippets.

@DragonflyNet67
DragonflyNet67 / gist:532005195f26dd04456ad446870e44e7
Created April 25, 2020 18:42 — forked from sabarasaba/gist:3080590
Remove directory from remote repository after adding them to .gitignore
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master
@DragonflyNet67
DragonflyNet67 / JsonPost.vb
Created March 4, 2019 15:19 — forked from six519/JsonPost.vb
JSON HTTP POST Request In Visual Basic .NET
'Install Newtonsoft.json
'-----------------------
'
'PM> Install-Package Newtonsoft.Json -Version 6.0.8
'Sample Usage
'------------
'Dim jsonPost As New JsonPost("http://192.168.254.104:8000")
'Dim dictData As New Dictionary(Of String, Object)