Skip to content

Instantly share code, notes, and snippets.

#!/bin/sh
mkdir build
cd build
cmake ..
make

Install

git clone https://github.com/accellera-official/systemc.git
cd systemc
mkdir build
cd build
make -j$(nproc)
make install
export SYSTEMC_HOME=/path/to/systemc/install
@amlel-el-mahrouss
amlel-el-mahrouss / debug_date_qt.cpp
Created August 17, 2025 15:21
A simple helper for date parsing using the Qt framework.
#include <QCoreApplication>
#include <QDate>
#include <QDebug>
#include <iostream>
enum class debug_date : int32_t
{
invalid,
yyyy_mm_dd,
};