Alessio Cosenza
Alessio Cosenza
## 🐛 Bug When passing `nan` as a parameter for a notebook, even a simple one with only one cell with ```python print(parameter) ``` we get an output notebook with:...
Hello, Since a couple of days, when I execute something like `err := client.UsersById(user).EventsById(eventID).Delete(context.Background(), nil)` it happens that I receive an error with `HTTP/1.x transport connection broken: malformed HTTP response`....
Hello, I'm trying to use this sdk to get the emails from a mailbox. I execute this code to get the mails: `result = client.users_by_id("").messages.get.resume` But I get these errors:...
Hello, I would like to add `OAUTH2` support to this library and I started working on it. This is what I came up with right now. I'm not 100% sure...
- [x] Base structure - [ ] Memory regions wait cycles (): - [x] BIOS - [ ] Work RAM 32k - [ ] I/O - [ ] OAM -...
Now we have `{R0, R1, }` in the register list (I mean at the end we would have an additional comma). Also, to be consistent with the datasheet we should...
Right now we're creating I/O registers with Read/Write rights since they have to be writable/readable by code (bios for example). We should maybe investigate a smarter access control, depending on...
Right now we output the offset in the disassembler, we should instead print the target address. This is non-trivial since the disassembler funcion doesn't have access to the pc value
It would be nice to split the tests between the decoding part and the executing part, right now we're testing everything in the same functions. Also, we should "standardize" how...
```rust pub enum ArmModeInstruction { DataProcessing { condition: Condition, alu_instruction: ArmModeAluInstruction, set_conditions: bool, op_kind: OperandKind, rn: u32, destination: u32, op2: AluSecondOperandInfo, }, ... ``` We can remove `op_kind` since it...