An introductory tutorial to the Python OSMnx package.
Part one of DnD5e Monsters analysis with Pandas.
Part four of data analysis with Python Pandas: file read and writes.
Part three of data analysis with Python Pandas: the data frame.
Part two of data analysis with Python Pandas: the series data structure.
Part one of an introduction to data analysis with Python Pandas.
Tutorial on the Cypher MERGE statements with Rust examples.
Tutorial on the Cypher MATCH and WHERE statements with Rust examples.
Tutorial on the Cypher CREATE and RETURN statements with Rust examples.
A straightforward procedure for incorporating a Meta-Llama3.1 transformer hosted at Hugging Face within a Google Colab notebook.
A simple Ollama C++ client interacting with Llama3.1 to list Catholic saints.
Vector DB retrieval using Facebook AI Similarity Search (FAISS) with OpenAI embeddings
Comparing OpenAI text and chat completion models via python-langchain.
Python code for OpenAI chat showcasing the few shot prompting technique
Lab Notes for Chapter 02 of TinyML Cookbook 2E
The customary ‘Hello, World’ program.
A short recipe for setting up a command line CUDA environment in Windows.
A simple program to showcase creative coding with openFrameworks.
How to quickly get started with openFrameworks in windows.
‘std::shared_ptr is a smart pointer that retains shared ownership of an object through a pointer. Several shared_ptr objects may own the same object.’ [cppreference.com]
‘A unique pointer is a smart pointer that owns and manages another object through a pointer and disposes of that object when the unique_ptr goes out of scope.’ [cppreference.com]
‘A namespace is a declarative region that provides a scope to the identifiers (the names of types, functions, variables, etc) inside it.’ [learn.microsoft.com]
‘Functions can be instructed to compiler to make them inline so that compiler can replace those function definition wherever those are being called.’ [cpulusplus.com]
‘With function overloading, multiple functions can have the same name with different parameters.’ [w3schools.com]
‘The auto keyword directs the compiler to use the initialization expression of a declared variable, or lambda expression parameter, to deduce its type.’ [learn.microsoft.com]
‘Pointers are a very powerful feature of the language that has many uses in lower level programming.’ [cplusplus.com]
‘The range based for loop is added in C++ 11 standard and is a more compact form of its traditional equivalent.’ [tutorialspoint.com]
‘C++ references allow you to create a second name for the a variable that you can use to read or modify the original data stored in that variable.’ [cprogramming.com]