josephernest

Results 116 issues of josephernest

Congrats @brookhong for this very nice tool! I'd like to ignore certain keys: when A-Z, a-z is pressed (without CTRL, WITHOUT ALT, etc.) I'd like to **display nothing**. Where can...

I tried something like: * clone the repo * go to `bootnext-master` * launch this: "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" bootnext.sln or "C:\Program Files (x86)\MSBuild\14.0\Bin\amd64\MSBuild.exe" bootnext.sln and/or `/property:Configuration="Release|x64"` * but it always...

There are at least 3 projects that people name "Attiny core for Arduino IDE" on various websites/forums/blogs ([example](https://arduinodiy.wordpress.com/2015/03/29/sending-wireless-data-from-one-attiny85-to-another/)): * [arduino-tiny, "ATtiny core for Arduino"](https://code.google.com/archive/p/arduino-tiny/) available on code.google.com * [damellis' attiny,...

How to find the minimal box that contains all content of a page with `pdfrw`? ![image](https://user-images.githubusercontent.com/6168083/83492073-05b3eb80-a4b3-11ea-803d-9332081fe53b.png) I looked at page.MediaBox and page.CropBox but it does not help. ___ One solution...

I see you removed Github from the possible applications: https://github.com/igrigorik/ga-beacon/commit/6acd8627bb7be36f24f5516e9873c92719a50e55 Probably because README.md images are agressively "cached". But they surely is a solution: many repos have "badge" images, that are...

I'm using https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/3_NeuralNetworks/neural_network_raw.ipynb, it works. I have written a digit myself and saved it into a 28x28 PNG file, I would like to apply the neural network to it, to...

I'd like to detect *real* mouse wheelscrolls, and based on timing condition (to detect if there is a fast "acceleration"), then generate additional scrollwheels with `pynput`. Problem: the real wheelscrolls...

enhancement

When doing: ``` from pynput import keyboard def keyevent(key): name = key.name if hasattr(key, 'name') else key.char print(name) with keyboard.Listener(on_press=keyevent, on_release=keyevent) as listener: listener.join() ``` I get: b # ok...

When doing : ``` f = Sndfile('myfile.flac', 'w', Format('flac'), 2, 44000), ``` would it be possible to change the "FLAC encoding level" in order to increase the FLAC compression speed...

Is there a way to have a last line with the source of the cheatsheet? Example: user:~# curl cheat.sh/iptables Answer: > \# iptables > \# Program that allows configuration of...