Skip to content

Instantly share code, notes, and snippets.

View killinit's full-sized avatar
🎯
Focusing

Maciej Adamczewski killinit

🎯
Focusing
View GitHub Profile
@killinit
killinit / pi5-cluster-cookbook.md
Created May 17, 2026 22:40 — forked from ruvnet/pi5-cluster-cookbook.md
Pi 5 + Hailo Cluster Cookbook — rvcsi Cognitive RF Observer (detailed reference for the RuView tutorial)

Pi 5 + Hailo Cluster Cookbook — rvcsi Cognitive RF Observer

Detailed reference companion to the RuView tutorial "Pi 5 + Hailo Cluster: Building a Cognitive RF Observer with rvcsi". This is the unabridged recipe — every command, every config, every unit file. The tutorial is the narrative; this is the manual.

Target cluster: 4× Raspberry Pi 5 (8GB), 2× Hailo-8 M.2 HAT, 1× workstation (Linux, ≥16GB RAM), all on Tailscale.

@killinit
killinit / 00-executive-summary.md
Created May 7, 2026 10:59 — forked from proffesor-for-testing/00-executive-summary.md
RuView Quality Engineering Analysis - Full Report (10 documents)

RuView Quality Engineering Analysis -- Executive Summary

Date: 2026-03-06 Analyzed by: AQE Queen Swarm (6 specialist agents) Project: RuView -- WiFi-based Human Pose Estimation & Vital Sign Monitoring Repository: https://github.com/ruvnet/RuView Scope: Rust codebase only (15 workspace crates + 65 WASM edge modules + ESP32 firmware)

Note: Python v1 (v1/) is a legacy codebase and excluded from this analysis. All findings, recommendations, and test plans target the Rust port only.

@killinit
killinit / Agentic-algorithms.md
Created May 5, 2026 22:20 — forked from ruvnet/Agentic-algorithms.md
This document provides a comprehensive overview of five advanced algorithms, detailing their technical implementations using Python and Pydantic for data validation, as well as asynchronous programming for efficiency. Each algorithm is also explored in terms of practical applications across various domains.

Introduction

This document provides a comprehensive overview of five advanced algorithms, detailing their technical implementations using Python and Pydantic for data validation, as well as asynchronous programming for efficiency. Each algorithm is also explored in terms of practical applications across various domains. The algorithms covered include:

  1. NEUMANN: Differentiable Logic Programs for Abstract Visual Reasoning - This algorithm integrates differentiable logic programming with neural networks, enabling advanced visual reasoning and logical deduction. It is particularly useful in computer vision, robotics, and medical imaging.

  2. Scheduled Policy Optimization for Natural Language Communication - This algorithm optimizes policies for natural language communication, enhancing dialogue systems, customer support automation, and machine translation. It leverages policy gradient methods and scheduled learning to improve interaction quality and efficiency.

  3. **LEFT: Logic-Enhanced Foundatio

@killinit
killinit / ruflo-audit-gist.md
Created April 14, 2026 10:44 — forked from roman-rr/ruflo-audit-gist.md
Ruflo / Claude-Flow Audit: 300+ MCP Tools — 99% Theater, 1% Real, 5x Token Waste

Ruflo / Claude-Flow: 300+ MCP Tools Exposed — 99% Theater, 1% Real, 5x Token Waste

A deep technical audit of the ruflo (@claude-flow/cli) ecosystem — what it claims vs what it actually does.

Investigated 2026-04-04 by spawning 8 research agents across two analysis phases, reading source code from the ruflo GitHub repo, tracing local process execution, and testing every major tool category hands-on.


TL;DR

@killinit
killinit / mempalace-audit.md
Created April 14, 2026 10:44 — forked from roman-rr/mempalace-audit.md
MemPalace Exposed: 42,000 Purchased Stars, Zero Innovation — It's ChromaDB With a Celebrity Name

MemPalace Exposed: 42,000 Purchased Stars, Zero Innovation — It's ChromaDB With a Celebrity Name

A deep technical audit of MemPalace (github.com/MemPalace/mempalace) — what it claims vs what it actually is.

Every source file read. Every benchmark traced. Every MCP tool verified. Compared against Mem0, Zep/Graphiti, and Letta/MemGPT. GitHub stargazer timestamps analyzed for bot patterns.


TL;DR

@killinit
killinit / claudette-agent.installation.md
Created March 23, 2026 20:05 — forked from orneryd/claudette-agent.installation.md
Claudette coding agent (System Prompt, Preamble, Chatmode, etc…) built especially for free-tier models like chatGPT-3/4/5+ to behave more similar to Claude. Claudette-auto.md is the most structured and focuses on autonomy. *Condensed* nearly the same but smaller token cost for smaller contexts, *Compact* is for mini contexts. Memories file suppo…
@killinit
killinit / array-to-object.js
Created April 13, 2018 06:28 — forked from Daniel-Hug/array-to-object.js
JS arrayToObj(): convert array to object with a key-value map function
// Call arrayToObj() passing your array and function.
function arrayToObj(array, keyValueMap) {
var obj = {};
var len = array.length;
// Your function will be called for each item in the array.
for (var i = 0; i < len; i++) {
var curVal = array[i];
// Just like with [].forEach(), your function will be passed the
// curent item of the array, its index, and the array it's in.
var keyValuePair = keyValueMap(curVal, i, array);
@killinit
killinit / destructuring.js
Created October 12, 2017 06:30 — forked from mikaelbr/destructuring.js
Several demos and usages for ES6 destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];
@killinit
killinit / circle_detection.py
Created August 30, 2017 06:42 — forked from martinsik/circle_detection.py
Circle detection with OpenCV 3.0
import cv2
import time
import math
import numpy as np
capture = cv2.VideoCapture(0)
print capture.get(cv2.CAP_PROP_FPS)
t = 100
w = 640.0
@killinit
killinit / 01-createObservableFromDeviceEventEmitter.js
Created August 27, 2017 19:18 — forked from sectore/01-createObservableFromDeviceEventEmitter.js
[React Native + RxJS] Create an Observable from DeviceEventEmitter - An example to handle 'locationUpdated' event
import React, {DeviceEventEmitter} from 'react-native';
import {Observable} from 'rx-lite'
/**
* Creates an Observable to listen to any event of DeviceEventEmitter
* @param type {string} Event type
*/
export default createObservableFromDeviceEventEmitter$ = type => {
let subscription;
return Observable.fromEventPattern(