Skip to content

Instantly share code, notes, and snippets.

View mrm7moud's full-sized avatar
🎯
Focusing

Mahmoud AlMadhoun mrm7moud

🎯
Focusing
View GitHub Profile
  1. Piano Covers of Pop Songs: https://open.spotify.com/user/henryecker/playlist/4SBOdi7IMfCrYKZqCqtuXA?si=FL1axIJTTTqYWXYqS6QICw

  2. Extreme focus coding music: Primarily EDM with little to no vocals https://open.spotify.com/user/nebosite/playlist/0hy2h4wf2A3JWvMzK48REE?si=KlMRgPm8QfiC6N9Z-A6jAQ

  3. High Energy programming mix: Most songs have vocals but good for brainstorming portions. https://open.spotify.com/user/jhardinee/playlist/022CloUnijfD00ziUEXJ66?si=WCKBLFEbQmmym-0DNgFLRA

  4. Dubstep study: Dubstep with no vocals

React && Firebase Workshop

Contact Information

Prequisite Setup

  • A recent version of Node.js
  • npm install -g create-react-app
@mrm7moud
mrm7moud / Install-zsh-macOS.md
Last active September 23, 2017 10:16
Install zsh and oh-my-zsh on macOS

Install zsh and oh-my-zsh on macOS Sierra 10.12

Zsh is a UNIX command interpreter (shell) which includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing and more. We’ll install zsh for all the features offered by oh-my-zsh: an open source, community-driven framework for managing your zsh configuration.

Step 1: install zsh

Install zsh and zsh completions using homebrew

brew install zsh zsh-completions

Step 2: install oh-my-zsh

@mrm7moud
mrm7moud / intro.md
Created September 23, 2017 07:51 — forked from derhuerst/intro.md
Installing the Z Shell (zsh) on Linux, Mac OS X and Windows

Installing zsh – the easy way

The Z shell (zsh) is a Unix shell [...]. Zsh can be thought of as an extended Bourne shell with a large number of improvements, including some features of bash, ksh, and tcsh.

Z shell – Wikipedia

Read more about ZSH at An Introduction to the Z Shell.

Choose one of the following options.

@mrm7moud
mrm7moud / new-terminal-ubuntu.md
Last active September 19, 2017 10:15
How to install New Linux Terminal on Ubuntu?

How to install New Linux Terminal on Ubuntu 15.04,16.04,17.04

Zsh Linux Terminal

Basic Installation of ZSH on Windows

Once you have installed the Windows subsystem for linux, you can proceed and install ZSH as usual running the following command in your terminal.

sudo apt-get install zsh

Fish shell also works if you want to use another shell to specify the name of that shell instead of ZSH . To install it, just run the following command:

@mrm7moud
mrm7moud / install-setup-postgresql.md
Last active September 17, 2017 21:46
How to set up a PostgreSQL database on your Arch Linux

How to set up a PostgreSQL database on your Arch Linux VPS

Install PostgreSQL using pacman:

sudo pacman -S postgresql

Check it's been installed:

sudo pacman -Si postgresql

@mrm7moud
mrm7moud / install-mongodb-mac-os-x.md
Created September 8, 2017 09:28 — forked from Sydney-o9/install-mongodb-mac-os-x.md
Install MongoDB on Mac OS X without brew

1. Download latest source

# Get latest from MongoDB website
$ curl -O https://fastdl.mongodb.org/osx/mongodb-osx-x86_64-3.4.6.tgz
$ tar -zxvf mongodb-osx-x86_64-3.4.6.tgz
$ mkdir -p mongodb
$ cp -R -n mongodb-osx-x86_64-3.4.6/ mongodb
$ sudo mv mongodb /usr/local