Alternatives
Products that do what an extremely simple program shows a 2D structure in the integers does
This seems unlikely to be a "new" idea, but I stumbled into it by accident and thought it was cool. Java source code below: // This class is in the public domain. public class Numbers { public static void main(String[] args) { int numRows = 256; int numColumns = 128; for (int row = 0; row < numRows; row++) { StringBuilder rowOutput = new StringBuilder(); for (int column = 0; column < numColumns; column++) { if ((row & column) != 0) rowOutput.append("1"); else rowOutput.append("0"); } System.out.println( String.format("row/col %s:\t%s", row, rowOutput.toString())); } } }
- 1IP
2017 · strandmark.net
- 2AN
2018 · github.com
- 3AD
2019 · github.com
- 4PN
2017 · prime-numbers.info
- 5IT
2018 · wykobi.com
- 6AP
2012 · github.com
- 7NVNuesbyte v2▲46
2013 · nuesbyte.com
- 8YC
2024 · github.com
- 9AR
2015 · xqt2.com
- 10ON
2016 · jaltekruse.github.io
- 11IF
2016 · blakelapierre.github.io
- 12UJ
2017 · npmjs.com
- 13NJ
2014 · github.com
- 14AO
2013 · zachschnell.com
- 15PG
2014 · itunes.apple.com
- 16CI
Author: Danison Nuñez Project: Coderive Project Type: Programming Language Highlight: Formula-based Execution ## Coderive - Iterating Through 1 Quintillion in a Loop *Subtitle: How a phone interpreter achieves what supercomputers cannot* The Impossible Loop: ```java // In any other language, this would be computational suicide for i in [0 to 1Qi] { // 1,000,000,000,000,000,000 iterations arr[i] = i * i } ``` Traditional Reality: · Python: MemoryError at array creation · Java/C++: Theoretical 31 years (with 8 exabytes of RAM) · NumPy/TensorFlow: Immediate crash ·…
Dec 2025 · github.com
- 17VP
2013 · github.com
- 18AS
2016 · snai.pe
- 19SM
2015 · github.com
- 20GC
2020 · programmingdesignsystems.com
- 21AG
2016 · apcs.io
- 22RN
A while back I built a science library supporting both physical and abstract dimensions. Almost immediately I discovered working with floating point numbers suck in that space and BigDecimal isn't much better in terms of managing scale wrt margin of error across calculations, Java doesn't make this easy. Rationals are in my view much better suited for science/math in that information cannot be unintentionally lost when using them. So I made a Rational for Java, and in the process _forced_ Java to work better with science and math.
2024 · github.com
- 23SG
2019 · sphere.erdos.dev
- 24GD
2021 · gramlanguage.com
Ranked by how close each launch is in meaning, then by votes. Refine with a description →