JohnGurin

Results 7 issues of JohnGurin

```json // package.json "extensionKind": ["ui"], ``` allows an extension to be installed locally and operate inside a dev container without in-container installation. I quickly checked such a fix. Seems to...

![2016-06-24_12-47-59](https://cloud.githubusercontent.com/assets/7195950/16331459/0b8b4638-3a0a-11e6-89b2-f8c5d2b08773.png) compiles to ``` html ``` `:php` is custom filter

bug

![2019-07-21_11-22-40](https://user-images.githubusercontent.com/7195950/61587813-4318ce80-abaa-11e9-9c53-7b4603c8bc77.png)

enhancement
requires vlc change

```VBA Sub Currently() Dim ws As Worksheet Set ws = Sheet1 ws.UsedRange.Clear Dim multiArea As Range Set multiArea = ws.Range("A1:B2, A3, B5:D5") multiArea.Value2 = 1 Dim ba As New BetterArray...

enhancement

``` > pnpm exec purs-backend-es bundle-module --no-build node:events:497 throw er; // Unhandled 'error' event ^ Error: spawn esbuild ENOENT at ChildProcess._handle.onexit (node:internal/child_process:286:19) at onErrorNT (node:internal/child_process:484:16) at process.processTicksAndRejections (node:internal/process/task_queues:82:21) Emitted 'error'...

The solutions file has them in a different order (apparently, more proper to their difficulties). https://github.com/gvergnaud/type-level-typescript-workshop/blob/cc7c360e6be62b9a2e6306b8eb49f887314e857c/04-template-literal-types/exercises.ts#L50-L51 https://github.com/gvergnaud/type-level-typescript-workshop/blob/cc7c360e6be62b9a2e6306b8eb49f887314e857c/04-template-literal-types/solution.ts#L50-L51

```ts type XOR = TODO ``` https://github.com/gvergnaud/type-level-typescript-workshop/blob/a2234bea76dbbc4b97c074e1b1c40e08f6c7529e/02-assignability-and-conditional-types/exercises.ts#L140 https://github.com/gvergnaud/type-level-typescript-workshop/blob/a2234bea76dbbc4b97c074e1b1c40e08f6c7529e/02-assignability-and-conditional-types/solution.ts#L131 alternative solution ```ts type XOR = bool1 extends bool2? false: true; ```