This is the code you need to align images to the left:
| #!/bin/sh | |
| # Usage: git-branch-backup.sh <remote> | |
| # Originally from jlecour but I can't find his version anymore | |
| if [ -z "$1" ] | |
| then | |
| remote='origin' | |
| else | |
| remote=$1 | |
| fi |
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: |
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
| // Scrolling display for 1602 LCD by Arduino | |
| // by Varad Kulkarni <http://www.microcontrollershub.com> | |
| // Created on 20 May 2018 | |
| #include <LiquidCrystal.h> | |
| LiquidCrystal lcd(12, 11, 5, 4, 3, 2); | |
| // Change following variables as per your need | |
| char * LargeText = " Understanding code for scrolling text on 16*2 LCD Display. "; |