Follow this guide: https://github.com/jschmid1/gopro_as_webcam_on_linux
# cat gopro.service
Follow this guide: https://github.com/jschmid1/gopro_as_webcam_on_linux
# cat gopro.service
The only way I've succeeded so far is to employ SSH.
Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config
file in a .ssh
directory. The config
file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh
directory by default. You can navigate to it by running cd ~/.ssh
within your terminal, open the config
file with any editor, and it should look something like this:
Host * AddKeysToAgent yes
> UseKeyChain yes
import math | |
import argparse | |
from sympy.combinatorics import Permutation | |
def bits_for_value(value): | |
return int(math.log2(value)) | |
def decompose(N, R): | |
logN2 = bits_for_value(N) | |
logR2 = [] |
#include <stdio.h> | |
#include <stdint.h> | |
uint32_t bits_reverse_u32(uint32_t val) { | |
uint32_t out = 0; | |
for (int i = 0; i < 16; i++) { | |
out |= ((val & (1 << ( i))) << (31 - (i << 1))); | |
out |= ((val & (1 << (31 - i))) >> (31 - (i << 1))); | |
} | |
return out; |
import * as tf from '@tensorflow/tfjs-node'; | |
import { promises as fs } from 'fs'; | |
function buttap(N: number): { z: tf.Tensor<tf.Rank>, p: tf.Tensor<tf.Rank>, k: tf.Tensor<tf.Rank> } { | |
/* | |
Return (z,p,k) for analog prototype of Nth-order Butterworth filter. | |
The filter will have an angular (e.g. rad/s) cutoff frequency of 1. | |
See Also | |
-------- | |
butter : Filter design function using this prototype |
#include <stdio.h> | |
#include <math.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
#include <assert.h> | |
bool is_integer(double x) { | |
const double epsilon = 0.0001; // adjust | |
double fract = fabs(x - round(x)); | |
return fract < epsilon; |
// concat | |
(() => { | |
const x = [ 1, 2, 3 ]; | |
const y = [ 4, 5, 6 ]; | |
const o = x.concat(y); | |
console.log(`concat: ${o}`); | |
})(); | |
// every | |
(() => { |
Homebrew build logs for gcc on macOS 10.13.4 | |
Build date: 2018-06-04 20:42:25 |