In your command-line run the following commands:
brew doctor
brew update
RTTM | |
SPEAKER test-video-1740474159022-enhanced 1 3.457 0.574 <NA> <NA> SPEAKER_01 <NA> <NA> | |
SPEAKER test-video-1740474159022-enhanced 1 4.773 6.058 <NA> <NA> SPEAKER_01 <NA> <NA> | |
SPEAKER test-video-1740474159022-enhanced 1 10.949 1.367 <NA> <NA> SPEAKER_01 <NA> <NA> | |
SPEAKER test-video-1740474159022-enhanced 1 12.890 1.856 <NA> <NA> SPEAKER_01 <NA> <NA> | |
SPEAKER test-video-1740474159022-enhanced 1 15.438 5.535 <NA> <NA> SPEAKER_01 <NA> <NA> | |
SPEAKER test-video-1740474159022-enhanced 1 22.880 1.333 <NA> <NA> SPEAKER_00 <NA> <NA> | |
package main | |
import ( | |
"errors" | |
"fmt" | |
"sync" | |
"time" | |
) | |
type ( |
[ | |
{"code":"ab","name":"Abkhaz","nativeName":"аҧсуа"}, | |
{"code":"aa","name":"Afar","nativeName":"Afaraf"}, | |
{"code":"af","name":"Afrikaans","nativeName":"Afrikaans"}, | |
{"code":"ak","name":"Akan","nativeName":"Akan"}, | |
{"code":"sq","name":"Albanian","nativeName":"Shqip"}, | |
{"code":"am","name":"Amharic","nativeName":"አማርኛ"}, | |
{"code":"ar","name":"Arabic","nativeName":"العربية"}, | |
{"code":"an","name":"Aragonese","nativeName":"Aragonés"}, | |
{"code":"hy","name":"Armenian","nativeName":"Հայերեն"}, |
return block([ | |
startClock(clock), | |
set(delta, diff(translationY)), | |
cond( | |
eq(gestureState, State.ACTIVE), | |
[ | |
set(isSpringing, 0), | |
set( | |
state.position, | |
add( |
import {useEffect} from 'react' | |
import Plyr, {SourceInfo, Options} from 'plyr' | |
import 'plyr/dist/plyr.css' | |
const usePlyr = (id: string, sources: SourceInfo, opts?: Options) => { | |
useEffect(() => { | |
const el = document.getElementById(id) | |
const player = new Plyr(el, opts) | |
player.source = sources |
docker build -t friendlyname . # Create image using this directory's Dockerfile | |
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80 | |
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode | |
docker exec -it [container-id] bash # Enter a running container | |
docker ps # See a list of all running containers | |
docker stop <hash> # Gracefully stop the specified container | |
docker ps -a # See a list of all containers, even the ones not running | |
docker kill <hash> # Force shutdown of the specified container | |
docker rm <hash> # Remove the specified container from this machine | |
docker rm $(docker ps -a -q) # Remove all containers from this machine |
In your command-line run the following commands:
brew doctor
brew update