A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| let styles: [UIFont.TextStyle] = [ | |
| // iOS 17 | |
| .extraLargeTitle, .extraLargeTitle2, | |
| // iOS 11 | |
| .largeTitle, | |
| // iOS 9 | |
| .title1, .title2, .title3, .callout, | |
| // iOS 7 | |
| .headline, .subheadline, .body, .footnote, .caption1, .caption2, | |
| ] |
| New startups use Python – MonkeyLearn, Roomstorm | |
| Established startups use Python – Hipmunk, Buffer, Mattermark | |
| Unicorns use Python – Instagram, Pinterest, Spotify, Uber | |
| Food startups use Python – Chewse, Yelp | |
| Dev tools use Python – Sentry, Keen IO | |
| Tech titans use Python – Dropbox, PayPal, Google | |
| Creatives use Python – YouTube, edX, Walt Disney Animation Studios | |
| Defense contractors use Python – Northrop Grumman | |
| Corporate giants use Python – Walmart | |
| Media news sites use Python – Pitchfork, BuzzFeed |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "net/url" | |
| "os/exec" | |
| "strconv" |