Peter Lithammer

Results 23 issues of Peter Lithammer

The official Python driver offers `region_name` which is the full name for what you call `region_code`, i.e. "Californa" instead of "CA". ``` python >>> city.record_by_addr('64.233.161.99') >>> {'area_code': 650, 'city': 'Mountain...

When opening a shell script in your home folder (`~/foo.sh`), bash-language-server starts looking through your entire home directory for files. There are two main problems with this: 1. It takes...

**Feature** I would like for dmypy to be a fully fledged language server. Obviously it would only support diagnostics (which would make this much simpler). But this would be very...

feature
topic-daemon

https://www.python.org/downloads/release/python-3120a7/

`github.com/golang/mock` is no longer maintained and `go.uber.org/mock` is the recommmended fork alternative. > Update, June 2023: This repo and tool are no longer maintained. Please > see go.uber.org/mock for a...

The https://github.com/golang/mock repo is unmaintained and has been archived. They promote https://github.com/uber/mock instead. > Update, June 2023: This repo and tool are no longer maintained. Please see [go.uber.org/mock](https://github.com/uber/mock) for a...

https://github.com/googleapis/google-cloud-go/blob/dc3e0011784d9f55d791d70146539ac84c6bd1df/migration.md

It would be nice if the was an option to parse output from tools that output JSON lines[^1]. For example Selene[^2] is such a tool: ```console $ selene --display-style json2...

help wanted

I'm running OS X 10.7.3 and Safari 5.1.5 (7534.55.3). I installed QuickNFO via App Store and download the the pre-compiled qlgenerator plugin located https://github.com/downloads/planbnet/QuickNFO/QuickNFO.qlgenerator.zip (link from README file on project...

Mostly related to lines longer than 80 characters. ``` bash $ flake8 app.py app.py:61:80: E501 line too long (84 characters) app.py:89:80: E501 line too long (87 characters) app.py:95:80: E501 line...