This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 03d3e434 update _includes with toc.html, add more pdfs.
03d3e434 is described below

commit 03d3e4349bd9e84d7d420d2012e5f6ad711c4719
Author: Lee Rhodes <[email protected]>
AuthorDate: Mon Feb 9 12:09:37 2026 -0800

    update _includes with toc.html, add more pdfs.
---
 _includes/toc.html                                 |   4 +++-
 docs/Architecture/Components.md                    |   2 +-
 docs/pdf/AnatomyOfError_13Jan2026.pdf              | Bin 0 -> 1489533 bytes
 ...ketches_deck.pdf => DataSketches_13Mar2025.pdf} | Bin 1177765 -> 1186865 
bytes
 docs/pdf/ThreePowerfulSketches_13Jan2026.pdf       | Bin 0 -> 1230717 bytes
 index.md                                           |   4 ++--
 .../apache/datasketches/docgen/TocGenerator.java   |   2 --
 src/main/resources/docgen/toc.json                 |   4 +++-
 8 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/_includes/toc.html b/_includes/toc.html
index e3151eee..433b25ed 100644
--- a/_includes/toc.html
+++ b/_includes/toc.html
@@ -10,8 +10,9 @@
     <li><a href="{{site.docs_dir}}/Background/TheChallenge.html">•The 
Challenge</a></li>
     <li><a href="{{site.docs_dir}}/Background/SketchOrigins.html">•Sketch 
Origins</a></li>
     <li><a href="{{site.docs_dir}}/Background/SketchElements.html">•Sketch 
Elements</a></li>
+    <li><a href="{{site.docs_pdf_dir}}/AnatomyOfError_13Jan2026.pdf">•Anatomy 
of Error</a></li>
     <li><a 
href="{{site.docs_dir}}/Background/Presentations.html">•Presentations</a></li>
-    <li><a href="{{site.docs_pdf_dir}}/DataSketches_deck.pdf">•Overview Slide 
Deck</a></li>
+    <li><a href="{{site.docs_pdf_dir}}/DataSketches_13Mar2025.pdf">•Overview 
Slide Deck</a></li>
   </div>
 
   <p id="architecture-and-design">
@@ -25,6 +26,7 @@
     <li><a 
href="{{site.docs_dir}}/Architecture/Components.html">•Components</a></li>
     <li><a 
href="{{site.docs_dir}}/Architecture/SketchesByComponent.html">•Sketches by 
Component</a></li>
     <li><a href="{{site.docs_dir}}/Architecture/SketchCriteria.html">•Sketch 
Criteria</a></li>
+    <li><a 
href="{{site.docs_pdf_dir}}/ThreePowerfulSketches_13Jan2026.pdf">•Three 
Powerful Sketches</a></li>
 
     <p id="memory-component">
       <a data-toggle="collapse" class="menu collapsed" 
href="#collapse_memory_component">Memory Component</a>
diff --git a/docs/Architecture/Components.md b/docs/Architecture/Components.md
index c72af3da..2ecffa2a 100644
--- a/docs/Architecture/Components.md
+++ b/docs/Architecture/Components.md
@@ -26,7 +26,7 @@ Our library is made up of multiple components that are 
partitioned into GitHub r
 
 If you have a specific issue or bug report that impacts only one of these 
components please open an issue on the respective component. If you are a 
developer and wish to submit a PR, please choose the appropriate repository.
 
-If you like what you see give us a **Star** on these sites!
+If you like what you see, give us a **Star** on these sites!
 
 ## Core Sketch Libraries
 The key sketches of the Apache DataSketches libraries are available in four 
(soon five) programming languages.  By design, a sketch that is available in 
one language that is also available in a different language will be "binary 
compatible" via serialization.  For example, when serialized into its compact 
form, a sketch created by the DataSketches C++ library, can be read by the 
DataSketches Java library and visa versa.
diff --git a/docs/pdf/AnatomyOfError_13Jan2026.pdf 
b/docs/pdf/AnatomyOfError_13Jan2026.pdf
new file mode 100644
index 00000000..3d74ce14
Binary files /dev/null and b/docs/pdf/AnatomyOfError_13Jan2026.pdf differ
diff --git a/docs/pdf/DataSketches_deck.pdf 
b/docs/pdf/DataSketches_13Mar2025.pdf
similarity index 68%
rename from docs/pdf/DataSketches_deck.pdf
rename to docs/pdf/DataSketches_13Mar2025.pdf
index c7d20320..5d43360b 100644
Binary files a/docs/pdf/DataSketches_deck.pdf and 
b/docs/pdf/DataSketches_13Mar2025.pdf differ
diff --git a/docs/pdf/ThreePowerfulSketches_13Jan2026.pdf 
b/docs/pdf/ThreePowerfulSketches_13Jan2026.pdf
new file mode 100644
index 00000000..b7b8352b
Binary files /dev/null and b/docs/pdf/ThreePowerfulSketches_13Jan2026.pdf differ
diff --git a/index.md b/index.md
index ab97504c..3f61f6ea 100644
--- a/index.md
+++ b/index.md
@@ -70,8 +70,8 @@ layout: front_page
         <h2>Big Data</h2>
       </a>
       <p class="text-justify">This library has been specifically designed for 
