Samuel Marks

Results 251 issues of Samuel Marks

```shell $ autoreconf -i Copying file ABOUT-NLS Copying file config.rpath Copying file m4/codeset.m4 Copying file m4/fcntl-o.m4 Copying file m4/gettext.m4 Copying file m4/glibc2.m4 Copying file m4/glibc21.m4 Copying file m4/iconv.m4 Copying file...

Python 3.8.6 with IPython 7.18.1 Replicate with: ``` ipython3 -c 'from argparse import ArgumentParser; p=ArgumentParser();p.add_argument("-a");p.parse_args(["-a"])' ``` Output: ``` usage: ipython3 [-h] [-a A] ipython3: error: argument -a: expected one argument...

Related: https://github.com/ipython/ipython/issues/12652 (with solution for IPython 7.18.1) Replicate bug: ``` ipython3 -c 'from argparse import ArgumentParser; p=ArgumentParser();p.add_argument("-a");p.parse_args(["-a"])' ``` Output with this PR: ``` usage: ipython3 [-h] [-a A] ipython3: error:...

One of the main reasons for me to use Redis is as a cache; so it is very important that I can insert keys with specify expires (using Redis; not...

## Test-case ``` from stdnet.odm import StdModel, CharField, Router class Bar(StdModel): foo = CharField(primary_key=True, unique=True) if __name__ == '__main__': models = Router('redis://localhost:6379?db=1') models.register(Bar) with models.session().begin() as transaction: transaction.add(models.bar.new(foo="Hello world")) transaction.add(models.bar.new(foo="Goodbye...

improvement

Build log: https://gist.github.com/SamuelMarks/5096576

Forthcoming! Any chance for an update? 😏

```nginx server { # My comment here server_name domain.name; listen 443; location /api0 { proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass...

### Zig Version c22f17e15 ### Steps to Reproduce and Observed Behavior On macOS Ventura 13.0 (22A380) with clang-1400.0.29.202 targetting x86_64-apple-darwin22.1.0 ``` $ brew install zig --HEAD ==> Cloning https://github.com/ziglang/zig.git Updating...

bug

#3 was from over 3 years ago, so thought I'd restart the conversation. Can probably contribute CMake support myself for y'all. Main advantages: - IDE integration; - CPack support (build...