inspired by https://www.intercom.com/
tried to add a floating chat button for support
A Pen by neil kalman on CodePen.
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
class Demo extends React.Component { | |
state = { | |
data: [], | |
refreshing: true, | |
last_id: 0, | |
} | |
onEndReachedCalledDuringMomentum = true | |
componentDidMount() { | |
this._refreshData(); | |
} |
#pbcopy < ~/.ssh/id_rsa.pub | |
#or | |
cat ~/.ssh/id_rsa.pub | pbcopy |
from pymongo import Connection | |
from pymongo.collection import Collection | |
from pymongo.errors import AutoReconnect | |
from django.conf import settings | |
from types import FunctionType | |
import functools | |
import time |
#!/usr/bin/env python | |
import subprocess | |
import sys | |
import re | |
import os | |
def get_pids(port): | |
command = "sudo lsof -i :%s | awk '{print $2}'" % port | |
pids = subprocess.check_output(command, shell=True) |
# Create build folder | |
cd | |
mkdir build | |
cd build | |
# Download repository from Bitbucket | |
git clone {your git repo} | |
cd {the name of your git repo}/ | |
# Install dependencies |