This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup,SoupStrainer | |
import re | |
import Queue | |
import threading | |
import requests | |
import urlparse | |
import time | |
import copy | |
import signal | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang=en> | |
<head> | |
<title>284 And Me</title> | |
<style> | |
p { | |
max-width: 800px; | |
margin: auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// note the following should be called before before calling either RTCPeerConnection.createOffer() or createAnswer() | |
let tcvr = pc.getTransceivers()[0]; | |
let codecs = RTCRtpReceiver.getCapabilities('video').codecs; | |
let vp9_codecs = []; | |
// iterate over supported codecs and pull out the codecs we want | |
for(let i = 0; i < codecs.length; i++) | |
{ | |
if(codecs[i].mimeType == "video/VP9") | |
{ | |
vp9_codecs.push(codecs[i]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I have found success in the following daily/n-weekly standup strategy for an efficient standup that stays within time for large engineering teams: | |
- Create a google slide with the standup agenda for the day that is shared for remote standups (for in person standups, the contents of this slide can | |
be maintained on a whiteboard somewhere, or printed) | |
- The slide will serve as both a visual agenda / guide for the standup | |
- The slide will solicit discussion topics before standup begins, with the intention of discussing these topics at the end of standup. This way, only | |
those interested in the discussion may remain after standup to discuss. This promotes streamlined standups by avoiding discussions among ICs, keeping status reports brief. | |
- The slide will reflect your knowledge on what your individual contributors (ICs) are currently contributing to and keep the standup ordering consistent, by listing both projects and associated contributors (ensuring the two are accurately synced). Keep the slide updated with |