├── .github └── workflows │ ├── gen-daily.yml │ ├── gen-killed-in-gaza.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── bun.lockb ├── casualties_daily.json ├── casualties_daily.min.json ├── infrastructure-damaged.json ├── infrastructure-damaged.min.json ├── killed-in-gaza-v3.json ├── killed-in-gaza-v3.min.json ├── killed-in-gaza.json ├── killed-in-gaza.min.json ├── old └── gitkeep.md ├── package.json ├── patches └── docusaurus-utils.sh ├── press_killed_in_gaza.json ├── press_killed_in_gaza.min.json ├── scripts ├── README.md ├── build │ ├── assemble-api-resources.ts │ ├── download-killed-derived.ts │ ├── pre-build.sh │ └── pre-deploy.sh ├── data │ ├── common │ │ ├── README.md │ │ ├── casualties-daily │ │ │ └── index.ts │ │ └── killed-in-gaza │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── data │ │ │ ├── dict_ar_ar.csv │ │ │ ├── dict_ar_en.csv │ │ │ └── raw.csv │ │ │ ├── diff_lists.ts │ │ │ ├── diff_lists.types.ts │ │ │ ├── extract-pdfs.ts │ │ │ ├── extract_20240501.py │ │ │ ├── extract_20240726.py │ │ │ ├── extract_20240921.py │ │ │ ├── extract_20250323.py │ │ │ ├── extract_20250615.py │ │ │ ├── extract_20250715.py │ │ │ ├── extract_20250731.py │ │ │ ├── generate_killed_list.ts │ │ │ ├── merge-csv.ts │ │ │ ├── normalize-name.ts │ │ │ ├── output │ │ │ └── .gitkeep │ │ │ ├── requirements.txt │ │ │ ├── sort-csv.ts │ │ │ ├── translate.ts │ │ │ ├── update_generator.ts │ │ │ └── utils.ts │ ├── v1 │ │ └── summary.ts │ ├── v2 │ │ ├── derived │ │ │ ├── csv.ts │ │ │ ├── killed-child-name-counts.ts │ │ │ ├── killed-indices.ts │ │ │ └── killed-names.ts │ │ ├── gaza-daily.ts │ │ ├── killed-in-gaza.ts │ │ ├── press-killed-in-gaza.ts │ │ ├── summary.ts │ │ └── west-bank-daily.ts │ └── v3 │ │ ├── constants.ts │ │ ├── derived │ │ └── csv.ts │ │ ├── infrastructure-damaged.ts │ │ ├── killed-in-gaza.ts │ │ └── summary.ts └── utils │ ├── artifacts.ts │ ├── csv.ts │ ├── deploy-logs.ts │ ├── fs.ts │ ├── gsheets.ts │ └── manifest.ts ├── site ├── .gitignore ├── babel.config.js ├── docs │ ├── casualties-daily-west-bank.mdx │ ├── casualties-daily.mdx │ ├── contact.md │ ├── datasets.mdx │ ├── examples.mdx │ ├── examples │ │ ├── poster.mdx │ │ └── rebel-metrics.mdx │ ├── guides │ │ ├── architecture.md │ │ ├── contributing.md │ │ └── versioning.md │ ├── infrastructure-damaged.mdx │ ├── killed-in-gaza-person.mdx │ ├── killed-in-gaza.mdx │ ├── martyrs.mdx │ ├── press-killed-in-gaza.mdx │ └── summary.mdx ├── docusaurus.config.ts ├── i18n │ ├── ar │ │ ├── code.json │ │ ├── docusaurus-plugin-content-docs │ │ │ └── current │ │ │ │ ├── casualties-daily.mdx │ │ │ │ ├── killed-in-gaza.mdx │ │ │ │ ├── martyrs.mdx │ │ │ │ └── summary.mdx │ │ └── docusaurus-theme-classic │ │ │ ├── footer.json │ │ │ └── navbar.json │ └── en │ │ └── code.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.module.css │ │ │ ├── Button.tsx │ │ │ └── index.ts │ │ ├── CancelCircleIcon.tsx │ │ ├── DailyReportStatsLabel.tsx │ │ ├── DatasetList │ │ │ ├── DatasetList.styles.module.css │ │ │ ├── DatasetList.tsx │ │ │ └── index.ts │ │ ├── DocWarningBubble │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── ExampleUsageGrid │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── ExternalLinkButton │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── ExternalWindowIcon.tsx │ │ ├── HomeDailyChart │ │ │ ├── HalfRadialProgress.tsx │ │ │ ├── HomeDailyChart.styles.module.css │ │ │ ├── HomeDailyChart.tsx │ │ │ ├── generator │ │ │ │ ├── chart-generator.ts │ │ │ │ ├── chart_events.json │ │ │ │ └── svg-helpers.ts │ │ │ └── index.ts │ │ ├── JSONFileLinks │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── KilledHeaderMarquee │ │ │ ├── KilledHeaderMarquee.styles.module.css │ │ │ ├── KilledHeaderMarquee.tsx │ │ │ ├── PersonIcon.tsx │ │ │ ├── index.ts │ │ │ ├── page.util.ts │ │ │ └── ssr-vars.ts │ │ ├── KilledListCountLabel.tsx │ │ ├── KilledListExplorer │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── KilledListPagingLabel.tsx │ │ ├── KilledName │ │ │ ├── KilledName.styles.module.css │ │ │ ├── KilledName.tsx │ │ │ └── index.ts │ │ ├── KilledNamesLastUpdateUntilLabel.tsx │ │ ├── KilledNamesListGrid │ │ │ ├── KilledNamesListGrid.tsx │ │ │ ├── components │ │ │ │ ├── Cell.tsx │ │ │ │ ├── FilterRow.module.css │ │ │ │ ├── FilterRow.tsx │ │ │ │ ├── GenderAgeFilters.module.css │ │ │ │ ├── GenderAgeFilters.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── InlineSearchSuggestions.tsx │ │ │ │ ├── ScrollButtonBar.module.css │ │ │ │ ├── ScrollButtonBar.tsx │ │ │ │ ├── ScrollProgress.tsx │ │ │ │ ├── StatusRow.tsx │ │ │ │ ├── TitleRow.tsx │ │ │ │ └── shared.types.ts │ │ │ ├── csvDownload.ts │ │ │ ├── dimension.utils.ts │ │ │ ├── getColumnConfig.ts │ │ │ ├── killedNamesListGrid.module.css │ │ │ ├── searchSuggestion.ts │ │ │ ├── startWorker.ts │ │ │ ├── types.ts │ │ │ └── worker.ts │ │ ├── KilledNamesUpdateSourceLink.tsx │ │ ├── KilledPersonSearchResult │ │ │ ├── KilledPersonSearchResult.styles.module.css │ │ │ ├── KilledPersonSearchResult.tsx │ │ │ └── index.ts │ │ ├── ListViewerImgButton.tsx │ │ ├── PressKilledListCountLabel.tsx │ │ ├── Redirect │ │ │ └── index.tsx │ │ ├── ScrollArrowIcon.module.css │ │ ├── ScrollArrowIcon.tsx │ │ ├── SearchIcon.tsx │ │ ├── Spinner.tsx │ │ └── index.ts │ ├── css │ │ └── custom.css │ ├── generated │ │ └── manifest.json │ ├── lib │ │ ├── age-icon.ts │ │ ├── resource-paths.ts │ │ └── search-index.ts │ ├── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── list.module.css │ │ └── list.tsx │ └── types │ │ └── point-at-length.d.ts ├── static │ ├── .nojekyll │ ├── img │ │ ├── exampleuse │ │ │ ├── Names_A0.pdf │ │ │ ├── Names_A0_Hind-Rajab.pdf │ │ │ ├── af2c-remember.png │ │ │ ├── beyondthenumbers-names.png │ │ │ ├── beyondthenumbers.png │ │ │ ├── birdsofgaza.png │ │ │ ├── civilians-infographic.jpg │ │ │ ├── civilians-poster-hind.png │ │ │ ├── civilians-poster.png │ │ │ ├── countgrid.png │ │ │ ├── data-activists.png │ │ │ ├── dots.png │ │ │ ├── dropsite.png │ │ │ ├── economist.png │ │ │ ├── genocidemonitor.png │ │ │ ├── hinds-banner.png │ │ │ ├── howmanymore.png │ │ │ ├── linechart.png │ │ │ ├── nameskilledingaza.png │ │ │ ├── nworld-ramadan.png │ │ │ ├── oct7factcheck.jpeg │ │ │ ├── palestina-ba.png │ │ │ ├── palestine-poppy.jpg │ │ │ ├── python-api.png │ │ │ ├── racingbars.png │ │ │ ├── rebel-metrics-70k.png │ │ │ ├── rebel-metrics-ceasefire.png │ │ │ ├── rebel-metrics-gaza-bars-tiktok.png │ │ │ ├── rebel-metrics-gaza-bars.png │ │ │ ├── rebel-metrics-gaza-demo.png │ │ │ ├── rebel-metrics-ghf-analysis.png │ │ │ ├── rebel-metrics-ghf-deathtraps.png │ │ │ ├── rebel-metrics-westbank-attacks.png │ │ │ ├── rebel-metrics-westbank-bars.png │ │ │ ├── rebel-metrics-westbank-tiktok.png │ │ │ ├── river-to-the-sea-names.png │ │ │ ├── river-to-the-sea.png │ │ │ ├── scrollingnames.png │ │ │ ├── szh-counts.png │ │ │ ├── tfp-ppm.png │ │ │ └── unityfast.png │ │ ├── favicon.svg │ │ ├── list-viewer.png │ │ ├── logo.jpeg │ │ ├── logo.svg │ │ ├── metathumbnail.png │ │ ├── palestinian-woman.jpg │ │ └── tfp-mark-header.png │ └── sources │ │ ├── 20240329gaza.pdf │ │ ├── 20240413killed-in-gaza.csv │ │ ├── 20240430gaza.pdf │ │ ├── 20240630gaza.pdf │ │ ├── 20240808killed-in-gaza.csv │ │ ├── 20240831gaza.pdf │ │ ├── 20240921killed-in-gaza.csv │ │ ├── 20250323_ibc.xlsx │ │ ├── 20250615_ibc.xlsx │ │ └── 20250615_moh.csv ├── tsconfig.json └── updates │ ├── 2024-02-06-killed-list-update.md │ ├── 2024-02-22-west-bank-daily.md │ ├── 2024-03-25-west-bank-frequency.md │ ├── 2024-04-29-killed-list-update.md │ ├── 2024-05-02-press-killed.md │ ├── 2024-06-26-killed-list-update.md │ ├── 2024-08-17-gaza-daily.md │ ├── 2024-09-07-killed-list-update.md │ ├── 2024-09-21-killed-list-update.md │ ├── 2024-10-14-gaza-ministry-casualty-context.md │ ├── 2025-01-11-gaza-casualties.md │ ├── 2025-02-13-truce-fields.md │ ├── 2025-05-12-killed-list-update.md │ ├── 2025-05-21-killed-breakdowns.md │ ├── 2025-06-08-wb-correction.md │ ├── 2025-07-06-killed-list-update.md │ ├── 2025-07-20-killed-list-update.md │ ├── 2025-08-17-killed-list-update.md │ └── 2025-08-23-gaza-famine-aid.md ├── tsconfig.json ├── types ├── api.types.ts ├── arabic-name-to-en.d.ts ├── casualties-daily.types.ts ├── killed-in-gaza.types.ts └── summary.types.ts ├── west_bank_daily.json └── west_bank_daily.min.json /.github/workflows/gen-daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/.github/workflows/gen-daily.yml -------------------------------------------------------------------------------- /.github/workflows/gen-killed-in-gaza.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/.github/workflows/gen-killed-in-gaza.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/bun.lockb -------------------------------------------------------------------------------- /casualties_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/casualties_daily.json -------------------------------------------------------------------------------- /casualties_daily.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/casualties_daily.min.json -------------------------------------------------------------------------------- /infrastructure-damaged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/infrastructure-damaged.json -------------------------------------------------------------------------------- /infrastructure-damaged.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/infrastructure-damaged.min.json -------------------------------------------------------------------------------- /killed-in-gaza-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/killed-in-gaza-v3.json -------------------------------------------------------------------------------- /killed-in-gaza-v3.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/killed-in-gaza-v3.min.json -------------------------------------------------------------------------------- /killed-in-gaza.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/killed-in-gaza.json -------------------------------------------------------------------------------- /killed-in-gaza.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/killed-in-gaza.min.json -------------------------------------------------------------------------------- /old/gitkeep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/old/gitkeep.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/package.json -------------------------------------------------------------------------------- /patches/docusaurus-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/patches/docusaurus-utils.sh -------------------------------------------------------------------------------- /press_killed_in_gaza.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/press_killed_in_gaza.json -------------------------------------------------------------------------------- /press_killed_in_gaza.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/press_killed_in_gaza.min.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build/assemble-api-resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/build/assemble-api-resources.ts -------------------------------------------------------------------------------- /scripts/build/download-killed-derived.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/build/download-killed-derived.ts -------------------------------------------------------------------------------- /scripts/build/pre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/build/pre-build.sh -------------------------------------------------------------------------------- /scripts/build/pre-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/build/pre-deploy.sh -------------------------------------------------------------------------------- /scripts/data/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/README.md -------------------------------------------------------------------------------- /scripts/data/common/casualties-daily/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/casualties-daily/index.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/.gitignore: -------------------------------------------------------------------------------- 1 | raw/ 2 | temp/ 3 | -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/README.md -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/constants.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/data/dict_ar_ar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/data/dict_ar_ar.csv -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/data/dict_ar_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/data/dict_ar_en.csv -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/data/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/data/raw.csv -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/diff_lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/diff_lists.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/diff_lists.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/diff_lists.types.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract-pdfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract-pdfs.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20240501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20240501.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20240726.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20240726.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20240921.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20240921.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20250323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20250323.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20250615.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20250615.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20250715.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20250715.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/extract_20250731.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/extract_20250731.py -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/generate_killed_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/generate_killed_list.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/merge-csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/merge-csv.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/normalize-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/normalize-name.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/sort-csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/sort-csv.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/translate.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/update_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/update_generator.ts -------------------------------------------------------------------------------- /scripts/data/common/killed-in-gaza/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/common/killed-in-gaza/utils.ts -------------------------------------------------------------------------------- /scripts/data/v1/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v1/summary.ts -------------------------------------------------------------------------------- /scripts/data/v2/derived/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/derived/csv.ts -------------------------------------------------------------------------------- /scripts/data/v2/derived/killed-child-name-counts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/derived/killed-child-name-counts.ts -------------------------------------------------------------------------------- /scripts/data/v2/derived/killed-indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/derived/killed-indices.ts -------------------------------------------------------------------------------- /scripts/data/v2/derived/killed-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/derived/killed-names.ts -------------------------------------------------------------------------------- /scripts/data/v2/gaza-daily.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/gaza-daily.ts -------------------------------------------------------------------------------- /scripts/data/v2/killed-in-gaza.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/killed-in-gaza.ts -------------------------------------------------------------------------------- /scripts/data/v2/press-killed-in-gaza.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/press-killed-in-gaza.ts -------------------------------------------------------------------------------- /scripts/data/v2/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/summary.ts -------------------------------------------------------------------------------- /scripts/data/v2/west-bank-daily.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v2/west-bank-daily.ts -------------------------------------------------------------------------------- /scripts/data/v3/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v3/constants.ts -------------------------------------------------------------------------------- /scripts/data/v3/derived/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v3/derived/csv.ts -------------------------------------------------------------------------------- /scripts/data/v3/infrastructure-damaged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v3/infrastructure-damaged.ts -------------------------------------------------------------------------------- /scripts/data/v3/killed-in-gaza.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v3/killed-in-gaza.ts -------------------------------------------------------------------------------- /scripts/data/v3/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/data/v3/summary.ts -------------------------------------------------------------------------------- /scripts/utils/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/utils/artifacts.ts -------------------------------------------------------------------------------- /scripts/utils/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/utils/csv.ts -------------------------------------------------------------------------------- /scripts/utils/deploy-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/utils/deploy-logs.ts -------------------------------------------------------------------------------- /scripts/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/utils/fs.ts -------------------------------------------------------------------------------- /scripts/utils/gsheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/utils/gsheets.ts -------------------------------------------------------------------------------- /scripts/utils/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/scripts/utils/manifest.ts -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/babel.config.js -------------------------------------------------------------------------------- /site/docs/casualties-daily-west-bank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/casualties-daily-west-bank.mdx -------------------------------------------------------------------------------- /site/docs/casualties-daily.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/casualties-daily.mdx -------------------------------------------------------------------------------- /site/docs/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/contact.md -------------------------------------------------------------------------------- /site/docs/datasets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/datasets.mdx -------------------------------------------------------------------------------- /site/docs/examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/examples.mdx -------------------------------------------------------------------------------- /site/docs/examples/poster.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/examples/poster.mdx -------------------------------------------------------------------------------- /site/docs/examples/rebel-metrics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/examples/rebel-metrics.mdx -------------------------------------------------------------------------------- /site/docs/guides/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/guides/architecture.md -------------------------------------------------------------------------------- /site/docs/guides/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/guides/contributing.md -------------------------------------------------------------------------------- /site/docs/guides/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/guides/versioning.md -------------------------------------------------------------------------------- /site/docs/infrastructure-damaged.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/infrastructure-damaged.mdx -------------------------------------------------------------------------------- /site/docs/killed-in-gaza-person.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/killed-in-gaza-person.mdx -------------------------------------------------------------------------------- /site/docs/killed-in-gaza.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/killed-in-gaza.mdx -------------------------------------------------------------------------------- /site/docs/martyrs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/martyrs.mdx -------------------------------------------------------------------------------- /site/docs/press-killed-in-gaza.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/press-killed-in-gaza.mdx -------------------------------------------------------------------------------- /site/docs/summary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docs/summary.mdx -------------------------------------------------------------------------------- /site/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/docusaurus.config.ts -------------------------------------------------------------------------------- /site/i18n/ar/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/code.json -------------------------------------------------------------------------------- /site/i18n/ar/docusaurus-plugin-content-docs/current/casualties-daily.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/docusaurus-plugin-content-docs/current/casualties-daily.mdx -------------------------------------------------------------------------------- /site/i18n/ar/docusaurus-plugin-content-docs/current/killed-in-gaza.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/docusaurus-plugin-content-docs/current/killed-in-gaza.mdx -------------------------------------------------------------------------------- /site/i18n/ar/docusaurus-plugin-content-docs/current/martyrs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/docusaurus-plugin-content-docs/current/martyrs.mdx -------------------------------------------------------------------------------- /site/i18n/ar/docusaurus-plugin-content-docs/current/summary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/docusaurus-plugin-content-docs/current/summary.mdx -------------------------------------------------------------------------------- /site/i18n/ar/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /site/i18n/ar/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/ar/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /site/i18n/en/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/i18n/en/code.json -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/package.json -------------------------------------------------------------------------------- /site/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/sidebars.ts -------------------------------------------------------------------------------- /site/src/components/Button/Button.styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/Button/Button.styles.module.css -------------------------------------------------------------------------------- /site/src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /site/src/components/Button/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Button"; 2 | -------------------------------------------------------------------------------- /site/src/components/CancelCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/CancelCircleIcon.tsx -------------------------------------------------------------------------------- /site/src/components/DailyReportStatsLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/DailyReportStatsLabel.tsx -------------------------------------------------------------------------------- /site/src/components/DatasetList/DatasetList.styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/DatasetList/DatasetList.styles.module.css -------------------------------------------------------------------------------- /site/src/components/DatasetList/DatasetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/DatasetList/DatasetList.tsx -------------------------------------------------------------------------------- /site/src/components/DatasetList/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DatasetList"; 2 | -------------------------------------------------------------------------------- /site/src/components/DocWarningBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/DocWarningBubble/index.tsx -------------------------------------------------------------------------------- /site/src/components/DocWarningBubble/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/DocWarningBubble/styles.module.css -------------------------------------------------------------------------------- /site/src/components/ExampleUsageGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ExampleUsageGrid/index.tsx -------------------------------------------------------------------------------- /site/src/components/ExampleUsageGrid/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ExampleUsageGrid/styles.module.css -------------------------------------------------------------------------------- /site/src/components/ExternalLinkButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ExternalLinkButton/index.tsx -------------------------------------------------------------------------------- /site/src/components/ExternalLinkButton/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ExternalLinkButton/styles.module.css -------------------------------------------------------------------------------- /site/src/components/ExternalWindowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ExternalWindowIcon.tsx -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/HalfRadialProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/HomeDailyChart/HalfRadialProgress.tsx -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/HomeDailyChart.styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/HomeDailyChart/HomeDailyChart.styles.module.css -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/HomeDailyChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/HomeDailyChart/HomeDailyChart.tsx -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/generator/chart-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/HomeDailyChart/generator/chart-generator.ts -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/generator/chart_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/HomeDailyChart/generator/chart_events.json -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/generator/svg-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/HomeDailyChart/generator/svg-helpers.ts -------------------------------------------------------------------------------- /site/src/components/HomeDailyChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./HomeDailyChart"; 2 | -------------------------------------------------------------------------------- /site/src/components/JSONFileLinks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/JSONFileLinks/index.tsx -------------------------------------------------------------------------------- /site/src/components/JSONFileLinks/styles.module.css: -------------------------------------------------------------------------------- 1 | .codeBlocks { 2 | margin-top: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /site/src/components/KilledHeaderMarquee/KilledHeaderMarquee.styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledHeaderMarquee/KilledHeaderMarquee.styles.module.css -------------------------------------------------------------------------------- /site/src/components/KilledHeaderMarquee/KilledHeaderMarquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledHeaderMarquee/KilledHeaderMarquee.tsx -------------------------------------------------------------------------------- /site/src/components/KilledHeaderMarquee/PersonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledHeaderMarquee/PersonIcon.tsx -------------------------------------------------------------------------------- /site/src/components/KilledHeaderMarquee/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./KilledHeaderMarquee"; 2 | -------------------------------------------------------------------------------- /site/src/components/KilledHeaderMarquee/page.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledHeaderMarquee/page.util.ts -------------------------------------------------------------------------------- /site/src/components/KilledHeaderMarquee/ssr-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledHeaderMarquee/ssr-vars.ts -------------------------------------------------------------------------------- /site/src/components/KilledListCountLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledListCountLabel.tsx -------------------------------------------------------------------------------- /site/src/components/KilledListExplorer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledListExplorer/index.tsx -------------------------------------------------------------------------------- /site/src/components/KilledListExplorer/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledListExplorer/styles.module.css -------------------------------------------------------------------------------- /site/src/components/KilledListPagingLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledListPagingLabel.tsx -------------------------------------------------------------------------------- /site/src/components/KilledName/KilledName.styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledName/KilledName.styles.module.css -------------------------------------------------------------------------------- /site/src/components/KilledName/KilledName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledName/KilledName.tsx -------------------------------------------------------------------------------- /site/src/components/KilledName/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./KilledName"; 2 | -------------------------------------------------------------------------------- /site/src/components/KilledNamesLastUpdateUntilLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesLastUpdateUntilLabel.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/KilledNamesListGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/KilledNamesListGrid.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/Cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/Cell.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/FilterRow.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/FilterRow.module.css -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/FilterRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/FilterRow.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/GenderAgeFilters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/GenderAgeFilters.module.css -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/GenderAgeFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/GenderAgeFilters.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/Header.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/InlineSearchSuggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/InlineSearchSuggestions.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/ScrollButtonBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/ScrollButtonBar.module.css -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/ScrollButtonBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/ScrollButtonBar.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/ScrollProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/ScrollProgress.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/StatusRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/StatusRow.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/TitleRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/TitleRow.tsx -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/components/shared.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/components/shared.types.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/csvDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/csvDownload.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/dimension.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/dimension.utils.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/getColumnConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/getColumnConfig.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/killedNamesListGrid.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/killedNamesListGrid.module.css -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/searchSuggestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/searchSuggestion.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/startWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/startWorker.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/types.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesListGrid/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesListGrid/worker.ts -------------------------------------------------------------------------------- /site/src/components/KilledNamesUpdateSourceLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledNamesUpdateSourceLink.tsx -------------------------------------------------------------------------------- /site/src/components/KilledPersonSearchResult/KilledPersonSearchResult.styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledPersonSearchResult/KilledPersonSearchResult.styles.module.css -------------------------------------------------------------------------------- /site/src/components/KilledPersonSearchResult/KilledPersonSearchResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/KilledPersonSearchResult/KilledPersonSearchResult.tsx -------------------------------------------------------------------------------- /site/src/components/KilledPersonSearchResult/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./KilledPersonSearchResult"; 2 | -------------------------------------------------------------------------------- /site/src/components/ListViewerImgButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ListViewerImgButton.tsx -------------------------------------------------------------------------------- /site/src/components/PressKilledListCountLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/PressKilledListCountLabel.tsx -------------------------------------------------------------------------------- /site/src/components/Redirect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/Redirect/index.tsx -------------------------------------------------------------------------------- /site/src/components/ScrollArrowIcon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ScrollArrowIcon.module.css -------------------------------------------------------------------------------- /site/src/components/ScrollArrowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/ScrollArrowIcon.tsx -------------------------------------------------------------------------------- /site/src/components/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/SearchIcon.tsx -------------------------------------------------------------------------------- /site/src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/Spinner.tsx -------------------------------------------------------------------------------- /site/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/components/index.ts -------------------------------------------------------------------------------- /site/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/css/custom.css -------------------------------------------------------------------------------- /site/src/generated/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/generated/manifest.json -------------------------------------------------------------------------------- /site/src/lib/age-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/lib/age-icon.ts -------------------------------------------------------------------------------- /site/src/lib/resource-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/lib/resource-paths.ts -------------------------------------------------------------------------------- /site/src/lib/search-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/lib/search-index.ts -------------------------------------------------------------------------------- /site/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/pages/index.module.css -------------------------------------------------------------------------------- /site/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/pages/index.tsx -------------------------------------------------------------------------------- /site/src/pages/list.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/pages/list.module.css -------------------------------------------------------------------------------- /site/src/pages/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/pages/list.tsx -------------------------------------------------------------------------------- /site/src/types/point-at-length.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/src/types/point-at-length.d.ts -------------------------------------------------------------------------------- /site/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/static/img/exampleuse/Names_A0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/Names_A0.pdf -------------------------------------------------------------------------------- /site/static/img/exampleuse/Names_A0_Hind-Rajab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/Names_A0_Hind-Rajab.pdf -------------------------------------------------------------------------------- /site/static/img/exampleuse/af2c-remember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/af2c-remember.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/beyondthenumbers-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/beyondthenumbers-names.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/beyondthenumbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/beyondthenumbers.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/birdsofgaza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/birdsofgaza.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/civilians-infographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/civilians-infographic.jpg -------------------------------------------------------------------------------- /site/static/img/exampleuse/civilians-poster-hind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/civilians-poster-hind.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/civilians-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/civilians-poster.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/countgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/countgrid.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/data-activists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/data-activists.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/dots.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/dropsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/dropsite.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/economist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/economist.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/genocidemonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/genocidemonitor.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/hinds-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/hinds-banner.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/howmanymore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/howmanymore.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/linechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/linechart.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/nameskilledingaza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/nameskilledingaza.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/nworld-ramadan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/nworld-ramadan.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/oct7factcheck.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/oct7factcheck.jpeg -------------------------------------------------------------------------------- /site/static/img/exampleuse/palestina-ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/palestina-ba.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/palestine-poppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/palestine-poppy.jpg -------------------------------------------------------------------------------- /site/static/img/exampleuse/python-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/python-api.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/racingbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/racingbars.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-70k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-70k.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-ceasefire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-ceasefire.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-gaza-bars-tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-gaza-bars-tiktok.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-gaza-bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-gaza-bars.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-gaza-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-gaza-demo.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-ghf-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-ghf-analysis.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-ghf-deathtraps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-ghf-deathtraps.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-westbank-attacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-westbank-attacks.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-westbank-bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-westbank-bars.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/rebel-metrics-westbank-tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/rebel-metrics-westbank-tiktok.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/river-to-the-sea-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/river-to-the-sea-names.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/river-to-the-sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/river-to-the-sea.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/scrollingnames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/scrollingnames.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/szh-counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/szh-counts.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/tfp-ppm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/tfp-ppm.png -------------------------------------------------------------------------------- /site/static/img/exampleuse/unityfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/exampleuse/unityfast.png -------------------------------------------------------------------------------- /site/static/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/favicon.svg -------------------------------------------------------------------------------- /site/static/img/list-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/list-viewer.png -------------------------------------------------------------------------------- /site/static/img/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/logo.jpeg -------------------------------------------------------------------------------- /site/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/logo.svg -------------------------------------------------------------------------------- /site/static/img/metathumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/metathumbnail.png -------------------------------------------------------------------------------- /site/static/img/palestinian-woman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/palestinian-woman.jpg -------------------------------------------------------------------------------- /site/static/img/tfp-mark-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/img/tfp-mark-header.png -------------------------------------------------------------------------------- /site/static/sources/20240329gaza.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240329gaza.pdf -------------------------------------------------------------------------------- /site/static/sources/20240413killed-in-gaza.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240413killed-in-gaza.csv -------------------------------------------------------------------------------- /site/static/sources/20240430gaza.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240430gaza.pdf -------------------------------------------------------------------------------- /site/static/sources/20240630gaza.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240630gaza.pdf -------------------------------------------------------------------------------- /site/static/sources/20240808killed-in-gaza.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240808killed-in-gaza.csv -------------------------------------------------------------------------------- /site/static/sources/20240831gaza.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240831gaza.pdf -------------------------------------------------------------------------------- /site/static/sources/20240921killed-in-gaza.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20240921killed-in-gaza.csv -------------------------------------------------------------------------------- /site/static/sources/20250323_ibc.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20250323_ibc.xlsx -------------------------------------------------------------------------------- /site/static/sources/20250615_ibc.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20250615_ibc.xlsx -------------------------------------------------------------------------------- /site/static/sources/20250615_moh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/static/sources/20250615_moh.csv -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /site/updates/2024-02-06-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-02-06-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2024-02-22-west-bank-daily.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-02-22-west-bank-daily.md -------------------------------------------------------------------------------- /site/updates/2024-03-25-west-bank-frequency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-03-25-west-bank-frequency.md -------------------------------------------------------------------------------- /site/updates/2024-04-29-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-04-29-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2024-05-02-press-killed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-05-02-press-killed.md -------------------------------------------------------------------------------- /site/updates/2024-06-26-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-06-26-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2024-08-17-gaza-daily.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-08-17-gaza-daily.md -------------------------------------------------------------------------------- /site/updates/2024-09-07-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-09-07-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2024-09-21-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-09-21-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2024-10-14-gaza-ministry-casualty-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2024-10-14-gaza-ministry-casualty-context.md -------------------------------------------------------------------------------- /site/updates/2025-01-11-gaza-casualties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-01-11-gaza-casualties.md -------------------------------------------------------------------------------- /site/updates/2025-02-13-truce-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-02-13-truce-fields.md -------------------------------------------------------------------------------- /site/updates/2025-05-12-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-05-12-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2025-05-21-killed-breakdowns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-05-21-killed-breakdowns.md -------------------------------------------------------------------------------- /site/updates/2025-06-08-wb-correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-06-08-wb-correction.md -------------------------------------------------------------------------------- /site/updates/2025-07-06-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-07-06-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2025-07-20-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-07-20-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2025-08-17-killed-list-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-08-17-killed-list-update.md -------------------------------------------------------------------------------- /site/updates/2025-08-23-gaza-famine-aid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/site/updates/2025-08-23-gaza-famine-aid.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/api.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/types/api.types.ts -------------------------------------------------------------------------------- /types/arabic-name-to-en.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/types/arabic-name-to-en.d.ts -------------------------------------------------------------------------------- /types/casualties-daily.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/types/casualties-daily.types.ts -------------------------------------------------------------------------------- /types/killed-in-gaza.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/types/killed-in-gaza.types.ts -------------------------------------------------------------------------------- /types/summary.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/types/summary.types.ts -------------------------------------------------------------------------------- /west_bank_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/west_bank_daily.json -------------------------------------------------------------------------------- /west_bank_daily.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/palestine-datasets/HEAD/west_bank_daily.min.json --------------------------------------------------------------------------------