Skip to content

Instantly share code, notes, and snippets.

@HKT120
HKT120 / address-overlay.html
Created September 23, 2026 04:12
Fetch GPS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 12px 18px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: rgba(0, 0, 0, 0.75);
@lalalune
lalalune / 31340-composed-final-source-gitleaks-v1.log
Created September 23, 2026 04:11
elizaOS PR 31340 source disposition, canonical BGE integration and validation limits
9:10PM INF scanned ~1458032 bytes (1.46 MB) in 768ms
9:10PM INF no leaks found
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created September 23, 2026 04:10
open-knowledge v0.77.4 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-3904933701-2643398788-1488306906-1000</user>
<keys>
<key installerType="Custom" displayName="OpenKnowledge 0.77.4" displayVersion="0.77.4">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\2de4b944-aab9-5e7c-9813-12d41bc7ac12</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[]]></InstallLocation>
<UninstallString><![CDATA["C:\Users\vagrant\AppData\Local\Programs\@inkeepopen-knowledge-desktop\Uninstall OpenKnowledge.exe" /currentuser /S]]></UninstallString>
@DDwwi25
DDwwi25 / gist:656d662e262cfc4122efd0881a285848
Created September 23, 2026 04:09
Paying for the Tooling Doesn't Automatically Mean You Own the Die
If your procurement records show a paid tooling charge and nothing else, you may be operating under an ownership assumption that no document actually supports. A tooling invoice tells you money changed hands — it doesn't establish who owns the die, where it physically sits, who is authorized to use it, or whether the digital files needed to actually run it can move with the physical asset if you ever need to relocate production. These are separate questions, and treating a payment record as proof of title is one of the most common gaps that surfaces only during a supplier transition or program closeout.
The starting point is a proper inventory of each physical asset — die, mold, jig, fixture, or gauge — with a unique ID, dated photographs, markings, and a linked drawing revision. Ownership claims need their own evidence trail: the purchase order, tooling invoice, payment reference, and acceptance record should all be recorded, but none of them alone constitutes conclusive title evidence. If a buyer has a pai
[
{
"id": "1",
"nama": "Caffè Latte",
"deskripsiSingkat": "Rich, full-bodied espresso in steamed milk, lightly topped with foam. A caffè ...",
"deskripsiLengkap": "Rich, full-bodied espresso in steamed milk, lightly topped with foam. A caffè latte is simply a shot or two of bold, tasty espresso with fresh, sweet steamed milk over it.",
"foto": "https://upload.wikimedia.org/wikipedia/commons/c/c6/Latte_art_3.jpg"
},
{
"id": "2",
@actualimposter
actualimposter / Notification_Certificate_Template.docx
Created September 23, 2026 04:09
notification certificate template

Interactive Widget in OpenMAIC

This document explains how OpenMAIC generates interactive scenes — self-contained interactive widgets embedded in a lesson, of which simulation is one type (the default one, and the running example used throughout this doc). It's written to be readable without prior knowledge of the codebase; file paths are included so you can jump to the source.

1. What an interactive scene is

A classroom (Stage) is a list of scenes. One scene type is interactive (lib/types/stage.ts, packages/@openmaic/dsl/src/stage.ts). An interactive scene isn't one fixed thing — it's a widget, and the widget has a WidgetType:

simulation | diagram | code | game | visualization3d | procedural-skill
Pipeline still running ...
PipelineRun is still running: Tasks Completed: 20 (Failed: 0, Cancelled 0), Incomplete: 1, Skipped: 10
[set-github-status-pending : set-github-status] 2026-09-23T04:03:06.29Z + '[' false == true ']'
[set-github-status-pending : set-github-status] 2026-09-23T04:03:06.29Z Setting github status of commit 31019273515e9ac52ef707a9dc4c86e7a7ab4cad to pending
[set-github-status-pending : set-github-status] 2026-09-23T04:03:06.29Z + echo 'Setting github status of commit 31019273515e9ac52ef707a9dc4c86e7a7ab4cad to pending'
[set-github-status-pending : set-github-status] 2026-09-23T04:03:06.29Z + set-github-status --git-repo-url git@github.com:redhat-openshift-ecosystem/community-operators-prod.git --commit-sha 31019273515e9ac52ef707a9dc4c86e7a7ab4cad --status pending --context operator/publish --description 'Pipeline for operator distribution has started.'
[set-github-status-pending : set-github-status] 2026-09-23T04:03:07.68Z Successfully set status to pending for commit 31019273515e9ac52ef
@mtarvos
mtarvos / 1203-after.png
Created September 23, 2026 04:08
evidence: 1203-before.png +1 more
1203-after.png
@hongtaizhangob-dotcom
hongtaizhangob-dotcom / dailyR_random_assignment.R
Created September 23, 2026 04:07
dailyR - random assignment and group means
# Daily R - September 22, 2026
set.seed(530)
y <- c(4, 7, 6, 5, 9, 8, 3, 10)
z <- sample(c(rep(1, 4), rep(0, 4)))
data.frame(y, z)
mean(y[z == 1]) - mean(y[z == 0])
# Random assignment does not guarantee the two groups will have exactly the same mean.