Coder Social home page Coder Social logo

Comments (5)

rawsonj avatar rawsonj commented on August 12, 2024

Not really.

In the initial design of the program, I struggled with a simple, flexible way to store 300000 collected trivia questions.

A sqlite database was considered, but then users would have to know something about sqlite in order to edit questions.

So I decided on a stupid format for the files, but then I didn't want a monolithic file that was 300000 lines long, so we broke them up.

The algorithm for question selection picks a random file, then picks a random line from the selected file, which seemed like a good randomization.

But as I've grown up, I think a monolithic file would have been fine. I also think it would make it simpler to have different game modes, like 'sequential' (ie: start at the beginning of the file and walk each question to the end and repeat) or random, but I was learning python and programming at the time so it is what it is.

I've also been considering a python 3 port, just haven't found the time yet for this hobby program. Got a 3d printer and been messing with that for a bit. :)

from triviabot.

rawsonj avatar rawsonj commented on August 12, 2024

Oh, and the algorithm I used is very sparing on memory. One should not load the whole file into memory, that's just a waste.

from triviabot.

za3k avatar za3k commented on August 12, 2024

No, the algorithm you've used loads the entire file into memory (lines = fd.read().splitlines()), which is why I thought you might have split the file into many files.

from triviabot.

za3k avatar za3k commented on August 12, 2024

(P.S. have fun with your 3d printer!)

from triviabot.

rawsonj avatar rawsonj commented on August 12, 2024

lol, goes to show you how long it's been since I've read my own code.

Then yeah, ram usage would be a problem then. Wasn't my intention, but like I said, I was a student at the time.

from triviabot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.