I hereby claim:
- I am icatalina on github.
- I am icatalina (https://keybase.io/icatalina) on keybase.
- I have a public key ASDqP_DyTU8M5RwmEjofc7RpimuV5um6pNvtXkAPdqdpUwo
To claim this, I am signing this object:
stop = async () => { | |
await window.context?.suspend(); | |
media.getTracks().forEach(track => track.stop()) | |
}; | |
await stop(); | |
media = await navigator.mediaDevices.getUserMedia({ | |
audio: { |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# | |
# list the given file's filesize next to each commit | |
# usage: git-fs-history path/to/file | |
# | |
if [ $# -ne 1 ]; then | |
echo "Error: invalid number of arguments." | |
exit 1 |
#!/usr/bin/env python2 | |
""" | |
Processes an stdin and prompts for confirmation | |
""" | |
import sys | |
def process(): | |
""" | |
Processes an stdin and prompts for confirmation |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>my jade template</title> | |
<style id="jsbin-css"> | |
html, | |
body { | |
height: 100%; | |
font-family: sans-serif; | |
font-size: 14px; |
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$base-font-size: 10px; | |
$relative: 1em; | |
@function px2em( $pixels, $base : $base-font-size, $unit : $relative ) { | |
@if ( type_of( $pixels ) != 'number' ){ @return $pixels; } |