Testing code snippets

gfgfsk,xz,mcnz #include <iostream>#include <fstream>#include <sstream>#include <vector>#include <string>#include <cctype>// Function to check if a character is a delimiter (non-alphanumeric)bool isDelimiter(char c) { return !std::isalnum(c);}// Function to split a line into words…

0 Comments

Kafka Basics

Kafka producer defaults Since kafka 3.0, producers are "safe" by default. i.e. acks = all (acks = -1) and enable.idempotence = true If you are on Kafka version 2.8 or…

0 Comments

how does this look?

#include <iostream> #include <fstream> #include <sstream> #include <vector> #include <string> #include <cctype> // Function to check if a character is a delimiter (non-alphanumeric) bool isDelimiter(char c) { return !std::isalnum(c); }…

0 Comments