HN user

CalmStorm

523 karma
Posts32
Comments43
View on HN
www.huawei.com 1mo ago

Huawei Unveils Tau (τ) Scaling Law for Transistor and System Breakthroughs

CalmStorm
13pts7
aclanthology.org 11mo ago

Native Sparse Attention

CalmStorm
139pts31
www.biopharmadive.com 1y ago

'The bar has risen': China's biotech gains push US companies to adapt

CalmStorm
1pts0
llasatts.github.io 1y ago

Llasa: Llama-Based Speech Synthesis

CalmStorm
168pts22
medium.com 3y ago

Five Lessons from the most successful startup of all time – Christianity

CalmStorm
14pts9
news.ycombinator.com 3y ago

How to build a successful startup: Lessons from Waze's URI Levine

CalmStorm
2pts1
news.ycombinator.com 3y ago

How to build a successful startup: Lessons from Waze's URI Levine

CalmStorm
2pts0
www.cnet.com 4y ago

Intel's Alder Lake chip could boost PC speed 30% while saving your battery

CalmStorm
3pts0
spectrum.ieee.org 5y ago

Sodium-Ion Batteries Poised to Pick Off Large-Scale Lithium-Ion Applications

CalmStorm
1pts0
globalnews.ca 5y ago

China plans to draw a line through Mount Everest to stop Covid-19

CalmStorm
3pts0
www.reuters.com 5y ago

India to propose cryptocurrency ban, penalising miners, traders

CalmStorm
2pts0
www.bloomberg.com 5y ago

Norway Raises Concern over Vaccine Jabs for the Elderly

CalmStorm
8pts1
www.zdnet.com 5y ago

Microsoft Edge Browser on Linux: Surprisingly Good

CalmStorm
5pts1
medium.com 6y ago

Postmortem of Ravencoin Vulnerability

CalmStorm
2pts0
thecyberwire.com 6y ago

Australia says it's under nation-state cyberattack

CalmStorm
104pts78
www.cbc.ca 6y ago

Bell, Telus to use Nokia and Ericsson, not Huawei, in building their 5G networks

CalmStorm
330pts191
www.forbes.com 6y ago

People’s Bank of China started advanced testing of digital currency

CalmStorm
4pts2
www.theglobeandmail.com 6y ago

Tesla delivers first China-made Model 3 sedans

CalmStorm
1pts0
www.atlasobscura.com 6y ago

Hong Kong’s Bamboo Scaffolding

CalmStorm
1pts0
www.businessinsider.com 6y ago

China stops broadcasting NBA games

CalmStorm
1pts0
www.cnbc.com 6y ago

China’s central bank says it’s close to releasing its own digital currency

CalmStorm
1pts0
venturebeat.com 7y ago

Huawai lacks basic engineering competence and cyber security hygiene

CalmStorm
1pts0
www.google.com 7y ago

Smallest Continent

CalmStorm
1pts0
www.coindesk.com 7y ago

The Sidechains Breakthrough Almost Everyone in Bitcoin Missed

CalmStorm
1pts0
hackernoon.com 7y ago

20 top lawyers were beaten by legal AI

CalmStorm
1pts0
www.ft.com 8y ago

China targets mobile payments oligopoly with clearing mandate

CalmStorm
1pts0
www.businessinsider.com 9y ago

San Francisco food delivery startup Sprig is shutting down

CalmStorm
1pts0
venturebeat.com 10y ago

What3words raises $8.5M for global addressing system

CalmStorm
1pts0
medium.com 10y ago

Using System Fonts: A story of a 25-year-old font coming back with a vengeance

CalmStorm
1pts0
venturebeat.com 10y ago

Wix launches automated web design service built on artificial intelligence

CalmStorm
1pts0

For the first time, it introduced native sparse attention into the full training process, achieving up to 11× inference speedup while maintaining model performance.

LLaSA is a simple framework for speech synthesis that employs a single-layer vector quantizer (VQ) codec and a single Transformer architecture to fully align with standard LLMs such as LLaMA.

If it achieves its goal of both “safe” and “super intelligence”, it may have commercial value. e.g. enterprises may want to use it instead of, e.g. OpenAI’s ChatGPT. Think of recent AirCanada’s chatbot law suit.

The social media walled garden - quite a few people I know rarely use a browser or don't even know how to use it. They get their news mostly from their social media apps, and they have a hard time spotting fake news. It is much easier to censor content in a social network than the open internet. People live in their bubble and are not exposed to different opinions and ideas.

