Commit 8020bd35 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

feat: Update acorn fact sheet

parent 629660fe
Loading
Loading
Loading
Loading
+6 −543

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ footer>.wrapper>.logo-wrapper {
    grid-template-columns: auto auto auto 5px auto 5px auto 5px auto;
    grid-template-rows: auto;
    padding: 10px 0;
    margin-left: -40px;  /* weasyprint */
    margin-left: -50px;  /* weasyprint */
    white-space: nowrap;
}

+2 −2
Original line number Diff line number Diff line
@@ -30,7 +30,6 @@
        "first",
        "last",
        "email",
        "phone",
        "profile",
        "division"
    ],
@@ -48,7 +47,8 @@
            "enum": [
                "Cyber Resilience and Intelligence",
                "Geospatial Science and Human Security",
                "Nuclear Nonproliferation"
                "Nuclear Nonproliferation",
                "Creative Services"
            ]
        }
    }
+5 −2
Original line number Diff line number Diff line
@@ -59,6 +59,7 @@
            "type": "string",
            "enum": [
                "artificial-intelligence",
                "automation",
                "cyber",
                "GEARS",
                "geospatial",
@@ -73,12 +74,14 @@
            "type": "string",
            "enum": [
                "conda:gdal",
                "javascript",
                "nodejs::astro",
                "language::javascript",
                "javascript:react",
                "python:pytorch",
                "python:numpy",
                "python:polars",
                "python:pandas"
                "python:pandas",
                "language::typespec"
            ]
        }
    }
+11 −7
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ enum Division {
  CRID: "Cyber Resilience and Intelligence",
  GSHS: "Geospatial Science and Human Security",
  NND: "Nuclear Nonproliferation",
  CreativeServices: "Creative Services",
}

enum Type {
@@ -22,6 +23,7 @@ enum Type {

enum Keyword {
  ArtificialIntelligence: "artificial-intelligence",
  Automation: "automation",
  Cyber: "cyber",
  GEARS: "GEARS",
  Geospatial: "geospatial",
@@ -33,11 +35,13 @@ enum Keyword {
}

enum Technology {
  gdal: "conda:gdal",
  javavscript: "javascript",
  react: "javascript:react",
  pytorch: "python:pytorch",
  numpy: "python:numpy",
  polars: "python:polars",
  pandas: "python:pandas",
  GDAL: "conda:gdal",
  Astro: "nodejs::astro",
  JavaScript: "language::javascript",
  React: "javascript:react",
  PyTorch: "python:pytorch",
  Numpy: "python:numpy",
  Polars: "python:polars",
  Pandas: "python:pandas",
  TypeSpec: "language::typespec",
}
Loading