Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # Modify your .bashrc with the following | |
| # from https://redandblack.io/blog/2020/bash-prompt-with-updating-time/ | |
| DIRECTORY="\w" | |
| DOUBLE_SPACE=" " | |
| NEWLINE="\n" | |
| NO_COLOUR="\e[00m" | |
| PRINTING_OFF="\[" | |
| PRINTING_ON="\]" | |
| PROMPT_COLOUR="\e[0;33m" |
| echo "pulling LPPic !" | |
| git clone https://[email protected]/rhodecode/GIT_REPOSITORIES/LPP/LPPic2D/LPPic | |
| cd LPPic | |
| git checkout FIX_Diel | |
| mkdir -p build | |
| cd build | |
| module load mpi/openmpi-x86_64 | |
| export libinfo=SHARED && cmake .. | |
| make -j |
There is what's need to be done in order to launch the docker container I need for my these.
From the docker docs.
| find . -type f -name "*.h5" -cmin +10 -exec rm {} \; |
| #!/usr/bin/env python3 | |
| """This module helps to inspect an executable. | |
| In particulare: | |
| 1. If it has been compiled with debug option `_g` | |
| Author: Antoine Tavant, email: antoinetavant <at> hotmail . fr | |
| Summary: | |
| We use and grep the `gdb` call for the presence of the debugging symbols. | |
| Retrun True if the flag `-g` has been used |
| sudo vim /usr/share/applications/org.gnome.Evolution.desktop -c %s/Exec=/Exec=env GTK_THEME=Adwaita:light /g |
| #!/bin/bash | |
| # Script for installing Fish Shell on systems without root access. | |
| # Fish Shell will be installed in $HOME/local/bin. | |
| # It's assumed that wget and a C/C++ compiler are installed. | |
| # exit on error | |
| set -e | |
| FHISH_SHELL_VERSION=2.7.0 |