scrubs

↗ HN profile [ 85.3 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. HN, (A) What are the recommended ways to encode Postrgres data at rest (tables+indexes+rows)? The Postgres documentation suggests options [0], but I have no familiarity with any. I prefer to not purchase something. (B)…

  2. I'm working on a pet project involving multi-cast. Unfortunately I don't know enough about how this scales. Consider a network of 50 Linux machines connected to 1 TOR switch. 10 processes in this network are multi-cast…

  3. Would like a recommendation for security badge system hopefully that, - allows me to print my own badges - sends employee ID and timestamp across a network where I can capture and store

  4. Consider the case where a developer wants to compress a chunk of memory or perhaps write it to a file. The input is held in a FixedBuffer object. For the purpose of this discussion, the only state changing method it…

  5. Consider the following: * 25 million lines of C/C++ code in one Git repo * Mission critical code * Statically linked except for system/libc etc * No cross compile. Apart from debug v. release builds there's one target…

  6. Periodically we see HN stories on non Von Neumann memory with some ability to compute in parallel on memory the processing unit is attached. Even if just for R&D where might I find a vendor?

  7. Context: For release builds I want all verbose and lower log calls omitted from code Ex: LOG_VERBOSE(...) // macro LOG_DEBUG(...); // macro where the macros are wrapped in a #ifdef such that it is removed depending on…

  8. Env: git monorepo 10 million lines lots eg. 10s of PRs per day. Validation est 90-120mins per PR Goal: validate PRs fast so release manager can approve them to close PR Ask: rather than some Jenkins job taking PRs one…

  9. https://github.com/rodgarrison/PGM-index was previously posted to HN. However, to leverage PGM for keys that are strings or blobs (arrays of unsigned bytes) one needs a map from the key as an array of bytes to some…

  10. See https://github.com/rodgarrison/rdpmc If you've been interested in micro-benchmarking code using Intel's PMU HW capability to capture per HW core metrics, this repository may be for you. The repository includes…

  11. Hackernews turned me onto a new bare metal hosting provider. (Thanks - great tip.) The default box comes with four Ethernet devices (2 Mellanox and 2 Intel cards). Two of them are bonded. My goal: * How can I…

  12. I've been using spot Amazon c5n metal instances to do DPDK NIC I/O development work. About $1.20/hr/machine. Spot instances are awesome for development work, and on the whole, using Amazon is painless. See…