Dominik Hardtke
Dominik Hardtke
Consider this example: deno.jsonc: ```json { "tasks": { "script": "deno run script.ts", } } ``` script.ts: ```typescript console.log(Deno.pid); while (true); ``` reproduction.ts: ```typescript const BROKEN = ["deno", "task", "script"]; const...
Hey, I don't know yet why this is happening, but after the export of my Raphael paper as SVG, the stroke-width attribute of all my paths is completely wrong. I...
See title - would like to find out how. Thanks.
Hi, I know that this is not directly related to the plugin, but I don't know if I can solve this problem I have without people that know this plugin....
Hey, I know that this might be a little bit fussy, but I don't like it that a user can not select / drag an element next to a text...
> $ deno --version deno 1.15.3 (release, x86_64-pc-windows-msvc) v8 9.5.172.19 typescript 4.4.2 main.ts ```typescript const worker = new Worker( new URL("./worker.ts", import.meta.url).href, { type: "module", deno: { namespace: true, },...
Also moves the configuration of ComponentData's serializer inside ComponentDataImpl | Q | A | ------------------------ | --- | Fixed Issues? | Fixes https://github.com/adobe/aem-core-wcm-components/issues/1381 | Patch: Bug Fix? | No |...
Hey, please have a look at my JSFiddle here: http://jsfiddle.net/hcpLn7t5/ I expect the Knob set to "readonly = false" when executing the last JS line.. why doesn't it work?
Hey, I am using this code: ``` python from converter import Converter c = Converter() conv = c.convert('input.mp4', 'video-transcoded.mkv', { 'format': 'mkv', 'audio': { 'codec': 'ac3', }, 'video': { 'codec':...
According to https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types (and various other sources) the MIME type for json is `application/json` yet https://github.com/merkle-open/gondel/blob/5cf2151859c1572f0bdb545b813f8505028bd5b3/packages/plugins/react/src/GondelReactComponent.tsx#L116 expects `text/json`. When we changed the MIME type in our project the JSON was...