Skip to content

Instantly share code, notes, and snippets.

@amlel-el-mahrouss
amlel-el-mahrouss / EULA.md
Created August 11, 2026 04:59 — forked from heiswayi/EULA.md
Generic desktop app EULA sample

END-USER LICENSE AGREEMENT

This End-User License Agreement (EULA) is a legal agreement between you (either as an individual or on behalf of an entity) and [[AUTHOR]] regarding your use of [[APPNAME]]'s desktop applications, and associated documentation (the "Software"). IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS EULA, DO NOT INSTALL, USE OR COPY THE SOFTWARE.

Summary

  • You must agree to all of the terms of this EULA to use this Software.
  • If so, you may use the Software for free and for any lawful purpose.
  • This Software automatically communicates with its server for three reasons: (1) to receive and install updates; (2) to send error reports; and (3) to send anonymized usage information. You can view sample data to see what information is sent, and you may opt out of sending the anonymized usage data.
  • This Software is provided "as-is" with no warranties, and you agree that [[AUTHOR]] is not liable for anything you do with it.
#!/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,
};