Eric Kim
Eric Kim
If I'm reading the code correctly, this is how MIDIVisualizer is generating+exporting the MIDI visualizations: "[MIDIVisualizer issues OpenGL draw commands to draw a given frame] -> [OpenGL executes the draw...
By checking my resource util, I found out that MIDIVisualizer is already using the GPU during rendering (likely because OpenGL is able to auto-utilize the GPU if one is available,...
`> First, let me say that the NVMe SSD can do way more than 3.5MB/s, base of your now seemingly delete comment, you were using MPEG4 which would be a...
@GrayHatter That would work only if camera taking the picture was completely "level" with the paper (ie only in-plane rotations, no out-of-plane rotations). Because perspective effects modify lengths in a...
@GrayHatter The paper size that I used in those pictures are Paper Letter, ie 8.5 inches by 11 inches. But yup, if the user captures the picture in a "sane"...
[Partial Fix] The slowdown was due to the Grader asking for a large number of solutions, and then sorting them by grade. A quick and dirty fix is to have...
@iFA88 Do you happen to know what it would take to get "import external SST files" with "perform reads on my Rocksdb table from python"? One idea is: I could...
Given that python-rocksdb's `rocksdb.DB(db_name, opts, read_only=read_only)` is a thin wrapper around `rocksdb::DB::Open()`, I'm ~90% sure that the following pipeline will work for ingesting externally-generated SST files into `python-rocksdb`: ``` (1)...