-
Go to: https://www.privateinternetaccess.com/account/client-control-panel?locale=en#downloads
-
Scroll down to SOCKS and copy the credentials.
-
Adjust the command below:
set(SFML_TARGETS sfml-graphics sfml-window sfml-system sfml-audio sfml-network) | |
cmake_minimum_required(VERSION 3.15) | |
project(MyNewGame CXX) | |
set(CMAKE_CXX_STANDARD 17) | |
set(CMAKE_CXX_STANDARD_REQUIRED True) | |
set(GIT_EXECUTABLE "C:/Program Files/Git/bin/git.exe") | |
include(FetchContent) |
Go to: https://www.privateinternetaccess.com/account/client-control-panel?locale=en#downloads
Scroll down to SOCKS and copy the credentials.
Adjust the command below:
#include <fstream> | |
#include <iostream> | |
#include <vector> | |
#include <iomanip> | |
#include <sstream> | |
#include <string> | |
class Frage { | |
public: | |
std::string _frage; |
#include <iostream> | |
#include <vector> | |
#include <memory> | |
class Motor { | |
private: | |
int leistungPs; | |
std::string typ; | |
public: | |
Motor(int ps, const std::string& t) : leistungPs(ps), typ(t) {}; |
#include <fstream> | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <sstream> | |
long long printCitiesFromCountry(const std::string& filename, const std::string& country) { | |
std::ifstream file(filename); | |
if (!file) { | |
std::cerr << "File opening error\n"; |
#include <iostream> | |
#include <string> | |
class Produkt { | |
protected: | |
int _id; | |
std::string _beschreibung; | |
double _preis; | |
public: | |
Produkt(int id, std::string beschr, double preis) : _id(id), _beschreibung(beschr), _preis(preis) {}; |
#include <iostream> | |
#include <map> | |
#include <algorithm> | |
#include <sstream> | |
void analyzeNumbers() { | |
std::map<int, int> map{}; | |
std::string input{}; | |
try { |
#include <iostream> | |
#include <map> | |
#include <algorithm> | |
#include <vector> | |
#include <sstream> | |
void wordcount(const std::string& text) { | |
std::stringstream ss(text); | |
std::map<std::string, unsigned> map; |
#include <iostream> | |
#include <unistd.h> | |
#include <arpa/inet.h> | |
#define MAX_BUFFER_SIZE 1024 | |
#define PORT 8081 | |
int main() { | |
std::cerr << "Hello!\n"; |
uv run uvicorn main:app --log-level critical --workers 8 --http httptools --no-access-log --no-use-colors --proxy-headers
..\..\Downloads\hey.exe -n 1000 -z 5s http://127.0.0.1:8000
is quite theoretical and I used a very simple Hello world!
script, see below.