production systems that must process massive data. 
-      The library includes adaptors for Apache Hive, Apache Pig, and 
PostgreSQL (C++). These adaptors also stand as examples for adaptors for other 
systems. 
-      The sketches in this library are designed to have compatible binary 
representations across languages (Java, C++, Python, Rust) and platforms.
+      The library includes adaptors for Apache Hive, Apache Pig, PostgreSQL 
(C++), and Google BigQuery. These adaptors also stand as examples for adaptors 
for other systems. 
+      The sketches in this library are designed to have compatible binary 
representations across languages (Java, C++, Python, Rust, and Go) and 
platforms (Windows, MacOS, Unix).
       </p>
     </div>
 
diff --git a/src/main/java/org/apache/datasketches/docgen/TocGenerator.java 
b/src/main/java/org/apache/datasketches/docgen/TocGenerator.java
index e1466a14..6b2cb25d 100644
--- a/src/main/java/org/apache/datasketches/docgen/TocGenerator.java
+++ b/src/main/java/org/apache/datasketches/docgen/TocGenerator.java
@@ -42,7 +42,6 @@ public class TocGenerator {
   private static final String defaultJsonSrcFile = 
"src/main/resources/docgen/toc.json";
   private static final String defaultTgtTocFile = "_includes/toc.html";
   
-  
   TocGenerator() {} //needed for TestNG
 
   /**
@@ -74,7 +73,6 @@ public class TocGenerator {
       tocgen.readJson();
     }
     
-    
   /**
    * Execute the runTocGenerator above.
    * @param jsonSrcFile The JSON source file
diff --git a/src/main/resources/docgen/toc.json 
b/src/main/resources/docgen/toc.json
index bb23623d..61bbd623 100644
--- a/src/main/resources/docgen/toc.json
+++ b/src/main/resources/docgen/toc.json
@@ -5,8 +5,9 @@
         {"class":"Doc",  "desc" : "The Challenge",                "dir" : 
"Background", "file": "TheChallenge" },
         {"class":"Doc",  "desc" : "Sketch Origins",               "dir" : 
"Background", "file": "SketchOrigins" },
         {"class":"Doc",  "desc" : "Sketch Elements",              "dir" : 
"Background", "file": "SketchElements" },
+        {"class":"Doc",  "desc" : "Anatomy of Error",             "dir" : "", 
"file": "AnatomyOfError_13Jan2026", "pdf":"true" },
         {"class":"Doc",  "desc" : "Presentations",                "dir" : 
"Background", "file": "Presentations" },
-        {"class":"Doc",  "desc" : "Overview Slide Deck",          "dir" : "", 
"file": "DataSketches_deck", "pdf":"true" },
+        {"class":"Doc",  "desc" : "Overview Slide Deck",          "dir" : "", 
"file": "DataSketches_13Mar2025", "pdf":"true" },
       ]
     },
 
@@ -19,6 +20,7 @@
         {"class":"Doc",  "desc" : "Components",                "dir" : 
"Architecture", "file": "Components" },
         {"class":"Doc",  "desc" : "Sketches by Component",     "dir" : 
"Architecture", "file": "SketchesByComponent" },
         {"class":"Doc",  "desc" : "Sketch Criteria",           "dir" : 
"Architecture", "file": "SketchCriteria" },
+        {"class":"Doc",  "desc" : "Three Powerful Sketches",   "dir" : "", 
"file": "ThreePowerfulSketches_13Jan2026", "pdf":"true" },
         { "class":"Dropdown", "desc" : "Memory Component", "array":
           [
             {"class":"Doc",  "desc" : "Memory Component",              "dir" : 
"Memory", "file": "MemoryComponent" },


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to