Andrew
Andrew
Are these data structures safe to manipulate from multiple goroutines, or should we use explicit channels / locks to enforce thread safety?
Could Queue get a `NewCappedQueue()` edition for fixed-size FIFO queues?
Sometimes the ShiftIt hotkey recorder gets confused, and won't let me assign a new hotkey combination unless I clear out all the olds ones and relaunch the app.
Some common headers will be automatically pulled into a project indirectly via other headers, for example `errno`. Yet, it is good form to explicitly include such headers when making direct...
Hi, A common pattern in C/C++ is to define function signatures in a separate .h[pp] file, and then include the signatures into the implementation .c[pp] file. Would be helpful for...
Is there a REST interface and/or Web UI for searching through images?
Some code could be better expressed with blocking database queries. Could we implement blocking versions of persist's query functions?
In https://github.com/nearinfinity/node-persist/blob/master/lib/type.js
MySQL provides `SELECT ... FOR UPDATE`, a locking read. It would be nice for Node apps to access this through node-persist rather than a raw SQL command. http://dev.mysql.com/doc/refman/5.0/en/innodb-locking-reads.html