Jason Young

Results 9 issues of Jason Young

Fantastic work so far! I [found something a few weeks ago](http://www.phantompilots.com/viewtopic.php?p=219170#p219170), but don't have the experience to really vet it out. ser2net allows two connections to a serial port -...

Pardon the potentially-simple question/issue. Given a simple class, what is preventing aiocron from properly executing the decorated function? ```py class MyClass: @aiocron.crontab('* * * * *') async def crontest(self): print(datetime.now())...

It would appear that very large result sets (5 million rows) causes a segfault. ``` this.query() .on('each', function(row, index, last) { console.log(row, index); }) .select(["id", "name", "country"]) .from("users") //.limit(1000) .execute(function(err,...

Using [spatial functions](http://www.mysqlperformanceblog.com/2013/10/21/using-the-new-spatial-functions-in-mysql-5-6-for-geo-enabled-applications/) would be a pretty huge win for MySQL users in this library. Of course, there are a number of ways one could go about this, and since...

GeoNames builds two files each day, `modifications-$date.txt` and `deletes-$date.txt`, where $date is the previous day. This allows for incremental updates without having to rebuild the entire table. Having commands that...

As you noted in the README, the full GeoNames table consist of over 6 million records, which include [a number of feature codes](http://www.geonames.org/export/codes.html). Being able to restrict on feature codes...

Curious if this would be useful to anyone else... but after having 500+ songs in my queue, sometimes I kind of lose track of what's been played, or what might...

I'm running an i7-6700K (4.2 GHz) with 32GB RAM. XSC suggested running 4 threads - one per each physical core - and I'm hitting between 240-250 H/s, which is about...

[In reference to #2] Since everyone in the PHP community (even outside of Laravel) are pushing tests now, I might (personally, of course) challenge your statement that tests aren't central...