Skip to content

Instantly share code, notes, and snippets.

View AbdlrahmanSaberAbdo's full-sized avatar
🏠
Working from home

AbdlrahmanSaber AbdlrahmanSaberAbdo

🏠
Working from home
View GitHub Profile
@AbdlrahmanSaberAbdo
AbdlrahmanSaberAbdo / .progress.
Created January 19, 2023 13:47 — forked from micalevisk/.progress.
📋 Reading List (updated at: 05/09/2022 22:13:43 [America/Manaus])
Articles █████████████▋░░░░░░░ 65.1%
Videos ██████████████████▌░░ 88.3%
Books ████████▋░░░░░░░░░░░░ 41.4%
Learn React ████████████░░░░░░░░░ 57.1%
Learn TypeScript █████████████████████ 100.0%
GitHub ████████████████▊░░░░ 80.0%
# base image:alpine is used for its small size
FROM alpine
# commands to run on image
CMD [ "echo", "Hello Abdlrahman, I'm your custom image" ]
@AbdlrahmanSaberAbdo
AbdlrahmanSaberAbdo / useful-git-aliases
Last active May 30, 2022 07:21
Some common and useful aliases in git that make you more efficient
[alias]
co = checkout
cob = checkout -b
coo = !git fetch && git checkout
br = branch
brd = branch -d
st = status
aa = add -A .
unstage = reset --soft HEAD^
cm = commit -m