James Thomas Moon

Results 123 issues of James Thomas Moon

This `java.lang.StackOverflowError` occurred while editing a simple ps1 file. (10 statements, 4 comments). Unfortunately, I do not know how to reproduce the Issue. Only seen once. I was last messing...

I would like to use dreampie with the `-B` option. Specifically, I don't want the python interpreter to write `.pyc` files. Generally, I would like to pass the python interpreter...

Currently, installing alpine results in a new `wsl.exe --list --verbose` entry named `Alpine`. Using [release 3.1.5.0](https://github.com/yuk7/AlpineWSL/releases/tag/3.15.0-0), for example: ```text PS> Invoke-WebRequest https://github.com/yuk7/AlpineWSL/releases/download/3.15.0-0/Alpine.zip -out Alpine.zip PS> Expand-Archive Alpine.zip PS> cd Alpine...

I wanted to build `goproxy` from source. I cannot find the instructions for that. I would like to build `goproxy`, then install `goproxy` to path `/opt/goproxy`. ## Expected Behavior Instructions...

From https://github.com/h2non/filetype.py/blob/v1.0.5/filetype/utils.py#L3-L18 ``` _NUM_SIGNATURE_BYTES = 262 ``` `_NUM_SIGNATURE_BYTES` number of bytes is read from passed data to determine the signature. `_NUM_SIGNATURE_BYTES` could be considered the recommended number of bytes needed...

tl;dr docs allude to two different nginx modules `ngx_http_subs_filter_module` and `ngx_http_sub_module`. [The documentation](https://docs.gerbera.io/en/stable/run.html#network-setup) example `nginx.conf` is ``` server { listen gerbera.DOMAINNAME:80; server_name gerbera.DOMAINNAME; location / { proxy_set_header Host $host; proxy_set_header...

Function [`chrono::Local.datetime_from_str`](https://docs.rs/chrono/0.4.9/chrono/offset/trait.TimeZone.html#method.datetime_from_str) ignores leading or trailing whitespace in the passed variable `fmt`. [Given code](https://play.rust-lang.org/?version=beta&mode=debug&edition=2021&gist=53b8ea30e3f6f1477e994f09d7dbba70) ```rust extern crate chrono; use chrono::{Local, TimeZone}; fn main() { let a = Local.datetime_from_str("2000-01-01 02:03:01", "%Y-%m-%d...

The download `ssf-win-x86_64-3.0.0.zip` appears to be a trojan. https://www.virustotal.com/gui/file/329748f6ea665d1c398cc09f19cee5784d5356eaf8a49988c069d4bffbca9f26/detection

### Issue description `python -m pipenv install` will raise an Error while traversing directories if a subdirectory cannot be accessed. The `install` process fails. ### Expected result `python -m pipenv...

Type: Possible Bug
PR: awaiting-review
triage

For `GzDecoder.read_exact`, passing a `v = Vec::::with_capacity(5)` as a `&mut [u8]` (via call to `as_mut()`) will result in `Ok(())` yet `v` will have no data (`v.len() == 0`). ### reproduction...