I hereby claim:
- I am makkes on github.
- I am makkes (https://keybase.io/makkes) on keybase.
- I have a public key whose fingerprint is 0981 E8F0 11B0 8926 D25B E530 EB52 5E0F 02B5 2140
To claim this, I am signing this object:
var RTCPeerConnection = require('wrtc').RTCPeerConnection; | |
var RTCIceCandidate = require('wrtc').RTCIceCandidate; | |
var RTCPeerConnectionIceEvent = require('wrtc').RTCPeerConnectionIceEvent; | |
var pc1 = new RTCPeerConnection(null); | |
var pc2 = new RTCPeerConnection(null); | |
var channel = pc1.createDataChannel(null, {}); | |
channel.onopen = function(ev) { | |
console.log('open'); |
var wrtc = require('wrtc'); | |
var pcs = [], | |
done = [], | |
MAX_PCS = 30; | |
pcoptions = { | |
iceServers: [] | |
}; |
read_props() { | |
local key | |
if [[ ! -r $1 ]] ; then | |
echo file $1 not readable | |
exit 1 | |
fi | |
while IFS='=' read -r key value | |
do | |
if [[ -z ${key} ]] || [[ "${key}" =~ ^# ]] ; then | |
continue |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" | |
"path" | |
"sync" |
I hereby claim:
To claim this, I am signing this object:
import cv2 as cv | |
import time | |
delay = 5 | |
if __name__ == "__main__": | |
cap = cv.VideoCapture("/dev/video2") | |
if not cap.isOpened(): | |
print("Cannot open camera") | |
exit(1) |
#!/usr/bin/env bash | |
# | |
# A silly little kubectl plugin helping you become more intimate with your Kubernetes | |
# cluster. | |
# | |
# 1. Download the file | |
# 2. Put it somewhere within your `$PATH` | |
# 3. Make it executable | |
# 4. `kubectl im-feeling-lucky` |
import requests | |
import datetime | |
import numpy as np | |
import os | |
import json | |
import sys | |
repo = "weaveworks/weave-gitops" # Replace with the name of the repository | |
access_token = "<access_token>" # Replace with your GitHub access token |
from Crypto.Cipher import AES | |
from Crypto.PublicKey import RSA | |
from Crypto.Cipher import AES, PKCS1_v1_5 | |
from Crypto.Random import get_random_bytes | |
import base64 | |
import sys | |
import zlib | |
def decrypt(session_key, privkey_fname, payload_fname, out_fname): |