This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <title>ZERO_MESH V4 [WIDEBAND]</title> | |
| <style> | |
| :root { --bg: #000; --fg: #0f0; --dim: #004400; --err: #f00; } | |
| * { box-sizing: border-box; } | |
| body { background: var(--bg); color: var(--fg); font-family: 'Courier New', monospace; padding: 10px; height: 100vh; display: flex; flex-direction: column; overflow: hidden; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> <html lang style><!-- | |
| Page saved with SingleFile | |
| url: https://buro.earth/ | |
| saved date: Fri Jan 16 2026 09:47:29 GMT+0100 (Central European Standard Time) | |
| --><meta charset=utf-8> | |
| <meta name=viewport content="width=device-width, initial-scale=1.0, viewport-fit=cover"> | |
| <meta name=mobile-web-app-capable content=yes> | |
| <meta name=apple-mobile-web-app-capable content=yes> | |
| <meta name=apple-mobile-web-app-status-bar-style content=black-translucent> | |
| <meta name=theme-color content=#000000> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef OF_BILINEAR_WARP_H | |
| #define OF_BILINEAR_WARP_H | |
| #include "ofMain.h" | |
| #include "uid.h" | |
| #include <algorithm> | |
| #include <unordered_set> | |
| #include "textures.h" | |
| class ofBilinearWarp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // md5.hpp | |
| // --------------------------------------------------------------- | |
| // Header-only MD5 implementation (public domain) | |
| // Source: https://github.com/Chocobo1/Hash/blob/master/src/md5.h | |
| // --------------------------------------------------------------- | |
| #ifndef MD5_HPP | |
| #define MD5_HPP | |
| #include <array> | |
| #include <cstdint> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // preferred_ip_broadcast.hpp | |
| // ------------------------------------------------------------ | |
| // Portable C++17 header-only library | |
| // Returns: | |
| // * preferred outbound IPv4 address | |
| // * broadcast address of the same subnet | |
| // ------------------------------------------------------------ | |
| #pragma once | |
| #include <string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // paulstretch.js | |
| // Copyright (C) 2014 Sébastien Piquemal | |
| // Copyright (C) 2006-2011 Nasca Octavian Paul | |
| import * as utils from './utils.js' | |
| import * as blockHelpers from './block-helpers.js' | |
| import * as arrayHelpers from './array-helpers.js' | |
| export class PaulStretch { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:22.04 as base | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| WORKDIR /src | |
| RUN apt-get update && \ | |
| apt-get remove libunwind-14 -y && \ | |
| apt-get install -y \ | |
| wget git lsb-release apt-utils unzip sudo | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.openrndr.application | |
| import org.openrndr.draw.* | |
| import org.openrndr.ffmpeg.VideoPlayerConfiguration | |
| import org.openrndr.ffmpeg.VideoPlayerFFMPEG | |
| import org.openrndr.math.Polar | |
| import org.openrndr.math.Vector2 | |
| import org.openrndr.math.Vector3 | |
| import kotlin.math.sin | |
| import org.openrndr.ffmpeg.PlayMode | |
| import org.openrndr.math.mix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ffmpeg | |
| import numpy as np | |
| import cv2 | |
| import sys | |
| # pip install ffmpeg-python | |
| # pip install opencv-python | |
| # pip install opencv-contrib-python | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Pipe2Pam from 'pipe2pam'; | |
| import process from 'node:process'; | |
| import {spawn} from 'child_process'; | |
| import imghash from 'imghash'; | |
| let counter = 0; | |
| const params = [ | |
| '-loglevel', |
NewerOlder