- Run pwsh code block in .bat file, for example:
pwsh -Command "& {(get-item .).basename}"
#include <iostream> | |
#include <spdlog/spdlog.h> | |
#include <glm/vec3.hpp> | |
int main() | |
{ | |
std::cout << "Hello World!\n"; | |
spdlog::info("Welcome to spdlog!"); | |
auto vector3 = glm::vec3(.5, 1, 1); | |
std::cout << "vector3.x = " << vector3.x; |
pwsh -Command "& {(get-item .).basename}"
Web API’s is a web development architecture which decoupling the client GUI from the database and the server’s logic. This architecture enables to serve the same interface to multiple clients running on various platforms. Also, the same application can communicate with multiple interfaces.
REST stands for Representational state transfer and its a stateless protocol over HTTP that provides the interactions with the resources stored in the database which contains four basic CRUD actions - Create, Read, Update and Delete.
Each CRUD interaction can be defined by combinations of the following:
# Clone the repo
git clone https://github.com/arzzen/git-quick-stats
# Move inside
cd git-quick-stats
# There is a file called "git-quick-stats", we'll add its path to .gitconfig file..
Project Properties -> General:
$(ProjectDir)$(Platform)\$(Configuration)
$(ProjectDir)$(Platform)\Temp-$(Configuration)
Headers:
Open cmd as admin and run the following commands one by one
diskpart
list disk
take the number of the usb disk as a note, use it in the snippet below as an argument for select disk
command,