/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

ajcr.github.io
| | blog.lambdaclass.com
4.8 parsecs away

Travel
| | Introduction The use of efficient zk-SNARKs (zero-knowledge succinct non-interactive arguments of knowledge) has given rise to many new and vital applications. For example, we can delegate expensive computations to untrusted servers and receive proof showing the integrity of the computations. This proof is short and can be verified much faster
| | rosshemsley.co.uk
7.7 parsecs away

Travel
| | Successful model development can be surprisingly dependent on good engineering practices. Despite this, many model implementations scattered about Github are difficult to follow and hard to recreate locally. But what should a good model look like? I would propose that the gold standard for a model implemented on Github could be: The dependencies may be installed automatically, using a single command. I can build the model in a sandbox without polluting with my dev.
| | www.jeremykun.com
4.5 parsecs away

Travel
| | Problem: Compute the product of two polynomials efficiently. Solution: import numpy from numpy.fft import fft, ifft def poly_mul(p1, p2): """Multiply two polynomials. p1 and p2 are arrays of coefficients in degree-increasing order. """ deg1 = p1.shape[0] - 1 deg2 = p1.shape[0] - 1 # Would be 2*(deg1 + deg2) + 1, but the next-power-of-2 handles the +1 total_num_pts = 2 * (deg1 + deg2) next_power_of_2 = 1 << (total_num_pts - 1).
| | www.thinkcode.se
20.7 parsecs away

Travel
| [AI summary] A developer explains how to access the Maven build directory within a Java plugin by defining a parameter with a specific default property expansion.