Mark Phillips

Results 11 issues of Mark Phillips

A data entry of "1,310.1 ft" is not sorted correctly. Please take a look at my jsfiddle - https://jsfiddle.net/pmi2018/7etqo15k/21/. Be sure to select the "show 25 entries" in the top...

corpus.py line 38 needs to change from return yaml.load(data_file) to return yaml.load(data_file, Loader=yaml.FullLoader) per this update to yaml: https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation

Your usage notes for the view depends on the task returning a task_id: ``` def progress_view(request): result = my_task.delay(10) return render(request, 'display_progress.html', context={'task_id': result.task_id}) ``` but a transaction.on_commit does not...

### Details I need to zoom the SQLite Studio window. I can change the font size, but that does not apply to the menus or other application text. I want...

enhancement

Ran into a weird parser issue. ``` from dateutil.parser import parse dt = parse("2009:03:29 12:30:23") dt datetime.datetime(2022, 5, 5, 12, 30, 23) print(dt) 2022-05-05 12:30:23 ``` The string date format...

I have a model that stores data of unknown type in a BinaryField. The data is saved using `pickle.dumps` and read using `pickle.loads`. I need to do this because the...

Is there a way to express all states as the start of a transition? In other words, if there is a transition that causes all states to go to one...

* face_recognition version: face-recognition==1.3.0, face-recognition-models==0.3.0 * Python version: Python 3.8.16 * Operating System: Ubuntu 22.04.2 LTS ### Description I have a face_recognition task that is part of a larger Django...

I made a couple of changes to get the code to work on a Pi Zero 2 W running Debian Bullseye. 1. Populate `/etc/wpa_supplicant/wpa_supplicant.conf` section I added in the configuration...

I am taking real time measurements from an ADC in a while loop, so I print one line at a time. For example, ``` while True: {measure data} table=[[148, 36,...