Kevin Matzen

Results 23 issues of Kevin Matzen

The check for EOF appears here. https://github.com/matteobertozzi/Hadoop/blob/master/python-hadoop/hadoop/io/SequenceFile.py#L346 If that check reports that we are not at EOF, then it attempts to read any sync. Then it proceeds to read records...

Is there anything in this firmware that could be factored out in order to protect IP while also giving the community something to hack on?

I'm trying to get a better idea of the lifecycle of a bucket contents with respect to a offline ETL. For example, if an ETL has been executed on the...

The youtube script uses -k-max, but reconstruct.cpp looks for -threshold. If you give reconstruct.cpp -k-max, it doesn't check that it isn't a supported option and continues silently as if -threshold=0.

opencv-python was recently bumped to 4.9.0.80 on pypi. The wheel for x64 macOS seems to indicate that it's built for macOS 10.16 or later and gets pulled in by pip...

Just a friendly heads up, a Belkin app for a product called wemo was failing on Android, so I examine the log with logcat and found that it's calling code...

[pyleargist==2.0.5](https://pypi.python.org/pypi/pyleargist/2.0.5) in pypi seems broken. It's missing src/leargist.pxd. This file is in their repo though. [bitbucket src/leargist.pxd](https://bitbucket.org/ogrisel/pyleargist/src/8024021a0d229ed1e1459a5d6d1700da4aee28b1/src/leargist.pxd) Recommended workaround: update the install_python.sh script to install pyleargist from the bitbucket repo...

https://github.com/seanbell/opensurfaces/blob/master/server/mturk/models.py#L237 ``` base_url = 'http://' % settings.SERVER_IP ``` Missing the string placeholder. Change to either ``` base_url = 'http://%s' % settings.SERVER_IP ``` or ``` base_url = 'http://' + settings.SERVER_IP ```...

Somewhere in config/settings.py, `MTURK_CONFIGURE_QUALIFICATIONS` needs to be defined if you set `MTURK_PIPELINE_ENABLE = True`.

I ran the existing install_postgres.sh script. ``` createdb: database creation failed: ERROR: new encoding (UTF8) is incompatible with the encoding of the template database (SQL_ASCII) HINT: Use the same encoding...