PS: This file is only 9mb so it shouldn't be too big for anything to view it
Thanks https://www.dropbox.com/s/ru1qlmi92ky4y53/weirdFile.js?dl=0
1–10 of 10 posts
PS: This file is only 9mb so it shouldn't be too big for anything to view it
Thanks https://www.dropbox.com/s/ru1qlmi92ky4y53/weirdFile.js?dl=0
Opening this file in a hex editor shows that the file consists of almost all spaces, which I'm assuming are all on one line, making the text editors crash.
00000000 ef bb bf 2f 3e c2 a0 0a 20 20 20 20 20 20 20 20
00000010 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
*
00900000 20 20 20 20 20 20 20 20 3c 61
0090000a
Which means that except for those first 8 bytes and the last two, the whole file is just 0x20 (space in ASCII/UTF-8) repeated ad nauseam.Opening this file in a hex editor shows that the file consists of almost all spaces, which I'm assuming are all on one line, making the text editors crash.
Yeah, hexdump shows: 00000000 ef bb bf 2f 3e c2 a0 0a 20 20 20 20 20 20 20 20 00000010 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 * 00900000 20 20 20 20 20 20 20 20 3c 61 0090000a Which means that except for those first 8 bytes and the last two, the whole file is just 0x20 (space in ASCII/UTF-8) repeated ad nauseam.
Earlier quoted context omitted.
Yeah, hexdump shows: 00000000 ef bb bf 2f 3e c2 a0 0a 20 20 20 20 20 20 20 20 00000010 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 * 00900000 20 20 20 20 20 20 20 20 3c 61 0090000a Which means that except for those first 8 bytes and the last two, the whole file is just 0x20 (space in ASCII/UTF-8) repeated ad nauseam.
Why would long lines crash editors?
Earlier quoted context omitted.
Yeah, hexdump shows: 00000000 ef bb bf 2f 3e c2 a0 0a 20 20 20 20 20 20 20 20 00000010 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 * 00900000 20 20 20 20 20 20 20 20 3c 61 0090000a Which means that except for those first 8 bytes and the last two, the whole file is just 0x20 (space in ASCII/UTF-8) repeated ad nauseam.
Why would long lines crash editors?
Earlier quoted context omitted.
Why would long lines crash editors?
If the editor has some built in line length limit then exceeding that limit might lead to a crash (depending upon how the editor is coded).
Earlier quoted context omitted.
If the editor has some built in line length limit then exceeding that limit might lead to a crash (depending upon how the editor is coded).
Right but it looks like (i was able to load it for Atom and Notepad++ but very slow) they perform soft wrap on these long lines