Live data from Hacker News

Viewing profile — bazizbaziz

bazizbaziz

HN member
Joined
Fri, May 15, 2015, 5:18 PM UTC
HN karma
167
Public activity
28 items

About bazizbaziz

No profile information was provided.

Recent public activity

  1. comment
    Comment #43446943

    Workflows/orchestration/reconciliation-loops are basically table stakes for any service that is solving significant problems for customers. You might think you don't need this, but…

  2. comment
    Comment #23644432

    One benchmark would be to track down a python/JS/etc based "hello world" demo container. Base one version on Intel and the other on ARM, and measure each versions container build-t…

  3. comment
    Comment #23643486

    This seems like a weird benchmark, reading from /dev/urandom and gzipping random data does not seem like something most folks will want to do. It even appears like /dev/urandom spe…

  4. comment
    Comment #19454798

    I use an 2016 Macbook i7/8GB as my daily development system. I love it. It's light and portable, which is important for me. The main thing to understand about these machines is tha…

  5. comment
    Comment #19013537

    This 'partial interpretation' trick used here has also been used successfully in the database community to accelerate whole queries, etc. Tiark Rompf's group in particular has been…

  6. comment
    Comment #18297494

    Thanks for the response! FWIW I'm overall really interested in this, as I maintain an application that uses localStorage to keep very important data while the app is offline until …

  7. comment
    Comment #18297229

    > When a value is retrieved via its key, IronDB... > Looks up that key in every store. > Counts each unique, returned value. > Determines the most commonly returned value as the 'c…

  8. comment
    Comment #17927459

    I didn't mean to say this was a silly thing to do - most modern processors execute instructions out of order on multiple ALUs. The problem is that the abstraction layer between the…

  9. comment
    Comment #17921712

    This comment is excellent. The title of the original post should be: "When optimising code, never guess, always read the bytecode/assembly." Without actually reading the assembly/b…

  10. comment
    Comment #17509700

    Minor nitpick about their exit code technique [0]: The command checks if the table exists, but it does not appear to re-run if the source file has been updated. Usually with Make y…

  11. comment
    Comment #17191345

    Link to slides off KPCB's site without needing to sign up for an account: http://kpcbweb2.s3.amazonaws.com/files/121/INTERNET_TRENDS_R... http://www.kpcb.com/internet-trends

  12. comment
    Comment #17021811

    Last I checked, MapBox's WebGL based vector tile renderer was a cut above the rest. For simple mapping, Google's stuff may cut it, but MapBox has the ability to draw complex vector…

  13. comment
    Comment #16081455

    What about the fact that these instructions might get partially executed in the pipeline before the branch gets resolved and the pipeline flushed? If a mis-fetched instruction can …

  14. comment
    Comment #16081204

    > There's no reason to predict a branch if you're not going to execute speculatively. Not quite. Branch prediction is typically used on non-speculative architectures in order to av…

  15. comment
    Comment #15802670

    "There is nothing to support bitcoin except the hope that you will sell it to someone for more than you paid for it.” Genuinely asking, isn't this the plan for many people? How is …

  16. comment
    Comment #15791072

    Acquisition and administration of public housing projects. The world needs more publicly housing for people of all economic statuses. It seems incredibly time consuming to build or…

  17. comment
    Comment #15595184

    FWIW it should be possible to vectorize the search across the row store. With 24 byte tuples (assuming no inter-row padding) you can fit 2.6 rows into a 64 byte cache line (a 512 b…

  18. comment
    Comment #15572329

    Reminds me of this paper: https://blog.acolyer.org/2017/08/25/towards-deploying-decomm...

  19. comment
    Comment #15403128

    I notice on the tech spec's page that the Mini also has bluetooth [0]. Would love to know if this means all connected homes will play (the same) audio via bluetooth. [0] https://st…

  20. comment
    Comment #15252055

    Undecidable in general, but there are two approaches I've seen work based on AST manipulation and comparison: 1. Solvers that search for applicable re-write rules to transform X in…

  21. comment
    Comment #14539635

    > "The growing body of Big-data, HPC, and especially machine learning applications don’t need Windows and don’t perform on X86. So 2017 is the year Nvidia slips its leash and break…

  22. comment
    Comment #13173303

    This is really great work, and awesome that they're developing this as open source. Combined with the results from HyPer folks it sure is starting to look like using LLVM to specia…

  23. comment
    Comment #13016359

    How do people in production handle the possibility that your service might miss a webhook notification? If you miss a notification you'll end up with stale data and you won't know …

  24. comment
    Comment #12995234

    I think in many ways this could be considered a feature and not a problem. Why does it matter if someone butts in front of you? The passengers in the car can relax and let the comp…

  25. comment
    Comment #12523840

    > if Ax series performance starts to exceed corresponding Intel mobile parts by >50% (enough to compensate for the overhead of binary translation for legacy x86 apps). Another mile…