Skip to content

Instantly share code, notes, and snippets.

View pedroinfo's full-sized avatar

Pedro Xavier pedroinfo

  • São Paulo - BR - Solar System | Milky Way
View GitHub Profile
Sub getPeople()
Dim req As MSXML2.ServerXMLHTTP60
Dim Parsed As Dictionary
Dim i As Integer
Dim Results As Collection
Dim Value As Dictionary
Set req = New MSXML2.ServerXMLHTTP60
api_url = "https://swapi.dev/api/people/"
@pedroinfo
pedroinfo / DapperConnection.cs
Last active August 26, 2021 17:40 — forked from lancscoder/Connection.cs
Dapper Getting Started
public class ConnectionFactory {
public static DbConnection GetOpenConnection() {
var connection = new SqlConnection("MyConnectionString");
connection.Open();
return connection;
}
}