nx_frontier_watch.nx
buildroot/runtime/nx_frontier_watch.nx
about
nx_cap_harvest.nx -- the DAILY FRONTIER WATCH. For each topic in knowledge/registry/harvest_topics.conf it
fetches arXiv (POLITELY -- paces + backs off via nx_net_polite), records total-volume + newest-month recency
share (via nx_search_emerge), and APPENDS a timestamped row to the sovereign seg-store knowledge/store/harvest.
Over daily runs the DRIFT of volume/share per topic = the emergence signal (a field accelerating = worth
investing) -- this is the "stay abreast of the world (Kimi 3 etc.)" half, complementing the census which
re-measures OUR code. Self-locates to buildroot; loads the TLS trust store from data/ or ../data/.
license_tier: ORIGINAL
dependencies 8 imports · 0 importers
imports: nx_search_emerge.nxnx_search_extern.nxnx_net_polite.nxnx_flatstore_flip.nxnx_x509_trust_store.nxnx_trust_store_load_from_certdata.nxnx_syscalls.nxnx_estate_path.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| 16 | const K_MAGIC_4096: i64 = 4096 |
| 17 | const K_MAGIC_4194304: i64 = 4194304 |
| 18 | const K_MAGIC_16384: i64 = 16384 |
| 19 | const K_MAGIC_16000: i64 = 16000 |
| 20 | const K_MAGIC_1024: i64 = 1024 |
functions
| 22 | func hp(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 } |
| 23 | func hn(v: i64) -> i64 { if v==0 { sys_write(1,"0" as *u8,1); return 0 } var m: i64=v; if m<0 { sys_write(1,"-" as *u8,1); m=0-m } let t: *u8=sys_mmap(28); var k: i64=0; while m>0 { t[k]=(48+(m%10)) as u8; m=m/10; k=k+1 } while k>0 { k=k-1; sys_write(1,(((t as i64)+k) as *u8),1) } return 0 } |
| 24 | func hv_app(dst: *u8, off: i64, s: *u8) -> i64 { var o: i64=off; var i: i64=0; while s[i]!=(0 as u8) { dst[o]=s[i]; o=o+1; i=i+1 } return o } |
| 25 | func hv_numto(dst: *u8, off: i64, v: i64) -> i64 calls 1: sys_mmap |
| 34 | func hv_self_locate(argv: *i64) -> i64 |
| 48 | func main(argc: i64, argv: *i64) -> i64 |