Skip to content

Instantly share code, notes, and snippets.

@DanielKoohmarey
DanielKoohmarey / efficient_standup.txt
Last active December 3, 2022 04:37
How to run an efficient developer standup
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
@DanielKoohmarey
DanielKoohmarey / vp9_webrtc_codec_example.js
Last active January 22, 2022 05:07
Force VP9 as WebRTC video codec
// 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]);
@DanielKoohmarey
DanielKoohmarey / phenotyping.html
Last active May 31, 2021 17:07
Single page offline web app for DNA phenotyping using multinomial logistic models
<!DOCTYPE html>
<html lang=en>
<head>
<title>284 And Me</title>
<style>
p {
max-width: 800px;
margin: auto;
}
@DanielKoohmarey
DanielKoohmarey / check_link.py
Last active August 1, 2021 20:51 — forked from hackerdem/check_link.py
A simple python script to check broken links of a wesite