Peter Atashian

Results 39 issues of Peter Atashian

Currently when `cc` uses the `EnumSetupInstances` COM API to locate VS installations it just picks whatever is first, without any attempt at finding the newest version. This results in issues...

`cc` unconditionally looks for the `Hostx64` toolchain when on 64-bit Windows, and certain editions of Visual Studio only install a `Hostx86` toolchain, causing `cc` to be unable to find `link.exe`....

There's a large number of crates out there which are Windows specific, so it is essential that crater be able to test those crates. ## CLI usage on Windows *...

A-increase-coverage
O-windows
E-needs-help

`VirtualAlloc` is not a heap. It is a page allocator. Pages are rather large, often 4KB. `VirtualAlloc` cannot be used to allocate part of a page. As such you're wasting...

When processing a gif with gifsicle I'd like to be able to remove the transparency and replace it with a solid background color. Can a flag be added to do...

https://docs.microsoft.com/en-us/windows/desktop/fileio/opportunistic-locks Use opportunistic locks, also known as oplocks, when reading from files. The user may want to manipulate files while their RLS powered editor is open, and some tools will...

enhancement

Specifically `into_object` `into_array` and `into_string`. These methods would significantly improve ergonomics in certain cases by reducing large match expressions into simple method calls. ```Rust match json { Value::Object(x) => x,...

enhancement

I'm decoding an animated GIF by using the `image` crate and doing: ```Rust let decoder = GifDecoder::new(BufReader::new(File::open(path)?))?; return Ok(decoder.into_frames().collect_frames()?); ``` For most GIFs this works fine however it is tripping...

``` The Application Cache API (AppCache) is deprecated and will be removed at a future date. Please consider using ServiceWorker for offline support. candybox2.github.io Loading failed for the with source...

When using the mouse wheel to scroll in the Registry it is so frustratingly slow, forcing me to click and drag the narrow scrollbar. Please make mouse wheel scrolling much...

core