Skip to content

Instantly share code, notes, and snippets.

View sarahbohr's full-sized avatar

Sarah Bohr sarahbohr

  • Actively looking for employment
  • Denver, Colorado
View GitHub Profile
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master
@sarahbohr
sarahbohr / linebreak.md
Last active April 30, 2018 20:48
Line breaks in markdown
Hello\
World

Hello
World


from flask import Flask
from flask_restful import Api, Resource, reqparse
app = Flask(__name__)
api = Api(app)
users = [
{
"name": "Nicholas",
"age": 42,
@sarahbohr
sarahbohr / git-deploy-to-sftp-guide.md
Last active January 31, 2023 16:01 — forked from jasenmichael/git-deploy-to-sftp-guide.md
use git to deploy via sftp

use git to deploy via sftp

this method can be used to push your project to a service like GoDaddy, HostGator, or BlueHost that is running git.

  • create a remote repository on your server

    • ssh into the server

    • cd into the directory