Hacker Newsnew | past | comments | ask | show | jobs | submit | 0xcoffee's commentslogin

Here is the Jepsen article about Nats: https://jepsen.io/analyses/nats-2.12.1


At risk of scope creep, the greatest selling point Netlify has for me is automatic form email support for static sites. Would be awesome if pico.sh supported that.


https://pgs.sh was designed to "compete" with netlify. I'm going to look into this feature and see how it could fit into our service. Thanks so much!




I haven't tried it yet but that looks like exactly what I've been missing.


>BYD has deployed three different versions of the “God’s Eye” ADAS across its line-up. All three offer automated parking and lane-keeping features, with the basic version – available on models costing up to 219,800 yuan ($30,078.69) – enabling autonomous driving on highways. The driver must keep their hands on the wheel and take control when necessary.

>Two higher-end versions will be installed on more expensive BYD-branded cars and its premium Denza and Yangwang brands. These will enable a car to drive autonomously — though also under human supervision — in more complex urban traffic.

The base version is self driving as in lane assist. It will not change lanes for you or 'self drive' to your destination.

I agree with BYD that these are great safety features and give them props for not gating safety behind a paywall.


fyi GitHub bill in minutes, and rounds up. So if you use 1 minute and 1 second, you get billed for 2 minutes. This is applied at job level, so it quickly gets out of control if you use matrix builds.

https://github.com/orgs/community/discussions/8726


I wish I had builds that ran that fast, lol... omg that would be epic ;P.


Is the price cheaper than x64 instances?

For 'large' instances, ARM64 is cheaper: https://docs.github.com/en/billing/managing-billing-for-your...

So what about regular instances?


>The CDC says that no cases of CWD have been detected in humans to date, but add that this may be a possibility in the future.


I only buy second hand laptops for myself, but I think the power/efficiency gains of modern cpu's should not be overlooked. The average person doesn't need a strong cpu, but the laptop should not burn their lap or run out of battery while they browse facebook.


Oddly enough, very few folks I know use their laptops without being plugged in most of the time. I know I rarely do.


C# Version:

    private static uint FastDigitCount(ulong value)
    {
        ReadOnlySpan<byte> digitCounts = [19, 19, 19, 19, 18, 18, 18, 17, 17, 17, 16, 16, 16, 16, 15, 15, 15, 14, 14, 14, 13, 13, 13, 13, 12, 12, 12, 11, 11, 11, 10, 10, 10, 10, 9, 9, 9, 8, 8, 8, 7, 7, 7, 7, 6, 6, 6, 5, 5, 5, 4, 4, 4, 4, 3, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1];
        ReadOnlySpan<ulong> digitCountThresholds = [0, 9, 99, 999, 9999, 99999, 999999, 9999999, 99999999, 999999999, 9999999999, 99999999999, 999999999999, 9999999999999, 99999999999999, 999999999999999, 9999999999999999, 99999999999999999, 999999999999999999, 9999999999999999999];
    
        var leadingZeros = BitOperations.LeadingZeroCount(value);
        var originalDigitCount = digitCounts[leadingZeros];
        return originalDigitCount + (value > digitCountThresholds[originalDigitCount] ? 1u : 0u);
    }
Benchmark: https://stackoverflow.com/a/79337820/4503491


I find it interesting that the X2 chip they are using as Tofino's successor, made by Xsight. One of the investors of Xsight is Intel Capital. So seems Intel had a hedge against themselves.


Maybe that was a reason to kill Tofino?


Ha, no definitely not. Intel Capital invests in lots of things, and doesn't throw its weight around like that at all.


Iirc Bryan mentioned that Intel capital also invested in Oxide itself, despite the fact that they’re using AMD cpus.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: