Timeline for Mandelbrot image in every language
Current License: CC BY-SA 3.0
12 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Nov 15, 2019 at 11:55 | comment | added | rosuav | Works in Python 3 at the cost of one additional byte: x//d instead of x/d in the putpixel line. | |
| Sep 27, 2017 at 2:27 | history | edited | MD XF | CC BY-SA 3.0 | deleted 5 characters in body |
| Mar 9, 2014 at 8:27 | comment | added | meawoppl | This post totally got me started on the 153 character version I posted below :) | |
| Mar 9, 2014 at 5:51 | comment | added | nneonneo | Technically disallowed: this doesn't any graphical output feature of Python itself (and Image.show() implicitly saves a temporary file). | |
| Mar 9, 2014 at 5:07 | comment | added | primo | @meawoppl another 7 :D | |
| Mar 9, 2014 at 5:04 | history | edited | primo | CC BY-SA 3.0 | deleted 7 characters in body |
| Mar 9, 2014 at 3:10 | comment | added | meawoppl | Complex types can be initialized like: c=1+2j, which I think would save you a couple characters with: z=o=x/9e4-2+(x%d/150.-2)*1j;c=99 | |
| Mar 9, 2014 at 0:18 | history | edited | primo | CC BY-SA 3.0 | deleted 3 characters in body |
| Mar 8, 2014 at 23:09 | history | edited | primo | CC BY-SA 3.0 | deleted 2 characters in body |
| Mar 8, 2014 at 16:28 | history | edited | primo | CC BY-SA 3.0 | deleted 15 characters in body |
| Mar 8, 2014 at 16:15 | comment | added | Geobits | You can shave off 3 if you get rid of the y loop. r=range(d*d), use x/d and x%d for x and y. | |
| Mar 8, 2014 at 16:06 | history | answered | primo | CC BY-SA 3.0 |