Hacker News new | past | comments | ask | show | jobs | submit login

No mention of the data format. Is it json, csv what? I know you can always head -n the file but a little hint would be helpful!



It looks like an ASCII-formatted table. Pretty disappointing that it isn't machine readable out of the box.


What's not machine readable about an ASCII table? A fixed width table has its own advantages over eg CSV - for instance, to read a specific field you can reach it by offset rather than having to count delimiters.


fixed width might have technical advantages but CSV has the advantage of being able to be read by a lot of things out of the box.


So does fixed width. Excel, MySQL, R, Perl... :)


sed 's/[[:blank:]]//g' dataset.dat | sed 's/|/\t/'




Consider applying for YC's Fall 2025 batch! Applications are open till Aug 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: