https://github.geo.apple.com/jaybuff/swift-build-centos https://github.geo.apple.com/ebrown3/swift-rpm
# if the iCloud password option is disabled, you'll not see your iCloud login with this result | |
dscl . read /Users/your_username | grep AuthenticationAuthority | |
# use this command to add your icloud password as an auth authority again | |
sudo dscl . append /Users/your_username AuthenticationAuthority ";AppleID;[email protected]" | |
# confirm the previous command | |
dscl . read /Users/your_username | grep AuthenticationAuthority |
Event: Unconscious Bias for Founders: Practical Tips on Hiring & Leading An Inclusive Team
This interactive workshop will explore the research behind unconscious bias and evidence-based strategies founders can take to make better, more objective decisions in both the recruiting & hiring process and in ongoing team dynamics and culture. Participants will leave with specific plans on how to apply these strategies within their own organization.
>Joelle Emerson Joelle is founder & CEO of ParadigmIQ – a boutique consultancy that helps companies like Pinterest, Airbnb, Slack, Asana and others build high functioning diverse and inclusive teams. She has written extensively about diversity, inclusion, and unconscious bias, and her work has been featured in The Wall Street Journal, The New Yorker, Fortune and more. Prior to Paradigm Joelle was a women’s rights attorney and she holds a degree from Stanford Law. Joelle’s work comes very highly recommended from numer
Verifying my Blockstack ID is secured with the address 1Bv8Wq5jPv8RtWEGH7wEwGZ6fucsCzyBvA https://explorer.blockstack.org/address/1Bv8Wq5jPv8RtWEGH7wEwGZ6fucsCzyBvA |
FROM ubuntu:bionic-20190515 | |
# rustup: requires curl or wget | |
# wrangler: cargo install requires gcc, pkg-config and libssl-dev | |
# wrangler generate: requires git | |
RUN apt update && \ | |
apt install -qy curl emacs gcc git libssl-dev pkg-config wget && \ | |
apt -y full-upgrade | |
# wrangler build: requires npm nodejs |
import os | |
import pathlib | |
import plistlib as pl | |
import pprint | |
f = 'com.apple.finder.plist' | |
with open(os.path.expanduser(pathlib.Path('~/Library/Preferences/') / f), 'rb') as fp: | |
data = pl.load(fp, fmt=pl.FMT_BINARY) | |
pprint.pprint(data) |