`INF Start recording...` is displayed repeatedly on `video-recorder-slicer` logs
- Check that you are sending video and audio in the camera offer
<meta name="go-import" content="cloud.google.com/go git https://github.com/googleapis/google-cloud-go" /> | |
<meta name="go-source" content="cloud.google.com/go https://github.com/googleapis/google-cloud-go https://github.com/googleapis/google-cloud-go/tree/master{/dir} https://github.com/googleapis/google-cloud-go/tree/master{/dir}/{file}#L{line}" /> |
- Check that you are sending video and audio in the camera offer
coverage.out: $(shell find . -type f -print | grep -v vendor | grep "\.go") | |
@go test -cover -coverprofile ./coverage.out.tmp ./... | |
@cat ./coverage.out.tmp | grep -v '.pb.go' | grep -v 'mock_' > ./coverage.out | |
@rm ./coverage.out.tmp | |
test: coverage.out | |
cover: coverage.out | |
@echo "" | |
@go tool cover -func ./coverage.out |
/* | |
* Copyright (c) 2010 Apple Inc. All rights reserved. | |
*/ | |
function articleHeight() { | |
var e = document.getElementById("article").offsetHeight, | |
t = parseFloat(getComputedStyle(document.getElementById("article")).marginTop); | |
return e + 2 * t | |
} | |
function smoothScroll(e, t, n, i) { | |
function a(t, n) { |
.PHONY: all clean deps fmt vet test docker | |
EXECUTABLE ?= drone-webhook | |
IMAGE ?= plugins/$(EXECUTABLE) | |
COMMIT ?= $(shell git rev-parse --short HEAD) | |
LDFLAGS = -X "main.buildCommit=$(COMMIT)" | |
PACKAGES = $(shell go list ./... | grep -v /vendor/) | |
all: deps build test |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* @see http://stackoverflow.com/a/15875555 | |
*/ | |
class UUID | |
{ | |
public static function random() | |
{ | |
if (function_exists('uuid_create')) { |
TRUNCATE RTINDEX rt; |
export EDITOR="vi" | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1) /' | |
} | |
parse_git_tag() { | |
git describe --always --tag 2> /dev/null | |
} |
<?php | |
namespace Acme\Bundle\FrontBundle\Controller; | |
use Symfony\Bundle\TwigBundle\Controller\ExceptionController AS Controller; | |
use Symfony\Bundle\FrameworkBundle\Templating\TemplateReference; | |
use Symfony\Component\HttpFoundation\Request; | |
class ExceptionController extends Controller | |
{ |