Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)WN
Wats0ns @programming.dev
Posts 1
Comments 7

Victory 🙌

134
Martin Fowler on Team Topologies
  • "Each team is full-stack and full-lifecycle: responsible for front-end, back-end, database, business analysis, feature prioritization, UX, testing, deployment, monitoring"

    "But they also shouldn't be too large, ideally each one is a Two Pizza Team"

    Either that's a team with some hugely diversified skills, or that's two car-sized pizzas

  • Benefits of using scrapy over requests/selenium
  • The huge feature of scrapy is it's pipelining system: you scrape a page, pass it to the filtering part, then to the deduplication part, then to the DB and so on

    Hugely useful when you're scraping and extraction data, I reckon if you're only extracting raw pages then it's less useful I guess