We welcome your contributions to this project.
It could be:
- a bug report in a GitHub issue
- a feature request in a GitHub issue
- a fix to documentation
- a code contribution to address an existing bug or feature request
/** | |
* This code behaves differently when run with: | |
* | |
* node --experimental-strip-types test.ts | |
* | |
* tsc --lib es2017,dom test.ts && node test.js | |
* | |
* This is an edge-case where mixing dynamic programming and static typing reveals a difference in behavior. | |
* | |
*/ |
Future Scenarios leading into the Golden Age | |
www.vedicintel.com | |
September 2024 Edition | |
Turning *Future Scenarios* into a near-future science fiction novel could be an exciting project that brings the speculative aspects of these scenarios to life. Here’s a potential framework for the novel, based on the scenarios outlined in *Future Scenarios*. The novel would explore how global forces, hidden technologies, and AI are reshaping human society, and how a small group of individuals rooted in spirituality, self-sufficiency, and resilience fight against the tide. | |
### Working Title: **"The Golden Edge"** | |
### Plot Overview: | |
The story is set in a near-future world where the global order is collapsing under the weight of overlapping crises—economic instability, AI-driven governance, healthcare collapse, civil unrest, and the public revelation of undisclosed technologies. In the chaos, governments and corporate elites use these crises to impose a new world order—an AI-driven technocratic regime where personal freedoms are sacrificed for the illusion of security. However, not everything goes according t |
Future Scenarios leading into the Golden Age | |
www.vedicintel.com | |
September 2024 Edition | |
Preface to the 2024 Edition of Future Scenarios Leading Into the Golden Age |
// ==UserScript== | |
// @name Camunda Community Hub - remove moniker in GitHub Notifications | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Remove the 'camunda-community-hub/' organization from the notification title | |
// @author You | |
// @match https://github.com/notifications* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
// @grant none | |
// ==/UserScript== |
const magik = magikcraft.io; | |
/* | |
Fonts are bitmaps. | |
Each number is the decimal equivalent of the binary | |
bitmap of the line, for example: 00011000 = 24 | |
Here is a bitmapped 'A': | |
00011000 = 24 | |
00111100 = 60 | |
00100100 = 36 |
import { dispatch, spawn, query, Ref, start } from "nact"; | |
type Result = { success: boolean }; | |
type DoLoadMessage = { | |
type: "LOAD"; | |
filename: string; | |
sender: Ref<Result>; | |
}; |
interface QueuedTask<T> { | |
task: () => T; | |
promise: { | |
resolve: (res: any) => void; | |
reject: (err: any) => void; | |
}; | |
} | |
interface RateLimitedTask<T> { | |
task: () => T; |
interface QueuedTask<T> { | |
task: () => T; | |
promise: { | |
resolve: (res: any) => void; | |
reject: (err: any) => void; | |
}; | |
} | |
interface RateLimitedTask<T> { | |
task: () => T; |
We welcome your contributions to this project.
It could be: