Skip to content

Instantly share code, notes, and snippets.

View FaysalM's full-sized avatar
🛠️
Building

electo FaysalM

🛠️
Building
View GitHub Profile
@FaysalM
FaysalM / 3box
Last active September 21, 2020 17:49
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreihdzpb4qwtvm76dqnydblk74ooyelg6aeogbhywhxmpmvelvixjbq ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
@FaysalM
FaysalM / codevember-6-vue-bitcoin-ticker-2-0.markdown
Created September 20, 2020 20:31
Codevember 6 :: Vue Bitcoin Ticker 2.0

Keybase proof

I hereby claim:

  • I am faysalm on github.
  • I am faysalm (https://keybase.io/faysalm) on keybase.
  • I have a public key ASDcWIxj5EFv9L7jrxQ7MTp4MegtYfsKcTiVBXSZbNGVkgo

To claim this, I am signing this object:

@FaysalM
FaysalM / rsync-retry.sh
Last active August 29, 2015 14:26 — forked from iangreenleaf/rsync-retry.sh
rsync with retries
#!/bin/bash
### ABOUT
### Runs rsync, retrying on errors up to a maximum number of tries.
### Simply edit the rsync line in the script to whatever parameters you need.
# Trap interrupts and exit instead of continuing the loop
trap "echo Exited!; exit;" SIGINT SIGTERM
MAX_RETRIES=50