21

I never thought that the excel row limit (2 ^ 20) would be a problem/insufficient in my life.

Comments
  • 8
    What. The Fuck. Do you do?
  • 1
    @nitwhiz I wanted to store a list that contains the names of my training data examples, so that it's faster loading in and reading the excel file, rather that having to wait for os.listdir() lmao, and I have 1,200,000 training examples.
    I actually just ended up saving a .npy file and it works even better. Loads in milliseconds :)
  • 1
    Are you generating some future thedailywtf material by using excel as a database? Please think of people who come after you and don’t
  • 0
    You could use csv files instead
  • 0
    Depending on the task most of the time I use simple text files with tab separated line records and standard unix tools like grep, awk, sed. If I don't need to read in the whole file at once it's the fastest possible solution
Add Comment