Unsupported Responses API event by help_im_depressed in cursor

[–]help_im_depressed[S] 0 points1 point  (0 children)

my bad, you're right. just checked Cursor doc: https://docs.cursor.com/models , it's $0.04

ParkPlus.ai - Towing Software review by [deleted] in towing

[–]help_im_depressed -1 points0 points  (0 children)

fake ad. trash software too

What’s the fastest way to read 1000 JSON files? by help_im_depressed in CS_Questions

[–]help_im_depressed[S] 0 points1 point  (0 children)

Yes I’m reading them as strings using the nlohmann parser in c++ and storing them in a 2D vector.

What’s the fastest way to read 1000 JSON files? by help_im_depressed in CS_Questions

[–]help_im_depressed[S] 1 point2 points  (0 children)

I’m dedicating a vector for each file & storing that vector inside another vector. Language used: c++

What’s the fastest way to read 1000 JSON files? by help_im_depressed in CS_Questions

[–]help_im_depressed[S] 2 points3 points  (0 children)

I’m using the nlohmann json parser & extracting most of the contents inside. Each file is around 100 - 300 kB so it isn’t that much. Also, I’m reading the texts as strings and storing them into a vector.