From 121311ea7b0b301cedb0b7c3abe29f5c7e6600a3 Mon Sep 17 00:00:00 2001 From: dgonzdev Date: Fri, 13 Feb 2026 08:01:56 -0500 Subject: [PATCH 1/5] add core concepts documentation --- docs/CORE_CONCEPTS.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/docs/CORE_CONCEPTS.md b/docs/CORE_CONCEPTS.md index f6837c6..6b5f633 100644 --- a/docs/CORE_CONCEPTS.md +++ b/docs/CORE_CONCEPTS.md @@ -2,10 +2,23 @@ ## NYC Open Data -TODO -- NYC Open Data Portal -- Socrata -- Tyler Technologies +NYC Open Data is free public data published by New York City agencies and other partners. + +The Open Data Team at the NYC Office of Technology and Innovation (OTI) oversees the program. The team works with City agencies to identify and make data available, coordinate platform operations and improvements, and promote the use of Open Data both within government and throughout NYC. Each City agency also has an Open Data Coordinator, who serves as the main point of contact for the Open Data team and the public, and works to identify, document, structure, and manage the agency’s public datasets. + +Website: +- https://opendata.cityofnewyork.us/ + +### Socrata and Tyler Technologies + +NYC Open Data is hosted and shared through the Socrata platform: + +- https://data.cityofnewyork.us/browse?sortBy=relevance&page=1&pageSize=20 +- https://dev.socrata.com/ + +Tyler Technologies purchased Socrata in 2018: + +- https://www.govtech.com/biz/tyler-technologies-acquires-socrata.html ## Ruby From c426b1b443c7628cdb0eddc58bbe5ea8c3c29b6d Mon Sep 17 00:00:00 2001 From: dgonzdev Date: Fri, 13 Feb 2026 08:09:56 -0500 Subject: [PATCH 2/5] add documentation --- docs/CORE_CONCEPTS.md | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/docs/CORE_CONCEPTS.md b/docs/CORE_CONCEPTS.md index 6b5f633..27a357e 100644 --- a/docs/CORE_CONCEPTS.md +++ b/docs/CORE_CONCEPTS.md @@ -22,19 +22,36 @@ Tyler Technologies purchased Socrata in 2018: ## Ruby -TODO +Ruby is a general-purpose programming language designed for simplicity and productivity. + +Website: +- https://www.ruby-lang.org/en/ + +Tutorial: +- https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby ## Ruby on Rails -TODO +Rails is a web application framework that includes everything needed to create database-backed web applications. + +Website: +- https://rubyonrails.org/ + +Tutorial: +- https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby-on-rails ## Postgres -TODO +PostgreSQL is a powerful, open source object-relational database system with over 35 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance. + +Website: +- https://www.postgresql.org/ ## Multiple databases -TODO +Ruby on Rails supports connecting to multiple databases. + +Documentation - https://guides.rubyonrails.org/active_record_multiple_databases.html ## Kiba From 5b1a60efa1de5812e51f30d3f1bb00d55f9cbf12 Mon Sep 17 00:00:00 2001 From: dgonzdev Date: Fri, 13 Feb 2026 08:14:32 -0500 Subject: [PATCH 3/5] add documentation --- docs/CORE_CONCEPTS.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/docs/CORE_CONCEPTS.md b/docs/CORE_CONCEPTS.md index 27a357e..94864e9 100644 --- a/docs/CORE_CONCEPTS.md +++ b/docs/CORE_CONCEPTS.md @@ -51,17 +51,31 @@ Website: Ruby on Rails supports connecting to multiple databases. -Documentation +Documentation: - https://guides.rubyonrails.org/active_record_multiple_databases.html ## Kiba -TODO +Kiba is a data processing & ETL framework for Ruby. + +Source Code: +- https://github.com/thbar/kiba + +Documentation: +- https://github.com/thbar/kiba/wiki ## BI -TODO +Business Intelligence (BI) software comprises tools that collect, analyze, and visualize data from various sources to provide actionable insights for decision-making. + +Open source solutions include +- Apache Superset +- Metabase +- And many more ## Apache Superset -TODO \ No newline at end of file +Apache Superset™ is an open-source modern data exploration and visualization platform. + +Website: +- https://superset.apache.org/ \ No newline at end of file From 9016a05848e3a7b06195eef9a32d14753c2419e0 Mon Sep 17 00:00:00 2001 From: dgonzdev Date: Fri, 13 Feb 2026 08:25:44 -0500 Subject: [PATCH 4/5] add documentation --- docs/CORE_CONCEPTS.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/CORE_CONCEPTS.md b/docs/CORE_CONCEPTS.md index 94864e9..8da2a17 100644 --- a/docs/CORE_CONCEPTS.md +++ b/docs/CORE_CONCEPTS.md @@ -30,6 +30,9 @@ Website: Tutorial: - https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby +Source Code: +- https://github.com/ruby/ruby + ## Ruby on Rails Rails is a web application framework that includes everything needed to create database-backed web applications. @@ -40,6 +43,9 @@ Website: Tutorial: - https://www.theodinproject.com/paths/full-stack-ruby-on-rails/courses/ruby-on-rails +Source Code: +- https://github.com/rails/rails + ## Postgres PostgreSQL is a powerful, open source object-relational database system with over 35 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance. @@ -47,6 +53,9 @@ PostgreSQL is a powerful, open source object-relational database system with ove Website: - https://www.postgresql.org/ +Source Code: +- https://github.com/postgres/postgres + ## Multiple databases Ruby on Rails supports connecting to multiple databases. @@ -58,12 +67,12 @@ Documentation: Kiba is a data processing & ETL framework for Ruby. +Website: +- https://www.kiba-etl.org/ + Source Code: - https://github.com/thbar/kiba -Documentation: -- https://github.com/thbar/kiba/wiki - ## BI Business Intelligence (BI) software comprises tools that collect, analyze, and visualize data from various sources to provide actionable insights for decision-making. @@ -78,4 +87,7 @@ Open source solutions include Apache Superset™ is an open-source modern data exploration and visualization platform. Website: -- https://superset.apache.org/ \ No newline at end of file +- https://superset.apache.org/ + +Source Code: +- https://github.com/apache/superset \ No newline at end of file From c188ee9b10a2ac8805a8c445ba485331fe9016ac Mon Sep 17 00:00:00 2001 From: dgonzdev Date: Fri, 13 Feb 2026 10:26:54 -0500 Subject: [PATCH 5/5] update --- docs/CORE_CONCEPTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CORE_CONCEPTS.md b/docs/CORE_CONCEPTS.md index 8da2a17..a047a00 100644 --- a/docs/CORE_CONCEPTS.md +++ b/docs/CORE_CONCEPTS.md @@ -80,7 +80,7 @@ Business Intelligence (BI) software comprises tools that collect, analyze, and v Open source solutions include - Apache Superset - Metabase -- And many more +- and many more ## Apache Superset