Skip to content

Instantly share code, notes, and snippets.

View Jeija's full-sized avatar

Florian Euchner Jeija

View GitHub Profile
@Jeija
Jeija / qt_thread_bug_workaround.grc
Created January 1, 2022 21:57
Example Flow Graph for GNURadio Qt Threading Issue - With hacky workaround
options:
parameters:
author: florian
catch_exceptions: 'True'
category: '[GRC Hier Blocks]'
cmake_opt: ''
comment: ''
copyright: ''
description: ''
gen_cmake: 'On'
@Jeija
Jeija / qt_thread_bug.grc
Created January 1, 2022 21:35
Example Flow Graph for GNURadio Qt Threading Issue
options:
parameters:
author: florian
catch_exceptions: 'True'
category: '[GRC Hier Blocks]'
cmake_opt: ''
comment: ''
copyright: ''
description: ''
gen_cmake: 'On'
@Jeija
Jeija / qtvarupdate_update_int.block.yml
Last active January 1, 2022 21:29
GNURadio: Translate variable change events to Qt Main Thread
id: qt_variable_update
label: Qt Variable Update
flags: [ python ]
parameters:
- id: value
label: Input Variable
dtype: int
- id: target
label: Output Variable
@Jeija
Jeija / keybase.md
Created October 9, 2017 07:39
Keybase Proof

Keybase proof

I hereby claim:

  • I am jeija on github.
  • I am jeija (https://keybase.io/jeija) on keybase.
  • I have a public key ASCVREwT_sMVV0EpdHV7hjDO9P2cgFGtx7EW-v0TSNEWawo

To claim this, I am signing this object:

arucodetect
@Jeija
Jeija / jqueryclient.js
Created July 7, 2017 14:34
Sponsorenlauf
$.post("http://localhost:1234/action/register_runner", JSON.stringify({name : "Kjell"}), function(response) { console.log(response); });
@Jeija
Jeija / Makefile
Created October 16, 2016 09:59
OpenCV AruCo Detection
TARGET := arucodetect
CXX := g++
# MARKERSIZE: Marker side length in meters
DICTIONARY := 0
MARKERSIZE := 0.2
CAMPARAM := c270.yml
DETECTPARAM := config.yml
all: main.cpp
@Jeija
Jeija / ws2811.c
Created January 24, 2016 19:25
ESP8266 implementation of WS2811 LED Strip protocol (without I²S / DMA)
// System
#include <ets_sys.h>
#include <osapi.h>
#include <gpio.h>
#include <os_type.h>
#include <user_interface.h>
// Project
#include "ws2811.h"
@Jeija
Jeija / index.html
Last active August 29, 2015 14:14
WS2811LEDStripe
<html>
<head>
<script src="jquery.min.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<meta charset="utf-8">
</head>
<body>
<div id="content">
<div id="heading">LED Stripe Controller</div>
@Jeija
Jeija / speedcomparison.lua
Last active December 11, 2015 12:59
Tool to compare speed between minetest.env:set_node() minetest.env:set_nodes() and set_nodes() with minp and maxp specified
time_setnodes = 0
time_setnoare = 0
time_setnode = 0
amount_setnodes = 0
amount_setnoare = 0
amount_setnode = 0
function benchmark_setnodes(minp, maxp)
local t1 = os.time()