Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Wiki papers to the projects and publications pages #10

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/publications/lrl_comparison.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/content/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import EquivalenceByCanonicalization from "@/../public/projects/equivalence-by-c
import STSearch from "@/../public/projects/stsearch.svg";
import SimplifyTypes from "@/../public/projects/simplify-types.png";
import LearnabilityProgramSynthesizers from "@/../public/publications/learnability-program-synthesizers.png";
import LRLWiki from "@/../public/publications/lrl_comparison.png";

export interface Project {
title: string;
Expand All @@ -28,6 +29,17 @@ export interface Project {

export const PROJECTS: Project[] = [
{
title: "Low-Resourced Languages and Online Knowledge Repositories: A Need-Finding Study",
description:
"A need-finding study with Wikipedia contributors in Amharic, Afan Oromo, and Tigrinya to understand barriers to contribution in low-resourced languages.",
image: {
src: LRLWiki,
alt: "Low-Resourced Languages and Online Knowledge Repositories: A Need-Finding Study",
},
acmDlUrl: "https://doi.org/10.1145/3613904.3642605",
youtubeUrl: "https://www.youtube.com/watch?v=aJ8BIo2O4mY",
},

title: "A Need-Finding Study with Users of Geospatial Data",
description:
"A contextual inquiry study exploring the challenges users face in finding, transforming, analyzing, and visualizing geospatial data, drawing on participants from Earth and climate science, the social sciences, and data journalism.",
Expand Down
38 changes: 38 additions & 0 deletions src/content/publications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import IncidentalSpecs from "@/../public/publications/incidental-specs.png";
import SoftwareEcosystem from "@/../public/projects/software-ecosystem.svg";
import EquivalenceByCanonicalization from "@/../public/projects/equivalence-by-canonicalization.png";
import STSearch from "@/../public/projects/stsearch.svg";
import LRLWiki from "@/../public/publications/lrl_comparison.png";


interface PublicationAttributes {
title: string;
Expand Down Expand Up @@ -101,6 +103,42 @@ export const PUBLICATIONS: Publication[] = [
acmDlUrl: "https://dl.acm.org/doi/10.1145/3656460",
date: new Date("2024-06-24"),
},
{
kind: PublicationKind.Conference,
title:
"Low-resourced Languages and Online Knowledge Repositories: A Need-Finding Study",
authors: [
"Hellina Hailu Nigatu",
"John Canny",
"Sarah E. Chasins",
],
conference: {
name: "Proceedings of the 2024 ACM Conference on Human Factors in Computing Systems",
acronym: "CHI",
},
hero: LRLWiki,
acmDlUrl: "https://doi.org/10.1145/3613904.3642605",
youtubeUrl: "https://www.youtube.com/watch?v=aJ8BIo2O4mY",
date: new Date("2024-05-11"),
},
{
kind: PublicationKind.Conference,
title:
"A Need Finding Study with Low-Resourced Language Content Creators",
authors: [
"Hellina Hailu Nigatu",
"John Canny",
"Sarah E. Chasins",
],
conference: {
name: "Proceedings of the 4th ACM African Human Computer Interaction Conference",
acronym: "AfriCHI",
},
// hero: CoDesignTransparency,
acmDlUrl: "https://doi.org/10.1145/3628096.3628738",
// youtubeUrl: "https://youtu.be/Z_kUfUHswYg",
date: new Date("2023-11-27"),
},
{
kind: PublicationKind.Conference,
title:
Expand Down