nowfound

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: &#x2F;&#x2F; 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&#x2F;col %s:\t%s", row, rowOutput.toString())); } } }

  1. 1IP

    2017 · strandmark.net

  2. 2AN

    2018 · github.com

  3. 3AD

    2019 · github.com

  4. 4PN

    2017 · prime-numbers.info

  5. 5IT
  6. 6AP
  7. 7NV

    2013 · nuesbyte.com

  8. 8YC
  9. 9AR
  10. 10ON
  11. 11IF

    2016 · blakelapierre.github.io

  12. 12UJ
  13. 13NJ
  14. 14AO

    2013 · zachschnell.com

  15. 15PG
  16. 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 &#x2F;&#x2F; In any other language, this would be computational suicide for i in [0 to 1Qi] { &#x2F;&#x2F; 1,000,000,000,000,000,000 iterations arr[i] = i * i } ``` Traditional Reality: · Python: MemoryError at array creation · Java&#x2F;C++: Theoretical 31 years (with 8 exabytes of RAM) · NumPy&#x2F;TensorFlow: Immediate crash ·…

    Dec 2025 · github.com

  17. 17VP

    2013 · github.com

  18. 18AS
  19. 19SM
  20. 20GC
  21. 21AG
  22. 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&#x2F;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

  23. 23SG
  24. 24GD

    2021 · gramlanguage.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →