josephernest

Results 116 issues of josephernest
trafficstars

Would you have a live demo of Transe.js library @yckart ? The [current one](http://yckart.github.io/Transe.js) only shows a big title. Would you have an example with both non-zooming parts (e.g. top...

Are there no binaries for Python 2.7 - Windows? Currently pip install plyvel produces installation error on Python 2.7 - Windows if you don't have the right compiler installed. Thanks...

help-wanted
builds

Is it possible (possibly already implemented somewhere?) to double-click on a tag to edit it? (be able to change spelling if typos, etc.)

When doing: import tfr I get this error: from sklearn.base import BaseEstimator, TransformerMixin ImportError: No module named base It's true that no `base.py` exists in this directory: https://github.com/bzamecnik/tfr/tree/master/tfr I am...

When I use REPL with R inside ST2, then after closing the R tab, I often have `rterm.exe` going full CPU usage in Windows process manager. Any idea where it...

Coming from R, it would be great to have `CTRL+R` run the current line, and automatically go to next line. How would you do this? I imagine I should edit:...

Would be super great to add support of [Pari/GP](https://pari.math.u-bordeaux.fr/download.html). Any idea? The interpreter is usually something like "C:\Program Files (x86)\Pari64-2-9-3\gp.exe". Which file should I modify to add support for it?

This doc page gives a hello-world example: https://websockets.readthedocs.io/en/stable/index.html using the `asyncio` paradigm. > It supports several network I/O and control flow paradigms: > The default implementation builds upon [asyncio](https://docs.python.org/3/library/asyncio.html#module-asyncio), Python’s...

documentation

When doing: ``` import midi for track in midi.read_midifile("song.mid"): for e in track: if e.__class__.__name__ not in ["NoteOnEvent", "NoteOffEvent"]: continue print e.tick, "Note", e.data[0], "on" if e.data[1] == 110 else...

Thank you @cwilso for this cool example of Web Audio / Web MIDI! Currently it works out-of-the-box on Chrome :) I thought that thanks to your polyfill/shim on [Line 7](https://github.com/cwilso/monosynth/blob/gh-pages/index.html#L7):...