Skip to content

Instantly share code, notes, and snippets.

View phloreenm's full-sized avatar
🎯
Focusing

Florin M. phloreenm

🎯
Focusing
View GitHub Profile
@phloreenm
phloreenm / git-branch-backup.sh
Created November 16, 2022 12:09 — forked from msadouni/git-branch-backup.sh
Backup a Git branch
#!/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

Aligning images

left alignment

This is the code you need to align images to the left:

@phloreenm
phloreenm / gist:a315321552068c2f33400d0510281aa9
Created June 8, 2022 22:20 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :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:
@phloreenm
phloreenm / media-query.css
Created June 1, 2022 10:14 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##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. ";