https://vittorioromeo.info/index/blog/cpp20_lambdas_compiletime_for.html
This was tested with Ubuntu and lxle.
- Download your DVD iso
- Verify your usb drive is empty and make sure the iso will fit
- Transfer the iso using dd (see below)
- Open Terminal and find out where your usb drive is with
diskutil list - Unmount your drive using
sudo diskutil unmountDisk /dev/disk1or whatever the path is to your drive
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.0 | |
| Item { | |
| id: root | |
| property alias text: label.text | |
| height: 25 | |
| width: 100 | |
| Rectangle { | |
| id: header |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.6 | |
| import QtQuick.Window 2.2 | |
| import org.krow 1.0 | |
| Window { | |
| visible: true | |
| width: 640 | |
| height: 480 | |
| title: qsTr("Hello World") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.0 | |
| Item { | |
| id: delegateRoot | |
| property alias numberLabel: numberLabel.text | |
| property alias sideLabel: sideLabel.text | |
| property alias tStatusLabel: tStatusLabel.text | |
| property alias dStatusLabel: dStatusLabel.text | |
| property alias numberColumnWidth: numberColumn.width |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <QGuiApplication> | |
| #include <QQmlApplicationEngine> | |
| #include "inventorymodel.h" | |
| int main(int argc, char *argv[]) | |
| { | |
| QGuiApplication app(argc, argv); | |
| // Register Types |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """A simple python script template. | |
| """ | |
| from __future__ import print_function | |
| import os | |
| import sys | |
| import argparse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "composite_functor.h" | |
| #include <string> | |
| #include <cassert> | |
| //============================================================================== | |
| int square_int( int a ) { | |
| return ( a * a ); | |
| } |
NewerOlder