Steffen

Results 4 issues of Steffen

Fixes #3. ## Explanation From the [reference source implementation](https://referencesource.microsoft.com/#mscorlib/system/io/binaryreader.cs,441453fdc4e511bf) of `BinaryReader`: ```c# public virtual bool ReadBoolean(){ FillBuffer(1); return (m_buffer[0]!=0); } ``` ```c# public virtual sbyte ReadSByte() { FillBuffer(1); return (sbyte)(m_buffer[0]);...

Hi James, first of all - Great work! This library was just what I needed, when I needed it :smiley: Unfortunately something isn't quite working right with the `ReadBoolean()` method,...

Hey, first things first: These are some really useful chrome extensions. Thanks for publishing! I've implemented some new options that allow users to specify custom stream resolutions e.g. for multi-monitor...

## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/nestjs/nest/blob/master/CONTRIBUTING.md - [ ] Tests for the changes have been...