I hereby claim:
- I am elizabethsiegle on github.
- I am lizziepika (https://keybase.io/lizziepika) on keybase.
- I have a public key whose fingerprint is C10E 28F7 D26D 6680 A213 FD3F 24C3 B775 C1B8 E16B
To claim this, I am signing this object:
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Elizabeth (Lizzie) Siegle", | |
"label": "Developer && Evangelist @ Twilio | writer | events, etc. newsletter 💌: lizziepika.substack.com", | |
"image": "https://substackcdn.com/image/fetch/w_400,h_264,c_fill,f_auto,q_auto:good,fl_progressive:steep,g_auto/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0f54124-a995-4670-922e-eaa0d776c944_510x680.jpeg", | |
"email": "lizzie.siegle@gmail.com", | |
"phone": "call (855) 302-1845", | |
"url": "https://www.lizziesiegle.xyz", | |
"summary": "Software dev💻 who loves❤️ devs and helps them be successful🏆. Led teams/projects for Twilio's dev conference, SIGNAL🎙️. \n\nAlso an AI🤖 enthusiast, international + keynote speaker🎙, event-organizer📆, community-builder👯♀️, 4th gen. Bay Arean 🌁, and proud Bryn Mawr CompSci alumna", |
{ | |
"description": "A New Flow", | |
"states": [ | |
{ | |
"name": "Trigger", | |
"type": "trigger", | |
"transitions": [ | |
{ | |
"next": "what_did_you_guess", | |
"event": "incomingMessage" |
{ | |
"description": "A New Flow", | |
"states": [ | |
{ | |
"name": "Trigger", | |
"type": "trigger", | |
"transitions": [ | |
{ | |
"next": "what_did_you_guess", | |
"event": "incomingMessage" |
{ | |
"actions": [ | |
{ | |
"collect": { | |
"name": "what_twilio_product_are_you", | |
"questions": [ | |
{ | |
"question": "1. What is your favorite color?\n A. red🔴\n B. black🖤\n C. lavender \n D. yellow", | |
"name": "color", | |
"validate": { |
func startRecording() { | |
if recognitionTask != nil { //created when request kicked off by the recognizer. used to track progress of a transcription or cancel it | |
recognitionTask?.cancel() | |
recognitionTask = nil | |
} | |
let audioSession = AVAudioSession.sharedInstance() | |
do { | |
try audioSession.setCategory(AVAudioSession.Category(rawValue: convertFromAVAudioSessionCategory(AVAudioSession.Category.record)), mode: .default) | |
try audioSession.setMode(AVAudioSession.Mode.measurement) | |
try audioSession.setActive(true, options: .notifyOthersOnDeactivation) |
I hereby claim:
To claim this, I am signing this object:
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
# bash/zsh completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# | |
# *) local and remote branch names | |
# *) local and remote tag names |