Drawing from FT.com's analysis (https://www.ft.com/content/a7ce31e0-06f0-4986-9eb9-f4322a40ffc3)
$75.71bn/$145.1 gives a total share count of 521,778,084
Percentage | In millions | |
---|---|---|
Logan Roy | 26% | $19,641 |
Kendall Roy | 2.5% | $1,951 |
How to Clean Up Google Contact Numbers | |
If your Gmail contact phone numbers are unorganized, this Excel formula can help you remove format the mobile phone numbers. | |
Note: I added a 1 for US numbers. I like my numbers formatted this way. | |
1. Export the numbers you want to clean to CSV (Use Google CSV) | |
2. Open in Excel. The U2 column was Mobile Phone column for the file I downloaded. | |
3. Place this formula starting in the V2 column (this will replace the Pager column, which I did not need) and copy downwards to do the same formula replacement. | |
=IF((LEFT(U2,0,1)="1"),SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(U2," ",""),".",""),")",""),"(",""),"-",""),CONCATENATE("1",SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(U2," ",""),".",""),")",""),"(",""),"-","")) | |
4. Copy from V2 (downwards) and do a Paste Special starting on U2 with "Value". This will replace your previous values for mobile phone with the clean ones. | |
5. Save. |
// Filter function | |
function filterEmail(element, index,array){ | |
return validateEmail(element); | |
} | |
// Clean array (empty / non-valid elements are removed) | |
function validEmails(emails){ | |
var valid_emails = emails.filter(filterEmail); | |
return valid_emails; | |
} |
# From: https://gist.github.com/rootulp/8c57bffd539bf238f4c4812dcabc6677 | |
# Before running this script execut the following command: <pip install requests> | |
import requests, json, datetime, operator, argparse, sys, os | |
# CONSTANTS | |
URL_TEMPLATE = 'https://api.foursquare.com/v2/users/self/checkins?limit=250&oauth_token={}&v=20131026&offset={}' | |
DEFAULT_DAYS = 30 | |
JSON_FILE = 'foursquare.json' |
# integrations.py | |
################################################################################################### | |
# usage: integrations.py [-h] [-s [n]] [-f] [-c] [-e] [-w] | |
# A legible timezone-friendly parser and foursquare / existio integrator for quantifying myself | |
# optional arguments: | |
# -h, --help show this help message and exit | |
# -s [n], --show [n] Shows formatted <n> days (default: 30 days) | |
# -f, --foursquare Grab checkins from Foursquare API | |
# -c, --calendar Shows events from Outlook Calendar |
# Instructions for setting up a virtualenv venv | |
######### | |
# SETUP # | |
######### | |
## Make sure you have python3 | |
python3 --version |
# Typically I write this to an install.sh and let it run | |
# Accept XCode License / install dev tools | |
sudo xcode-select --install | |
sudo xcrun cc | |
sudo xcodebuild -license accept | |
# Install package manager | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
# ~/zshrc | |
# 1. Run Install.sh (https://gist.github.com/fxchen/9c5c950b6c9117930fa2aff804e7856b) | |
# 2. Modify the bottom environment variables. Add a link to this zshrc from the profile | |
# 3. Set iTerm word jump https://coderwall.com/p/h6yfda/use-and-to-jump-forwards-backwards-words-in-iterm-2-on-os-x 5 | |
# 4. Configure oh-my-zsh .zshrc: plugins=(git sublime osx git-flow git-extras npm node theme web-search battery) | |
# Inspiration: http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/ | |
#################################################################### | |
# Shell aliases |
[user] | |
name = Frank Chen | |
email = <REDACTED> | |
[color] | |
ui = true | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
[github] |
Drawing from FT.com's analysis (https://www.ft.com/content/a7ce31e0-06f0-4986-9eb9-f4322a40ffc3)
$75.71bn/$145.1 gives a total share count of 521,778,084
Percentage | In millions | |
---|---|---|
Logan Roy | 26% | $19,641 |
Kendall Roy | 2.5% | $1,951 |