Nagy Tibor

Results 22 issues of Nagy Tibor

The 1.1.0 release [introduced](https://github.com/BurntSushi/byteorder/commit/ef7f25767cb199a5738b2bc530d9a2a9a49abd7f) slice methods for the `ReadBytesExt` trait (`read_*_into`). It would be useful to have the corresponding write methods for the `WriteBytesExt` trait.

There's an useful feature in a couple open-source graphics apps (Blender, Inkscape, Krita, etc.) where you can enter simple arithmetic expressions in numerical input boxes. This feature would also be...

feature-request

``` thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', rustboyadvance-core/src/arm7tdmi/psr.rs:73:9 ``` Games hitting this panic: * Madden NFL 2002 (after the BIOS logo) * Starsky & Hutch (after...

game-bug

``` thread 'main' panicked at 'forbidden DMA source address adjustment', rustboyadvance-core/src/dma.rs:125:18 ``` Games hitting this panic right after the BIOS logo: * The Sum of All Fears * Tom Clancy's...

game-bug

![Screenshot_20200524_130628](https://user-images.githubusercontent.com/1627292/82752957-19c86080-9dc2-11ea-8335-e744c761719e.png) On the team select screen the character portraits should be rendered on top of the level selection slider, not below.

game-bug

The embedded development section states that MINIX support is nonexistent, however I don't think that's true anymore. @ids1024 has been working on MINIX support with some success, for example getting...

I think the Hungarian sentences needs some sanitization. There are numerous sentences including topics like prostitution, general swearing, nasal sex, rassist midgets and other things may not be suitable for...

## Description When parsing C-style hexadecimal floats (`C_HEX_STRING`/`HEX_FLOAT`) Lexical currently throws the following assertion failure in debug mode: ``` thread 'main' panicked at 'assertion failed: format.mantissa_radix() == format.exponent_base()', /home/tibor/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-parse-float-0.8.5/src/number.rs:60:9 ```...

bug
normal priority

There's this pattern in the `draw_line()` functions: ```rust let mut dx1 = 0; ... if w < 0 { dx1 = -1; } else if w > 0 { dx1...

I encountered this panic with `0.8.1` from crates.io and `rustc 1.21.0-nightly`. Here's a minimal test case of the problem: ## Test program ```rust extern crate docopt; use docopt::Docopt; const USAGE:...