Skip to content

Instantly share code, notes, and snippets.

View zogorn's full-sized avatar
😤
Tired

Ahmed Zaid zogorn

😤
Tired
View GitHub Profile
@zogorn
zogorn / git_fetch_all_branches_from_remote_to_remote.sh
Last active May 26, 2021 09:48
clone all branches from a remote repo to another remote repo
##script
#!/bin/bash
# $1 -> folder name for the cloned local repo
# $2 -> cloned repo source
# $3 -> new remote repo
# Make Repo Directory
@zogorn
zogorn / frontend road map.md
Last active April 12, 2021 11:08
Basic road map for Front End developers

Basic road map for Front End Developers

This document based on highlighted courses I found it would help beginner developers, and not mean I study and go throw each single course and video. However it is not a must to go throw each one to pass an academic exam or interview, it's just a collection from internet searching.

collected by @zogorn


Free Starting Tutorials

@zogorn
zogorn / javascript road map.md
Last active June 4, 2021 09:19
Basic road map for JavaScript

Basic road map for JavaScript

This document based on highlighted courses I found it would help beginner developers, and not mean I study and go throw each single course and video. However it is not a must to go throw each one to pass an academic exam or interview, it's just a collection from internet searching.

collected by @zogorn


Introduction to javascript world

@zogorn
zogorn / .bashrc
Last active October 8, 2021 14:19
my zsh bash config
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@zogorn
zogorn / introrx.md
Created March 15, 2019 09:29 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing