geeio·7 bulan yang lalu·discussDon’t know why, but this was an approachable intro to FP for me, just the right level of detail for me to grok why.
geeio·4 tahun yang lalu·discussThis might be a good fit for roaring bitmaps [1] or Minimal Perfect Hashing[1] http://roaringbitmap.org/
geeio·5 tahun yang lalu·discussPressure treated wood is kinda like that (it uses something other than tar).[1]: https://www.homedepot.com/c/ab/types-of-pressure-treated-woo...
geeio·5 tahun yang lalu·discussI’ve used lulu.com for this in the past for small one-off print jobs (I think it was 5$ for something around 80 pages)
geeio·5 tahun yang lalu·discussAgreed, when you start to need these kind of optimizations, go might not be the best choice
geeio·5 tahun yang lalu·discussI think you could do the pointerless version (the one using an int32 index) of this in go via unsafe casting.I’ll try it out later
geeio·6 tahun yang lalu·discuss> we had to make release branches SOX-compliant, adhering to additional rules and constraints.Does anyone have an example of what is required to make a branch SOX-compliant?
geeio·6 tahun yang lalu·discussIt is probably closer to something like avro, but with more features and less java focus.
geeio·7 tahun yang lalu·discussKafka works best when the data it is returning to consumers is in the page cache.When consumers fall behind, they start to request data that might not be in the page cache, causing things to slow down.
geeio·7 tahun yang lalu·discussH2 has a disk persistence mode.Though I’d probably use SQLite for this use case
geeio·8 tahun yang lalu·discusshttps://pdos.csail.mit.edu/6.824/schedule.htmlRead the paper/notes from the schedule and you’ll learn a ton (took this course as an undergrad)
geeio·8 tahun yang lalu·discussDo you like the reMarkable tablet?I currently have an iPad Pro but I really don’t like reading PDFs on it. I’d love to stop printing out papers and an eink display would be nice.EDIT: just read your review linked in the post
geeio·8 tahun yang lalu·discussNVMe is the spec for controllers supporting NVM.Think PCI vs PCIe https://en.m.wikipedia.org/wiki/NVM_Express
geeio·9 tahun yang lalu·discussTime to install is much faster, bundle install is just so damn slow.And now that I'm not a ruby dev any more, I don't install a modern ruby on my computer.
geeio·9 tahun yang lalu·discussI do the same thing. Small projects start with the job queue in postgres.As things eventually scale up, I move the queue to its own dedicated postgres node.Once that starts to be too slow, I finally move to redis/kafka. 99% of things never make it to this stage.