Skip to content

Instantly share code, notes, and snippets.

View ColinDuquesnoy's full-sized avatar

Colin Duquesnoy ColinDuquesnoy

  • EVS Broadcast Equipment
  • Liège, Belgium
View GitHub Profile
@andre-hartmann
andre-hartmann / main.cpp
Last active August 1, 2024 07:10
QCommandLineParser with subcommands
#include <QCommandLineParser>
#include <QCoreApplication>
#include <QTextStream>
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
QCommandLineParser parser;
parser.setOptionsAfterPositionalArgumentsMode(QCommandLineParser::ParseAsOptions);
parser.addPositionalArgument("subcommand",
@CarlosDomingues
CarlosDomingues / python-poetry-cheatsheet.md
Last active May 5, 2025 10:57
Python Poetry Cheatsheet

Create a new project

poetry new <project-name>

Add a new lib

poetry add <library>

Remove a lib