A quick-reference guide to help you understand what GitHub Desktop is doing behind the scenes — and how to do the same with raw Git commands.
| Action in GitHub Desktop | Equivalent Git Command |
original: https://gitlab.com/saalen/ansifilter
my fork: https://gitlab.com/grymmjack/ansifilter
web page: http://andre-simon.de/doku/ansifilter/en/ansifilter.php
sudo apt-get build-dep qtbase5-dev
sudo apt install qtbase5-dev
| /* | |
| Guess the Number | |
| ---------------- | |
| From the Rust Programming Language Book | |
| with modifications by Rick Christy (grymmjack@gmail.com) | |
| */ | |
| use rand::Rng; | |
| use std::env; | |
| use std::cmp::Ordering; |
| '' | |
| ' Original example (by JP): | |
| ' https://qb64phoenix.com/qb64wiki/index.php/PLAY | |
| ' | |
| ' YouTube video walkthrough by grymmjack: https://youtu.be/8vCHnr1MAU4 | |
| ' | |
| ' grymmjack's notes: | |
| ' | |
| ' Changes to make: | |
| ' Humble and simple: |
| /* | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * For more information, please refer to <https://unlicense.org> | |
| */ | |
| //Regular text | |
| #define BLK "\e[0;30m" | |
| #define RED "\e[0;31m" | |
| #define GRN "\e[0;32m" |