Clemens Koza

Results 13 issues of Clemens Koza

I am very disappointed that you are not adhering to `icsfmt`. How am I supposed to properly read the code?

To my understanding, the extracted-protos/{main,test} directories are only used to make protos from dependencies available to protoc. These protos were already compiled in the dependency projects, so the class files...

as the title says. In recent React versions, FlexLayout will show the following warning: ``` Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details....

I've added the following code to `lib.rs` (see [here](https://rustwasm.github.io/wasm-bindgen/examples/import-js.html)): ``` #[wasm_bindgen(module = "./helper")] extern "C" { pub fn foo(); } ``` (plus a call to `foo` in `run()`) and tried...

I was a little surprised that, when using `aio_as_trio` as a decorator, it only works on regular coroutine functions. For the followig test, only the non-commented parts work: async with...

I have encountered this in several STM32F4 svd files (not looked at other series): several fields would be named `UARTxRST`, but their `EN` counterpart as well as the field's description...

stm32f4

I've spent two or three hours trying to understand why a test case wouldn't work, it went roughly like this: ```rust #[tokio::test] async fn test_serial() -> Result { let (mut...

### Describe the bug iframes should trigger the [onload event](https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload) when they are finished loading, however in at least some browsers, an event handler for that event fails to trigger....

Right now, the `Uart` struct has two methods pub fn read(&mut self, buffer: &mut [u8]) -> Result pub fn write(&mut self, buffer: &[u8]) -> Result for receiving and sending data....

Server-side rendering gets me the following exception at import time: ``` ReferenceError: document is not defined at new DragDrop (.../node_modules/flexlayout-react/src/DragDrop.ts:40:23) at .../node_modules/flexlayout-react/src/DragDrop.ts:4:23 at Object. (.../node_modules/flexlayout-react/src/DragDrop.ts:3:1) ... ``` `DragDrop` has a...