Installing the MongoDB Go Driver
Resources
https://docs.mongodb.com/drivers/go/current/
https://docs.mongodb.com/manual/tutorial/install-mongodb-on-windows/
Free Data Science Book by Oreilly Publication
https://datascienceatthecommandline.com/2e/chapter-2-getting-started.html
https://www.mingw-w64.org/downloads/#mingw-builds
https://sourceforge.net/projects/mingw-w64/
mingw-64-install.exe
C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64
Append the C++ bin folder to System Environment Variable (Path)
gcc –version
g++ –version
Download the raylib from GitHub and extract it
https://github.com/raysan5/raylib
Using MinGW make a tool, just navigate from the command line to raylib/src/
folder and type:
mingw32-make PLATFORM=PLATFORM_DESKTOP
#include "raylib.h"
int main(void)
{
InitWindow(800, 450, "raylib [core] example - basic window");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
EndDrawing();
}
CloseWindow();
return 0;
}
default:
g++ ../main.cpp -o test.exe -O2 -Wall -Wno-missing-braces -I ../include/ -L ../lib/ -lraylib -lopengl32 -lgdi32 -lwinmm
mingw32-make
test.exe
A simple printf(“Hello to C Programming”); code and to run the code press CTRL + ALT + N
Result: Hello to C Programming
print(adc.read(0))
esptool.py –port COMx
https://nodemcu.readthedocs.io/en/release/
http://luabinaries.sourceforge.net/download.html
D:\Program Files\LUA
If everything has been done correctly then you see the Lua 5.x.x Copyright (C) otherwise check the system variable environment path again. Note the semcolon ( ; ) entries before and after the path value.