Skip to content

Instantly share code, notes, and snippets.

View MaxClerkwell's full-sized avatar
🦖

Stephanos MaxClerkwell

🦖
View GitHub Profile
@MaxClerkwell
MaxClerkwell / CMakeLists.txt
Last active May 14, 2023 14:36
This Gist helps to get the first Copperspice Tutorial from the CS-Journal running under Ubuntu 20.04. Check out the CS-Journal at https://journal.copperspice.com
cmake_minimum_required(VERSION 3.16)
project(example_1)
include(CheckCXXCompilerFlag)
include(CheckCXXSourceCompiles)
include(CheckIncludeFile)
include(CheckIncludeFiles)
find_package(CopperSpice REQUIRED)
/home/stephan/yocto/poky-honister/bitbake/lib/bb/cooker.py:16: DeprecationWarning: module 'sre_constants' is deprecated
import sre_constants
28828 13:19:28.141493 --- Starting bitbake server pid 28828 at 2025-03-17 13:19:28.141481 ---
28828 13:19:28.143602 Started bitbake server pid 28828
28828 13:19:28.143679 Entering server connection loop
28828 13:19:28.143803 Accepting [<socket.socket fd=6, family=1, type=1, proto=0, laddr=bitbake.sock>] ([])
28828 13:19:28.144269 Processing Client
28828 13:19:28.144291 Connecting Client
28828 13:19:28.144412 Running command ['setFeatures', [2, 1]]
28828 13:19:28.144448 Command Completed
/home/stephan/yocto/poky-honister/bitbake/lib/bb/cooker.py:16: DeprecationWarning: module 'sre_constants' is deprecated
import sre_constants
28828 13:19:28.141493 --- Starting bitbake server pid 28828 at 2025-03-17 13:19:28.141481 ---
28828 13:19:28.143602 Started bitbake server pid 28828
28828 13:19:28.143679 Entering server connection loop
28828 13:19:28.143803 Accepting [<socket.socket fd=6, family=1, type=1, proto=0, laddr=bitbake.sock>] ([])
28828 13:19:28.144269 Processing Client
28828 13:19:28.144291 Connecting Client
28828 13:19:28.144412 Running command ['setFeatures', [2, 1]]
28828 13:19:28.144448 Command Completed
@MaxClerkwell
MaxClerkwell / OmnAIPlot.py
Last active March 20, 2025 19:49
This script can be used to display captured data from an AUTO-INTERN OmnAIScope (https://www.amazon.de/OmnAIScope-AUTO-INTERN-Aufl%C3%B6sung-Scriptbar/dp/B0DY1FJDPC/)
import pandas as pd
import matplotlib.pyplot as plt
import argparse
def load_data(input_path):
df = pd.read_csv(args.input_file, header=0, skipinitialspace=True, encoding="utf-8")
df.columns = df.columns.str.strip()
return df
def show_plot(dataframe):