Leetcode Number Of Islands C++ Depth First Search Example
Posted on Sun 03 October 2021 in tech • Tagged with programming, Leetcode, C++, DFS
Number of Islands Recursive Graph Traversal
Posted on Sun 03 October 2021 in tech • Tagged with programming, Leetcode, C++, DFS
Number of Islands Recursive Graph Traversal
Posted on Thu 30 September 2021 in tech • Tagged with programming, Protobuf, C++, CMake, Linux, Docker
Protocol Buffers complete working example with CMake and Docker for C++
Posted on Thu 23 September 2021 in tech • Tagged with programming, gRPC, C++, CMake, Linux, Docker
Sometimes and example is worth a thousand words. In this installment gRPC C++ with CMake FetchContent and a Dockerfile.
Posted on Wed 08 September 2021 in tech • Tagged with unifi, networking, unix, linux, aws, debian, ubuntu
For years, I have been hosting Unifi controller in AWS. AWS is both more convenient and reliable than hosting a local server. I am also convinced that hosting a minimalist server is about the same cost on AWS as running locally. In the past, I have purchased a one year …
Posted on Fri 18 June 2021 in tech • Tagged with programming, chunked, iterator, c++
Although c++ is already imbued with the kitchen sink, it seems to lack a chunked character iterator for input streams.
Here is a little repository to implement that: Block Iterator
An example looks like any istream iterator idiom:
constexpr auto N = 3;
const auto example = "AAABBBCCC";
std::istringstream ss(example …
Posted on Mon 17 May 2021 in tech • Tagged with programming, graphics, c++
A little c++ shader toy that I wrote for rendering a light model. Twenty Spheres This program is based on a classic computer graphics problem.
Yes...15 spheres are shown here!