Skip to content

Instantly share code, notes, and snippets.

View bagrawal's full-sized avatar

Bhuvnesh Agrawal bagrawal

View GitHub Profile
@zacwest
zacwest / ios-font-sizes.swift
Last active May 6, 2024 13:04
iOS default font sizes - also available on https://www.iosfontsizes.com
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,
]
@kashifrazzaqui
kashifrazzaqui / pythoncompanies
Created May 11, 2015 16:21
Who uses Python?
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"
@sloria
sloria / bobp-python.md
Last active May 9, 2024 01:42
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens