Jurjen N. E. Bos

Results 9 issues of Jurjen N. E. Bos

The font 5x8 was corrupt, since the font file had 9 lines per character. Here is the fixed file. [5x8.flf.txt](https://github.com/pwaller/pyfiglet/files/3157385/5x8.flf.txt)

help wanted

If you use a font that does not have support for lower case, the output appears random. ```In [3]: from pyfiglet import Figlet ...: f = Figlet(font='ugalympi') ...: print(f.renderText('this appears...

help wanted

Apply the following optimisations that use builtin C code where available: Since Python 2.7 (i.e. always), the length of an integer can be computed with .bit_length() Since Python 3.8, the...

I saw that the code for Crypto.Util.number.size is: ``` def size (N): """Returns the size of the number N in bits.""" bits = 0 while N >> bits: bits +=...

enhancement

How about this one: ``` >>> 4 ** 300 == 8 ** 200 True >>> 4 ** 300 is 8 ** 200 False >>> 4 ** 30 is 8 **...

I love this program! It is so smooth. Unfortunately, a Mandelbrot fan like me knows where to zoom in to hit the iteration limit. Is there a simple way to...

### Description of the new feature / enhancement Smooth the mouse input using a low pass frequency filter to allow accurate positioning for people with wobbly fingers (like me). ###...

Needs-Triage

This is your chance to be better that the rest. Have a good look at any half past clock face in the set, and compare to the clock on your...

Running gforth on Android works, but I have a hard time reading files: I get permission denied for everything. Gforth asked for permissions to read audio files and pictures, but...