Commands to get commit statistics for a Git repository from the command line -
using git log
, git shortlog
and friends.
#! /usr/bin/env python3 | |
""" | |
List all Firefox tabs with title and URL | |
Supported input: json or jsonlz4 recovery files | |
Default output: title (URL) | |
Output format can be specified as argument | |
""" |
-
An active OpenShift CLI (
oc
) session by a cluster administrator user. See Getting started with the OpenShift CLI.TipEnsure that your OpenShift CLI ( oc
) version is up to date and matches your {product-title} version.-
Install the Tempo Operator:
-
Note for newcomers: | |
In the shortcuts below, "C" stands for CTRL and "A" stands for "ALT". This is a convention | |
used in the Midnight Commander documentation and was kept here. | |
You can also use "ESC" instead of "ALT", which is useful on Macbooks. | |
Main View | |
--------------------------------------------------------------- | |
- File/directory operations |
EMOJI CHEAT SHEET
Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โ Got flash enabled? Click the emoji code and it will be copied to your clipboard.
People
๐
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
#!/bin/sh | |
case "$1" in | |
1) | |
echo " | |
\033[0;30mโโ \033[0;31mโโ \033[0;32mโโ \033[0;33mโโ \033[0;34mโโ \033[0;35mโโ \033[0;36mโโ \033[0;37mโโ | |
\033[0;30mโโ \033[0;31mโโ \033[0;32mโโ \033[0;33mโโ \033[0;34mโโ \033[0;35mโโ \033[0;36mโโ \033[0;37mโโ | |
\033[1;30mโโ \033[1;31mโโ \033[1;32mโโ \033[1;33mโโ \033[1;34mโโ \033[1;35mโโ \033[1;36mโโ \033[1;37mโโ | |
\033[1;30mโโ \033[1;31mโโ \033[1;32mโโ \033[1;33mโโ \033[1;34mโโ \033[1;35mโโ \033[1;36mโโ \033[1;37mโโ | |
";; |
#!/bin/bash | |
colors=($(xrdb -query | sed -n 's/.*color\([0-9]\)/\1/p' | sort -nu | cut -f2)) | |
echo -e "\e[1;37m | |
Black Red Green Yellow Blue Magenta Cyan White | |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ\e[0m" | |
for i in {0..7}; do echo -en "\e[$((30+$i))m ${colors[i]} \e[0m"; done | |
echo | |
for i in {8..15}; do echo -en "\e[1;$((22+$i))m ${colors[i]} \e[0m"; done |
! xterm color scheme โ Make all 16 beautiful. | |
! | |
! Suited for black background, but includes disabled alternative light scheme. | |
! | |
! Open this file with gvim to enable <Leader><F2> color mode. | |
! | |
! Use `xfontsel`, `xlsfonts`, and `fc-list` to find other fonts. | |
! | |
! On Ubuntu I have to name this file โ~/.Xdefaults-$(hostname)โ | |
! |