rwalle
rwalle
### Describe the bug Parameter decorator is part of TypeScript experimental decorator implementation, and is not in the tc39 [decorator proposal](https://github.com/tc39/proposal-decorators/) that is at stage 3. While they could potentially...
**Describe the bug** `.config/Code/User/workspaceStorage//ms-vscode.js-debug/.profile` takes over 100MB for **each** workspace, and the entire `.config/Code` could use several GBs of disk storage just because of that. I only saw this on...
Maintainers, if you could take a look at [issues](https://github.com/microsoft/vscode-js-debug-browsers/issues) in the vscode-js-debug-browsers repo it will be great. These issues have no progress for most of the past year. Since issues...
https://github.com/babbleberry/rpi4-osdev/blob/c9a2a1429ae7cf0f6d1632c3f4a92fb8457e6c07/part4-miniuart/io.c#L147 the type should be `const char *` per convention.
https://github.com/babbleberry/rpi4-osdev/blob/c9a2a1429ae7cf0f6d1632c3f4a92fb8457e6c07/part3-helloworld/io.c#L54-L63 The offsets are represented by decimal numbers which are a bit strange, especially as the base address uses hex values. This makes it more difficult to cross reference the...
According to [BCM2711 datasheet](https://datasheets.raspberrypi.com/bcm2711/bcm2711-peripherals.pdf) https://github.com/babbleberry/rpi4-osdev/blob/c9a2a1429ae7cf0f6d1632c3f4a92fb8457e6c07/part3-helloworld/io.c#L74 Documentation for `AUX_MU_LCR_REG` says: Therefore 3 (0b11) is not a valid value, and the correct value should be 1. https://github.com/babbleberry/rpi4-osdev/blob/c9a2a1429ae7cf0f6d1632c3f4a92fb8457e6c07/part3-helloworld/io.c#L77 0xC6 is not a valid...
https://github.com/babbleberry/rpi4-osdev/blob/c9a2a1429ae7cf0f6d1632c3f4a92fb8457e6c07/part3-helloworld/io.c#L12 The tutorial here is for Raspberry Pi 4 which [comes with BCM2711](https://www.raspberrypi.com/news/raspberry-pi-product-series-explained/), and there are clearly 58 GPIO lines in the [datasheet](https://datasheets.raspberrypi.com/bcm2711/bcm2711-peripherals.pdf) (Section 5.1). It is not clear where...