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
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active July 28, 2024 21:16
Remove node_modules from git repo
#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 <branch-name>
* what it's like to not be technical in the industry
* what you do in tech that people forget is needed
* the most interesting thing you've worked on recently
* what your day-to-day is like
* must-have gifs for every techie
* horrible code from the past that shows I'm much better now
* the best music for hacking
* mistakes you've made that make you groan
* how you've made it at well-known companies
* self-care in the tech bubble
from flask import Flask
from flask_restful import Api, Resource, reqparse
app = Flask(__name__)
api = Api(app)
users = [
{
"name": "Nicholas",
"age": 42,
@sarahbohr
sarahbohr / linebreak.md
Last active April 30, 2018 20:48
Line breaks in markdown
Hello\
World

Hello
World