Trying to appreciate mathematics without understanding its inner workings is like reading a description of Beethoven’s Fifth Symphony instead of hearing it.

I personally feel J.S. Bach would be a better metaphor here.

This article [1] describes the features in 1.15. The new linker is quite impressive in reducing executable size because it reduces more unused code:

For more realistic programs, binary sizes go down by 3.5% or as much as 22%.

The original linker was written by Ken Thompson, who is now retired.

[1] https://lwn.net/Articles/820217/

In Unix:

    a; b    # Execute command b after a. The result of a is not used by b.
In Haskell:
    a >> b  # Run function b after a. The result of a is not used by b.
In Unix:
    a | b    # Execute command b after a. The result of a is used by b.
In Haskell:
    a >>= b  # Run function b after a. The result of a is used by b.

Preventive measures may be cheaper than enforcement. UBI could reduce the crime rate and therefore save money on law and order. I think it targets the root cause rather than fixing the symptoms through more policing.

Deno's sandbox security is somewhat similar to Mandatory Access Control (MAC) implemented by SELinux and AppArmor. But it looks like not as fine-grained as MAC. In the example:

deno run --allow-net myWebserver.ts

With SELinux, one can specify the port range and network interface that the application is allowed to access. It also provides audit log that can be examined by the admin. Maybe there is no need to reinvent the wheel but just use some form of MAC if you really care about security.

The other common misconception is that the price of bitcoin is determined by the hashrate. It is actually the other way around, a higher price drives up the hashrate, because a higher price means more demand for bitcoin.

Some founders of altcoins apparently don't understand this and try to buy hashpower to artificially increase the hashrate, hoping to increase the price of their coins. If there is no demand for their coins, an ASIC farm is no different from a Rasberry Pi.

Swift does not allow null pointer, and therefore there is no null pointer exception. This is a very nice feature, especially compared with other server-side compiled languages like Golang and Java. Swift is modern and concise, I hope it takes off on server-side.

One important weakness of zkSnarks is that it requires a trusted setup, for example [1]. A new alternative is called zk-STARK [2], which doesn't require the trusted setup, and is post-quantum secure. However, it significantly increases the size of the proof (around ~50KB). In general, hash-based post-quantum algorithms require bigger size and it would be interesting to watch the progress made in this regard.

[1]https://filecoin.io/blog/participate-in-our-trusted-setup-ce...

[2] https://eprint.iacr.org/2018/046.pdf

In case there are multiple conflicting transactions (for double-spending purpose), the network will only accept the first one and reject the rest. So the micropayment processor needs to wait for a few seconds when it receives the first transaction in the mempool. If no other conflicting transactions arrive, the first transaction will be acccepted. These few seconds give the first transaction big advantage over the double-spending ones, as it will most likely be included in the block.

If the attacker sends the legit transaction and double-spending one at the same time, it will be detected due to the few seconds wait by the payment processor.

Since it is a micropayment, it is possible (or acceptable) to accept payment with zero confirmation (in less than 10 seconds), as pointed out by Satoshi in the "Bitcoin snack machine" post: https://bitcointalk.org/index.php?topic=423.msg3819#msg3819

Yes, there is a risk of double-spending, but since this is a small amount, the cost of the attack may be higher than the benefit. The payment processor can also deploy more full nodes in different geographic locations to monitor and detect potential double-spending transactions in the transaction memory pool.

I have been working on this decentralized key-value database: https://github.com/kevacoin-project/kevacoin Together with W3C's draft Decentralized Identifiers (DID: https://www.w3.org/TR/did-core/), it could provide a decentralized alternative.

Not sure what is the best way to verify Twitter/Github account though. This has to be managed by users themselves. E.g. one user posts a proof in the Twitter account, the other user verifies the proof by checking the proof against the public key posted in the database.

I have been working on this decentralized key-value database: https://github.com/kevacoin-project/kevacoin

Together with W3C's draft Decentralized Identifiers (DID: https://www.w3.org/TR/did-core/), it could provide a decentralized alternative.

Not sure what is the best way to verify Twitter/Github account though. This has to be managed by users themselves. E.g. one user posts a proof in the Twitter account, the other user verifies the proof by checking the proof against the public key posted in the database.

Edit: updated description.

But you also need to be careful. The slow password hashing can be exploited for Denial of Service attack. You may want to rate-limit the APIs that use the hash algorithm.