Documentation generated from source code.
| Name | Description | Default Value | Deprecated | Replacement |
|---|---|---|---|---|
| camunda.client.auth.audience | ||||
| camunda.client.auth.client-id | ||||
| camunda.client.auth.client-secret | ||||
| camunda.client.auth.connect-timeout |
| import { test, expect } from '@playwright/test'; | |
| import { buildBaseUrl, authHeaders } from '../support/env'; | |
| test.describe('createProcessInstance', () => { | |
| test('feature-1 - createProcessInstance - base (1)', async ({ request }) => { | |
| const baseUrl = buildBaseUrl(); | |
| const ctx: Record<string, any> = {}; | |
| // Seed scenario bindings | |
| // Step 1: createDeployment | |
| { |
| { | |
| "groups": [ | |
| { | |
| "name": "camunda.client", | |
| "type": "io.camunda.spring.client.properties.CamundaClientProperties", | |
| "sourceType": "io.camunda.spring.client.properties.CamundaClientProperties" | |
| }, | |
| { | |
| "name": "camunda.client.auth", | |
| "type": "io.camunda.spring.client.properties.CamundaClientAuthProperties", |
| /** | |
| * 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>; | |
| }; |