├── .github ├── ISSUE_TEMPLATE │ └── suggest-new-location.md ├── dependabot.yml └── workflows │ ├── check_links.yaml │ ├── codeql.yml │ ├── lint.yml │ ├── pr_check.yml │ ├── reorder.yml │ └── validate_conferences.yml ├── .gitignore ├── .lycheeignore ├── .nvmrc ├── .prettierrc.json ├── .vscode └── launch.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── conferences ├── 2013 │ └── ruby.json ├── 2014 │ ├── javascript.json │ ├── ruby.json │ └── ux.json ├── 2015 │ ├── javascript.json │ ├── ruby.json │ └── ux.json ├── 2016 │ ├── javascript.json │ ├── ruby.json │ └── ux.json ├── 2017 │ ├── android.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── general.json │ ├── ios.json │ ├── javascript.json │ ├── php.json │ ├── ruby.json │ ├── tech-comm.json │ └── ux.json ├── 2018 │ ├── android.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── ios.json │ ├── javascript.json │ ├── php.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── tech-comm.json │ └── ux.json ├── 2019 │ ├── android.json │ ├── clojure.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── elm.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── groovy.json │ ├── ios.json │ ├── java.json │ ├── javascript.json │ ├── leadership.json │ ├── networking.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── tech-comm.json │ ├── typescript.json │ └── ux.json ├── 2020 │ ├── android.json │ ├── clojure.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── elm.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── leadership.json │ ├── networking.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── tech-comm.json │ ├── typescript.json │ └── ux.json ├── 2021 │ ├── android.json │ ├── api.json │ ├── cfml.json │ ├── clojure.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── haskell.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── leadership.json │ ├── networking.json │ ├── performance.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── tech-comm.json │ ├── testing.json │ ├── typescript.json │ └── ux.json ├── 2022 │ ├── accessibility.json │ ├── android.json │ ├── api.json │ ├── cfml.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── haskell.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── leadership.json │ ├── networking.json │ ├── performance.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── tech-comm.json │ ├── testing.json │ ├── typescript.json │ └── ux.json ├── 2023 │ ├── accessibility.json │ ├── android.json │ ├── api.json │ ├── clojure.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── haskell.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── leadership.json │ ├── networking.json │ ├── performance.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── sre.json │ ├── tech-comm.json │ ├── testing.json │ ├── typescript.json │ └── ux.json ├── 2024 │ ├── accessibility.json │ ├── android.json │ ├── api.json │ ├── cfml.json │ ├── clojure.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── elixir.json │ ├── general.json │ ├── golang.json │ ├── graphql.json │ ├── haskell.json │ ├── identity.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── leadership.json │ ├── networking.json │ ├── opensource.json │ ├── performance.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── sre.json │ ├── tech-comm.json │ ├── testing.json │ ├── typescript.json │ └── ux.json ├── 2025 │ ├── accessibility.json │ ├── android.json │ ├── api.json │ ├── cfml.json │ ├── cpp.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── dotnet.json │ ├── general.json │ ├── identity.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── leadership.json │ ├── networking.json │ ├── opensource.json │ ├── performance.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── ruby.json │ ├── rust.json │ ├── scala.json │ ├── security.json │ ├── sre.json │ ├── tech-comm.json │ ├── testing.json │ ├── typescript.json │ └── ux.json └── 2026 │ ├── android.json │ ├── api.json │ ├── css.json │ ├── data.json │ ├── devops.json │ ├── general.json │ ├── ios.json │ ├── iot.json │ ├── java.json │ ├── javascript.json │ ├── kotlin.json │ ├── networking.json │ ├── opensource.json │ ├── php.json │ ├── product.json │ ├── python.json │ ├── security.json │ ├── testing.json │ ├── typescript.json │ └── ux.json ├── package.json ├── scripts ├── conferences.test.ts ├── config │ ├── topics.ts │ ├── validFields.ts │ └── validLocations.ts ├── removeBrokenLycheeLinks.ts ├── reorderConferencesByDate.ts ├── updateValidLocations.ts └── utils │ ├── AssertField.ts │ ├── Conference.ts │ ├── ConferencesJSON.ts │ ├── DuplicateError.ts │ ├── DuplicateType.ts │ ├── ErrorDetail.ts │ ├── IsConferenceEqual.ts │ ├── MergedConference.ts │ ├── ReorderError.ts │ ├── TestResult.ts │ ├── checkConference.ts │ ├── commentPullRequest.ts │ ├── conferenceReader.ts │ ├── findLineNumber.ts │ ├── getDuplicatePr.ts │ ├── getPrBranchUrl.ts │ ├── logTestResult.ts │ ├── mergedConferencesReader.ts │ └── orderConferences.ts └── tsconfig.json /.github/ISSUE_TEMPLATE/suggest-new-location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/ISSUE_TEMPLATE/suggest-new-location.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check_links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/workflows/check_links.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/workflows/pr_check.yml -------------------------------------------------------------------------------- /.github/workflows/reorder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/workflows/reorder.yml -------------------------------------------------------------------------------- /.github/workflows/validate_conferences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.github/workflows/validate_conferences.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.10.0 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cgrail 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/README.md -------------------------------------------------------------------------------- /conferences/2013/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2013/ruby.json -------------------------------------------------------------------------------- /conferences/2014/javascript.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2014/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2014/ruby.json -------------------------------------------------------------------------------- /conferences/2014/ux.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2015/javascript.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2015/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2015/ruby.json -------------------------------------------------------------------------------- /conferences/2015/ux.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2016/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2016/javascript.json -------------------------------------------------------------------------------- /conferences/2016/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2016/ruby.json -------------------------------------------------------------------------------- /conferences/2016/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2016/ux.json -------------------------------------------------------------------------------- /conferences/2017/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/android.json -------------------------------------------------------------------------------- /conferences/2017/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/css.json -------------------------------------------------------------------------------- /conferences/2017/data.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2017/devops.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2017/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/general.json -------------------------------------------------------------------------------- /conferences/2017/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/ios.json -------------------------------------------------------------------------------- /conferences/2017/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/javascript.json -------------------------------------------------------------------------------- /conferences/2017/php.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2017/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/ruby.json -------------------------------------------------------------------------------- /conferences/2017/tech-comm.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2017/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2017/ux.json -------------------------------------------------------------------------------- /conferences/2018/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/android.json -------------------------------------------------------------------------------- /conferences/2018/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/css.json -------------------------------------------------------------------------------- /conferences/2018/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/data.json -------------------------------------------------------------------------------- /conferences/2018/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/devops.json -------------------------------------------------------------------------------- /conferences/2018/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/dotnet.json -------------------------------------------------------------------------------- /conferences/2018/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/elixir.json -------------------------------------------------------------------------------- /conferences/2018/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/general.json -------------------------------------------------------------------------------- /conferences/2018/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/golang.json -------------------------------------------------------------------------------- /conferences/2018/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/graphql.json -------------------------------------------------------------------------------- /conferences/2018/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/ios.json -------------------------------------------------------------------------------- /conferences/2018/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/javascript.json -------------------------------------------------------------------------------- /conferences/2018/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/php.json -------------------------------------------------------------------------------- /conferences/2018/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/python.json -------------------------------------------------------------------------------- /conferences/2018/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/ruby.json -------------------------------------------------------------------------------- /conferences/2018/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/rust.json -------------------------------------------------------------------------------- /conferences/2018/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/scala.json -------------------------------------------------------------------------------- /conferences/2018/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/security.json -------------------------------------------------------------------------------- /conferences/2018/tech-comm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/tech-comm.json -------------------------------------------------------------------------------- /conferences/2018/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2018/ux.json -------------------------------------------------------------------------------- /conferences/2019/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/android.json -------------------------------------------------------------------------------- /conferences/2019/clojure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/clojure.json -------------------------------------------------------------------------------- /conferences/2019/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/cpp.json -------------------------------------------------------------------------------- /conferences/2019/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/css.json -------------------------------------------------------------------------------- /conferences/2019/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/data.json -------------------------------------------------------------------------------- /conferences/2019/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/devops.json -------------------------------------------------------------------------------- /conferences/2019/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/dotnet.json -------------------------------------------------------------------------------- /conferences/2019/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/elixir.json -------------------------------------------------------------------------------- /conferences/2019/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/elm.json -------------------------------------------------------------------------------- /conferences/2019/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/general.json -------------------------------------------------------------------------------- /conferences/2019/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/golang.json -------------------------------------------------------------------------------- /conferences/2019/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/graphql.json -------------------------------------------------------------------------------- /conferences/2019/groovy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/groovy.json -------------------------------------------------------------------------------- /conferences/2019/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/ios.json -------------------------------------------------------------------------------- /conferences/2019/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/java.json -------------------------------------------------------------------------------- /conferences/2019/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/javascript.json -------------------------------------------------------------------------------- /conferences/2019/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/leadership.json -------------------------------------------------------------------------------- /conferences/2019/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/networking.json -------------------------------------------------------------------------------- /conferences/2019/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/php.json -------------------------------------------------------------------------------- /conferences/2019/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/product.json -------------------------------------------------------------------------------- /conferences/2019/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/python.json -------------------------------------------------------------------------------- /conferences/2019/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/ruby.json -------------------------------------------------------------------------------- /conferences/2019/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/rust.json -------------------------------------------------------------------------------- /conferences/2019/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/scala.json -------------------------------------------------------------------------------- /conferences/2019/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/security.json -------------------------------------------------------------------------------- /conferences/2019/tech-comm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/tech-comm.json -------------------------------------------------------------------------------- /conferences/2019/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/typescript.json -------------------------------------------------------------------------------- /conferences/2019/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2019/ux.json -------------------------------------------------------------------------------- /conferences/2020/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/android.json -------------------------------------------------------------------------------- /conferences/2020/clojure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/clojure.json -------------------------------------------------------------------------------- /conferences/2020/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/cpp.json -------------------------------------------------------------------------------- /conferences/2020/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/css.json -------------------------------------------------------------------------------- /conferences/2020/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/data.json -------------------------------------------------------------------------------- /conferences/2020/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/devops.json -------------------------------------------------------------------------------- /conferences/2020/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/dotnet.json -------------------------------------------------------------------------------- /conferences/2020/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/elixir.json -------------------------------------------------------------------------------- /conferences/2020/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/elm.json -------------------------------------------------------------------------------- /conferences/2020/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/general.json -------------------------------------------------------------------------------- /conferences/2020/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/golang.json -------------------------------------------------------------------------------- /conferences/2020/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/graphql.json -------------------------------------------------------------------------------- /conferences/2020/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/ios.json -------------------------------------------------------------------------------- /conferences/2020/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/iot.json -------------------------------------------------------------------------------- /conferences/2020/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/java.json -------------------------------------------------------------------------------- /conferences/2020/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/javascript.json -------------------------------------------------------------------------------- /conferences/2020/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/kotlin.json -------------------------------------------------------------------------------- /conferences/2020/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/leadership.json -------------------------------------------------------------------------------- /conferences/2020/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/networking.json -------------------------------------------------------------------------------- /conferences/2020/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/php.json -------------------------------------------------------------------------------- /conferences/2020/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/product.json -------------------------------------------------------------------------------- /conferences/2020/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/python.json -------------------------------------------------------------------------------- /conferences/2020/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/ruby.json -------------------------------------------------------------------------------- /conferences/2020/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/rust.json -------------------------------------------------------------------------------- /conferences/2020/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/scala.json -------------------------------------------------------------------------------- /conferences/2020/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/security.json -------------------------------------------------------------------------------- /conferences/2020/tech-comm.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2020/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/typescript.json -------------------------------------------------------------------------------- /conferences/2020/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2020/ux.json -------------------------------------------------------------------------------- /conferences/2021/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/android.json -------------------------------------------------------------------------------- /conferences/2021/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/api.json -------------------------------------------------------------------------------- /conferences/2021/cfml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/cfml.json -------------------------------------------------------------------------------- /conferences/2021/clojure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/clojure.json -------------------------------------------------------------------------------- /conferences/2021/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/cpp.json -------------------------------------------------------------------------------- /conferences/2021/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/css.json -------------------------------------------------------------------------------- /conferences/2021/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/data.json -------------------------------------------------------------------------------- /conferences/2021/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/devops.json -------------------------------------------------------------------------------- /conferences/2021/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/dotnet.json -------------------------------------------------------------------------------- /conferences/2021/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/elixir.json -------------------------------------------------------------------------------- /conferences/2021/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/general.json -------------------------------------------------------------------------------- /conferences/2021/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/golang.json -------------------------------------------------------------------------------- /conferences/2021/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/graphql.json -------------------------------------------------------------------------------- /conferences/2021/haskell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/haskell.json -------------------------------------------------------------------------------- /conferences/2021/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/ios.json -------------------------------------------------------------------------------- /conferences/2021/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/iot.json -------------------------------------------------------------------------------- /conferences/2021/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/java.json -------------------------------------------------------------------------------- /conferences/2021/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/javascript.json -------------------------------------------------------------------------------- /conferences/2021/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/kotlin.json -------------------------------------------------------------------------------- /conferences/2021/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/leadership.json -------------------------------------------------------------------------------- /conferences/2021/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/networking.json -------------------------------------------------------------------------------- /conferences/2021/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/performance.json -------------------------------------------------------------------------------- /conferences/2021/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/php.json -------------------------------------------------------------------------------- /conferences/2021/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/product.json -------------------------------------------------------------------------------- /conferences/2021/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/python.json -------------------------------------------------------------------------------- /conferences/2021/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/ruby.json -------------------------------------------------------------------------------- /conferences/2021/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/rust.json -------------------------------------------------------------------------------- /conferences/2021/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/scala.json -------------------------------------------------------------------------------- /conferences/2021/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/security.json -------------------------------------------------------------------------------- /conferences/2021/tech-comm.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2021/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/testing.json -------------------------------------------------------------------------------- /conferences/2021/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/typescript.json -------------------------------------------------------------------------------- /conferences/2021/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2021/ux.json -------------------------------------------------------------------------------- /conferences/2022/accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/accessibility.json -------------------------------------------------------------------------------- /conferences/2022/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/android.json -------------------------------------------------------------------------------- /conferences/2022/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/api.json -------------------------------------------------------------------------------- /conferences/2022/cfml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/cfml.json -------------------------------------------------------------------------------- /conferences/2022/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/cpp.json -------------------------------------------------------------------------------- /conferences/2022/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/css.json -------------------------------------------------------------------------------- /conferences/2022/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/data.json -------------------------------------------------------------------------------- /conferences/2022/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/devops.json -------------------------------------------------------------------------------- /conferences/2022/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/dotnet.json -------------------------------------------------------------------------------- /conferences/2022/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/elixir.json -------------------------------------------------------------------------------- /conferences/2022/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/general.json -------------------------------------------------------------------------------- /conferences/2022/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/golang.json -------------------------------------------------------------------------------- /conferences/2022/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/graphql.json -------------------------------------------------------------------------------- /conferences/2022/haskell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/haskell.json -------------------------------------------------------------------------------- /conferences/2022/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/ios.json -------------------------------------------------------------------------------- /conferences/2022/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/iot.json -------------------------------------------------------------------------------- /conferences/2022/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/java.json -------------------------------------------------------------------------------- /conferences/2022/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/javascript.json -------------------------------------------------------------------------------- /conferences/2022/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/kotlin.json -------------------------------------------------------------------------------- /conferences/2022/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/leadership.json -------------------------------------------------------------------------------- /conferences/2022/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/networking.json -------------------------------------------------------------------------------- /conferences/2022/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/performance.json -------------------------------------------------------------------------------- /conferences/2022/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/php.json -------------------------------------------------------------------------------- /conferences/2022/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/product.json -------------------------------------------------------------------------------- /conferences/2022/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/python.json -------------------------------------------------------------------------------- /conferences/2022/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/ruby.json -------------------------------------------------------------------------------- /conferences/2022/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/rust.json -------------------------------------------------------------------------------- /conferences/2022/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/scala.json -------------------------------------------------------------------------------- /conferences/2022/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/security.json -------------------------------------------------------------------------------- /conferences/2022/tech-comm.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2022/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/testing.json -------------------------------------------------------------------------------- /conferences/2022/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/typescript.json -------------------------------------------------------------------------------- /conferences/2022/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2022/ux.json -------------------------------------------------------------------------------- /conferences/2023/accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/accessibility.json -------------------------------------------------------------------------------- /conferences/2023/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/android.json -------------------------------------------------------------------------------- /conferences/2023/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/api.json -------------------------------------------------------------------------------- /conferences/2023/clojure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/clojure.json -------------------------------------------------------------------------------- /conferences/2023/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/cpp.json -------------------------------------------------------------------------------- /conferences/2023/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/css.json -------------------------------------------------------------------------------- /conferences/2023/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/data.json -------------------------------------------------------------------------------- /conferences/2023/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/devops.json -------------------------------------------------------------------------------- /conferences/2023/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/dotnet.json -------------------------------------------------------------------------------- /conferences/2023/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/elixir.json -------------------------------------------------------------------------------- /conferences/2023/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/general.json -------------------------------------------------------------------------------- /conferences/2023/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/golang.json -------------------------------------------------------------------------------- /conferences/2023/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/graphql.json -------------------------------------------------------------------------------- /conferences/2023/haskell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/haskell.json -------------------------------------------------------------------------------- /conferences/2023/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/ios.json -------------------------------------------------------------------------------- /conferences/2023/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/iot.json -------------------------------------------------------------------------------- /conferences/2023/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/java.json -------------------------------------------------------------------------------- /conferences/2023/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/javascript.json -------------------------------------------------------------------------------- /conferences/2023/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/kotlin.json -------------------------------------------------------------------------------- /conferences/2023/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/leadership.json -------------------------------------------------------------------------------- /conferences/2023/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/networking.json -------------------------------------------------------------------------------- /conferences/2023/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/performance.json -------------------------------------------------------------------------------- /conferences/2023/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/php.json -------------------------------------------------------------------------------- /conferences/2023/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/product.json -------------------------------------------------------------------------------- /conferences/2023/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/python.json -------------------------------------------------------------------------------- /conferences/2023/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/ruby.json -------------------------------------------------------------------------------- /conferences/2023/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/rust.json -------------------------------------------------------------------------------- /conferences/2023/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/scala.json -------------------------------------------------------------------------------- /conferences/2023/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/security.json -------------------------------------------------------------------------------- /conferences/2023/sre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/sre.json -------------------------------------------------------------------------------- /conferences/2023/tech-comm.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2023/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/testing.json -------------------------------------------------------------------------------- /conferences/2023/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/typescript.json -------------------------------------------------------------------------------- /conferences/2023/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2023/ux.json -------------------------------------------------------------------------------- /conferences/2024/accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/accessibility.json -------------------------------------------------------------------------------- /conferences/2024/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/android.json -------------------------------------------------------------------------------- /conferences/2024/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/api.json -------------------------------------------------------------------------------- /conferences/2024/cfml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/cfml.json -------------------------------------------------------------------------------- /conferences/2024/clojure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/clojure.json -------------------------------------------------------------------------------- /conferences/2024/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/cpp.json -------------------------------------------------------------------------------- /conferences/2024/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/css.json -------------------------------------------------------------------------------- /conferences/2024/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/data.json -------------------------------------------------------------------------------- /conferences/2024/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/devops.json -------------------------------------------------------------------------------- /conferences/2024/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/dotnet.json -------------------------------------------------------------------------------- /conferences/2024/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/elixir.json -------------------------------------------------------------------------------- /conferences/2024/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/general.json -------------------------------------------------------------------------------- /conferences/2024/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/golang.json -------------------------------------------------------------------------------- /conferences/2024/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/graphql.json -------------------------------------------------------------------------------- /conferences/2024/haskell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/haskell.json -------------------------------------------------------------------------------- /conferences/2024/identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/identity.json -------------------------------------------------------------------------------- /conferences/2024/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/ios.json -------------------------------------------------------------------------------- /conferences/2024/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/iot.json -------------------------------------------------------------------------------- /conferences/2024/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/java.json -------------------------------------------------------------------------------- /conferences/2024/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/javascript.json -------------------------------------------------------------------------------- /conferences/2024/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/kotlin.json -------------------------------------------------------------------------------- /conferences/2024/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/leadership.json -------------------------------------------------------------------------------- /conferences/2024/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/networking.json -------------------------------------------------------------------------------- /conferences/2024/opensource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/opensource.json -------------------------------------------------------------------------------- /conferences/2024/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/performance.json -------------------------------------------------------------------------------- /conferences/2024/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/php.json -------------------------------------------------------------------------------- /conferences/2024/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/product.json -------------------------------------------------------------------------------- /conferences/2024/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/python.json -------------------------------------------------------------------------------- /conferences/2024/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/ruby.json -------------------------------------------------------------------------------- /conferences/2024/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/rust.json -------------------------------------------------------------------------------- /conferences/2024/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/scala.json -------------------------------------------------------------------------------- /conferences/2024/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/security.json -------------------------------------------------------------------------------- /conferences/2024/sre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/sre.json -------------------------------------------------------------------------------- /conferences/2024/tech-comm.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /conferences/2024/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/testing.json -------------------------------------------------------------------------------- /conferences/2024/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/typescript.json -------------------------------------------------------------------------------- /conferences/2024/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2024/ux.json -------------------------------------------------------------------------------- /conferences/2025/accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/accessibility.json -------------------------------------------------------------------------------- /conferences/2025/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/android.json -------------------------------------------------------------------------------- /conferences/2025/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/api.json -------------------------------------------------------------------------------- /conferences/2025/cfml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/cfml.json -------------------------------------------------------------------------------- /conferences/2025/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/cpp.json -------------------------------------------------------------------------------- /conferences/2025/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/css.json -------------------------------------------------------------------------------- /conferences/2025/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/data.json -------------------------------------------------------------------------------- /conferences/2025/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/devops.json -------------------------------------------------------------------------------- /conferences/2025/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/dotnet.json -------------------------------------------------------------------------------- /conferences/2025/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/general.json -------------------------------------------------------------------------------- /conferences/2025/identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/identity.json -------------------------------------------------------------------------------- /conferences/2025/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/ios.json -------------------------------------------------------------------------------- /conferences/2025/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/iot.json -------------------------------------------------------------------------------- /conferences/2025/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/java.json -------------------------------------------------------------------------------- /conferences/2025/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/javascript.json -------------------------------------------------------------------------------- /conferences/2025/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/kotlin.json -------------------------------------------------------------------------------- /conferences/2025/leadership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/leadership.json -------------------------------------------------------------------------------- /conferences/2025/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/networking.json -------------------------------------------------------------------------------- /conferences/2025/opensource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/opensource.json -------------------------------------------------------------------------------- /conferences/2025/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/performance.json -------------------------------------------------------------------------------- /conferences/2025/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/php.json -------------------------------------------------------------------------------- /conferences/2025/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/product.json -------------------------------------------------------------------------------- /conferences/2025/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/python.json -------------------------------------------------------------------------------- /conferences/2025/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/ruby.json -------------------------------------------------------------------------------- /conferences/2025/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/rust.json -------------------------------------------------------------------------------- /conferences/2025/scala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/scala.json -------------------------------------------------------------------------------- /conferences/2025/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/security.json -------------------------------------------------------------------------------- /conferences/2025/sre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/sre.json -------------------------------------------------------------------------------- /conferences/2025/tech-comm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/tech-comm.json -------------------------------------------------------------------------------- /conferences/2025/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/testing.json -------------------------------------------------------------------------------- /conferences/2025/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/typescript.json -------------------------------------------------------------------------------- /conferences/2025/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2025/ux.json -------------------------------------------------------------------------------- /conferences/2026/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/android.json -------------------------------------------------------------------------------- /conferences/2026/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/api.json -------------------------------------------------------------------------------- /conferences/2026/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/css.json -------------------------------------------------------------------------------- /conferences/2026/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/data.json -------------------------------------------------------------------------------- /conferences/2026/devops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/devops.json -------------------------------------------------------------------------------- /conferences/2026/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/general.json -------------------------------------------------------------------------------- /conferences/2026/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/ios.json -------------------------------------------------------------------------------- /conferences/2026/iot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/iot.json -------------------------------------------------------------------------------- /conferences/2026/java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/java.json -------------------------------------------------------------------------------- /conferences/2026/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/javascript.json -------------------------------------------------------------------------------- /conferences/2026/kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/kotlin.json -------------------------------------------------------------------------------- /conferences/2026/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/networking.json -------------------------------------------------------------------------------- /conferences/2026/opensource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/opensource.json -------------------------------------------------------------------------------- /conferences/2026/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/php.json -------------------------------------------------------------------------------- /conferences/2026/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/product.json -------------------------------------------------------------------------------- /conferences/2026/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/python.json -------------------------------------------------------------------------------- /conferences/2026/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/security.json -------------------------------------------------------------------------------- /conferences/2026/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/testing.json -------------------------------------------------------------------------------- /conferences/2026/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/typescript.json -------------------------------------------------------------------------------- /conferences/2026/ux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/conferences/2026/ux.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/package.json -------------------------------------------------------------------------------- /scripts/conferences.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/conferences.test.ts -------------------------------------------------------------------------------- /scripts/config/topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/config/topics.ts -------------------------------------------------------------------------------- /scripts/config/validFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/config/validFields.ts -------------------------------------------------------------------------------- /scripts/config/validLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/config/validLocations.ts -------------------------------------------------------------------------------- /scripts/removeBrokenLycheeLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/removeBrokenLycheeLinks.ts -------------------------------------------------------------------------------- /scripts/reorderConferencesByDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/reorderConferencesByDate.ts -------------------------------------------------------------------------------- /scripts/updateValidLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/updateValidLocations.ts -------------------------------------------------------------------------------- /scripts/utils/AssertField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/AssertField.ts -------------------------------------------------------------------------------- /scripts/utils/Conference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/Conference.ts -------------------------------------------------------------------------------- /scripts/utils/ConferencesJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/ConferencesJSON.ts -------------------------------------------------------------------------------- /scripts/utils/DuplicateError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/DuplicateError.ts -------------------------------------------------------------------------------- /scripts/utils/DuplicateType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/DuplicateType.ts -------------------------------------------------------------------------------- /scripts/utils/ErrorDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/ErrorDetail.ts -------------------------------------------------------------------------------- /scripts/utils/IsConferenceEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/IsConferenceEqual.ts -------------------------------------------------------------------------------- /scripts/utils/MergedConference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/MergedConference.ts -------------------------------------------------------------------------------- /scripts/utils/ReorderError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/ReorderError.ts -------------------------------------------------------------------------------- /scripts/utils/TestResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/TestResult.ts -------------------------------------------------------------------------------- /scripts/utils/checkConference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/checkConference.ts -------------------------------------------------------------------------------- /scripts/utils/commentPullRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/commentPullRequest.ts -------------------------------------------------------------------------------- /scripts/utils/conferenceReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/conferenceReader.ts -------------------------------------------------------------------------------- /scripts/utils/findLineNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/findLineNumber.ts -------------------------------------------------------------------------------- /scripts/utils/getDuplicatePr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/getDuplicatePr.ts -------------------------------------------------------------------------------- /scripts/utils/getPrBranchUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/getPrBranchUrl.ts -------------------------------------------------------------------------------- /scripts/utils/logTestResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/logTestResult.ts -------------------------------------------------------------------------------- /scripts/utils/mergedConferencesReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/mergedConferencesReader.ts -------------------------------------------------------------------------------- /scripts/utils/orderConferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/scripts/utils/orderConferences.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-conferences/conference-data/HEAD/tsconfig.json --------------------------------------------------------------------------------