Skip to content

Instantly share code, notes, and snippets.

View gwisp2's full-sized avatar
💻
Coding

gwisp2

💻
Coding
View GitHub Profile
#include <stdio.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <errno.h>
#include <string.h>
int main(int argc, char *argv[]) {
if (argc < 2) {
printf("No path to executable to start provided\n");
return 255;
@gwisp2
gwisp2 / Dockerfile
Created April 6, 2022 17:06
rtl_433_docker: workaround for udev symlink to devices
FROM hertzg/rtl_433:latest
RUN apk add --no-cache eudev
COPY --chmod=755 entrypoint.sh /opt/
ENTRYPOINT '/opt/entrypoint.sh'