Skip to content

Instantly share code, notes, and snippets.

View sixhobbits's full-sized avatar

Gareth Dwyer sixhobbits

View GitHub Profile
title platforms people
How do I foo the bar baz?
sentry.django
John S.

The problem

@sixhobbits
sixhobbits / app.py
Last active October 19, 2020 14:09
scrapingbee404
from datetime import datetime
from bs4 import BeautifulSoup
import requests
SCRAPING_BEE_API_KEY = ''
def get_html(url):
response = requests.get(
url="https://app.scrapingbee.com/api/v1/",
params={"api_key": SCRAPING_BEE_API_KEY, "url": url, "wait": 35000}

Calm engineering

How to hire

  • finding candidates
  • selling candidates on the position
  • assessing candidates

Onboarding

  • before the first day
  • first day and introducing the team

There's a lot of content here - I've left specific comments using code formatting below as gists don't have comments. In general, you have a lot of breadth but sometimes it's a bit jarring to move so quickly from one topic to another without showing the reader how they link up a) to each other b) to the main article topic of machine learning at scale

So if you're going over the draft again, I would consider adding more detail and linking paragraphs to make it a smoother journey for the reader.

Introduction

from flask import request
<form method="POST" action="/">
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("home.html")
if __name__ == "__main__":
return render_template("home.html")
from flask import render_template