Philip Deuchler

Results 9 issues of Philip Deuchler

Note: I'm pretty new at vim so there's a good chance this is user error. I just installed vim 8 via homebrew and made the homebrew binary my default executable....

bug

Expected Routes: ``` /gardens/ /gardens/(garden_pk)/ /gardens/(garden_pk/notes/ /gardens/(garden_pk/notes/(note_pk)/ /gardens/(garden_pk)/plants /gardens/(garden_pk)/plants/(plant_pk)/ /gardens/(garden_pk)/plants/(plant_pk)/notes/ /gardens/(garden_pk)/plants/(plant_pk)/notes/(note_pk) ``` Router: ``` python # url router router = ExtendedSimpleRouter() garden_router = router.register(r'gardens', GardenViewSet, base_name='garden') garden_router.register(r'notes', GardenNoteViewSet, 'gardens-note', parents_query_lookups=['gardens'])...

I think there might be some issues running glommio in docker on the M1 machines... I've been having some trouble with timers and sockets, and after stripping things down to...

I'm currently trying to use a DS18B20 temperature sensor with an arduino and gobot but I can't find any golang implementations of the 1wire protocol. Has anyone used one of...

interface-request

Context: https://github.com/servo/font-kit/issues/233, https://github.com/servo/pathfinder/pull/548 Once font-kit updates it's deps `plotters` will need to do so as well

bug

**Describe the bug** The SVGBackend with Histograms fails to draw the actual chart content and does so without errors. I believe there's something going on with the types, but i'm...

bug

Due to the recent nightly `stdsimd` changes the dependency `pathfinder_simd` needs an update in order to build `font-kit` https://github.com/servo/pathfinder/issues/550

And how can I change that path? I'm getting "Out of disk space" errors, but I can't find the files to delete

``` python >>> cal.parse("end of day") (time.struct_time(tm_year=2016, tm_mon=9, tm_mday=2, tm_hour=17, tm_min=0, tm_sec=0, tm_wday=4, tm_yday=246, tm_isdst=1), 3) >>> cal.parse("tomorrow end of day") (time.struct_time(tm_year=2016, tm_mon=9, tm_mday=3, tm_hour=9, tm_min=0, tm_sec=0, tm_wday=5, tm_yday=247, tm_isdst=-1),...