Timeline for Mandelbrot image in every language
Current License: CC BY-SA 4.0
11 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jun 17, 2020 at 9:04 | history | edited | CommunityBot | Commonmark migration | |
| Oct 4, 2019 at 12:57 | history | edited | Engineer Toast | CC BY-SA 4.0 | Shaved two bytes with `Next y,x` |
| Oct 9, 2017 at 18:53 | history | edited | Engineer Toast | CC BY-SA 3.0 | Saved one whole byte! |
| Oct 8, 2017 at 17:55 | comment | added | Taylor Raine | I believe that you can get away with removing another byte by swapping 2^20 with 1E6 | |
| Sep 28, 2017 at 12:31 | comment | added | Engineer Toast | @TaylorScott I remember the RowHeight trick from the VBA tips post and had meant to integrate it after I got all my pretty pictures. That was a nice chunk'o'bytes, thanks. | |
| Sep 28, 2017 at 12:30 | history | edited | Engineer Toast | CC BY-SA 3.0 | Saved more bytes |
| Sep 28, 2017 at 5:03 | comment | added | Taylor Raine | @EngineerToast you can drop the () from the sub name,you should change (j<99) to (j<d) and you can, for the purpose of making square cells use only Cells.RowHeight=48 in place of the Cells.RowHeight=9,Cells.ColumnWidth=1 - this does making messing around with your output more difficult but has been accepted as valid by the community - | |
| Sep 27, 2017 at 22:38 | comment | added | ceilingcat | Does it really need to be >=4 or can you get away with >4? Also, can replace j<99 with j<D. | |
| Sep 27, 2017 at 12:07 | comment | added | Engineer Toast | @ceilingcat Thanks. That was a carryover from my original which had specialized functions for complex number math. | |
| Sep 27, 2017 at 12:05 | history | edited | Engineer Toast | CC BY-SA 3.0 | Saved 5 bytes |
| Sep 26, 2017 at 20:39 | history | answered | Engineer Toast | CC BY-SA 3.0 |