Skip to content

Instantly share code, notes, and snippets.

View mujz's full-sized avatar

Mujtaba Al-Tameemi mujz

View GitHub Profile

Bootcamp Capstone project ideas.

Here are some ideas to get inspired by. The idea here is not to copy the same ideas, but get inspired by them and come up with something on your own. Good luck finding your idea!

Tamarafi

Tamarafi is a Tamagotchi inspired pet whose fitness reflects the fitness of the user.

On My Line

@mujz
mujz / code-sync.sh
Created February 1, 2017 09:00
Using rsync, inotify, and fswatch to sync code between 2 environments
### How it works
## rsync
# A tool that syncs your files across environments over ssh.
# When you run the command the second time, it only copies the changed files.
## inotify/fswatch
# inotify-tools is a linux file watcher and fswatch is for Mac OS. It's as simple as that.
## Put them together and you get
# A tool that watches your files for changes on one machine and updates them on the other immediately.