Skip to content

Instantly share code, notes, and snippets.

@felixdorn
Last active October 16, 2022 08:30
Show Gist options
  • Save felixdorn/aa6e3a2f678e17d2adec8ed3379eba6d to your computer and use it in GitHub Desktop.
Save felixdorn/aa6e3a2f678e17d2adec8ed3379eba6d to your computer and use it in GitHub Desktop.
{
"name": "me/crawler",
"autoload": {
"psr-4": {
"Me\\Crawler\\": "src/"
}
},
"authors": [
{
"name": "Félix Dorn",
"email": "github@felixdorn.fr"
}
],
"require": {
"php": "^8.1",
"symfony/dom-crawler": "^6.1",
"symfony/css-selector": "^6.1",
"illuminate/http": "^9.35",
"guzzlehttp/guzzle": "^7.5"
}
}
<?php
use Illuminate\Http\Client\Factory;
use Symfony\Component\DomCrawler\Crawler;
require __DIR__ . '/vendor/autoload.php';
$query = "https://www.media.mit.edu/search/?filter=project&extra_filter=all&start_year=2018&end_year=2022&page=%s";
$httpFactory = new Factory();
$projects = [];
const NUMBER_OF_PAGES = 26; // found through trial and error
for ($i = 1; $i < NUMBER_OF_PAGES + 1; $i++) {
$url = sprintf($query, $i);
$body = $httpFactory->get($url)->body();
$crawler = new Crawler($body);
$crawler->filter('[data-href]')->each(function (Crawler $node) use (&$projects) {
$project = [
'href' => $node->attr('data-href'),
'title' => $node->filter('.module-title')->text('null'),
'eyebrow' => $node->filter('.module-eyebrow')->text('null'),
'description' => $node->filter('.module-excerpt')->text('null'),
'meta' => $node->filter('.module-meta')->text('null'),
];
$projects[] = $project;
});
echo "Page $i done" . PHP_EOL;
echo 'Sleeping for 1 seconds...' . PHP_EOL;
sleep(1);
}
file_put_contents(
__DIR__ . '/projects.json',
json_encode($projects, JSON_PRETTY_PRINT)
);
[
{
"href": "\/projects\/theme-attention-mindfulness-and-health\/overview\/",
"title": "Theme | Attention, Memory & Optimal Performance",
"eyebrow": "Project",
"description": "Multiple projects related to&nbsp; the theme of how digital systems may support attention, memory and optimal performance.",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/theme-engineering-dreams\/overview\/",
"title": "Theme | Sleep & Dreams",
"eyebrow": "Project",
"description": "We&nbsp; build technologies that interface with the sleeping mind.&nbsp;We track different sleep-stages using brain activity, muscle tensio\u2026",
"meta": "in Fluid Interfaces #design #wearable computing #interfaces +2\u00a0more"
},
{
"href": "\/projects\/sleepstim\/overview\/",
"title": "SleepStim",
"eyebrow": "Project",
"description": "SleepStim is a framework for automatically recording sleep physiology&nbsp; and presenting sensory stimuli in sleep, using consumer smartph\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/porphyrin-imaging\/overview\/",
"title": "Biomarker Imaging with Mobile Phones",
"eyebrow": "Project",
"description": "We built a low-cost and open source 405 nm imaging device to capture red fluorescence signatures associated with the oral biomarker porphyr\u2026",
"meta": "in Health 0.0 #computer vision #health #imaging +2\u00a0more"
},
{
"href": "\/projects\/near-infrared-imaging-for-detecting-caries-and-structural-deformities-in-teeth\/overview\/",
"title": "Near-Infrared Imaging for Detecting Dental Caries",
"eyebrow": "Project",
"description": "Two-dimensional radiographs are commonly used for evaluating sub-surface hard structures of teeth, but they have low sensitivity for early \u2026",
"meta": "in Health 0.0 #computer vision #bioengineering #health +3\u00a0more"
},
{
"href": "\/projects\/near-infrared-transillumination-guides-administration-of-dental-2d-radiography-and-cone-beam-computed-tomography-imaging\/overview\/",
"title": "Near-Infrared Transillumination Guides Administration of Dental 2D Radiography and Cone Beam Computed Tomography Imaging",
"eyebrow": "Project",
"description": "Two-dimensional radiographs are commonly used for evaluating sub-surface hard structures of teeth, but they have low sensitivity for early \u2026",
"meta": "in Health 0.0 #bioengineering #health #imaging +3\u00a0more"
},
{
"href": "\/projects\/replacing-2d-radiography-and-cone-beam-computed-tomography-with-non-ionizing-imaging-for-medical-diagnosis\/overview\/",
"title": "Non-Ionizing Imaging for Medical Diagnosis Instead of 2D Radiography and Cone-Beam Computed Tomography",
"eyebrow": "Project",
"description": "Two-dimensional radiographs are commonly used for evaluating sub-surface hard structures of teeth, but they have low sensitivity for early \u2026",
"meta": "in Health 0.0 #computer vision #health #imaging +1\u00a0more"
},
{
"href": "\/projects\/at-home-sleep-apnea-screening\/overview\/",
"title": "At-Home Sleep Apnea Screening",
"eyebrow": "Project",
"description": "A large proportion of the American population currently suffers from sleep disorders. Among them are patients with obstructive sleep apnea \u2026",
"meta": "in Health 0.0 #health #engineering #point of care"
},
{
"href": "\/projects\/detecting-biomarkers-with-printable-paper-diagnostics\/overview\/",
"title": "Detecting Biomarkers with Printable Paper Diagnostics",
"eyebrow": "Project",
"description": "Paper diagnostics can be used for affordable and scalable biomarker detection. We propose new methods for stabilizing cellulose-based immun\u2026",
"meta": "in Health 0.0 #bioengineering #health #engineering +1\u00a0more"
},
{
"href": "\/projects\/machine-learning-and-automated-segmentation-of-oral-diseases-using-biomarker-images\/overview\/",
"title": "Machine Learning and Automated Segmentation of Oral Diseases Using Biomarker Images",
"eyebrow": "Project",
"description": "We report a novel method that processes biomarker images collected at the point of care and uses machine learning algorithms to provide a f\u2026",
"meta": "in Health 0.0 #computer vision #health #imaging +3\u00a0more"
},
{
"href": "\/projects\/machine-learning-from-biomarker-signatures-and-correlation-to-systemic-health-conditions\/overview\/",
"title": "Machine Learning from Biomarker Signatures and Correlation to Systemic Health Conditions",
"eyebrow": "Project",
"description": "Imaging fluorescent disease biomarkers in tissues and skin is a non-invasive method to screen for health conditions. We report an automated\u2026",
"meta": "in Health 0.0 #computer vision #artificial intelligence #health +3\u00a0more"
},
{
"href": "\/projects\/machine-learning-for-combined-classification-of-fluorescent-biomarkers-and-expert-annotations-using-white-light-images\/overview\/",
"title": "Machine Learning for Combined Classification of Fluorescent Biomarkers and Expert Annotations Using White Light Images",
"eyebrow": "Project",
"description": "Biomarker imaging provides non-invasive indicators of disease and is used by human experts to augment disease diagnosis. It is, however, of\u2026",
"meta": "in Health 0.0 #health #imaging #machine learning +1\u00a0more"
},
{
"href": "\/projects\/technology-enabled-mobile-phone-screenings-augment-routine-primary-care\/overview\/",
"title": "Technology-Enabled Mobile Phone Screenings Augment Routine Primary Care",
"eyebrow": "Project",
"description": "We have developed a new process to screen patients at the point-of-care with FDA-approved technology-enabled mobile health screenings (TES)\u2026",
"meta": "in Health 0.0 #health #imaging #primary healthcare +3\u00a0more"
},
{
"href": "\/projects\/artificial-intelligence-for-clinical-development\/overview\/",
"title": "Artificial Intelligence and Machine Learning in Clinical Development: A Translational Perspective",
"eyebrow": "Project",
"description": "Technical summary: Future of clinical development is on the verge of a major transformation due to convergence of large new digital data so\u2026",
"meta": "in Health 0.0 #computer vision #human-computer interaction #artificial intelligence +11\u00a0more"
},
{
"href": "\/projects\/machine-learning-algorithms-for-classification-of-microcirculation-images-from-septic-and-non-septic-patients-1\/overview\/",
"title": "Helping Emergency Care Physicians Diagnose Sepsis and Bacterial Infections with Machine Learning and Vision",
"eyebrow": "Project",
"description": "General overview:Sepsis, a life-threatening complication of bacterial infection, leads to millions of worldwide deaths requires significant\u2026",
"meta": "in Health 0.0 #computer vision #human-computer interaction #artificial intelligence +7\u00a0more"
},
{
"href": "\/projects\/computational-histological-staining-and-destaining-of-prostate-core-biopsy-rgb-images-with-generative-adversarial-neural-networks-1\/overview\/",
"title": "AI Methods for Rapid Automated Staining and Destaining of Tissue Biopsies in Hospitals",
"eyebrow": "Project",
"description": "General OverviewStaining of tissues sections using chemical and biological dyes has been used for over a century for visualizing various ti\u2026",
"meta": "in Health 0.0 #artificial intelligence #health #pharmaceuticals +7\u00a0more"
},
{
"href": "\/projects\/digital-clinical-trials-patients-with-novel-machine-learning-and-ai-architectures\/overview\/",
"title": "Digital Clinical Trials with Novel Machine Learning and AI Architectures",
"eyebrow": "Project",
"description": "Dr. Shah was an invited speaker and a contributor at The National Cancer Policy Forum developed workshop series at the The National Academi\u2026",
"meta": "in Health 0.0 #artificial intelligence #synthetic biology #machine learning +5\u00a0more"
},
{
"href": "\/projects\/self-learning-ai-model-learns-from-patient-data-to-design-novel-clinical-trials\/overview\/",
"title": "Self-Learning AI Model Learns from Patient Data to Design Novel Clinical Trials",
"eyebrow": "Project",
"description": "Technical summaryUnstructured learning problems without well-defined rewards are unsuitable for current reinforcement learning (RL) approac\u2026",
"meta": "in Health 0.0 #human-computer interaction #artificial intelligence #bioengineering +8\u00a0more"
},
{
"href": "\/projects\/use-of-deep-learning-to-develop-and-analyze-computational-hematoxylin-and-eosin-staining-of-prostate-core-biopsy-images-for-digital-biopsies\/overview\/",
"title": "Deep Learning to Develop and Analyze Computational Hematoxylin and Eosin Staining of Tissue Images for Digital Biopsies",
"eyebrow": "Project",
"description": "Staining of tissues sections using chemical and biological dyes has been used for over a century for visualizing various tissue types and m\u2026",
"meta": "in Health 0.0 #human-computer interaction #artificial intelligence #bioengineering +8\u00a0more"
},
{
"href": "\/projects\/on-site-analysis-of-foodborne-pathogens-using-density-shift-immunomagnetic-separation-and-culture\/overview\/",
"title": "On-site Analysis of Foodborne Pathogens Using Density-Shift Immunomagnetic Separation and Culture",
"eyebrow": "Project",
"description": "Foodborne pathogens are a major source of human morbidity, food recalls, and economic loss. Current detection methods for foodborne pathoge\u2026",
"meta": "in Health 0.0 #food #health #public health"
},
{
"href": "\/projects\/toolkit-for-real-world-performance-evaluation-deep-learning-models\/overview\/",
"title": "Toolkit for real-world performance evaluation of medical grade deep learning models",
"eyebrow": "Project",
"description": "MotivationResearch studies from Dr. Shah's lab have described several deep learning methods and models to assist clinical decision-making u\u2026",
"meta": "in Health 0.0"
},
{
"href": "\/projects\/research-area-point-of-care-medical-technologies-for-real-world-data-and-evidence-generation\/overview\/",
"title": "Research Area | Rapid Fabrication and Integration of Medical Devices and Technologies",
"eyebrow": "Project",
"description": "Dr. Shah and his research lab at MIT has significant expertise and motivation to bring problems from the clinic and society into the labora\u2026",
"meta": "in Health 0.0 #bioengineering #developing countries #sensors +7\u00a0more"
},
{
"href": "\/projects\/sleep-stress-and-epilepsy\/overview\/",
"title": "Effects of Sleep and Stress on Multi-day Epilepsy Rhythm with Applications in Probabilistic Seizure Forecasting",
"eyebrow": "Project",
"description": "Epilepsy is the fourth most common neurological disease globally. In the U.S., 1.2% of the national population reported active epilepsy in \u2026",
"meta": "#artificial intelligence #data #health +3\u00a0more"
},
{
"href": "\/projects\/opencbdc\/overview\/",
"title": "OpenCBDC",
"eyebrow": "Project",
"description": "ResearchTechnical Paper&nbsp;|&nbsp;Executive Summary&nbsp;|&nbsp;GitHubAboutIntroductionOpenCBDC is an open source project to engage in co\u2026",
"meta": "in Digital Currency Initiative (DCI) #banking and finance #civic technology #economy +2\u00a0more"
},
{
"href": "\/projects\/semi-realistic-rotary-experiences\/overview\/",
"title": "Semi-Realistic Rotary Experiences",
"eyebrow": "Project",
"description": "&nbsp;Semi-Realistic Rotary Experiences is a set of six simulations of real life&nbsp;scenarios&nbsp;involving the gesture of rotating thin\u2026",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/research-area-novel-ethical-and-explainable-AI-and-digital-medicines\/overview\/",
"title": "Research Area | Emergent Neural Networks to Redesign Clinical Testing of Medicines and Learning from Real World Evidence",
"eyebrow": "Project",
"description": "Research studies led by Dr. Shah, in collaboration with the&nbsp;United States Food and Drug Administration&nbsp;(FDA),&nbsp; have develope\u2026",
"meta": "in Health 0.0 #computer vision #artificial intelligence #health +8\u00a0more"
},
{
"href": "\/projects\/research-area-medical-imaging-technologies-using-unorthodox-artificial-intelligence-for-early-disease-diagnoses\/overview\/",
"title": "Research Area | Application, Interpretability and Clinical Translation of Deep Learning Algorithms for Medical Images",
"eyebrow": "Project",
"description": "Research studies led by Dr. Shah in his laboratory have&nbsp;created new paradigms for using low-cost images captured using simple optical \u2026",
"meta": "in Health 0.0 #computer vision #artificial intelligence #health +8\u00a0more"
},
{
"href": "\/projects\/transformable-discreet-log-contracts\/overview\/",
"title": "Transformable Discreet Log Contracts (TDLC)",
"eyebrow": "Project",
"description": "Abstract&nbsp;Since Bitcoin and the Unspent Transaction Output (UTXO) model were introduced by Satoshi Nakamoto over a decade ago, there ha\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/communitylm\/overview\/",
"title": "CommunityLM",
"eyebrow": "Project",
"description": "CommunityLM is a research program from MIT Center for Constructive Communication (CCC) and MIT Media Lab. We are devoted to developing soci\u2026",
"meta": "in MIT Center for Constructive Communication \u00b7 Social Machines #social networks #artificial intelligence #civic media +4\u00a0more"
},
{
"href": "\/projects\/sierra-leone-prosthetics-orthotics\/overview\/",
"title": "Prostheses for All: Strengthening the Prosthetics & Orthotics Sector in Sierra Leone",
"eyebrow": "Project",
"description": "We are designing and implementing a health system strengthening model&nbsp; to support and expand the prosthetic and orthotic sector of Sie\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/seeing-around-objects\/overview\/",
"title": "Using Shadows to See Behind Objects",
"eyebrow": "Project",
"description": "The full text of our paper is available here.Sometimes the thing that we want to see is hidden behind something else. A neighboring vehicl\u2026",
"meta": "in Camera Culture #computer vision #artificial intelligence #augmented reality +2\u00a0more"
},
{
"href": "\/projects\/cryptoeconomic-systems-journal-and-conference-series\/overview\/",
"title": "Cryptoeconomic Systems Journal and Conference Series",
"eyebrow": "Project",
"description": "Cryptoeconomic Systems (CES)&nbsp;aims to be the premier publication venue for blockchain research.Our mission is simple: collect and disse\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/cbdc-user-research-collaborations\/overview\/",
"title": "CBDC User Research Collaborations",
"eyebrow": "Project",
"description": "What will it take for decentralized networks to realize our vision of a radically improved financial system that protects user privacy and \u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/private-imaging\/overview\/",
"title": "Computational Privacy for Computer Vision",
"eyebrow": "Project",
"description": "Computer Vision applications are making a remarkable impact on society and advancing progress in Machine Learning. Our project aims to desi\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/cosmorph\/overview\/",
"title": "CosMorph: A Modern Form Design Methodology Inspired By Eastern Philosophy",
"eyebrow": "Project",
"description": "CosMorph is a new classification framework of modern form design from the perspective of design morphology. This paper proposes combining t\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/applying-the-evdt-integrated-modeling-framework-for-environmental-justice-applications\/overview\/",
"title": "Applying the EVDT Integrated Modeling Framework for Environmental Justice Applications",
"eyebrow": "Project",
"description": "In recent years, researchers and journalists have elevated a pattern of prison landscapes being exposed to environmental hazards such as ai\u2026",
"meta": "in Space Enabled"
},
{
"href": "\/projects\/battery-free-wireless-underwater-camera\/overview\/",
"title": "Battery-free wireless underwater camera",
"eyebrow": "Project",
"description": "More than 95% of the ocean has never been observed by humans, even though the ocean plays the largest role in the world's climate system, h\u2026",
"meta": "in Signal Kinetics #environment #sensors #imaging +2\u00a0more"
},
{
"href": "\/projects\/digital-design-and-manufacture-of-a-transtibial-prosthetic-interface\/overview\/",
"title": "Design and Clinical Evaluation of a Digital Transtibial Prosthetic Interface",
"eyebrow": "Project",
"description": "The prosthetic interface consists of a compliant liner and rigid socket, and conventionally has been made through a very hands-on artisinal\u2026",
"meta": "in Biomechatronics #design #biomechanics #mechanical engineering +2\u00a0more"
},
{
"href": "\/projects\/astroant-1\/overview\/",
"title": "AstroAnt",
"eyebrow": "Project",
"description": "\"Autonomous operations are critical for the success, safety, and crew survival of NASA deep space missions beyond low Earth orbit, includin\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #sensors #space"
},
{
"href": "\/projects\/pev\/overview\/",
"title": "Persuasive Electric Vehicle (PEV)",
"eyebrow": "Project",
"description": "An Alternative Autonomous Revolution&nbsp;System design for emerging urban contexts and societal aspirationsThe Persuasive Electric Vehicle\u2026",
"meta": "in City Science #design #architecture #civic technology +7\u00a0more"
},
{
"href": "\/projects\/velotropolis-1\/overview\/",
"title": "V\u00e9lotropolis: a bike lane supply-demand visual analytics tool",
"eyebrow": "Project",
"description": "V\u00e9lotropolis is a prototype supply-demand visualization tool designed with the aim to quickly highlight the gap in the provision of bike la\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/capturing-the-moon\/overview\/",
"title": "Capturing the Moon: Assessing virtual reality for remote Lunar geological fieldwork",
"eyebrow": "Project",
"description": "Contributors: RESOURCE (SSERVI grant), SEIAssociated Groups: Aero\/Astro Human Systems Lab (C. Paige, F. Ward), Media LabResponsive Environm\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/agrithrive\/overview\/",
"title": "AgriThrive: Emergency preparedness for Plant Growth in Martian\/Lunar environments",
"eyebrow": "Project",
"description": "Somayajulu Dhulipala, Manwei Chan, Carlos Portela, MIT SEDSProject overview &amp; mission objectivesAs humanity inches closer to setting up\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/in-the-field-equity-prosthetics\/overview\/",
"title": "In the field: improving health equity in prosthetic care",
"eyebrow": "Project",
"description": "As we work to improve prosthetic care in the US and in countries around the world, we are committed to learning from our most valuable asse\u2026",
"meta": "in Biomechatronics #health #public health #prosthetics +1\u00a0more"
},
{
"href": "\/projects\/zero-robotics\/overview\/",
"title": "Zero Robotics",
"eyebrow": "Project",
"description": "Professor Danielle Wood took over leadership of the Zero Robotics Educational Outreach Program in 2020 at the invitation of the founders. Z\u2026",
"meta": "in Space Enabled"
},
{
"href": "\/projects\/city-science-lab-ho-chi-minh-city\/overview\/",
"title": "City Science Lab @ Ho Chi Minh City",
"eyebrow": "Project",
"description": "We are pleased to introduce the newest member of the City Science Network, Ho Chi Minh City (HCMC), Vietnam. As part of this collaboration,\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/hyper-local-solutions-to-global-challenges\/overview\/",
"title": "Hyper-LOCAL Solutions to GLOBAL Challenges",
"eyebrow": "Project",
"description": "Optimizing environmental, social, and economic performance of cities.Cities play a central role in the climate crisis. According to the lat\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/community-dialogue-data-trust-codidt\/overview\/",
"title": "Community Dialogue Data Trust (CODIDT)",
"eyebrow": "Project",
"description": "Community Dialogue Data Trust (CODIDT) is an interactive digital platform that provides facilitated dialogue participants with personal dat\u2026",
"meta": "in MIT Center for Constructive Communication #design #civic technology #data"
},
{
"href": "\/projects\/wireless-sensing\/overview\/",
"title": "Nano-Implants for Wireless Brain Interfacing",
"eyebrow": "Project",
"description": "For more details and recent updates visit:&nbsp;&nbsp;https:\/\/web.mit.edu\/deblina-sarkar\/We are developing&nbsp;nano-devices using meta-mat\u2026",
"meta": "in Nano-Cybernetic Biotrek #synthetic biology #nanoscience"
},
{
"href": "\/projects\/sensemate\/overview\/",
"title": "SenseMate: an AI-based platform to support qualitative coding",
"eyebrow": "Project",
"description": "Many community organizations want to engage in conversations with their constituents but lack the support they need to analyze feedback. Mo\u2026",
"meta": "in MIT Center for Constructive Communication #design #human-computer interaction #artificial intelligence"
},
{
"href": "\/projects\/ai-alchemy\/overview\/",
"title": "AI Alchemy",
"eyebrow": "Project",
"description": "Al\u00b7che\u00b7my is the process of transformation, creation, and combination. It is in this conceptual space that we frame the convergence of huma\u2026",
"meta": "in Human Dynamics \u00b7 MIT Center for Constructive Communication"
},
{
"href": "\/projects\/depicting-token-quality\/overview\/",
"title": "Humanized Cryptoassets",
"eyebrow": "Project",
"description": "This project delivers a series of Github-signal based metrics that would be useful to both the layman and investor, helping look beyond the\u2026",
"meta": "in Viral Communications #cryptocurrency #blockchain"
},
{
"href": "\/projects\/integrated-complex-systems-modeling\/overview\/",
"title": "Environment-Vulnerability-Decision-Technology Framework",
"eyebrow": "Project",
"description": "One of the six research methods used by the Space Enabled research group is creating models of complex systems by drawing on techniques fro\u2026",
"meta": "in Space Enabled #social science #engineering"
},
{
"href": "\/projects\/liquid-movies\/overview\/",
"title": "Liquid Movies",
"eyebrow": "Project",
"description": "Video has evolved from an esoteric production to the default means of online and broadcast communication. We accept a wrong or lengthy vide\u2026",
"meta": "in Viral Communications #computer vision #human-computer interaction #communications +1\u00a0more"
},
{
"href": "\/projects\/2d-neuromorphic-devices-for-sustainable-artificial-intelligence\/overview\/",
"title": "2D Neuromorphic Devices for Sustainable Artificial Intelligence",
"eyebrow": "Project",
"description": "Energy consumption of artificial intelligence (AI) systems are projected to grow at an alarming rate over the next two decades. A recent st\u2026",
"meta": "in Nano-Cybernetic Biotrek"
},
{
"href": "\/projects\/life-nanomachine-synergism\/overview\/",
"title": "Life-Nanomachine Synergism",
"eyebrow": "Project",
"description": "For more details and recent updates visit:&nbsp;&nbsp;https:\/\/web.mit.edu\/deblina-sarkar\/Nanoelectronics has the potential to enable radica\u2026",
"meta": "in Nano-Cybernetic Biotrek #robotics #bioengineering #synthetic biology +6\u00a0more"
},
{
"href": "\/projects\/theme-memory-enhancement\/overview\/",
"title": "Theme | Health & Wellbeing",
"eyebrow": "Project",
"description": "We develop systems that support&nbsp; health and wellbeing, with a special focus on mental health, using technologies&nbsp; such as wearabl\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/safety-perception-in-public-spaces\/overview\/",
"title": "Is the city safe?",
"eyebrow": "Project",
"description": "Evaluaci\u00f3n de la seguridad en la navegaci\u00f3n en las ciudades.En Guadalajara, M\u00e9xico, desarrollamos y validamos m\u00e9tricas sobre seguridad urba\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/liquid-movies-news\/overview\/",
"title": "Liquid News",
"eyebrow": "Project",
"description": "Liquid News aims to help people better understand and interact with the news by leveraging machine-learning-based analysis and semantic nav\u2026",
"meta": "in Viral Communications #artificial intelligence #communications"
},
{
"href": "\/projects\/income-race-bikes\/overview\/",
"title": "Income, Race, Bikes",
"eyebrow": "Project",
"description": "Is the placement of bike-share docks equitable?This interactive map explores the question visually.The map shows the addition of bike-share\u2026",
"meta": "in City Science #design #civic technology #cartography +2\u00a0more"
},
{
"href": "\/projects\/theme-assistive-technology\/overview\/",
"title": "Theme | Communication & Collaboration",
"eyebrow": "Project",
"description": "Communication skills are critical for all. We&nbsp; design and develop systems to help people with communication issues, eg&nbsp; more empa\u2026",
"meta": "in Fluid Interfaces \u00b7 Affective Computing #design #human-computer interaction #artificial intelligence +4\u00a0more"
},
{
"href": "\/projects\/future-cms-schools\/overview\/",
"title": "Voice Your Choice: Creating a Community Engagement Process for New Magnet Programs in Charlotte Mecklenburg Schools",
"eyebrow": "Project",
"description": "Effective community engagement is critical in diverse organizations, such as school districts. However, current methods, including surveys,\u2026",
"meta": "in MIT Center for Constructive Communication #design #human-computer interaction #civic technology"
},
{
"href": "\/projects\/facilimate\/overview\/",
"title": "Facilimate",
"eyebrow": "Project",
"description": "During facilitated small-group conversations,&nbsp;&nbsp;facilitators have to manage many tasks, including handling the technology, managin\u2026",
"meta": "in MIT Center for Constructive Communication #design #human-computer interaction"
},
{
"href": "\/projects\/news-bridge\/overview\/",
"title": "News Bridge",
"eyebrow": "Project",
"description": "Engaging politically diverse audiences on social mediaNews Bridge studied how the language that a media outlet \u2013 PBS\u2019 Frontline \u2013 uses to p\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/wemoji\/overview\/",
"title": "Wemoji",
"eyebrow": "Project",
"description": "This project was produced as part of the&nbsp;&nbsp;&nbsp;2021 Snap Creative Challenge, focused on \"The Future of Co-located Social AR.\"Wem\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #augmented reality #communications"
},
{
"href": "\/projects\/tangibel-soundscapes\/overview\/",
"title": "TangiBel Soundscapes",
"eyebrow": "Project",
"description": "Words are fleeting. Moments come and go, and what we vocalize \u201cdisappears into thin air.\"In this project, TangiBel Soundscapes, we propose \u2026",
"meta": "in Fluid Interfaces \u00b7 Future Sketches #augmented reality #communications"
},
{
"href": "\/projects\/city-science-network\/overview\/",
"title": "City Science Network",
"eyebrow": "Project",
"description": "MIT City Science has developed an international network of cooperative City Science LabsWe are developing concepts and key technology that \u2026",
"meta": "in City Science #human-computer interaction #data #urban planning +1\u00a0more"
},
{
"href": "\/projects\/city-science-lab-bio-bio\/overview\/",
"title": "City Science Lab @ Biob\u00edo",
"eyebrow": "Project",
"description": "The MIT City Science team will work with the C\u00e1mara Chilena de la Construcci\u00f3n (CChC), Corporaci\u00f3n Ciudades, and the Biob\u00edo regional govern\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/neurafutures\/overview\/",
"title": "Art Installation: NeuraFutures",
"eyebrow": "Project",
"description": "NeuraFutures art installation features devices known as Brain-Computer Interfaces (BCIs). BCIs access the user\u2019s brain via sensors that are\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/neural-control-of-upper-extremity-prostheses\/overview\/",
"title": "Neural Control of Upper Extremity Prostheses",
"eyebrow": "Project",
"description": "Existing upper extremity prosthesis controllers have limited functionality and place high cognitive demands on users, both of which contrib\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/artbhot\/overview\/",
"title": "'@artbhot' - Towards a Creative Partner on Social Media",
"eyebrow": "Project",
"description": "@artbhot is a Twitter bot that leverages stable diffusion technology to translate user tweets into images and animations.&nbsp;&nbsp;Access\u2026",
"meta": "in Viral Communications #social networks #human-computer interaction #art +1\u00a0more"
},
{
"href": "\/projects\/masca\/overview\/",
"title": "Masca",
"eyebrow": "Project",
"description": "InspirationDreams are fascinating personally, therapeutically, and scientifically. Who hasn't woken up in the morning and wondered how they\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/privacy-preserving-depressive-symptoms-estimation\/overview\/",
"title": "Privacy-Preserving Depressive Symptoms Estimation",
"eyebrow": "Project",
"description": "The goal of this project is to develop techniques to remove identifying information from wearable and phone data to protect patients\u2019 priva\u2026",
"meta": "in Affective Computing #computer vision #artificial intelligence #extended intelligence +4\u00a0more"
},
{
"href": "\/projects\/cyber-biome\/overview\/",
"title": "Cyber Biome",
"eyebrow": "Project",
"description": "CyberBiome is a programmable bio-digital organ, a wearable biosynthesis platform for personalized, on-demand production of therapeutics and\u2026",
"meta": "in Fluid Interfaces #bioengineering #wearable computing #biology +1\u00a0more"
},
{
"href": "\/projects\/wearable-reasoner\/overview\/",
"title": "Wearable Reasoner",
"eyebrow": "Project",
"description": "Wearable Reasoner:&nbsp;Towards Enhanced Human Rationality through a Wearable AI AssistantWe present \"Wearable Reasoner,\" a proof-of-concep\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/oceans-internet-of-things\/overview\/",
"title": "Oceans Internet of Things",
"eyebrow": "Project",
"description": "Our Oceans IoT technologies enable new applications in climate and ecological monitoring, aquaculture, energy, and robotic navigation.&nbsp\u2026",
"meta": "in Signal Kinetics #data #energy #environment +3\u00a0more"
},
{
"href": "\/projects\/project-octopus\/overview\/",
"title": "Project Octopus",
"eyebrow": "Project",
"description": "Project Octopus is a new way to make collaborative Scratch projects.Based on technologies developed for the Scratch programming language, P\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/dreaming-through-code\/overview\/",
"title": "Dreaming through Code",
"eyebrow": "Project",
"description": "Dreaming through Code&nbsp;Designing creative learning workshops for local organizations committed to introducing technology to kids in a n\u2026",
"meta": "in Future Sketches \u00b7 Lifelong Kindergarten #civic technology #learning #computer science +2\u00a0more"
},
{
"href": "\/projects\/creative-learning-in-brazil\/overview\/",
"title": "Brazilian Creative Learning Network \/ Aprendizagem Criativa no Brasil",
"eyebrow": "Project",
"description": "The Brazilian Creative Learning Network is a collaboration between the MIT Media Lab and the Lemann Foundation to foster creative learning \u2026",
"meta": "in Lifelong Kindergarten #learning"
},
{
"href": "\/projects\/emotional-navigation-system\/overview\/",
"title": "Emotion Navigation",
"eyebrow": "Project",
"description": "Before automobiles were invented and widely adopted, animals like horses were the most common mode of transportation. While this change bro\u2026",
"meta": "in Affective Computing #interfaces #affective computing #autonomous vehicles"
},
{
"href": "\/projects\/objective-assessment-of-depression\/overview\/",
"title": "Objective assessment of depression",
"eyebrow": "Project",
"description": "Current methods to assess depression and then ultimately select appropriate treatment have many limitations and need improvement. Diagnosis\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/smart-eyewear\/overview\/",
"title": "Smart Eyewear Research Platforms",
"eyebrow": "Project",
"description": "Smartglasses are increasingly popular because the face is an ideal location for continuously monitoring environmental and physiological sig\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/supporting-decision-making\/overview\/",
"title": "Theme | Reasoning & Decision Making",
"eyebrow": "Project",
"description": "One of the functions we are interested in supporting people with is decision making. We develop systems for supporting behavior change and \u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/theme-immersive-and-wearable-learning\/overview\/",
"title": "Theme | Learning & Creativity",
"eyebrow": "Project",
"description": "Several of our projects aim to&nbsp;support learning and creativity. While some systems focus on a specific skill to be strengthened, eg cr\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/objective-asessment-of-depression-and-its-improvement\/overview\/",
"title": "Objective Asessment of Depression and its Improvement",
"eyebrow": "Project",
"description": "Current methods to assess depression and then ultimately select appropriate treatment have many limitations. They are usually based on havi\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing"
},
{
"href": "\/projects\/theme-virtual-humans\/overview\/",
"title": "Theme | Virtual Humans & AI-Generated Characters",
"eyebrow": "Project",
"description": "Advancements in machine learning have recently enabled the hyper-realistic synthesis of prose, images, audio and video data, in what is ref\u2026",
"meta": ""
},
{
"href": "\/projects\/project-captivate\/overview\/",
"title": "Project Captivate: A wearable platform for measurement and actuation across contexts",
"eyebrow": "Project",
"description": "Project Captivate have been designed to serve as an easy and reliable platform to measure physiology in the real world. &nbsp;We've desig\u2026",
"meta": "in Responsive Environments #design #environment #health +1\u00a0more"
},
{
"href": "\/projects\/sensornets\/overview\/",
"title": "SensorNets",
"eyebrow": "Project",
"description": "SensorNets: Towards Reconfigurable&nbsp;Multifunctional Fine-grained &nbsp;Soft and&nbsp;Stretchable Electronic Skins.SensorNets is a bioin\u2026",
"meta": "in Responsive Environments #design #human-computer interaction #architecture +10\u00a0more"
},
{
"href": "\/projects\/capturing-flow-in-the-wild\/overview\/",
"title": "Capturing Flow in the Wild",
"eyebrow": "Project",
"description": "How are our phones and email devices altering our ability to engage deeply in our daily tasks?&nbsp; How important is it to spend time deep\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/SpaceSkin\/overview\/",
"title": "Space Fabrics: resilient electronic textiles for distributed sensing in low Earth orbit",
"eyebrow": "Project",
"description": "Overview: The outermost skin of a space-based structure is designed using materials known to protect against the harsh elements of space. S\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #design #architecture #environment +12\u00a0more"
},
{
"href": "\/projects\/computer-clubhouse\/overview\/",
"title": "The Clubhouse Network",
"eyebrow": "Project",
"description": "The Clubhouse provides a creative and safe out-of-school learning environment where young people from underserved communities around the wo\u2026",
"meta": "in Lifelong Kindergarten #human-computer interaction #learning #technology +2\u00a0more"
},
{
"href": "\/projects\/octoplay\/overview\/",
"title": "OctoPlay",
"eyebrow": "Project",
"description": "The Lifelong Kindergarten group is designing OctoPlay, a new mobile phone app that enables children around the world to create with code.&n\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/learning-creative-learning\/overview\/",
"title": "Learning Creative Learning",
"eyebrow": "Project",
"description": "Learning Creative Learning is an online course and community of educators, designers, technologists, and tinkerers exploring creative learn\u2026",
"meta": "in Lifelong Kindergarten \u00b7 ML Learning \u00b7 Digital Learning + Collaboration Studio #design #learning #makers"
},
{
"href": "\/projects\/creative-learning\/overview\/",
"title": "Creative Learning",
"eyebrow": "Project",
"description": "How the MIT Media Lab Learns,&nbsp;And How Everyone Else Can Learn This Way Too",
"meta": "in Digital Learning + Collaboration Studio \u00b7 Lifelong Kindergarten"
},
{
"href": "\/projects\/theme-platforms-for-sensing-and-interventions\/overview\/",
"title": "Theme | Platforms",
"eyebrow": "Project",
"description": "Our research group designs various hardware and software platforms that can be used to do scientific experiments or implement a particular \u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/micro-mobile\/overview\/",
"title": "Micro Mobile",
"eyebrow": "Project",
"description": "Joe Kennedy \u2013 Harvard University: Graduate School of Design, DDes; Morgan Ip \u2013 Cambridge University: Scott Polar Research Institute, Post-D\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/a-counting\/overview\/",
"title": "A Counting",
"eyebrow": "Project",
"description": "A Counting is a series of vocal and gestural portraits of the linguistic and ethnic diversity in US cities. Currently, it features counts f\u2026",
"meta": "in Poetic Justice #robotics #design #art +9\u00a0more"
},
{
"href": "\/projects\/human-ai-co-reasoning\/overview\/",
"title": "Theme | Human AI Co-reasoning",
"eyebrow": "Project",
"description": "We explore how AI-systems can effectively assist human reasoning processes by building and evaluating combined human+AI information process\u2026",
"meta": "in Fluid Interfaces #artificial intelligence"
},
{
"href": "\/projects\/attentivu\/overview\/",
"title": "AttentivU",
"eyebrow": "Project",
"description": "There are currently &nbsp;UROP openings for this project.&nbsp;AttentivU is&nbsp; a&nbsp; device, in the&nbsp; form factor of a pair of gla\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #augmented reality #health +8\u00a0more"
},
{
"href": "\/projects\/deceptive-ai-systems\/overview\/",
"title": "Deceptive AI systems in Human Information Processing",
"eyebrow": "Project",
"description": "This extended abstract was presented at the International Conference on Computational Social Science (IC2S2) 2022.In the past few years, th\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/public-library-innovation-exchange\/overview\/",
"title": "Public Library Innovation Exchange",
"eyebrow": "Project",
"description": "Public libraries are one of most trusted public institutions in the U.S. and increasingly provide a broad range of education services, rang\u2026",
"meta": "in ML Learning \u00b7 Digital Learning + Collaboration Studio #robotics #design #art +6\u00a0more"
},
{
"href": "\/projects\/project-us\/overview\/",
"title": "Project Us",
"eyebrow": "Project",
"description": "\u201cUs\u201d aims to help people develop their sense of empathy. It uses machine learning to analyze interlocutors\u2019 signals (e.g., tone of voice, c\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #artificial intelligence #banking and finance +6\u00a0more"
},
{
"href": "\/projects\/peristaltic-suit\/overview\/",
"title": "Peristaltic Suit",
"eyebrow": "Project",
"description": "It is known that prolonged exposure to micro and hyper-gravity induces various acute health risks, such as osteoporosis, skeletal muscle at\u2026",
"meta": "in Responsive Environments #robotics #data #wearable computing +6\u00a0more"
},
{
"href": "\/projects\/desafio-aprendizagem-criativa-2020\/overview\/",
"title": "Desafio Aprendizagem Criativa Brasil 2020",
"eyebrow": "Project",
"description": "O Desafio de Aprendizagem Criativa Brasil \u00e9 o programa de fellowship da Rede Brasileira de Aprendizagem Criativa. Ele tem como objetivo fom\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/creative-learning-africa\/overview\/",
"title": "Creative Learning Africa",
"eyebrow": "Project",
"description": "The Lifelong Kindergarten group develops technologies and activities that engage people in creative learning. We\u2019re exploring a few directi\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/scratch-3-0\/overview\/",
"title": "Scratch 3.0",
"eyebrow": "Project",
"description": "Since the release of Scratch in 2007, young people around the world have programmed and shared more than 15 million Scratch projects\u200a. The \u2026",
"meta": "in Lifelong Kindergarten #design #gaming #kids +3\u00a0more"
},
{
"href": "\/projects\/paper-circuits\/overview\/",
"title": "Paper Circuits",
"eyebrow": "Project",
"description": "Paper circuitry blends conductive craft materials with electronics components to engage learners in circuit building and programming throug\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/teen-summit\/overview\/",
"title": "Clubhouse Teen Summit",
"eyebrow": "Project",
"description": "Teen Summit is a biennial week-long Youth Leadership event that brings Clubhouse youth together from each of the 100 Clubhouses internation\u2026",
"meta": "in Lifelong Kindergarten #learning #makers"
},
{
"href": "\/projects\/scratch-in-space\/overview\/",
"title": "Scratch in Space",
"eyebrow": "Project",
"description": "The Scratch Team invited young people from around the world to create Scratch&nbsp;projects designed specifically to be played in zero grav\u2026",
"meta": "in Lifelong Kindergarten \u00b7 Space Exploration Initiative #computer science #space #zero gravity"
},
{
"href": "\/projects\/the-suggestion-box\/overview\/",
"title": "The Suggestion Box",
"eyebrow": "Project",
"description": "The Suggestion Box offers schools a toolkit for framing decisions in two simple sentences and using these sentences to involve teachers, st\u2026",
"meta": "in Lifelong Kindergarten #learning #covid19"
},
{
"href": "\/projects\/getting-started-with-scratch\/overview\/",
"title": "Getting Started with Scratch",
"eyebrow": "Project",
"description": "Every day, young people around the world use the Scratch programming language to create and share thousands of interactive projects on the \u2026",
"meta": "in Lifelong Kindergarten #gaming #kids #learning"
},
{
"href": "\/projects\/duct-tape-network\/overview\/",
"title": "Duct Tape Network",
"eyebrow": "Project",
"description": "The Duct Tape Network (DTN) is a series of fun, hands-on maker clubs that encourage young children (ages 7-10) to use cardboard, tape, wood\u2026",
"meta": "in Lifelong Kindergarten #kids"
},
{
"href": "\/projects\/scratch-extensions\/overview\/",
"title": "Scratch Extensions",
"eyebrow": "Project",
"description": "The Scratch extension system enables anyone to extend the Scratch programming language through custom programming blocks written in JavaScr\u2026",
"meta": "in Lifelong Kindergarten #gaming #kids #learning"
},
{
"href": "\/projects\/scratch-day\/overview\/",
"title": "Scratch Day",
"eyebrow": "Project",
"description": "Scratch Day (day.scratch.mit.edu) is a network of face-to-face local gatherings, on the same day in all parts of the world, where people ca\u2026",
"meta": "in Lifelong Kindergarten #gaming #kids #learning +1\u00a0more"
},
{
"href": "\/projects\/microworlds\/overview\/",
"title": "Microworlds",
"eyebrow": "Project",
"description": "The MIT Scratch Team is exploring ways to make it easier for newcomers to get started creating with coding. We are designing \"microworlds\"\u2014\u2026",
"meta": "in Lifelong Kindergarten #kids #learning #storytelling +1\u00a0more"
},
{
"href": "\/projects\/scratch-mondays\/overview\/",
"title": "Scratch Mondays",
"eyebrow": "Project",
"description": "Scratch Mondays is an initiative&nbsp; to share the Scratch Day spirit to schools in Brazil. After having a big Scratch Day event in 2018 i\u2026",
"meta": "in Lifelong Kindergarten #design #kids #community"
},
{
"href": "\/projects\/scratchjr\/overview\/",
"title": "ScratchJr",
"eyebrow": "Project",
"description": "ScratchJr makes coding accessible to younger children (ages 5-7), enabling them to program their own interactive stories, games, and animat\u2026",
"meta": "in Lifelong Kindergarten #robotics #design #kids +4\u00a0more"
},
{
"href": "\/projects\/scratch-in-practice\/overview\/",
"title": "Scratch in Practice",
"eyebrow": "Project",
"description": "Scratch in Practice (SiP) shares stories, strategies, and resources from the Scratch Team and educators around the world. The SiP website f\u2026",
"meta": "in Lifelong Kindergarten #learning"
},
{
"href": "\/projects\/intersectionality-data-storytelling\/overview\/",
"title": "Intersectionality + Data Storytelling",
"eyebrow": "Project",
"description": "By exploring intersectionality as a concept and as a practice, students use data storytelling to understand their lives and experiences.&nb\u2026",
"meta": "in Personal Robots \u00b7 Lifelong Kindergarten"
},
{
"href": "\/projects\/letschance\/overview\/",
"title": "Let's Chance: Playful Probabilistic Programming for Children",
"eyebrow": "Project",
"description": "Probabilistic thinking has been one of the most powerful ideas in the history of science, and it is rapidly gaining even more relevance as \u2026",
"meta": "in Lifelong Kindergarten #human-computer interaction #art #interfaces +2\u00a0more"
},
{
"href": "\/projects\/scratch-pad\/overview\/",
"title": "ScratchBit",
"eyebrow": "Project",
"description": "ScratchBit is an effort to enable children to create more seamlessly in both the physical and digital world by creating a dedicated physica\u2026",
"meta": "in Lifelong Kindergarten #design #kids #learning"
},
{
"href": "\/projects\/rhizome\/overview\/",
"title": "Rhizome",
"eyebrow": "Project",
"description": "The World Health Organization estimates that more than 55 million people worldwide suffer from dementia. As the proportion of older people \u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/ocean-logger\/overview\/",
"title": "Ocean Logger: A Community-scale Ocean Profiling Sensor Node",
"eyebrow": "Project",
"description": "Community-scale Ocean Profiling Sensor Node",
"meta": "in City Science #artificial intelligence #sensors"
},
{
"href": "\/projects\/cue\/overview\/",
"title": "Cue",
"eyebrow": "Project",
"description": "Exploring contextual multimodal cues as memory aids&nbsp;Objective&nbsp;We are exploring the potential of proximity-triggered contextual au\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/man-of-my-words\/overview\/",
"title": "Man of My Words",
"eyebrow": "Project",
"description": "Man of My Words is a wearable self-feedback voice changer for women to challenge internalized sexism. The experience is designed in two par\u2026",
"meta": "in Opera of the Future #voice"
},
{
"href": "\/projects\/freedom-simulator\/overview\/",
"title": "Freedom Simulator",
"eyebrow": "Project",
"description": "\"The sense of freedom\u2026entails not simply the absence of frustration but the absence of obstacles to possible choices and activities\u2014absence\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/adaptive-music-for-affect-improvement\/overview\/",
"title": "Adaptive Music for Affect Improvement",
"eyebrow": "Project",
"description": "Adaptive Music for Affect Improvement (AMAI) is a music generation and playback system with the goal of steering the listener toward a stat\u2026",
"meta": "in Opera of the Future \u00b7 Affective Computing #music #affective computing #technology"
},
{
"href": "\/projects\/emotionally-intelligent-playback\/overview\/",
"title": "Emotionally Intelligent Playback",
"eyebrow": "Project",
"description": "Emotionally Intelligent Music Playback opens possibilities to various emotional trajectories through a piece of music. The listener can nav\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/gammalan\/overview\/",
"title": "Gammalan",
"eyebrow": "Project",
"description": "Gammalan is an interactive musical experience that uses music information retrieval techniques in conjunction with game design principles t\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/seasons-change-together\/overview\/",
"title": "Seasons Change Together",
"eyebrow": "Project",
"description": "Seasons Change Together&nbsp;is a collaborative song construction experience for multiple simultaneous participants. It represents a first \u2026",
"meta": "in Opera of the Future #human-computer interaction #gaming #music +1\u00a0more"
},
{
"href": "\/projects\/evergreen-blues\/overview\/",
"title": "Evergreen Blues",
"eyebrow": "Project",
"description": "Evergreen Blues is a suite of interactive songs that together provide a collaborative musical narrative experience in the form of a multipl\u2026",
"meta": "in Opera of the Future #human-computer interaction #gaming #music +1\u00a0more"
},
{
"href": "\/projects\/catalan-ai\/overview\/",
"title": "Catalan.ai",
"eyebrow": "Project",
"description": "OverviewMost SMBs make pricing decisions using intuition and inefficient methods (the old school way), yielding sub-par sales. However, wit\u2026",
"meta": ""
},
{
"href": "\/projects\/nanoscale-mapping-of-bio-molecular-building-blocks-of-brian\/overview\/",
"title": "Nanoscale mapping of bio-molecular building blocks of brain",
"eyebrow": "Project",
"description": "For more details and recent updates visit:&nbsp;&nbsp;https:\/\/web.mit.edu\/deblina-sarkar\/For understanding the brain structure, it is neces\u2026",
"meta": "in Nano-Cybernetic Biotrek #synthetic biology #biology #cognitive science +1\u00a0more"
},
{
"href": "\/projects\/aspire\/overview\/",
"title": "aSpire: Clippable, Mobile Pneumatic-Haptic Device for Breathing Rate Regulation via Personalizable Tactile Feedback",
"eyebrow": "Project",
"description": "We introduce\u2013aSpire\u2013a clippable, mobile pneumatic-haptic device designed to help users regulate their breathing rate via subtle tactile fee\u2026",
"meta": "#design #human-computer interaction #health +3\u00a0more"
},
{
"href": "\/projects\/sei-analog-environments-study\/overview\/",
"title": "SEI Analog Environments Study: Adaptation, Collaboration, and Resilience in Extreme Environments",
"eyebrow": "Project",
"description": "SEI Analog Environments StudyProject OverviewThe way humans engage with space has changed rapidly over the past 60 years, moving from a mod\u2026",
"meta": "in Space Exploration Initiative #design #environment #social science +1\u00a0more"
},
{
"href": "\/projects\/corktown-urban-performance\/overview\/",
"title": "Corktown Urban Performance",
"eyebrow": "Project",
"description": "null",
"meta": "in City Science"
},
{
"href": "\/projects\/maia\/overview\/",
"title": "MAIA",
"eyebrow": "Project",
"description": "Low-cost, modular, open source, and portable bio reactor.",
"meta": "in City Science #artificial intelligence #sensors"
},
{
"href": "\/projects\/the-shipt-calculator-crowdsourcing-gig-worker-pay-data-to-audit-algorithmic-management\/overview\/",
"title": "The Shipt Calculator: Crowdsourcing Gig Worker Pay Data to Audit Algorithmic Management",
"eyebrow": "Project",
"description": "The increasing prevalence of large-scale labor aggregation platforms, worker analytics, and algorithmic decision-making by management raise\u2026",
"meta": "in Human Dynamics #social networks #data #economy +2\u00a0more"
},
{
"href": "\/projects\/empathetic-behavior-training-for-physicians-working-with-patients-who-have-opioid-use-disorder\/overview\/",
"title": "Empathetic behavior training for physicians working with patients who have Opioid Use Disorder",
"eyebrow": "Project",
"description": "The Affective Computing group is collaborating with Weill Cornell Medicine to build empathetic behavior in physicians working with opioid u\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/ember\/overview\/",
"title": "EmbER (Embodied Experience Remotely)",
"eyebrow": "Project",
"description": "EmbER (Embodied Experience Remotely) explores the use of wearable sensory devices, communicating nonverbal signals, as an additional commun\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/make-the-breast-pump-not-suck-hackathon\/overview\/",
"title": "Make the Breast Pump Not Suck Hackathon",
"eyebrow": "Project",
"description": "In September 2014, 150 parents, engineers, designers, and healthcare practitioners gathered at the MIT Media Lab for the \"Make the Breast P\u2026",
"meta": "in Civic Media #civic technology #consumer electronics #politics +2\u00a0more"
},
{
"href": "\/projects\/two-mobility-futures\/overview\/",
"title": "Two Mobility Futures 0\u221e",
"eyebrow": "Project",
"description": "Two Mobility Futures 0\u221e is a research project that encompasses storytelling, a democratic decision making platform, a city model, and an im\u2026",
"meta": "in City Science #design #architecture #art +2\u00a0more"
},
{
"href": "\/projects\/dami-p2c\/overview\/",
"title": "Dyadic Affect in Multimodal Interaction - Parent to Child (DAMI-P2C) Dataset",
"eyebrow": "Project",
"description": "Audio-visual data set containing around 21.6 hours of parent-child interaction during story reading.The DAMI-P2C dataset consists of audio-\u2026",
"meta": "in Personal Robots #robotics #human-computer interaction #artificial intelligence +2\u00a0more"
},
{
"href": "\/projects\/mental-machine\/overview\/",
"title": "Mental Machine: Labour in the Self Economy",
"eyebrow": "Project",
"description": "\u200bMental Machine: Labour in the Self Economy, 2022, is a live performance by Kawita Vatanajyankur&nbsp;made in collaboration with Pat Patara\u2026",
"meta": "in Fluid Interfaces #virtual reality #human-computer interaction #art +4\u00a0more"
},
{
"href": "\/projects\/chameleon\/overview\/",
"title": "Chameleon",
"eyebrow": "Project",
"description": "Chameleon is a wall-mounted sensor system that uses machine learning to classify building activity.We present the system as an alternative \u2026",
"meta": "in City Science #artificial intelligence #sensors"
},
{
"href": "\/projects\/pcb-probe-tester\/overview\/",
"title": "PCBPT",
"eyebrow": "Project",
"description": "PCB debugging can be tricky sometimes. Normally we should check which signal we want to measure in the schematic, switch to PCB layout to s\u2026",
"meta": "in Responsive Environments #robotics #design #human-computer interaction +1\u00a0more"
},
{
"href": "\/projects\/situated-vr-towards-a-congruent-hybrid-reality\/overview\/",
"title": "Situated VR: Towards a Congruent Hybrid Reality without Experiential Artifacts",
"eyebrow": "Project",
"description": "\u200bSituated VR: Towards a Congruent Hybrid RealityThe vision of Extended Reality (XR) systems is living in a hybrid reality or \"Metaverse\" wh\u2026",
"meta": "in Fluid Interfaces #virtual reality #cognition #environment"
},
{
"href": "\/projects\/ssr-space-sustainability-rating\/overview\/",
"title": "Space Sustainability Rating",
"eyebrow": "Project",
"description": "The Space Sustainability RatingThe Space Sustainability Rating design team\u2014comprised of the World Economic Forum, the European Space Agency\u2026",
"meta": "in Space Enabled #environment #health #politics +7\u00a0more"
},
{
"href": "\/projects\/design-justice-auditing\/overview\/",
"title": "Design Justice Project at MIT",
"eyebrow": "Project",
"description": "\u200bWe take as a starting point for our work the recent scholarship by Sasha Costanza-Chock, Design Justice, in which she described design jus\u2026",
"meta": "in Personal Robots #design #social science #social change +1\u00a0more"
},
{
"href": "\/projects\/psychicvr\/overview\/",
"title": "PsychicVR: Increasing mindfulness by using Virtual Reality and Brain Computer Interfaces",
"eyebrow": "Project",
"description": "We present PsychicVR, a proof-of-concept system that integrates a brain-computer interface device and virtual reality headset to improve mi\u2026",
"meta": "in Advancing Wellbeing \u00b7 Fluid Interfaces #augmented reality #health #technology"
},
{
"href": "\/projects\/zoomaday-ai-synthesized-characters\/overview\/",
"title": "ZoomADay - AI Synthesized Characters",
"eyebrow": "Project",
"description": "#ZoomADay was a year long project exploring the creation and use of synthetic characters and deep fakes for use in online telepresence and \u2026",
"meta": "#computer vision #human-computer interaction #augmented reality +1\u00a0more"
},
{
"href": "\/projects\/bubblesynth-soap-to-sound\/overview\/",
"title": "BubbleSynth: Soap to Sound",
"eyebrow": "Project",
"description": "BubbleSynth translates motion tracking and blob detection data collected from floating soap bubbles into sound, by using the size, position\u2026",
"meta": "#art #music #creativity +2\u00a0more"
},
{
"href": "\/projects\/zero-g-ames\/overview\/",
"title": "Zero-G-ames",
"eyebrow": "Project",
"description": "Games are a uniquely human endeavour, reducing stress and supporting mental well-being. Astronauts aboard the ISS have created their own ga\u2026",
"meta": "in Space Exploration Initiative #design #gaming #health"
},
{
"href": "\/projects\/power-props\/overview\/",
"title": "Power Props",
"eyebrow": "Project",
"description": "\u201cPower Props\u201d is a sensor and actuator platform for Live Action Role Playing (LARP), immersive theater, theme park, and other transmedia ex\u2026",
"meta": "#entertainment #gaming #human-machine interaction +2\u00a0more"
},
{
"href": "\/projects\/yourfeed\/overview\/",
"title": "Yourfeed",
"eyebrow": "Project",
"description": "Yourfeed is a modular tool for ecologically valid social media research. Designed to mirror the design of a social media newsfeed, Yourfeed\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/8k-brain-tour\/overview\/",
"title": "8K Brain Tour: Interactive 3D visualization of terabyte-sized nanoscale brain images at 8K resolution",
"eyebrow": "Project",
"description": "8K Brain Tour is a visualization system for terabyte-scale, three-dimensional (3D) microscopy images of brains.&nbsp; High resolution (8K o\u2026",
"meta": "in Synthetic Neurobiology #data #neurobiology #imaging"
},
{
"href": "\/projects\/microgravity-research-flights-with-the-space-exploration-intiative\/overview\/",
"title": "Microgravity Research Flights with the Space Exploration Intiative",
"eyebrow": "Project",
"description": "The Space Exploration Initiative charters an annual ZERO-G parabolic flight for 14-15 projects and 25 researchers across MIT Media Lab, sev\u2026",
"meta": "in Space Exploration Initiative #space #zero gravity"
},
{
"href": "\/projects\/creativity-robots\/overview\/",
"title": "Creativity with Social Robots",
"eyebrow": "Project",
"description": "Children\u2019s creativity\u2014the ability to come up with novel, surprising, and valuable ideas\u2014has been known to contribute to their learning outc\u2026",
"meta": "in Personal Robots #robotics #social robotics"
},
{
"href": "\/projects\/bouncy-castles-in-space-dodging-blast-ejecta-using-rapid-pressurisation\/overview\/",
"title": "Bouncy Castles in Space: Dodging Blast Ejecta Using Rapid Pressurisation",
"eyebrow": "Project",
"description": "By Aleksy Dojnow",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/3dknits\/overview\/",
"title": "3DKnITS: Three-dimensional Knitted Intelligent Textile Sensor",
"eyebrow": "Project",
"description": "Three-dimensional Digital Knitting of Intelligent Textile&nbsp;Sensor for Activity Recognition and Biomechanical MonitoringWe present an ap\u2026",
"meta": "in Responsive Environments #design #human-computer interaction #artificial intelligence +17\u00a0more"
},
{
"href": "\/projects\/mechanical-artifact-ultra-space-nomad-suit-1\/overview\/",
"title": "Mechanical Artifact Ultra Space Nomad Suit",
"eyebrow": "Project",
"description": "The Mechanical Artifact Ultra Space students at the Yale School of Architecture designed the Nomad Suit, a holistic and performative suit t\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/economic-growth-with-urban-mobility\/overview\/",
"title": "Economic growth with mobility network",
"eyebrow": "Project",
"description": "This project seeks to examine the determinants of economic growth by using large-scale urban mobility networks. Leveraging the fine-grained\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/guardians\/overview\/",
"title": "The Guardians",
"eyebrow": "Project",
"description": "",
"meta": "in Affective Computing #data #entertainment #gaming +5\u00a0more"
},
{
"href": "\/projects\/tapis-magique\/overview\/",
"title": "Tapis Magique: A Choreomusical Interactive Carpet",
"eyebrow": "Project",
"description": "Ancient textiles have played a major role in the social, economic, and religious structures of communities around the world. Iconic, indige\u2026",
"meta": "in Responsive Environments #design #human-computer interaction #architecture +14\u00a0more"
},
{
"href": "\/projects\/fusebot\/overview\/",
"title": "FuseBot: RF-Visual Mechanical Search",
"eyebrow": "Project",
"description": "FuseBot is a robotic system that can efficiently find and retrieve both RFID tagged and untagged target objects in line-of-sight, non-line-\u2026",
"meta": "#robotics #computer vision #sensors +1\u00a0more"
},
{
"href": "\/projects\/namaph\/overview\/",
"title": "Namaph",
"eyebrow": "Project",
"description": "The City Science group uses simulations and visualizations to explain to stakeholders, including citizens, the various \"what if\" scenarios \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/big-ocean-big-data\/overview\/",
"title": "Big Ocean, Big Data",
"eyebrow": "Project",
"description": "More ocean data has been collected in the last two years than in all previous years combined, and we are on a path to continue to break tha\u2026",
"meta": "in Open Ocean #data #environment #machine learning +3\u00a0more"
},
{
"href": "\/projects\/microgravity-hybrid-extrusion\/overview\/",
"title": "Microgravity Hybrid Extrusion",
"eyebrow": "Project",
"description": "Traditional additive manufacturing processes, especially those that make use of liquid resin as the feedstock, are constrained by the gravi\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/stochastic-self-assembly-via-magnetically-programmed-materials\/overview\/",
"title": "Stochastic Self-Assembly via Magnetically Programmed Materials",
"eyebrow": "Project",
"description": "By Martin NisserThe ability to deploy large space structures is key to enabling long-duration and long-distance space missions, supporting \u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/microsoft-azure-kinect-for-a-lunar-environment\/overview\/",
"title": "Microsoft Azure Kinect for a Lunar Environment",
"eyebrow": "Project",
"description": "null",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/a-conversation-with-the-sun\/overview\/",
"title": "A Conversation with the Sun",
"eyebrow": "Project",
"description": "\u200bA Conversation with the Sun&nbsp;is an artistic exploration by acclaimed Thai auteur and artist Apichatpong Weerasethakul in collaboration\u2026",
"meta": "in Fluid Interfaces #artificial intelligence"
},
{
"href": "\/projects\/pandemic-response-catalyst-conversations\/overview\/",
"title": "Pandemic Response Catalyst Conversations",
"eyebrow": "Project",
"description": "The&nbsp;MIT Center for Collective Intelligence,&nbsp;MIT Media Lab\u2019s Community Biotechnology Initiative, and&nbsp;MilliporeSigma\u2014the life \u2026",
"meta": "in Community Biotechnology #health #member company #technology +3\u00a0more"
},
{
"href": "\/projects\/pandemic-supermind-activation\/overview\/",
"title": "Pandemic Supermind Activation",
"eyebrow": "Project",
"description": "The&nbsp;Pandemic&nbsp;Supermind&nbsp;Activation&nbsp;brings together leaders in the biosciences and beyond, harnessing the power of&nbsp;h\u2026",
"meta": "in Community Biotechnology #member company #public health #covid19"
},
{
"href": "\/projects\/essence\/overview\/",
"title": "Essence",
"eyebrow": "Project",
"description": "The sense of smell is perhaps the most pervasive of all senses, but it is also one of the least understood and least exploited in HCI. We p\u2026",
"meta": "in Advancing Wellbeing \u00b7 Fluid Interfaces #design #fashion #perception +3\u00a0more"
},
{
"href": "\/projects\/webbed-footnotes\/overview\/",
"title": "Webbed Footnotes",
"eyebrow": "Project",
"description": "Webbed Footnotes is a Web annotation system that enables users to have a discussion about, around, and within the space of a Web page. Webb\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/visualcv\/overview\/",
"title": "VisualCV",
"eyebrow": "Project",
"description": "VisualCV is an iconic representation of a person's career, exposing spatio-temporal patterns such as relocations and changes of position, a\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/transformative-copy-suite\/overview\/",
"title": "Transformative Copy Suite",
"eyebrow": "Project",
"description": "The Transformative Copy Suite is a pair of applications that deal with the social history and evolution of media files. The first, Infinite\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/themail\/overview\/",
"title": "Themail",
"eyebrow": "Project",
"description": "Themail visualizes the content of a person's email archive over time. The project focuses on the unique content found in interactions betwe\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/sociomedia-garden\/overview\/",
"title": "Sociomedia Garden",
"eyebrow": "Project",
"description": "We are designing new forms of situated displays and interfaces embedded in public spaces. Our current focus is on interfaces that can funct\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/share-socio-technical-tools-for-loosely-bound-cooperation\/overview\/",
"title": "Share: Socio-Technical Tools for Loosely Bound Cooperation",
"eyebrow": "Project",
"description": "We are looking to better enable cooperation between individuals working in the same domain yet having differing goals. Tools for collaborat\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/posthistory\/overview\/",
"title": "PostHistory",
"eyebrow": "Project",
"description": "PostHistory visualizes users' email mailboxes and the activity patterns within them. The idea is not to create yet another email reader, bu\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/pokerspaces-hiding-and-revealing-social-information-online\/overview\/",
"title": "PokerSpaces: Hiding and Revealing Social Information Online",
"eyebrow": "Project",
"description": "We are using an online poker game as a platform for studying how people share and interpret non-verbal social information online.",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/pasts-and-presents\/overview\/",
"title": "Pasts and Presents",
"eyebrow": "Project",
"description": "Pasts and Presents is a visualization of activity in a space, both current and in the past. The visualization is an abstract, animated imag\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/mycrocosm\/overview\/",
"title": "Mycrocosm",
"eyebrow": "Project",
"description": "The rise in popularity of the Weblog, and the development of its many variants such as photoblogs, vlogs, moblogs, and tumblelogs, demonstr\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/medina\/overview\/",
"title": "Medina",
"eyebrow": "Project",
"description": "Medina is a social-networking site based around the idea of exchanging knowledge. The project explores new interfaces for visualizing conne\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/identity-signals\/overview\/",
"title": "Identity Signals",
"eyebrow": "Project",
"description": "We are using signaling theory to explore how identity is presented and perceived in online environments. The fundamental idea is that many \u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/exploration-of-motion-to-visualize-large-scale-online-discussions\/overview\/",
"title": "Exploration of Motion to Visualize Large-Scale Online Discussions",
"eyebrow": "Project",
"description": "In this project we present our exploration of several visualization techniques which use motion as the primary visual element for depicting\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/echologue\/overview\/",
"title": "Echologue",
"eyebrow": "Project",
"description": "Echologue is a new kind of public space media for sensing and displaying socio-cultural characteristics of a place based on its sonic featu\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/data-portraits\/overview\/",
"title": "Data Portraits",
"eyebrow": "Project",
"description": "Data portraits are a series of visualizations of information traces collected from various social application feeds. Using salient words an\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/data-portrait-study-series-social-maps-of-time-and-space\/overview\/",
"title": "Data Portrait Study Series: Social Maps of Time and Space",
"eyebrow": "Project",
"description": "We study different methods to depict the ways that people are spending their time in their lived environments. We look at people's relation\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/comment-flow\/overview\/",
"title": "Comment Flow",
"eyebrow": "Project",
"description": "Comment Flow is a flexible tool for the content-driven exploration and visualization of a social network. Building upon a traditional force\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/cheiro\/overview\/",
"title": "Cheiro",
"eyebrow": "Project",
"description": "People use text to communicate in online spaces because of its directness and ease of use. However, we are unable to convey many social cue\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/chat-circles\/overview\/",
"title": "Chat Circles",
"eyebrow": "Project",
"description": "Chat Circles is an abstract graphical interface for synchronous text conversation. Here, color and form are used to convey social presence \u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/backchannl\/overview\/",
"title": "backchan.nl",
"eyebrow": "Project",
"description": "While people attend presentations, panels, and lectures to learn something from the people at the front of the room, there's a lot of poten\u2026",
"meta": "in Sociable Media"
},
{
"href": "\/projects\/boundaries-drawings\/overview\/",
"title": "Boundaries Drawings",
"eyebrow": "Project",
"description": "These wall drawings are generated by a series of predesigned instructions that dictate their form. The instructions give both constraint an\u2026",
"meta": "in Social Computing #art"
},
{
"href": "\/projects\/new-learning-materials-for-computational-thinking\/overview\/",
"title": "New Learning Materials for Computational Thinking",
"eyebrow": "Project",
"description": "Inspired by the simplicity and aesthetics of traditional Montessori education, these materials live within and extend this pedagogy to addr\u2026",
"meta": "in Social Computing #learning"
},
{
"href": "\/projects\/narrative-visualization-for\/overview\/",
"title": "Narrative Visualization for Distributed Urban Interventions",
"eyebrow": "Project",
"description": "The use of data-driven methods to examine dynamic spaces, relationships, and mechanisms within an urban environment frames the city as a co\u2026",
"meta": "in Social Computing #design #data #storytelling +2\u00a0more"
},
{
"href": "\/projects\/you-are-here\/overview\/",
"title": "You Are Here",
"eyebrow": "Project",
"description": "You Are Here is an experiment in microurbanism. In this project, we are creating 100 maps each of 100 different cities. Each map gives a c\u2026",
"meta": "in Social Computing #data #urban planning #mapping"
},
{
"href": "\/projects\/wildflower-montessori\/overview\/",
"title": "Wildflower Montessori",
"eyebrow": "Project",
"description": "Wildflower is an open-source approach to Montessori learning. Its aim is to be an experiment in a new learning environment, blurring the bo\u2026",
"meta": "in Social Computing #kids #learning"
},
{
"href": "\/projects\/the-dog-programming-language\/overview\/",
"title": "The Dog Programming Language",
"eyebrow": "Project",
"description": "Dog is a programming language that makes it easy and intuitive to create social applications. A key feature of Dog is built-in support for \u2026",
"meta": "in Social Computing"
},
{
"href": "\/projects\/proximity-networks\/overview\/",
"title": "Proximity Networks",
"eyebrow": "Project",
"description": "A crucial part of Montessori education is observation of the students, so teachers can assist individuals and structure the environment as \u2026",
"meta": "in Social Computing"
},
{
"href": "\/projects\/microculture\/overview\/",
"title": "Microculture",
"eyebrow": "Project",
"description": "Microculture gardens are a network of small-scale permaculture gardens that are aimed at reimagining our urban food systems, remediating ou\u2026",
"meta": "in Social Computing"
},
{
"href": "\/projects\/computational-scope-and-sequence-for-a-montessori-learning-environment\/overview\/",
"title": "Computational Scope and Sequence for a Montessori Learning Environment",
"eyebrow": "Project",
"description": "As part of our motivation to expand the classic Montessori curriculum and to address contemporary proficiencies, we are working closely wit\u2026",
"meta": "in Social Computing #learning"
},
{
"href": "\/projects\/big-data-for-small-places\/overview\/",
"title": "Big Data for Small Places",
"eyebrow": "Project",
"description": "Big Data for Small Places is a quantitative study of the qualities that define our neighborhoods and our collective role in the production \u2026",
"meta": "in Social Computing"
},
{
"href": "\/projects\/a-multi-sensor-wearable-device-for-analyzing-stress-response-in-preschool-classrooms\/overview\/",
"title": "A Multi-Sensor Wearable Device for Analyzing Stress Response in Preschool Classrooms",
"eyebrow": "Project",
"description": "One of the fundamental goals of Montessori education is to create productive, stress-free educational environments for children. In additio\u2026",
"meta": "in Social Computing"
},
{
"href": "\/projects\/you-too\/overview\/",
"title": "You Too!",
"eyebrow": "Project",
"description": "We are working on ways to detect sensitive themes in the online discussions between teenagers on social networks, and to match them to simi\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/time-out-reflective-user-interface-for-social-networks\/overview\/",
"title": "Time Out: Reflective User Interface for Social Networks",
"eyebrow": "Project",
"description": "Time Out is an experimental user interface system for addressing cyberbullying on social networks. A Reflective User Interface (RUI) is a n\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/storied-navigation\/overview\/",
"title": "Storied Navigation",
"eyebrow": "Project",
"description": "Today, people can tell stories by composing, manipulating, and sequencing individual media artifacts using digital technologies. However, t\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/steptorials-a-new-interaction-technique-for-learning-complex-topics\/overview\/",
"title": "Steptorials: A New Interaction Technique for Learning Complex Topics",
"eyebrow": "Project",
"description": "A steptorial (\"step tutorial\") is a new interaction strategy for learning complex topics. Conventional tutorials\ufffdsuch as Khan Academy-style\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/relational-analogies-in-semantic-networks\/overview\/",
"title": "Relational Analogies in Semantic Networks",
"eyebrow": "Project",
"description": "Analogy is a powerful comparison mechanism, commonly thought to be central to human problem solving. Analogies like \"an atom is like the so\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/raconteur-from-chat-to-stories\/overview\/",
"title": "Raconteur: From Chat to Stories",
"eyebrow": "Project",
"description": "Raconteur is a story-editing system for conversational storytelling that provides intelligent assistance in illustrating a story with photo\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/programming-in-natural-language\/overview\/",
"title": "Programming in Natural Language",
"eyebrow": "Project",
"description": "We want to build programming systems that can converse with their users to build computer programs. Such systems will enable users without \u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/procedurespace-managing-informality-by-example\/overview\/",
"title": "ProcedureSpace: Managing Informality by Example",
"eyebrow": "Project",
"description": "Computers usually require us to be precise about what we want them to do and how we want them to do it, but humans find it hard to be so fo\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/navigating-in-very-large-display-spaces\/overview\/",
"title": "Navigating in Very Large Display Spaces",
"eyebrow": "Project",
"description": "How would you browse a VERY large display space, such as a street map of the entire world? The traditional solution is zoom and pan, but th\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/multilingual-common-sense\/overview\/",
"title": "Multilingual Common Sense",
"eyebrow": "Project",
"description": "This project aims to collect and reason over common-sense knowledge in languages other than English. We have collected large bodies of comm\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/multi-lingual-conceptnet\/overview\/",
"title": "Multi-Lingual ConceptNet",
"eyebrow": "Project",
"description": "A ConceptNet in English is already established and working well. We are now attempting to expand it to other languages and cultures. This p\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/learning-common-sense-in-a-second-language\/overview\/",
"title": "Learning Common Sense in a Second Language",
"eyebrow": "Project",
"description": "It's well known that living in a foreign country dramatically improves the effectiveness of learning a second language over classroom study\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/justify\/overview\/",
"title": "Justify",
"eyebrow": "Project",
"description": "Making optimal decisions can improve a wide array of situations. Humans often perform well on small, focused choices, but performance degra\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/human-goal-network\/overview\/",
"title": "Human Goal Network",
"eyebrow": "Project",
"description": "What motivates people? What changes do people want in the world? We approach questions of this kind by mining goals and plans from text-bas\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/graphical-interfaces-for-software-visualization-and-debugging\/overview\/",
"title": "Graphical Interfaces for Software Visualization and Debugging",
"eyebrow": "Project",
"description": "This project explores how modern graphical interface techniques and explicit support for the user's problem-solving activities can make mor\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/goal-oriented-interfaces-for-mobile-phones\/overview\/",
"title": "Goal-Oriented Interfaces for Mobile Phones",
"eyebrow": "Project",
"description": "Currently each app lives in its own little world, with its own interface. Apps are usually unable to communicate with each other and unable\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/goal-oriented-interfaces-for-consumer-electronics\/overview\/",
"title": "Goal-Oriented Interfaces for Consumer Electronics",
"eyebrow": "Project",
"description": "Consumer electronics devices are becoming more complicated, intimidating users. These devices do not know anything about everyday life or h\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/e-commerce-when-things-go-wrong\/overview\/",
"title": "E-Commerce When Things Go Wrong",
"eyebrow": "Project",
"description": "One of the biggest challenges for the digital economy is what to do when things go wrong. Orders get misplaced, numbers mistyped, requests \u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/divisi-for-dummies-d4d\/overview\/",
"title": "Divisi For Dummies (D4D)",
"eyebrow": "Project",
"description": "A library of Python 2.7 code for facilitating commonsense reasoning with ConceptNet4. This makes high-level features of the ConceptNet4 cod\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/commonconsensus-a-game-for-collecting-commonsense-goals\/overview\/",
"title": "CommonConsensus: A Game for Collecting Commonsense Goals",
"eyebrow": "Project",
"description": "Common Consensus is a fun, self-sustaining web-based game that both collects and validates commonsense knowledge about everyday goals. Goal\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/common-sense-reasoning-for-interactive-applications\/overview\/",
"title": "Common-Sense Reasoning for Interactive Applications",
"eyebrow": "Project",
"description": "A long-standing dream of artificial intelligence has been to put common-sense knowledge into computers\ufffdenabling machines to reason about ev\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/aigre-natural-language-interface-that-accommodates-vague-and-ambiguous-input\/overview\/",
"title": "AIGRE: Natural Language Interface that Accommodates Vague and Ambiguous Input",
"eyebrow": "Project",
"description": "A major problem for natural language interfaces is their inability to handle text whose meaning depends in part on context. If a user asks\u2026",
"meta": "in Software Agents"
},
{
"href": "\/projects\/storyboards\/overview\/",
"title": "Storyboards",
"eyebrow": "Project",
"description": "Giving opaque technology a glass house, Storyboards present the tinkerers or owners of electronic devices with stories of how their devices\u2026",
"meta": "in Playful Systems \u00b7 Social Computing"
},
{
"href": "\/projects\/cognitive-integration-the-nature-of-the-mind\/overview\/",
"title": "Cognitive Integration: The Nature of the Mind",
"eyebrow": "Project",
"description": "While we have learned much about human behavior and neurobiology, there is arguably no field that studies the mind itself. We want to overc\u2026",
"meta": "in Synthetic Neurobiology \u00b7 Playful Systems"
},
{
"href": "\/projects\/automatiles\/overview\/",
"title": "AutomaTiles",
"eyebrow": "Project",
"description": "A tabletop set of cellular automata ready to exhibit complex systems through simple behaviors, AutomaTiles explores emergent behavior throu\u2026",
"meta": "in Ultimate Media \u00b7 Playful Systems"
},
{
"href": "\/projects\/troxes\/overview\/",
"title": "Troxes",
"eyebrow": "Project",
"description": "The building blocks we grow up with and the coordinate systems we are introduced to at an early age shape the design space with which we th\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/soft-exchange-interaction-design-with-biological-interfaces\/overview\/",
"title": "Soft Exchange: Interaction Design with Biological Interfaces",
"eyebrow": "Project",
"description": "The boundaries and fabric of human experience are continuously redefined by microorganisms, interacting at an imperceptible scale. Though h\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/sneak-a-hybrid-digital-physical-tabletop-game\/overview\/",
"title": "Sneak: A Hybrid Digital-Physical Tabletop Game",
"eyebrow": "Project",
"description": "Sneak is a hybrid digital tabletop game for two-to-four players about deception, stealth, and social intuition. Each player secretly contro\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/micropsi-an-architecture-for-motivated-cognition\/overview\/",
"title": "MicroPsi: An Architecture for Motivated Cognition",
"eyebrow": "Project",
"description": "The MicroPsi project explores broad models of cognition, built on a motivational system that gives rise to autonomous social and cognitive \u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/homeostasis\/overview\/",
"title": "Homeostasis",
"eyebrow": "Project",
"description": "A large-scale art installation that investigates the biological systems that represent and embody human life, and their relationship to the\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/holobiont-urbanism-revealing-the-microbiological-world-of-cities\/overview\/",
"title": "Holobiont Urbanism: Revealing the Microbiological World of Cities",
"eyebrow": "Project",
"description": "This project investigates urban metagenomics to reveal the invisible microbiological worlds within our cities. Using honeybees to gather sa\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/gamr\/overview\/",
"title": "GAMR",
"eyebrow": "Project",
"description": "Does how you play reflect who you really are? The Media Lab and Tilburg University are bringing science into the game to figure out the con\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/dice\/overview\/",
"title": "Dice++",
"eyebrow": "Project",
"description": "Today, algorithms drive our cars, our economy, what we read, and how we play. Modern-day computer games utilize weighted probabilities to m\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/designing-immersive-multi-sensory-eating-experiences\/overview\/",
"title": "Designing Immersive Multi-Sensory Eating Experiences",
"eyebrow": "Project",
"description": "Food offers a rich multi-modal experience that can deeply affect emotion and memory. We're interested in exploring the artistic and express\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/cordon-sanitaire\/overview\/",
"title": "Cordon Sanitaire",
"eyebrow": "Project",
"description": "Named for, and inspired by, the medieval practice of erecting barriers to prevent the spread of disease, Cordon Sanitaire is a collaborativ\u2026",
"meta": "in Playful Systems #gaming"
},
{
"href": "\/projects\/20-day-stranger\/overview\/",
"title": "20 Day Stranger",
"eyebrow": "Project",
"description": "20 Day Stranger is a mobile app that creates an intimate and anonymous connection between you and another person. For 20 days, you get cont\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/statistical-mechanical-engineering\/overview\/",
"title": "Statistical-Mechanical Engineering",
"eyebrow": "Project",
"description": "Engineering in a limit of thermodynamic complexity, by compiling global optimizations into local dynamics in systems including analog logic\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/resistive-sheets\/overview\/",
"title": "Resistive Sheets",
"eyebrow": "Project",
"description": "We are experimenting with technology for low-cost, large-area input devices, using change-source tomography on an electrically resistive me\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/internet-0\/overview\/",
"title": "Internet 0",
"eyebrow": "Project",
"description": "Internet 0 is an experiment at networking at the ultra-lightweight scale. Instead of relying on the architectural notions of Internet 1 wit\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/fab-labs\/overview\/",
"title": "Fab Labs",
"eyebrow": "Project",
"description": "\"Fab Lab\" is an abbreviation for Fabrication Laboratory, a group of off-the-shelf, industrial-grade fabrication and electronics tools, wrap\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/digital-printing-of-digital-materials\/overview\/",
"title": "Digital Printing of Digital Materials",
"eyebrow": "Project",
"description": "We are developing a printer that builds functional, 3-D structures by reversible assembly of a discrete set of \"digital materials.\" This ap\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/digital-fabrication\/overview\/",
"title": "Digital Fabrication",
"eyebrow": "Project",
"description": "Conventional 3-D printing processes are material-dependent and irreversible. We are working on an alternative approach based on 3-D assembl\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/bubble-logic\/overview\/",
"title": "Bubble Logic",
"eyebrow": "Project",
"description": "We have built a microfluidic logic family and architecture based on two-phase flow. In this scheme, presence or absence of a bubble or a dr\u2026",
"meta": "in Physics and Media"
},
{
"href": "\/projects\/biologically-encoded-augmented-reality-cockpit\/overview\/",
"title": "Biologically encoded augmented reality: cockpit",
"eyebrow": "Project",
"description": "https:\/\/everettlawson.com\/biologically-encoded-augmented-reality-systems-integration-and-geometric-reform\/Information floods the center of \u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/electrostatic-priming-surface-mapping-and-deformation\/overview\/",
"title": "Electrostatic priming: surface mapping and deformation",
"eyebrow": "Project",
"description": "Spherical tissue deformation in electrostatic fields (NaCL+H20 suspension in hydrogel structure)https:\/\/everettlawson.com\/biologically-adap\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/neural-mismatch-model-for-adaptive-sensory-remapping\/overview\/",
"title": "Neural mismatch model for adaptive sensory remapping",
"eyebrow": "Project",
"description": "Proprioceptive feedback systems for kinetosis (motion sickness) treatment and preventionhttps:\/\/everettlawson.com\/neural-mismatch-model-for\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/gyroscopic-stabilization-assist-for-ambulation\/overview\/",
"title": "Gyroscopic stabilization assist for ambulation",
"eyebrow": "Project",
"description": "https:\/\/everettlawson.com\/gyroscopic\/Angle, inertia, and velocity are a subset of moment arms that when instinctively activated are biologi\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/biologically-encoded-augmented-reality-2\/overview\/",
"title": "Biologically encoded augmented reality: stimulus preparation",
"eyebrow": "Project",
"description": "https:\/\/everettlawson.com\/biologically-encoded-augmented-reality\/The system architecture and methodology described here introduce a novel t\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/retrogan\/overview\/",
"title": "RetroGAN",
"eyebrow": "Project",
"description": "Retrofitting is a technique used to move word vectors closer together or further apart in their space to reflect their relationships in a K\u2026",
"meta": "in Object-Based Media #artificial intelligence #machine learning"
},
{
"href": "\/projects\/deep-relationship-discovery\/overview\/",
"title": "Deep Relationship Discovery",
"eyebrow": "Project",
"description": "Relationship discovery between two entities is a problem that has to be addressed&nbsp;when constructing a Knowledge Base (KB). A solution \u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/bird\/overview\/",
"title": "Bird: a 3D Cursor for 3D Interaction in Virtual Reality",
"eyebrow": "Project",
"description": "Bird is a hand-controlled pointing system that translates a user's finger movements and positions into the motion of a 3D pointer in a virt\u2026",
"meta": "in Object-Based Media #virtual reality #interfaces"
},
{
"href": "\/projects\/conversational-characters\/overview\/",
"title": "Conversational Characters: AI agents for entertainment",
"eyebrow": "Project",
"description": "We want to create immersive, personalized, and scalable digital experiences. In order to do that, we need to fundamentally rethink the way \u2026",
"meta": "in Object-Based Media #artificial intelligence #entertainment #gaming +4\u00a0more"
},
{
"href": "\/projects\/conceptnet-new\/overview\/",
"title": "Common sense for artificial intelligence",
"eyebrow": "Project",
"description": "ConceptNet, or Open Mind Common Sense, is a long-standing project designed to help computers understand the meanings of words that people u\u2026",
"meta": "in Object-Based Media #artificial intelligence #natural language processing #data science"
},
{
"href": "\/projects\/robotics\/overview\/",
"title": "Bubble: Wearable assistive grasping augmentation based on soft inflatables",
"eyebrow": "Project",
"description": "Bubble is a pneumatically actuated wearable system that enables people with handdisabilities to use their own hands to grasp objects withou\u2026",
"meta": "in Object-Based Media #human-computer interaction"
},
{
"href": "\/projects\/open-water-data\/overview\/",
"title": "Open Water Data",
"eyebrow": "Project",
"description": "The Open Water Data project explores data physicalization as a path to community engagement and action on important environmental issues. F\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/artboat\/overview\/",
"title": "ArtBoat",
"eyebrow": "Project",
"description": "\u200bArtBoat is a tool for communities to make collaborative light paintings in public spaces and reimagine the future of their cities.&nbsp;&n\u2026",
"meta": "in Object-Based Media #art #environment #sensors +1\u00a0more"
},
{
"href": "\/projects\/thermal-fishing-bob-in-place-environmental-data-visualization\/overview\/",
"title": "SeeBoat (Thermal Fishing Bob): In-place environmental data visualization",
"eyebrow": "Project",
"description": "Two of the most important traits of environmental hazards today are their invisibility and the fact that they are experienced by communitie\u2026",
"meta": "in Object-Based Media #art #environment #sensors"
},
{
"href": "\/projects\/emotive-materials\/overview\/",
"title": "Emotive Materials",
"eyebrow": "Project",
"description": "The design process is no longer limited to one group of individuals, as number, level, and cost make tools ever more accessible. As we move\u2026",
"meta": "in Object-Based Media #design #interfaces #behavioral science"
},
{
"href": "\/projects\/dressed-in-data\/overview\/",
"title": "Dressed in Data",
"eyebrow": "Project",
"description": "This project steps beyond data visualizations to create data experiences. It aims to engage not only the analytic mind, but also the artist\u2026",
"meta": "in Object-Based Media #data #fashion"
},
{
"href": "\/projects\/democratizing-science\/overview\/",
"title": "Democratizing Science",
"eyebrow": "Project",
"description": "The Democratizing Science project is opening up MIT Media Lab research in the form of&nbsp;STEAM&nbsp;learning programs in three elemental \u2026",
"meta": "in ML Learning #learning"
},
{
"href": "\/projects\/moduland\/overview\/",
"title": "MODULAND",
"eyebrow": "Project",
"description": "MODULAND is a playground kit for learning&nbsp;electronic music.MODULAND is an interactive project created by the&nbsp;MIT Media Lab Berlin\u2026",
"meta": "in ML Learning"
},
{
"href": "\/projects\/peer-2-peer-university\/overview\/",
"title": "Peer 2 Peer University",
"eyebrow": "Project",
"description": "Peer 2 Peer University (P2PU) has developed \"learning circles,\" a model for facilitating in-person study groups at community libraries. Aim\u2026",
"meta": "in ML Learning #learning"
},
{
"href": "\/projects\/digital-construction-platform-v-2\/overview\/",
"title": "Digital Construction Platform",
"eyebrow": "Project",
"description": "The Digital Construction Platform (DCP) is an experimental enabling technology for large-scale digital manufacturing. In contrast to the ty\u2026",
"meta": "in Mediated Matter #robotics #architecture #construction"
},
{
"href": "\/projects\/onthego\/overview\/",
"title": "OnTheGo",
"eyebrow": "Project",
"description": "As mobile device screens continue to get smaller (smartwatches, head-mounted devices like Google Glass), touch-based interactions with them\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/spotz\/overview\/",
"title": "Spotz",
"eyebrow": "Project",
"description": "Exploring your city is a great way to make friends, discover new places, find new interests, and invent yourself. Spotz is an Android app w\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/spellbound\/overview\/",
"title": "Spellbound",
"eyebrow": "Project",
"description": "Emerging pervasive games use sensors, graphics and networking technologies to provide immersive game experiences integrated with the real w\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/activ8\/overview\/",
"title": "Activ8",
"eyebrow": "Project",
"description": "Activ8 is a system of three short games: See-Saw, a balancing game for Google Glass; Jump Beat, a music beat matching game for Google Glass\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/meta-physical-space-vr\/overview\/",
"title": "MetaSpace I",
"eyebrow": "Project",
"description": "Most current virtual reality interactions are mediated by hand-held input devices or hand gestures, and usually display only a partial repr\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/conforming-materials\/overview\/",
"title": "Conforming Materials",
"eyebrow": "Project",
"description": "Combining the art of two worlds\u2013fashion and biology\u2013into one.&nbsp;Conforming Materials is working towards designing fully recyclable cloth\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/artextiles\/overview\/",
"title": "ARTextiles: Promoting Social Interactions Around Personal Interests",
"eyebrow": "Project",
"description": "Abstract data visualizations for enhancing social&nbsp;interactions through clothing and augmented reality.",
"meta": "in Living Mobile #augmented reality #data #fashion +2\u00a0more"
},
{
"href": "\/projects\/inertia\/overview\/",
"title": "Inertia",
"eyebrow": "Project",
"description": "Inertia is a platform for exploring physical interactions between real active agents and virtual elements in an augmented reality environme\u2026",
"meta": "in Living Mobile #augmented reality #learning"
},
{
"href": "\/projects\/kino-kinetic-wearable\/overview\/",
"title": "Kino",
"eyebrow": "Project",
"description": "This work explores a dynamic future in which the accessories we wear are no longer static, but are instead mobile, living objects on the bo\u2026",
"meta": "in Living Mobile #robotics #design #fashion +3\u00a0more"
},
{
"href": "\/projects\/variable-reality-interaction-with-the-virtual-book\/overview\/",
"title": "Variable Reality: Interaction with the Virtual Book",
"eyebrow": "Project",
"description": "Variable Reality is an augmented reality system designed for reading digital and physical books more intuitively and efficiently. Through a\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/amphibian-terrestrial-scuba-diving-simulator-using-virtual-reality\/overview\/",
"title": "Amphibian: Terrestrial SCUBA Diving Simulator Using Virtual Reality",
"eyebrow": "Project",
"description": "SCUBA diving as a sport has enabled people to explore the magnificent ocean diversity of beautiful corals, striking fish, and mysterious wr\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/2ndskin\/overview\/",
"title": "DuoSkin",
"eyebrow": "Project",
"description": "DuoSkin is a fabrication process that enables anyone to create customized functional devices that can be attached directly to the skin. Usi\u2026",
"meta": "in Living Mobile #art #fashion #wearable computing +1\u00a0more"
},
{
"href": "\/projects\/storyclip\/overview\/",
"title": "StoryClip",
"eyebrow": "Project",
"description": "Exploring conductive inks as an expressive medium for narrative storytelling, StoryClip synthesizes electrical functionality, aesthetics, a\u2026",
"meta": "in High-Low Tech"
},
{
"href": "\/projects\/lilytiny\/overview\/",
"title": "LilyTiny",
"eyebrow": "Project",
"description": "The LilyTiny is a small sewable breakout board for ATtiny85 microcontrollers\ufffddevices which may be integrated into circuits to enable pre-de\u2026",
"meta": "in High-Low Tech"
},
{
"href": "\/projects\/lilypad-arduino\/overview\/",
"title": "LilyPad Arduino",
"eyebrow": "Project",
"description": "The LilyPad Arduino is a set of tools that empowers people to build soft, flexible, fabric-based computers. A set of sewable electronic mod\u2026",
"meta": "in High-Low Tech"
},
{
"href": "\/projects\/computational-textiles-curriculum\/overview\/",
"title": "Computational Textiles Curriculum",
"eyebrow": "Project",
"description": "The Computational Textiles Curriculum is a collection of projects that leverage the creativity and beauty inherent in e-textiles to create \u2026",
"meta": "in High-Low Tech"
},
{
"href": "\/projects\/circuit-robots\/overview\/",
"title": "Circuit Robots: Mass manufacturing of self-actuating robots",
"eyebrow": "Project",
"description": "Integrating sensors and actuators using flexible electronicsCurrently, the manufacturing of self-actuating and self-sensing robots requires\u2026",
"meta": "in Responsive Environments \u00b7 Tangible Media #robotics"
},
{
"href": "\/projects\/hello-operator\/overview\/",
"title": "Hello, Operator!",
"eyebrow": "Project",
"description": "Hello, Operator! is a vintage telephone switchboard from 1927, refurbished and wired up to a modern computer. It currently runs a time-mana\u2026",
"meta": "in Future Storytelling \u00b7 Playful Systems"
},
{
"href": "\/projects\/for-once-in-your-life\/overview\/",
"title": "For Once In Your Life...",
"eyebrow": "Project",
"description": "\"For Once In Your Life...\" is a site-specific interactive radio play that uses the various sensors in a smartphone to determine specific de\u2026",
"meta": "in Future Storytelling \u00b7 Playful Systems"
},
{
"href": "\/projects\/circuit-storybook\/overview\/",
"title": "Circuit Storybook",
"eyebrow": "Project",
"description": "An interactive picture book that explores storytelling techniques through paper-based circuitry. Sensors, lights, and microcontrollers embe\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/algorithmic-decision-making-and-governance-in-the-age-of-ai\/overview\/",
"title": "Algorithmic Decision Making and Governance in the Age of AI",
"eyebrow": "Project",
"description": "Trying to catch up to a rapidly advancing technology, government agencies, industry, and academia are looking for guidance and best practic\u2026",
"meta": "in Ethics and Governance of Artificial Intelligence #artificial intelligence #government"
},
{
"href": "\/projects\/red-fish-blue-fish\/overview\/",
"title": "Red Fish, Blue Fish",
"eyebrow": "Project",
"description": "With common-sense computing, we can discover trends in the topics that people are talking about right now. Red Fish, Blue Fish takes input \u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/corona\/overview\/",
"title": "Corona",
"eyebrow": "Project",
"description": "How can a knowledge base learn from the Internet, when you shouldn't trust everything you read on the Internet? CORONA is a system for buil\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/estrofem-lab\/overview\/",
"title": "Estrofem! Lab",
"eyebrow": "Project",
"description": "Geeking, workshoplogy, and freak science on the microcolonization of estrogen biomolecules Estrofem! Lab is dedicated to the development of\u2026",
"meta": "in Design Fiction"
},
{
"href": "\/projects\/tranceflora-amys-glowing-silk\/overview\/",
"title": "Tranceflora\u2014Amy's Glowing Silk",
"eyebrow": "Project",
"description": "We collaborated with NIAS (National Institute of Agricultural Science) to genetically engineer silkworms to develop new kinds of silk for f\u2026",
"meta": "in Design Fiction #art #bioengineering #fashion +1\u00a0more"
},
{
"href": "\/projects\/teshima-8-million-lab\/overview\/",
"title": "Teshima 8 Million Lab",
"eyebrow": "Project",
"description": "Teshima 8 Million Lab is the first Shinto shrine worshipping a genetically engineered life\u2014a silkworm created in Sputniko!'s new work Red S\u2026",
"meta": "in Design Fiction"
},
{
"href": "\/projects\/red-silk-of-fate-tamakis-crush\/overview\/",
"title": "Red Silk of Fate\u2014Tamaki's Crush",
"eyebrow": "Project",
"description": "Red String of Fate is an East Asian mythology in which gods tie an invisible red string between those that are destined to be together. Spu\u2026",
"meta": "in Design Fiction"
},
{
"href": "\/projects\/egstrogen-farms\/overview\/",
"title": "Egstrogen Farms",
"eyebrow": "Project",
"description": "A transgenic chicken commercial for ovulating womenEsgtrogen Farms is a fictional company that raises genetically modified chickens that pr\u2026",
"meta": "in Design Fiction #genetics #storytelling"
},
{
"href": "\/projects\/kaleido-idiosyncractic-graphical-interfaces-for-software-development\/overview\/",
"title": "Kaleido: Idiosyncractic Graphical Interfaces for Software Development",
"eyebrow": "Project",
"description": "One of the major barriers encountered by designers and artists when programming digital media is difficulty translating mental models of in\u2026",
"meta": "in Design Ecology"
},
{
"href": "\/projects\/selectricity\/overview\/",
"title": "Selectricity",
"eyebrow": "Project",
"description": "Selectricity (formerly HyperChad) is a Web-based voting system that supports anonymous and voter-verifiable balloting, and includes an elec\u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/exertion-music\/overview\/",
"title": "Exertion Music",
"eyebrow": "Project",
"description": "Are electronic instruments that generate their own power better than those that don't? Can acoustic and electronic musical instruments be \u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/cach\/overview\/",
"title": "Cach\ufffd",
"eyebrow": "Project",
"description": "Our bodies continue beyond our flesh and bones. Humans have constantly augmented their bodies with tools like clothing or automobiles, and \u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/boycott-toolkit\/overview\/",
"title": "Boycott Toolkit",
"eyebrow": "Project",
"description": "The Boycott Toolkit provides tools for consumers to organize collective economic action. Users can learn about the politics behind everyday\u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/ambient-addition\/overview\/",
"title": "Ambient Addition",
"eyebrow": "Project",
"description": "Urban noise pollution has been a problem since the days of Buddha. Walkmans help, but issues of both social and accoustic isolation have be\u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/judicial-risk-assessment\/overview\/",
"title": "Judicial Risk Assessment",
"eyebrow": "Project",
"description": "In this speculative project, we \"flipped the script\" on a widespread narrative regarding the use of algorithmic risk assessment for crimina\u2026",
"meta": "in Civic Media #artificial intelligence"
},
{
"href": "\/projects\/anti-surveillance-technologies\/overview\/",
"title": "Dressing Audio Technologies: In\/Visibility and Civic Resistance in the Age of Surveillance Capitalism",
"eyebrow": "Project",
"description": "The fourth industrial revolution has brought new meanings to surveillance in the digital age. In recent years, we have seen the rise of sta\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/allo-i-s\/overview\/",
"title": "allo-i(s)",
"eyebrow": "Project",
"description": "Definition:combining formPrefix: allo-other; different.\"allopatric\"im\u00b7ag\u00b7i\u00b7na\u00b7tionnoun: imagination; plural noun: imaginationsthe faculty o\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/linkedout\/overview\/",
"title": "LinkedOut: Codesigning societal reentry with returning citizens",
"eyebrow": "Project",
"description": "LinkedOut aims to define and build solutions to facilitate societal reentry for formerly incarcerated individuals.In collaboration with the\u2026",
"meta": "in Civic Media #design #human-computer interaction #civic technology +4\u00a0more"
},
{
"href": "\/projects\/actionable-auditing-coordinated-bias-disclosure-study\/overview\/",
"title": "Actionable Auditing: Coordinated bias disclosure study",
"eyebrow": "Project",
"description": "Algorithmic auditing has emerged as a key strategy to expose systematic biases embedded in software platforms, yet scholarship on the impac\u2026",
"meta": "in Civic Media #computer vision #artificial intelligence #civic media +8\u00a0more"
},
{
"href": "\/projects\/artcube\/overview\/",
"title": "Art Cube: the Ambulatory Art Exhibit",
"eyebrow": "Project",
"description": "As we know from our \u2018maker\u2019 classes and workshops, different capabilities and approaches can yield remarkable projects. Let\u2019s facilitate a \u2026",
"meta": "in Civic Media #art #interactive #community +2\u00a0more"
},
{
"href": "\/projects\/datavisionari\/overview\/",
"title": "dataVisionaRi",
"eyebrow": "Project",
"description": "dataVisionaRi is an exploration of big data visualizations&nbsp;techniques in VR. The research generates new taxonomy and&nbsp;structures a\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/data-culture-project\/overview\/",
"title": "Data Culture Project",
"eyebrow": "Project",
"description": "Struggling to build your organization's ability to work with data? Use our hands-on learning program to kickstart your data culture.datacul\u2026",
"meta": "in Civic Media #data #learning"
},
{
"href": "\/projects\/the-babbling-brook\/overview\/",
"title": "The Babbling Brook",
"eyebrow": "Project",
"description": "The Babbling Brook is an unnamed neighborhood creek in Waltham, MA, that winds its way to the Charles River. With the help of networked sen\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/peer-appreciation-in-the-workplace\/overview\/",
"title": "Peer Appreciation in the Workplace",
"eyebrow": "Project",
"description": "Organizations are deploying gratitude-tracking systems to encourage appreciation, promote pro-sociality, and monitor employee wellbeing. We\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/pageonex\/overview\/",
"title": "PageOneX",
"eyebrow": "Project",
"description": "Newspaper front pages are a key source of data about our media ecology. Newsrooms spend massive time and effort deciding what stories make \u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/open-water-project\/overview\/",
"title": "Open Water Project",
"eyebrow": "Project",
"description": "The Open Water Project aims to develop and curate a set of low-cost, open source tools enabling communities everywhere to collect, interpre\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/netstories\/overview\/",
"title": "NetStories",
"eyebrow": "Project",
"description": "Recent years have witnessed a surge in online digital storytelling tools, enabling users to more easily create engaging multimedia narrativ\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/deepstream\/overview\/",
"title": "DeepStream",
"eyebrow": "Project",
"description": "Citizens and journalists are increasingly choosing to live stream civic events. But live streams are currently hard to find and lack in-dep\u2026",
"meta": "in Civic Media #civic media #social media"
},
{
"href": "\/projects\/data-therapy\/overview\/",
"title": "Data Therapy",
"eyebrow": "Project",
"description": "As part of our larger effort to build out a suite of tools for community organizers, we are helping to build their capacity to do their own\u2026",
"meta": "in Civic Media #data #learning #data visualization"
},
{
"href": "\/projects\/code4rights\/overview\/",
"title": "Code4Rights",
"eyebrow": "Project",
"description": "Code4Rights promotes human rights through technology education. By facilitating the development of rights-focused mobile applications in wo\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/rock-and-roll-spirit\/overview\/",
"title": "RockStar-ai",
"eyebrow": "Project",
"description": "Concerned about your privacy online? Worried with whom and how photos of you and\/or your family might be shared on social media? You probab\u2026",
"meta": "in Center for Civic Media"
},
{
"href": "\/projects\/youplural\/overview\/",
"title": "You:Plural",
"eyebrow": "Project",
"description": "Canadian artist Emily Carr once said, \u201cYou come into the world alone and you go out of the world alone yet it seems to me you are more alon\u2026",
"meta": "in Center for Civic Media"
},
{
"href": "\/projects\/make-the-breast-pump-not-suck-hackathon-2018\/overview\/",
"title": "Make the Breast Pump Not Suck Hackathon 2018",
"eyebrow": "Project",
"description": "A Case for Breastfeeding InnovationBreastfeeding saves lives.If women globally were able to meet the WHO's public health goal to exclusivel\u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media #human-computer interaction #hacking #health +5\u00a0more"
},
{
"href": "\/projects\/databasic\/overview\/",
"title": "DataBasic",
"eyebrow": "Project",
"description": "DataBasic is a suite of web-based tools that give people fun and relevant ways learn how to work with data. Existing tools focus on operati\u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media #data #data visualization"
},
{
"href": "\/projects\/going-dark-collective-action-in-the-reddit-blackout\/overview\/",
"title": "Going Dark: Collective action in the Reddit Blackout",
"eyebrow": "Project",
"description": "How do people who lead communities on online platforms join together in mass collective action to influence platform operators? Going Dark \u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media"
},
{
"href": "\/projects\/civic-entertainment\/overview\/",
"title": "Civic Entertainment",
"eyebrow": "Project",
"description": "Civic Entertainment is a project based at the Center for Civic Media that explores the intersection of civic engagement with film, televisi\u2026",
"meta": "in Center for Civic Media \u00b7 Civic Media #civic media #communications #entertainment +4\u00a0more"
},
{
"href": "\/projects\/gender-shades\/overview\/",
"title": "Gender Shades",
"eyebrow": "Project",
"description": "The Gender Shades project pilots an intersectional approach to inclusive product testing for AI.Algorithmic Bias PersistsGender Shades is a\u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media #design #computer vision #art +16\u00a0more"
},
{
"href": "\/projects\/gobo\/overview\/",
"title": "Gobo",
"eyebrow": "Project",
"description": "Your social media. Your rules.Gobo is an experiment, not a startup. We\u2019re building it to change the conversation on social media and imagin\u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media #artificial intelligence #civic media #civic technology +2\u00a0more"
},
{
"href": "\/projects\/the-constant-atlas\/overview\/",
"title": "The Constant Atlas",
"eyebrow": "Project",
"description": "An interactive atlas of census data for direct consumption by individual citizens.",
"meta": "in Center for Civic Media \u00b7 Civic Media #civic media #data #mapping +1\u00a0more"
},
{
"href": "\/projects\/media-cloud\/overview\/",
"title": "Media Cloud",
"eyebrow": "Project",
"description": "Media Cloud is a platform for studying media ecosystems. By tracking millions of stories published online, the system allows researchers to\u2026",
"meta": "in Center for Civic Media \u00b7 Civic Media #social networks #civic media #data +5\u00a0more"
},
{
"href": "\/projects\/incentivizing-cooperation-using-social-pressure\/overview\/",
"title": "Incentivizing cooperation using social pressure",
"eyebrow": "Project",
"description": "Cooperation in a large society of self-interested individuals is notoriously difficult to achieve when the externality of one individual's \u2026",
"meta": "in Connection Science \u00b7 Human Dynamics"
},
{
"href": "\/projects\/leveraging-leadership-expertise-more-effectively-in-organizations\/overview\/",
"title": "Leveraging leadership expertise more effectively in organizations",
"eyebrow": "Project",
"description": "We believe that the narrative of only listening to experts or trusting the wisdom of the crowd blindly is flawed. Instead we have developed\u2026",
"meta": "in Connection Science \u00b7 Human Dynamics"
},
{
"href": "\/projects\/mobile-territorial-lab\/overview\/",
"title": "Mobile Territorial Lab",
"eyebrow": "Project",
"description": "The Mobile Territorial Lab (MTL) aims at creating a \"living\" laboratory integrated in the real life of the Trento territory in Italy, open \u2026",
"meta": "in Connection Science \u00b7 Human Dynamics"
},
{
"href": "\/projects\/open-badges\/overview\/",
"title": "Open Badges",
"eyebrow": "Project",
"description": "We present Open Badges, an open-source framework and toolkit for measuring and shaping face-to-face social interactions using either custom\u2026",
"meta": "in Connection Science \u00b7 Human Dynamics"
},
{
"href": "\/projects\/society-of-mindthe-emotion-machine\/overview\/",
"title": "Society of Mind\/The Emotion Machine",
"eyebrow": "Project",
"description": "Professor Minsky continues to develop the theory of human thinking and learning called the \"Society of Mind,\" which tries to explain how va\u2026",
"meta": "in Society of Mind"
},
{
"href": "\/projects\/case-and-molly\/overview\/",
"title": "Case and Molly",
"eyebrow": "Project",
"description": "Case and Molly is a prototype for a game inspired by (and in homage to) William Gibson's novel Neuromancer. It's about the coordination bet\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/caps-curbing-assault-to-protect-society\/overview\/",
"title": "CAPS: Curbing Assault to Protect Society",
"eyebrow": "Project",
"description": "We present CAPS, wearable on-body capsules which produce repulsive odor to deter sexual&nbsp;abuse. The capsules can be triggered by self-a\u2026",
"meta": "in Living Mobile #human-machine interaction #wearable computing"
},
{
"href": "\/projects\/photographic-inverse-kinematics\/overview\/",
"title": "Photographic Inverse Kinematics",
"eyebrow": "Project",
"description": "(&nbsp;Or, How to Pretend You Can Dance)",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/tools-for-super-human-time-perception\/overview\/",
"title": "Tools for Super-Human Time Perception",
"eyebrow": "Project",
"description": "Time perception is a fundamental component in our ability to build mental models of our world. Without accurate and precise time perception\u2026",
"meta": ""
},
{
"href": "\/projects\/srcsnap-screenshot-driven-version-tracking\/overview\/",
"title": "Srcsnap \u2014 Screenshot-Driven Version Tracking",
"eyebrow": "Project",
"description": "&nbsp;Do you work with graphics? Do you often find that an earlier version of your sketch looked more appealing? But then there's no way to\u2026",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/a-polynomial-surface-resembling-the-future-sketches-logo\/overview\/",
"title": "A Polynomial Surface Resembling the Future Sketches Logo",
"eyebrow": "Project",
"description": "(Or, How to Find an Equation for Every Picture)",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/mas-552-projects-fall-2021\/overview\/",
"title": "MAS.552 Modeling Zero-Carbon Cities - Students projects - Fall 2021",
"eyebrow": "Project",
"description": "Climate change presents an existential threat to human civilization, and the IPCC report of August 2021 sounds like \u201ca death knell for coal\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/designing-healing-centered-technology-to-support-young-people-who-have-experienced-foster-care\/overview\/",
"title": "Designing healing-centered technology to support foster youth",
"eyebrow": "Project",
"description": "In this project, we are exploring ways to design technology that promotes healing and care for young people who have experienced foster car\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/spinner-1\/overview\/",
"title": "Spinner",
"eyebrow": "Project",
"description": "By Michael Luu",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/3-voices-a-soft-robotic-opera\/overview\/",
"title": "3 Voices: A Soft-Robotic Opera Transposing Singing Experience Across the Audience",
"eyebrow": "Project",
"description": "3 Voices is an artistic research project that looks beyond conventional approaches of listening to music, and instead probes at the deeper \u2026",
"meta": "in Tangible Media #robotics #design #human-computer interaction +2\u00a0more"
},
{
"href": "\/projects\/autonomous-micro-mobility-fleet-simulation\/overview\/",
"title": "Autonomous micro-mobility simulation study",
"eyebrow": "Project",
"description": "What will be the impact of shared autonomous micro-mobility systems? Will autonomy make the micro-mobility systems even more attractive?&nb\u2026",
"meta": "in City Science #robotics #data #energy +5\u00a0more"
},
{
"href": "\/projects\/virtual-reality-based-sensory-stimulation\/overview\/",
"title": "Testing Virtual Reality Use for Spaceflight",
"eyebrow": "Project",
"description": "The objective of this project is to experimentally asses the impact of gravity reference frame on the experience of Virtual Reality (VR), \u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/magnetic-space-grip-shoe\/overview\/",
"title": "Space Grip Shoe",
"eyebrow": "Project",
"description": "null",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/navajo\/overview\/",
"title": "Navajo Star Traveler",
"eyebrow": "Project",
"description": "By Alvin Donel Harvey&nbsp;",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/gravity-loading-countermeasure-skinsuit\/overview\/",
"title": "The Gravity Loading Countermeasure Skinsuit",
"eyebrow": "Project",
"description": "By Rachel Bellisle",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/physical-instinct-in-microgravity\/overview\/",
"title": "Physical Instinct In Microgravity",
"eyebrow": "Project",
"description": "By Michelle LinIn microgravity, the proprioceptive system undergoes adaptations due to the lack of constant gravitational cues [1]. Photo-v\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/mas-552-modeling-low-carbon-spring-2022\/overview\/",
"title": "MAS.552 Modeling low-carbon entrepreneurial cities - Students projects - Spring 2022",
"eyebrow": "Project",
"description": "Climate change presents an existential threat to human civilization, and the IPCC report of August 2021 sounds \u201ca death knell for coal and \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/physiohmd\/overview\/",
"title": "PhysioHMD",
"eyebrow": "Project",
"description": "Virtual and augmented reality headsets are unique as they have access to our facial area, an area that presents an excellent opportunity fo\u2026",
"meta": "in Fluid Interfaces #virtual reality #bioengineering #human-machine interaction +2\u00a0more"
},
{
"href": "\/projects\/emotionalbeasts-1\/overview\/",
"title": "EmotionalBeasts",
"eyebrow": "Project",
"description": "With advances in virtual reality (VR) and physiological sensing technology, even more immersive computer-mediated communication through lif\u2026",
"meta": "in Fluid Interfaces #virtual reality #art #sensors +2\u00a0more"
},
{
"href": "\/projects\/tesserae-self-assembling-space-architecture\/overview\/",
"title": "TESSERAE: Self-Assembling Space Architecture",
"eyebrow": "Project",
"description": "Overview:&nbsp;How will we build the coming generations of Space Architecture\u2014the modules, space ships, and space stations that will enscon\u2026",
"meta": "in Space Exploration Initiative #robotics #design #agriculture +12\u00a0more"
},
{
"href": "\/projects\/micropet\/overview\/",
"title": "MicroPET : Investigation of Biodegradation of PET Plastics in Spaceflight",
"eyebrow": "Project",
"description": "MicroPET aims to identify how microorganisms can efficiently degrade plastic waste and produce higher-value plastic materials, a process kn\u2026",
"meta": "in Space Exploration Initiative #bioengineering #space"
},
{
"href": "\/projects\/termites\/overview\/",
"title": "TerMITes",
"eyebrow": "Project",
"description": "MIT Environmental SensorsTerMITes are a wireless environmental sensor platform that enables designers and researchers with the necessary to\u2026",
"meta": "in City Science #artificial intelligence #sensors"
},
{
"href": "\/projects\/purpose-based-creative-computing-with-scratch\/overview\/",
"title": "Computing for a Purpose",
"eyebrow": "Project",
"description": "Facilitating opportunities for non-dominant youth to learn how to use technology as a tool to engage civically and create positive change i\u2026",
"meta": "in Lifelong Kindergarten #learning #computer science"
},
{
"href": "\/projects\/fashion-in-space-interactive-clothing-the-future-of-fashion-in-sci-fi-context\/overview\/",
"title": "Fashion in Space | Interactive Clothing: The Future of Fashion in Sci-Fi Context",
"eyebrow": "Project",
"description": "By Xinyi Yang",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/reinventing-the-spindle-a-first-experiment-in-gravitational-craft\/overview\/",
"title": "Reinventing the Spindle\u2014A First Experiment in Gravitational Craft",
"eyebrow": "Project",
"description": "By Ebru Kurbak",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/fluid-expressions\/overview\/",
"title": "Fluid Expressions - Art and Craft in Microgravity",
"eyebrow": "Project",
"description": "When imagining human life in space, how will we express our humanity and creativity in an alien environment? Can the art we make both refle\u2026",
"meta": "in Space Exploration Initiative #robotics #design #architecture +13\u00a0more"
},
{
"href": "\/projects\/attentivu-p-pop\/overview\/",
"title": "Personalized Performance-Optimization Platform (AttentivU - P-POP)",
"eyebrow": "Project",
"description": "\u200bThe environmental conditions of prolonged spaceflight pose significant psychological risks for astronauts. In particular, crews of future \u2026",
"meta": "in Fluid Interfaces \u00b7 Space Exploration Initiative #environment #health #sensors +6\u00a0more"
},
{
"href": "\/projects\/visualizing-patterns-of-segregation\/overview\/",
"title": "Visualizing patterns of segregation",
"eyebrow": "Project",
"description": "Segregation, or income inequality, is one of the major problems of our society. Residential segregation has long been of research interest \u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/knittedkeyboard-ii\/overview\/",
"title": "KnittedKeyboard II",
"eyebrow": "Project",
"description": "Spanning from the early Musical Telegraph and Electronic Sackbut, to the late EMS Synthi AKS and Moog Synthesizers, electronic music and mu\u2026",
"meta": "in Responsive Environments #design #human-computer interaction #architecture +11\u00a0more"
},
{
"href": "\/projects\/companion-like-robot\/overview\/",
"title": "Robot Companion for Better Wellbeing",
"eyebrow": "Project",
"description": "Globally, depression affects more than 264 million people of all ages, and is a leading cause of disability worldwide. Several interactive \u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/migratable-ai\/overview\/",
"title": "Migratable AI",
"eyebrow": "Project",
"description": "We live in a world of personified conversational assistants (agents). We interact with these agents in our daily lives such as smart speake\u2026",
"meta": "in Personal Robots #robotics #artificial intelligence #machine learning +1\u00a0more"
},
{
"href": "\/projects\/huggable-a-social-robot-for-pediatric-care\/overview\/",
"title": "Huggable: A social robot for pediatric care",
"eyebrow": "Project",
"description": "The Huggable is a new type of robotic companion for health care, education, and social communication applications. The Huggable is much mor\u2026",
"meta": "in Advancing Wellbeing \u00b7 Personal Robots #health #social robotics #wellbeing"
},
{
"href": "\/projects\/towards-automated-explainability-with-disentangled-concept-discovery\/overview\/",
"title": "DISSECT: Disentangled Simultaneous Explanationsvia Concept Traversals",
"eyebrow": "Project",
"description": "One of the principal benefits of counterfactual explanations is allowing users to explore \"what-if\" scenarios through what does not and can\u2026",
"meta": "in Affective Computing #computer vision #artificial intelligence #extended intelligence +2\u00a0more"
},
{
"href": "\/projects\/deepbrainbody\/overview\/",
"title": "DeepBrainBody",
"eyebrow": "Project",
"description": "The purpose of this study is to investigate possible neural correlates of electrodermal activity. Electrodermal activity (EDA) is a b\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/uncnet\/overview\/",
"title": "UncNet: Modeling uncertainty in deep learning for inherently subjective tasks",
"eyebrow": "Project",
"description": "Automatic emotion recognition has become a well-established machine learning task in recent years. The sensitive and subjective nature of e\u2026",
"meta": "in Affective Computing #computer vision #artificial intelligence #extended intelligence +4\u00a0more"
},
{
"href": "\/projects\/pal-project-on-affinities-language\/overview\/",
"title": "PAL: Project on Affinities + Language",
"eyebrow": "Project",
"description": "The Project on Affinities and Language (PAL) is designed to help us understand what happens in a child\u2019s brain when they engage with their \u2026",
"meta": "in Affective Computing #learning #neurobiology #language learning +3\u00a0more"
},
{
"href": "\/projects\/learning-via-social-awareness-improving-sketch-representations-with-facial-feedback\/overview\/",
"title": "Learning via Social Awareness: Improving sketch representations with facial feedback",
"eyebrow": "Project",
"description": "In the quest towards general artificial intelligence (AI), researchers have explored developing loss functions that act as intrinsic motiva\u2026",
"meta": "in Affective Computing #artificial intelligence #machine learning #affective computing"
},
{
"href": "\/projects\/improving-well-being-for-office-workers\/overview\/",
"title": "Improving Wellbeing for Office Workers",
"eyebrow": "Project",
"description": "Excessive stress can decrease office workers' productivity and negatively impact overall health. This project aims to predict office worker\u2026",
"meta": "in Affective Computing #affective computing"
},
{
"href": "\/projects\/cube-puzzles\/overview\/",
"title": "Cube Puzzles",
"eyebrow": "Project",
"description": "\u200bCube Puzzles: A tangible platform for dynamic assessment of cognitive and psychomotor skillsCognitive and psychomotor assessments are a vi\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/brainbeat\/overview\/",
"title": "BrainBeat: Breath-based music therapy",
"eyebrow": "Project",
"description": "Can we sonfiy calming breathing and passively influence a state of calm?Deep breathing has been scientifically proven to affect the heart, \u2026",
"meta": "in Affective Computing #human-machine interaction #music #affective computing"
},
{
"href": "\/projects\/personalized-machine-learning-for-future-health\/overview\/",
"title": "Personalized Machine Learning for Future Health",
"eyebrow": "Project",
"description": "\u200bThe view on Alzheimer\u2019s Disease (AD) diagnosis has shifted towards a more dynamic process in which clinical and pathological markers evolv\u2026",
"meta": "in Affective Computing #human-machine interaction #pharmaceuticals #machine learning +2\u00a0more"
},
{
"href": "\/projects\/worldbeat\/overview\/",
"title": "WorldBeat: Hearing the world differently",
"eyebrow": "Project",
"description": "Can we modulate the way we hear the world around us to make it more calming or to induce focus? While technology is usually associated with\u2026",
"meta": "in Affective Computing #affective computing"
},
{
"href": "\/projects\/emma-an-emotionally-intelligent-personal-assistant-for-improving-wellbeing\/overview\/",
"title": "EMMA: An emotionally intelligent personal assistant for improving wellbeing",
"eyebrow": "Project",
"description": "The delivery of mental health interventions via ubiquitous devices has shown a lot of promise. A natural conversational interface that allo\u2026",
"meta": "in Affective Computing #health #interfaces"
},
{
"href": "\/projects\/ecg-ambulatory\/overview\/",
"title": "Electrocardiogram collection in noisy ambulatory environments with Android smartphone devices",
"eyebrow": "Project",
"description": "The explosion of mHealth in both abundant and resource-constrained countries is both a cause for celebration and for concern.&nbsp;While mH\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/understanding-emotions-in-multiple-sclerosis-patients\/overview\/",
"title": "Understanding emotions in multiple sclerosis patients",
"eyebrow": "Project",
"description": "More information coming soon.",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/injection-study\/overview\/",
"title": "Injection Study",
"eyebrow": "Project",
"description": "Many drugs, such as monoclonal antibodies, are administrated using parenteral delivery devices via subcutaneous injections. Unfortunately, \u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/physio-freefall\/overview\/",
"title": "Physio FreeFall",
"eyebrow": "Project",
"description": "This project seeks to examine the effects of altered gravity on an individual\u2019s physiology during parabolic flight. Specifically, we will c\u2026",
"meta": "in Affective Computing \u00b7 Space Exploration Initiative #bioengineering #consumer electronics #health +5\u00a0more"
},
{
"href": "\/projects\/improving-rnn-sequence-generation-with-rl\/overview\/",
"title": "Improving RNN Sequence Generation with RL",
"eyebrow": "Project",
"description": "This project investigates a general method for improving the structure and quality of sequences generated by a recurrent neural network (RN\u2026",
"meta": "in Affective Computing #machine learning"
},
{
"href": "\/projects\/personlized-animation\/overview\/",
"title": "Personalized Animated Movies",
"eyebrow": "Project",
"description": "Storytelling is a fundamental way in which human beings understand the world. Imagine watching a movie telling the story of your life, how \u2026",
"meta": "in Affective Computing #art #human-machine interaction #behavioral science +1\u00a0more"
},
{
"href": "\/projects\/pain-measurement\/overview\/",
"title": "Machine Learning for Pain Measurement",
"eyebrow": "Project",
"description": "Pain is a subjective experience commonly measured through patients' self reports. Unfortunately,&nbsp;self-report measures only work when t\u2026",
"meta": "in Affective Computing #affective computing"
},
{
"href": "\/projects\/behavioral-indications-of-depression-severity\/overview\/",
"title": "Behavioral Indications of Depression Severity",
"eyebrow": "Project",
"description": "In collaboration with Massachusetts General Hospital, we are conducting a clinical trial exploring objective methods for assessing depressi\u2026",
"meta": "in Affective Computing #computer vision #artificial intelligence #extended intelligence +7\u00a0more"
},
{
"href": "\/projects\/predicting-bonding\/overview\/",
"title": "Predicting Bonding in Conversations",
"eyebrow": "Project",
"description": "We show that using thin slices (&lt; 1 minute) of facial expression and body language data, we can train a deep neural network to predict w\u2026",
"meta": "in Affective Computing #human-machine interaction #perception #machine learning"
},
{
"href": "\/projects\/deep-gif\/overview\/",
"title": "Predicting perceived emotions in animated GIFs with 3D convolutional neural networks",
"eyebrow": "Project",
"description": "Animated GIFs are widely used on the Internet to express emotions, but automatic analysis of their content is largely \u2026",
"meta": "in Affective Computing #crowdsourcing #social media"
},
{
"href": "\/projects\/engageme\/overview\/",
"title": "Personalized Machine Learning for Autism Therapy",
"eyebrow": "Project",
"description": "EngageME: Personalized machine learning and humanoid robots for measuring affect and engagement of children with autismEngageME is a projec\u2026",
"meta": "in Affective Computing #robotics #human-computer interaction #health +9\u00a0more"
},
{
"href": "\/projects\/modulating-peripheral-and-cortical-arousal-using-a-musical-motor-response-task\/overview\/",
"title": "Modulating peripheral and cortical arousal using a musical motor response task",
"eyebrow": "Project",
"description": "We are conducting EEG studies to identify the musical features and musical interaction patterns that universally impact measures of arousal\u2026",
"meta": "in Affective Computing #human-machine interaction #music #affective computing"
},
{
"href": "\/projects\/affective-response-to-haptic-signals\/overview\/",
"title": "Affective Response to Haptic Signals",
"eyebrow": "Project",
"description": "This study attempts to examine humans' affective responses to superimposed sinusoidal signals. These signals can be perceived either throug\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/the-entrain-study\/overview\/",
"title": "The enTRAIN Study: Physiological synchrony in children with autism",
"eyebrow": "Project",
"description": "Individuals with autism are known to have difficulties connecting with other people, reciprocating social interactions, and being emotional\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/spring\/overview\/",
"title": "SPRING: A Smart Platform for Research, Intervention, and Neurodevelopmental Growth",
"eyebrow": "Project",
"description": "SPRING is a custom-built hardware and software platform for children with neuro-differences. The system automates data acquisition, optimiz\u2026",
"meta": "in Affective Computing \u00b7 ML Learning #robotics #cognition #data +7\u00a0more"
},
{
"href": "\/projects\/eda-explorer\/overview\/",
"title": "EDA Explorer",
"eyebrow": "Project",
"description": "Electrodermal Activity (EDA) is a physiological indicator of stress and strong emotion. While an increasing number of wearable devices can \u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #wearable computing"
},
{
"href": "\/projects\/the-challenge\/overview\/",
"title": "The Challenge",
"eyebrow": "Project",
"description": "Mental wellbeing is intimately tied to both social support and physical activity. The Challenge is a tool aimed at promoting social connect\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing \u00b7 Fluid Interfaces #data #health"
},
{
"href": "\/projects\/kind-and-grateful-promoting-kindness-and-gratitude-with-pervasive-technology\/overview\/",
"title": "\"Kind and Grateful\": Promoting kindness and gratitude with pervasive technology",
"eyebrow": "Project",
"description": "We have designed a novel system to promote kindness and gratitude. We leverage pervasive technologies to naturally embed gratitude inspirat\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing"
},
{
"href": "\/projects\/wavelet-based-motion-artifact-removal-for-electrodermal-activity\/overview\/",
"title": "Wavelet-based motion artifact removal for electrodermal activity",
"eyebrow": "Project",
"description": "Electrodermal activity (EDA) recording is a powerful, widely used tool for monitoring psychological or physiological arousal. However, anal\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/predicting-students-wellbeing-from-physiology-phone-mobility-and-behavioral-data\/overview\/",
"title": "Predicting students' wellbeing from physiology, phone, mobility, and behavioral data",
"eyebrow": "Project",
"description": "The goal of this project is to apply machine learning methods to model the wellbeing of MIT undergraduate students. Extensive data is obtai\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #data #health #machine learning +2\u00a0more"
},
{
"href": "\/projects\/an-eeg-and-motion-capture-based-expressive-music-interface-for-affective-neurofeedback\/overview\/",
"title": "An EEG and motion-capture based expressive music interface for affective neurofeedback",
"eyebrow": "Project",
"description": "This project examines how the expression granted by new musical interfaces can be harnessed to create positive changes in health and wellbe\u2026",
"meta": "in Affective Computing #human-machine interaction #music #affective computing"
},
{
"href": "\/projects\/valinor-mathematical-models-to-understand-and-predict-self-harm\/overview\/",
"title": "Valinor: Mathematical models to understand and predict self-harm",
"eyebrow": "Project",
"description": "We are developing statistical tools for understanding, modeling, and predicting self-harm by using advanced probabilistic graphical models \u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing"
},
{
"href": "\/projects\/building-the-just-right-challenge-in-games-and-toys\/overview\/",
"title": "Building the Just-Right-Challenge in Games and Toys",
"eyebrow": "Project",
"description": "With the LEGO Group and Hasbro, we looked at the emotional experience of playing with games and LEGO bricks. We measured participants' skin\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/fathom-probabilistic-graphical-models-to-help-mental-health-counselors\/overview\/",
"title": "Fathom: Probabilistic graphical models to help mental health counselors",
"eyebrow": "Project",
"description": "We explore advanced machine learning and reflective user interfaces to scale the national Crisis Text Line. We are using state-of-the-art p\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing"
},
{
"href": "\/projects\/feel-a-cloud-system-for-frequent-event-and-biophysiological-signal-labeling\/overview\/",
"title": "FEEL: A cloud system for frequent event and biophysiological signal labeling",
"eyebrow": "Project",
"description": "The wide availability of low-cost, wearable, biophysiological sensors enables us to measure how the environment and our experiences impact \u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/automatic-stress-recognition-in-real-life-settings\/overview\/",
"title": "Onsite Stress Measurement",
"eyebrow": "Project",
"description": "Occupational stress can be described as a harmful emotional and physical response that occurs when high demanding job conditions cannot be \u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing"
},
{
"href": "\/projects\/mobile-health-interventions-for-drug-addiction-and-ptsd\/overview\/",
"title": "Mobile health interventions for drug addiction and PTSD",
"eyebrow": "Project",
"description": "We are developing a mobile phone-based platform to assist people with chronic diseases, panic-anxiety disorders, or addictions. Making use \u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/tributary\/overview\/",
"title": "Tributary",
"eyebrow": "Project",
"description": "The proliferation of smartphones and wearable sensors is creating very large data sets that may contain useful information. However, the ma\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/neuroknit\/overview\/",
"title": "Emotional Beasts Parte Dos: NeuroKnit",
"eyebrow": "Project",
"description": "NeuroKnit is the interplay between the physical and virtual that is explored in response to the current lack of culture, expression, and em\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/kalm-bci\/overview\/",
"title": "KALM: BCI Systems for Managing Anxiety and Stress",
"eyebrow": "Project",
"description": "The KALM project consists of a multimodal dataset and a wearable system for managing anxiety.&nbsp; With this set of tools we aim to make n\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #cognition"
},
{
"href": "\/projects\/learning-through-digital-play\/overview\/",
"title": "Learning through Digital Play",
"eyebrow": "Project",
"description": "Learning through Digital Play (LtDP) is a collaboration with the LEGO Foundation to explore how characteristics of learning through play\u2014ex\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/remixed\/overview\/",
"title": "Creative Learning Design Tools",
"eyebrow": "Project",
"description": "While text-editors (e.g. Google Docs, MS Word) might be useful for writing a lecture, they\u2019re not an intuitive medium for designing experie\u2026",
"meta": "in Lifelong Kindergarten #design #kids #learning +3\u00a0more"
},
{
"href": "\/projects\/cardiac-arrest\/overview\/",
"title": "Cardiac Arrest: Evaluating the Role of Biosignals in Gameplay Strategies and Players' Physiological Synchrony in Social Deception",
"eyebrow": "Project",
"description": "Social deduction or deception games are games in which a player or team of players actively deceives other players who are trying to discov\u2026",
"meta": "in Tangible Media \u00b7 Affective Computing"
},
{
"href": "\/projects\/dis-appearables\/overview\/",
"title": "(Dis)Appearables",
"eyebrow": "Project",
"description": "by Ken Nakagaki, Jordan L Tappa, Yi Zheng*, Joanne Leong, Jack Forman,&nbsp;Sven Koenig*,&nbsp;and Hiroshi Ishii*Collaborators at the Unive\u2026",
"meta": "in Tangible Media #robotics #design #human-computer interaction"
},
{
"href": "\/projects\/acuation-real-time-acupoint-stimulation-to-mediate-the-urge-to-smoke\/overview\/",
"title": "Acuation: Real-Time Acupoint Stimulation To Mediate The Urge To Smoke",
"eyebrow": "Project",
"description": "Acu.ation is an intervention that aims to mediate the urge to smoke by pairing a wearable device that delivers transcutaneous electric acup\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/zero-gravity-cuisine\/overview\/",
"title": "Zero Gravity Cuisine",
"eyebrow": "Project",
"description": "null",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/yale-mit-collaboration-ultraspace\/overview\/",
"title": "Yale-MIT Collaboration: UltraSpace",
"eyebrow": "Project",
"description": "Space architecture projects for the Mechanical Artifact: Ultra Space course in partnership with the Center for Collaborative Arts and Media\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/with-in\/overview\/",
"title": "With(in)",
"eyebrow": "Project",
"description": "With(in)&nbsp;is a multi-stage project that includes an exhibit, installation, qualitative exploration, and visual storytelling.This is a s\u2026",
"meta": "in City Science #design #architecture #art +5\u00a0more"
},
{
"href": "\/projects\/locfedmix-sl\/overview\/",
"title": "LocFedMix-SL",
"eyebrow": "Project",
"description": "Split learning (SL) is a promising distributed learning framework that enables to utilize the huge data and parallel computing resources of\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/brain-switch\/overview\/",
"title": "Brain Switch",
"eyebrow": "Project",
"description": "The Brain Switch is a real-time, closed-loop brain-computer system allowing for real-time correspondence of simple user needs to a caretake\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/zenolith\/overview\/",
"title": "Zenolith - An Interplanetary Time Device",
"eyebrow": "Project",
"description": "On Earth, morning, noon, and night have their own specific meanings. The feeling of a second or a minute passing by, the shortening of the \u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/project-patchbots\/overview\/",
"title": "Patchbots: Milli-fluidic Soft Robots Towards On-body Locomoting Swarm UIs",
"eyebrow": "Project",
"description": "Patchbots are sheet-form robots that are programmable on-the-fly&nbsp;by direct manipulation through bodily movements.&nbsp;The integrated \u2026",
"meta": "in Tangible Media #robotics #design #human-computer interaction +2\u00a0more"
},
{
"href": "\/projects\/spacehuman\/overview\/",
"title": "SpaceHuman 2.0",
"eyebrow": "Project",
"description": "SpaceHuman is a soft robotics device designed to facilitate the exploration of environments with reduced gravity in a view of democratizati\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #robotics #design #human-computer interaction +16\u00a0more"
},
{
"href": "\/projects\/photorythms\/overview\/",
"title": "Photorythms",
"eyebrow": "Project",
"description": "Photorythms: a computational art-based inquiry of portrait photographyPhotorythms investigates whether computational methods such as facial\u2026",
"meta": "in Future Sketches #design #computer vision #art +2\u00a0more"
},
{
"href": "\/projects\/liberatory-computing-for-african-american-students\/overview\/",
"title": "Liberatory Computing for African American Students",
"eyebrow": "Project",
"description": "The underrepresentation of minoritized groups, particularly African Americans, is the longstanding reality of computing fields. Computing h\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/interactive-stories-for-learning-ai-and-programming-in-preschool\/overview\/",
"title": "Interactive Stories for Learning AI and Programming in Preschool",
"eyebrow": "Project",
"description": "Today's children will live in a world saturated with artificial intelligence. Understanding the key idea behind the functioning of intellig\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/towards-learning-neural-representations-from-shadows\/overview\/",
"title": "What can we learn from predicting shadows?",
"eyebrow": "Project",
"description": "By predicting sparse shadow cues, our physics-inspired machine learning algorithm can reconstruct the underlying 3D scene.&nbsp;Abstract. W\u2026",
"meta": "in Camera Culture #robotics #computer vision #artificial intelligence"
},
{
"href": "\/projects\/AI-Loop\/overview\/",
"title": "Theme | AI in the loop",
"eyebrow": "Project",
"description": "In the 1980's media inventors were separated from creative users.&nbsp; The same is true today with machine learning:&nbsp; a cadre of inve\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/machinoia\/overview\/",
"title": "Machinoia: Machine of Multiple Me",
"eyebrow": "Project",
"description": "Our body and mind relate in ways which are extraordinarily enigmatic and seemingly incomprehensible. Recent findings exemplify this by show\u2026",
"meta": "in Fluid Interfaces #design #art #artificial intelligence +3\u00a0more"
},
{
"href": "\/projects\/knittedkeyboard\/overview\/",
"title": "KnittedKeyboard",
"eyebrow": "Project",
"description": "null",
"meta": "in Responsive Environments #design #human-computer interaction #consumer electronics +9\u00a0more"
},
{
"href": "\/projects\/voice-privacy-preservation\/overview\/",
"title": "Voice Privacy Preservation",
"eyebrow": "Project",
"description": "Spoken language is an information-rich medium that combines words with various information about emotions, feelings, and excitation through\u2026",
"meta": "in Social Machines \u00b7 MIT Center for Constructive Communication #artificial intelligence #machine learning"
},
{
"href": "\/projects\/analysis-of-residual-limb-changes-using-digital-image-correlation-and-finite-element-modelling\/overview\/",
"title": "Analysis of residual limb changes using digital image correlation and finite element modeling",
"eyebrow": "Project",
"description": "Local changes in the volume, shape, and mechanical properties of the residual limb can be caused by adjacent joint motion, muscle activatio\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/personalized-interaction-between-human-group-and-robot\/overview\/",
"title": "Designing Personalized AI Agents to Foster Human-Human Connections",
"eyebrow": "Project",
"description": "null",
"meta": "in Personal Robots #robotics #design #human-computer interaction +1\u00a0more"
},
{
"href": "\/projects\/a-conversational-agent-for-dynamic-procedural-interactions\/overview\/",
"title": "A Conversational Agent for Dynamic Procedural Interactions",
"eyebrow": "Project",
"description": "Instructed learning is ever-present throughout our lives. An element of it, How-To questions, (e.g., \u201cHow do I cook rice?\u201d, \u201cHow do I write\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/2d-an-exploration-of-drawing-as-programming-language-featuring-ideas-from-lambda-calculus\/overview\/",
"title": "\u03bb-2D: An Exploration of Drawing as Programming Language, Featuring Ideas from Lambda Calculus",
"eyebrow": "Project",
"description": "&nbsp;An Exploration of Drawing as Programming Language, Featuring Ideas from Lambda Calculus",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/finger-talk\/overview\/",
"title": "Finger Talk",
"eyebrow": "Project",
"description": "Finger Talk is a small experiment Future Sketches has been working on related to gestural computation. What does it mean to have code you c\u2026",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/atlas-of-opportunity\/overview\/",
"title": "The Atlas of Opportunity",
"eyebrow": "Project",
"description": "The Atlas of Opportunity is a platform that allows communities to derive insights from their own data.&nbsp;The tool was created in collabo\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/understanding-the-15-minute-city\/overview\/",
"title": "Understanding the 15 Minute City",
"eyebrow": "Project",
"description": "City Science researchers are engaging in an exploratory process to understand, develop, and model a platform with a focus on the 15-minute \u2026",
"meta": "in City Science #design #human-computer interaction #civic technology +1\u00a0more"
},
{
"href": "\/projects\/school-diversity\/overview\/",
"title": "School Diversity",
"eyebrow": "Project",
"description": "Across most school districts in America, school attendance boundaries play an important role in determining which schools children are assi\u2026",
"meta": "in MIT Center for Constructive Communication \u00b7 Social Machines"
},
{
"href": "\/projects\/daily-sketches\/overview\/",
"title": "Daily Sketches: Nina Lutz",
"eyebrow": "Project",
"description": "Nina does daily sketches on Twitter @ninasketches or at the website for her 2021 sketches , where you can see them in all their glory.You c\u2026",
"meta": "in Future Sketches #design #art #computer science +1\u00a0more"
},
{
"href": "\/projects\/drawing-plus-plus-workshop\/overview\/",
"title": "Drawing++ Workshop",
"eyebrow": "Project",
"description": "Drawing++ Workshop: using drawing as a means of understanding computationIn this workshop participants explore&nbsp;computational concepts \u2026",
"meta": "in Future Sketches #design #art #learning +2\u00a0more"
},
{
"href": "\/projects\/a-co-design-experience-technologies-for-rural-sustainability-in-colombia-2022-edition\/overview\/",
"title": "A Co-Design Experience: Technologies for Rural Sustainability in Colombia | 2022 Edition",
"eyebrow": "Project",
"description": "\u200b\ud83d\udea8Applications to the 2022 Co-Design Experience are now closed\ud83d\udea8OverviewThe development of technology in rural environments in Colombia is a\u2026",
"meta": "in Space Enabled #design #agriculture #civic technology"
},
{
"href": "\/projects\/superspreaders\/overview\/",
"title": "Super Spreaders",
"eyebrow": "Project",
"description": "As part of its&nbsp;recommendations to increase transparency, the Aspen Institute\u2019s Commission on Information Disorder recommended \u2013 in its\u2026",
"meta": "in Social Machines \u00b7 MIT Center for Constructive Communication #social networks"
},
{
"href": "\/projects\/bounce-flash-lidar\/overview\/",
"title": "Bounce-Flash Lidar",
"eyebrow": "Project",
"description": "In photography, illuminating a subject directly using an on-camera flash can result in unflattering photos. To avoid this, photographers o\u2026",
"meta": "in Camera Culture #robotics #computer vision #augmented reality +1\u00a0more"
},
{
"href": "\/projects\/propel-stem\/overview\/",
"title": "Propel STEM",
"eyebrow": "Project",
"description": "The Propel program was initiated by Elements of Education to address the disproportionately low rate of girls applying to the STEM-focused \u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/zflow\/overview\/",
"title": "Image-based Virtual Try-On",
"eyebrow": "Project",
"description": "Image-based virtual try-on involves synthesizing perceptually convincing images of a model wearing a particular garment and has garnered si\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/cbns\/overview\/",
"title": "Private Machine Learning on Point Clouds",
"eyebrow": "Project",
"description": "Point clouds are an increasingly ubiquitous input modality and the raw signal can be efficiently processed with recent progress in deep lea\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/detect-fakes\/overview\/",
"title": "Detect DeepFakes: How to counteract misinformation created by AI",
"eyebrow": "Project",
"description": "Check out our publications in PNAS, a workshop at&nbsp;IJCAI, and pre-print on arXiv.&nbsp;How do you spot a DeepFake? How good are DeepFak\u2026",
"meta": "in Affective Computing #human-computer interaction #artificial intelligence #human-machine interaction +5\u00a0more"
},
{
"href": "\/projects\/simba\/overview\/",
"title": "Benchmarking Privacy in Machine Learning Prediction",
"eyebrow": "Project",
"description": "We tackle the question of how to benchmark reconstruction of inputs from deep neural networks representations. This inverse problem is of g\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/private-data-release\/overview\/",
"title": "Synthesizing data privately for Machine Learning",
"eyebrow": "Project",
"description": "We propose sanitizer, a framework for secure and task-agnostic data release. While releasing datasets continues to make a big impact in var\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/nopeek-splitnn\/overview\/",
"title": "NoPeek",
"eyebrow": "Project",
"description": "NoPeek-Infer: Preventing face reconstruction attacks in distributed inference after on-premise training (Won FG-2021 Mukh Best Paper Runner\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/private-measurement-of-nonlinear-correlations-between-multiple-parties\/overview\/",
"title": "Private measurement of nonlinear correlations between multiple parties",
"eyebrow": "Project",
"description": "We introduce a differentially private method to measure nonlinear correlations between sensitive data hosted across two entities. We provid\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/festival-of-learning\/overview\/",
"title": "Festival of Learning",
"eyebrow": "Project",
"description": "An annual celebration of learning, sharing, making, creating, and debating at the MIT Media Lab.",
"meta": "in Digital Learning + Collaboration Studio #learning"
},
{
"href": "\/projects\/creative-ai-a-curriculum-around-creativity-generative-ai-and-ethics\/overview\/",
"title": "Creative AI: A curriculum around creativity, generative AI, and ethics",
"eyebrow": "Project",
"description": "As the presence of artificial intelligence expands significantly in children\u2019s lives of learning and play, it is critical that students lea\u2026",
"meta": "in Personal Robots #artificial intelligence #kids #learning +2\u00a0more"
},
{
"href": "\/projects\/multi-party-human-robot-conversation-interactions\/overview\/",
"title": "Multi-Party Human-Robot Conversation Interactions",
"eyebrow": "Project",
"description": "With the emergence of social robots in people\u2019s daily lives, their interactions with people need to consider&nbsp;not only engaging with in\u2026",
"meta": "in Personal Robots #human-computer interaction #artificial intelligence"
},
{
"href": "\/projects\/defextiles\/overview\/",
"title": "DefeXtiles: 3D printing quasi-woven textiles via underextrusion",
"eyebrow": "Project",
"description": "OverviewDefeXtiles are thin, flexible textiles of many materials that can quickly be printed into a variety of 3D forms using an inexpensiv\u2026",
"meta": "in Tangible Media #design #human-computer interaction #fashion +4\u00a0more"
},
{
"href": "\/projects\/mm-rt\/overview\/",
"title": "MM-RT",
"eyebrow": "Project",
"description": "MM-RT is a tabletop tangible musical interface that employs electromagnetic actuators and small permanent magnets to physically induce soun\u2026",
"meta": "in Opera of the Future #art #music #creativity +2\u00a0more"
},
{
"href": "\/projects\/synthbacteria\/overview\/",
"title": "SYNTHBacteria",
"eyebrow": "Project",
"description": "SYNTHetic Biology \u2014 A Tribute to Greg Bear\u2019s Blood MusicA musical ecosystem &nbsp;driven by and reacting to the movement of living biologic\u2026",
"meta": ""
},
{
"href": "\/projects\/aguahoja-ii\/overview\/",
"title": "Aguahoja II",
"eyebrow": "Project",
"description": "Aguahoja II builds upon the platform technology of its predecessor, enabling large-scale multi-material 3D printing with abundant, organic \u2026",
"meta": "in Mediated Matter #design #art #biology +1\u00a0more"
},
{
"href": "\/projects\/aguahoja-iii\/overview\/",
"title": "Aguahoja III",
"eyebrow": "Project",
"description": "Aguahoja III expands the capabilities of a broad library of sustainable, organic 3D materials with generative patterns that countervail str\u2026",
"meta": "in Mediated Matter #design #architecture #art +3\u00a0more"
},
{
"href": "\/projects\/cityscope-cooper-hewitt\/overview\/",
"title": "CityScope Cooper Hewitt",
"eyebrow": "Project",
"description": "We are at the dawn of a mobility revolution, where autonomous vehicles will replace cars controlled by humans. We can imagine this developi\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/flowio\/overview\/",
"title": "FlowIO Platform for Soft Robotics and Programmable Materials",
"eyebrow": "Project",
"description": "FlowIO is the first fully-integrated and truly general-purpose, miniature pneumatics development platform for control, actuation, and sensi\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/breathing-garment\/overview\/",
"title": "Breathing Garment: A respiratory regulation garment for voice pedagogy",
"eyebrow": "Project",
"description": "Using OmniFiber technology, we fabricated a type of undergarment that singers can wear to monitor and play back the movement of respiratory\u2026",
"meta": "in Tangible Media #robotics #design #human-computer interaction +6\u00a0more"
},
{
"href": "\/projects\/pudica\/overview\/",
"title": "Pudica",
"eyebrow": "Project",
"description": "A Framework For Designing Augmented Human-Flora Interaction.",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/invisible-variables\/overview\/",
"title": "Invisible Variables: Personal Security Among Vulnerable Populations During the COVID-19 Pandemic",
"eyebrow": "Project",
"description": "The Space Enabled research group at the MIT Media Lab is seeking participants for a paid study on the impacts of social distancing policies\u2026",
"meta": "in Space Enabled #covid19"
},
{
"href": "\/projects\/introduction-to-computer-networks-for-artists\/overview\/",
"title": "Introduction to computer networks for artists",
"eyebrow": "Project",
"description": "A collection of tutorials to introduce computer protocols for sharing data between computers and over the internet, for artistic purposes\u2026",
"meta": "in Future Sketches \u00b7 Opera of the Future #art"
},
{
"href": "\/projects\/city-scope-champs-elysees\/overview\/",
"title": "CityScope Champs-\u00c9lys\u00e9es",
"eyebrow": "Project",
"description": "An interactive&nbsp; platform to improve decision-making related to the revitalization of the Champs \u00c9lys\u00e9esCityScope Champs-\u00c9lys\u00e9e is a ta\u2026",
"meta": "in City Science #urban planning"
},
{
"href": "\/projects\/teleabsence-1\/overview\/",
"title": "\u2593\u2592\u2591 TeleAbsence",
"eyebrow": "Project",
"description": "null",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/g3p-II\/overview\/",
"title": "Glass II",
"eyebrow": "Project",
"description": "Optically transparent and structurally sound, glass has played a significant role in the evolution of product and architectural design acro\u2026",
"meta": "in Mediated Matter #design #architecture #art +6\u00a0more"
},
{
"href": "\/projects\/g3p\/overview\/",
"title": "Glass I",
"eyebrow": "Project",
"description": "Ancient yet modern, enclosing yet invisible, glass was first created in Mesopotamia and Ancient Egypt 4,500 years ago. Precise recipes for\u2026",
"meta": "in Mediated Matter #design #art #biology +2\u00a0more"
},
{
"href": "\/projects\/wanderers\/overview\/",
"title": "Wanderers",
"eyebrow": "Project",
"description": "The Wanderers&nbsp;were unveiled as part of the exhibition: \u2018The Sixth Element: Exploring the Natural Beauty of 3D Printing' on display a\u2026",
"meta": "in Mediated Matter #design #architecture #art +4\u00a0more"
},
{
"href": "\/projects\/synthetic-apiary\/overview\/",
"title": "Synthetic Apiary",
"eyebrow": "Project",
"description": "The Synthetic Apiary proposes a new kind of environment, bridging urban and organismic scales by exploring one of the most important organi\u2026",
"meta": "in Mediated Matter #bioengineering #construction #environment +2\u00a0more"
},
{
"href": "\/projects\/gemini\/overview\/",
"title": "Gemini",
"eyebrow": "Project",
"description": "Gemini\u2014an acoustical \u201ctwin chaise\"\u2014spans multiple scales of the human existence extending from the warmth of the womb to the stretches of\u2026",
"meta": "in Mediated Matter #design #architecture #art +3\u00a0more"
},
{
"href": "\/projects\/vespers-iii\/overview\/",
"title": "Vespers III",
"eyebrow": "Project",
"description": "Vespers is a collection of masks exploring what it means to design (with) life. From the relic of the death mask to a contemporary living d\u2026",
"meta": "in Mediated Matter #design #art #artificial intelligence +5\u00a0more"
},
{
"href": "\/projects\/biodiversity\/overview\/",
"title": "Totems",
"eyebrow": "Project",
"description": "Biodiversity on planet Earth is under momentous threat, with extinction rates estimated between 100 and 1,000 times their pre-human level. \u2026",
"meta": "in Mediated Matter #design #architecture #art +6\u00a0more"
},
{
"href": "\/projects\/cloud-uav-sim\/overview\/",
"title": "Unmanned Aerial Vehicle (UAV) Pilot Simulator",
"eyebrow": "Project",
"description": "With the advent of real-time photorealism (RTPR), virtual environments are now able to achieve higher degrees of engagement than ever befor\u2026",
"meta": "in Personal Robots #robotics #virtual reality #artificial intelligence +1\u00a0more"
},
{
"href": "\/projects\/fiducial-nav-auav\/overview\/",
"title": "Fiducial Marker-Based Navigation for Autonomous UAVs (AUAVs)",
"eyebrow": "Project",
"description": "Depending on the operational environment of an autonomous system, a great deal of perceptual uncertainty may be introduced to an object det\u2026",
"meta": "in Personal Robots #robotics #virtual reality #computer vision +1\u00a0more"
},
{
"href": "\/projects\/domain-randomization-synthetic-data-auav\/overview\/",
"title": "Domain Randomization & Synthetic Data Generation for AUAVs - Reducing Perceptual Uncertainty of Sim2Real Navigation",
"eyebrow": "Project",
"description": "Navigation for autonomous UAVS (unmanned aerial vehicles) is a complex problem and physical field testing of associated tasks introduces a \u2026",
"meta": "in Personal Robots #robotics #virtual reality #computer vision +2\u00a0more"
},
{
"href": "\/projects\/drl_auav\/overview\/",
"title": "Deep Reinforcement Learning for Autonomous UAVs (AUAVs)",
"eyebrow": "Project",
"description": "Many tasks are not easily defined and\/or too complex for supervised machine learning approaches. For these reasons, a technique known as&nb\u2026",
"meta": "in Personal Robots #robotics #virtual reality #computer vision +2\u00a0more"
},
{
"href": "\/projects\/freedom-radio\/overview\/",
"title": "Freedom Radio",
"eyebrow": "Project",
"description": "Freedom Radio (in development), is a series of vocal portraits of freedom around the world. Currently, it features over 100 samples of peop\u2026",
"meta": "in Poetic Justice #art #data #creativity +5\u00a0more"
},
{
"href": "\/projects\/real-talk-radio\/overview\/",
"title": "Real Talk Radio",
"eyebrow": "Project",
"description": "Real Talk Radio (in development) is a sound and video work that explores multi-genre and multigenerational thought and expression in Black \u2026",
"meta": "in Poetic Justice"
},
{
"href": "\/projects\/blackforest\/overview\/",
"title": "Black Forest",
"eyebrow": "Project",
"description": "Black Forest (in development) is a series of community-driven sound, video, and sculptures for the over 100 thousand Black lives lost to CO\u2026",
"meta": "in Poetic Justice"
},
{
"href": "\/projects\/reconfigurable-space-structures\/overview\/",
"title": "Reconfigurable space structures",
"eyebrow": "Project",
"description": "Rapid prototyping platforms such as 3D printers used for digital fabrication are today able to manufacture custom objects for specific task\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +13\u00a0more"
},
{
"href": "\/projects\/argus-sensors-inside-plants\/overview\/",
"title": "Argus: Water monitoring through nanosensors inside living plants",
"eyebrow": "Project",
"description": "Our traditional manufacturing, fabrication, and electronics have been centered around synthetic and completely artificial techniques. Comin\u2026",
"meta": "in Fluid Interfaces #robotics #design #environment +3\u00a0more"
},
{
"href": "\/projects\/divergences-in-following-patterns-between-influential-twitter-users-and-their-audiences-across-dimensions-of-identity\/overview\/",
"title": "Divergences in Following Patterns between Influential Twitter Users and their Audiences",
"eyebrow": "Project",
"description": "Identity spans multiple dimensions; however, the relative salience of a dimension of identity can vary markedly from person to person.&nbsp\u2026",
"meta": "in Social Machines \u00b7 MIT Center for Constructive Communication #social networks #social media"
},
{
"href": "\/projects\/private-location-data-for-the-public-good-and-urban-understanding\/overview\/",
"title": "Private Location Data for the Public Good and Urban Understanding",
"eyebrow": "Project",
"description": "There is a continuous and ubiquitous collection of precise, timestamped, geolocation data from apps and devices, being amassed by private f\u2026",
"meta": "in City Science #civic technology #privacy #security +2\u00a0more"
},
{
"href": "\/projects\/theme-telecreativity\/overview\/",
"title": "Theme | Telecreativity",
"eyebrow": "Project",
"description": "We have a lot of experience with being productive remotely but far less experience with&nbsp;how people can be creative. Increasingly we ri\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/realtalk-for-change-boston\/overview\/",
"title": "RealTalk for Change Boston",
"eyebrow": "Project",
"description": "A revolutionary new piece of civic infrastructure for more inclusive public input.Real Talk for Change is a collaboration between MIT\u2019s Cen\u2026",
"meta": "in Social Machines \u00b7 MIT Center for Constructive Communication #artificial intelligence #civic media #civic technology +5\u00a0more"
},
{
"href": "\/projects\/flying-dreams-2\/overview\/",
"title": "Flying Dreams",
"eyebrow": "Project",
"description": "This project is a subset of the larger Dream Hotel project ongoing with CAST Visiting Artist Carsten H\u00f6ller. The Room for Flying Dreams is \u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/mobility-and-covid-19-in-andorra\/overview\/",
"title": "Mobility and COVID-19 in Andorra",
"eyebrow": "Project",
"description": "View the main City Science Andorra project profile.Country-scale analysis of high-resolution mobility patterns and infection spreadThe MIT \u2026",
"meta": "in City Science #data #government #public health +2\u00a0more"
},
{
"href": "\/projects\/ankle-foot-prosthesis-for-rock-climbing\/overview\/",
"title": "Design of a 2-Degree-of-Freedom Powered Ankle-Foot Prosthesis for Rock Climbing",
"eyebrow": "Project",
"description": "Lower extremity amputation leads to limitations of biological function of individuals, which leads to challenges remaining physically activ\u2026",
"meta": "in Biomechatronics #biomechanics #mechanical engineering #mechatronics +1\u00a0more"
},
{
"href": "\/projects\/ai-generated-characters\/overview\/",
"title": "AI-generated Characters for Learning and Wellbeing",
"eyebrow": "Project",
"description": "Advancements in machine learning have recently enabled the hyper-realistic synthesis of prose, images, audio and video data, in what is ref\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #artificial intelligence #communications +2\u00a0more"
},
{
"href": "\/projects\/robot-policy-design\/overview\/",
"title": "Robot Policy Design Toolkit",
"eyebrow": "Project",
"description": "Increasingly, devices designed with artificial intelligence (AI), such as robots or smart speakers, are entering people\u2019s homes, workspaces\u2026",
"meta": "in Personal Robots #robotics #politics #social robotics"
},
{
"href": "\/projects\/flexible-automation-for-robotic-bioengineering\/overview\/",
"title": "Flexible automation for robotic bioengineering",
"eyebrow": "Project",
"description": "Liquid handling robots are key components of modern biotechnology labs, but they largely function to spare humans from&nbsp;laborious or re\u2026",
"meta": "in Sculpting Evolution"
},
{
"href": "\/projects\/understanding-molecular-evolution\/overview\/",
"title": "Understanding Molecular Evolution",
"eyebrow": "Project",
"description": "Humanity has harnessed evolution to sculpt domesticated animals, crops, and molecules, but the process remains a black box. Which combinati\u2026",
"meta": "in Sculpting Evolution #robotics #environment #genetics +2\u00a0more"
},
{
"href": "\/projects\/ai-5-8\/overview\/",
"title": "How to Train Your Robot",
"eyebrow": "Project",
"description": "How to Train Your Robot is a curriculum for students in 5-8th grade to explore artificial intelligence and ethics. In this course, students\u2026",
"meta": "in Personal Robots #artificial intelligence #kids #learning +3\u00a0more"
},
{
"href": "\/projects\/septa-alerts\/overview\/",
"title": "SEPTA Alerts: Improving the accessibility of public transportation in Philadelphia for people with disabilities",
"eyebrow": "Project",
"description": "We designed an app that uses augmented reality to make public transit in Philadelphia more accessible for people with disabilities.The desi\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/we-walk-the-line\/overview\/",
"title": "We Walk The Line",
"eyebrow": "Project",
"description": "The 'dream' has historically been conceived in the West as internal, entirely private, impossibly personal. This is at odds with much of th\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/mollastica-from-deep-sea-to-deep-space\/overview\/",
"title": "Mollastica - From Deep Sea to Deep Space",
"eyebrow": "Project",
"description": "Impenetrable darkness, extreme pressure, cold water, and disorienting equilibrium. Deep sea creatures live in a world that is closer to out\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/toolkit\/overview\/",
"title": "Technologies Toolkit",
"eyebrow": "Project",
"description": "Following The Power of Without agenda, the City Science Group proposes the Technologies Toolkit.&nbsp; This research aims to translate the \u2026",
"meta": "in City Science #design #developing countries #energy"
},
{
"href": "\/projects\/cyber-key-to-dreams\/overview\/",
"title": "Cyber Key to Dreams",
"eyebrow": "Project",
"description": "This project is a pipeline to algorithmically generate visuals of dreams collected from large groups during the COVID pandemic.&nbsp;Dreams\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/contactless-dream-incubation\/overview\/",
"title": "Non-contact Dream Incubation",
"eyebrow": "Project",
"description": "We have collected data (n=133) in collaboration with Duke University Professor Paul Seli testing a non-contact Targeted Dream Incubation pr\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/sandscape\/overview\/",
"title": "SandScape",
"eyebrow": "Project",
"description": "SandScape is a tangible interface for designing and understanding landscapes through a variety of computational simulations using sand. The\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/ultra-sensitive-electrical-biosensors-for-point-of-care-applications\/overview\/",
"title": "Ultra-sensitive electrical biosensors for point-of-care applications",
"eyebrow": "Project",
"description": "For more details and recent updates visit:&nbsp;&nbsp;https:\/\/web.mit.edu\/deblina-sarkar\/Sensors, especially biosensors, are indispensable \u2026",
"meta": "in Nano-Cybernetic Biotrek #synthetic biology #nanoscience"
},
{
"href": "\/projects\/technology-co-creation-and-transfer-ecosystems-in-latin-america\/overview\/",
"title": "Regional Technology Co-Creation and Transfer Ecosystems in Latin America",
"eyebrow": "Project",
"description": "\ud83d\udea8Application to the 2022 Co-Design Experience here&nbsp;bit.ly\/codesign2022&nbsp;\ud83d\udea8Historically, the term technology transfer has been assoc\u2026",
"meta": "in Space Enabled #design #civic technology #technology +1\u00a0more"
},
{
"href": "\/projects\/technology-design-for-coffee-production\/overview\/",
"title": "A Co-Design Experience: Technology Design for Coffee Production | 2019 Edition",
"eyebrow": "Project",
"description": "\ud83d\udea8Application to the 2022 Co-Design Experience here&nbsp;bit.ly\/codesign2022&nbsp;\ud83d\udea8In the Civic Media and Space Enabled groups, we are explo\u2026",
"meta": "in Civic Media \u00b7 Space Enabled #design"
},
{
"href": "\/projects\/promise-tracker\/overview\/",
"title": "Promise Tracker",
"eyebrow": "Project",
"description": "Promise Tracker is a citizen-monitoring platform designed to help communities track issues they care about and use that information to advo\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/fronteras-de-papel\/overview\/",
"title": "Fronteras de Papel",
"eyebrow": "Project",
"description": "Fronteras de Papel es una iniciativa creada por un equipo interdisciplinar de j\u00f3venes interesados en reflexionar, analizar y comunicar prob\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/school-reviews\/overview\/",
"title": "School Reviews",
"eyebrow": "Project",
"description": "Parents often select schools by relying on subjective assessments shared by other parents\u2014which are increasingly becoming available on scho\u2026",
"meta": "in Social Machines #kids #learning #machine learning +1\u00a0more"
},
{
"href": "\/projects\/Experiments-in-Deepfakes\/overview\/",
"title": "Experiments in Deepfakes: Creativity, Computation and Criticism",
"eyebrow": "Project",
"description": "SynopsisThe class will cover a wide range of perspectives on deepfakes, from their historical ancestors through their philosophical underpi\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #art #artificial intelligence +2\u00a0more"
},
{
"href": "\/projects\/whispers-of-the-mountain\/overview\/",
"title": "Whispers Of The Mountain",
"eyebrow": "Project",
"description": "Whispers Of The Mountain is a voice activated sensor fusion system mounted on downhill snow skis. The system can record 6 axis acceleration\u2026",
"meta": "in City Science #artificial intelligence #sensors #data visualization"
},
{
"href": "\/projects\/living-observatory-sensor-networks-for-documenting-and-experiencing-ecology\/overview\/",
"title": "Living Observatory: Sensor networks for documenting and experiencing ecology",
"eyebrow": "Project",
"description": "Living Observatory is an initiative for documenting and interpreting ecological change that will allow people, individually and collectivel\u2026",
"meta": "in Terrestrial Sensing \u00b7 Responsive Environments #virtual reality #augmented reality #data +6\u00a0more"
},
{
"href": "\/projects\/from-cad-to-jad-javascript-aided-design\/overview\/",
"title": "From CAD to JAD (JavaScript-Aided-Design)",
"eyebrow": "Project",
"description": "An Introduction to using JavaScript as a computer-aided design tool for fabrication.",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/searchlight\/overview\/",
"title": "Searchlight: Tracking Light in Space",
"eyebrow": "Project",
"description": "In this experiment, I used 5 phototransistors to locate the position of a light source on a 2D plane, and drove interactive demos via seria\u2026",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/resilient-prosthetic-and-diabetic-care\/overview\/",
"title": "Democratizing prosthetic and diabetic care: A resilient model for healthcare delivery",
"eyebrow": "Project",
"description": "As developers of prosthetic technology, we\u2019re dedicated to understanding the challenges that people with limb loss face, not just after amp\u2026",
"meta": "in Biomechatronics #health #primary healthcare #public health +4\u00a0more"
},
{
"href": "\/projects\/sleep-creativity\/overview\/",
"title": "Dormio: Interfacing with Dreams",
"eyebrow": "Project",
"description": "InspirationSleep is a forgotten country of the mind. A vast majority of our technologies are built for our waking state, even though a thir\u2026",
"meta": "in Civic Media \u00b7 Fluid Interfaces \u00b7 Personal Robots #human-computer interaction #art #artificial intelligence +16\u00a0more"
},
{
"href": "\/projects\/tools-to-synthesize-with\/overview\/",
"title": "Computer-Aided Synthesis",
"eyebrow": "Project",
"description": "An exploration of how&nbsp;&nbsp;advances in deep learning and generative models&nbsp;can be used to help us synthesize our ideas.",
"meta": "in Viral Communications #design #computer vision #human-computer interaction +4\u00a0more"
},
{
"href": "\/projects\/tree-clocks\/overview\/",
"title": "Tree Clocks: an interactive rhythm and language work",
"eyebrow": "Project",
"description": "By Chelsi Cocking and Manaswi MishraCode Cypher,&nbsp;hosted by CAST Visiting Artist and Grammy-winning rapper&nbsp;Lupe Fiasco&nbsp;and Pr\u2026",
"meta": "in Future Sketches \u00b7 Opera of the Future #art #music #computer science +2\u00a0more"
},
{
"href": "\/projects\/sg-c-environmental-social-and-governance-community-metrics-for-cityscope\/overview\/",
"title": "ESG+C | Environmental, Social & Governance + Community Metrics for CityScope",
"eyebrow": "Project",
"description": "ESG+Community",
"meta": "in City Science"
},
{
"href": "\/projects\/large-scale-pulse-analysis\/overview\/",
"title": "Traditional Chinese medicine-inspired pulse analysis",
"eyebrow": "Project",
"description": "This study aims to bring objective measurement to the multiple \"pulse\" and \"pulse-like\" measures made by practitioners of traditional Chine\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #health"
},
{
"href": "\/projects\/vida-decision-support-system\/overview\/",
"title": "Vida Decision Support System for COVID-19",
"eyebrow": "Project",
"description": "Vida OverviewThe Space Enabled research group at the MIT Media Lab is leading a US-based team of innovators from East Carolina University (\u2026",
"meta": "in Space Enabled #public health #data science #covid19"
},
{
"href": "\/projects\/power-of-without-1\/overview\/",
"title": "The Power of Without",
"eyebrow": "Project",
"description": "The Power of WITHOUT is a research theme in the City Science group. The theme proposes that heavy infrastructure solutions are not financia\u2026",
"meta": "in City Science #design #human-computer interaction #architecture +18\u00a0more"
},
{
"href": "\/projects\/taxonomy-of-informality\/overview\/",
"title": "Taxonomy of informality",
"eyebrow": "Project",
"description": "&nbsp;UN Habitat recognized in its Global Report on Human Settlements an effort to address informality with unconventional approaches, focu\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/openag-flavor-ecology\/overview\/",
"title": "Optimizing plants for flavor, nutrition, and pharmaceutical content",
"eyebrow": "Project",
"description": "Note: On Oct. 25, 2021, the PLOS journal reporting the research associated with this project&nbsp;retracted the publication.Flavor, in addi\u2026",
"meta": "in Open Agriculture (OpenAg) #agriculture #food #biology +1\u00a0more"
},
{
"href": "\/projects\/attentivu-xr\/overview\/",
"title": "AttentivU+XR: Measuring Engagement, Visual, Auditory Attention, Imagery and Intent using Brain Activity",
"eyebrow": "Project",
"description": "In this project we propose a prototype which combines an existing AR headset Hololens 2 with a Brain-Computer Interfaces (BCI) system based\u2026",
"meta": "in Fluid Interfaces #neural interfacing and control"
},
{
"href": "\/projects\/omnifiber-millifluidic-muscle-fibers\/overview\/",
"title": "OmniFiber: Strain-tunable Fluidic Fiber Actuators for Soft Robotic Textiles and Autonomous Garments",
"eyebrow": "Project",
"description": "OmniFiber is a reconfigurable fiber technology for movement-based interactions based on thin fluidic fiber actuators with closed-loop strai\u2026",
"meta": "in Tangible Media #robotics #design #human-computer interaction +10\u00a0more"
},
{
"href": "\/projects\/meet-the-ganimals\/overview\/",
"title": "Meet the Ganimals",
"eyebrow": "Project",
"description": "New generative AI technologies (such as the Generative Adversarial Network, or GAN) can allow us to imagine new species. Hidden within the \u2026",
"meta": "in Human Dynamics \u00b7 Open Ocean \u00b7 Responsive Environments +1\u00a0more #artificial intelligence #environment #ocean"
},
{
"href": "\/projects\/droplets\/overview\/",
"title": "DropletIO",
"eyebrow": "Project",
"description": "DropletIO proposes aqueous droplets as a programmable material for biology, art, and design. The DropletIO system can actuate and sense mac\u2026",
"meta": "in Tangible Media #art #bioengineering #genetics +5\u00a0more"
},
{
"href": "\/projects\/AutonomousBicycleProject\/overview\/",
"title": "The MIT Autonomous Bicycle Project",
"eyebrow": "Project",
"description": "A lightweight research platform to develop autonomous technology&nbsp;Designed to transform bicycle-sharing systems into an on-demand mobil\u2026",
"meta": "in City Science #robotics #design #energy +8\u00a0more"
},
{
"href": "\/projects\/inequalities-and-effects-of-food-environments\/overview\/",
"title": "Inequalities and effects of food environments",
"eyebrow": "Project",
"description": "null",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/resilience-of-communities-in-mexico-during-covid-19\/overview\/",
"title": "Resilience of communities in Mexico during COVID-19",
"eyebrow": "Project",
"description": "In this project we seek to combine data sources to understand the effect of the shock of COVID-19 as well as the recovery dynamics.&nbsp; W\u2026",
"meta": ""
},
{
"href": "\/projects\/privatemail-supervised-manifold-learning-of-deep-features-with-privacy-for-image-retrieval\/overview\/",
"title": "PrivateMail: Supervised Manifold Learning of Deep Activations With Privacy",
"eyebrow": "Project",
"description": "Differential Privacy offers strong guarantees such as immutable privacy under any post-processing. In this work, we propose a differentiall\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/influencer-analytics-twitter\/overview\/",
"title": "Influencer Analytics on Twitter",
"eyebrow": "Project",
"description": "Twitter provides a space for both social and broadcast communication; a tweet by a celebrity can reach millions of users, some of whom may \u2026",
"meta": "in MIT Center for Constructive Communication \u00b7 Social Machines"
},
{
"href": "\/projects\/parallel-combinatorial-optimization-when-submodularity-does-not-hold\/overview\/",
"title": "QCSF: Parallel Combinatorial Optimization without needing Submodularity",
"eyebrow": "Project",
"description": "Classes of set functions along with a choice of ground set are a bedrock to determine and develop corresponding variants of greedy algorith\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/designing-generative-dialogue-spaces\/overview\/",
"title": "Designing Generative Dialogue Spaces",
"eyebrow": "Project",
"description": "Focus groups are a core methodology in audience research for bringing people together to discuss an issue of concern; however, it has been \u2026",
"meta": "in Social Machines \u00b7 MIT Center for Constructive Communication #design #human-computer interaction #communications"
},
{
"href": "\/projects\/AirMixML\/overview\/",
"title": "AirMixML: Over-the-Air Data Mixup for Inherently Privacy-Preserving Edge Machine Learning",
"eyebrow": "Project",
"description": "Wireless channels can be inherently privacy-preserving by distorting the received signals due to channel noise, and superpositioning multip\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/pollster\/overview\/",
"title": "Pollster",
"eyebrow": "Project",
"description": "Public opinion prediction with language models.Media plays an important role in shaping people's beliefs and behaviors.Mass media and socia\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/turning-objects-into-cameras\/overview\/",
"title": "Turning Objects into Cameras",
"eyebrow": "Project",
"description": "Consider a small object sitting on a desk in your living room. The object is illuminated by light sources from all directions\u2014this includes\u2026",
"meta": "in Camera Culture #computer vision #imaging"
},
{
"href": "\/projects\/deepabm\/overview\/",
"title": "DeepABM: Data-driven public policy with differentiable simulators",
"eyebrow": "Project",
"description": "Abstract:We introduce DeepABM, a framework for agent-based modeling that leverages geometric message passing of graph neural networks for s\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/inference-privacy\/overview\/",
"title": "DISCO: Dynamic and Invariant Sensitive Channel Obfuscation for deep neural networks",
"eyebrow": "Project",
"description": "Recent deep learning models have shown remarkable performance in image classification. While these deep learning systems are getting closer\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/participatory-sensemaking\/overview\/",
"title": "Participatory Sensemaking",
"eyebrow": "Project",
"description": "How might we collect rich and complex data from community dialogues, analyze and make sense of that data?&nbsp;How might we design outputs \u2026",
"meta": "in Social Machines \u00b7 MIT Center for Constructive Communication #design #civic technology #communications"
},
{
"href": "\/projects\/education-and-robot-relationships\/overview\/",
"title": "Impact of Education on Child-Robot Relationships",
"eyebrow": "Project",
"description": "Technologies designed with personalities and social interfaces are entering our homes in the form of social robots such as Jibo and Cozmo. \u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/urban-segregation-during-the-covid-19-pandemic\/overview\/",
"title": "Increased Urban Segregation during the COVID-19 Pandemic",
"eyebrow": "Project",
"description": "Urban socioeconomic segregation is an important indicator that is crucial for social, economic, and health outcomes. Segregation is inheren\u2026",
"meta": "in Human Dynamics #social networks #data"
},
{
"href": "\/projects\/Predicting-Driver-Stress-by-analyzing-the-road-scene\/overview\/",
"title": "Predicting Driver Self-Reported Stress by Analyzing the Road Scene",
"eyebrow": "Project",
"description": "Different approaches and models have been used to detect driver\u2019s stress and affective states, using physiology, facial expression, and sel\u2026",
"meta": "in Affective Computing #human-computer interaction #artificial intelligence #data"
},
{
"href": "\/projects\/crispr-biosensors\/overview\/",
"title": "Envirome Monitoring with CRISPR Biosensors",
"eyebrow": "Project",
"description": "In recent years, there has been an increase in low-cost and open-source electronic and chemical sensors that hobbyists, concerned citizens,\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative \u00b7 Open Ocean #robotics #architecture #art +14\u00a0more"
},
{
"href": "\/projects\/ferrozuit\/overview\/",
"title": "FerroZuit",
"eyebrow": "Project",
"description": "A FerroMagnetic Suit For Zero Gravity \/\/ Grounding Humans without Gravity",
"meta": "in Tangible Media #wearable computing #space"
},
{
"href": "\/projects\/agonist-antagonist-myoneural-interface-ami\/overview\/",
"title": "Agonist-antagonist Myoneural Interface (AMI)",
"eyebrow": "Project",
"description": "Humans can accurately sense the position, speed, and torque of their limbs, even with their eyes shut. This sense, known as proprioception,\u2026",
"meta": "in Biomechatronics #robotics #artificial intelligence #bioengineering +17\u00a0more"
},
{
"href": "\/projects\/superpose\/overview\/",
"title": "superpose - A connected experience of sound and space",
"eyebrow": "Project",
"description": "The superpose installation mediates continuously changing wave phenomena within a space that are visible, audible, and react to the presenc\u2026",
"meta": "in Opera of the Future #design #architecture #art +1\u00a0more"
},
{
"href": "\/projects\/a-dream-hotel-with-carsten-h-ller\/overview\/",
"title": "A Dream Hotel with Carsten H\u00f6ller",
"eyebrow": "Project",
"description": "We are working with MIT CAST Visiting Artist Carsten H\u00f6ller to build prototypes for a Dream Hotel museum exhibition which will translate ex\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/physiophone\/overview\/",
"title": "Physiophone: Electrophysiology Sonification",
"eyebrow": "Project",
"description": "The human body produces a variety of different electrophysiological signals from brain-waves (EEG) to the electrical activity of the heart \u2026",
"meta": "in Fluid Interfaces #human-computer interaction #artificial intelligence #augmented reality +4\u00a0more"
},
{
"href": "\/projects\/toy-stories\/overview\/",
"title": "Toy Stories",
"eyebrow": "Project",
"description": "A custom circuit board is embedded into robotic toys which makes them come alive when a sleeper begins to dream. As you slip into REM sleep\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/social-media-mirror\/overview\/",
"title": "Social Mirror",
"eyebrow": "Project",
"description": "Social Mirror is a web application that helps Twitter users interactively explore the politically active parts of their social network. Wo\u2026",
"meta": "in Social Machines #social networks #politics #social media"
},
{
"href": "\/projects\/commalla\/overview\/",
"title": "Commalla: Communication for All",
"eyebrow": "Project",
"description": "\u200bInterested in learning more about the Commalla project?&nbsp;&nbsp;Fill out this form!&nbsp;",
"meta": "in Fluid Interfaces \u00b7 Affective Computing #design #human-computer interaction #machine learning +2\u00a0more"
},
{
"href": "\/projects\/storyscape\/overview\/",
"title": "StoryScape",
"eyebrow": "Project",
"description": "Stories, language, and art are at the heart StoryScape. While StoryScape began as a tool to meet the challenging language learning needs of\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/quantifyme\/overview\/",
"title": "QuantifyMe",
"eyebrow": "Project",
"description": "Unlike traditional randomized controlled trials that generalize relationships in large groups of people, single-case experiments seek to qu\u2026",
"meta": "in Affective Computing \u00b7 Advancing Wellbeing #data #wearable computing #behavioral science +2\u00a0more"
},
{
"href": "\/projects\/elsa\/overview\/",
"title": "ELSA: Empathy learning, socially-aware agents",
"eyebrow": "Project",
"description": "What is ELSA?ELSA is an AI-powered chatbot that acts as an empathetic companion, encouraging users to talk about their day through a form o\u2026",
"meta": "in Affective Computing #computer vision #artificial intelligence #extended intelligence +4\u00a0more"
},
{
"href": "\/projects\/automated-tongue-analysis\/overview\/",
"title": "Automated Tongue Analysis",
"eyebrow": "Project",
"description": "A common practice in Traditional Chinese Medicine (TCM) is visual examination of the patient's tongue. This study will examine ways to make\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing"
},
{
"href": "\/projects\/gravity-proof\/overview\/",
"title": "Gravity Proof: Speculating Cosmic Futures",
"eyebrow": "Project",
"description": "Gravity Proof is a performance and mission to prepare and cook bread in space.&nbsp;Inspired by ancient recipes and archaeological bread re\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/wistress\/overview\/",
"title": "WiStress: Contactless Stress Monitoring",
"eyebrow": "Project",
"description": "WiStress is a system that can monitor a user\u2019s stress passively using wireless signals. WiStress can be installed on a desk or near a couch\u2026",
"meta": "in Signal Kinetics #human-computer interaction #artificial intelligence #bioengineering"
},
{
"href": "\/projects\/saving-face\/overview\/",
"title": "Saving Face",
"eyebrow": "Project",
"description": "null",
"meta": "in Responsive Environments \u00b7 Fluid Interfaces \u00b7 Sculpting Evolution +1\u00a0more #health #sensors #covid19"
},
{
"href": "\/projects\/blockchain-a-new-framework-for-swarm-robotic-systems\/overview\/",
"title": "Blockchain: A new framework for robotic swarm systems",
"eyebrow": "Project",
"description": "Swarms of robots will revolutionize many applications, from targeted material delivery to farming. However, the characteristics that make t\u2026",
"meta": "in Human Dynamics #robotics #artificial intelligence #data +12\u00a0more"
},
{
"href": "\/projects\/rfusion\/overview\/",
"title": "RFusion: Robotic Grasping via RF-Visual Sensing and Learning",
"eyebrow": "Project",
"description": "RFusion is a robotic system that can search for and retrieve items in line-of-sight, non-line-of-sight, and fully occluded settings. It con\u2026",
"meta": "in Signal Kinetics #robotics #computer vision #artificial intelligence +2\u00a0more"
},
{
"href": "\/projects\/bitcoin-security-initiative\/overview\/",
"title": "Bitcoin Security Initiative",
"eyebrow": "Project",
"description": "Bitcoin\u2019s (un)common goodDigital Currency Initiative at the MIT Media Lab Launches New Bitcoin Software and Security Effort with Industry L\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/utreexo\/overview\/",
"title": "Utreexo",
"eyebrow": "Project",
"description": "Utreexo: a dynamic accumulator for bitcoin state&nbsp;A description of research by Thaddeus DryjaOne of the earliest-seen and most persiste\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/zkledger-privacy-preserving-auditing\/overview\/",
"title": "zkLedger: Privacy-Preserving Auditing",
"eyebrow": "Project",
"description": "Privacy-preserving auditing on distributed ledgerszkLedger is a project that combines techniques from modern cryptography to analyze privat\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/decentralized-web\/overview\/",
"title": "Decentralized Web",
"eyebrow": "Project",
"description": "Between 1989 and 2015, the World Wide Web transformed from an esoteric system for publishing technical notes to a basic infrastructure of c\u2026",
"meta": "in Digital Currency Initiative (DCI) #blockchain"
},
{
"href": "\/projects\/opensolar\/overview\/",
"title": "OpenSolar",
"eyebrow": "Project",
"description": "The OpenSolar project and platform aims to use blockchain and IoT-based smart contracts for disintermediation and contractual automation in\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/bitcoin-vending-machine\/overview\/",
"title": "Bitcoin vending machine",
"eyebrow": "Project",
"description": "Lit, the lightweight Lightning Network software developed at the MIT Media Lab, works with multiple Bitcoin-like blockchains. The DCI team \u2026",
"meta": "in Digital Currency Initiative (DCI) #cryptocurrency"
},
{
"href": "\/projects\/multi-spring\/overview\/",
"title": "Multi-SPRING",
"eyebrow": "Project",
"description": "OverviewWe have created a new customizable, multi-user research-through-play platform designed to facilitate social skill development for c\u2026",
"meta": "in ML Learning \u00b7 Affective Computing #cognition #learning #wearable computing +4\u00a0more"
},
{
"href": "\/projects\/brain-and-body-interaction-in-affective-responses\/overview\/",
"title": "BrainBody",
"eyebrow": "Project",
"description": "In this project, we aim to examine the interplay between the brain and body using physiological sensors and functional magnetic resonance i\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/research-resiliency-through-lean-labs\/overview\/",
"title": "Research resiliency through lean labs",
"eyebrow": "Project",
"description": "Academic research groups, especially the ones directed by new junior faculty, are under pressure to produce high-quality work timely while \u2026",
"meta": "in Conformable Decoders #design #bioengineering #health +6\u00a0more"
},
{
"href": "\/projects\/empathic-gps\/overview\/",
"title": "Empathic GPS",
"eyebrow": "Project",
"description": "Emotional arousal influences focus, attention, and decision-making, which are critical when driving. To help promote an optimal arousal lev\u2026",
"meta": "in Affective Computing #human-computer interaction"
},
{
"href": "\/projects\/moon-village\/overview\/",
"title": "Moon Village",
"eyebrow": "Project",
"description": "In 2015, the director general of the European Space Agency (ESA), Jan W\u00f6rner, introduced the concept of the \u201cMoon Village.\u201d Inspired by the\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #design #architecture #construction +1\u00a0more"
},
{
"href": "\/projects\/Tangible-Media_Garden-CAMBRIDGE_Ars-Electronica-2021\/overview\/",
"title": "\u2593\u2592\u2591 TeleAbsence",
"eyebrow": "Project",
"description": "ARS ELECTRONICA 2021Garden CAMBRIDGE",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/thinking-cap\/overview\/",
"title": "Thinking Cap",
"eyebrow": "Project",
"description": "Find out more about the new version of the system, \"The Thinking Cap 2.0\" here.Peoples' mindsets, meaning their beliefs about their own int\u2026",
"meta": "in Fluid Interfaces #kids #learning #wearable computing +3\u00a0more"
},
{
"href": "\/projects\/co-design-of-social-robots-with-older-adults\/overview\/",
"title": "Co-Design of Social Robots with Older Adults",
"eyebrow": "Project",
"description": "Social robots equipped with AI and designed with users\u2019 social, emotional, and relational interactions in mind are increasingly being highl\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/resilient-communities-and-covid19\/overview\/",
"title": "Resilient Communities and COVID-19",
"eyebrow": "Project",
"description": "The City Science group is collaborating on several projects in response to the COVID-19 pandemic. In addition to the project pages linked b\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/metasense\/overview\/",
"title": "MetaSense",
"eyebrow": "Project",
"description": "MetaSense: Integrating Sensing Capabilities into Mechanical Metamaterial. J. Gong*, O. Seow*, C. Honnet*, J. Forman, S\u2026",
"meta": "in Tangible Media #human-computer interaction #consumer electronics #entertainment"
},
{
"href": "\/projects\/prototyping-interactive-fluidic-mechanisms\/overview\/",
"title": "Venous Materials: Towards interactive, fluidic mechanisms",
"eyebrow": "Project",
"description": "By Hila Mor, Yu Tianyu, Ken Nakagaki, Benjamin Harvey Miller, Yichen Jia, Hiroshi IshiiThe Venous Materials project envisions a new way to \u2026",
"meta": "in Tangible Media #design #human-computer interaction #manufacturing +4\u00a0more"
},
{
"href": "\/projects\/tune-field\/overview\/",
"title": "Tune Field",
"eyebrow": "Project",
"description": "Novel Antenna-Based Controller for Musical ExpressionTune Field is a 3-dimensional tangible interface that combines and alters previously e\u2026",
"meta": "#design #human-computer interaction #art +3\u00a0more"
},
{
"href": "\/projects\/e-maki\/overview\/",
"title": "E-maki: XR-enabled Scroll for Interactive Museum Artifacts",
"eyebrow": "Project",
"description": "E-maki is a collection of ancient, painted scrolls accompanied by a cross-reality app that give contextual information and interactive expe\u2026",
"meta": "in Responsive Environments #design #virtual reality #art +3\u00a0more"
},
{
"href": "\/projects\/multidic-a-matlab-toolbox-for-multi-view-3d-digital-image-correlation\/overview\/",
"title": "MultiDIC: a MATLAB Toolbox for Multi-View 3D Digital Image Correlation",
"eyebrow": "Project",
"description": "Three-dimensional Digital Image Correlation (3D-DIC) is a non-contact optical-numerical&nbsp;technique for evaluating the dynamic mechanica\u2026",
"meta": "in Biomechatronics #robotics #health #human-machine interaction +1\u00a0more"
},
{
"href": "\/projects\/3d-neuromuscular-model-of-the-human-ankle-foot-complex\/overview\/",
"title": "3D neuromuscular model of the human ankle-foot complex",
"eyebrow": "Project",
"description": "During the gait cycle, the human ankle complex serves as a primary power generator while simultaneously stabilizing the entire limb. These \u2026",
"meta": "in Biomechatronics #bioengineering #imaging #biomechanics +1\u00a0more"
},
{
"href": "\/projects\/biplanar-fluoroscopy-gait-analysis\/overview\/",
"title": "Biplanar Fluoroscopy Gait Analysis",
"eyebrow": "Project",
"description": "Biplanar fluoroscopy (BiFlo) enables three-dimensional bone kinematics analysis using x-ray videos and bone geometry from segmented CT. Hin\u2026",
"meta": "in Biomechatronics #bioengineering #imaging #bionics"
},
{
"href": "\/projects\/mechanical-interfaces\/overview\/",
"title": "Computational Biomechanics",
"eyebrow": "Project",
"description": "This research track focuses on the use of computational (and experimental) techniques to understand the biomechanical behavior of human tis\u2026",
"meta": "in Biomechatronics #bioengineering #3d printing #biomechanics +1\u00a0more"
},
{
"href": "\/projects\/moment-coupled-cantilever-beam-series-elastic-actuator\/overview\/",
"title": "Personalized Bionics for Dynamic Gait",
"eyebrow": "Project",
"description": "The design of next-generation bionic ankles and knees aims to improve bionic actuators on all metrics: range of motion, power density, band\u2026",
"meta": "in Biomechatronics #robotics #design #human-computer interaction +17\u00a0more"
},
{
"href": "\/projects\/dynamic-interfaces\/overview\/",
"title": "Mechatronic Systems",
"eyebrow": "Project",
"description": "Mechanical, electrical, and dynamic control systems recreate biological behavior with synthetic hardware.",
"meta": "in Biomechatronics #robotics #computer science #biomechanics +4\u00a0more"
},
{
"href": "\/projects\/electrical-interfaces\/overview\/",
"title": "Neural Interfaces",
"eyebrow": "Project",
"description": "Nerve-Muscle Graft Chamber and micro-channel arrays tor interface to peripheral nerves for prosthesis control.&nbsp;This research effort co\u2026",
"meta": "in Biomechatronics #robotics #health #human-machine interaction +2\u00a0more"
},
{
"href": "\/projects\/transdermal-optogenetic-peripheral-nerve-stimulation\/overview\/",
"title": "Transdermal Optogenetic Peripheral Nerve Stimulation",
"eyebrow": "Project",
"description": "Optogenetic techniques have recently been applied to peripheral nerves as a scientific tool with the translatable goal\u2026",
"meta": "in Biomechatronics #robotics #health #human-machine interaction +3\u00a0more"
},
{
"href": "\/projects\/osseo\/overview\/",
"title": "An osseointegrated prosthesis with bi-directional neural communication",
"eyebrow": "Project",
"description": "Recent advancements in orthopedic implants have made way for a new generation of bionic limbs that attach directly to the skeleton. Leverag\u2026",
"meta": "in Biomechatronics #robotics #design #bioengineering +7\u00a0more"
},
{
"href": "\/projects\/amputation\/overview\/",
"title": "Revolutionizing amputation surgery for the restoration of natural neural sensation and mobility",
"eyebrow": "Project",
"description": "Lower-extremity amputation surgery has not seen significant change since the Civil War. This research is focused on the development of nove\u2026",
"meta": "in Biomechatronics #bioengineering #health #neurobiology"
},
{
"href": "\/projects\/terrain-adaptive-lower-limb-prosthesis\/overview\/",
"title": "Terrain-Adaptive Lower Limb Prosthesis",
"eyebrow": "Project",
"description": "Although there have been great advances in the control of lower extremity prostheses, transitioning between terrains such as ramps or stair\u2026",
"meta": "in Biomechatronics #robotics #health #human-machine interaction +2\u00a0more"
},
{
"href": "\/projects\/flexsea-flexible-scalable-electronics-architecture-for-wearable-robotics-applications\/overview\/",
"title": "FlexSEA: Flexible, scalable electronics architecture for wearable robotics applications",
"eyebrow": "Project",
"description": "This project aims to enable fast prototyping of a multi-axis and multi-joint active prosthesis by developing a new modular electronics syst\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/load-bearing-exoskeleton-for-augmentation-of-human-running\/overview\/",
"title": "Load-bearing exoskeleton for augmentation of human running",
"eyebrow": "Project",
"description": "Augmentation of human locomotion has proved an elusive goal. Natural human walking is extremely efficient, and the complex articulation of \u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/powered-ankle-foot-prosthesis\/overview\/",
"title": "Powered Ankle-Foot Prosthesis",
"eyebrow": "Project",
"description": "The human ankle provides a significant amount of net positive work during the stance period of walking, especially at moderate to fast walk\u2026",
"meta": "in Biomechatronics #robotics #design #human-computer interaction +12\u00a0more"
},
{
"href": "\/projects\/neural-interface-technology-for-advanced-prosthetic-limbs\/overview\/",
"title": "Neural interface technology for advanced prosthetic limbs",
"eyebrow": "Project",
"description": "Recent advances in artificial limbs have resulted in the provision of powered ankle and knee function for lower extremity amputees and powe\u2026",
"meta": "in Biomechatronics #robotics #bioengineering #health +9\u00a0more"
},
{
"href": "\/projects\/effect-of-a-powered-ankle-on-shock-absorption-and-interfacial-pressure\/overview\/",
"title": "Effect of a powered ankle on shock absorption and interfacial pressure",
"eyebrow": "Project",
"description": "Lower-extremity amputees face a series of potentially serious post-operative complications. Among these are increased risk of further amput\u2026",
"meta": "in Biomechatronics #bioengineering #bionics"
},
{
"href": "\/projects\/biomimetic-active-prosthesis-for-above-knee-amputees\/overview\/",
"title": "Biomimetic active prosthesis for above-knee amputees",
"eyebrow": "Project",
"description": "Using biologically inspired design principles, a biomimetic robotic knee prosthesis is proposed that uses a clutchable series-elastic actua\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/sensor-fusions-for-an-emg-controlled-robotic-prosthesis\/overview\/",
"title": "Sensor-fusions for an EMG controlled robotic prosthesis",
"eyebrow": "Project",
"description": "Current unmotorized prostheses do not provide adequate energy return during late stance to improve level-ground locomotion. Robotic prosthe\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/fitsocket-measurement-for-attaching-objects-to-people\/overview\/",
"title": "FitSocket: Measurement for attaching objects to people",
"eyebrow": "Project",
"description": "A better understanding of the biomechanics of human tissue allows for better attachment of load-bearing objects to people. Think of shoes, \u2026",
"meta": "in Biomechatronics \u00b7 Mediated Matter"
},
{
"href": "\/projects\/artificial-gastrocnemius\/overview\/",
"title": "Artificial Gastrocnemius",
"eyebrow": "Project",
"description": "Human walking neuromechanical models show how each muscle works during normal, level-ground walking. They are mainly modeled with clutches \u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/human-walking-model-predicts-joint-mechanics-electromyography-and-mechanical-economy\/overview\/",
"title": "Human walking model predicts joint mechanics, electromyography, and mechanical economy",
"eyebrow": "Project",
"description": "We are studying the mechanical behavior of leg muscles and tendons during human walking in order to motivate the design of power-efficient \u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/control-of-muscle-actuated-systems-via-electrical-stimulation\/overview\/",
"title": "Control of muscle-actuated systems via electrical stimulation",
"eyebrow": "Project",
"description": "Motivated by applications in rehabilitation and robotics, we are developing methodologies to control muscle-actuated systems via electrical\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/volitional-control-of-a-powered-ankle-foot-prosthesis\/overview\/",
"title": "Volitional control of a powered ankle-foot prosthesis",
"eyebrow": "Project",
"description": "This project focuses on giving transtibial amputees volitional control over their prostheses by combining electromyographic (EMG) activity \u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/city-science-lab-aalto\/overview\/",
"title": "City Science Lab @ Aalto",
"eyebrow": "Project",
"description": "Aalto University, Finland, and the MIT Media Lab\u2019s City Science group are co-developing a version of the MIT CityScope platform for urban a\u2026",
"meta": "in City Science #architecture #data #transportation +2\u00a0more"
},
{
"href": "\/projects\/city-science-lab-shanghai\/overview\/",
"title": "City Science Lab @ Shanghai",
"eyebrow": "Project",
"description": "Tongji University, Shanghai, and the MIT Media Lab's City Science group are co-developing a version of the MIT CityScope platform&nbsp;for \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/cityscope-hamburg\/overview\/",
"title": "City Science Lab @ Hamburg",
"eyebrow": "Project",
"description": "MIT City Science is working with HafenCity University to develop CityScope for the neighborhood of Rothenburgsort in Hamburg, Germany. The \u2026",
"meta": "in City Science #computer vision #augmented reality #civic technology +3\u00a0more"
},
{
"href": "\/projects\/city-science-guadalajara\/overview\/",
"title": "City Science Lab @ Guadalajara",
"eyebrow": "Project",
"description": "The City Science Lab@Guadalajara is a collaboration with the University of Guadalajara (UdeG), a network composed of 15 campuses within the\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/city-science-andorra\/overview\/",
"title": "City Science Lab @ Andorra",
"eyebrow": "Project",
"description": "Andorra and the City Science research group at the MIT Media Lab are taking on the challenge of turning Andorra into an \u201cInternationally Re\u2026",
"meta": "in City Science #design #architecture #data +15\u00a0more"
},
{
"href": "\/projects\/city-science-lab-toronto\/overview\/",
"title": "City Science Lab @ Toronto",
"eyebrow": "Project",
"description": "City Science Lab Toronto was established in cooperation with Ryerson University in Toronto, Canada.&nbsp; It&nbsp; started in 2018 and is t\u2026",
"meta": "in City Science #urban planning"
},
{
"href": "\/projects\/death-and-the-powers-redefining-opera\/overview\/",
"title": "Death and the Powers: Redefining Opera",
"eyebrow": "Project",
"description": "Death and the Powers&nbsp;is a groundbreaking opera that brings a variety of technological, conceptual, and aesthetic innovations to the th\u2026",
"meta": "in Opera of the Future #multimodal representation #performance technologies #digital opera +22\u00a0more"
},
{
"href": "\/projects\/feeling-climate-crisis\/overview\/",
"title": "Feeling Climate Crisis",
"eyebrow": "Project",
"description": "Feeling Climate Crisis is a series of kinetic sculptures that visualize the ongoing climate crisis. Movements of the sculptures express dat\u2026",
"meta": "in Future Sketches \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/space-fermentation\/overview\/",
"title": "Space Fermentation",
"eyebrow": "Project",
"description": "This research highlights opportunities to bring the rich culture of Earth-based fermentation practices to space to design beneficial applic\u2026",
"meta": "in Space Exploration Initiative #food #space #zero gravity"
},
{
"href": "\/projects\/Interplanetary-Gastronomy\/overview\/",
"title": "Interplanetary Gastronomy",
"eyebrow": "Project",
"description": "The&nbsp;&nbsp;Interplanetary Gastronomy research&nbsp; aims to address the unique challenges and opportunities associated with eating in s\u2026",
"meta": "in Space Exploration Initiative #design #virtual reality #food +5\u00a0more"
},
{
"href": "\/projects\/informality-database\/overview\/",
"title": "Informality Crowdsourced Database",
"eyebrow": "Project",
"description": "Following&nbsp;The Power of Without&nbsp;agenda, the City Science group proposes the Informality Crowdsourced Database.&nbsp;This platform \u2026",
"meta": "#design #developing countries #energy"
},
{
"href": "\/projects\/lunar-sensor-net\/overview\/",
"title": "Lunar Sensor Net",
"eyebrow": "Project",
"description": "We are leveraging current Wireless Sensor Network technology to develop an easily deployable, and inexpensive wireless sensor (LunarWSN) ne\u2026",
"meta": "in Responsive Environments #robotics #design #environment +3\u00a0more"
},
{
"href": "\/projects\/colorchives\/overview\/",
"title": "Colorchives",
"eyebrow": "Project",
"description": "Colorchives represents a continuous and interweaving research thread by Nina Lutz.Color quantization is a long studied issue in computer gr\u2026",
"meta": "in Future Sketches"
},
{
"href": "\/projects\/astronaut-ethnography\/overview\/",
"title": "Astronaut Ethnography",
"eyebrow": "Project",
"description": "Our journeys off-world have taught us just as much about humanity as the harsh environment of space. For the past 20 years, we have had a c\u2026",
"meta": "in Space Exploration Initiative #design #architecture #social science +2\u00a0more"
},
{
"href": "\/projects\/big-screen\/overview\/",
"title": "Big Screen",
"eyebrow": "Project",
"description": "We built an inexpensive, portable, micro-projector-based laptop extension the purpose of which is to engage real space in remote interactio\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/magnetomicrometry\/overview\/",
"title": "Magnetomicrometry: Tissue Tracking via Implanted Magnetic Beads",
"eyebrow": "Project",
"description": "Amputation, muscle weakness, and nerve damage can make it difficult to perform simple daily tasks. In this project, we are developing a mi\u2026",
"meta": "in Biomechatronics #robotics #human-computer interaction #health +11\u00a0more"
},
{
"href": "\/projects\/the-atlas-of-inequality\/overview\/",
"title": "The Atlas of Inequality",
"eyebrow": "Project",
"description": "Segregation is hurting our societies and especially our cities. But economic inequality isn't just limited to neighborhoods. The restaurant\u2026",
"meta": "in Human Dynamics #civic technology #economy #urban planning +5\u00a0more"
},
{
"href": "\/projects\/soil-carbon-sensing\/overview\/",
"title": "Low Cost Soil Carbon Sensing",
"eyebrow": "Project",
"description": "Regenerative agriculture, or \u201ccarbon farming,\u201d is the use of agricultural practices and crops that draw down excess atmospheric carbon thro\u2026",
"meta": "in Responsive Environments #environment #sensors #climate change"
},
{
"href": "\/projects\/a-scalable-networked-smart-sensate-skin\/overview\/",
"title": "A Scalable Networked Smart Sensate Skin",
"eyebrow": "Project",
"description": "We have developed tightly coupled sensor network that tries to mimic some of the sensory characteristics of a natural skin. Developed in a \u2026",
"meta": "in Responsive Environments #architecture #environment #manufacturing +3\u00a0more"
},
{
"href": "\/projects\/project-prometheus\/overview\/",
"title": "Project Prometheus",
"eyebrow": "Project",
"description": "Most of the underwater world remains far off the map. For many of the most exciting exploration challenges\u2014from Maya cenotes to urban aquif\u2026",
"meta": "in Open Ocean #imaging #mapping #visualization +1\u00a0more"
},
{
"href": "\/projects\/lego-wayfinder\/overview\/",
"title": "LEGO Wayfinder",
"eyebrow": "Project",
"description": "The LEGO Wayfinder project combines LEGO, robotics, and seawater into a playground of project-based learning and citizen science for buddin\u2026",
"meta": "in ML Learning \u00b7 Open Ocean #robotics #environment #kids +5\u00a0more"
},
{
"href": "\/projects\/my-deepsea-mybackyard\/overview\/",
"title": "My Deep Sea, My Backyard",
"eyebrow": "Project",
"description": "Seventy percent of nations have deep-sea environments within their maritime Exclusive Economic Zones (EEZs), yet only 16 percent of them ar\u2026",
"meta": "in Open Ocean #developing countries #environment #history +2\u00a0more"
},
{
"href": "\/projects\/maka-niu\/overview\/",
"title": "Maka Niu ~ a low-cost oceanographic camera and sensor platform",
"eyebrow": "Project",
"description": "\"Maka\" - Eye, \"Niu\" - CoconutMaka Niu, aka the \"CocoCam,\"&nbsp;&nbsp;is a low-cost oceanographic camera and sensor platform that enables th\u2026",
"meta": "in Open Ocean #ocean"
},
{
"href": "\/projects\/aquagames\/overview\/",
"title": "AquaGames",
"eyebrow": "Project",
"description": "Play is a universal human need, reducing stress and supporting mental wellbeing. Swimming, surfing, diving, and other water-based activitie\u2026",
"meta": "in Open Ocean"
},
{
"href": "\/projects\/large-interactive-laser-light-field-display\/overview\/",
"title": "Large Interactive Laser Light-Field Installation ~ LILLI",
"eyebrow": "Project",
"description": "LILLI is an immersive, volumetric, reflective lightfield display using a hybrid of video and laser projection to visualize marine wildlife \u2026",
"meta": "in Object-Based Media \u00b7 Open Ocean #holography #interfaces #ocean +1\u00a0more"
},
{
"href": "\/projects\/tracking-marine-snow\/overview\/",
"title": "Tracking Marine Snow",
"eyebrow": "Project",
"description": "Biological Carbon Pump (BCP), which refers to the transport of particulate organic carbon (POC) from the ocean\u2019s surface to the bottom, dir\u2026",
"meta": "in Responsive Environments \u00b7 Open Ocean #environment #sensors #engineering +1\u00a0more"
},
{
"href": "\/projects\/8koigan\/overview\/",
"title": "8KoiGan",
"eyebrow": "Project",
"description": "8K-oi-Gan is a virtual koi pond in which koi patterns are generated by a StyleGan trained on thousands of images of koi and whose input noi\u2026",
"meta": "in Object-Based Media \u00b7 Open Ocean"
},
{
"href": "\/projects\/oceancultures\/overview\/",
"title": "Ocean Cultures",
"eyebrow": "Project",
"description": "The M\u0101ori of&nbsp;Aotearoa&nbsp;(New Zealand) have a long and deep connection to their island and ocean ecosystem. Concepts such as&nbsp;r\u0101\u2026",
"meta": "in Open Ocean \u00b7 Responsive Environments #developing countries #environment #genetics +2\u00a0more"
},
{
"href": "\/projects\/real-time-assessment-of-suicidal-thoughts-and-behaviors\/overview\/",
"title": "Real-time assessment of suicidal thoughts and behaviors",
"eyebrow": "Project",
"description": "Depression correlated with anxiety is one of the key factors leading to suicidal behavior, and is among the leading causes of death worldwi\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #artificial intelligence"
},
{
"href": "\/projects\/tangible-swarm\/overview\/",
"title": "Tangible Swarm: see the unseen",
"eyebrow": "Project",
"description": "Tangible Swarm&nbsp;is a tool that displays relevant information about a robotics system (e.g., multi-robot, swarm, etc.) in real time whil\u2026",
"meta": "in City Science #robotics #computer vision #data +1\u00a0more"
},
{
"href": "\/projects\/bio-digital-wearables\/overview\/",
"title": "Bio-Digital Wearables or Space Health Enhancement",
"eyebrow": "Project",
"description": "Living in space could have significant physical and mental impacts on astronauts. Wearables have the potential to play a critical role in m\u2026",
"meta": "in Fluid Interfaces \u00b7 Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/candlewax-rockets-a-green-propellant-alternative\/overview\/",
"title": "Candlewax Rockets: A Green Alternative for In-Space Propulsion",
"eyebrow": "Project",
"description": "Wax-based hybrid rocket propellants, including paraffin (common candlewax) and beeswax show promise as high-performing hybrid rocket propel\u2026",
"meta": "in Space Enabled #robotics #architecture #art +16\u00a0more"
},
{
"href": "\/projects\/self-assembling-space-frames\/overview\/",
"title": "Self Assembling Space Frames",
"eyebrow": "Project",
"description": "Ever wish you could toss your folded up tent and have it self-assemble mid-air?&nbsp; Well...you can. In a zero gravity environment.Self As\u2026",
"meta": "in Space Exploration Initiative #robotics #design #architecture +14\u00a0more"
},
{
"href": "\/projects\/hotpot\/overview\/",
"title": "H0TP0T",
"eyebrow": "Project",
"description": "By&nbsp;Larissa Zhou and Adam ZacharFood is crucial to maintaining the physical and psychological health of humans in space. Eating food pr\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/panspermia\/overview\/",
"title": "Panspermia",
"eyebrow": "Project",
"description": "By&nbsp;Nancy Valladares and&nbsp;Rae Yuping HsuThis project is an art performance that seeks to rethink imaginaries of multispecies surviv\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/mosaic\/overview\/",
"title": "Miniature Optical Steered Antenna for Intersatellite Communication (MOSAIC)",
"eyebrow": "Project",
"description": "The Miniature Optical Steered Antenna for Intersatellite Communications (MOSAIC)By&nbsp;Shreeyam KackerThe Miniature Optical Steered Antenn\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/moving-liquids-with-no-moving-parts\/overview\/",
"title": "Moving Liquids With No Moving Parts",
"eyebrow": "Project",
"description": "Solid-state microfrabricated devices are in development to replace contemporary heavy mechanical components for use in spacecraft propellan\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/scillation-oscillating-chemistry-in-zero-gravity-and-beyond\/overview\/",
"title": "\u00d8-scillation: oscillating chemistry in zero gravity and beyond",
"eyebrow": "Project",
"description": "How did life originate? Nobody knows. Life might not even be native to our Earth - it might have come from asteroids or the interstellar me\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/agrifuge\/overview\/",
"title": "AgriFuge",
"eyebrow": "Project",
"description": "By Somayajulu Dhulipala and Manwei ChanAs humanity explores deeper into space, long-duration missions will require horticulture activities \u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/harmony-in-precarity\/overview\/",
"title": "Harmony in Precarity",
"eyebrow": "Project",
"description": "By Po-Hao ChiHow could microgravity\/hypergravity shape our perceptual experience of listening with weightlessness? How can we seek to explo\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/algorithmic-zoning-dynamic-urban-planning\/overview\/",
"title": "Algorithmic zoning",
"eyebrow": "Project",
"description": "null",
"meta": "in City Science"
},
{
"href": "\/projects\/beautiful-me\/overview\/",
"title": "Beautiful Me",
"eyebrow": "Project",
"description": "Beautiful Me&nbsp;has been designed to address the problem of&nbsp;acid attacks&nbsp;in southeast Asian countries and parts of Europe. This\u2026",
"meta": ""
},
{
"href": "\/projects\/turingbox\/overview\/",
"title": "TuringBox: Democratizing the study of AI",
"eyebrow": "Project",
"description": "TuringBox is a platform&nbsp;that makes it easier for social and behavioral scientists to study Artificial Intelligence algorithms.&nbsp;It\u2026",
"meta": "in Scalable Cooperation \u00b7 Ethics #artificial intelligence #human-machine interaction #social science +1\u00a0more"
},
{
"href": "\/projects\/divisi-reasoning-over-semantic-relationships\/overview\/",
"title": "Divisi: Reasoning Over Semantic Relationships",
"eyebrow": "Project",
"description": "We have developed technology that enables easy analysis of semantic data, blended in various ways with common-sense world knowledge. The re\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/charmme\/overview\/",
"title": "CharmMe",
"eyebrow": "Project",
"description": "CharmMe is a mobile social discovery application that helps people meet each other during events. The application blends physical and digit\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/gi-mobile\/overview\/",
"title": "GI Mobile",
"eyebrow": "Project",
"description": "GI Mobile is a mobile companion to the Media Lab Glass Infrastructure system. It incorporates the MessageMe messaging system to deliver a s\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/second-language-learning-using-games-with-a-purpose\/overview\/",
"title": "Second-Language Learning Using Games with a Purpose",
"eyebrow": "Project",
"description": "An online language learning tool and game with a purpose (GWAP) designed to simultaneously gather annotated speech and text data, useful fo\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/messageme\/overview\/",
"title": "MessageMe",
"eyebrow": "Project",
"description": "MessageMe is a location-based messaging infrastructure. It consists of a messaging server that delivers messages to recipients as they ente\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/open-mind-common-sense\/overview\/",
"title": "Open Mind Common Sense",
"eyebrow": "Project",
"description": "The biggest problem facing artificial intelligence today is how to teach computers enough about the everyday world so that they can reason \u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/conceptnet\/overview\/",
"title": "ConceptNet",
"eyebrow": "Project",
"description": "Imparting common-sense knowledge to computers enables a new class of intelligent applications better equipped to make sense of the everyday\u2026",
"meta": ""
},
{
"href": "\/projects\/story-space\/overview\/",
"title": "Story Space",
"eyebrow": "Project",
"description": "Analogy Space, a previous project under the Digital Intuition group, developed a technique of plotting concepts in a many-dimensional seman\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/understanding-dialogue\/overview\/",
"title": "Understanding Dialogue",
"eyebrow": "Project",
"description": "In order to extend the Digital Intuition group's ability to understand human language, a module that fills in the gaps of current technolog\u2026",
"meta": "in Digital Intuition"
},
{
"href": "\/projects\/ai-and-inclusion\/overview\/",
"title": "AI and Inclusion",
"eyebrow": "Project",
"description": "Bringing together a diverse group of stakeholders, this pilot examines the intersection between AI and inclusion, and explores the ways in \u2026",
"meta": "in Ethics and Governance of Artificial Intelligence"
},
{
"href": "\/projects\/bayesdb\/overview\/",
"title": "BayesDB",
"eyebrow": "Project",
"description": "BayesDB is open-source AI software that lets any programmer answer data analysis questions in seconds or minutes with a level of rigor that\u2026",
"meta": "in Ethics and Governance of Artificial Intelligence #artificial intelligence #data #machine learning +1\u00a0more"
},
{
"href": "\/projects\/test-project-friday-pm\/overview\/",
"title": "AI and Global Governance",
"eyebrow": "Project",
"description": "Given the cross-border impact of AI and related technologies, what are appropriate and workable governance mechanisms that can operate at a\u2026",
"meta": "in Ethics and Governance of Artificial Intelligence #artificial intelligence #government #ethics"
},
{
"href": "\/projects\/civilservant\/overview\/",
"title": "CivilServant: User-led randomized trials online",
"eyebrow": "Project",
"description": "The CivilServant project supports online communities to run their own experiments on the effects of moderation practices on antisocial beha\u2026",
"meta": "in Civic Media \u00b7 Ethics and Governance of Artificial Intelligence #artificial intelligence #civic media #civic technology +3\u00a0more"
},
{
"href": "\/projects\/prediction-markets-leveraging-internal-knowledge-to-beat-industry-prediction-experts\/overview\/",
"title": "Accuracy-Risk Trade-Off Due to Social Learning in Crowd-Sourced Financial Predictions",
"eyebrow": "Project",
"description": "A critical question relevant to the increasing importance of crowd-sourced-based finance is how to optimize collective information processi\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/spaceTouch\/overview\/",
"title": "SpaceTouch",
"eyebrow": "Project",
"description": "An astronaut's ability to leverage the sense of touch is substantially reduced when wearing a protective, pressurized spacesuit. We imagine\u2026",
"meta": "in Responsive Environments #environment #sensors #space"
},
{
"href": "\/projects\/tidmarsh-living-observatory-portal\/overview\/",
"title": "Tidmarsh Living Observatory Portal",
"eyebrow": "Project",
"description": "The Tidmarsh Living Observatory Portal is a research project that focuses on the design and fabrication of a pavilion that will&nbsp;genera\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #design #human-computer interaction #architecture +10\u00a0more"
},
{
"href": "\/projects\/personalized-emotional-wellness-coach\/overview\/",
"title": "Robotic Positive Psychology Coach for College Students",
"eyebrow": "Project",
"description": "A significant number of college students suffer from mental health issues that impact their physical, social, and occupa\u2026",
"meta": "in Personal Robots #robotics #social robotics #wellbeing"
},
{
"href": "\/projects\/puzzle-box\/overview\/",
"title": "Puzzle Box",
"eyebrow": "Project",
"description": "A space architecture project for the Mechanical Artifact: Ultra Space course in partnership with the Center for Collaborative Arts and Medi\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/space-vase\/overview\/",
"title": "Space Vase",
"eyebrow": "Project",
"description": "A space architecture project for the Mechanical Artifact: Ultra Space course in partnership with the Center for Collaborative Arts and Medi\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/wearables-for-orientation-wearables-for-communication\/overview\/",
"title": "Wearables for Orientation, Wearables for Communication",
"eyebrow": "Project",
"description": "A space architecture project for the Mechanical Artifact: Ultra Space course in partnership with the Center for Collaborative Arts and Medi\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/cityscope-livingline-shanghai\/overview\/",
"title": "CityScope LivingLine Shanghai",
"eyebrow": "Project",
"description": "College of Design and Innovation of Tongji University, Shanghai, and the MIT Media Lab's City Science group are co-developing a version of \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/roboscope\/overview\/",
"title": "RoboScope",
"eyebrow": "Project",
"description": "RoboScope is a transformable,&nbsp;tangible-interface developed for the CityScope platform. This interface allows for on-demand, three-dime\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/mask-association\/overview\/",
"title": "Association between COVID-19 Outcomes and Mask Mandates, Adherence, and Attitudes",
"eyebrow": "Project",
"description": "We extend previous studies on the impact of masks on COVID-19 outcomes by investigating an unprecedented breadth and depth of health outcom\u2026",
"meta": "in Human Dynamics #public health #medicine #covid19"
},
{
"href": "\/projects\/hermits\/overview\/",
"title": "HERMITS: \u2018Mechanical Shells\u2019 for Robotic Tangible UIs",
"eyebrow": "Project",
"description": "By Ken Nakagaki, Joanne Leong,&nbsp;Jordan L Tappa,&nbsp;Joao Wilbert, and Hiroshi IshiiOverviewProject HERMITS explores a way to greatly a\u2026",
"meta": "in Tangible Media #robotics #human-computer interaction"
},
{
"href": "\/projects\/rfscg\/overview\/",
"title": "RF-SCG: Contactless heart recording",
"eyebrow": "Project",
"description": "RF-SCG is a new system that can capture seismocardiogram (SCG) recordings without requiring any contact with the human body.&nbsp;Such an u\u2026",
"meta": "in Signal Kinetics"
},
{
"href": "\/projects\/tangible-view-cube\/overview\/",
"title": "Tangible View Cube",
"eyebrow": "Project",
"description": "&nbsp;A Handheld Device for Realtime Spatial Movement, Remote Control and Perspectival Orientation between Physical objects and Digital 3-D\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/pandemic-pulse\/overview\/",
"title": "Pandemic Pulse",
"eyebrow": "Project",
"description": "An application that drains your computer's resources at the rate of COVID-19 infections and deaths in your state. It exhausts your CPU powe\u2026",
"meta": "#design #art #data visualization"
},
{
"href": "\/projects\/therms-up\/overview\/",
"title": "Therms-Up!: DIY Inflatables and Interactive Materials by Upcycling Wasted Thermoplastic Bags",
"eyebrow": "Project",
"description": "Therms-Up! is a DIY method of creating inflatables and prototyping interactive materials from wasted thermoplastic bags that easily found a\u2026",
"meta": "in Tangible Media #robotics #design #human-computer interaction +5\u00a0more"
},
{
"href": "\/projects\/child-driven-machine-guided-literacy-activity\/overview\/",
"title": "Child-Driven, Robot-Guided Literacy Activity",
"eyebrow": "Project",
"description": "&nbsp;",
"meta": "in Personal Robots #robotics #design #construction +5\u00a0more"
},
{
"href": "\/projects\/pal\/overview\/",
"title": "PAL: a wearable on-device deep learning platform for personalized, context-aware, and closed-loop real-time support",
"eyebrow": "Project",
"description": "OverviewPAL is a&nbsp;&nbsp;wearable platform for&nbsp;personalized, context-aware, and&nbsp;always-present user change.&nbsp; PAL has mult\u2026",
"meta": "#human-computer interaction #artificial intelligence #health +5\u00a0more"
},
{
"href": "\/projects\/orbiting\/overview\/",
"title": "ORBITING",
"eyebrow": "Project",
"description": "Orbiting is a cooperation between artist Thom Kubli and Prof. Hiroshi Ishii, featuring the Tangible Media group. It is a novel approach to \u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/aguahoja\/overview\/",
"title": "Aguahoja",
"eyebrow": "Project",
"description": "Programmable Water-Based Biocomposites for Digital Design and Fabrication across ScalesAguahoja is an exploration of nature\u2019s design space.\u2026",
"meta": "in Mediated Matter #design #architecture #art +7\u00a0more"
},
{
"href": "\/projects\/scaling-science\/overview\/",
"title": "Scaling Science: Using Data to Find \u201cHidden Gem\u201d Research",
"eyebrow": "Project",
"description": "The current system of scientific&nbsp;recognition and funding has significant bias towards work published in the top few percent of journal\u2026",
"meta": "in Molecular Machines #artificial intelligence #networks #machine learning"
},
{
"href": "\/projects\/hybrid-living-fibers\/overview\/",
"title": "Hybrid Living Fibers",
"eyebrow": "Project",
"description": "In concert with the Mediated Matter group's&nbsp;HLM additive manufacturing research, the emergent field of Hybrid Living Fibers (HLF) or \"\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/silk-pavilion-ii\/overview\/",
"title": "Silk Pavilion II",
"eyebrow": "Project",
"description": "What are radically sustainable methods for knitting, making and building in the age of the Anthropocene? How can humankind and members of o\u2026",
"meta": "in Mediated Matter #design #architecture #art +5\u00a0more"
},
{
"href": "\/projects\/hybrid-living-materials\/overview\/",
"title": "Hybrid Living Materials",
"eyebrow": "Project",
"description": "Hybrid Living Materials (HLMs) are formed by combining living and non-living materials such that the resulting composites take on the funct\u2026",
"meta": "#design #manufacturing #synthetic biology +1\u00a0more"
},
{
"href": "\/projects\/zg-stardust\/overview\/",
"title": "ZG Stardust",
"eyebrow": "Project",
"description": "How might zero gravity space affect silk spinning, and what benefits might such material properties provide for digital fabrication and add\u2026",
"meta": "in Mediated Matter \u00b7 Space Exploration Initiative #space #zero gravity"
},
{
"href": "\/projects\/maiden-flight\/overview\/",
"title": "Maiden Flight",
"eyebrow": "Project",
"description": "Maiden Flight is an autonomous biological laboratory environment designed for studying the impact of space flight on the sole reproductive \u2026",
"meta": "in Mediated Matter \u00b7 Space Exploration Initiative #robotics #design #agriculture +9\u00a0more"
},
{
"href": "\/projects\/fiberbots\/overview\/",
"title": "FIBERBOTS: Design of a multi-agent, fiber composite digital fabrication system",
"eyebrow": "Project",
"description": "FIBERBOTS is a digital fabrication platform fusing cooperative robotic manufacturing with abilities to generate highly sophisticated materi\u2026",
"meta": "in Mediated Matter #robotics #architecture #construction +2\u00a0more"
},
{
"href": "\/projects\/making-data-matter\/overview\/",
"title": "Making Data Matter: Voxel-printing for the digital fabrication of data across scales and domains",
"eyebrow": "Project",
"description": "We present a multimaterial voxel-printing method enabling the physical visualization of data sets commonly associated with scientific imagi\u2026",
"meta": "in Mediated Matter #design #manufacturing #3d printing"
},
{
"href": "\/projects\/water-based-additive-manufacturing\/overview\/",
"title": "Water-Based Additive Manufacturing",
"eyebrow": "Project",
"description": "This research presents water-based robotic fabrication as a design approach and enabling technology for additive manufacturing (AM) of biod\u2026",
"meta": "in Mediated Matter #architecture #synthetic biology #3d printing"
},
{
"href": "\/projects\/3d-printed-hemi-ellipsoidal-dome\/overview\/",
"title": "DCP: Digital Construction Environment",
"eyebrow": "Project",
"description": "The Digital Construction Environment is the first architectural-scale structure fabricated with the Digital Construction Platform (DCP). U\u2026",
"meta": "in Mediated Matter #architecture #construction #storytelling +2\u00a0more"
},
{
"href": "\/projects\/vespers\/overview\/",
"title": "Vespers II",
"eyebrow": "Project",
"description": "Novel technologies for additive manufacturing are enabling design and production at nature\u2019s scale. We can seamlessly vary the physical pro\u2026",
"meta": "in Mediated Matter #design #art #3d printing +3\u00a0more"
},
{
"href": "\/projects\/silk-pavilion\/overview\/",
"title": "Silk Pavilion",
"eyebrow": "Project",
"description": "The Silk Pavilion explores the relationship between digital and biological fabrication on product and architectural scales.The primary st\u2026",
"meta": "in Mediated Matter #design #architecture #art +5\u00a0more"
},
{
"href": "\/projects\/rottlace\/overview\/",
"title": "Rottlace",
"eyebrow": "Project",
"description": "Rottlace is a family of masks designed for Icelandic singer-songwriter Bj\u00f6rk. Inspired by Bj\u00f6rk\u2019s most recent album\u2014Vulnicura\u2014the Mediated \u2026",
"meta": "in Mediated Matter #design #art #manufacturing"
},
{
"href": "\/projects\/organic-primitives\/overview\/",
"title": "Organic Primitives",
"eyebrow": "Project",
"description": "A large portion of the chemical and biological processes underlying our everyday experience remains imperceptible to us. Be it the contents\u2026",
"meta": "in Mediated Matter #human-machine interaction #interfaces"
},
{
"href": "\/projects\/printing-multi-material-3d-microfluidics\/overview\/",
"title": "Printing Multi-Material 3D Microfluidics",
"eyebrow": "Project",
"description": "Computation and fabrication in biology occur in aqueous environments. Through on-chip mixing, analysis, and fabrication, microfluidic chips\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/living-mushtari\/overview\/",
"title": "Living Mushtari",
"eyebrow": "Project",
"description": "How can we design relationships between the most primitive and the most sophisticated life forms? Can we design wearables embedded with s\u2026",
"meta": "in Mediated Matter #design #architecture #art +3\u00a0more"
},
{
"href": "\/projects\/mobile-digital-construction-platform-mdcp\/overview\/",
"title": "Digital Construction Platform v.1",
"eyebrow": "Project",
"description": "The Digital Construction Platform (DCP) is an in-progress research project consisting of a compound robotic arm system. The system comprise\u2026",
"meta": "in Mediated Matter #robotics #architecture #construction"
},
{
"href": "\/projects\/beast\/overview\/",
"title": "Beast",
"eyebrow": "Project",
"description": "Beast is an organic-like entity created synthetically by the incorporation of physical parameters into digital form-generation protocols. A\u2026",
"meta": "in Mediated Matter #design #art #biology +2\u00a0more"
},
{
"href": "\/projects\/functionally-graded-filament-wound-carbon-fiber-prosthetic-sockets\/overview\/",
"title": "Functionally graded filament-wound carbon-fiber prosthetic sockets",
"eyebrow": "Project",
"description": "Prosthetic sockets belong to a family of orthoic devices designed for amputee rehabilitation and performance augmentation. Although such pr\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/bots-of-babel\/overview\/",
"title": "Bots of Babel",
"eyebrow": "Project",
"description": "The Biblical story of the Tower of Babel involved a deliberate plan hatched by mankind to construct a platform from which man could fight G\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/meta-mesh-computational-model-for-design-and-fabrication-of-biomimetic-scaled-body-armors\/overview\/",
"title": "Meta-Mesh: Computational model for design and fabrication of biomimetic scaled body armors",
"eyebrow": "Project",
"description": "A collaboration between Professor Christine Ortiz (project lead), Professor Mary C. Boyce, Katia Zolotovsky, and Swati Varshaney (MIT). Ope\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/fabricology-variable-property-3d-printing-as-a-case-for-sustainable-fabrication\/overview\/",
"title": "FABRICOLOGY: Variable-property 3D printing as a case for sustainable fabrication",
"eyebrow": "Project",
"description": "Rapid prototyping technologies speed product design by facilitating visualization and testing of prototypes. However, such machines are lim\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/printing-living-materials\/overview\/",
"title": "Printing Living Materials",
"eyebrow": "Project",
"description": "How can biological organisms be incorporated into product, fashion, and architectural design to enable the generation of multi-functional, \u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/3d-printing-of-functionally-graded-materials\/overview\/",
"title": "3D printing of functionally graded materials",
"eyebrow": "Project",
"description": "Functionally graded materials\u2014materials with spatially varying composition or microstructure\u2014are omnipresent in nature. From palm trees wit\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/carpal-skin\/overview\/",
"title": "Carpal Skin",
"eyebrow": "Project",
"description": "Carpal Skin is a prototype for a protective glove to protect against Carpal Tunnel Syndrome, a medical condition in which the median nerve \u2026",
"meta": ""
},
{
"href": "\/projects\/pcb-origami\/overview\/",
"title": "PCB Origami",
"eyebrow": "Project",
"description": "The PCB Origami project is an innovative concept for printing digital materials and creating 3D objects with Rigid-flex PCBs and pick-and-p\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/additive-manufacturing-in-glass-electrosintering-and-spark-gap-glass\/overview\/",
"title": "Additive Manufacturing in Glass: Electrosintering and spark gap glass",
"eyebrow": "Project",
"description": "Our initial experiments in spark electrosintering fabrication have demonstrated a capacity to solidify granular materials (35-88 micron sod\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/rapid-craft\/overview\/",
"title": "Rapid Craft",
"eyebrow": "Project",
"description": "The values endorsed by vernacular architecture have traditionally promoted designs constructed and informed by and for the environment, whi\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/monocoque\/overview\/",
"title": "Monocoque",
"eyebrow": "Project",
"description": "French for \"single shell,\" Monocoque stands for a construction technique that supports structural load using an object's external skin. Con\u2026",
"meta": "in Mediated Matter #design #art #biology +2\u00a0more"
},
{
"href": "\/projects\/spiderbot\/overview\/",
"title": "SpiderBot",
"eyebrow": "Project",
"description": "The SpiderBot is a suspended robotic gantry system that provides an easily deployable platform from which to print large structures. The bo\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/raycounting\/overview\/",
"title": "Raycounting",
"eyebrow": "Project",
"description": "Raycounting is a method for generating customized light-shading constructions by registering the intensity and orientation of light rays wi\u2026",
"meta": "in Mediated Matter #design #art #biology +2\u00a0more"
},
{
"href": "\/projects\/cnsilk-computer-numerically-controlled-silk-cocoon-construction\/overview\/",
"title": "CNSILK: Computer Numerically Controlled Silk Cocoon Construction",
"eyebrow": "Project",
"description": "CNSILK explores the design and fabrication potential of silk fibers\u2013inspired by silkworm cocoons\u2013for the construction of woven habitats. It\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/anthozoa\/overview\/",
"title": "Anthozoa",
"eyebrow": "Project",
"description": "A 3D-printed dress was debuted during Paris Fashion Week Spring 2013 as part of collaboration with fashion designer Iris Van Herpen for her\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/building-scale-3d-printing\/overview\/",
"title": "Building-Scale 3D Printing",
"eyebrow": "Project",
"description": "How can additive fabrication technologies be scaled to building-sized construction? We introduce a novel method of mobile swarm printing th\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/digitally-reconfigurable-surface\/overview\/",
"title": "Digitally Reconfigurable Surface",
"eyebrow": "Project",
"description": "The digitally reconfigurable surface is a pin matrix apparatus for directly creating rigid 3D surfaces from a computer-aided design (CAD) i\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/lichtenberg-3d-printing\/overview\/",
"title": "Lichtenberg 3D Printing",
"eyebrow": "Project",
"description": "Generating 3D Lichtenberg structures in sintered media (i.e. glass) using electricity offers a new approach to digital fabrication. By robo\u2026",
"meta": "in Mediated Matter"
},
{
"href": "\/projects\/parkinsai\/overview\/",
"title": "parkinsAI",
"eyebrow": "Project",
"description": "Appropriate and adaptive treatment plans are challenging in Parkinson\u2019s disease for several reasons.&nbsp; parkinsAI models drug response a\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #artificial intelligence #health +5\u00a0more"
},
{
"href": "\/projects\/sojourner-2020-an-international-art-payload-to-iss\/overview\/",
"title": "Sojourner 2020 | An international art payload to ISS",
"eyebrow": "Project",
"description": "Through the ages, artists, writers, and filmmakers have always been inspired by space. Artists\u2019 visionary depictions of space as an environ\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/ELI\/overview\/",
"title": "ELI: Electronic Life-detection Instrument",
"eyebrow": "Project",
"description": "Life on Mars, if it exists, could have been transferred between Earth and Mars due to meteorite impacts. The Search for Extra-Terrestrial G\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +12\u00a0more"
},
{
"href": "\/projects\/ultra-scalable-and-energy-efficient-nanoelectronics\/overview\/",
"title": "Ultra-scalable and energy-efficient nanoelectronics",
"eyebrow": "Project",
"description": "For more details and recent updates visit:&nbsp;&nbsp;https:\/\/web.mit.edu\/deblina-sarkar\/Electronics are ubiquitous in today\u2019s world, with \u2026",
"meta": "in Nano-Cybernetic Biotrek #synthetic biology #engineering #nanoscience"
},
{
"href": "\/projects\/keyhole-huertos-comunitarios-community-gardens-lomas-del-centinela\/overview\/",
"title": "Keyhole. Huertos Comunitarios - Community Gardens - Lomas del Centinela",
"eyebrow": "Project",
"description": "null",
"meta": "in City Science"
},
{
"href": "\/projects\/interplanetary-cookbook\/overview\/",
"title": "The Interplanetary Cookbook",
"eyebrow": "Project",
"description": "The Interplanetary Cookbook, developed by Maggie Coblentz, presents thought-provoking recipes and zero-g kitchenware for the future of life\u2026",
"meta": "in Space Exploration Initiative #design #virtual reality #food +5\u00a0more"
},
{
"href": "\/projects\/sei-at-ars-electronica\/overview\/",
"title": "Space Exploration Initiative at Ars Electronica",
"eyebrow": "Project",
"description": "Our collaboration with Ars Electronica Festival&nbsp;Ars Electronica is one of the world\u2019s most renowned festivals focusing on art, science\u2026",
"meta": "in Space Exploration Initiative"
},
{
"href": "\/projects\/fluifiber\/overview\/",
"title": "Fluifiber: Interweaving Dancing Bodies over Time and Space via Programmable Tensegrity",
"eyebrow": "Project",
"description": "Dimensions of human movement that are absent from the eye, such as pressures, muscular tensions, and external features,&nbsp; are represent\u2026",
"meta": "in Tangible Media #robotics #human-machine interaction"
},
{
"href": "\/projects\/living-distance\/overview\/",
"title": "The EBIFA robot (Everything Beautiful Is Far Away)",
"eyebrow": "Project",
"description": "EBIFA (Everything Beautiful Is Far Away) is&nbsp;a crystalline robotic device that carried a tooth to outer space.&nbsp;EBIFA's form and fu\u2026",
"meta": "in Space Exploration Initiative #robotics #architecture #art +6\u00a0more"
},
{
"href": "\/projects\/enlightened\/overview\/",
"title": "Enlightened: Broaden Your Views",
"eyebrow": "Project",
"description": "Media filter bubbles sacrifice shared reality amongst US citizens. We aim to burst these echo chambers by presenting short, automatically s\u2026",
"meta": "in Viral Communications #storytelling #computer science #natural language processing"
},
{
"href": "\/projects\/the-thinking-cap-2-0-any-universe-is-your-universe\/overview\/",
"title": "The Thinking Cap 2.0: Fostering growth mindset of children by means of electroencephalography and perceived magic",
"eyebrow": "Project",
"description": "In this work we suggest to harness the power of knowledge-seeking positive experiences, engagement, and curiosity that objects perceived as\u2026",
"meta": "in Fluid Interfaces #cognitive science"
},
{
"href": "\/projects\/space-freedoms\/overview\/",
"title": "Space Freedoms",
"eyebrow": "Project",
"description": "Sparking conversations through artwork&nbsp; and envisioning future values for a spacefaring&nbsp;society",
"meta": "in Space Exploration Initiative #government #politics #behavioral science"
},
{
"href": "\/projects\/huertos-comunitarios-keyhole-in-lomas-del-centinela\/overview\/",
"title": "Somos Centinelas - We are Sentinels",
"eyebrow": "Project",
"description": "Somos centinelas:&nbsp;hacia una educaci\u00f3n sin barreras de accesoWe are Sentinels:&nbsp;Towards an education without access barriersLa Univ\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/space-for-virtual-reality\/overview\/",
"title": "Space for Virtual Reality",
"eyebrow": "Project",
"description": "Studying group dynamics in space environments with virtual reality simulations to inform the design of future governance systems",
"meta": "in Space Exploration Initiative #government #politics #behavioral science"
},
{
"href": "\/projects\/brigada-forestal-femaf-femaf-s-forest-firefighters\/overview\/",
"title": "Brigada forestal FEMAF - FEMAF's Forest Firefighters",
"eyebrow": "Project",
"description": "Protegiendo el bosque del CentinelaPromover y brindar las herramientas necesarias en el comportamiento del fuego y en el manejo de incident\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/alterego\/overview\/",
"title": "AlterEgo",
"eyebrow": "Project",
"description": "AlterEgo&nbsp;is a&nbsp; non-invasive, wearable, peripheral neural interface that allows humans to converse in natural language with machin\u2026",
"meta": "in Fluid Interfaces #design #human-computer interaction #artificial intelligence +8\u00a0more"
},
{
"href": "\/projects\/conformable-facial-code-extrapolation-sensor\/overview\/",
"title": "conformable Facial Code Extrapolation Sensor (cFaCES)",
"eyebrow": "Project",
"description": "AbstractDevices that facilitate nonverbal communication typically require high computational loads or have rigid and bulky form factors&nbs\u2026",
"meta": "in Conformable Decoders #design #bioengineering #health +10\u00a0more"
},
{
"href": "\/projects\/a-tailored-electronic-textile-conformable-suit\/overview\/",
"title": "A tailored, electronic textile conformable suit for large-scale spatiotemporal physiological sensing in vivo",
"eyebrow": "Project",
"description": "The rapid advancement of electronic devices and fabrication technologies has further promoted the field of wearables and smart textiles. Ho\u2026",
"meta": "in Conformable Decoders #design #bioengineering #consumer electronics +13\u00a0more"
},
{
"href": "\/projects\/FabricKeyboard\/overview\/",
"title": "FabricKeyboard",
"eyebrow": "Project",
"description": "Multimodal textile sensate media as an expressive and deformable musical interfaceIn the area of intelligent textiles, we are exploring a m\u2026",
"meta": "in Responsive Environments #design #fashion #music +2\u00a0more"
},
{
"href": "\/projects\/rfgrasp\/overview\/",
"title": "RF-Grasp: Robotic Grasping of Hidden Objects",
"eyebrow": "Project",
"description": "&nbsp;Can robots find and grasp hidden objects?Robots are not capable of handling tasks as simple as restocking grocery store shelves as th\u2026",
"meta": "in Signal Kinetics #robotics #computer vision #artificial intelligence +4\u00a0more"
},
{
"href": "\/projects\/3d-printed-nasopharyngeal-np-swabs-by\/overview\/",
"title": "3D Printed Nasopharyngeal (NP) Swabs by OPT Industries, Inc. in response to the 2020 COVID-19 Crisis",
"eyebrow": "Project",
"description": "Dr. Jifei Ou, who received his PhD and graduated from the Tangible Media group&nbsp;in 2019, started a company called OPT Industries, Inc.,\u2026",
"meta": "in Tangible Media #manufacturing #3d printing #alumni +4\u00a0more"
},
{
"href": "\/projects\/controlling-covid-19-labor-structure-is-more-important-than-policy\/overview\/",
"title": "COVID-19 policy analysis: labour structure dictates lockdown mobility behaviour",
"eyebrow": "Project",
"description": "Countries and cities around the world have resorted to unprecedented mobility restrictions to combat COVID-19 transmission. Here we exploit\u2026",
"meta": "in Human Dynamics #data #developing countries #economy +1\u00a0more"
},
{
"href": "\/projects\/persian-domes-for-human-space-exploration-on-mars\/overview\/",
"title": "Persian Domes for Human Space Exploration on Mars",
"eyebrow": "Project",
"description": "The Lut Desert of Iran is one of the most similar regions to Mars. Close to that area, there are vernacular adobe architectures that are hu\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #design #architecture #construction +1\u00a0more"
},
{
"href": "\/projects\/shaping-engagement\/overview\/",
"title": "Engagement with Voice-User Interface Agents",
"eyebrow": "Project",
"description": "Voice-user interfaces (VUIs), such as Amazon Echo and&nbsp;Google Home, are increasingly becoming present in domestic&nbsp;environments. Us\u2026",
"meta": "in Personal Robots #robotics #design #human-computer interaction +5\u00a0more"
},
{
"href": "\/projects\/augmented-eternity\/overview\/",
"title": "Augmented Eternity and Swappable Identities",
"eyebrow": "Project",
"description": "Have you ever wondered what a friend&nbsp;would&nbsp;do if she was in your decision-making situation? Or thought about where a family membe\u2026",
"meta": "in Human Dynamics #artificial intelligence #data #social science +3\u00a0more"
},
{
"href": "\/projects\/distraction-online\/overview\/",
"title": "Distraction online - subtle accuracy prompts can reduce misinformation on social media",
"eyebrow": "Project",
"description": "In recent years, there has been a great deal of concern about the proliferation of false&nbsp;and misleading news on social media . Academi\u2026",
"meta": "in Human Dynamics #social media #technology"
},
{
"href": "\/projects\/material-functionalization\/overview\/",
"title": "Material Functionalization",
"eyebrow": "Project",
"description": "When materials sciences meet HCI and e-textiles, for custom sensors and actuatorsIn this project we explore the process of polymerization t\u2026",
"meta": "in Responsive Environments \u00b7 Tangible Media #design #human-computer interaction #wearable computing +2\u00a0more"
},
{
"href": "\/projects\/the-covid-pandemic-through-the-lens-of-vulnerable-youth-in-nyc\/overview\/",
"title": "The COVID Pandemic through the Lens of Vulnerable Youth in NYC",
"eyebrow": "Project",
"description": "This project aims to explore how the Covid-19 pandemic might have further increased social inequalities by impacting those who were \u2026",
"meta": "in City Science #covid19"
},
{
"href": "\/projects\/breathing-planet-transformable-structure\/overview\/",
"title": "Breathing Planet",
"eyebrow": "Project",
"description": "Breathing Planet is an actuated expandable object that uses an iris structure as the underlying mechanism. It has a light source in the cen\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/andorra-dynamic-urban-planning\/overview\/",
"title": "Andorra | Dynamic Urban Planning",
"eyebrow": "Project",
"description": "View the main City Science Andorra project profile.Research in dynamic tools, mix users (citizens, workers) amenities, services, and land u\u2026",
"meta": "in City Science #computer vision #augmented reality #data +4\u00a0more"
},
{
"href": "\/projects\/tech-tutors-spring-2021\/overview\/",
"title": "Tech Tutors - Spring 2021",
"eyebrow": "Project",
"description": "MIT students on a mission to tackle the education crisis created by Covid-19The US school system is struggling to support all of its studen\u2026",
"meta": "in Digital Learning + Collaboration Studio #covid19"
},
{
"href": "\/projects\/cyber-joe\/overview\/",
"title": "Cyber Joe: AI Mentor for MIT Media Lab Students of 2050",
"eyebrow": "Project",
"description": "This video interview is a part of&nbsp;Media Lab X.0: Anthology of Tomorrows.In 2020, first-year PhD students at the MIT Media Lab were tas\u2026",
"meta": "#artificial intelligence #learning"
},
{
"href": "\/projects\/tasting-menu\/overview\/",
"title": "Tasting Menu in Zero G",
"eyebrow": "Project",
"description": "&nbsp;A multi-course tasting menu was flown on a zero gravity flight in August 2019.&nbsp;&nbsp;Five specially crafted dishes were consumed\u2026",
"meta": "in Space Exploration Initiative #design #virtual reality #food +3\u00a0more"
},
{
"href": "\/projects\/rfeats\/overview\/",
"title": "RF-EATS: Food and liquid sensing in practical environments using RFIDs",
"eyebrow": "Project",
"description": "RF-EATS&nbsp;is a new system that can verify the authenticity of food and liquids in closed containers without opening them or requiring an\u2026",
"meta": "in Signal Kinetics #environment #food #health +4\u00a0more"
},
{
"href": "\/projects\/fedml-a-research-library-and-benchmark-for-federated-machine-learning\/overview\/",
"title": "FedML: A Research Library and Benchmark for Federated Machine Learning",
"eyebrow": "Project",
"description": "In this work, we introduce FedML, an open research library and benchmark that facilitates the development of new 'federated learning algori\u2026",
"meta": "in Camera Culture #human-computer interaction #artificial intelligence #health +2\u00a0more"
},
{
"href": "\/projects\/let-s-see-a-game\/overview\/",
"title": "We saw a game!",
"eyebrow": "Project",
"description": "In \"We saw a game!\" we&nbsp;expose the different perspectives in&nbsp;TV&nbsp;sports and news in order to build broadcasting systems that u\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/newsmaker\/overview\/",
"title": "NewsMaker",
"eyebrow": "Project",
"description": "NewsMaker decouples news snippets from multiple news sources, and challenges you to re-create an objective news article using them. Once yo\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/tech-tutors\/overview\/",
"title": "Tech Tutors",
"eyebrow": "Project",
"description": "MIT students on a mission to tackle the education crisis created by Covid-19The US school system is struggling to support all of its studen\u2026",
"meta": "in Digital Learning + Collaboration Studio \u00b7 Program in Media Arts and Sciences #covid19"
},
{
"href": "\/projects\/umedic\/overview\/",
"title": "Self-Reconfigurable Micro-Implants",
"eyebrow": "Project",
"description": "New technology for next-generation wireless + batteryless micro-implantsThese wireless batteryless micro-chips can reprogram themselves ins\u2026",
"meta": "in Signal Kinetics #health #internet of things #medicine"
},
{
"href": "\/projects\/inonymize\/overview\/",
"title": "iNonymize: Empathetic Anonymity in Tele-Mental Health Using AI Generated Avatars",
"eyebrow": "Project",
"description": "This project was selected to represent MIT at the Microsoft Design Expo 2020 on \u2018Healthier Futures.\u2019&nbsp;iNonymizeA tele-mental health pla\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #artificial intelligence #communications +3\u00a0more"
},
{
"href": "\/projects\/restoring-a-sense-of-touch\/overview\/",
"title": "Restoring a Sense of Touch",
"eyebrow": "Project",
"description": "The sense of touch is so critical to daily functioning. Everything from balance and grip is modulated with an intricate ensemble of signals\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/targeted-dream-incubation\/overview\/",
"title": "Targeted Dream Incubation",
"eyebrow": "Project",
"description": "What Is TDI?Targeted Dream Incubation is a method for guiding dreams towards specific themes.&nbsp;It is a proposal both magnetic and unlik\u2026",
"meta": "in Fluid Interfaces #cognition #learning #wearable computing +5\u00a0more"
},
{
"href": "\/projects\/studying-up-in-ai\/overview\/",
"title": "Curriculum: Power + AI",
"eyebrow": "Project",
"description": "Check out the project site here. The pursuit of justice in AI requires more than just tweaking the numbers. It requires us to \u201cstudy up\u201d\u2014t\u2026",
"meta": "#artificial intelligence #civic technology"
},
{
"href": "\/projects\/datavrse\/overview\/",
"title": "DataVRse",
"eyebrow": "Project",
"description": "Visualizing the social network of twitter conversations, Presidential Elections 2016.&nbsp;Try it!",
"meta": ""
},
{
"href": "\/projects\/affective-memory-summarization\/overview\/",
"title": "Affective Memory Summarization",
"eyebrow": "Project",
"description": "Using affective signals to summarize 16 hours of body-cam video into 15 minutes of daily recap. See the video below.",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/large-scale-eeg-biometrics-through-self-supervised-learning\/overview\/",
"title": "Large-scale EEG-Based User-Identification Using Self-supervised Learning",
"eyebrow": "Project",
"description": "EEG-based biometrics (user identification) has been explored on small datasets of no more than 157 subjects. Here we show that the accuracy\u2026",
"meta": "in Fluid Interfaces #artificial intelligence #data visualization #electrical engineering +1\u00a0more"
},
{
"href": "\/projects\/insight-deep-neurofeedback\/overview\/",
"title": "inSight: Deep Neurofeedback",
"eyebrow": "Project",
"description": "inSight is a brain decoding system. It uses&nbsp; generative models (BigGAN and MusicVAE) to stimulate the brain with synthetic, but natura\u2026",
"meta": "in Fluid Interfaces #extended intelligence #health"
},
{
"href": "\/projects\/picture-blocks\/overview\/",
"title": "PictureBlocks",
"eyebrow": "Project",
"description": "null",
"meta": "in Social Machines"
},
{
"href": "\/projects\/a-two-degree-of-freedom-powered-ankle-foot-prosthesis\/overview\/",
"title": "A Two-Degree-of-Freedom Powered Ankle-Foot Prosthesis",
"eyebrow": "Project",
"description": "Powered ankle prostheses have been proven to improve the walking economy of transtibial amputees although these powered systems are usually\u2026",
"meta": "in Biomechatronics #robotics #mechanical engineering #mechatronics +1\u00a0more"
},
{
"href": "\/projects\/towards-a-perceptual-framework-for-synthetic-performance\/overview\/",
"title": "Towards a Perceptual Framework for Synthetic Performance",
"eyebrow": "Project",
"description": "null",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/keeper-project-1\/overview\/",
"title": "Keeper: Online conversation support scaffolding modeled after ancient and modern social technologies",
"eyebrow": "Project",
"description": "Emergence, when an entity is observed to have properties its parts do not have on their own, is an awe inducing phenomenon seen within natu\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/frisson\/overview\/",
"title": "Frisson",
"eyebrow": "Project",
"description": "Interoceptive Technologies: Inducing emotions from the body upInspirationThere\u2019s a feeling that comes tingling down the spine in certain mo\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #cognition #wearable computing +1\u00a0more"
},
{
"href": "\/projects\/flexible-electrodes\/overview\/",
"title": "Flexible dry electrodes for EMG acquisition within prosthetic sockets",
"eyebrow": "Project",
"description": "Acquisition of surface electromyography (sEMG) from a person with an amputated lower extremity (LE) during prosthesis-assisted walking rema\u2026",
"meta": "in Biomechatronics #robotics #human-machine interaction #wearable computing +5\u00a0more"
},
{
"href": "\/projects\/closed-loop-olfactory-interfaces\/overview\/",
"title": "Essence Wearables: Biometric Olfactory Interfaces for Day and Night",
"eyebrow": "Project",
"description": "Human-computer interaction (HCI) has traditionally focused on designing and investigating interfaces that provide explicit visual, auditory\u2026",
"meta": "in Fluid Interfaces #design #virtual reality #human-computer interaction +18\u00a0more"
},
{
"href": "\/projects\/play-analytics\/overview\/",
"title": "Play Analytics",
"eyebrow": "Project",
"description": "Analyzing detailed data from SpeechBlocks&nbsp;to understand how kids engage with constructionist literacy learning technologies, with the \u2026",
"meta": "#design #kids #learning +1\u00a0more"
},
{
"href": "\/projects\/just-in-time-learning-and-micropresence-using-google-glass\/overview\/",
"title": "Just-in-time Learning and Micropresence Using Google Glass",
"eyebrow": "Project",
"description": "null",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/clover\/overview\/",
"title": "Clover",
"eyebrow": "Project",
"description": "About CloverClover aims to research, design, and deploy a new pro-social media network for tweens and early teens, that promotes positive i\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/maskproject\/overview\/",
"title": "MASKproject: Open standard respirator, N95 alternative face mask",
"eyebrow": "Project",
"description": "Designed for mass manufacture and rapid deployment, we are building an open hardware, reusable, sterilizable, modular, and filter-media agn\u2026",
"meta": "in Biomechatronics #manufacturing #public health #materials +1\u00a0more"
},
{
"href": "\/projects\/dementai\/overview\/",
"title": "dementAI",
"eyebrow": "Project",
"description": "&nbsp;dementAI is an open-source platform for modeling risk stratification of Alzheimer's dementia using spontaneous&nbsp;speech through a \u2026",
"meta": "#human-computer interaction #artificial intelligence #health +5\u00a0more"
},
{
"href": "\/projects\/seqclr-self-supervised-learning-of-features-for-time-series-data\/overview\/",
"title": "SeqCLR: Self-supervised learning of features for time-series data",
"eyebrow": "Project",
"description": "Interpreting human electroencephalogram (EEG) is a challenging task and requires years of medical training. We present a framework for lear\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #artificial intelligence #bioengineering +8\u00a0more"
},
{
"href": "\/projects\/dams-differentially-private-sketching-data-structures\/overview\/",
"title": "DAMS: Differentially Private Sketching Data Structures",
"eyebrow": "Project",
"description": "null",
"meta": "in Camera Culture #human-computer interaction #artificial intelligence #data +6\u00a0more"
},
{
"href": "\/projects\/unbreakout\/overview\/",
"title": "Unbreakout",
"eyebrow": "Project",
"description": "Unbreakout (beta) is a tool for participatory Zoom breakout rooms. Let your meeting attendees propose their own breakout discussion topics \u2026",
"meta": "in Digital Learning + Collaboration Studio #learning #open source"
},
{
"href": "\/projects\/wearable-sanitizer\/overview\/",
"title": "Wearable Sanitizer: Open-source, On-body Sanitizer",
"eyebrow": "Project",
"description": "Regular disinfection of hands and frequently touched surfaces is a critical factor in preventing the spread of infectious diseases and diso\u2026",
"meta": "in Fluid Interfaces \u00b7 Responsive Environments #human-computer interaction #consumer electronics #open source +3\u00a0more"
},
{
"href": "\/projects\/neuroimaging-to-investigate-changes-due-to-modified-amputation\/overview\/",
"title": "Brain plasticity following amputation",
"eyebrow": "Project",
"description": "The Biomechatronics group recently pioneered a new type of amputation surgery, the AMI amputation, that allows patients to use a bionic pro\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/modelling-migration\/overview\/",
"title": "Modeling Migration",
"eyebrow": "Project",
"description": "null",
"meta": "in Human Dynamics #social networks #data #developing countries"
},
{
"href": "\/projects\/voyage-viewer\/overview\/",
"title": "Voyage Viewer",
"eyebrow": "Project",
"description": "Voyage Viewer is an online, open source interactive tool especially designed to visualize and study human mobility and migration.",
"meta": "in Human Dynamics #social science #social change #data science"
},
{
"href": "\/projects\/on-face\/overview\/",
"title": "On-Face Olfactory Interfaces",
"eyebrow": "Project",
"description": "We envision&nbsp;that a close-to-nose interface could be used as a complementary or alternative wearable method to nasal cannulas or masks,\u2026",
"meta": "in Fluid Interfaces #design #human-computer interaction #consumer electronics +6\u00a0more"
},
{
"href": "\/projects\/jettsen\/overview\/",
"title": "JettSen",
"eyebrow": "Project",
"description": "Planning Through Deliberation and DataJettSen is&nbsp; a system architecture design for an open source mobile sensor fusion implementation \u2026",
"meta": "in City Science #artificial intelligence #sensors"
},
{
"href": "\/projects\/ml-learning-fellows-program\/overview\/",
"title": "ML Learning Fellows Program",
"eyebrow": "Project",
"description": "The ML Learning Initiative is built around&nbsp;a cohort of Learning Fellows&nbsp;from across the diverse research groups of the Media Lab.\u2026",
"meta": "in ML Learning \u00b7 Digital Learning + Collaboration Studio #learning"
},
{
"href": "\/projects\/open-leadership-camp\/overview\/",
"title": "Open Leadership Camp",
"eyebrow": "Project",
"description": "The Open Leadership Camp (OLC) is a new type of professional development program for senior leaders of nonprofit and public sector organiza\u2026",
"meta": "in ML Learning \u00b7 Digital Learning + Collaboration Studio #learning #open source #open access"
},
{
"href": "\/projects\/targeted-degradation-of-sars-cov-2-via-computationally-optimized-peptides\/overview\/",
"title": "Targeted intracellular degradation of SARS-CoV-2 via computationally optimized peptide fusions",
"eyebrow": "Project",
"description": "The COVID-19 pandemic, caused by the novel coronavirus SARS-CoV-2, has elicited a global health crisis of catastrophic proportions. With on\u2026",
"meta": "in Molecular Machines #biology #public health #engineering +1\u00a0more"
},
{
"href": "\/projects\/battery-free-underwater-gps\/overview\/",
"title": "Battery-Free Underwater GPS",
"eyebrow": "Project",
"description": "Can we build a battery-free underwater GPS?&nbsp;While underwater localization is a long-studied problem,&nbsp; we seek to bring it to batt\u2026",
"meta": "in Signal Kinetics #robotics #environment #health +8\u00a0more"
},
{
"href": "\/projects\/serosa-iii\/overview\/",
"title": "Serosa III",
"eyebrow": "Project",
"description": "Serosa III is a wearable electrode patch that records gastric activity. It reduces the size of the interface and incorporates high-resoluti\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/wosna-workout-sensor-node-assistant\/overview\/",
"title": "WOSNA - WorkOut Sensor Node Assistant",
"eyebrow": "Project",
"description": "We are presenting the WorkOut Sensor Node Assistant (WOSNA), a body sensor net composed of many tiny sensor nodes that can suck on the skin\u2026",
"meta": "in Responsive Environments #design #health #sensors"
},
{
"href": "\/projects\/non-full-length-g-protein-coupled-receptors-an-unexpected-discovery-may-lead-to-design-new-molecular-devices\/overview\/",
"title": "Non-full-length G protein-coupled receptors: An unexpected discovery may lead to design new molecular devices",
"eyebrow": "Project",
"description": "It was believed that functionalities of G protein-coupled receptors (GPCRs) require full-length sequences which are negated by residue dele\u2026",
"meta": "in Molecular Machines #bioengineering #health #wellbeing +2\u00a0more"
},
{
"href": "\/projects\/deep-reality\/overview\/",
"title": "Deep Reality: An underwater VR experience to promote relaxation by unconscious HR, EDA, and brain activity biofeedback",
"eyebrow": "Project",
"description": "We present an interactive virtual reality (VR) experience&nbsp;that uses biometric information for reflection and relaxation.&nbsp;We monit\u2026",
"meta": "in Fluid Interfaces #virtual reality #human-computer interaction #augmented reality"
},
{
"href": "\/projects\/lightcloud\/overview\/",
"title": "LightCloud: Future of Dynamic Lighting in the Shared Space",
"eyebrow": "Project",
"description": "Lighting conditions in an indoor environment have been shown to affect our cognition and behaviors in a variety of ways. On average, we spe\u2026",
"meta": "in Responsive Environments #design #environment #sensors"
},
{
"href": "\/projects\/oceans\/overview\/",
"title": "Battery-Free Subsea Internet-of-Things",
"eyebrow": "Project",
"description": "We present Piezo-Acoustic Backscatter (PAB), the first technology that enables backscatter networking in underwater environments. PAB relie\u2026",
"meta": "in Signal Kinetics #communications #data #energy +9\u00a0more"
},
{
"href": "\/projects\/loa\/overview\/",
"title": "Lunar Open Architecture",
"eyebrow": "Project",
"description": "Building an open, shared, and collaborative future of lunar exploration.Explore the Lunar Open Architecture (LOA) at&nbsp;loa.mit.edu.&nbsp\u2026",
"meta": "in Space Exploration Initiative #architecture #environment #health +9\u00a0more"
},
{
"href": "\/projects\/space-health\/overview\/",
"title": "Space Health",
"eyebrow": "Project",
"description": "The MIT Media Lab Space Exploration Initiative is pushing the boundaries of space exploration innovation across the Media Lab\u2019s many health\u2026",
"meta": "in Space Exploration Initiative #space"
},
{
"href": "\/projects\/earthrise-a-50-year-contemplation\/overview\/",
"title": "Earthrise | A 50 Year Contemplation",
"eyebrow": "Project",
"description": "In December of 1968, the first human voyage to the moon catapulted the population of Earth into a new era of space exploration and self-ref\u2026",
"meta": "in Space Enabled #space"
},
{
"href": "\/projects\/cubesat\/overview\/",
"title": "Climate CubeSat Co-Building Outreach Program (C3)",
"eyebrow": "Project",
"description": "Climate CubeSat Co-Building (C3)&nbsp;The&nbsp;Media Lab Space Exploration Initiative&nbsp;is driven by an effort to democratize the future\u2026",
"meta": "in ML Learning \u00b7 Space Exploration Initiative #space"
},
{
"href": "\/projects\/mlconnect\/overview\/",
"title": "MLConnect",
"eyebrow": "Project",
"description": "Playful and creative online courses for member companiesMLConnect is a collection&nbsp;of online learning programs designed exclusively for\u2026",
"meta": "in Digital Learning + Collaboration Studio"
},
{
"href": "\/projects\/mas-s90\/overview\/",
"title": "MAS.S90: Introduction to Media Arts and Sciences",
"eyebrow": "Project",
"description": "In collaboration with graduate students from across the Media Lab, the Digital Learning + Collaboration Studio has helped to develop MAS.S9\u2026",
"meta": "in Digital Learning + Collaboration Studio"
},
{
"href": "\/projects\/doze\/overview\/",
"title": "Doze: On-skin Scent Diffusion and Drug Delivery Patch",
"eyebrow": "Project",
"description": "Doze is an IoT enabled platform for personalized scent diffusion and on-skin drug delivery. Leveraging a hydrogel technology, the Doze syst\u2026",
"meta": "in Responsive Environments #human-computer interaction #bioengineering #consumer electronics +7\u00a0more"
},
{
"href": "\/projects\/abm-resilient-cities\/overview\/",
"title": "ABM Resilient Cities",
"eyebrow": "Project",
"description": "Agent Based Modeling for behaviours, building occupancy loads and risk infection at the University of Guadalajara.&nbsp;In collaboration wi\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/mod\/overview\/",
"title": "Theme | Mobility On-Demand",
"eyebrow": "Project",
"description": "Urban populations around the world are rapidly growing. To improve livability, urban residents must reduce dependency on fossil fuels and p\u2026",
"meta": "in City Science #robotics #design #artificial intelligence +11\u00a0more"
},
{
"href": "\/projects\/resilience-across-scales\/overview\/",
"title": "Resilience Across Scales",
"eyebrow": "Project",
"description": "Resilience Across Scales is a research theme that encompasses the work of a few Media Lab Principal Investigators and their research groups\u2026",
"meta": "in City Science #design #architecture #civic technology +1\u00a0more"
},
{
"href": "\/projects\/bike-swarm\/overview\/",
"title": "[bike] swarm",
"eyebrow": "Project",
"description": "As bikes navigate city streets after dark, they are often equipped with lights. The lights make the bikes visible to cars or other bikers, \u2026",
"meta": "in City Science #design #human-computer interaction #architecture +16\u00a0more"
},
{
"href": "\/projects\/ambienbeat\/overview\/",
"title": "ambienBeat: Mobile tactile biofeedback for subliminal heart rate rhythmic regulation",
"eyebrow": "Project",
"description": "We present a mobile heart rate regulator\u2014ambienBeat\u2014which provides closed-loop ambient biofeedback via subliminal tactile stimulus based on\u2026",
"meta": "in Tangible Media #design #health #wellbeing"
},
{
"href": "\/projects\/defextiles-ars-20\/overview\/",
"title": "DefeXtiles: 3D Printing Quasi-Textiles (ARS 2020)",
"eyebrow": "Project",
"description": "Renee Magritte's \u201cTreachery of Images\u201d highlighted the fallacy in which images and words are prescribed meaning. It is obvious that a paint\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/open-drawing-machine\/overview\/",
"title": "Open Drawing Machine",
"eyebrow": "Project",
"description": "Open Drawing Machine is a low-cost open source drawing machine for controlling drawing instruments with motors and code, and it is oriented\u2026",
"meta": "in Future Sketches #robotics #art"
},
{
"href": "\/projects\/hybrid-sculptures\/overview\/",
"title": "Hybrid Sculptures",
"eyebrow": "Project",
"description": "null",
"meta": "in Future Sketches #robotics #design #art +1\u00a0more"
},
{
"href": "\/projects\/pool-detective\/overview\/",
"title": "Pool Detective",
"eyebrow": "Project",
"description": "Ever since the introduction of the first mining pool for Bitcoin in November 2010, mining pools have been used by miners to reduce the vari\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/viral-vote-1\/overview\/",
"title": "Viral Vote",
"eyebrow": "Project",
"description": "Climate change and the domino effect it creates will require coordination at scales we haven\u2019t seen and new forms of organization to addres\u2026",
"meta": "in Viral Communications #human-computer interaction #civic technology #consumer electronics +4\u00a0more"
},
{
"href": "\/projects\/vote-purple-20\/overview\/",
"title": "Vote Purple '20",
"eyebrow": "Project",
"description": "With Vote Purple '20, we are continuing our work of presenting a cognitive middle ground in media consumption - with a targeted focus on th\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/ultra-wideband-underwater-backscatter-via-piezoelectric-metamaterials\/overview\/",
"title": "Scalable and Ultra-Low Power Ocean IoT",
"eyebrow": "Project",
"description": "We present the design, implementation, and evaluation of \ud835\udc482\ud835\udc35, a technology that enables scalable ad ultra-low power ocean IoT.&nbsp; At the\u2026",
"meta": "in Signal Kinetics #communications #data #energy +6\u00a0more"
},
{
"href": "\/projects\/viral-political-action\/overview\/",
"title": "Theme | Civic Understanding and Participation",
"eyebrow": "Project",
"description": "A functioning society is predicated on an informed and active populace. Our work on broadcast news media analyzes how its unspoken cues inc\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/central-banks-and-digital-currency\/overview\/",
"title": "Central Bank Digital Currency (CBDC)",
"eyebrow": "Project",
"description": "Since the Bank of England first raised the concept of a central bank digital currency (CBDC) in its 2015 research agenda, the subject has g\u2026",
"meta": "in Digital Currency Initiative (DCI) #banking and finance #economy #blockchain"
},
{
"href": "\/projects\/technology-design-and-assessment-for-coastal-water-ecosystem-management-a-case-study-of-benin\/overview\/",
"title": "Low-cost invasive species management in coastal ecosystems: A case study in Benin",
"eyebrow": "Project",
"description": "All over Africa, experts use satellite Earth Observation (EO) data for applications such as monitoring crop health or assessing the risk of\u2026",
"meta": "in Space Enabled #data #environment #technology +1\u00a0more"
},
{
"href": "\/projects\/qr-sites\/overview\/",
"title": "QR Sites",
"eyebrow": "Project",
"description": "QR Websites serves websites without the need for an Internet connection. The approach uses a minified site, encoded as a Data URI on a QR c\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/civiclink\/overview\/",
"title": "CivicLink 2.0",
"eyebrow": "Project",
"description": "Major political campaigns and nonprofit organizations use bespoke systems to organize, inform, and solicit members. These top-down systems \u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/pab-qam-higher-order-modulation-for-underwater-backscatter\/overview\/",
"title": "PAB-QAM: Higher-Order Modulation for Underwater Backscatter",
"eyebrow": "Project",
"description": "PAB-QAM&nbsp; is a new system that achieves higher-order modulation with the current PAB sensor design. PAB relies on the piezoelectric eff\u2026",
"meta": "in Signal Kinetics"
},
{
"href": "\/projects\/medrec\/overview\/",
"title": "MedRec",
"eyebrow": "Project",
"description": "Increasingly in the US, people have to take responsibility for their health information.&nbsp; Simultaneously, medical providers must make \u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/are-you-still-here\/overview\/",
"title": "Are you still here?",
"eyebrow": "Project",
"description": "An open source digital instrument to check if institutions still exist, and alert when they don't exist anymore.The instrument periodically\u2026",
"meta": "in Future Sketches #art #internet of things"
},
{
"href": "\/projects\/heliozzz\/overview\/",
"title": "HelioZZZ: a smart (material) sleep mask",
"eyebrow": "Project",
"description": "HelioZZZ is an opacity changing eye mask that wakes you up with natural sunlight when you want it. The mask warms your eyes to help you fal\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/safepaths\/overview\/",
"title": "Safe Paths",
"eyebrow": "Project",
"description": "Papers from SafePaths:&nbsp;https:\/\/github.com\/PrivateKit\/PrivacyDocumentsSafe Paths&nbsp;is an MIT-led, free, open source technology that \u2026",
"meta": "in Camera Culture \u00b7 Sculpting Evolution #artificial intelligence #communications #data +7\u00a0more"
},
{
"href": "\/projects\/the-green-book-project\/overview\/",
"title": "The Green Book Project",
"eyebrow": "Project",
"description": "The Green Book Project is a work-in-progress series of publications and interactive installations that reimagine the Negro Motorist Green B\u2026",
"meta": "in Poetic Justice"
},
{
"href": "\/projects\/distributed-learning-and-collaborative-learning-1\/overview\/",
"title": "Split Learning: Distributed and collaborative learning",
"eyebrow": "Project",
"description": "Split Learning: Distributed deep learning without sharing raw data&nbsp;Project Page:&nbsp;https:\/\/splitlearning.github.io\/Abstract:&nbsp;C\u2026",
"meta": "in Camera Culture #data #privacy #machine learning +4\u00a0more"
},
{
"href": "\/projects\/Splintering\/overview\/",
"title": "Splintering with distributions: A stochastic decoy scheme for private computation",
"eyebrow": "Project",
"description": "We present a stochastic scheme for splitting the client data into privatized shares that are transmitted to the server in such settings. Th\u2026",
"meta": "in Camera Culture #artificial intelligence #privacy #security +1\u00a0more"
},
{
"href": "\/projects\/miniaturized-neural-system-for-chronic-local-intracerebral-drug-delivery\/overview\/",
"title": "Miniaturized Neural System for Chronic, Local Intracerebral Drug Delivery (MiNDS)",
"eyebrow": "Project",
"description": "Recent advances in medications for neurodegenerative disorders are expanding opportunities for improving the debilitating symptoms suffered\u2026",
"meta": "in Conformable Decoders #design #bioengineering #health +8\u00a0more"
},
{
"href": "\/projects\/lead-zirconate-titanate-gastrointestinal-sensor-pzt-gi-s\/overview\/",
"title": "Flexible piezoelectric devices for gastrointestinal motility sensing",
"eyebrow": "Project",
"description": "Improvements in ingestible electronics with the capacity to sense physiological and pathophysiological states have transformed the standard\u2026",
"meta": "in Conformable Decoders #bioengineering #health #sensors"
},
{
"href": "\/projects\/skipnorm\/overview\/",
"title": "SkipNorm",
"eyebrow": "Project",
"description": "Skip Norm is a new and flexible building block for Deep Learning that serves as a skip connection and normalization block simultaneously. I\u2026",
"meta": "in Fluid Interfaces #artificial intelligence #cognition"
},
{
"href": "\/projects\/leveraging-artificial-intelligence-for-the-assessment-of-severity-of-depressive-symptoms\/overview\/",
"title": "Leveraging artificial intelligence for the assessment of severity of depressive symptoms",
"eyebrow": "Project",
"description": "null",
"meta": "in Affective Computing #wearable computing #affective computing"
},
{
"href": "\/projects\/bettery\/overview\/",
"title": "Bettery",
"eyebrow": "Project",
"description": "A wind-up energy prototype that utilizes an ergonomic, resonant mechanism to efficiently harvest human power. In the developed world, the B\u2026",
"meta": "in Personal Fabrication \u00b7 Physics and Media \u00b7 Molecular Machines"
},
{
"href": "\/projects\/decentralized-systems\/overview\/",
"title": "Theme | Decentralized Systems",
"eyebrow": "Project",
"description": "Here we include a suite of projects that migrate information to personal devices and systems instead of centralizes silos. In part this tak\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/how-mit-learns\/overview\/",
"title": "How MIT Learns",
"eyebrow": "Project",
"description": "Judging by the work of its alumni and faculty, MIT is an amazing place for learning. When I first arrived on campus, I wanted to better und\u2026",
"meta": "in Digital Learning + Collaboration Studio #learning"
},
{
"href": "\/projects\/media-lab-digital-certificates\/overview\/",
"title": "Digital Academic Credentials",
"eyebrow": "Project",
"description": "Building on earlier work done at the Media Lab, MIT has formed the Digital Credentials Consortium an international network of universities \u2026",
"meta": "in ML Learning \u00b7 Digital Learning + Collaboration Studio #cryptocurrency #open source"
},
{
"href": "\/projects\/pigmented-lumens\/overview\/",
"title": "Pigments and Lumens",
"eyebrow": "Project",
"description": "This pedagogy of experiments seeks to accurately model and manufacture a new form of lighting fixtures and framework around architectural l\u2026",
"meta": ""
},
{
"href": "\/projects\/cosmetics-empowered-identities\/overview\/",
"title": "Gender Affirming Makeup",
"eyebrow": "Project",
"description": "~~~This project is on indefinite hold due to COVID-19~~~What if we could leverage technology and modern cosmetics for good? To empower peop\u2026",
"meta": "in Object-Based Media \u00b7 Future Sketches"
},
{
"href": "\/projects\/investigating-the-iron-march-forums-with-computational-tools-far-right-forum-network-and-lda-analysis\/overview\/",
"title": "Investigating the Iron March forums with computational tools: Far-Right Forum Network and LDA analysis",
"eyebrow": "Project",
"description": "We take a computational lens to the analysis of a far-right online forum, using network analysis and natural language processing to underst\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/gigbox\/overview\/",
"title": "Gigbox: a research and development toolkit centering workers in the gig economy",
"eyebrow": "Project",
"description": "Delivery workers, ridehail drivers, and other gig workers are increasingly controlled through algorithmic decision-making, fueled by data a\u2026",
"meta": "in Human Dynamics #human-computer interaction #data #economy"
},
{
"href": "\/projects\/dyadic-speech-based-affect-recognition\/overview\/",
"title": "Dyadic Speech-based Affect Recognition",
"eyebrow": "Project",
"description": "Dyadic Speech-based Affect Recognition using DAMI-P2C Parent-child Multimodal Interaction Dataset",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/corporate-surveillance-amazon-ring\/overview\/",
"title": "Corporate surveillance of the commons + Amazon Ring",
"eyebrow": "Project",
"description": "As of August 2020, Ring has active partnerships with over 1400 law enforcement agencies across the US. These partnerships allow law enforce\u2026",
"meta": "in Human Dynamics #networks #privacy #security +2\u00a0more"
},
{
"href": "\/projects\/voter-education-through\/overview\/",
"title": "Voter Education through Network Analytics",
"eyebrow": "Project",
"description": "In \u201cnormal\u201d times, the process of voting can be confusing enough for many Americans -- from whether and where they\u2019re registered, to absent\u2026",
"meta": "in Social Machines #social networks #civic technology #networks +1\u00a0more"
},
{
"href": "\/projects\/floral-cosmonauts\/overview\/",
"title": "Floral Cosmonauts: Self-assembling silver dendrite networks in microgravity",
"eyebrow": "Project",
"description": "Biological neuronal networks are highly complex and interconnected with superior information processing capabilities. Such networks have pr\u2026",
"meta": "in Space Exploration Initiative #design #manufacturing #space +3\u00a0more"
},
{
"href": "\/projects\/prior-theses\/overview\/",
"title": "Prior MS Theses",
"eyebrow": "Project",
"description": "Here is a sampling of MS theses.It is a good idea to have models on which to base your thesis. All theses are measured both by thoroughness\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/antiracism-and-technology-design-research-seminar-series\/overview\/",
"title": "Antiracism & Technology Design Research Seminar Series",
"eyebrow": "Project",
"description": "The Antiracism &amp; Technology Design Research Seminar Series hosts speakers from around the world who center issues of race, intersection\u2026",
"meta": "in Space Enabled"
},
{
"href": "\/projects\/storytelling-companion\/overview\/",
"title": "Storytelling Companion",
"eyebrow": "Project",
"description": "Children\u2019s oral language skills in preschool can predict their academic success later in life. Helping children improve their language and \u2026",
"meta": "in Personal Robots #robotics #kids #learning +4\u00a0more"
},
{
"href": "\/projects\/orbit-olfactory-response-baseline-identification-test\/overview\/",
"title": "ORBIT (Olfactory Response Baseline Identification Test)",
"eyebrow": "Project",
"description": "I am currently developing a new approach in conducting sensory examinations via the Olfactory Response Baseline Identification Test (O.R.B.\u2026",
"meta": "in Opera of the Future #interfaces #engineering #medicine +1\u00a0more"
},
{
"href": "\/projects\/optogenetics-and-synthetic-biology-tools\/overview\/",
"title": "Optogenetics: Molecules enabling neural control by light",
"eyebrow": "Project",
"description": "We have pioneered the development of fully genetically encoded reagents that, when targeted to specific cells, enable their physiology to b\u2026",
"meta": "in Synthetic Neurobiology #bioengineering #health #neurobiology +1\u00a0more"
},
{
"href": "\/projects\/tools-for-recording-high-speed-brain-dynamics\/overview\/",
"title": "Tools for recording high-speed brain dynamics",
"eyebrow": "Project",
"description": "The brain is a three-dimensional, densely-wired circuit that computes via large sets of widely distributed neurons interacting at fast time\u2026",
"meta": "in Synthetic Neurobiology #robotics #bioengineering #health +5\u00a0more"
},
{
"href": "\/projects\/prototype-strategies-for-treating-brain-disorders\/overview\/",
"title": "Prototype strategies for treating brain disorders",
"eyebrow": "Project",
"description": "New technologies for recording neural activity, controlling neural activity, or building brain circuits, may be capable someday of serving \u2026",
"meta": "in Synthetic Neurobiology #bioengineering #health #neurobiology +2\u00a0more"
},
{
"href": "\/projects\/implosion-fabrication-1\/overview\/",
"title": "Implosion Fabrication",
"eyebrow": "Project",
"description": "Shrinking problems in 3D printing&nbsp;Although a range of materials can now be fabricated using additive manufacturing techniques, these u\u2026",
"meta": "in Synthetic Neurobiology #3d printing #technology"
},
{
"href": "\/projects\/tools-for-mapping-the-molecular-structure-of-the-brain\/overview\/",
"title": "Tools for mapping the molecular architecture and wiring of the brain",
"eyebrow": "Project",
"description": "Complex biological systems such as brain circuits are extended 3-D structures made out of nanoscale building blocks such as proteins, RNAs,\u2026",
"meta": "in Synthetic Neurobiology #art #artificial intelligence #bioengineering +13\u00a0more"
},
{
"href": "\/projects\/understanding-normal-and-pathological-brain-computations\/overview\/",
"title": "Understanding normal and pathological brain computations",
"eyebrow": "Project",
"description": "We are providing our tools to the community, and also using them within our lab, to analyze how specific brain mechanisms (molecular, cellu\u2026",
"meta": "in Synthetic Neurobiology #bioengineering #health #neurobiology"
},
{
"href": "\/projects\/tangible-telepresence\/overview\/",
"title": "Tangible Telepresence: Reinventing Distancing with Tele-Tangibles",
"eyebrow": "Project",
"description": "\"Telepresence'\" is raising a fundamental question about our existence. \"I can see you, I can hear you, but where are you?\"The Covid-19 pand\u2026",
"meta": ""
},
{
"href": "\/projects\/hermits-ars-electronica20\/overview\/",
"title": "HERMITS: Mechanical Shells for Robotic TUIs (Ars Electronica 2020)",
"eyebrow": "Project",
"description": "'Shells, often found on seashores, exemplifies the&nbsp;absence&nbsp;of existed lives. What if a presence dwells in to animate them?'Projec\u2026",
"meta": "#robotics #design"
},
{
"href": "\/projects\/bubble-talk\/overview\/",
"title": "Bubble Talk: Translating the presence of modern digital chat into fleeting bubbles",
"eyebrow": "Project",
"description": "In this project the ephemeral and intangible aspects of human communication are represented by a soap-bubble.&nbsp;The shapeless, intangibl\u2026",
"meta": "in Tangible Media #design #art #fabrication"
},
{
"href": "\/projects\/dancing-membrane\/overview\/",
"title": "reSpire: Self-awareness and Interpersonal Connectedness through Shape-changing Fabric Display",
"eyebrow": "Project",
"description": "We present an interactive shape-changing display\u2014Dancing Membrane of the reSpire-&nbsp; using the deformation of fabric and airflow control\u2026",
"meta": "in Tangible Media #art #interfaces #mechanical engineering +1\u00a0more"
},
{
"href": "\/projects\/jods\/overview\/",
"title": "The Journal of Design and Science",
"eyebrow": "Project",
"description": "The worlds of Design and Science are inextricably linked. Science is informed by Design. Design is a science. The interactions between the \u2026",
"meta": "in Director's Office"
},
{
"href": "\/projects\/unhangout\/overview\/",
"title": "Unhangout",
"eyebrow": "Project",
"description": "Unhangout is an open source platform for running large-scale, participant-driven events online.Each event has a landing page, which we call\u2026",
"meta": "in ML Learning \u00b7 Digital Learning + Collaboration Studio #learning #open source"
},
{
"href": "\/projects\/economic-complexity-and-income-inequality\/overview\/",
"title": "Inequality and the impact of industrial structures",
"eyebrow": "Project",
"description": "Decades ago development scholars argued that the productive structure of a country (i. e. the mix of industries operating in the country) c\u2026",
"meta": ""
},
{
"href": "\/projects\/industry-knowledge\/overview\/",
"title": "The role of industry, occupation, and location-specific knowledge in the survival of new firms",
"eyebrow": "Project",
"description": "How do regions acquire the knowledge they need to diversify their economic activities? How does the migration of workers among firms and in\u2026",
"meta": "in Collective Learning #data #economy"
},
{
"href": "\/projects\/the-laws-of-forgetting-ii\/overview\/",
"title": "The laws of forgetting II: How death and exogenous events shape our collective memory",
"eyebrow": "Project",
"description": "In order to understand how exogenous shocks, like death, impact memorability by remembering, we use a data-set of biographies from Wikipedi\u2026",
"meta": "in Collective Learning #data"
},
{
"href": "\/projects\/temporal-scales-in-human-collective-forgetting\/overview\/",
"title": "The universal decay of collective memory and attention",
"eyebrow": "Project",
"description": "Collective memory and attention are sustained by two channels: oral communication (communicative memory) and the physical recording of info\u2026",
"meta": "in Collective Learning #art #communications #entertainment +5\u00a0more"
},
{
"href": "\/projects\/trains-of-thought-railroad-access-and-knowledge-diffusion-in-sweden\/overview\/",
"title": "Railroad Access and Diffusion of Industries: Evidence from Sweden during the Second Industrial Revolution",
"eyebrow": "Project",
"description": "Industrial diversification is a path-dependent process that leverages knowledge, skills, and new technologies. Because such resources are d\u2026",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/medium-shapes-message\/overview\/",
"title": "How the medium shapes the message: Printing and the rise of the arts and sciences",
"eyebrow": "Project",
"description": "Communication technologies, from printing to social media, affect our historical records by changing the way ideas are spread and recorded.\u2026",
"meta": "in Collective Learning #social science #social change #history"
},
{
"href": "\/projects\/pantheon-new\/overview\/",
"title": "Pantheon",
"eyebrow": "Project",
"description": "What if we could look at the entire history of humanity at once?&nbsp;Pantheon aims to create a data-driven view of history by collecting, \u2026",
"meta": "in Collective Learning #art #communications #data +5\u00a0more"
},
{
"href": "\/projects\/vizml\/overview\/",
"title": "VizML: A Machine Learning Approach to Visualization Recommendation",
"eyebrow": "Project",
"description": "Visualization recommender systems aim to lower the barrier to exploring basic visualizations by automatically generating results for analys\u2026",
"meta": "in Collective Learning #human-computer interaction #machine learning #data visualization"
},
{
"href": "\/projects\/pubpub\/overview\/",
"title": "PubPub",
"eyebrow": "Project",
"description": "PubPub reinvents publication to align with the way the web was designed: collaborative, evolving, and open. PubPub uses a graphical format \u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications \u00b7 Collective Learning #communications #networks"
},
{
"href": "\/projects\/viznet-towards-a-large-scale-visualization-learning-and-benchmarking-repository\/overview\/",
"title": "VizNet: Towards A Large-Scale Visualization Learning and Benchmarking Repository",
"eyebrow": "Project",
"description": "Researchers currently rely on ad hoc datasets to train automated visualization tools and evaluate the effectiveness of visualization design\u2026",
"meta": "in Collective Learning #human-computer interaction #data visualization"
},
{
"href": "\/projects\/participie-new\/overview\/",
"title": "Participie",
"eyebrow": "Project",
"description": "Participie was a design experiment on direct participation for constrained choices (like budgets).",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/streetscore\/overview\/",
"title": "StreetScore",
"eyebrow": "Project",
"description": "StreetScore is a machine learning algorithm that predicts the perceived safety of a streetscape. StreetScore was trained using 2,920 images\u2026",
"meta": "in Camera Culture \u00b7 Collective Learning"
},
{
"href": "\/projects\/gifgif\/overview\/",
"title": "GIFGIF",
"eyebrow": "Project",
"description": "An animated GIF is a magical thing. It has the power to compactly convey emotion, empathy, and context in a subtle way that text or emotico\u2026",
"meta": "in Viral Communications \u00b7 Collective Learning"
},
{
"href": "\/projects\/opus\/overview\/",
"title": "Opus",
"eyebrow": "Project",
"description": "Opus is an online tool exploring the work and trajectory of scholars. Through a suite of interactive visualizations, Opus help users explor\u2026",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/dataviva-new\/overview\/",
"title": "DataViva",
"eyebrow": "Project",
"description": "DataViva made available data for the entire economy of Brazil, including exports and imports for each municipality and product, and occupat\u2026",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/dive\/overview\/",
"title": "DIVE",
"eyebrow": "Project",
"description": "DIVE is a web-based data exploration system that lets non-technical users create stories from their data without writing code.&nbsp;DIVE co\u2026",
"meta": "in Collective Learning #data #human-machine interaction #interfaces +1\u00a0more"
},
{
"href": "\/projects\/datausa\/overview\/",
"title": "DataUSA",
"eyebrow": "Project",
"description": "Visit DataUSADataUSA is the most comprehensive site visualizing public data for the United States. Through interactive profiles, DataUSA ma\u2026",
"meta": "in Collective Learning #design #data #data visualization"
},
{
"href": "\/projects\/immersion-new\/overview\/",
"title": "Immersion",
"eyebrow": "Project",
"description": "The current interface of emails is designed around time and messages, pushing people to focus on what is more recent rather than important.\u2026",
"meta": "in Collective Learning #data"
},
{
"href": "\/projects\/meet-me-in-the-middle-the-reunification-of-the-german-research-and-innovation-system\/overview\/",
"title": "Meet me in the middle: The reunification of the German research and innovation system",
"eyebrow": "Project",
"description": "In 1990 Germany began the reunification of two separate research systems. Yet, the institutional unification of these system does not neces\u2026",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/streetchange\/overview\/",
"title": "Streetchange",
"eyebrow": "Project",
"description": "Computer vision uncovers predictors of physical urban change",
"meta": "in Camera Culture \u00b7 Collective Learning #computer vision #civic technology #urban planning +1\u00a0more"
},
{
"href": "\/projects\/relatedness-knowledge-diffusion-and-the-evolution-of-bilateral-trade\/overview\/",
"title": "Relatedness, Knowledge Diffusion, and the Evolution of Bilateral Trade",
"eyebrow": "Project",
"description": "During the last few decades two important intellectual contributions have reshaped our understanding of international trade. On the one han\u2026",
"meta": ""
},
{
"href": "\/projects\/when-bullying-meets-video-game-theory\/overview\/",
"title": "When bullying meets (video) game theory: A novel framework to understand elementary school environments",
"eyebrow": "Project",
"description": "Social learning has shown that people are more likely to learn from those who are seen as prestigious, talented, or who share demographic a\u2026",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/strategic-diffusion\/overview\/",
"title": "What is the optimal way to diversify an economy?",
"eyebrow": "Project",
"description": "One of the eternal challenges of economic development is how to identify the economic activities that a country, city, or region should tar\u2026",
"meta": "in Collective Learning #data #economy #social science"
},
{
"href": "\/projects\/cabildoxlatam\/overview\/",
"title": "CabildoxLatAm",
"eyebrow": "Project",
"description": "CabildoxLatAm: A space for digital participation in Latin&nbsp;AmericaIn the face of the challenges that have emerged and been exacerbated&\u2026",
"meta": "in Civic Media #civic media #politics #civic action +1\u00a0more"
},
{
"href": "\/projects\/oec-new\/overview\/",
"title": "The Observatory of Economic Complexity (OEC)",
"eyebrow": "Project",
"description": "The Observatory of Economic Complexity (OEC) is the world's leading data visualization tool for international trade data. The OEC makes mor\u2026",
"meta": "in Collective Learning"
},
{
"href": "\/projects\/algorithmic-justice-league\/overview\/",
"title": "Algorithmic Justice League",
"eyebrow": "Project",
"description": "www.ajl.orgAn unseen force is rising\u2014helping to determine who is hired, granted a loan, or even how long someone spends in prison. This for\u2026",
"meta": "#computer vision #artificial intelligence #civic media +11\u00a0more"
},
{
"href": "\/projects\/job-postings-opportunity-zones\/overview\/",
"title": "What is the Impact of Opportunity Zones on Employment Outcomes?",
"eyebrow": "Project",
"description": "We study the effect of Opportunity Zones (OZs) on employment outcomes. We match zip codes with OZs to a control group of similar zip codes \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/living-bits\/overview\/",
"title": "Living Bits",
"eyebrow": "Project",
"description": "Living Bits : Opportunities and Challenges for Integrating Living Microorganisms in Human-Computer InteractionThere are trillions of living\u2026",
"meta": "in Fluid Interfaces #design #human-computer interaction #bioengineering +6\u00a0more"
},
{
"href": "\/projects\/aac-survey\/overview\/",
"title": "User needs for augmentative communication interfaces",
"eyebrow": "Project",
"description": "We are working on communication interfaces for people with speech and language disorders, incorporating technologies like physiological sen\u2026",
"meta": "in Fluid Interfaces #design #human-computer interaction #health +1\u00a0more"
},
{
"href": "\/projects\/beatthevirus\/overview\/",
"title": "#BeatTheVirus",
"eyebrow": "Project",
"description": "Grounded in science,&nbsp;#BeatTheVirus&nbsp;aims to raise awareness of the behaviors we all must adopt to collectively defeat COVID-19.Thi\u2026",
"meta": "in Social Machines \u00b7 Director's Office #social media #covid19"
},
{
"href": "\/projects\/collaborhythm\/overview\/",
"title": "CollaboRhythm",
"eyebrow": "Project",
"description": "CollaboRhythm is a platform that enables patients to be at the center of every interaction in their healthcare with the goal of empowering \u2026",
"meta": "in New Media Medicine"
},
{
"href": "\/projects\/collective-discovery\/overview\/",
"title": "Collective Discovery",
"eyebrow": "Project",
"description": "The choices we make about diet, environment, medications, or alternative therapies constitute a massive collection of \"everyday experiments\u2026",
"meta": ""
},
{
"href": "\/projects\/im-listening\/overview\/",
"title": "I'm Listening",
"eyebrow": "Project",
"description": "Increasing understanding of how to categorize patient symptoms for efficient diagnosis has led to structured patient interviews and diagnos\u2026",
"meta": "in New Media Medicine"
},
{
"href": "\/projects\/forgetaboutit\/overview\/",
"title": "ForgetAboutIT?",
"eyebrow": "Project",
"description": "ForgetAboutIT has become an integrated part of CollaboRhythm. Currently only 50 percent of patients with chronic diseases take their medica\u2026",
"meta": "in New Media Medicine"
},
{
"href": "\/projects\/oovit-pt\/overview\/",
"title": "Oovit PT",
"eyebrow": "Project",
"description": "Patient adherence to physical therapy regimens is poor, and there is a lack of quantitative data about patient performance, particularly at\u2026",
"meta": "in New Media Medicine"
},
{
"href": "\/projects\/ki-osk\/overview\/",
"title": "KI\/OSK: Practice Study of Load Sensitive Board for Farmers Market",
"eyebrow": "Project",
"description": "In recent years, the retail industry has become increasingly interested in Information and communications technology (ICT) systems for enri\u2026",
"meta": "in Tangible Media #human-computer interaction"
},
{
"href": "\/projects\/reversed-urbanism\/overview\/",
"title": "Reversed Urbanism",
"eyebrow": "Project",
"description": "Predicting Urban Performance through Behavioral Patterns in Temporal Telecom DataThis study explores a novel method to analyze diverse beha\u2026",
"meta": "in City Science #data #networks #urban planning +1\u00a0more"
},
{
"href": "\/projects\/machine-behavior\/overview\/",
"title": "Machine Behavior",
"eyebrow": "Project",
"description": "Machines powered by artificial intelligence (AI) increasingly mediate our social, cultural, economic, and \u2026",
"meta": "in Scalable Cooperation \u00b7 Personal Robots \u00b7 Human Dynamics #artificial intelligence #human-machine interaction #learning +4\u00a0more"
},
{
"href": "\/projects\/ai_spirits\/overview\/",
"title": "AI Spirits",
"eyebrow": "Project",
"description": "Media manipulation technologies have the power to vanish people from photographs. Yet their souls live on in the deep memory of these algor\u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/future-of-work-ai-automation-labor\/overview\/",
"title": "AI, Automation, Labor, and Cities: How to map the future of work",
"eyebrow": "Project",
"description": "Should workers worry about automation and AI?Many workers, policy makers, and researchers are asking themselves exactly this question. But \u2026",
"meta": "in Scalable Cooperation #artificial intelligence #data #economy +3\u00a0more"
},
{
"href": "\/projects\/deep-angel-ai\/overview\/",
"title": "Deep Angel: The AI behind the aesthetics of absence",
"eyebrow": "Project",
"description": "Deep Angel&nbsp;is an artificial intelligence that erases objects from photographs. The algorithm is hosted on http:\/\/deepangel.media.mit.e\u2026",
"meta": "in Scalable Cooperation #artificial intelligence #social media #imaging"
},
{
"href": "\/projects\/a-voting-based-system-for-ethical-decision-making\/overview\/",
"title": "A voting-based system for ethical decision making",
"eyebrow": "Project",
"description": "The problem of ethical decision making presents&nbsp; a grand challenge for modern AI research. Arguably the main obstacle to automating et\u2026",
"meta": "in Scalable Cooperation #artificial intelligence #machine learning #ethics"
},
{
"href": "\/projects\/cognitive-limits-of-social-networks\/overview\/",
"title": "Cognitive Limits of Social Networks",
"eyebrow": "Project",
"description": "There is a wide cultural belief in the power of the Internet and social media as enablers of collective intelligence. They help us spread i\u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/wunderbolt\/overview\/",
"title": "Wunderbolt: Make Stuff. Make Friends.",
"eyebrow": "Project",
"description": "Wunderbolt is a new take on summer camp developed by the Lab for Social Machines in the MIT Media Lab that remotely connects children ages \u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/crowdsourcing-under-attack\/overview\/",
"title": "DARPA Shredder Challenge: Crowdsourcing under attack",
"eyebrow": "Project",
"description": "The Internet has unleashed the capacity for planetary-scale collective problem solving (also known as crowdsourcing). However, the very ope\u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/promoting-cooperation-through-peer-pressure\/overview\/",
"title": "Promoting cooperation through peer pressure",
"eyebrow": "Project",
"description": "Cooperation in a large society of self-interested individuals is notoriously difficult to achieve when the externality of one individual's \u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/nightmare-machine\/overview\/",
"title": "Nightmare Machine",
"eyebrow": "Project",
"description": "For centuries, across geographies, religions, and cultures, people try to innovate ways of scaring each other. Creating a visceral emotion \u2026",
"meta": "#artificial intelligence #crowdsourcing #social media +2\u00a0more"
},
{
"href": "\/projects\/honest-crowds\/overview\/",
"title": "Honest Crowds",
"eyebrow": "Project",
"description": "The Honest Crowds project addresses shortcomings of traditional survey techniques in the modern information and big data age. Web survey pl\u2026",
"meta": "in Scalable Cooperation #government #social media #social science"
},
{
"href": "\/projects\/deepmoji\/overview\/",
"title": "DeepMoji",
"eyebrow": "Project",
"description": "Emotional content is an important part of language. There are many use cases now showing that natural language processing is becoming an in\u2026",
"meta": "in Scalable Cooperation #communications #data #social media +2\u00a0more"
},
{
"href": "\/projects\/opinion-aggregation\/overview\/",
"title": "Opinion Aggregation",
"eyebrow": "Project",
"description": "Opinion aggregation on social media uses various mechanisms, such as \"Likes\" or thumbs-up\/-down, which handle a single item at a time. In \u2026",
"meta": "in Scalable Cooperation #artificial intelligence #collective intelligence"
},
{
"href": "\/projects\/evolution-of-the-social-contract\/overview\/",
"title": "Evolution of the Social Contract",
"eyebrow": "Project",
"description": "Political constitutions describe the fundamental principles by which nation-states are governed, the political and legal state institutions\u2026",
"meta": "in Scalable Cooperation #politics #social science #collective intelligence"
},
{
"href": "\/projects\/identifying-the-human-impacts-of-climate-change\/overview\/",
"title": "Identifying the human impacts of climate change",
"eyebrow": "Project",
"description": "Climate change is going to alter the environments that we depend on in myriad ways. We're using data to identify and quantify these potenti\u2026",
"meta": "#environment #government #health +5\u00a0more"
},
{
"href": "\/projects\/global-cooperation\/overview\/",
"title": "Global Cooperation",
"eyebrow": "Project",
"description": "Measuring Cooperation at Scale",
"meta": "in Scalable Cooperation #networks #politics #social science +1\u00a0more"
},
{
"href": "\/projects\/norman\/overview\/",
"title": "Norman",
"eyebrow": "Project",
"description": "We present Norman, world's first psychopath AI. Norman was inspired by the fact that the data used to teach a machine learning algorithm ca\u2026",
"meta": "in Scalable Cooperation #artificial intelligence #social media #storytelling +1\u00a0more"
},
{
"href": "\/projects\/human-machine-cooperation\/overview\/",
"title": "Human-Machine Cooperation",
"eyebrow": "Project",
"description": "Since Alan Turing envisioned Artificial Intelligence (AI), a major driving force behind technical progress has been competition with human \u2026",
"meta": "in Scalable Cooperation #artificial intelligence #human-machine interaction"
},
{
"href": "\/projects\/moral-machine\/overview\/",
"title": "Moral Machine",
"eyebrow": "Project",
"description": "The Moral Machine is a platform for gathering a human perspective on moral decisions made by machine intelligence, such as self-driving car\u2026",
"meta": "in Scalable Cooperation #design #architecture #artificial intelligence +13\u00a0more"
},
{
"href": "\/projects\/governance-artificial-intelligence-social-media\/overview\/",
"title": "Society-in-the-Loop",
"eyebrow": "Project",
"description": "Recent rapid advances in Artificial Intelligence (AI) and Machine Learning have raised many questions about the regulatory and governance m\u2026",
"meta": "#artificial intelligence #government #ethics"
},
{
"href": "\/projects\/mygoodness\/overview\/",
"title": "MyGoodness",
"eyebrow": "Project",
"description": "There are over one million registered charities in the United States alone, and many more worldwide. How do you choose among them?&nbsp;MyG\u2026",
"meta": "#artificial intelligence #social media"
},
{
"href": "\/projects\/shelley\/overview\/",
"title": "Shelley: Human-AI Collaborated Horror Stories",
"eyebrow": "Project",
"description": "Project website:&nbsp;shelley.ai&nbsp;Human-AI collaborated stories:&nbsp;stories.shelley.ai&nbsp;Follow&nbsp;@shelley_ai to collaborate wi\u2026",
"meta": "in Scalable Cooperation #artificial intelligence #crowdsourcing #data +3\u00a0more"
},
{
"href": "\/projects\/the-science-of-ai-research\/overview\/",
"title": "The Science of AI Research",
"eyebrow": "Project",
"description": "We must proactively tackle the economic, social, and societal implications that accompany the widespread deployment of AI technology. In se\u2026",
"meta": "in Scalable Cooperation #human-computer interaction #artificial intelligence #computer science +3\u00a0more"
},
{
"href": "\/projects\/perceptions-of-automated-cars\/overview\/",
"title": "Perceptions of Automated Cars",
"eyebrow": "Project",
"description": "When an automated car harms someone, who is blamed by those who hear&nbsp;about it? &nbsp;In this project, we asked participants to conside\u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/improving-sleep-wake-schedule-using-sleep-behavior-visualization-and-a-bedtime-alarm\/overview\/",
"title": "Improving Sleep-Wake Schedule Using Sleep Behavior Visualization and a Bedtime Alarm",
"eyebrow": "Project",
"description": "Humans need sleep, along with food, water, and oxygen, to survive. With about one-third of our lives spent sleeping, there has been increas\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/panoply\/overview\/",
"title": "Panoply",
"eyebrow": "Project",
"description": "Panoply is a crowdsourcing application for mental health and emotional wellbeing. The platform offers a novel approach to computer-based ps\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #health"
},
{
"href": "\/projects\/cocoon\/overview\/",
"title": "Cocoon: Speculative Dream Engineering",
"eyebrow": "Project",
"description": "Cocoon is our vision of a programmable dream machine from the future. This device would be enabled by the synthesis of many devices under d\u2026",
"meta": "in Fluid Interfaces #design #wearable computing #interfaces +1\u00a0more"
},
{
"href": "\/projects\/pandemic-response-colab\/overview\/",
"title": "Pandemic Response CoLab",
"eyebrow": "Project",
"description": "Pandemic Response CoLab will help individuals and groups work together to solve practical problems created by the COVID-19 pandemic. By lev\u2026",
"meta": "in Community Biotechnology #health #member company #wellbeing +1\u00a0more"
},
{
"href": "\/projects\/challenges-and-opportunities-when-covering-hate-speech-and-mis-disinformation\/overview\/",
"title": "A Moment of Change: Challenges and opportunities when covering hate speech and mis\/disinformation",
"eyebrow": "Project",
"description": "Since the 2016 US presidential election, news coverage of hate speech and mis\/ disinformation has skyrocketed. What was once a sleepy beat \u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/labyrsense\/overview\/",
"title": "Labyrsense",
"eyebrow": "Project",
"description": "Introducing the Labyrsense, the rehabilitative labyrinth with sensory feedback. Underpinned by early research explorations with MGH, the La\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/personal-narratives\/overview\/",
"title": "Personal narratives",
"eyebrow": "Project",
"description": "See ACL 2020 video here!See in its&nbsp;GitHub repoSharing personal narratives is a fundamental aspect of human social behavior as it helps\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/attentive-skins\/overview\/",
"title": "Attentive Electronic Skins For Low Power, Multifunctional Operation",
"eyebrow": "Project",
"description": "\u200bWe imagine equipping electronic skins with a sense of attention in order to operate more efficiently in resource constrained environments.\u2026",
"meta": "in Responsive Environments #sensors #electrical engineering #materials"
},
{
"href": "\/projects\/affective-network\/overview\/",
"title": "Affective Network",
"eyebrow": "Project",
"description": "Try Affective Network!Emotional contagion in online social networks has been of great interest over the past years. Previous studies have m\u2026",
"meta": ""
},
{
"href": "\/projects\/telemetron-orchestra\/overview\/",
"title": "The Telemetron Orchestra",
"eyebrow": "Project",
"description": "When contemplating the future of life in space, we dream not only of rockets and off-world societies, but also of art, of leisure, and freq\u2026",
"meta": "in Space Exploration Initiative #design #music #interfaces +3\u00a0more"
},
{
"href": "\/projects\/bio-summit-4\/overview\/",
"title": "Bio Summit 4.0",
"eyebrow": "Project",
"description": "The Global Community Bio Summit 4.0 will be held October 11-13, 2020 and will virtually convene the global citizen-led, grassroots communit\u2026",
"meta": "in Community Biotechnology"
},
{
"href": "\/projects\/open-source-spring\/overview\/",
"title": "Open-Source SPRING",
"eyebrow": "Project",
"description": "Open-Source Instructions for Building SPRING System",
"meta": ""
},
{
"href": "\/projects\/bidirectional-contact-tracing\/overview\/",
"title": "Bidirectional Contact Tracing",
"eyebrow": "Project",
"description": "Contact tracing, isolation, and testing are some of the most powerful public health interventions available, but they haven't been optimize\u2026",
"meta": "in Sculpting Evolution #covid19"
},
{
"href": "\/projects\/evolving-decoy-ace2-receptor-mimics\/overview\/",
"title": "Evolving Decoy ACE2 Receptor Mimics As COVID-19 Therapeutics",
"eyebrow": "Project",
"description": "COVID-19 has over only a few short months resulted in the deaths of &gt;400,000 people worldwide (as of mid-June 2020) and has forced many \u2026",
"meta": "in Sculpting Evolution #covid19"
},
{
"href": "\/projects\/secure-dna\/overview\/",
"title": "Secure DNA",
"eyebrow": "Project",
"description": "A world in which thousands of people can construct and release autonomous biological agents is unlikely to flourishProfessor Kevin Esvelt, \u2026",
"meta": "in Sculpting Evolution #covid19"
},
{
"href": "\/projects\/open-phenome-project\/overview\/",
"title": "Open Phenome Project",
"eyebrow": "Project",
"description": "The aim of this project is to create an open source digital library&nbsp;with open data sets that cross link phenotypic response in plants \u2026",
"meta": "in Open Agriculture (OpenAg) #artificial intelligence #environment"
},
{
"href": "\/projects\/food-server\/overview\/",
"title": "Food Server",
"eyebrow": "Project",
"description": "The OpenAg\u2122 Food Server is a shipping container-sized, controlled environment agriculture technology that can be built to utilize hydroponi\u2026",
"meta": "in Open Agriculture (OpenAg) #agriculture #artificial intelligence #food +1\u00a0more"
},
{
"href": "\/projects\/npcp\/overview\/",
"title": "National produce chemotyping project",
"eyebrow": "Project",
"description": "Chemical constituents are the most essential components of the fresh produce items consumed by people around the world. That chemistry can \u2026",
"meta": "in Open Agriculture (OpenAg)"
},
{
"href": "\/projects\/translational-acoustic-rf-tarf-communication\/overview\/",
"title": "Wireless communication from underwater to the air",
"eyebrow": "Project",
"description": "Did you know that submarines today still cannot wirelessly communicate with airplanes? For decades, communicating between underwater and th\u2026",
"meta": "in Signal Kinetics #robotics #communications #networks +3\u00a0more"
},
{
"href": "\/projects\/portable-retinal-imaging\/overview\/",
"title": "Portable Retinal Imaging",
"eyebrow": "Project",
"description": "The major challenge in preventing blindness is identifying patients and bringing them to specialty care. Diseases that affect the retina, t\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/metafluidics-openrepository\/overview\/",
"title": "Metafluidics: Open repository for fluidic systems",
"eyebrow": "Project",
"description": "Metafluidics is an open source, community-driven repository that hosts digital design files, assembly specifications, and the bill of mater\u2026",
"meta": "in Community Biotechnology #microbiology #microfabrication"
},
{
"href": "\/projects\/wescratch\/overview\/",
"title": "WeScratch",
"eyebrow": "Project",
"description": "WeScratch are online workshops for everyone who wants to learn how to create projects in&nbsp;Scratch&nbsp;in an inclusive, collaborative, \u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/Grappler\/overview\/",
"title": "Space Webs as Infrastructure for distributed sensor networks and other infrastructure on low gravity bodies",
"eyebrow": "Project",
"description": "We study textiles and nets as a base form for growing infrastructure and allowing reconfigurable sensing on low gravity bodies (for instanc\u2026",
"meta": "in Responsive Environments \u00b7 Space Exploration Initiative #design #architecture #art +7\u00a0more"
},
{
"href": "\/projects\/codec-perceptual-loss\/overview\/",
"title": "Towards a Perceptually-Motivated Loss Function for Audio Neural Networks",
"eyebrow": "Project",
"description": "Generative audio models based on neural networks have led to considerable improvements across fields including speech enhancement, source s\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/compression-by-content-curation\/overview\/",
"title": "Cognition-Driven Audio Summarization",
"eyebrow": "Project",
"description": "As we move towards an increasingly IoT-enabled ecosystem, we find that it is easier than ever before to capture vast amounts of audio data.\u2026",
"meta": "in Responsive Environments #artificial intelligence #music #technology"
},
{
"href": "\/projects\/computer-assisted-transgenesis\/overview\/",
"title": "Computer-Assisted Transgenesis",
"eyebrow": "Project",
"description": "Our novel platform automates experiments in genetic engineering to bring large-scale moonshot projects within reach. Too often, lab experim\u2026",
"meta": "in Sculpting Evolution"
},
{
"href": "\/projects\/transparensea\/overview\/",
"title": "TransparenSea: AI for Sustainable Fishing",
"eyebrow": "Project",
"description": "TransparenSea is an AI system that uses video from tuna longline vessels as input to identify dangerous fishing practices while at sea.Comm\u2026",
"meta": "in Responsive Environments \u00b7 Open Ocean #environment #sensors #ocean"
},
{
"href": "\/projects\/scratch\/overview\/",
"title": "Scratch",
"eyebrow": "Project",
"description": "Scratch&nbsp;is the world's most popular coding community for kids. Millions of kids around the world are using Scratch to program their ow\u2026",
"meta": "in Lifelong Kindergarten #robotics #design #art +14\u00a0more"
},
{
"href": "\/projects\/low-power-wireless-environmental-sensor-node\/overview\/",
"title": "Low-power wireless environmental sensor network",
"eyebrow": "Project",
"description": "Tidmarsh is a 600-acre former cranberry farm near Plymouth, MA that has undergone a restoration to wetland. We have instrumented the site w\u2026",
"meta": "in Responsive Environments #ecology #environment #networks +2\u00a0more"
},
{
"href": "\/projects\/soundsignaling\/overview\/",
"title": "SoundSignaling",
"eyebrow": "Project",
"description": "Drawing inspiration from the notion of cognitive incongruence associated with Stroop's famous experiment, from musical principles, and from\u2026",
"meta": "in Responsive Environments #human-computer interaction #environment #music"
},
{
"href": "\/projects\/cognitive-audio\/overview\/",
"title": "Modeling Auditory Memory",
"eyebrow": "Project",
"description": "When we form memories, not everything that we perceive is noticed; not everything that we notice is remembered. Humans are excellent at f\u2026",
"meta": "in Responsive Environments #artificial intelligence #augmented reality #cognition +4\u00a0more"
},
{
"href": "\/projects\/footwear-in-action\/overview\/",
"title": "Kicks x Cliques",
"eyebrow": "Project",
"description": "Leveraging sneaker culture to influence civic engagement.&nbsp;Marginalized groups have influence on digital platforms but are often unhear\u2026",
"meta": "in Viral Communications #fashion #health #social media +3\u00a0more"
},
{
"href": "\/projects\/sg-kinesics\/overview\/",
"title": "SuperGlue Kinesics",
"eyebrow": "Project",
"description": "The relationship between news content and its presentation has been a long-studied problem in the communications domain.&nbsp;Often, channe\u2026",
"meta": "in Viral Communications #computer vision #human-computer interaction #artificial intelligence +6\u00a0more"
},
{
"href": "\/projects\/gamma-sense-sensory-engaging-nebulised-scent-experience\/overview\/",
"title": "Gamma SENSE: Sensory Engaging Nebulised Scent Experience",
"eyebrow": "Project",
"description": "The Gamma SENSE (Sensory Engaging Nebulised Scent Experience) is a pioneering instrumental addition to the gamma instrument series. The dev\u2026",
"meta": "in Opera of the Future #interfaces #medicine #neural interfacing and control"
},
{
"href": "\/projects\/tether\/overview\/",
"title": "T(ether)",
"eyebrow": "Project",
"description": "T(ether) is a novel spatially aware display that supports intuitive interaction with volumetric data. The display acts as a window affordin\u2026",
"meta": "in Tangible Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/lumitouch\/overview\/",
"title": "LumiTouch",
"eyebrow": "Project",
"description": "Based upon prior work on telepresence and tangible interfaces, LumiTouch explores emotional communication in tangible form. The LumiTouch s\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/linked-stick\/overview\/",
"title": "Linked-Stick",
"eyebrow": "Project",
"description": "We use sticks as tools for a variety of activities, everything from conducting music to playing sports or even engage in combat. However, t\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/kinected-conference-1\/overview\/",
"title": "Kinected Conference",
"eyebrow": "Project",
"description": "What we can do if the screen in videoconference rooms can turn into an interactive display? With Kinect camera and sound sensors, We explor\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/cluster-attention\/overview\/",
"title": "Cluster: Attention",
"eyebrow": "Project",
"description": "null",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/making-scratch-accessible\/overview\/",
"title": "Agent-based programming interfaces for children",
"eyebrow": "Project",
"description": "A conversational, voice-based interface for creating and playing Scratch projects makes Scratch accessible to children regardless of visual\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/pegblocks\/overview\/",
"title": "PegBlocks",
"eyebrow": "Project",
"description": "PegBlocks are networked tactile transducers. As users manipulate the array of pegs, sliding them back and forth, motion is converted to ele\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/trans-dock\/overview\/",
"title": "TRANS-DOCK",
"eyebrow": "Project",
"description": "In the research realm of shape changing interfaces in human-computer interaction, a variety of pin-based shape display designs have been pr\u2026",
"meta": "in Tangible Media #human-computer interaction #interfaces"
},
{
"href": "\/projects\/where-s-pedro\/overview\/",
"title": "Where's Pedro?",
"eyebrow": "Project",
"description": "An 85-inch television screen combined with 8K resolution provides a tool through which multiple users can perform quick, highly detailed, v\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/the-8k-data-manipulator\/overview\/",
"title": "The 8K Data Manipulator",
"eyebrow": "Project",
"description": "The 8K Data Manipulator is a Unity game engine application which harnesses the gesture recognition and limb tracking available through Micr\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/surroundvision\/overview\/",
"title": "SurroundVision",
"eyebrow": "Project",
"description": "Adding augmented reality to the living-room TV, we are exploring the technical and creative implications of using a mobile phone or tablet \u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/smell-narratives\/overview\/",
"title": "Smell Narratives",
"eyebrow": "Project",
"description": "We are adding an olfactory dimension to storytelling in order to create more immersive and evocative experiences. Smell Narratives allows t\u2026",
"meta": "in Ultimate Media \u00b7 CE 2.0 \u00b7 Future Storytelling +1\u00a0more"
},
{
"href": "\/projects\/shair-a-platform-for-mobile-content-sharing\/overview\/",
"title": "ShAir: A platform for mobile content sharing",
"eyebrow": "Project",
"description": "ShAir is a platform for instantly and easily creating local content-shareable spaces without requiring an Internet connection or location i\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/quiesense\/overview\/",
"title": "QuieSense: Distributed context-awareness system for Wi-Fi enabled mobile devices",
"eyebrow": "Project",
"description": "What if our mobile devices could sense and then adapt to the spatial, temporal, and social context of their local environments? Imagine if \u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/programmable-synthetic-hallucinations\/overview\/",
"title": "Programmable Synthetic Hallucinations",
"eyebrow": "Project",
"description": "We are creating consumer-grade appliances and authoring methodologies that will allow hallucinatory phenomena to be programmed and utilized\u2026",
"meta": "#consumer electronics #gaming #interfaces"
},
{
"href": "\/projects\/printed-wearable-holographic-display\/overview\/",
"title": "Printed Wearable Holographic Display",
"eyebrow": "Project",
"description": "Holographic displays offer many advantages, including comfort and maximum realism. In this project we adapt our guided-wave light-modulator\u2026",
"meta": "in Ultimate Media \u00b7 Object-Based Media #consumer electronics #holography"
},
{
"href": "\/projects\/modesense\/overview\/",
"title": "ModeSense",
"eyebrow": "Project",
"description": "ModeSense is a full stack system that enables indoor environments to become aware of what is happening in them, and then enables the enviro\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/living-materials-library\/overview\/",
"title": "Living Materials Library",
"eyebrow": "Project",
"description": "The control of living systems as part of design interfaces is of interest to both the scientific and design communities due to the ability \u2026",
"meta": "in Object-Based Media \u00b7 Mediated Matter #materials"
},
{
"href": "\/projects\/live-objects\/overview\/",
"title": "Live Objects",
"eyebrow": "Project",
"description": "A Live Object is a small device that can stream media content wirelessly to nearby mobile devices without an Internet connection. Live Obje\u2026",
"meta": "in Ultimate Media \u00b7 CE 2.0 \u00b7 Future Storytelling +1\u00a0more"
},
{
"href": "\/projects\/hoverband\/overview\/",
"title": "Hover",
"eyebrow": "Project",
"description": "We designed, implemented, and tested a proof of concept, wrist-based wearable object identification system which allows users to \u201chover\u201d th\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/guided-wave-light-modulator-for-holographic-video\/overview\/",
"title": "Guided-wave light modulator for holographic video",
"eyebrow": "Project",
"description": "The electro-holographic video display (Holovideo) project has spanned over decades, beginning back in 1989, and continues to be a main rese\u2026",
"meta": "in Ultimate Media \u00b7 CE 2.0 \u00b7 Future Storytelling +1\u00a0more"
},
{
"href": "\/projects\/funnel-vision\/overview\/",
"title": "Funnel Vision",
"eyebrow": "Project",
"description": "MotivationThe need for inexpensive, reliable, 3D, 360-degree display technologies grows as augmented reality applications continue to incre\u2026",
"meta": "in Object-Based Media #art #augmented reality #entertainment"
},
{
"href": "\/projects\/everything-tells-a-story\/overview\/",
"title": "Everything Tells a Story",
"eyebrow": "Project",
"description": "Following upon work begun in the Graspables project, we are exploring what happens when a wide range of everyday consumer products can sens\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/dusk\/overview\/",
"title": "DUSK",
"eyebrow": "Project",
"description": "DUSK was created as part of the Media Lab's Advancing Wellbeing initiative (supported by the Robert Wood Johnson Foundation) to create priv\u2026",
"meta": "in Advancing Wellbeing \u00b7 Object-Based Media"
},
{
"href": "\/projects\/cosmetic-light\/overview\/",
"title": "Cosmetic Light",
"eyebrow": "Project",
"description": "From skin to light: an artistic dialog between cosmetics, lasers, and lighting between the human and microscopic scale.&nbsp;Cosmetics esse\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/consumer-holo-video\/overview\/",
"title": "Consumer Holo-Video",
"eyebrow": "Project",
"description": "The goal of this project, building upon work begun by Stephen Benton and the Spatial Imaging group, is to enable consumer devices such as t\u2026",
"meta": "in Ultimate Media \u00b7 CE 2.0 \u00b7 Future Storytelling +1\u00a0more"
},
{
"href": "\/projects\/calliope\/overview\/",
"title": "Calliope",
"eyebrow": "Project",
"description": "Calliope was designed by building on the lessons learnt from the NeverEnding Drawing Machine.&nbsp;Rather than a static system that lives \u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/listentree-audio-haptic-display-in-the-natural-environment\/overview\/",
"title": "ListenTree: Audio-haptic display in the natural environment",
"eyebrow": "Project",
"description": "ListenTree is an audio-haptic display embedded in the natural environment. Visitors to our installation notice a faint sound emerging from \u2026",
"meta": "in Object-Based Media \u00b7 Responsive Environments"
},
{
"href": "\/projects\/networked-playscapes-dig-deep\/overview\/",
"title": "Networked Playscapes: Dig Deep",
"eyebrow": "Project",
"description": "Networked Playscapes re-imagines outdoor play by merging the flexibility of the digital world with the tangible, sensorial properties of ph\u2026",
"meta": "in Object-Based Media #kids #learning"
},
{
"href": "\/projects\/triciclo\/overview\/",
"title": "TRICICLO",
"eyebrow": "Project",
"description": "In Mexico City, a cacophony of sounds will come to your window from dusk till dawn. Merolicos\u2014distinctive chants, recorded songs, and parti\u2026",
"meta": ""
},
{
"href": "\/projects\/pillow-talk\/overview\/",
"title": "Pillow-Talk",
"eyebrow": "Project",
"description": "Pillow-Talk is a set of connected objects intended to assist in the capture and recall digitally stored dreams and memories via natural and\u2026",
"meta": "in Object-Based Media #consumer electronics #storytelling #interfaces"
},
{
"href": "\/projects\/bigbarchart\/overview\/",
"title": "BigBarChart",
"eyebrow": "Project",
"description": "BigBarChart is an immersive, 3D bar chart that provides a new physical way for people to interact with data. It takes data beyond visualiza\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/airtap\/overview\/",
"title": "AirTap",
"eyebrow": "Project",
"description": "We demonstrate a method for augmenting existing visual interfaces, including 3D and conventional displays, with haptic feedback capabilitie\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/8k-time-machine\/overview\/",
"title": "8K Time Machine",
"eyebrow": "Project",
"description": "Archived TV programs evoke earlier times. This application combines a video and music archive with an immersive screen and a simple user in\u2026",
"meta": "in Ultimate Media \u00b7 CE 2.0 \u00b7 Future Storytelling +1\u00a0more"
},
{
"href": "\/projects\/comtouch\/overview\/",
"title": "ComTouch",
"eyebrow": "Project",
"description": "The ComTouch project explores the interpersonal communication by use of haptic technology. Audio and video have been commonly used as a med\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/lineform\/overview\/",
"title": "LineFORM",
"eyebrow": "Project",
"description": "We propose a novel shape-changing interface that consists of a single line. Lines have several interesting characteristics from the perspec\u2026",
"meta": "in Tangible Media #human-computer interaction #human-machine interaction"
},
{
"href": "\/projects\/animastage\/overview\/",
"title": "AnimaStage",
"eyebrow": "Project",
"description": "We present AnimaStage: a hands-on animated craft platform based on an actuated stage. Utilizing a pin-based shape display, users can animat\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/sensorknits\/overview\/",
"title": "SensorKnits: Architecting textile sensors with machine knitting",
"eyebrow": "Project",
"description": "Digital machine knitting is a highly programmable manufacturing process that has been utilized to produce apparel, accessories, and footwea\u2026",
"meta": "in Tangible Media \u00b7 Synthetic Neurobiology \u00b7 Responsive Environments +1\u00a0more #design #manufacturing #wearable computing"
},
{
"href": "\/projects\/scale2018\/overview\/",
"title": "SCALE",
"eyebrow": "Project",
"description": "SCALE provides a framework for load data from distributed load-sensitive modules for exploring force-based interaction. Force conveys not o\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/biologic\/overview\/",
"title": "bioLogic\u2014Science Advances",
"eyebrow": "Project",
"description": "Cells\u2019 biomechanical responses to external stimuli have been intensively studied but rarely implemented into devices&nbsp;that interact wit\u2026",
"meta": "in Tangible Media #human-computer interaction #fashion #sensors +3\u00a0more"
},
{
"href": "\/projects\/wrapr-spool-based-fabrication-for-object-creation-and-modification\/overview\/",
"title": "WraPr: Spool-Based Fabrication for Object Creation and Modification",
"eyebrow": "Project",
"description": "In this work, we propose a novel fabrication method for 3D objects based on the principle of spooling. By wrapping off-the-shelf materials \u2026",
"meta": "in Tangible Media #design #human-computer interaction #3d printing +2\u00a0more"
},
{
"href": "\/projects\/programmable-droplets\/overview\/",
"title": "Programmable Droplets",
"eyebrow": "Project",
"description": "\u200bState-of-the art liquid handling systems are generally pump-driven systems connected with valves and tubes. These systems are manually ass\u2026",
"meta": "in Tangible Media #design #human-computer interaction #art +2\u00a0more"
},
{
"href": "\/projects\/kinetix\/overview\/",
"title": "kinetiX",
"eyebrow": "Project",
"description": "kinetiX is a transformable material featuring a design that resembles a cellular structure. It consists of rigid plates or rods and elastic\u2026",
"meta": "in Tangible Media #design #art #manufacturing +3\u00a0more"
},
{
"href": "\/projects\/pneumatic-shape-changing-interfaces\/overview\/",
"title": "Pneumatic Shape-Changing Interfaces",
"eyebrow": "Project",
"description": "An enabling technology to build shape-changing interfaces through pneumatically driven, soft-composite materials. The composite materials i\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/jamsheets-interacting-with-thin-stiffness-changing-material\/overview\/",
"title": "jamSheets: Interacting with thin stiffness-changing material",
"eyebrow": "Project",
"description": "This project introduces layer jamming as an enabling technology for designing deformable, stiffness-tunable, thin sheet interfaces. Interfa\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/AUFLIP_Feedback\/overview\/",
"title": "AUFLIP",
"eyebrow": "Project",
"description": "How can people learn advanced motor skills such as front flips and tennis swings without starting from a young age? The answer, following t\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/leakyphones\/overview\/",
"title": "LeakyPhones",
"eyebrow": "Project",
"description": "LeakyPhones&nbsp;is a public\/private headset that was designed to encourage face-to-face interactions, curiosity, and&nbsp;healthier&nbsp;s\u2026",
"meta": "in Tangible Media \u00b7 Fluid Interfaces #design #communications #music +3\u00a0more"
},
{
"href": "\/projects\/conjugate\/overview\/",
"title": "CONJURE",
"eyebrow": "Project",
"description": "A recent focus of our lab has been making use of Tangible Displays and Body Object Space to develop new assistive technologies. As a test c\u2026",
"meta": "in Tangible Media #entertainment #gaming #technology"
},
{
"href": "\/projects\/mirrorfugue\/overview\/",
"title": "MirrorFugue",
"eyebrow": "Project",
"description": "MirrorFugue is an installation for a player piano that evokes the impression that the \"reflection\" of a disembodied pianist is playing the \u2026",
"meta": "in Advancing Wellbeing \u00b7 Tangible Media"
},
{
"href": "\/projects\/auto-inflatables\/overview\/",
"title": "Auto-Inflatables",
"eyebrow": "Project",
"description": "null",
"meta": "in Tangible Media #robotics #design #architecture +1\u00a0more"
},
{
"href": "\/projects\/inflatables\/overview\/",
"title": "Printflatables: Printing human-scale, functional, and dynamic inflatable objects",
"eyebrow": "Project",
"description": "Printflatables is a design and fabrication system for human-scale, functional and dynamic inflatable objects. The user begins with specifyi\u2026",
"meta": "#robotics #human-machine interaction #manufacturing"
},
{
"href": "\/projects\/lift-liquid-resin-injection-fabrication-technology-in-micro-gravity\/overview\/",
"title": "Liquid resin fabrication in microgravity",
"eyebrow": "Project",
"description": "The future of human life outside of Earth will heavily depend on the ability to fabricate and manufacture things. Yet fabrication in space \u2026",
"meta": "in Space Exploration Initiative \u00b7 Tangible Media #manufacturing #space #zero gravity"
},
{
"href": "\/projects\/pneuduino\/overview\/",
"title": "Pneuduino",
"eyebrow": "Project",
"description": "Pneuduino is a hardware platform for kids, students, artists, designers, and researchers who are interested in controlling air flow and pre\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/storyblocks\/overview\/",
"title": "StoryBlocks",
"eyebrow": "Project",
"description": "StoryBlocks aims to promote creative expression, literacy development, and social-emotional development through storytelling for children a\u2026",
"meta": "#design #kids #learning +1\u00a0more"
},
{
"href": "\/projects\/family-learning-coach\/overview\/",
"title": "Learning Loops",
"eyebrow": "Project",
"description": "Developed as part of the Playful Words research project at the MIT Media Lab's Laboratory for Social Machines, Learning Loops aims to make \u2026",
"meta": "in Social Machines #design #social networks #human-machine interaction +2\u00a0more"
},
{
"href": "\/projects\/intouch\/overview\/",
"title": "inTouch",
"eyebrow": "Project",
"description": "inTouch explores new forms of interpersonal communication through touch. Force-feedback technology is employed to create the illusion that \u2026",
"meta": "in Tangible Media #human-computer interaction"
},
{
"href": "\/projects\/let-s-talk-privacy-translating-policy-to-prototypes\/overview\/",
"title": "Let's Talk Privacy: Exploring how privacy and data governance policies translate into practice",
"eyebrow": "Project",
"description": "Let\u2019s Talk Privacy explores how the implementation of privacy and data governance policies might impact a variety of fields.Project Let\u2019s T\u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media #design #data #government +3\u00a0more"
},
{
"href": "\/projects\/virtual-regalia\/overview\/",
"title": "Virtual Regalia",
"eyebrow": "Project",
"description": "COVID-19 and virtual commencements around the world were not what many universities had planned for the graduating class of 2020. Walking a\u2026",
"meta": "in Object-Based Media #augmented reality"
},
{
"href": "\/projects\/creative-learning-challenge-brazil\/overview\/",
"title": "Creative Learning Challenge Brazil \/ Desafio Aprendizagem Criativa Brazil",
"eyebrow": "Project",
"description": "The Creative Learning Challenge Brazil is a fellowship program of the Brazilian Creative Learning Network. Supported by the Lemann Foundati\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/speech-blocks\/overview\/",
"title": "SpeechBlocks",
"eyebrow": "Project",
"description": "SpeechBlocks is a medium that allows children (4-5 years old) to engage in open-ended play with writing. They can build arbitrary compositi\u2026",
"meta": "in Social Machines #design #construction #kids +5\u00a0more"
},
{
"href": "\/projects\/active-fairness\/overview\/",
"title": "Active Fairness in Algorithmic Decision Making",
"eyebrow": "Project",
"description": "Algorithmic FairnessSociety increasingly relies on machine learning models for automated decision making. Yet, efficiency gains from automa\u2026",
"meta": "in Human Dynamics #machine learning"
},
{
"href": "\/projects\/aeromorph\/overview\/",
"title": "aeroMorph",
"eyebrow": "Project",
"description": "The project investigates how to make origami structure with inflatables with various materials. We introduce a universal bending mechanism \u2026",
"meta": ""
},
{
"href": "\/projects\/design-daydreams\/overview\/",
"title": "Design Daydreams",
"eyebrow": "Project",
"description": "Design Daydreams is a digitally-augmented ideation table and post-it note that seamlessly connects the physical and digital content that de\u2026",
"meta": "in Object-Based Media #design"
},
{
"href": "\/projects\/looking-sideways\/overview\/",
"title": "Looking Sideways",
"eyebrow": "Project",
"description": "Looking Sideways is an online inspiration browsing tool that seeks to provoke unexpected inspiration and guide pathways to new ideas by&nbs\u2026",
"meta": "in Object-Based Media #design"
},
{
"href": "\/projects\/emotivemodeler-an-emotive-form-design-cad-tool\/overview\/",
"title": "EmotiveModeler: An emotive form design CAD tool",
"eyebrow": "Project",
"description": "Whether or not we're experts in the design language of objects, we have an unconscious understanding of the emotional character of their fo\u2026",
"meta": "in Object-Based Media #design #3d printing"
},
{
"href": "\/projects\/reframe\/overview\/",
"title": "Reframe",
"eyebrow": "Project",
"description": "Reframe is a creative prompt tool that juxtaposes language from a designer\u2019s notes in surprising ways to provoke new associations between c\u2026",
"meta": "in Object-Based Media #design"
},
{
"href": "\/projects\/jiradi\/overview\/",
"title": "Jiradi",
"eyebrow": "Project",
"description": "In creative learning, reflection encourages learners to think critically about their experiences and helps&nbsp;to generate new ideas, insi\u2026",
"meta": ""
},
{
"href": "\/projects\/mekatilili\/overview\/",
"title": "Mekatilili Fellowship Program",
"eyebrow": "Project",
"description": "Mekatilili&nbsp;is a learning initiative that provides a platform for African youth to enhance technical skills through creative learning a\u2026",
"meta": "in Lifelong Kindergarten #design #learning #makers +3\u00a0more"
},
{
"href": "\/projects\/chill-out\/overview\/",
"title": "Chill.out",
"eyebrow": "Project",
"description": "Temperature influences our perception and cognition both consciously and subconsciously. These effects are rooted in our bodily experiences\u2026",
"meta": "in Fluid Interfaces #human augmentation"
},
{
"href": "\/projects\/byte_it\/overview\/",
"title": "Byte.it",
"eyebrow": "Project",
"description": "Discreet Teeth Gestures for Mobile Device InteractionByte.it is a miniaturized, discreet interface that uses teeth gestures for hands-free \u2026",
"meta": "in Fluid Interfaces #design #human-computer interaction #consumer electronics +2\u00a0more"
},
{
"href": "\/projects\/respite\/overview\/",
"title": "Respite",
"eyebrow": "Project",
"description": "Respite is a class project, tested only in a limited pilot study.&nbsp;We have learned about and experienced the subjective benefits of min\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/perform-1\/overview\/",
"title": "PerForm",
"eyebrow": "Project",
"description": "PerForm explores the intuitive meanings associated with the shape of objects, and how a deformable tool can allow for interaction based on \u2026",
"meta": "in Object-Based Media #design #human-computer interaction #music +2\u00a0more"
},
{
"href": "\/projects\/cityscope\/overview\/",
"title": "Theme | CityScope",
"eyebrow": "Project",
"description": "City Science researchers are developing a slew of tangible and digital platforms dedicated to solving spatial design and urban planning cha\u2026",
"meta": "in City Science #design #computer vision #human-computer interaction +20\u00a0more"
},
{
"href": "\/projects\/mediated-atmospheres\/overview\/",
"title": "Mediated Atmosphere",
"eyebrow": "Project",
"description": "The Mediated Atmosphere project envisions a smart office that is capable of dynamically transforming itself to enhance occupants' work expe\u2026",
"meta": "in Responsive Environments #human-computer interaction #architecture #health +8\u00a0more"
},
{
"href": "\/projects\/doppellab-experiencing-multimodal-sensor-data\/overview\/",
"title": "DoppelLab: Experiencing multimodal sensor data",
"eyebrow": "Project",
"description": "Homes and offices are being filled with sensor networks to answer specific queries and solve pre-determined problems, but no comprehensive \u2026",
"meta": "#human-computer interaction #learning #music +3\u00a0more"
},
{
"href": "\/projects\/robust-genome-editing-with-broad-targeting-crispr-enzymes\/overview\/",
"title": "Robust Genome Editing with Broad Targeting CRISPR Enzymes",
"eyebrow": "Project",
"description": "Programmable CRISPR enzymes are powerful and versatile tools for genome editing. They, however, require a specific protospacer adjacent mot\u2026",
"meta": "in Molecular Machines #bioengineering #genetics #alumni +1\u00a0more"
},
{
"href": "\/projects\/champscope\/overview\/",
"title": "ChampScope",
"eyebrow": "Project",
"description": "Virtual CityScope Champs-\u00c9lys\u00e9es is an interactive and immersive platform that explores the future of Paris\u2019 most important street.",
"meta": "in City Science #architecture #civic technology #transportation +1\u00a0more"
},
{
"href": "\/projects\/cityscope-hanoi\/overview\/",
"title": "CityScope Hanoi: Water management in the Red River",
"eyebrow": "Project",
"description": "Agent-Based Modelling for water management: a study case of the Bac Hung Hai irrigation system in the Red River Delta, Vietnam.",
"meta": "in City Science"
},
{
"href": "\/projects\/homelamp\/overview\/",
"title": "HomeLAMP",
"eyebrow": "Project",
"description": "HomeLAMP demonstrates the design and prototyping of a low-cost thermal processing unit for COVID-19 RT-LAMP testing and diagnostics entirel\u2026",
"meta": "#covid19"
},
{
"href": "\/projects\/marsboreal-greenhouse\/overview\/",
"title": "Marsboreal Greenhouse",
"eyebrow": "Project",
"description": "As global interest in deep space exploration rises, new mission architectures and new&nbsp;dwelling solutions must be sought for to accompl\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/tree-computer\/overview\/",
"title": "Tree Computer",
"eyebrow": "Project",
"description": "The&nbsp;Tree Computer&nbsp;is a robotic greenhouse built to explore plant stress, health, longevity, and productivity across a wide range \u2026",
"meta": "in Open Agriculture (OpenAg) #agriculture"
},
{
"href": "\/projects\/personal-food-computer\/overview\/",
"title": "Personal Food Computer",
"eyebrow": "Project",
"description": "The OpenAg\u2122 Personal Food Computer is a tabletop-sized, controlled environment agriculture technology platform that uses robotic systems to\u2026",
"meta": "in Open Agriculture (OpenAg) #robotics #design #agriculture +13\u00a0more"
},
{
"href": "\/projects\/social-distancing-in-a-pandemic\/overview\/",
"title": "Social Distancing in a Pandemic",
"eyebrow": "Project",
"description": "What anonymized geolocation data can tell us about the effectiveness of social distancingThe World Health Organization has officially decla\u2026",
"meta": "#covid19"
},
{
"href": "\/projects\/assessing-disease-exposure-risk-with-location-histories-and-protecting-privacy\/overview\/",
"title": "Assessing Disease Exposure Risk With Location Histories And Protecting Privacy",
"eyebrow": "Project",
"description": "Governments and researchers around the world are implementing digital contact tracing solutions to stem the spread of infectious disease, n\u2026",
"meta": "in City Science #privacy #security #computer science +1\u00a0more"
},
{
"href": "\/projects\/affective-robotic-ring\/overview\/",
"title": "Affective Robotic Ring",
"eyebrow": "Project",
"description": "An affective robotic ring which allows users to interact with multiple robots using finger gestures.- Runs on Robotic Operating System (ROS\u2026",
"meta": "in Personal Robots #robotics #artificial intelligence #sensors +2\u00a0more"
},
{
"href": "\/projects\/wearable-wisdom\/overview\/",
"title": "Wearable Wisdom",
"eyebrow": "Project",
"description": "Wearable Wisdom: An Intelligent Audio-Based System for Mediating Wisdom and AdviceHaving good mentors and role models is important for pers\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #extended intelligence #wearable computing +4\u00a0more"
},
{
"href": "\/projects\/soundscape-resynthesis\/overview\/",
"title": "Soundscape Resynthesis",
"eyebrow": "Project",
"description": "Sound and space are fundamentally intertwined, at both a physical and perceptual level. Sound radiates from vibrating materials, filling \u2026",
"meta": "in Responsive Environments #robotics #design #environment +8\u00a0more"
},
{
"href": "\/projects\/cd-synth\/overview\/",
"title": "CD-Synth",
"eyebrow": "Project",
"description": "Rotational musical instrument interfaces are a very intuitive representation of the fundamentals of music itself, as they are inhe\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/crowdsourcing-the-detection-and-evaluation-of-misinformation\/overview\/",
"title": "Crowdsourcing the detection and evaluation of misinformation",
"eyebrow": "Project",
"description": "This strand of work seeks to develop new interventions to reduce the spread of information, and deploy those interventions towards a crowds\u2026",
"meta": "in Human Dynamics #human-computer interaction"
},
{
"href": "\/projects\/sunny\/overview\/",
"title": "Sunny",
"eyebrow": "Project",
"description": "Sunny is a Facebook messenger chatbot by Monique Davey, Jaya Narain, and Tina Quach that promotes wellbeing by strengthening connections wi\u2026",
"meta": "#human-computer interaction"
},
{
"href": "\/projects\/design-of-water-soluble-cytokine-receptors-fused-with-fc-domain-of-igg-may-be-therapeutic-for-cytokine-storms\/overview\/",
"title": "Designer molecular mops: Water-soluble cytokine receptors fused with Fc domain of IgG may be therapeutic for cytokine storms",
"eyebrow": "Project",
"description": "In April 2019, Shuguang Zhang's lab started to use the QTY code to design a class of water-soluble cytokine receptors, including interferon\u2026",
"meta": "in Molecular Machines #biology #public health #medicine +1\u00a0more"
},
{
"href": "\/projects\/qty-code-designs-for-water-soluble-barrel-transmembrane-proteins\/overview\/",
"title": "QTY code designs for water-soluble beta-barrel transmembrane proteins",
"eyebrow": "Project",
"description": "In collaboration with Prof. Tao Fei\u2019s lab (Shanghai Jiaotong University, China)In addition to a large number of membrane proteins that comp\u2026",
"meta": "in Molecular Machines #biology #public health #medicine +1\u00a0more"
},
{
"href": "\/projects\/cxcr4-designed-using-qty-code-becomes-more-hydrophilic-and-retains-cell-signaling-activity\/overview\/",
"title": "QTY CXCR4 becomes more hydrophilic and retains cell signaling activity",
"eyebrow": "Project",
"description": "In collaboration with Prof. Horst Vogel and Dr. Horst Pick (EPFL, Lausanne, Switzerland).G protein-coupled receptors (GPCRs) are vital for \u2026",
"meta": "in Molecular Machines #biology #public health #medicine +1\u00a0more"
},
{
"href": "\/projects\/the-qty-code-a-simple-tool-for-protein-design\/overview\/",
"title": "The QTY code: A simple tool for protein design",
"eyebrow": "Project",
"description": "Structure and function studies of membrane proteins, particularly G protein-coupled receptors (GPCRs) and multipass transmembrane proteins,\u2026",
"meta": "#biology #public health #medicine +1\u00a0more"
},
{
"href": "\/projects\/membrane-receptor-based-high-molecular-density-bioelectronic-platform\/overview\/",
"title": "Membrane receptor-based high molecular density bioelectronic platform",
"eyebrow": "Project",
"description": "In collaboration with Prof. Uwe Sleytr and Dr. Andreas Breitwieser (BOKU, Vienna, Austria).Bioelectronics is an emerging antidisciplinary f\u2026",
"meta": "in Molecular Machines"
},
{
"href": "\/projects\/water-soluble-transmembrane-protein-receptors-with-exchangeable-tunable-ligand-affinity\/overview\/",
"title": "Water-soluble transmembrane protein receptors with exchangeable and tunable ligand affinity",
"eyebrow": "Project",
"description": "There are 20 chemokine receptors that bind their respective chemokines. It is not currently understood how these structurally similar recep\u2026",
"meta": "in Molecular Machines #design #bioengineering #synthetic biology +1\u00a0more"
},
{
"href": "\/projects\/bioessence\/overview\/",
"title": "BioEssence",
"eyebrow": "Project",
"description": "A wearable olfactory display that monitors cardio-respiratory information with the aspiration to support mental wellbeing.BioEssence is a w\u2026",
"meta": "in Fluid Interfaces #consumer electronics #health #wearable computing +5\u00a0more"
},
{
"href": "\/projects\/dancing-data\/overview\/",
"title": "Data Moves",
"eyebrow": "Project",
"description": "Every day, data about our environment, education, routes, and other aspects of our lives become available. Yet most people often struggle t\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/sleep-staging-EEG\/overview\/",
"title": "Real-time Smartphone-based Sleep Staging using 1-Channel EEG and Machine Learning",
"eyebrow": "Project",
"description": "Automatic and real-time sleep scoring is necessary to&nbsp;develop user interfaces that trigger stimuli in specific sleep stages.&nbsp;Howe\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/soapcam\/overview\/",
"title": "SoapCam",
"eyebrow": "Project",
"description": "SoapCam is a WIP Human Computer Interaction system that motivates proper hand washing routines.\"Hand hygiene is the most important measure \u2026",
"meta": "#human-computer interaction #public health #gesture interface +1\u00a0more"
},
{
"href": "\/projects\/data-privacy-design-for-youth\/overview\/",
"title": "AI + Data Privacy Activities for K-9 Students",
"eyebrow": "Project",
"description": "Policymakers, practitioners, and researchers are grappling with&nbsp;some herculean questions regarding kids' safety online. Homemade slime\u2026",
"meta": "in Personal Robots #artificial intelligence #data #kids +4\u00a0more"
},
{
"href": "\/projects\/primary-ai-ed\/overview\/",
"title": "Primary School AI Education",
"eyebrow": "Project",
"description": "This Primary School AI curriculum introduces elementary school children to robotics and artificial intelligence. Throughout the curriculum,\u2026",
"meta": "in Personal Robots #robotics #artificial intelligence #kids +3\u00a0more"
},
{
"href": "\/projects\/doodle-bot\/overview\/",
"title": "Doodle Bot - Creative AI learning",
"eyebrow": "Project",
"description": "Doodle Bot is a robot-based creative AI learning platform for high school students. It consists of an introduction to robotics, hardware, s\u2026",
"meta": "in Personal Robots #artificial intelligence #kids #learning +2\u00a0more"
},
{
"href": "\/projects\/robot-mindset-and-curiosity\/overview\/",
"title": "Robot Mindset and Curiosity",
"eyebrow": "Project",
"description": "Young Learner's Companion&nbsp;Developing robots' growth mindset and pro-curious behavior and fostering the same in young learners via long\u2026",
"meta": "in Personal Robots #artificial intelligence #kids #learning +4\u00a0more"
},
{
"href": "\/projects\/pop-kit\/overview\/",
"title": "PopBots: An early childhood AI curriculum",
"eyebrow": "Project",
"description": "How can we add the missing \"T\" and \"E\" in preschool STEAM education?",
"meta": "in Personal Robots #human-computer interaction #artificial intelligence #human-machine interaction +7\u00a0more"
},
{
"href": "\/projects\/story-comprehension\/overview\/",
"title": "Story Comprehension",
"eyebrow": "Project",
"description": "The ability to automatically understand and infer characters' goals and their emotional states is key towards better narrative comprehensio\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/proxymix\/overview\/",
"title": "Proxymix: Influence of spatial configuration on human collaboration",
"eyebrow": "Project",
"description": "Proxymix is a visualization tool to understand the influence of spatial configuration on human collaboration. This agent-based model at the\u2026",
"meta": "in City Science #human-computer interaction #architecture #behavioral science +1\u00a0more"
},
{
"href": "\/projects\/reducing-suffering-in-laboratory-animals\/overview\/",
"title": "Reducing Suffering in Laboratory Animals",
"eyebrow": "Project",
"description": "The world uses an estimated 100 million mice in laboratory research experiments each year. These experiments are monitored and regulated to\u2026",
"meta": "in Sculpting Evolution #biotechnology"
},
{
"href": "\/projects\/aerial-light-field-display\/overview\/",
"title": "Aerial Light-Field Display",
"eyebrow": "Project",
"description": "Suitable for anywhere a \"Pepper's Ghost\" display could be deployed, this display adds 3D with motion parallax, as well as optically relayin\u2026",
"meta": "in Ultimate Media \u00b7 CE 2.0 \u00b7 Future Storytelling +1\u00a0more"
},
{
"href": "\/projects\/radio_o\/overview\/",
"title": "radiO_o",
"eyebrow": "Project",
"description": "radiO_o is a battery-powered speaker worn by hundreds of party guests, turning each person into a local mobile sound system. The radiO_o br\u2026",
"meta": "in Playful Systems"
},
{
"href": "\/projects\/3d-telepresence-chair\/overview\/",
"title": "3D Telepresence Chair",
"eyebrow": "Project",
"description": "An autostereoscopic (no glasses) 3D display engine is combined with a \"Pepper's Ghost\" setup to create an office chair that appears to cont\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/marauders-map\/overview\/",
"title": "Marauder's Map",
"eyebrow": "Project",
"description": "\"I solemnly swear that I am up to no good.\"The Marauder's Map from the Harry Potter universe uses UltraWide Band transmitters and receiver \u2026",
"meta": "#entertainment #gaming #human-machine interaction +1\u00a0more"
},
{
"href": "\/projects\/4k8k-comics\/overview\/",
"title": "4K\/8K Comics",
"eyebrow": "Project",
"description": "4K\/8K Comics applies the affordances of ultra-high-resolution screens to traditional print media such as comic books, graphic novels, and o\u2026",
"meta": "in Ultimate Media \u00b7 Object-Based Media"
},
{
"href": "\/projects\/micronauts\/overview\/",
"title": "Micronauts",
"eyebrow": "Project",
"description": "Microbes are the foundation upon which life on Earth depends: they set the boundaries of habitability for all plants and animals and create\u2026",
"meta": "in Open Ocean \u00b7 Object-Based Media #art #augmented reality #environment +3\u00a0more"
},
{
"href": "\/projects\/hmi\/overview\/",
"title": "Human-Machine Interaction (HMI) in Social & Public Environments",
"eyebrow": "Project",
"description": "Facilitating coexistence, trust-building, and collaboration among people and machines.New modes of 21st century urban transportation are be\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/large-user-interface-with-gesture-and-voice-feedback\/overview\/",
"title": "LUI: Large User Interface with Gesture and Voice Feedback",
"eyebrow": "Project",
"description": "LUI is a scalable, multimodal web-interface that uses a custom framework of nondiscrete, free-handed gestures and voice to control modular \u2026",
"meta": "in Object-Based Media #virtual reality #human-computer interaction #augmented reality +3\u00a0more"
},
{
"href": "\/projects\/cryptography-and-policy\/overview\/",
"title": "Cryptography and Policy",
"eyebrow": "Project",
"description": "The Digital Currency Initiative is interested in cryptography research beyond digital currency and blockchains. The DCI and its collaborato\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/zk-sharks\/overview\/",
"title": "zk-SHARKS",
"eyebrow": "Project",
"description": "We investigate the goal of deploying efficient non-interactive zero-knowledge proofs for moderately complex statements. Motivated by the d\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/bitcoin-core-development\/overview\/",
"title": "Bitcoin Core Development",
"eyebrow": "Project",
"description": "&nbsp;As always, we will continue contributing to and learning from Bitcoin development.",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/blockchain-labs-course\/overview\/",
"title": "Blockchain Labs | Working Groups",
"eyebrow": "Project",
"description": "&nbsp;The Working Group Program brings DCI Member Companies (1) and students together to work on real world projects that use blockchain te\u2026",
"meta": "in Digital Currency Initiative (DCI)"
},
{
"href": "\/projects\/myths-of-the-cosmos\/overview\/",
"title": "Myths of the Cosmos",
"eyebrow": "Project",
"description": "Exploring the Atacama Desert and its intrinsic relationship to the Cosmos",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/radiofungi\/overview\/",
"title": "Radiofungi: Biological Pigments for Radioprotection",
"eyebrow": "Project",
"description": "A major concern for manned missions is space radiation. Ionizing radiation is known to pose both acute and chronic risks to many organisms,\u2026",
"meta": "in Mediated Matter \u00b7 Space Exploration Initiative #space #biology #zero gravity"
},
{
"href": "\/projects\/joy-branch\/overview\/",
"title": "JoyBranch",
"eyebrow": "Project",
"description": "The Joy Branch project explores different user interfaces to allow parrots to shape their sonic environment.&nbsp;&nbsp;Animal agency\u2014contr\u2026",
"meta": "in Opera of the Future #human-computer interaction"
},
{
"href": "\/projects\/deep-image-of-the-city\/overview\/",
"title": "The Deep Image of the City",
"eyebrow": "Project",
"description": "How do you image a city that doesn't exist?&nbsp;DeepScope is a novel platform for interactive, real-time, and setup-less urban design visu\u2026",
"meta": "in City Science #design #human-computer interaction #architecture +4\u00a0more"
},
{
"href": "\/projects\/ethics-of-autonomous-vehicles\/overview\/",
"title": "Ethics of Autonomous Vehicles",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.Adoption of self-driving, \u2026",
"meta": "in Ethics \u00b7 Scalable Cooperation #artificial intelligence #cryptocurrency #social science +3\u00a0more"
},
{
"href": "\/projects\/learning-empathy\/overview\/",
"title": "Strangers, Voices, and Society",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.As part of its broader wor\u2026",
"meta": "in Ethics"
},
{
"href": "\/projects\/ethics-learning-and-education\/overview\/",
"title": "Ethics and Empathy Learning",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.This initiative is designi\u2026",
"meta": "in Ethics"
},
{
"href": "\/projects\/gene-editing-and-biomedical-ethics\/overview\/",
"title": "Gene Editing and Biomedical Ethics",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.The initiative, working wi\u2026",
"meta": "in Ethics #genetics #ethics"
},
{
"href": "\/projects\/transformative-leadership\/overview\/",
"title": "Transformative Leadership",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.Despite gazillions of lead\u2026",
"meta": "in Ethics #learning #ethics"
},
{
"href": "\/projects\/ai-ethics-and-governance\/overview\/",
"title": "AI Ethics and Governance",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.This project will support \u2026",
"meta": "in Ethics \u00b7 Scalable Cooperation #artificial intelligence #extended intelligence #social science"
},
{
"href": "\/projects\/HAL\/overview\/",
"title": "Humanizing AI in Law (HAL)",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.The&nbsp;&nbsp;Humanizing \u2026",
"meta": "in Ethics and Governance of Artificial Intelligence \u00b7 Ethics #artificial intelligence #government #social science +2\u00a0more"
},
{
"href": "\/projects\/ethical-leadership-in-judicial-systems\/overview\/",
"title": "Ethical Leadership in Judicial Systems",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.A program to promote ethic\u2026",
"meta": "in Ethics"
},
{
"href": "\/projects\/transformative-leadership-in-indigenous-communities\/overview\/",
"title": "Transformative Leadership in Indigenous Communities",
"eyebrow": "Project",
"description": "This work&nbsp;is being continued through&nbsp;The Dalai Lama Center for Ethics and Transformative Values at MIT.A project in partnership w\u2026",
"meta": "in Ethics"
},
{
"href": "\/projects\/ai-ethics-for-middle-school\/overview\/",
"title": "AI + Ethics Curriculum for Middle School",
"eyebrow": "Project",
"description": "How do we raise conscientious consumers and designers of AI?Children today live in the age of artificial intelligence. On average, US child\u2026",
"meta": "in Personal Robots #design #artificial intelligence #gaming +6\u00a0more"
},
{
"href": "\/projects\/gamma-instrument\/overview\/",
"title": "Gamma Instrument",
"eyebrow": "Project",
"description": "The Gamma Instrument is a small-format interactive device hovering between the realms of musical instrument and medical instrument. A capac\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/cityscope-volpe\/overview\/",
"title": "CityScope Volpe",
"eyebrow": "Project",
"description": "CityScope Volpe is demonstrating most of the urban planning, analysis, and prediction features developed for the CityScope project. The sit\u2026",
"meta": "in City Science #human-computer interaction #architecture #transportation +2\u00a0more"
},
{
"href": "\/projects\/molecular-gastronomy-in-zero-g\/overview\/",
"title": "Molecular Gastronomy in Zero G",
"eyebrow": "Project",
"description": "A molecular gastronomy experiment was flown on a zero gravity flight in August 2019, using spherification techniques to create recipes in z\u2026",
"meta": "in Space Exploration Initiative #design #virtual reality #food +4\u00a0more"
},
{
"href": "\/projects\/collaborative-robot-storyteller\/overview\/",
"title": "Personalized Robot Storytelling Companion",
"eyebrow": "Project",
"description": "Could a social robot collaboratively exchange stories with children as a peer and help improve their linguistic and storytelling skills? We\u2026",
"meta": "in Personal Robots #robotics #artificial intelligence #human-machine interaction +10\u00a0more"
},
{
"href": "\/projects\/children-s-perception-of-empathy-in-robot-robot-scenarios\/overview\/",
"title": "The role of social robots in fostering human empathy",
"eyebrow": "Project",
"description": "Empathy is a core human skill. From early stages of our lives, being able to understand and behave with empathy is fundamental to our socia\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/piccolo-kitchen\/overview\/",
"title": "Piccolo Kitchen",
"eyebrow": "Project",
"description": "This project aims to create a modular platform for exploring micro-kitchens that are culture specific. Cooking is a personal experience tha\u2026",
"meta": "in City Science #robotics #design #food"
},
{
"href": "\/projects\/el-poema-de-la-fabrica-c-smica\/overview\/",
"title": "El Poema de la Fabrica C\u00f3smica",
"eyebrow": "Project",
"description": "This sonic rite consists of a listening session of the performance of the place, guided by the Para-Cantora, a sonic device that acts as a \u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/chomsky-vs-chomsky\/overview\/",
"title": "Chomsky vs Chomsky",
"eyebrow": "Project",
"description": "null",
"meta": ""
},
{
"href": "\/projects\/desafio-aprendizagem-criativa-brasil-2019\/overview\/",
"title": "Desafio Aprendizagem Criativa Brasil 2019",
"eyebrow": "Project",
"description": "ATEN\u00c7\u00c3O:&nbsp;Saiu o&nbsp;resultado do Desafio Aprendizagem Criativa Brasil 2019!&nbsp;Clique&nbsp;aqui&nbsp;para conhecer os fellows e os \u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/connected-coral\/overview\/",
"title": "Connected Coral",
"eyebrow": "Project",
"description": "Connected Coral integrates physical and digital elements in a visualization of the environmental impacts on reefs. This complex projection \u2026",
"meta": "in Object-Based Media \u00b7 Open Ocean #art #augmented reality #interfaces +1\u00a0more"
},
{
"href": "\/projects\/crypto-voting-us-elections\/overview\/",
"title": "Crypto Voting + US Elections: Reality and Science Fiction",
"eyebrow": "Project",
"description": "This is a two-part project. One part is about reality. The other part is science fiction. Both are about mobile, blockchain, and cryptograp\u2026",
"meta": "in City Science #open source #politics #security +1\u00a0more"
},
{
"href": "\/projects\/complex-economic-activities-concentrate-in-large-cities\/overview\/",
"title": "Complex Economic Activities Concentrate in Large Cities",
"eyebrow": "Project",
"description": "Human activities, such as research, innovation and industry, concentrate disproportionately in large cities. The ten most innovative cities\u2026",
"meta": ""
},
{
"href": "\/projects\/sonic-murals\/overview\/",
"title": "Sonic Murals",
"eyebrow": "Project",
"description": "Giving voice and information to objects and spaces around us.Objects in our lives are usually either digital or not; mostly a wall is just \u2026",
"meta": "in Opera of the Future #music #sensors"
},
{
"href": "\/projects\/sociabowl\/overview\/",
"title": "SociaBowl: A Dynamic Table Centerpiece to Mediate Group Conversations",
"eyebrow": "Project",
"description": "We introduce SociaBowl, a dynamic table centerpiece to promote positive social dynamics in 2-way cooperative conversations. A centerpiece s\u2026",
"meta": "in Tangible Media #human-computer interaction"
},
{
"href": "\/projects\/pollock-patterns\/overview\/",
"title": "Pollock Patterns",
"eyebrow": "Project",
"description": "\u201cI feel nearer, more a part of the painting, since this way I can walk round it, work from the four sides and literally be in the painting\u201d\u2026",
"meta": "in Object-Based Media #entertainment #gaming #human-machine interaction"
},
{
"href": "\/projects\/narratarium\/overview\/",
"title": "Narratarium",
"eyebrow": "Project",
"description": "Narratarium augments printed and oral stories and creative play by projecting immersive images and sounds. We are using natural language pr\u2026",
"meta": "in Ultimate Media \u00b7 Future Storytelling \u00b7 Object-Based Media"
},
{
"href": "\/projects\/slam-force-net\/overview\/",
"title": "Slam Force Net",
"eyebrow": "Project",
"description": "A basketball net incorporates segments of conductive fiber whose resistance changes with degree of stretch. By measuring this resistance ov\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/infinity-by-nine\/overview\/",
"title": "Infinity-by-Nine",
"eyebrow": "Project",
"description": "We are expanding the home-video viewing experience by generating imagery to extend the TV screen and give the impression that the scene wra\u2026",
"meta": "in Object-Based Media #imaging"
},
{
"href": "\/projects\/bottlesboxes-packaging-with-sensors\/overview\/",
"title": "Bottles and Boxes: Packaging with sensors",
"eyebrow": "Project",
"description": "We have added inexpensive, low-power, wireless sensors to product packages to detect user interactions with products. Thus, a bottle can re\u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/d-Abyss\/overview\/",
"title": "DermalAbyss: Possibilities of Biosensors as a Tattooed Interface",
"eyebrow": "Project",
"description": "Can tattoos embrace technology in order to make the skin interactive?The DermalAbyss project was the result of a collaboration between MIT \u2026",
"meta": "in Fluid Interfaces \u00b7 Responsive Environments #health #wearable computing"
},
{
"href": "\/projects\/proof-of-patience\/overview\/",
"title": "Proof of Patience",
"eyebrow": "Project",
"description": "To help prevent the mindless sharing of content and promote the sharing of thoughtful content, a socially acceptable \u201cstamp of approval\u201d wa\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/jibo-research-platform\/overview\/",
"title": "Jibo Social Robotic Research Platform",
"eyebrow": "Project",
"description": "The Jibo Research Platform is an in-the-field deployable Social Robotics experimentation and data collection infrastructure. Built upon the\u2026",
"meta": "in Personal Robots #robotics #human-computer interaction #artificial intelligence +11\u00a0more"
},
{
"href": "\/projects\/tega-a-new-robot-platform-for-long-term-interaction\/overview\/",
"title": "Tega: A New Social Robot Platform",
"eyebrow": "Project",
"description": "Tega is a new robot platform designed to support long-term, in-home interactions with children, with applications in early-literacy educati\u2026",
"meta": "in Personal Robots #robotics #artificial intelligence #kids +3\u00a0more"
},
{
"href": "\/projects\/hol-deep-sense\/overview\/",
"title": "HOL-DEEP-SENSE",
"eyebrow": "Project",
"description": "The Hol-Deep-Sense project (funded by the&nbsp;EU\u2019s Horizon 2020 Marie Sk\u0142odowska-Curie grant)&nbsp;aims at holistic machine perception of \u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/social-capital-accounting\/overview\/",
"title": "Social Capital Accounting",
"eyebrow": "Project",
"description": "To better understand and improve the quality of our lives, there has been a need for measuring non-economic capital such as social capital \u2026",
"meta": "in Human Dynamics #social networks #wearable computing #social science +4\u00a0more"
},
{
"href": "\/projects\/fleet-simulation\/overview\/",
"title": "Service deployment simulation for light-weight, mixed-use autonomous fleets",
"eyebrow": "Project",
"description": "Forecasting the supply of fleets to meet emerging travel demands and service needs in citiesThe availability of vehicles is a critical fact\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/lotuscent\/overview\/",
"title": "Lotuscent: Targeted memory reactivation for wellbeing using scent and VR biofeedback",
"eyebrow": "Project",
"description": "\u200bThe lotus flower is an ancient symbol that has been associated with spiritual awakening or enlightenment.In yoga and meditation, the lotus\u2026",
"meta": ""
},
{
"href": "\/projects\/circuit-stickers\/overview\/",
"title": "Circuit Stickers",
"eyebrow": "Project",
"description": "Circuit Stickers is a toolkit for crafting electronics using flexible and sticky electronic pieces. These stickers are created by printing \u2026",
"meta": "in Responsive Environments #art #learning #storytelling +1\u00a0more"
},
{
"href": "\/projects\/aalto-saas\/overview\/",
"title": "Aalto Campus-as-a-Service Simulations",
"eyebrow": "Project",
"description": "How can we get more value from the same buildings?&nbsp;Cities contain many different resources and spaces and typically, these resources o\u2026",
"meta": "in City Science #urban planning #data visualization"
},
{
"href": "\/projects\/paper-dreams\/overview\/",
"title": "Paper Dreams",
"eyebrow": "Project",
"description": "Paper Dreams explores how human creativity can be supported by artificial intelligence.Prior research on AI and creativity has primarily fo\u2026",
"meta": "in Fluid Interfaces #design #art #artificial intelligence +8\u00a0more"
},
{
"href": "\/projects\/inspire\/overview\/",
"title": "INSPIRE",
"eyebrow": "Project",
"description": "INSPIRE: Intelligence Never Seeks Perfection, Instead Requires Effort.Stories help us expand our sense of what's possible: by hearing from \u2026",
"meta": "in Social Machines #learning #networks #storytelling +1\u00a0more"
},
{
"href": "\/projects\/wearable-lab-on-body\/overview\/",
"title": "Wearable Lab on Body",
"eyebrow": "Project",
"description": "Wearables are being widely researched for monitoring individual's health and wellbeing. Current generation wearable devices sense an indivi\u2026",
"meta": "in Fluid Interfaces \u00b7 Space Exploration Initiative #health #wearable computing #sensors +1\u00a0more"
},
{
"href": "\/projects\/space-craft\/overview\/",
"title": "Space\/Craft",
"eyebrow": "Project",
"description": "Space\/Craft explores sculpting in zero gravity.&nbsp;Making artistic works by hand is a fundamentally human act, but how will it transform \u2026",
"meta": "in Space Exploration Initiative \u00b7 Civic Media #art #space #technology +1\u00a0more"
},
{
"href": "\/projects\/FLAPS\/overview\/",
"title": "FLAPS: Folded Lightweight Actuated Positioning System for CubeSat Deployables",
"eyebrow": "Project",
"description": "Mechanical actuators for deployable systems on satellites are often complex, expensive, only designed for a single use, and too large or he\u2026",
"meta": "in Space Exploration Initiative #space #technology #zero gravity"
},
{
"href": "\/projects\/microgravity-rowing\/overview\/",
"title": "Microgravity Rowing",
"eyebrow": "Project",
"description": "In microgravity, the removal of constant loading on the skeleton leads to loss of bone density and muscle mass. In order to counteract this\u2026",
"meta": "in Space Exploration Initiative #space #technology #zero gravity"
},
{
"href": "\/projects\/orbit-weaver-suit\/overview\/",
"title": "Orbit Weaver Suit",
"eyebrow": "Project",
"description": "\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200bThe Orbit Weaver Suit for&nbsp;zero gravity was&nbsp;designed by Media Lab Director's Fellow Andrea Lauer in collaboration with Xi\u2026",
"meta": "in Space Exploration Initiative \u00b7 Director's Fellows #design #art #fashion +3\u00a0more"
},
{
"href": "\/projects\/ar-enhanced-wall-plants-escape-pod\/overview\/",
"title": "AR Enhanced Wall Plants: Escape Pod",
"eyebrow": "Project",
"description": "An environment of plants and mirrors that extends beyond the terrarium walls.&nbsp;",
"meta": "in City Science #agriculture #architecture #augmented reality +1\u00a0more"
},
{
"href": "\/projects\/grain-prism\/overview\/",
"title": "Grain Prism",
"eyebrow": "Project",
"description": "The Grain Prism is a hybrid musical instrument that combines granular synthesis and live audio recordings. Presented in a capacitive touch \u2026",
"meta": "in City Science #design #art #music +1\u00a0more"
},
{
"href": "\/projects\/refugee-learning-accelerator\/overview\/",
"title": "Refugee Learning Accelerator",
"eyebrow": "Project",
"description": "We support computer scientists and engineers from the Middle East to create technologies for refugee learners.&nbsp;The Refugee Learning Ac\u2026",
"meta": "in ML Learning #learning"
},
{
"href": "\/projects\/don-t-touch-my-hair-exploring-consent-education-through-interactive-art\/overview\/",
"title": "(Don't) Touch My Hair: Exploring Consent Education Through Interactive Art",
"eyebrow": "Project",
"description": "In Solange Knowles\u2019 2016 single \u201cDon\u2019t Touch My Hair\u201d she explained the sensitivities of Black women like herself who don\u2019t want people to \u2026",
"meta": "in Object-Based Media"
},
{
"href": "\/projects\/cilllia-3d-printed-micro-pillar-structures-for-surface-texture-actuation-and-sensing\/overview\/",
"title": "Cilllia: 3D-printed micro pillar structures for surface texture, actuation, and sensing",
"eyebrow": "Project",
"description": "In nature, hair has numerous functions such as providing warmth, adhesion, locomotion, sensing, and a sense of touch, as well as its well-k\u2026",
"meta": "in Tangible Media #design #environment #fashion +4\u00a0more"
},
{
"href": "\/projects\/fukushima-2100\/overview\/",
"title": "Fukushima 2100",
"eyebrow": "Project",
"description": "\u201c[The wild boars] look at me like I am a visitor. It's like they\u2019re the owners and I\u2019m the guest. Wild animals that normally live in nature\u2026",
"meta": "#design #agriculture #art +2\u00a0more"
},
{
"href": "\/projects\/incompleteness\/overview\/",
"title": "WITHOUT Identity",
"eyebrow": "Project",
"description": "Graphics on incompletenessThe City Science Summit 2019, CITIES WITHOUT, explored a future without top-down and obsolete systems. During the\u2026",
"meta": "in City Science #design"
},
{
"href": "\/projects\/radio-talk\/overview\/",
"title": "RadioTalk",
"eyebrow": "Project",
"description": "The RadioTalk corpus includes speech recognition transcripts sampled from talk radio broadcasts in the United States between October of 201\u2026",
"meta": "in Social Machines #civic media #networks #politics +5\u00a0more"
},
{
"href": "\/projects\/mapping-the-globe\/overview\/",
"title": "Mapping the Globe",
"eyebrow": "Project",
"description": "Mapping the Globe is an interactive tool and map that helps us understand where The Boston Globe directs its attention. Media attention mat\u2026",
"meta": "in Civic Media #data"
},
{
"href": "\/projects\/gbci\/overview\/",
"title": "Serosa: Towards Gut-Brain Computer Interfacing (GBCI)",
"eyebrow": "Project",
"description": "Serosa records gastrointestinal (stomach and intestinal) signals. Serosa aims for cognitive enhancement via the mind-gut connection by aidi\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/serosa-ii\/overview\/",
"title": "Serosa II",
"eyebrow": "Project",
"description": "Serosa II is a hydrogel electrode waistband to measure gastrointestinal signals. We sought to create an interface can be worn for long peri\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/serosa\/overview\/",
"title": "Serosa I",
"eyebrow": "Project",
"description": "Exploring the connection between our two minds: the one in our head and the one in our body.&nbsp;The mind-gut connection has flourished as\u2026",
"meta": "in Fluid Interfaces #neural interfacing and control"
},
{
"href": "\/projects\/rgbox\/overview\/",
"title": "RGBox",
"eyebrow": "Project",
"description": "The RGBox is an experimental game to teach fundamentals of additive color mixing theory.&nbsp;As opposed to the behavior of pigments that g\u2026",
"meta": "in City Science #learning #interfaces"
},
{
"href": "\/projects\/scratch-blockart\/overview\/",
"title": "Scratch BlockArt",
"eyebrow": "Project",
"description": "Scratch BlockArt is an experimental visualization tool designed to let children discover their own computational patterns on Scratch. Exist\u2026",
"meta": "in Lifelong Kindergarten #kids #learning #data visualization"
},
{
"href": "\/projects\/youtune\/overview\/",
"title": "YouTune",
"eyebrow": "Project",
"description": "Seemingly an old TV box which turns out to offer an abundance of control over content selection: each aspect of news can be selected for us\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/what-s-america-listening-to\/overview\/",
"title": "What's America Listening To?",
"eyebrow": "Project",
"description": "null",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/Biological-Enhancement\/overview\/",
"title": "Theme | Wearable Biotech Enhancement",
"eyebrow": "Project",
"description": "Lab on Body, Synthetic Biology, and Bio-Digital Systems for Health and Human Enhancement",
"meta": "in Fluid Interfaces #health #synthetic biology #wearable computing +3\u00a0more"
},
{
"href": "\/projects\/800-000-year-composition\/overview\/",
"title": "The 800,000 Year Composition",
"eyebrow": "Project",
"description": "An initial experiment with cloud-enabled audio production software.A collection of docker containers work together to stream the audio and \u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/wall-of-now\/overview\/",
"title": "Wall of Now",
"eyebrow": "Project",
"description": "Wall of Now is a multi-dimensional media browser of recent news items. It attempts to address our need to know everything by presenting a d\u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/looking-through-the-piano\/overview\/",
"title": "Looking Through the Piano",
"eyebrow": "Project",
"description": "Looking Through the Piano is a project created to visualize all of the past projects from the Opera of the Future group. The piano acts as \u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/wave-bubble\/overview\/",
"title": "Wave Bubble",
"eyebrow": "Project",
"description": "In a high-population-density city, inhabitants must be prepared to defend their own personal space. Technologies that increase personal pro\u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/attentivucar\/overview\/",
"title": "AttentivU: Towards Improved Wellbeing in the Car",
"eyebrow": "Project",
"description": "Several research projects have recently explored the use of physiological sensors such as electroencephalography (EEG - brain activity) or \u2026",
"meta": "in Fluid Interfaces #wearable computing #wellbeing"
},
{
"href": "\/projects\/media-timelines\/overview\/",
"title": "Media Timelines: Understanding the future by studying the past",
"eyebrow": "Project",
"description": "The world wide web was conceived 30 years ago. What will internet media look like after another 30 years? Should we expect it to be mostly \u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/cee-color-expanse-examination\/overview\/",
"title": "CEE: Color Expanse Examination",
"eyebrow": "Project",
"description": "\u200bThe CEE (Color Expanse Examination) system is an explorative approach to evaluating human color acuity. Color perception is shaped and alt\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/preventing-tick-borne-disease-by-permanently-immunizing-mice\/overview\/",
"title": "Mice Against Ticks - Preventing tick-borne disease by permanently immunizing mice",
"eyebrow": "Project",
"description": "Lyme disease is the most common vector-borne infection in North America. People are infected when bitten by ticks; ticks are typically infe\u2026",
"meta": "in Sculpting Evolution #agriculture #bioengineering #crowdsourcing +9\u00a0more"
},
{
"href": "\/projects\/move-u\/overview\/",
"title": "MoveU",
"eyebrow": "Project",
"description": "MoveU is a wearable vestibular stimulation device for providing proprioceptive haptic feedback in virtual reality (VR).&nbsp; The device in\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #wearable computing #interfaces"
},
{
"href": "\/projects\/taking-a-line-on-a-walk\/overview\/",
"title": "Taking a line on a walk",
"eyebrow": "Project",
"description": "Bauhaus artist Paul Klee considered a line to be&nbsp; one of the atomic elements of art and architecture. He famously described a line dra\u2026",
"meta": "in Opera of the Future #augmented reality"
},
{
"href": "\/projects\/flower-eeg-visualization-with-the-aid-of-machine-learning\/overview\/",
"title": "Flower: EEG visualization with the aid of machine learning",
"eyebrow": "Project",
"description": "Flower is a new visualization tool for in-depth study of multi-sensor recordings in the time domain. It has been released for public downlo\u2026",
"meta": "in Fluid Interfaces #artificial intelligence #data visualization #electrical engineering +1\u00a0more"
},
{
"href": "\/projects\/social-robots-autism\/overview\/",
"title": "Social Robots for Children with Autism",
"eyebrow": "Project",
"description": "Families with ASD often struggle with social and emotional communication. This work explores the role of an embodied agent (a social robot)\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/schoenberg-in-hollywood\/overview\/",
"title": "Schoenberg in Hollywood: A new opera by Tod Machover",
"eyebrow": "Project",
"description": "\u201cCan a man know the truth and tell it to the greatest number and still be misunderstood? Can one man be of the many and still be known?\u201d Sc\u2026",
"meta": "in Opera of the Future #art #music #politics +1\u00a0more"
},
{
"href": "\/projects\/superglue\/overview\/",
"title": "SuperGlue",
"eyebrow": "Project",
"description": "SuperGlue is a core news research initiative that is a \"digestion system\" and metadata generator for mass media. An evolving set of analysi\u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/relational-ai\/overview\/",
"title": "Relational AI",
"eyebrow": "Project",
"description": "Creating long-term interpersonal interaction and shared experiences with social robots&nbsp;Many of our current projects explore the use of\u2026",
"meta": "in Personal Robots \u00b7 ML Learning #robotics #artificial intelligence #cognition +5\u00a0more"
},
{
"href": "\/projects\/predicting-trust-between-people\/overview\/",
"title": "Predicting Trust Between People",
"eyebrow": "Project",
"description": "Machine learning model outperforms human judgementOur computational trust model is capable of predicting\u2014above human accuracy\u2014the degree of\u2026",
"meta": "in Personal Robots #artificial intelligence #data #social science +5\u00a0more"
},
{
"href": "\/projects\/intentional-inference-of-emotions\/overview\/",
"title": "Intentional Inference of Emotions",
"eyebrow": "Project",
"description": "Emotion recognition modeled as a goal-directed process!",
"meta": "in Personal Robots #artificial intelligence #data #kids +6\u00a0more"
},
{
"href": "\/projects\/human-robot-trust\/overview\/",
"title": "Human-Robot Trust",
"eyebrow": "Project",
"description": "Unconventional mixing of research fields introduces a new method to study human behavior using social robots.",
"meta": "in Personal Robots #artificial intelligence #data #human-machine interaction +6\u00a0more"
},
{
"href": "\/projects\/emotionally-aware-robot-teammates\/overview\/",
"title": "Emotionally Aware Robot Teammates",
"eyebrow": "Project",
"description": "Emotionally supportive robots improve overall team functioning!",
"meta": "in Personal Robots #robotics #human-machine interaction #social science +2\u00a0more"
},
{
"href": "\/projects\/artificial-listener-with-social-intelligence\/overview\/",
"title": "Artificial listener with social intelligence",
"eyebrow": "Project",
"description": "A social robot modifies its behavior to change what you think about it!",
"meta": "in Personal Robots #artificial intelligence #data #human-machine interaction +7\u00a0more"
},
{
"href": "\/projects\/oniorb\/overview\/",
"title": "Oniorb",
"eyebrow": "Project",
"description": "Oniorb is an explorable musical object that was created with the idea of stress relief in mind. It is meant to act as a stress ball that al\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/the-blank-canvas\/overview\/",
"title": "The Blank Canvas",
"eyebrow": "Project",
"description": "The Blank Canvas directs immersion inwards using virtual reality, augmenting awareness of the microscopic worlds inside each of us and the \u2026",
"meta": "in Fluid Interfaces #virtual reality"
},
{
"href": "\/projects\/mixed-reality-robots\/overview\/",
"title": "Designing robots in mixed reality",
"eyebrow": "Project",
"description": "This is a joint proposal from graduate students Vik Parthiban (Media Lab) and Andrew Spielberg (MIT CSAIL, Distributed Robotics Laboratory)\u2026",
"meta": "in Object-Based Media #robotics #design #human-computer interaction +3\u00a0more"
},
{
"href": "\/projects\/holographic-glasses-for-augmented-reality\/overview\/",
"title": "Holographic Glasses for Augmented Reality",
"eyebrow": "Project",
"description": "For my \"How to Make Almost Anything\" [HTMAA] class,&nbsp; I attempted to build holographic glasses for augmented reality. These glasses wou\u2026",
"meta": "in Object-Based Media #augmented reality #holography"
},
{
"href": "\/projects\/moments\/overview\/",
"title": "Moments",
"eyebrow": "Project",
"description": "Moments is a prototype&nbsp;designed for users to save special moments and to experience those moments in the future. Firstly, a multi-sens\u2026",
"meta": "in Responsive Environments #design #virtual reality #sensors"
},
{
"href": "\/projects\/baguamarsh\/overview\/",
"title": "BaguaMarsh",
"eyebrow": "Project",
"description": "This project takes the idea of the unity between heaven and man of the ancient Chinese philosophy I ching&nbsp;(Book of Changes), combines \u2026",
"meta": "in Responsive Environments #virtual reality #storytelling #visualization"
},
{
"href": "\/projects\/p2pstory\/overview\/",
"title": "P2PSTORY: Dataset of children as storytellers and listeners in peer-to-peer interactions",
"eyebrow": "Project",
"description": "Understanding social-emotional behaviors in storytelling interactions plays a critical role in the development of interactive and education\u2026",
"meta": "in Personal Robots #robotics #data #kids +5\u00a0more"
},
{
"href": "\/projects\/lensing-cardiolinguistics-for-atypical-angina\/overview\/",
"title": "Lensing: Cardiolinguistics for Atypical Angina",
"eyebrow": "Project",
"description": "Conversations between two individuals\u2014whether between doctor and patient, mental health therapist and client, or between two people romanti\u2026",
"meta": "in Advancing Wellbeing \u00b7 Ethics and Governance of Artificial Intelligence #artificial intelligence #health #machine learning +3\u00a0more"
},
{
"href": "\/projects\/deep-reinforcement-learning-for-pain-management\/overview\/",
"title": "Deep Reinforcement Learning for Pain Management",
"eyebrow": "Project",
"description": "Opioid therapy is the cornerstone of management of pain in the ICU. However, opioids present numerous side effects and are highly addictive\u2026",
"meta": "in Affective Computing #artificial intelligence #health #neurobiology +6\u00a0more"
},
{
"href": "\/projects\/the-telemetron\/overview\/",
"title": "The Telemetron",
"eyebrow": "Project",
"description": "Today, the environments that humans occupy in space are designed for survival. Humans are carefully shuttled to and from space, and during \u2026",
"meta": "in Opera of the Future \u00b7 Space Exploration Initiative #robotics #design #architecture +13\u00a0more"
},
{
"href": "\/projects\/CityscopeBostonBRT\/overview\/",
"title": "Boston Bus Rapid Transit (BRT) Community Engagement",
"eyebrow": "Project",
"description": "The development of transportation improvements in any city poses a range of challenges, including meaningfully involving relevant stakehold\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/empowering-civic-tech\/overview\/",
"title": "Empowerment-based design and evaluation of civic technology",
"eyebrow": "Project",
"description": "Civic technology should empower us as citizens. But despite its breadth as a field, civic technology often takes its lead from Silicon Vall\u2026",
"meta": "in Civic Media \u00b7 Center for Civic Media #civic media #civic technology #politics +2\u00a0more"
},
{
"href": "\/projects\/loops\/overview\/",
"title": "Loops",
"eyebrow": "Project",
"description": "\"Loops\" combines the work of the Lab's Synthetic Characters group, Merce Cunningham, and digital artists Paul Kaiser and Shelley Eshkar. A \u2026",
"meta": "in Opera of the Future #virtual reality #art #artificial intelligence +1\u00a0more"
},
{
"href": "\/projects\/mindless-machine\/overview\/",
"title": "Mindless Machine",
"eyebrow": "Project",
"description": "Motivated by the question \"Why do people behave strangely while driving cars with GPS navigation systems?\", we reviewed previous work in th\u2026",
"meta": "in Living Mobile"
},
{
"href": "\/projects\/symphony-for-the-koreas\/overview\/",
"title": "Symphony for the Koreas",
"eyebrow": "Project",
"description": "Symphony for the Koreas will be the latest installment of the celebrated City Symphony series. Over the next few years, Tod Machover and hi\u2026",
"meta": "in Opera of the Future #music #politics #community +1\u00a0more"
},
{
"href": "\/projects\/basic\/overview\/",
"title": "BASIC: Blockchained Agent-based Simulator for Cities",
"eyebrow": "Project",
"description": "Autonomous vehicles (AVs), drones, and other types of robots will revolutionize our way of traveling and understanding urban space. In orde\u2026",
"meta": "in City Science \u00b7 Human Dynamics #urban planning #blockchain #autonomous vehicles"
},
{
"href": "\/projects\/mobcho\/overview\/",
"title": "MoCho: Mobility choices and societal impacts",
"eyebrow": "Project",
"description": "MoCho (short for \"Mobility Choices\") is a&nbsp;CityScope&nbsp;module focused on mobility choices and societal impacts. This tool helps pred\u2026",
"meta": "in City Science #architecture #transportation #urban planning +3\u00a0more"
},
{
"href": "\/projects\/evolving-media\/overview\/",
"title": "Evolving Media on the Internet",
"eyebrow": "Project",
"description": "Songs released on music streaming services are static, never changing after their initial release.&nbsp;Evolving Media proposes a content p\u2026",
"meta": "in Opera of the Future #artificial intelligence #music #technology"
},
{
"href": "\/projects\/guitar-machine-ii\/overview\/",
"title": "Guitar Machine II",
"eyebrow": "Project",
"description": "Exploring robotic sound generation mixed with human movements on the guitar. Guitar Machine II is a robotic guitar that responds to human g\u2026",
"meta": "in Fluid Interfaces #robotics #human-computer interaction #music"
},
{
"href": "\/projects\/accessibility-of-the-microgravity-research-ecosystem\/overview\/",
"title": "Accessibility of the microgravity research ecosystem",
"eyebrow": "Project",
"description": "For decades, the International Space Station (ISS) has operated as a bastion of international cooperation and a unique testbed for microgra\u2026",
"meta": "in Space Enabled #environment #health #politics +8\u00a0more"
},
{
"href": "\/projects\/a-protocol-to-characterize-ph-sensing-materials-and-systems\/overview\/",
"title": "A Protocol to Characterize pH Sensing Materials and Systems",
"eyebrow": "Project",
"description": "\u200bAlthough significant progress is being made in identifying pH sensing materials&nbsp;and device configurations, a standard protocol for be\u2026",
"meta": "in Conformable Decoders #health #biotechnology"
},
{
"href": "\/projects\/conformal-piezoelectric-mechanical-energy-harvesters\/overview\/",
"title": "Conformal Piezoelectric Mechanical Energy Harvesters: Mechanically Invisible Human Dynamos",
"eyebrow": "Project",
"description": "Nearly all classes of wearable and implantable biomedical devices depend on battery power for continuous operation. However, the life span \u2026",
"meta": "in Conformable Decoders #bioengineering #energy #health +3\u00a0more"
},
{
"href": "\/projects\/black-rock-atlas\/overview\/",
"title": "Black Rock Atlas",
"eyebrow": "Project",
"description": "Burning Man is a magical place that gets the best of human creativity and collaboration to flourish. To further understand what makes this \u2026",
"meta": "in Scalable Cooperation #social networks #crowdsourcing #networks +4\u00a0more"
},
{
"href": "\/projects\/the-future-of-neuroimplantable-devices-a-materials-science-and-regulatory-perspective\/overview\/",
"title": "The Future of Neuroimplantable Devices: A materials science and regulatory perspective",
"eyebrow": "Project",
"description": "\u200bThe past two decades have seen unprecedented progress in the development of novel materials, form factors, and functionalities in neuroimp\u2026",
"meta": "in Conformable Decoders #design #bioengineering #health +4\u00a0more"
},
{
"href": "\/projects\/elowan-a-plant-robot-hybrid\/overview\/",
"title": "Elowan: A plant-robot hybrid",
"eyebrow": "Project",
"description": "Elowan is a cybernetic lifeform, a plant in direct dialogue with a machine. Using its own internal electrical signals, the plant is interfa\u2026",
"meta": "in Fluid Interfaces #robotics #design #human-computer interaction +9\u00a0more"
},
{
"href": "\/projects\/city-as-classroom\/overview\/",
"title": "City as Classroom, City as Laboratory",
"eyebrow": "Project",
"description": "Often, we neglect to see the city as living, complex, and dynamic. However, shrouded by its masses of concrete and steel lie unique ecosyst\u2026",
"meta": "in Sculpting Evolution #ecology #learning #storytelling +3\u00a0more"
},
{
"href": "\/projects\/3d-mobility\/overview\/",
"title": "3D Mobility",
"eyebrow": "Project",
"description": "Unfolding the way we move.&nbsp;Mobility has shaped the built environment since humans started settling together. From industrial towns to \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/social-physics-of-unemployment\/overview\/",
"title": "Social Physics of Unemployment",
"eyebrow": "Project",
"description": "Earlier studies proved that behavior is highly shaped and constrained by one's social networks, and demonstrated ways in which individuals \u2026",
"meta": "in Human Dynamics #data #economy #politics +4\u00a0more"
},
{
"href": "\/projects\/looking-around-corners\/overview\/",
"title": "Looking Around Corners",
"eyebrow": "Project",
"description": "Using a femtosecond laser and a camera with a time resolution of about one trillion frames per second, we recover objects hidden out of sig\u2026",
"meta": "in Camera Culture #imaging"
},
{
"href": "\/projects\/fiftynifty\/overview\/",
"title": "FiftyNifty",
"eyebrow": "Project",
"description": "This is a grassroots challenge to get friends to participate in democracy by making calls to congresspeople in all 50 states. Live phone ca\u2026",
"meta": "in Viral Communications #communications #data #government +2\u00a0more"
},
{
"href": "\/projects\/waste-at-mit\/overview\/",
"title": "Let's play: Waste at MIT",
"eyebrow": "Project",
"description": "Let's play: Waste at MIT is a game about trash; it\u2019s also a game about understanding civic infrastructure. This project explores the use of\u2026",
"meta": "in Viral Communications #civic technology #gaming #civic action"
},
{
"href": "\/projects\/places\/overview\/",
"title": "Theme | Changing Places",
"eyebrow": "Project",
"description": "Changing Places researchers are developing scalable strategies for creating hyper-efficient, technology-enabled spaces that can help make \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/improving-well-being-prediction-performance-using-temporal-machine-learning-models\/overview\/",
"title": "Improving wellbeing prediction performance using temporal machine learning models",
"eyebrow": "Project",
"description": "This project aims to improve the prediction accuracy of wellbeing (stress, mood, and health levels) using temporal machine learning models.\u2026",
"meta": "in Affective Computing #machine learning #affective computing #wellbeing"
},
{
"href": "\/projects\/snapshot-study\/overview\/",
"title": "SNAPSHOT Study",
"eyebrow": "Project",
"description": "The SNAPSHOT study seeks to measure Sleep, Networks, Affect, Performance, Stress, and Health using Objective Techniques. It is an NIH-funde\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #health #wearable computing #machine learning +2\u00a0more"
},
{
"href": "\/projects\/digital-synesthesia\/overview\/",
"title": "Digital Synesthesia",
"eyebrow": "Project",
"description": "Digital Synesthesia looks to evolve the idea of human-computer interfacing and give way for human-world interacting. It aims to find a way \u2026",
"meta": "in Ultimate Media \u00b7 Object-Based Media #human-computer interaction #cognition #sensors"
},
{
"href": "\/projects\/mach-my-automated-conversation-coach\/overview\/",
"title": "MACH: My Automated Conversation coacH",
"eyebrow": "Project",
"description": "MACH, My Automated Conversation coacH, is a system for people to practice social interactions in face-to-face scenarios. MACH consists of a\u2026",
"meta": "in Affective Computing #human-computer interaction #affective computing"
},
{
"href": "\/projects\/designing-social-robots-for-older-adults\/overview\/",
"title": "Designing social robots for older adults",
"eyebrow": "Project",
"description": "Most countries are projected to see the number of people ages 65 and older surpass the population under the age of 15 by 2050. The limitati\u2026",
"meta": "in Personal Robots #robotics #design #human-machine interaction +5\u00a0more"
},
{
"href": "\/projects\/cyborg-botany\/overview\/",
"title": "Cyborg Botany: Augmented plants as sensors, displays, and actuators",
"eyebrow": "Project",
"description": "Plants can sense the environment, other living entities and regenerate, actuate or grow in response.&nbsp;Our interaction and communication\u2026",
"meta": "in Fluid Interfaces #robotics #design #human-computer interaction +5\u00a0more"
},
{
"href": "\/projects\/telepresent-drawings-in-space\/overview\/",
"title": "Telepresent Drawings in Space",
"eyebrow": "Project",
"description": "This project asks, how can we transmit experiences across space and time? The launching point of the project is to create a drawing that co\u2026",
"meta": "in Space Exploration Initiative #agriculture #architecture #art +4\u00a0more"
},
{
"href": "\/projects\/computational-food\/overview\/",
"title": "Computational Food",
"eyebrow": "Project",
"description": "Computational Food is a series of experiments around the shape-changing nature of food and its associated unique sensory experiences. We us\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/living-observatory-installation-a-transductive-encounter-with-ecology\/overview\/",
"title": "Living Observatory Installation: A Transductive Encounter with Ecology",
"eyebrow": "Project",
"description": "In the Living Observatory installation at the Other Festival, we invite participants into a transductive encounter with a wetland environme\u2026",
"meta": "in Responsive Environments #virtual reality #augmented reality #ecology +2\u00a0more"
},
{
"href": "\/projects\/ar-neighbor-hood\/overview\/",
"title": "AR Neighbor\/hood",
"eyebrow": "Project",
"description": "What really divides Cambridge?Who can occupy certain spaces in Cambridge? What are&nbsp;the less obvious social and cultural factors at pla\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/wheels-of-poseidon\/overview\/",
"title": "Wheels of Poseidon",
"eyebrow": "Project",
"description": "Throughout the ages bioluminescence has inspired myths. Long ago, sailors in the Indian Ocean encountered massive bioluminescent blooms as \u2026",
"meta": "in Open Ocean #art #holography #ocean"
},
{
"href": "\/projects\/field-experimentation-in-boston-s-intertidal-zone\/overview\/",
"title": "Field Experimentation in Boston's Intertidal Zone",
"eyebrow": "Project",
"description": "The Intertidal Experimentation Workshop will take place September 29 and 30 (9am to 2pm) at the MIT Media Lab, open to students ages 8-14. \u2026",
"meta": "in Sculpting Evolution \u00b7 Open Ocean #ecology #learning #storytelling +4\u00a0more"
},
{
"href": "\/projects\/bias-by-us\/overview\/",
"title": "Bias by us",
"eyebrow": "Project",
"description": "Bias by us&nbsp;envisions a future of media diversity by understanding the bias of today.Our work seeks to understand how the US media ecos\u2026",
"meta": "in Civic Media #civic media #politics #social media +2\u00a0more"
},
{
"href": "\/projects\/design-for-a-citizen-science-and-public-engagement-project-celebrating-antarctica-and-the-southern-ocean\/overview\/",
"title": "Design for a citizen science and public engagement project celebrating Antarctica and the Southern Ocean",
"eyebrow": "Project",
"description": "Antarctica is a unique and beautiful continent that is key to the global ecosystem and climate. Research based in Antarctica is helping sci\u2026",
"meta": "in Space Enabled"
},
{
"href": "\/projects\/the-electome-measuring-responsiveness-in-the-2016-election\/overview\/",
"title": "The Electome: Measuring responsiveness in the 2016 election",
"eyebrow": "Project",
"description": "The Electome: Where AI meets political journalismThe Electome project is a machine-driven mapping and analysis of public sphere content and\u2026",
"meta": "in Social Machines #computer vision #artificial intelligence #data +6\u00a0more"
},
{
"href": "\/projects\/unbounded-high-dynamic-range-photography-using-a-modulo-camera\/overview\/",
"title": "Unbounded high dynamic range photography using a modulo camera",
"eyebrow": "Project",
"description": "We present a novel framework to extend the dynamic range of images called Unbounded High Dynamic Range (UHDR) photography with a modulo cam\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/theory-unifying-ray-and-wavefront-lightfield-propagation\/overview\/",
"title": "Theory unifying ray and wavefront lightfield propagation",
"eyebrow": "Project",
"description": "This work focuses on bringing powerful concepts from wave optics to the creation of new algorithms and applications for computer vision and\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/second-skin-motion-capture-with-actuated-feedback-for-motor-learning\/overview\/",
"title": "Second Skin: Motion capture with actuated feedback for motor learning",
"eyebrow": "Project",
"description": "We have created a 3D motion-tracking system with automatic, real-time vibrotactile feedback and an assembly of photo-sensors, infrared proj\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/reflectance-acquisition-using-ultrafast-imaging\/overview\/",
"title": "Reflectance acquisition using ultrafast imaging",
"eyebrow": "Project",
"description": "We demonstrate a new technique that allows a camera to rapidly acquire reflectance properties of objects \"in the wild\" from a single viewpo\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/photocloud-personal-to-shared-moments-with-angled-graphs-of-pictures\/overview\/",
"title": "PhotoCloud: Personal to shared moments with angled graphs of pictures",
"eyebrow": "Project",
"description": "We present a near-real-time system for interactively exploring a collectively captured moment without explicit 3D reconstruction. Our syste\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/optical-brush-enabling-deformable-imaging-interfaces\/overview\/",
"title": "Optical Brush: Enabling deformable imaging interfaces",
"eyebrow": "Project",
"description": "Our deformable camera exploits new, flexible form factors for imaging in turbid media. In this study we enable a brush-like form factor wit\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/new-methods-in-time-of-flight-imaging\/overview\/",
"title": "New methods in time-of-flight imaging",
"eyebrow": "Project",
"description": "Time-of-flight (ToF) cameras are commercialized consumer cameras that provide a depth map of a scene, with many applications in computer vi\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/netra-smartphone-add-on-for-eye-tests\/overview\/",
"title": "NETRA: Smartphone add-on for eye tests",
"eyebrow": "Project",
"description": "Can a person look at a portable display, click on a few buttons, and recover his or her refractive condition? Our optometry solution combin\u2026",
"meta": "in Camera Culture #bioengineering #consumer electronics #health +1\u00a0more"
},
{
"href": "\/projects\/lenschat-sharing-photos-with-strangers\/overview\/",
"title": "LensChat: Sharing photos with strangers",
"eyebrow": "Project",
"description": "With networked cameras in everyone's pockets, we are exploring the practical and creative possibilities of public imaging. LensChat allows \u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/inverse-problems-in-time-of-flight-imaging\/overview\/",
"title": "Inverse problems in time-of-flight imaging",
"eyebrow": "Project",
"description": "We are exploring mathematical modeling of time-of-flight imaging problems and solutions.",
"meta": "in Camera Culture #imaging"
},
{
"href": "\/projects\/imaging-through-scattering-media-using-femtophotography\/overview\/",
"title": "Imaging through scattering media using femtophotography",
"eyebrow": "Project",
"description": "We use time-resolved information in an iterative optimization algorithm to recover reflectance of a three-dimensional scene hidden behind a\u2026",
"meta": "in Camera Culture #imaging"
},
{
"href": "\/projects\/identi-wheez-a-device-for-in-home-diagnosis-of-asthma\/overview\/",
"title": "Identi-Wheez: A device for in-home diagnosis of asthma",
"eyebrow": "Project",
"description": "Asthma is the most common chronic illness among children. The skills required to diagnose it make it an even greater concern. Our solution \u2026",
"meta": "in Advancing Wellbeing \u00b7 Camera Culture #health #wearable computing"
},
{
"href": "\/projects\/hyderabad-eye-health-collaboration-with-lvp\/overview\/",
"title": "Hyderabad eye health collaboration with LVP",
"eyebrow": "Project",
"description": "We believe that tough global health problems require an innovation pipeline. We must bring together the people and providers facing health \u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/high-frequency-lidar-using-beat-notes\/overview\/",
"title": "High-frequency LIDAR using beat notes",
"eyebrow": "Project",
"description": "Time of Flight 3D cameras like the Microsoft Kinect are prevalent in computer vision and computer graphics. In such devices, the power of a\u2026",
"meta": "in Camera Culture #imaging"
},
{
"href": "\/projects\/health-tech-innovations-with-tata-trusts-mumbai\/overview\/",
"title": "Health-tech innovations with Tata Trusts, Mumbai",
"eyebrow": "Project",
"description": "We believe that tough global health problems require an innovation pipeline. We must bring together the people and providers facing health \u2026",
"meta": "in Emerging Worlds \u00b7 Camera Culture"
},
{
"href": "\/projects\/imaging-without-a-lens-and-only-a-few-pixels\/overview\/",
"title": "Efficient lensless imaging with a femto-pixel",
"eyebrow": "Project",
"description": "Lensless imaging with compressive ultrafast sensingTraditional cameras require a lens and a mega-pixel sensor to capture images. The lens f\u2026",
"meta": "in Camera Culture #sensors #imaging #computer science"
},
{
"href": "\/projects\/blind-and-reference-free-fluorescence-lifetime-estimation-via-consumer-time-of-flight-sensors\/overview\/",
"title": "Blind and reference-free fluorescence lifetime estimation via consumer time-of-flight sensors",
"eyebrow": "Project",
"description": "Fluorescence lifetime imaging is a significant bio-imaging tool that finds important applications in life-sciences. Widely known applicatio\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/architecture-selection-for-deep-neural-networks\/overview\/",
"title": "Architecture selection for deep neural networks",
"eyebrow": "Project",
"description": "We introduce MetaQNN, a meta-modeling algorithm based on reinforcement learning to automatically generate high-performing CNN architectures\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/aneye-extending-the-reach-of-anterior-segment-ophthalmic-imaging\/overview\/",
"title": "AnEye: Extending the reach of anterior segment ophthalmic imaging",
"eyebrow": "Project",
"description": "Eye exams via a slit lamp are critical in early diagnosis of diseases such as cataracts, corneal injury, and pterygia, in order to avert vi\u2026",
"meta": "in Emerging Worlds \u00b7 Camera Culture"
},
{
"href": "\/projects\/measuring-arousal-during-therapy-for-children-with-autism-and-adhd\/overview\/",
"title": "Measuring arousal during therapy for children with autism and ADHD",
"eyebrow": "Project",
"description": "Physiological arousal is an important part of occupational therapy for children with autism and ADHD, but therapists do not have a way to o\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/galvr-a-novel-collaboration-interface-using-gvs\/overview\/",
"title": "A VR Collaboration Interface Using Galvanic Vestibular Stimulation",
"eyebrow": "Project",
"description": "GVS or galvanic vestibular stimulation is a technology that directly affects a user's vestibular system by altering their sense of balance \u2026",
"meta": "in Fluid Interfaces #technology"
},
{
"href": "\/projects\/brightbeat\/overview\/",
"title": "BrightBeat: Effortlessly influencing breathing for cultivating calmness and focus",
"eyebrow": "Project",
"description": "The relationship between breathing and self-reported stress is bidirectional. Respiration pattern is an indicator of stress, but it can als\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #health #wearable computing #affective computing +2\u00a0more"
},
{
"href": "\/projects\/the-ripple-effect-your-are-more-influential-than-you-think\/overview\/",
"title": "The Ripple Effect: You are more influential than you think",
"eyebrow": "Project",
"description": "The well-known \"small-world\" phenomenon indicates that an individual can be connected with any other in the world through a limited number \u2026",
"meta": "in Human Dynamics #data #social science #machine learning +1\u00a0more"
},
{
"href": "\/projects\/robochain-a-secure-data-sharing-framework-for-human-robot-interaction\/overview\/",
"title": "RoboChain: A secure data-sharing framework for human-robot interaction",
"eyebrow": "Project",
"description": "A learning framework for secure, decentralized, computationally efficient data and model sharing among multiple robot units installed at m\u2026",
"meta": "in Human Dynamics #robotics #artificial intelligence #data +10\u00a0more"
},
{
"href": "\/projects\/recurrent-neural-network-in-context-free-next-location-prediction\/overview\/",
"title": "Recurrent neural network in context-free next-location prediction",
"eyebrow": "Project",
"description": "Location prediction is a critical building block in many location-based services and transportation management. This project explores the i\u2026",
"meta": "in Human Dynamics #data #transportation #machine learning +1\u00a0more"
},
{
"href": "\/projects\/openpds-saferanswers-protecting-the-privacy-of-metadata\/overview\/",
"title": "openPDS\/ SaferAnswers: Protecting the privacy of metadata",
"eyebrow": "Project",
"description": "In a world where sensors, data storage, and processing power are too cheap to meter, how do you ensure that users can realize the full valu\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/on-the-reidentifiability-of-credit-card-metadata\/overview\/",
"title": "On the re-identifiability of credit card metadata",
"eyebrow": "Project",
"description": "Even when real names and other personal information are stripped from metadata datasets, it is often possible to use just a few pieces of i\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/measuring-and-reducing-social-segregation-in-cities\/overview\/",
"title": "Measuring and reducing social segregation in cities",
"eyebrow": "Project",
"description": "We use high-resolution geospatial data collected from mobile phones to measure social segregation at an unprecedented resolution in cities \u2026",
"meta": "in Human Dynamics #urban planning #social science #social change"
},
{
"href": "\/projects\/deepshop-understanding-purchase-patterns-via-deep-learning\/overview\/",
"title": "DeepShop: Understanding purchase patterns via deep learning",
"eyebrow": "Project",
"description": "The recent availability of quantitative behavioral data provides an opportunity to study human behavior at unprecedented scale. Using large\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/data-for-refugees\/overview\/",
"title": "Data for Refugees",
"eyebrow": "Project",
"description": "Data for refugees is a big data challenge whereby Turk Telekom opens a large dataset of anonymized mobile phone records to research groups \u2026",
"meta": "in Human Dynamics #social science #civic action #data science"
},
{
"href": "\/projects\/collective-sensemaking-in-cryptocurrency-community\/overview\/",
"title": "Collective sensemaking in cryptocurrency community",
"eyebrow": "Project",
"description": "Participants in cryptocurrency markets are in constant communication with each other about the latest coins&nbsp;and news releases. Do thes\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/bandicoot-a-python-toolbox-for-mobile-phone-metadata\/overview\/",
"title": "bandicoot: A Python toolbox for mobile phone metadata",
"eyebrow": "Project",
"description": "bandicoot provides a complete, easy-to-use environment for researchers using mobile phone metadata. It allows them to easily load their dat\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/skinbot-a-wearable-skin-climbing-robot\/overview\/",
"title": "SkinBot: A wearable, skin-climbing robot",
"eyebrow": "Project",
"description": "We introduce SkinBot: a lightweight robot that moves over the skin's surface with a two-legged suction-based locomotion mechanism and captu\u2026",
"meta": "in Responsive Environments \u00b7 Affective Computing #robotics #health #human-machine interaction +3\u00a0more"
},
{
"href": "\/projects\/sensortape-modular-and-programmable-3d-aware-dense-sensor-network-on-a-tape\/overview\/",
"title": "SensorTape: Modular and programmable 3D-aware dense sensor network on a tape",
"eyebrow": "Project",
"description": "SensorTape is a modular and dense sensor network in a form factor of a tape. SensorTape is composed of interconnected and programmable sens\u2026",
"meta": "in Living Mobile \u00b7 Responsive Environments"
},
{
"href": "\/projects\/sensorchimes-musical-mapping-for-sensor-networks\/overview\/",
"title": "SensorChimes: Musical mapping for sensor networks",
"eyebrow": "Project",
"description": "SensorChimes aims to create a new canvas for artists leveraging ubiquitous sensing and data collection. Real-time data from environmental s\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/prosthetic-sensor-networks-factoring-attention-proprioception-and-sensory-coding\/overview\/",
"title": "Prosthetic Sensor Networks: Factoring attention, proprioception, and sensory coding",
"eyebrow": "Project",
"description": "Sensor networks permeate our built and natural environments, but our means for interfacing to the resultant data streams have not evolved m\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/low-power-gesture-input-with-wrist-worn-pressure-sensors\/overview\/",
"title": "Low-power gesture input with wrist-worn pressure sensors",
"eyebrow": "Project",
"description": "We demonstrate an always-available, on-body gestural interface. Using an array of pressure sensors worn around the wrist, it can distinguis\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/fingersynth-wearable-transducers-for-exploring-the-environment-through-sound\/overview\/",
"title": "FingerSynth: Wearable transducers for exploring the environment through sound",
"eyebrow": "Project",
"description": "The FingerSynth is a wearable musical instrument made up of a bracelet and set of rings that enables its players to produce sound by touchi\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/experiential-lighting-new-user-interfaces-for-lighting-control\/overview\/",
"title": "Experiential Lighting: New user interfaces for lighting control",
"eyebrow": "Project",
"description": "The vision of pervasive computing is now mainstream. These connected devices permeate every aspect of our lives. Yet, we remain tethered to\u2026",
"meta": "in Responsive Environments #energy #human-machine interaction #sensors +1\u00a0more"
},
{
"href": "\/projects\/doppelmarsh-cross-reality-environmental-sensor-data-browser\/overview\/",
"title": "Doppelmarsh: Cross-reality environmental sensor data browser",
"eyebrow": "Project",
"description": "Doppelmarsh is a cross-reality sensor data browser built for experimenting with presence and multimodal sensory experiences. Built on evolv\u2026",
"meta": "in Responsive Environments #environment #sensors"
},
{
"href": "\/projects\/heartbit\/overview\/",
"title": "HeartBit",
"eyebrow": "Project",
"description": "HeartBit is an interface designed for haptic heart rate biofeedback. A handheld heart beats alongside your own, mirroring the size, weight,\u2026",
"meta": "in Fluid Interfaces #augmented reality #consumer electronics #health +4\u00a0more"
},
{
"href": "\/projects\/nevermind\/overview\/",
"title": "NeverMind: Using AR for memorization",
"eyebrow": "Project",
"description": "NeverMind is an interface and application designed to support human memory. We combine the memory palace memorization method with augmented\u2026",
"meta": "in Fluid Interfaces #augmented reality #extended intelligence #health +2\u00a0more"
},
{
"href": "\/projects\/unspoken-news\/overview\/",
"title": "Unspoken News",
"eyebrow": "Project",
"description": "How something is presented can be as important as the message itself.In the age of political polarization and election meddling, it is of v\u2026",
"meta": "in Viral Communications #machine learning"
},
{
"href": "\/projects\/causal-influence-intrinsic-social-motivation-for-multi-agent-reinforcement-learning\/overview\/",
"title": "Causal Influence Intrinsic Social Motivation for Multi-Agent Reinforcement Learning",
"eyebrow": "Project",
"description": "Teaching multiple AI agents to coordinate their behavior represents a challenging task, that can be difficult to achieve without training a\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/votomosaic\/overview\/",
"title": "votoMosaic",
"eyebrow": "Project",
"description": "A tapestry where each pixel represents a pledge by an individual to vote. Anyone can participate and watch the growing and changing image t\u2026",
"meta": "in Viral Communications #civic media #data visualization #civic action"
},
{
"href": "\/projects\/conversation-trees-1\/overview\/",
"title": "Conversation Trees",
"eyebrow": "Project",
"description": "An alternative viewing experience for large-scale conversations on Twitter. Each conversation tree visualizes the structure of replies to a\u2026",
"meta": "#social networks #social media #data visualization"
},
{
"href": "\/projects\/autonomic-nervous-system-activity-in-epilepsy\/overview\/",
"title": "Autonomic Nervous System Activity in Epilepsy",
"eyebrow": "Project",
"description": "We are performing long-term measurements of autonomic nervous system (ANS) activity on patients with epilepsy. In certain cases, autonomic \u2026",
"meta": "in Affective Computing #health #wearable computing"
},
{
"href": "\/projects\/viralcasting\/overview\/",
"title": "Broadercasting",
"eyebrow": "Project",
"description": "Ditch the truck. Live, collaborative broadcasting through mixed reality.",
"meta": "in Viral Communications #augmented reality"
},
{
"href": "\/projects\/boycott\/overview\/",
"title": "Boycott!",
"eyebrow": "Project",
"description": "A web browser extension that reveals less well-known aspects of corporate public behavior such as environmental respect and political bias.\u2026",
"meta": "in Viral Communications #civic technology"
},
{
"href": "\/projects\/relativoty\/overview\/",
"title": "RelatiVotey",
"eyebrow": "Project",
"description": "Many people think their vote doesn't count\u2014that a single vote would not change an election's outcome\u2014and they stay home on Election Day. Ho\u2026",
"meta": "in Viral Communications #civic media #civic technology #data visualization"
},
{
"href": "\/projects\/news-graph\/overview\/",
"title": "News Graph",
"eyebrow": "Project",
"description": "This project aims to show a different picture of the data behind the news, looking at how we analyze, represent, and interact with it.&nbsp\u2026",
"meta": "in Viral Communications \u00b7 Ultimate Media #data #networks #interfaces +1\u00a0more"
},
{
"href": "\/projects\/election-arg\/overview\/",
"title": "Election ARG",
"eyebrow": "Project",
"description": "Only 40% of the eligible population votes in the typical US midterm election, and among young people turnout is even lower. In this experim\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/8k-time-into-space\/overview\/",
"title": "8K Time into Space",
"eyebrow": "Project",
"description": "8K Time into Space is a user interface for a video exploration system with an 8K display. 8K is an ultra high-definition video system and i\u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/language-simplification\/overview\/",
"title": "Language Simplification",
"eyebrow": "Project",
"description": "The Language Simplification project is developing automatic methods to simplify complex texts to be more easily read and understood by a br\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/mathland\/overview\/",
"title": "Mathland: Play with math in mixed reality",
"eyebrow": "Project",
"description": "Mathematical experiences are intrinsic to our everyday lives, yet mathematics education is mostly confined to textbooks. Seymour Papert use\u2026",
"meta": "in Fluid Interfaces #augmented reality #learning"
},
{
"href": "\/projects\/handson-a-gestural-system-for-remote-collaboration-using-augmented-reality\/overview\/",
"title": "HandsOn: A gestural system for remote collaboration using augmented reality",
"eyebrow": "Project",
"description": "2D screens, even stereoscopic ones, limit our ability to interact with and collaborate on 3D data. We believe that an augmented reality sol\u2026",
"meta": "in Terrestrial Sensing \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/vr-physics-lab\/overview\/",
"title": "Electrostatic Playground: A multi-user virtual reality physics learning experience",
"eyebrow": "Project",
"description": "Room-scale virtual reality opens up exciting new possibilities for exploratory learning. Phenomena that otherwise cannot be experienced dir\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/cocoverse\/overview\/",
"title": "CocoVerse: A playground for co-creation and communication in virtual reality",
"eyebrow": "Project",
"description": "Real-time collaborative self-expression in virtual reality&nbsp;",
"meta": "in Fluid Interfaces #virtual reality #communications"
},
{
"href": "\/projects\/using-the-voice-as-a-tool-for-self-reflection\/overview\/",
"title": "Using the voice as a tool for self-reflection",
"eyebrow": "Project",
"description": "Our voice is an important part of our individuality. From the voices of others, we understand a wealth of non-linguistic information, such \u2026",
"meta": "in Advancing Wellbeing \u00b7 Opera of the Future #voice"
},
{
"href": "\/projects\/spaces-that-perform-themselves-1\/overview\/",
"title": "Spaces that Perform Themselves",
"eyebrow": "Project",
"description": "As we generally experience on earth, there is no space without sound and there is no sound without space. Building on the understanding of \u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/sonic-enrichment-at-the-zoo\/overview\/",
"title": "Sonic enrichment at the zoo",
"eyebrow": "Project",
"description": "This project is a collaboration between the MIT Media Lab and the San Diego Zoo to design and build interactive sonic enrichment systems fo\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/empathy-and-the-future-of-experience\/overview\/",
"title": "Empathy and the future of experience",
"eyebrow": "Project",
"description": "Nothing is more important in today's troubled world than the process of eliminating prejudice and misunderstanding, and replacing them with\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/city-symphonies-massive-musical-collaboration\/overview\/",
"title": "City Symphonies: Massive musical collaboration",
"eyebrow": "Project",
"description": "The City Symphony project by the Opera of the Future group brings creative musical participation to everyone while encouraging collaboratio\u2026",
"meta": "in Opera of the Future #design #art #artificial intelligence +5\u00a0more"
},
{
"href": "\/projects\/ambisonic-surround-sound-audio-compression\/overview\/",
"title": "Ambisonic surround-sound audio compression",
"eyebrow": "Project",
"description": "Traditional music production and studio engineering depends on dynamic range compression audio signal processors that precisely and dynamic\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/chronosonogy-sonic-sensory-time-shifting\/overview\/",
"title": "Chronosonogy: Sonic sensory time shifting",
"eyebrow": "Project",
"description": "Chronosonogy was born through extending the neuroscience research of Teki Et Al, which reveals \"Distinct Neural Substrates of Duration-Base\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/but-not-simpler\/overview\/",
"title": "\u2026but not simpler\u2026",
"eyebrow": "Project",
"description": "This collection of Tod Machover\u2019s music focuses on chamber and orchestral music composed during the last decade, both with and without elec\u2026",
"meta": "in Opera of the Future #robotics #music #performance"
},
{
"href": "\/projects\/spatial-flux\/overview\/",
"title": "Spatial Flux: Body and architecture in space",
"eyebrow": "Project",
"description": "Structurally, zero gravity means that we do not have to contend with architecture's greatest arch-nemesis, gravity. This opens up a new wor\u2026",
"meta": "in City Science \u00b7 Space Exploration Initiative #design #architecture #art +4\u00a0more"
},
{
"href": "\/projects\/traffic-andorra\/overview\/",
"title": "Dynamic Traffic Prediction in Andorra: a Bayesian network approach",
"eyebrow": "Project",
"description": "Data Fusion&nbsp;for Dynamic Traffic PredictionTraffic congestion has huge negative impacts on the productivity, health and personal lives \u2026",
"meta": "in City Science #data #networks #engineering"
},
{
"href": "\/projects\/affinity-tensorflow\/overview\/",
"title": "Affinity: Deep Learning API for Molecular Geometry",
"eyebrow": "Project",
"description": "Affinity is a high-level machine learning API (Application Programming Interface) dedicated exclusively to molecular geometry. Affinity is \u2026",
"meta": "in Molecular Machines"
},
{
"href": "\/projects\/evolutron\/overview\/",
"title": "Evolutron: Deep Learning for Protein Design",
"eyebrow": "Project",
"description": "Technological advances in the past decade have allowed us to take a close look at the proteomes of living organisms. As a result, more than\u2026",
"meta": "in Molecular Machines #synthetic biology #machine learning"
},
{
"href": "\/projects\/transform-adaptive-and-dynamic-furniture\/overview\/",
"title": "TRANSFORM: Adaptive and dynamic furniture",
"eyebrow": "Project",
"description": "Introducing TRANSFORM, a shape-changing desk. TRANSFORM is an exploration of how shape display technology can be integrated into our everyd\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/transform\/overview\/",
"title": "TRANSFORM",
"eyebrow": "Project",
"description": "TRANSFORM fuses technology and design to celebrate its transformation from still furniture to a dynamic machine driven by a stream of data \u2026",
"meta": "in Terrestrial Sensing \u00b7 Tangible Media #design #human-computer interaction #sensors +2\u00a0more"
},
{
"href": "\/projects\/ultrasound-prosthetic-interface-design\/overview\/",
"title": "Ultrasound imaging for transtibial prosthetic interface design",
"eyebrow": "Project",
"description": "\u200bIn the United States, there are an estimated 1.7 million people living with amputation, with that number expected to double by 2050. Compl\u2026",
"meta": "in Biomechatronics #bioengineering #health"
},
{
"href": "\/projects\/tethered-robotic-system-for-understanding-human-movements\/overview\/",
"title": "Tethered robotic system for understanding human movements",
"eyebrow": "Project",
"description": "This project aims to build a powerful system as a scientific tool for bridging the gap in the literature by determining the dynamic biomech\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/variable-impedance-prosthetic-vipr-socket-design\/overview\/",
"title": "Automated and data-driven computational design of subject-specific prosthetic sockets",
"eyebrow": "Project",
"description": "Complications of prosthetic leg use in persons with lower extremity amputation often occur at the prosthetic socket, and includes delayed w\u2026",
"meta": "in Biomechatronics"
},
{
"href": "\/projects\/studying-the-evolution-of-gene-drive-systems\/overview\/",
"title": "Studying the evolution of gene drive systems",
"eyebrow": "Project",
"description": "How will gene drive systems evolve once released into the wild? Can they be reliably overwritten and blocked by immunizing reversal drives?\u2026",
"meta": "in Sculpting Evolution #bioengineering #genetics #biology"
},
{
"href": "\/projects\/tools-to-investigate-societal-impacts-of-robot-ai\/overview\/",
"title": "Tools to investigate societal impacts of robots and AI",
"eyebrow": "Project",
"description": "Artificial intelligence (AI) agents in an embodied form, such as Jibo, Amazon Alexa, and Google Home, are increasingly becoming part of our\u2026",
"meta": "in Personal Robots #design #human-computer interaction #artificial intelligence +3\u00a0more"
},
{
"href": "\/projects\/text-to-motion-expressive-robot-motion-sequencing\/overview\/",
"title": "Text-to-Motion: Automatic sequencing of animative robot motions",
"eyebrow": "Project",
"description": "Text-to-Motion generates a sequence of contingent robot animations to accompany the sentiment analyzed from an input sentence and its spoke\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/curious-learning\/overview\/",
"title": "Curious Learning: Understanding learning behaviors for early literacy",
"eyebrow": "Project",
"description": "Early literacy plays an important role in a child's future. However, the reality is that over 57 million children have no access to a schoo\u2026",
"meta": "in Personal Robots #robotics #data #learning +1\u00a0more"
},
{
"href": "\/projects\/relationship-assessments\/overview\/",
"title": "Assessing Children's Relationships with Social Robots",
"eyebrow": "Project",
"description": "Social robots are increasingly being developed for long-term interactions with children in domains such as healthcare, education, therapy, \u2026",
"meta": "in Personal Robots \u00b7 ML Learning #kids #social robotics #long-term interaction"
},
{
"href": "\/projects\/turbotrack-3d-backscatter-localization-for-fine-grained\/overview\/",
"title": "TurboTrack: 3D backscatter localization for fine-grained robotics",
"eyebrow": "Project",
"description": "TurboTrack is a 3D localization system for fine-grained robotic tasks, with unique capability to localize backscatter nodes with sub-centim\u2026",
"meta": "in Signal Kinetics #robotics #environment #health +8\u00a0more"
},
{
"href": "\/projects\/health-sensing-human-computer-interaction\/overview\/",
"title": "Health sensing using wireless signals",
"eyebrow": "Project",
"description": "Today\u2019s health sensors (which monitor breathing, heartbeats, steps, etc.) require their users to wear them on their bodies. In contrast, ou\u2026",
"meta": "in Signal Kinetics #artificial intelligence #bioengineering #health +1\u00a0more"
},
{
"href": "\/projects\/conversational-health-loneliness-on-reddit\/overview\/",
"title": "Conversational Health: Loneliness on Reddit",
"eyebrow": "Project",
"description": "Loneliness is becoming a global epidemic. As many as 33 percent of Americans report being chronically lonely, with similar percentages bein\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/spoken-opinion-summarization\/overview\/",
"title": "Spoken Opinion Summarization",
"eyebrow": "Project",
"description": "Talk radio exerts significant influence on the political and social dynamics of the United States, but labor-intensive data collection and \u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/local-voices-network\/overview\/",
"title": "Cortico: The Local Voices Network",
"eyebrow": "Project",
"description": "What is Cortico and the Local Voices Network?Cortico, a non-profit 501(c)(3) in cooperation with MIT\u2019s Laboratory for Social Machines, seek\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/radio-days\/overview\/",
"title": "Radio Days",
"eyebrow": "Project",
"description": "Following the 2016 election, the entirety of the nation became conscious of its polarization. According to a study by the National Bureau o\u2026",
"meta": "in Viral Communications #civic media #mapping #data visualization"
},
{
"href": "\/projects\/remi\/overview\/",
"title": "reMi",
"eyebrow": "Project",
"description": "Translating ambient sounds of moment into tangible and shareable memories through animated paperWe present a tangible memory notebook\u2014reMi\u2014\u2026",
"meta": "in Tangible Media #art #consumer electronics #interfaces"
},
{
"href": "\/projects\/cityscope_playground\/overview\/",
"title": "CityScope PlayGround: MIT East Campus",
"eyebrow": "Project",
"description": "This project depicts the design, deployment and operation of a Tangible Regulation Platform, a physical-technological apparatus made for th\u2026",
"meta": "in City Science #computer vision #architecture #augmented reality +5\u00a0more"
},
{
"href": "\/projects\/zeron-levitated-tangible-interface\/overview\/",
"title": "ZeroN: Levitated Tangible Interface",
"eyebrow": "Project",
"description": "Imagine a physical object that floats through the air, unconstrained by gravity, which can move freely to display the motion of a planet in\u2026",
"meta": "in Tangible Media #imaging #space #gesture interface +1\u00a0more"
},
{
"href": "\/projects\/q-ai-that-makes-the-graph-of-your-memories\/overview\/",
"title": "Q: An intelligent conversational interface for personal data labeling",
"eyebrow": "Project",
"description": "With the exponential increase of personal data in the forms of images, videos, emails, and social media posts, the time is ripe for buildin\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/escape-pod-1\/overview\/",
"title": "Escape Pod",
"eyebrow": "Project",
"description": "The esc-Pod&nbsp; (or Escape Pod) is an exploratory platform for researchers investigating moments of refuge within our bustling work lives\u2026",
"meta": "in City Science #architecture #human-machine interaction #sensors"
},
{
"href": "\/projects\/daisydrives\/overview\/",
"title": "Daisy Drives",
"eyebrow": "Project",
"description": "Who should decide whether, when, and how to alter the environment? These are hard questions, especially when the decisions will impact peop\u2026",
"meta": "in Sculpting Evolution #bioengineering #genetics #synthetic biology +1\u00a0more"
},
{
"href": "\/projects\/cognimates\/overview\/",
"title": "Cognimates: Collaborative creative learning with embodied intelligent agents",
"eyebrow": "Project",
"description": "Cognimates&nbsp;is a platform where parents and children (7-10 years old) participate in creative programming activities in which they lea\u2026",
"meta": "in Personal Robots #robotics #human-computer interaction #artificial intelligence +7\u00a0more"
},
{
"href": "\/projects\/mind-in-the-machine\/overview\/",
"title": "Mind in the Machine: Psyche in the age of mechanical production",
"eyebrow": "Project",
"description": "A technology that is thousands of years old, knitting is imbued with tradition, myth, and storytelling\u2014to knit is to embody the work of our\u2026",
"meta": "in Hacking Manufacturing"
},
{
"href": "\/projects\/hacking-manufacturing-2017\/overview\/",
"title": "Hacking Manufacturing 2017",
"eyebrow": "Project",
"description": "IdeaA lab is where unique ideas are generated and early prototypes are synthesized. A factory is where designs are mass produced and qualit\u2026",
"meta": ""
},
{
"href": "\/projects\/orbit-weaver\/overview\/",
"title": "Orbit Weaver",
"eyebrow": "Project",
"description": "Gravity anchors all existence on Earth.It pulls a chaotic world to one single point in every moment of life. Even though gravity is everywh\u2026",
"meta": "in Space Exploration Initiative #design #agriculture #architecture +8\u00a0more"
},
{
"href": "\/projects\/urban-swarms\/overview\/",
"title": "Urban Swarms",
"eyebrow": "Project",
"description": "Modern cities have to respond to the growing demands of more efficient and sustainable urban development, as well as an increased quality o\u2026",
"meta": "in Human Dynamics #robotics #artificial intelligence #data +10\u00a0more"
},
{
"href": "\/projects\/robot-vocal-expressiveness\/overview\/",
"title": "Robot Expressiveness Affects Children's Learning",
"eyebrow": "Project",
"description": "Prior research with preschool children has established that book reading, especially when children are encouraged to actively process the s\u2026",
"meta": "in Personal Robots \u00b7 ML Learning #robotics #kids #learning +2\u00a0more"
},
{
"href": "\/projects\/andorra-tourism\/overview\/",
"title": "Andorra | Tourism",
"eyebrow": "Project",
"description": "View the main City Science Andorra project profile.With more than eight million visitors a year, tourism represents almost 30% of the econo\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/slurp\/overview\/",
"title": "Slurp",
"eyebrow": "Project",
"description": "Slurp is a tangible interface for manipulating abstract digital information as if it were water. Taking the form of an eyedropper, Slurp ca\u2026",
"meta": "in Tangible Media"
},
{
"href": "\/projects\/diastrophisms\/overview\/",
"title": "Diastrophisms",
"eyebrow": "Project",
"description": "Diastrophisms is a sound installation with a modular system that sends images through rhythmic patterns. It is built on a set of debris fro\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/psychophysiological-correlates-of-wellbeing-in-office-workers\/overview\/",
"title": "Psychophysiological correlates of wellbeing in office workers",
"eyebrow": "Project",
"description": "In this SIG, lasting 18 months, MIT proposes to design and develop algorithms for novel low-cost &amp; non-invasive mental condition estima\u2026",
"meta": ""
},
{
"href": "\/projects\/ivn-in-vivo-networking\/overview\/",
"title": "In-Vivo Networking: Powering and communicating with tiny battery-free devices inside the body",
"eyebrow": "Project",
"description": "In-Vivo Networking (IVN)&nbsp;is the new technology that can wirelessly power and communicate with tiny devices implanted deep within the h\u2026",
"meta": "in Signal Kinetics #robotics #environment #health +5\u00a0more"
},
{
"href": "\/projects\/transformative-appetite\/overview\/",
"title": "Transformative Appetite",
"eyebrow": "Project",
"description": "We developed a concept of transformative appetite, where edible 2D films made of common food materials (protein, cellulose or starch) can t\u2026",
"meta": "#design #food"
},
{
"href": "\/projects\/the-telemetron-adventures\/overview\/",
"title": "The Telemetron Adventures",
"eyebrow": "Project",
"description": "The&nbsp;Telemetron&nbsp;is a musical instrument specially designed to be performed in microgravity environments. It is created to explore \u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/olive-ai-nutrition-management\/overview\/",
"title": "Olive - AI Nutrition Management",
"eyebrow": "Project",
"description": "Nutritional assessment is an extremely important problem for every American. Studies suggest that as many as 90% of Americans fall short of\u2026",
"meta": "in Social Machines"
},
{
"href": "\/projects\/learning-food-quality-and-safety-using-wireless-stickers\/overview\/",
"title": "RFIQ: Food quality and safety detection using wireless stickers",
"eyebrow": "Project",
"description": "\u200bWe have developed a wireless system that leverages the inexpensive RFID tags already on hundreds of billions of products to sense potentia\u2026",
"meta": "in Signal Kinetics #artificial intelligence #food #health +8\u00a0more"
},
{
"href": "\/projects\/finding-places\/overview\/",
"title": "FindingPlaces",
"eyebrow": "Project",
"description": "What is FindingPlaces?In reaction to the sudden arrival of tens of thousands of refugees in the city of Hamburg (DE) in 2015, the Lord Mayo\u2026",
"meta": "in City Science #human-computer interaction #architecture #government +1\u00a0more"
},
{
"href": "\/projects\/_amoeba\/overview\/",
"title": "Amoetecture",
"eyebrow": "Project",
"description": "Amoeba Wall: a context aware wall system. Amoetecture is a set of amoeba-like dynamic spatial elements, including transformable floors, cei\u2026",
"meta": "in Changing Places \u00b7 City Science #architecture #human-machine interaction"
},
{
"href": "\/projects\/amoeba-wall\/overview\/",
"title": "Amoeba Wall: A context-aware wall system",
"eyebrow": "Project",
"description": "Amoeba Wall: A context aware wall system:&nbsp;Amoetecture is a set of amoeba-like dynamic spatial elements, including transformable floors\u2026",
"meta": "#robotics #architecture"
},
{
"href": "\/projects\/silverwire\/overview\/",
"title": "SilverWire",
"eyebrow": "Project",
"description": "SilverWire is a tool for increasing socialization and augmenting communication among communities that actively publish content on the World\u2026",
"meta": "in Gray Matters \u00b7 Electronic Publishing"
},
{
"href": "\/projects\/email-equations\/overview\/",
"title": "Email Equations",
"eyebrow": "Project",
"description": "Email lists are useful for communicating with groups, but it is difficult to refine the intended audience. When planning a surprise party, \u2026",
"meta": "in Electronic Publishing"
},
{
"href": "\/projects\/every-sign-of-life\/overview\/",
"title": "Every Sign of Life",
"eyebrow": "Project",
"description": "Every Sign of Life challenges assumptions about how we might think and feel about personal health monitoring. It is an exploration of how t\u2026",
"meta": "in Gray Matters \u00b7 Electronic Publishing"
},
{
"href": "\/projects\/eradio-empowerment-through-community-electronic-radio\/overview\/",
"title": "eRadio: Empowerment Through Community Electronic Radio",
"eyebrow": "Project",
"description": "eRadio: Empowerment Through Community Electronic Radio is a set of logistics and electronic tools designed to help underserved communities \u2026",
"meta": "in Electronic Publishing"
},
{
"href": "\/projects\/talktv\/overview\/",
"title": "talkTV",
"eyebrow": "Project",
"description": "This project explores how television fans appropriate video for personal expression and how technology can support such creative appropriat\u2026",
"meta": "in Electronic Publishing"
},
{
"href": "\/projects\/whos-got-game\/overview\/",
"title": "Who's Got Game?",
"eyebrow": "Project",
"description": "Many people play strategy games against computer opponents, but don't have a clear understanding of how they function. Building your own De\u2026",
"meta": "in Electronic Publishing"
},
{
"href": "\/projects\/electronic-publishing\/overview\/",
"title": "Electronic Publishing",
"eyebrow": "Project",
"description": "The pioneering research of the Electronic Publishing group has explored a \"constructionist\" approach to the development of personal and com\u2026",
"meta": ""
},
{
"href": "\/projects\/textnet\/overview\/",
"title": "TextNet",
"eyebrow": "Project",
"description": "TextNet is a \"distributed\" wiki. While normal wikis are designed for groups to create a single document collaboratively, TextNet is built f\u2026",
"meta": "in Computing Culture"
},
{
"href": "\/projects\/hdlsilverstringers\/overview\/",
"title": "HDL\/Silverstringers",
"eyebrow": "Project",
"description": "SilverStringers is a community-centric approach to news coverage and presentation, tapping into the strength of the older generation to dev\u2026",
"meta": "in Gray Matters \u00b7 Electronic Publishing"
},
{
"href": "\/projects\/closed-loop-optogenetics-for-peripheral-nerve-control\/overview\/",
"title": "Closed-Loop Optogenetics for Peripheral Nerve Control",
"eyebrow": "Project",
"description": "Electrical stimulation (FES) is the current clinical stimulation modality used to restore function and provide therapy in a variety of clin\u2026",
"meta": "in Biomechatronics #technology #prosthetics #bionics"
},
{
"href": "\/projects\/spaces-perform-themselves\/overview\/",
"title": "Spaces that Perform Themselves",
"eyebrow": "Project",
"description": "As we generally experience on earth, there is no space without sound and there is no sound without space. Building on the understanding of \u2026",
"meta": "#design #architecture #music +1\u00a0more"
},
{
"href": "\/projects\/a-date-with-yourself\/overview\/",
"title": "A Date with Yourself",
"eyebrow": "Project",
"description": "Identity is fluid. As we travel this journey of life, we get imprinted and we forget parts of ourselves. Older people's memories are erased\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/rhythm\/overview\/",
"title": "Rhythm: Open measurement and feedback tools for human interaction",
"eyebrow": "Project",
"description": "Rhythm is a collection of open-source tools to make it easier for researchers to examine, analyze, and augment human interaction.&nbsp;Rhyt\u2026",
"meta": "in Human Dynamics #communications #sensors #social science +4\u00a0more"
},
{
"href": "\/projects\/empowered-brains\/overview\/",
"title": "Ecology, Evolution, and Engineering for Empowered Brains",
"eyebrow": "Project",
"description": "EEEeb Spring 2019:&nbsp;&nbsp;Urban OceansMarch 24,&nbsp;April 7 and 21,&nbsp;May 19,&nbsp;June 2&nbsp;To register, please visit this link.\u2026",
"meta": "in Sculpting Evolution #ecology #environment #kids +5\u00a0more"
},
{
"href": "\/projects\/learning-to-dance-in-vr\/overview\/",
"title": "Learning to dance in VR",
"eyebrow": "Project",
"description": "Virtual reality can help realize mediated social experiences where we interact as richly with those around the world as we do with those in\u2026",
"meta": "in Fluid Interfaces #virtual reality #learning #interfaces"
},
{
"href": "\/projects\/festival-de-invencao-e-criatividade\/overview\/",
"title": "Festival of Invention and Creativity",
"eyebrow": "Project",
"description": "The Festival of Invention and Creativity (FIC) is a great celebration of the inventive, collaborative, and hands-on&nbsp; spirit&nbsp; of B\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/skrin\/overview\/",
"title": "Skrin",
"eyebrow": "Project",
"description": "Skrin is an exploration project on digitalized body skin surface using embedded electronics and prosthetics. Human skin is a means for prot\u2026",
"meta": "in Responsive Environments \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/text-editor-for-augmented-writing\/overview\/",
"title": "Text Editor for Augmented Writing",
"eyebrow": "Project",
"description": "We study augmentation of the creative writing process through a new text editor. This text editor presents short-length snippets from books\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/reflectons-mental-prostheses-for-self-reflection\/overview\/",
"title": "ReflectOns: Mental Prostheses for Self-Reflection",
"eyebrow": "Project",
"description": "ReflectOns are objects that help people think about their actions and change their behavior based on subtle, ambient nudges delivered at th\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/wave-alchemy-perception-and-reminiscence-of-expressive-moments-through-waves\/overview\/",
"title": "Wave Alchemy: Perception and Reminiscence of Expressive Moments through Waves",
"eyebrow": "Project",
"description": "It's common for us to attach different emotions to each moment in our lives, but when we capture and interact with them, we are often const\u2026",
"meta": "in Living Mobile \u00b7 Fluid Interfaces \u00b7 Viral Communications"
},
{
"href": "\/projects\/synaesthetic-recipes\/overview\/",
"title": "Synaesthetic Recipes",
"eyebrow": "Project",
"description": "This work explores a technological answer to the perennial question \"What's for dinner?\" Few of us know with great certainty the exact food\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/xlink-extensible-context-management-layer\/overview\/",
"title": "xLink: Extensible Context Management Layer",
"eyebrow": "Project",
"description": "The Context Manager is a generalized framework for connecting a variety of pervasive sensor technologies and output modalities to intellige\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/taste-modeling-and-forecasting\/overview\/",
"title": "Taste Modeling and Forecasting",
"eyebrow": "Project",
"description": "People's tastes are their systems of aesthetic judgment and preference. Taste systems are generative; understanding the tastes of friends m\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/desafio-aprendizagem-criativa-brasil-2018\/overview\/",
"title": "Desafio Aprendizagem Criativa Brasil 2018",
"eyebrow": "Project",
"description": "ATEN\u00c7\u00c3O:&nbsp;Saiu o resultado do Desafio Aprendizagem Criativa Brasil 2018! Clique aqui para conhecer os fellows e os projetos selecionado\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/holobits\/overview\/",
"title": "Holobits: Creativity and fun in Mixed Reality",
"eyebrow": "Project",
"description": "The onset of Mixed Reality as a platform offers the opportunity to create new, playful paradigms for building and fostering creativity. The\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/scissor-congruence\/overview\/",
"title": "Visualizing Scissors Congruence",
"eyebrow": "Project",
"description": "The remarkable Wallace\u2013Bolyai\u2013Gerwein theorem states that any simple polygon can be cut into finite pieces and rearranged to form any other\u2026",
"meta": "#data visualization"
},
{
"href": "\/projects\/scratch-memories\/overview\/",
"title": "Scratch Memories",
"eyebrow": "Project",
"description": "Scratch Memories is a web-based visualization tool that empowers children to celebrate and reflect on their creative journey with Scratch.&\u2026",
"meta": "in Lifelong Kindergarten #kids #learning #data visualization"
},
{
"href": "\/projects\/beeme\/overview\/",
"title": "BeeMe",
"eyebrow": "Project",
"description": "BeeMe a massive immersive social game that directly draws inspiration from popular culture, literature, performing arts, gaming, and YouTub\u2026",
"meta": "in Scalable Cooperation #artificial intelligence #gaming"
},
{
"href": "\/projects\/opening-wider-genomic-access-with-a-flexible-crispr-enzyme\/overview\/",
"title": "Opening wider genomic access with a flexible CRISPR enzyme",
"eyebrow": "Project",
"description": "The CRISPR-Cas9 system has proven to be a versatile tool for genome editing, with&nbsp;numerous implications in medicine, agriculture, bioe\u2026",
"meta": "in Molecular Machines"
},
{
"href": "\/projects\/cognimate\/overview\/",
"title": "Cognimates: collaborative creative learning with embodied intelligent agents",
"eyebrow": "Project",
"description": "Conversational agents and intelligent toys are present in children's homes and influence their development. The introduction of these devic\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/brainstorm-anima-mundi\/overview\/",
"title": "Brainstorm: Anima Mundi",
"eyebrow": "Project",
"description": "We'd like to introduce you to a very special neuroscience project that we are currently conducting in the setting of a traditional fine art\u2026",
"meta": "in Sculpting Evolution #art #genetics #synthetic biology"
},
{
"href": "\/projects\/media-scores\/overview\/",
"title": "Media Scores",
"eyebrow": "Project",
"description": "Media scores provide a means to orchestrate multiple modalities in the creation of expressive works of art and performance. New technologie\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/death-and-the-powers-global-interactive-simulcast\/overview\/",
"title": "Powers Live",
"eyebrow": "Project",
"description": "Death and the Powers: Global Interactive Simulcast",
"meta": "in Opera of the Future #music"
},
{
"href": "\/projects\/i-want-to-become-a-cephalopod\/overview\/",
"title": "I want to become a cephalopod",
"eyebrow": "Project",
"description": "\u200bA transhumanist project towards co-evolution, rooted in desireI want to become a cephalopod&nbsp;is a trans-humanist proposal for using mo\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/onwards\/overview\/",
"title": "\u00a1Onwards+Under!",
"eyebrow": "Project",
"description": "\u00a1ONWARDS + UNDER! proposes that as sea levels rise, particularly in highly populated coastal cities, the current plan to keep nature at bay\u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/your-urge-to-breathe-is-a-lie\/overview\/",
"title": "YOUR URGE TO BREATHE IS A LIE",
"eyebrow": "Project",
"description": "YOUR URGE TO BREATHE IS A LIE (a direct quote from my free-diving instructor) is a progressive approach towards innovation, human response \u2026",
"meta": "in Responsive Environments"
},
{
"href": "\/projects\/andorra-energy-environment\/overview\/",
"title": "Andorra | Energy + Environment",
"eyebrow": "Project",
"description": "View the main City Science Andorra project profile.",
"meta": "in City Science #architecture #energy #environment +6\u00a0more"
},
{
"href": "\/projects\/food-sensing-on-smartphones\/overview\/",
"title": "Food sensing on smartphones",
"eyebrow": "Project",
"description": "We demonstrate a smartphone based spectrometer design that is standalone and supported on a wireless platform. The device is inherently low\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/computation-ear-imaging\/overview\/",
"title": "Computation Ear Imaging",
"eyebrow": "Project",
"description": "Computation photography applied to imaging the middle ear for infections.",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/image-sentiment-anlysis\/overview\/",
"title": "Image Sentiment Analysis",
"eyebrow": "Project",
"description": "&nbsp;In this project we explore how to recognize and localize affect in images.",
"meta": "in Affective Computing #affective computing"
},
{
"href": "\/projects\/place-recognition-and-categorization-1\/overview\/",
"title": "Place Recognition and Categorization",
"eyebrow": "Project",
"description": "The Places dataset&nbsp;(website)&nbsp;is designed following principles of human visual cognition. Our goal is to build a core of visual kn\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/holonews\/overview\/",
"title": "Holonews",
"eyebrow": "Project",
"description": "&nbsp;News reporting today suffers from sensationalism. News agencies are constantly fighting for attention and clicks, leading to headline\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/mumble-melody\/overview\/",
"title": "Mumble Melody",
"eyebrow": "Project",
"description": "Mumble Melody uses musically altered sensory feedback as a potential treatment for stuttering.Several studies have shown improvement in spe\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/imagining-the-future-of\/overview\/",
"title": "The SciFi Audio Workstation",
"eyebrow": "Project",
"description": "The internet&nbsp; changed&nbsp; how we create, distribute, and consume music and media. Modern digital tools for creating music and media \u2026",
"meta": "in Opera of the Future #music"
},
{
"href": "\/projects\/bricoleur\/overview\/",
"title": "Bricoleur",
"eyebrow": "Project",
"description": "Bricoleur allows makers of all ages to explore the creative possibilities of video and audio as programmable media on mobile devices. Using\u2026",
"meta": "in Lifelong Kindergarten #human-computer interaction #learning"
},
{
"href": "\/projects\/open-hybrid\/overview\/",
"title": "Open Hybrid",
"eyebrow": "Project",
"description": "Open Hybrid is an open source augmented reality platform for physical computing and Internet of Things. It is based on the web and Arduino.\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/tree\/overview\/",
"title": "Tree",
"eyebrow": "Project",
"description": "Tree is a virtual experience that transforms you into a rainforest tree. With your arms as branches and body as the trunk, you experience t\u2026",
"meta": "in Fluid Interfaces #virtual reality #augmented reality #environment"
},
{
"href": "\/projects\/masque\/overview\/",
"title": "Masque",
"eyebrow": "Project",
"description": "&nbsp;When the body senses itself internally and localizes its actions, it provides the basis for a material sense of self-existence. At th\u2026",
"meta": "in Fluid Interfaces #human-computer interaction #cognition #wearable computing +3\u00a0more"
},
{
"href": "\/projects\/a-pops\/overview\/",
"title": "A-pops",
"eyebrow": "Project",
"description": "A design project done in collaboration with the MIT Media Lab and the Laboratorio para la Ciudad (Laboratory for the City), Mexico City's e\u2026",
"meta": "in ML Learning \u00b7 Lifelong Kindergarten #kids #learning #interfaces +1\u00a0more"
},
{
"href": "\/projects\/cityio\/overview\/",
"title": "cityIO",
"eyebrow": "Project",
"description": "Cloud-Based Urban Data PlatformcityIO (input\/output) is a cloud- and database-driven platform which allows remote participation, database a\u2026",
"meta": "in City Science #data #urban planning"
},
{
"href": "\/projects\/emotion-recognition-in-context\/overview\/",
"title": "Emotion Recognition in Scene Context",
"eyebrow": "Project",
"description": "The goal of this project is providing machines with the ability of understanding what a person is experiencing from her frame of reference,\u2026",
"meta": "in Affective Computing"
},
{
"href": "\/projects\/the-gamma-moon-musical-omnisensory-orbital-neuroinstrument\/overview\/",
"title": "Gamma MOON: Musical Omnisensory Orbital Neuroinstrument",
"eyebrow": "Project",
"description": "Introducing the&nbsp;newest edition of the gamma musical\/medical instruments - the&nbsp;Gamma MOON (Musical&nbsp;Omnisensory&nbsp;Orbital&n\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/scratch-online-community\/overview\/",
"title": "Scratch Online Community",
"eyebrow": "Project",
"description": "Launched in 2007, the Scratch Online Community enables children, primarily between the ages of 8 and 16, to share interactive media such as\u2026",
"meta": "in Lifelong Kindergarten #computer science"
},
{
"href": "\/projects\/visionblocks\/overview\/",
"title": "VisionBlocks",
"eyebrow": "Project",
"description": "VisionBlocks is an on-demand, in-browser, customizable, computer-vision application-building platform for the masses. Even without any prio\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/calibration-invariant-i\/overview\/",
"title": "Calibration Invariant Imaging",
"eyebrow": "Project",
"description": "Object Classification through Scattering Media&nbsp;with Deep LearningA method for classifying objects hidden behind a scattering layer wit\u2026",
"meta": "in Camera Culture #human-machine interaction #machine learning"
},
{
"href": "\/projects\/opal-health\/overview\/",
"title": "OPAL 4 Health",
"eyebrow": "Project",
"description": "Open Algorithms (OPAL)",
"meta": "in Human Dynamics #health #privacy #trust"
},
{
"href": "\/projects\/location-recommendations-based-on-large-scale-call-detail-records\/overview\/",
"title": "Managing Travel Demand: Location recommendation for system efficiency",
"eyebrow": "Project",
"description": "Growth in leisure travel has become increasingly significant economically, socially, and environmentally. However, flexible but uncoordinat\u2026",
"meta": "in Human Dynamics #data #transportation #urban planning"
},
{
"href": "\/projects\/improving-official-statistics-in-emerging-markets-using-machine-learning-and-mobile-phone-data\/overview\/",
"title": "Improving official statistics in emerging markets using machine learning and mobile phone data",
"eyebrow": "Project",
"description": "Mobile phones are one of the fastest growing technologies in the developing world with global penetration rates reaching 90%. Mobile phone \u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/visualsoundtrack\/overview\/",
"title": "VisualSoundtrack",
"eyebrow": "Project",
"description": "We present VisualSoundtrack, a system designed as a tool for soundtrack composers to experiment with original musical content in differin\u2026",
"meta": "in Responsive Environments #human-machine interaction #music"
},
{
"href": "\/projects\/vocal-vibrations-expressive-performance-for-body-mind-wellbeing\/overview\/",
"title": "Vocal Vibrations",
"eyebrow": "Project",
"description": "Expressive Performance for Body-Mind WellbeingThe Vocal Vibrations music is now available for exclusive download from Bowers &amp; Wilkins.\u2026",
"meta": "in Advancing Wellbeing \u00b7 Opera of the Future"
},
{
"href": "\/projects\/talking-drums\/overview\/",
"title": "Talking Drums",
"eyebrow": "Project",
"description": "\u201cThe Talking Drums\u201d is a sound installation where we created a modular system for sending images through rhythmic patterns. It is an encryp\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/ritual-i-the-thing-itself\/overview\/",
"title": "Ritual I: The Thing Itself",
"eyebrow": "Project",
"description": "Ritual&nbsp;I: The Thing Itself consists of a choreographed robotic body that is in constant flux. It performs a dance of repetitive patter\u2026",
"meta": "in Opera of the Future #robotics #performance"
},
{
"href": "\/projects\/philadelphia-voices\/overview\/",
"title": "Philadelphia Voices",
"eyebrow": "Project",
"description": "Philadelphia Voices&nbsp;is the latest in the series of City Symphonies projects that Tod Machover and the Opera of the Future group have c\u2026",
"meta": "in Opera of the Future #art #crowdsourcing #music +1\u00a0more"
},
{
"href": "\/projects\/nebula\/overview\/",
"title": "Nebula",
"eyebrow": "Project",
"description": "Nebula is a voice-controlled interactive software app that allow users to conduct a choir of diverse vocal sounds by using only their voice\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/hybrid-radios\/overview\/",
"title": "Hybrid Radios",
"eyebrow": "Project",
"description": "Hybrid Radio: A parasitic molecular infrastructureThis work opens a dialogue around the possibilities of re-thinking radio communication as\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/rfid-localization\/overview\/",
"title": "RFind: Extreme localization for billions of items",
"eyebrow": "Project",
"description": "Presenting RFind, a new technology that allows us to locate almost any object with extreme accuracy by transforming low-cost, battery-free \u2026",
"meta": "in Signal Kinetics #artificial intelligence #augmented reality #human-machine interaction +6\u00a0more"
},
{
"href": "\/projects\/hypercubes\/overview\/",
"title": "HyperCubes: Learning computational concepts in Augmented Reality",
"eyebrow": "Project",
"description": "HyperCubes is an augmented reality platform to help children understand computational concepts drawn from their physical surroundings, from\u2026",
"meta": "in Living Mobile #design #augmented reality #learning +1\u00a0more"
},
{
"href": "\/projects\/equalais-adversarial-attacks-for-facial-recognition\/overview\/",
"title": "EqualAIs: Facial Recognition, Adversarial Attacks and Policy Choice",
"eyebrow": "Project",
"description": "This 2018 AI and Governance Assembly project, EqualAIs, was a multifaceted investigation into the technical, policy and societal questions \u2026",
"meta": "in Ethics and Governance of Artificial Intelligence #artificial intelligence #politics"
},
{
"href": "\/projects\/move-your-glass\/overview\/",
"title": "Move Your Glass",
"eyebrow": "Project",
"description": "Move Your Glass is an app built using the JavaScript-based Wearscript library to communicate with the native sensors and camera on the devi\u2026",
"meta": "in Advancing Wellbeing \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/panorama\/overview\/",
"title": "Panorama",
"eyebrow": "Project",
"description": "An interface for smashing filter bubbles,&nbsp;Panorama is built to allow open, transparent, and collaborative exploration of news from all\u2026",
"meta": "in Viral Communications #design #crowdsourcing #data +4\u00a0more"
},
{
"href": "\/projects\/perspectives\/overview\/",
"title": "Perspectives",
"eyebrow": "Project",
"description": "The news is probably one of the first things people check in the morning, but how much does what you know and understand about the world de\u2026",
"meta": "in Viral Communications \u00b7 Ultimate Media #civic media #storytelling"
},
{
"href": "\/projects\/citymatrix\/overview\/",
"title": "CityMatrix",
"eyebrow": "Project",
"description": "An Urban Decision-Support System Augmented by Artificial IntelligenceThe decision-making process in urban design and urban planning is outd\u2026",
"meta": "in City Science #architecture #artificial intelligence #civic technology +8\u00a0more"
},
{
"href": "\/projects\/palimpost\/overview\/",
"title": "PalimPost",
"eyebrow": "Project",
"description": "PalimPost is a converged system for storing, searching, and sharing digital and physical world information using sticky notes and mobile de\u2026",
"meta": "in Information Ecology \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/fluxa\/overview\/",
"title": "Fluxa",
"eyebrow": "Project",
"description": "Fluxa is a compact wearable device that exploits body movements, as well as the visual effects of persistence of vision (POV), to generate \u2026",
"meta": "in Responsive Environments \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/teletouch\/overview\/",
"title": "TeleTouch",
"eyebrow": "Project",
"description": "TeleTouch lets you touch and control from far. See thru your smartphone's camera and control EVERYTHING you see on the screen by touching i\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/social-textiles\/overview\/",
"title": "Social Textiles",
"eyebrow": "Project",
"description": "The way we represent ourselves in social media is intangible. What we choose to wear is public to the world and we are aware of it. In cont\u2026",
"meta": "in Tangible Media \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/showme-immersive-remote-collaboration-system-with-3d-hand-gestures\/overview\/",
"title": "ShowMe: Immersive Remote Collaboration System with 3D Hand Gestures",
"eyebrow": "Project",
"description": "ShowMe is an immersive mobile collaboration system that allows remote users to communicate with peers using video, audio, and gestures. Wit\u2026",
"meta": "in Terrestrial Sensing \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/pocomo\/overview\/",
"title": "PoCoMo",
"eyebrow": "Project",
"description": "PoCoMo is an implementation of a vision in future-projected social interfaces. In this project we try to capture the playfulness of collabo\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/mouseless\/overview\/",
"title": "Mouseless",
"eyebrow": "Project",
"description": "Mouseless is an invisible computer mouse that provides the familiarity of interaction of a physical mouse without actually needing a real h\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/tagme\/overview\/",
"title": "TagMe",
"eyebrow": "Project",
"description": "TagMe is an end-user toolkit for easy creation of responsive objects and environments. It consists of a wearable device that recognizes the\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/reality-editor-20\/overview\/",
"title": "Reality Editor 2.0",
"eyebrow": "Project",
"description": "The Reality Editor is a web browser for the physical world: Point your phone or tablet at a physical object and an interface pops up with i\u2026",
"meta": "in Fluid Interfaces #augmented reality #interfaces #internet of things"
},
{
"href": "\/projects\/luminar\/overview\/",
"title": "LuminAR",
"eyebrow": "Project",
"description": "LuminAR reinvents the traditional incandescent bulb and desk lamp, evolving them into a new category of robotic, digital information device\u2026",
"meta": "in Fluid Interfaces #robotics #human-computer interaction #interfaces"
},
{
"href": "\/projects\/quantizer-sonification-platform-for-high-energy-physics-data\/overview\/",
"title": "Quantizer: Sonification Platform for High-Energy Physics Data",
"eyebrow": "Project",
"description": "Inspired by previous work in the field of data sonification, we built a data-driven composition platform that enables users to map collisio\u2026",
"meta": "#data #music #networks +1\u00a0more"
},
{
"href": "\/projects\/watch-people-watch\/overview\/",
"title": "Watch People Watch",
"eyebrow": "Project",
"description": "Recording your reaction to a short video is becoming the new gossip; famous watchers get as many as 750,000 views. We attempt to transform \u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/super-cut-notes\/overview\/",
"title": "Super Cut Notes",
"eyebrow": "Project",
"description": "A large portion of popular media is remixed: existing media content is spliced and re-ordered in a manner that serves a specific narrative.\u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/newsclouds\/overview\/",
"title": "NewsClouds",
"eyebrow": "Project",
"description": "NewsClouds presents a visual exploration of how the news reporting of an event evolves over time. Each \"cloud\" represents a publication and\u2026",
"meta": "in Ultimate Media \u00b7 Viral Communications"
},
{
"href": "\/projects\/solar-micro-mining\/overview\/",
"title": "Solar Micro-Mining",
"eyebrow": "Project",
"description": "Bitcoin generates net-new value from \"mining\" in a distributed network. In this work, we explore solar micro-mining rigs that transform exc\u2026",
"meta": "in Digital Currency Initiative (DCI) \u00b7 Viral Communications #blockchain"
},
{
"href": "\/projects\/time-folded-optics\/overview\/",
"title": "Time-folded optics",
"eyebrow": "Project",
"description": "Rethinking photography optics in the time dimensionWhat if we could design optics in time instead of space?",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/nano-machine-life-synergism\/overview\/",
"title": "Ultra-Scalable and Energy-Efficient Nanoelectronics",
"eyebrow": "Project",
"description": "Electronics are ubiquitous in today\u2019s world, with applications ranging from smart cities to health care, defense, economy, government, educ\u2026",
"meta": "in Nano-Cybernetic Biotrek"
},
{
"href": "\/projects\/geobits\/overview\/",
"title": "GeoBits",
"eyebrow": "Project",
"description": "This is an open source geospatial exploration tool. Using various public APIs including Open Street Map and the United States Census, we ca\u2026",
"meta": "in City Science #computer vision #augmented reality #open source +1\u00a0more"
},
{
"href": "\/projects\/ngo20\/overview\/",
"title": "NGO2.0",
"eyebrow": "Project",
"description": "NGO2.0 is a project grown out of the work of MIT's New Media Action Lab. The goal of NGO2.0 is to strengthen the digital and social media l\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/seeing-through-fog\/overview\/",
"title": "Seeing Through Realistic Fog",
"eyebrow": "Project",
"description": "Seeing through dense, dynamic, and heterogeneous fog conditions. The technique, based on visible light, uses hardware that is similar to LI\u2026",
"meta": "in Camera Culture #computer vision #sensors #imaging"
},
{
"href": "\/projects\/wireless-sensing-for-drones-agile-robots-robotics\/overview\/",
"title": "RFly: Drones that find missing objects using battery-free RFIDs",
"eyebrow": "Project",
"description": "Can drones find missing items? Every year, companies lose billions of dollars due to misplaced items and faulty inventory records in their \u2026",
"meta": "in Signal Kinetics #systems #networking #autonomous vehicles"
},
{
"href": "\/projects\/singapore-pedestrian-accessibility\/overview\/",
"title": "Singapore Pedestrian Accessibility",
"eyebrow": "Project",
"description": "This project focused on pedestrian accessibility in collaboration with Singapore Centre for Liveable Cities. Researchers and planners came \u2026",
"meta": "in City Science #computer vision #augmented reality #open source +1\u00a0more"
},
{
"href": "\/projects\/gsk-places-initiative\/overview\/",
"title": "GSK Places Initiative",
"eyebrow": "Project",
"description": "This project is part of a parallel research endeavor with GSK Manufacturing. By simulating how scientists at the Upper Providence site inte\u2026",
"meta": "in City Science #computer vision #augmented reality #open source +1\u00a0more"
},
{
"href": "\/projects\/gsk-manufacturing-initiative\/overview\/",
"title": "GSK Manufacturing Initiative",
"eyebrow": "Project",
"description": "This project is the first of two projects in collaboration with GSK. We are developing a computational simulation that allows a human user \u2026",
"meta": "in City Science #computer vision #augmented reality #open source +1\u00a0more"
},
{
"href": "\/projects\/hand-development-kit\/overview\/",
"title": "Hand Development Kit",
"eyebrow": "Project",
"description": "Recent developments in wearable robots and human augmentation open up new possibilities of designing computational interfaces integrated to\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/body-quest\/overview\/",
"title": "Body Quest: A Room-Scale VR Playground for Biology and Chemistry",
"eyebrow": "Project",
"description": "Body Quest is a room-scale virtual reality playground for learning about biology and chemistry. Learning about how complex microscopic 3D s\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/invisibilia-revealing-invisible-data-as-a-tool-for-experiential-learning\/overview\/",
"title": "Invisibilia: Revealing Invisible Data as a Tool for Experiential Learning",
"eyebrow": "Project",
"description": "Invisibilia seeks to explore the use of Augmented Reality (AR), head-mounted displays (HMD), and depth cameras to create a system that make\u2026",
"meta": "in Terrestrial Sensing \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/breathvr\/overview\/",
"title": "BreathVR",
"eyebrow": "Project",
"description": "Breathing actions are used to augment controller-based input by giving superpowers to players in two VR games. Blowing out long and strong \u2026",
"meta": "in Fluid Interfaces #virtual reality #physiology"
},
{
"href": "\/projects\/words-in-motion\/overview\/",
"title": "Words in Motion",
"eyebrow": "Project",
"description": "Embodied theories of language propose that the way we communicate verbally is grounded in our bodies. Nevertheless, the way a second langua\u2026",
"meta": "in Fluid Interfaces #virtual reality #language learning"
},
{
"href": "\/projects\/oasis\/overview\/",
"title": "Oasis",
"eyebrow": "Project",
"description": "Oasis won Silver at the Edison Awards 2017.Oasis received the Best Paper Award at VRST 2016.Oasis is a novel system for automatically gener\u2026",
"meta": "in Fluid Interfaces #virtual reality #augmented reality"
},
{
"href": "\/projects\/remot-io-a-system-for-reaching-into-the-environment-of-a-remote-collaborator\/overview\/",
"title": "Remot-IO: A System for Reaching into the Environment of a Remote Collaborator",
"eyebrow": "Project",
"description": "Remot-IO is a system for mobile collaboration and remote assistance around Internet-connected devices. It uses two head-mounted displays, c\u2026",
"meta": "in Terrestrial Sensing \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/auris-creating-affective-virtual-spaces-from-music\/overview\/",
"title": "Auris: Creating Affective Virtual Spaces from Music",
"eyebrow": "Project",
"description": "Light, color, texture, geometry and other architectural design elements have been shown to produce predictable and measurable effects on ou\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/full-body-tracking\/overview\/",
"title": "VR Full Body Tracking",
"eyebrow": "Project",
"description": "The setup involves adding one controller\/tracker per foot and one at the base of the back along with two hand-held controllers and the HMD.\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/wordsense-learning-language-in-the-wild\/overview\/",
"title": "WordSense",
"eyebrow": "Project",
"description": "As more powerful and spatially aware Augmented Reality devices become available, we can leverage the user\u2019s context to embed reality with a\u2026",
"meta": "in Fluid Interfaces \u00b7 ML Learning #virtual reality #augmented reality #learning +2\u00a0more"
},
{
"href": "\/projects\/inattentional-blindness-in-vr\/overview\/",
"title": "Cognitive Illusions and VR",
"eyebrow": "Project",
"description": "This work explores the design of techniques based on the cognitive illusion of \"inattentional blindness\" which is a failure to notice somet\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/council-on-extended-intelligence\/overview\/",
"title": "Council on Extended Intelligence",
"eyebrow": "Project",
"description": "The&nbsp;IEEE Standards Association (IEEE-SA)&nbsp;and the&nbsp;MIT Media Lab&nbsp;are joining forces to&nbsp;launch a global Council on Ex\u2026",
"meta": "in Director's Office #human-computer interaction #artificial intelligence #human-machine interaction +1\u00a0more"
},
{
"href": "\/projects\/talking-machines-democratizing-the-design-of-voice-based-agents-for-the-home\/overview\/",
"title": "Talking Machines: Democratizing the design of voice-based agents for the home",
"eyebrow": "Project",
"description": "Embodied voice-based agents, such as Amazon\u2019s Echo, Google Home, and Jibo, are becoming increasingly present in the home environment. For m\u2026",
"meta": "in Personal Robots #robotics #design #human-computer interaction +7\u00a0more"
},
{
"href": "\/projects\/andorra-innovation\/overview\/",
"title": "Andorra | Innovation",
"eyebrow": "Project",
"description": "View the main City Science Andorra project profile.The MIT Media Lab's City Science research group, the University of Andorra, and national\u2026",
"meta": "in City Science #data #kids #learning +3\u00a0more"
},
{
"href": "\/projects\/egg-shell-carving\/overview\/",
"title": "Egg Shell Carving",
"eyebrow": "Project",
"description": "Expressing the hidden things inside, working with one of the most fragile of media.Hand carved illuminated Hen, Duck, Blue Duck and Goose e\u2026",
"meta": ""
},
{
"href": "\/projects\/receptive-skins\/overview\/",
"title": "Receptive Skins: The Breathing Wall",
"eyebrow": "Project",
"description": "In architecture, the building skin is the primary interface for mediating the environment of the external with the internal. But today, thi\u2026",
"meta": "in City Science #architecture #human-machine interaction #sensors +1\u00a0more"
},
{
"href": "\/projects\/cityscope-mark-iva-riyadh\/overview\/",
"title": "CityScope Riyadh",
"eyebrow": "Project",
"description": "We recently led a workshop in Saudi Arabia, with staff from the Riyadh Development Authority, to test a new version of our CityScope platfo\u2026",
"meta": "in City Science #computer vision #augmented reality #open source +1\u00a0more"
},
{
"href": "\/projects\/learning-genome\/overview\/",
"title": "The LearningGraph",
"eyebrow": "Project",
"description": "Content and curriculum lie at the heart of every educational system, learning environment, and learning technology. Yet the infrastructure \u2026",
"meta": "#data #learning"
},
{
"href": "\/projects\/media-lab-virtual-visit\/overview\/",
"title": "Media Lab Virtual Visit",
"eyebrow": "Project",
"description": "Media Lab Virtual Visit is intended to open up the doors of the Media Lab to people from all around the world. The visit is hosted on the U\u2026",
"meta": "in ML Learning #learning"
},
{
"href": "\/projects\/family-creative-learning\/overview\/",
"title": "Family Creative Learning",
"eyebrow": "Project",
"description": "In Family Creative Learning, we engage parents and children in workshops to design and learn together with creative technologies, like the \u2026",
"meta": "in ML Learning \u00b7 Lifelong Kindergarten #kids #learning"
},
{
"href": "\/projects\/hackable-bike\/overview\/",
"title": "Hackable Bike",
"eyebrow": "Project",
"description": "To explore future mobility modes, the City Science group is working with Media Lab member company Panasonic to explore the use and potentia\u2026",
"meta": "in City Science #hacking #transportation #urban planning"
},
{
"href": "\/projects\/story-learning-machine\/overview\/",
"title": "The Story Learning Machine",
"eyebrow": "Project",
"description": "The Storytelling project uses machine-based analytics to identify the qualities of engaging and marketable media. By developing models with\u2026",
"meta": "in Social Machines #computer vision #artificial intelligence #entertainment +3\u00a0more"
},
{
"href": "\/projects\/the-spread-of-false-and-true-info-online\/overview\/",
"title": "The Spread of True and False Information Online",
"eyebrow": "Project",
"description": "We investigated the spread of all of the verified news stories\u2013verified as either true or false\u2013distributed on Twitter from 2006 to 2017.Wi\u2026",
"meta": "in Social Machines #social media"
},
{
"href": "\/projects\/rumor-gauge-automatic-detection-and-verification-of-rumors-in-twitter\/overview\/",
"title": "Rumor Gauge: Automatic Detection and Verification of Rumors on Twitter",
"eyebrow": "Project",
"description": "The spread of malicious or accidental misinformation in social media, especially in time-sensitive situations, such as real-world emergenci\u2026",
"meta": "in Social Machines #social media"
},
{
"href": "\/projects\/hearthere-ubiquitous-sonic-overlay\/overview\/",
"title": "HearThere: Ubiquitous Sonic Overlay",
"eyebrow": "Project",
"description": "With our Ubiquitous Sonic Overlay, we are working to place virtual sounds in the user's environment, fixing them in space even as the user \u2026",
"meta": "in Responsive Environments #sensors"
},
{
"href": "\/projects\/truth-goggles\/overview\/",
"title": "Truth Goggles",
"eyebrow": "Project",
"description": "Truth Goggles attempts to decrease the polarizing effect of perceived media bias by forcing people to question all sources equally by invok\u2026",
"meta": "in Information Ecology"
},
{
"href": "\/projects\/flying-pantograph\/overview\/",
"title": "A Flying Pantograph",
"eyebrow": "Project",
"description": "We explore an art form where machines take on an essential role in the aesthetics and processes of the creation. Our main theme can be summ\u2026",
"meta": "in Fluid Interfaces #art"
},
{
"href": "\/projects\/creating-new-jazz-mus\/overview\/",
"title": "New Thing Art and Architecture Center at the Smithsonian",
"eyebrow": "Project",
"description": "&nbsp;For 18 months, the Smithsonian has been collecting art, photos, films, and interviews about the New Thing Art and Architecture Center\u2026",
"meta": "in Code Next"
},
{
"href": "\/projects\/creating-new-jazz-musical-instruments-and-new-jazz-idioms-1\/overview\/",
"title": "Creating New Jazz Musical Instruments and New Jazz Idioms",
"eyebrow": "Project",
"description": "The Launch Team: Christian McBride (winner of six Grammy Awards), David Gage, Mas Hino, and Topper Carew.",
"meta": "in Code Next"
},
{
"href": "\/projects\/nccu-the-creation-of-new-black-musical-instruments-and-new-black-musical-idioms\/overview\/",
"title": "NCCU: The Design and Fabrication of New Black Musical Instruments",
"eyebrow": "Project",
"description": "NCCU: music is a strong and universally accepted aspect of black culture. It has given birth to the genres of blues, jazz, gospel, rap, hou\u2026",
"meta": "in Code Next"
},
{
"href": "\/projects\/nostalgia-box\/overview\/",
"title": "Nostalgia Box",
"eyebrow": "Project",
"description": "Nostalgia BoxA deep learning visualization of your own memoriesBy Aubrey Simonson&nbsp;Commissioned by Manuel Cebrian and Iyad RahwanNostal\u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/express\/overview\/",
"title": "Express",
"eyebrow": "Project",
"description": "We are developing a new and exciting tool for expression in paint, combining technology and art to bring together the physical and the virt\u2026",
"meta": "in Advancing Wellbeing \u00b7 Fluid Interfaces"
},
{
"href": "\/projects\/shout\/overview\/",
"title": "Shout!",
"eyebrow": "Project",
"description": "Can I borrow your network? Shout! is a marketplace for retweets that allows people to exchange micro-contracts for future retweets. Shout! \u2026",
"meta": "in Collective Learning #social media"
},
{
"href": "\/projects\/place-pulse-new\/overview\/",
"title": "Place Pulse",
"eyebrow": "Project",
"description": "Place Pulse is a crowdsourcing effort to map urban perception. By asking users to select images from a pair, Place Pulse collects the data \u2026",
"meta": ""
},
{
"href": "\/projects\/place-pulse-1\/overview\/",
"title": "Place Pulse",
"eyebrow": "Project",
"description": "Mapping the urban perception",
"meta": "in Collective Learning #urban planning"
},
{
"href": "\/projects\/realtime-detection-of-social-cues\/overview\/",
"title": "Realtime Detection of Social Cues",
"eyebrow": "Project",
"description": "Realtime detection of social cues in children\u2019s voicesIn everyday conversation, people use what are known as backchannels to signal to some\u2026",
"meta": "in Personal Robots #artificial intelligence #data #human-machine interaction +7\u00a0more"
},
{
"href": "\/projects\/guitar-machine\/overview\/",
"title": "Guitar Machine",
"eyebrow": "Project",
"description": "Symbiotic guitar playing between human and machine fingers. The system can be used as a learning tool or a real-time augmentation to the hu\u2026",
"meta": "in Fluid Interfaces"
},
{
"href": "\/projects\/interneternity\/overview\/",
"title": "Interneternity",
"eyebrow": "Project",
"description": "Interneternity is a dynamic musical composition built into the World Wide Web.&nbsp;The Internet changed the way that we listen to music, b\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/OLD_replace\/overview\/",
"title": "RePlace",
"eyebrow": "Project",
"description": "RePlace is a 3D data visualization platform that takes the normally invisible activity of sensors and data loggers and overlays that inform\u2026",
"meta": "in Changing Places \u00b7 City Science"
},
{
"href": "\/projects\/memento\/overview\/",
"title": "Memento",
"eyebrow": "Project",
"description": "Memento is a home-based reminder system that allows users to associate customized voice reminders with specific activities in their daily l\u2026",
"meta": "in City Science #architecture #interfaces #behavioral science"
},
{
"href": "\/projects\/boxlab\/overview\/",
"title": "BoxLab",
"eyebrow": "Project",
"description": "Designed as a platform to enable rich contextual data collection in real homes, BoxLab uses a broad array of wireless sensing devices to st\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/chainform\/overview\/",
"title": "ChainFORM",
"eyebrow": "Project",
"description": "ChainFORM is a modular hardware system for designing linear shape-changing interfaces. Each module is developed based on a servo motor with\u2026",
"meta": "in Tangible Media \u00b7 Responsive Environments #human-computer interaction"
},
{
"href": "\/projects\/torque\/overview\/",
"title": "Torque",
"eyebrow": "Project",
"description": "Open-Source Autonomous Platform for Educational and Service Design ApplicationsHow can new technologies respond to society\u2019s diverse indust\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/instrumentation-of-montessori-learning-materials\/overview\/",
"title": "Instrumentation of Montessori Learning Materials",
"eyebrow": "Project",
"description": "The Montessori Method is an educational approach that emphasizes independence and respect for a child's natural development process. Montes\u2026",
"meta": "in Social Machines #human-machine interaction #learning"
},
{
"href": "\/projects\/openscope\/overview\/",
"title": "OpenScope",
"eyebrow": "Project",
"description": "OpenScope is an open source project that combines three components for anyone to explore the micro world anytime, anywhere. The 3D-printabl\u2026",
"meta": "in Civic Media"
},
{
"href": "\/projects\/smart-communal-spaces\/overview\/",
"title": "Smart Communal Spaces",
"eyebrow": "Project",
"description": "Smart Communal Spaces is a project from MIT Media Lab Dubai Workshop 2016, which was deployed and filmed at the Dubai Museum of the Future.\u2026",
"meta": ""
},
{
"href": "\/projects\/mission-wildlife\/overview\/",
"title": "Mission Wildlife",
"eyebrow": "Project",
"description": "Mission Wildlife is a research collaboration between San&nbsp;Diego Zoo Global and the MIT Center for Civic Media to&nbsp;explore the poten\u2026",
"meta": "#augmented reality #civic media #civic technology +9\u00a0more"
},
{
"href": "\/projects\/personalized-interaction-for-language-learning\/overview\/",
"title": "Personalized Interaction for Language Learning",
"eyebrow": "Project",
"description": "The process by which children learn native languages is markedly different from the process of learning a second, or non-native, language. \u2026",
"meta": "in Personal Robots #interfaces #social science #social robotics"
},
{
"href": "\/projects\/DUI\/overview\/",
"title": "Deep Urban Interaction",
"eyebrow": "Project",
"description": "Analyze and visualize urban interaction with computer vision and deep neural net.&nbsp;",
"meta": "in City Science"
},
{
"href": "\/projects\/kindercity\/overview\/",
"title": "KinderCity",
"eyebrow": "Project",
"description": "KinderCity is a pilot project that attempts to understand the intangibles of city perception. It attempts to understand how people, across \u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/phonoblocks\/overview\/",
"title": "PhonoBlocks",
"eyebrow": "Project",
"description": "PhonoBlocks is an app similar in design and purpose to&nbsp;SpeechBlocks. However, the blocks in this design are not letters, but sounds of\u2026",
"meta": ""
},
{
"href": "\/projects\/cognitarium\/overview\/",
"title": "Cognitarium 2.0",
"eyebrow": "Project",
"description": "Cognitarium 2.0&nbsp; is a planetarium for the mind. Enter a world of 40 Hz sounds, multicolored lights and mind-entraining frequencies. Co\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/bitcoin-settled-dollar-futures\/overview\/",
"title": "Building smart contracts with Bitcoin",
"eyebrow": "Project",
"description": "Discreet Log Contracts (DLC) are a new type of smart contract which limit the information gained&nbsp;and influence of oracles, and can run\u2026",
"meta": "in Digital Currency Initiative (DCI) #cryptocurrency"
},
{
"href": "\/projects\/emotion-wellbeing-x-skincare-cosmetics\/overview\/",
"title": "Emotion\/wellbeing x skincare cosmetics",
"eyebrow": "Project",
"description": "The project aims to investigate the relationships between emotion, wellbeing, skin, and skincare cosmetics.&nbsp;In our first study, we mea\u2026",
"meta": "in Affective Computing #wellbeing"
},
{
"href": "\/projects\/vr-codes\/overview\/",
"title": "VR Codes",
"eyebrow": "Project",
"description": "VR Codes are dynamic data invisibly hidden in television and graphic displays. They allow the display to present simultaneously visual inf\u2026",
"meta": "in Viral Communications"
},
{
"href": "\/projects\/eternal\/overview\/",
"title": "Eternal",
"eyebrow": "Project",
"description": "The web enables massive realtime communication and collaboration, but most media on the web does not take advantage of these features. Medi\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/playful-words\/overview\/",
"title": "Playful Words",
"eyebrow": "Project",
"description": "While there are a number of literacy technology solutions developed for individuals, the role of social\u2014or networked\u2014literacy learning is l\u2026",
"meta": "in Social Machines #learning"
},
{
"href": "\/projects\/reality-editor\/overview\/",
"title": "Reality Editor",
"eyebrow": "Project",
"description": "The Reality Editor is a new kind of tool for empowering you to connect and manipulate the functionality of physical objects. Just point the\u2026",
"meta": "in Fluid Interfaces #augmented reality #consumer electronics #interfaces +1\u00a0more"
},
{
"href": "\/projects\/inform\/overview\/",
"title": "inFORM",
"eyebrow": "Project",
"description": "Shape displays can be used to render both 3D physical content and user interface elements. We propose to use shape displays in three differ\u2026",
"meta": "in Terrestrial Sensing \u00b7 Tangible Media #design #human-computer interaction #interfaces"
},
{
"href": "\/projects\/memory-music-box\/overview\/",
"title": "Memory Music Box",
"eyebrow": "Project",
"description": "We are transforming a classic music jewelry box into a digital memory box and Skype portal that enable those not familiar with technology t\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/speech-co\/overview\/",
"title": "Speech Companion",
"eyebrow": "Project",
"description": "Speech Companion is an exploration in the domain of real-time extraction of musicality from speech. Speech is one of the richest and most u\u2026",
"meta": "in Opera of the Future"
},
{
"href": "\/projects\/gui3d\/overview\/",
"title": "GUI3D",
"eyebrow": "Project",
"description": "GUI3D Template is a generic implementation of the GUI components that anyone might want for a 3D simulation in Processing 3.&nbsp;Component\u2026",
"meta": "#gaming #human-machine interaction #open source +2\u00a0more"
},
{
"href": "\/projects\/cityscope-barcelona\/overview\/",
"title": "CityScope Barcelona",
"eyebrow": "Project",
"description": "The \"Barcelona\" demo is an independent prototype designed to model and simulate human interactions within a Barcelona-like urban environmen\u2026",
"meta": "in Changing Places"
},
{
"href": "\/projects\/action-path\/overview\/",
"title": "Action Path",
"eyebrow": "Project",
"description": "Action Path is a mobile app to help people learn about and engage with issues in their community. The app uses push notifications tied to g\u2026",
"meta": "in Civic Media #civic media #civic technology"
},
{
"href": "\/projects\/ant-based-modeling\/overview\/",
"title": "Ant-Based Modeling",
"eyebrow": "Project",
"description": "Ant-Based Modeling explores the possibility of&nbsp;implementing agent-based modeling with living ants&nbsp;and external stimuli such as el\u2026",
"meta": "#data #systems #urban planning +1\u00a0more"
},
{
"href": "\/projects\/becoming-someone\/overview\/",
"title": "Becoming Someone",
"eyebrow": "Project",
"description": "Becoming Someone is a multi-modal concept that lives across Medium, Instagram, and human minds. It is comprised of The Ever Contracting Voi\u2026",
"meta": "in Scalable Cooperation"
},
{
"href": "\/projects\/lightsaber-lightfields-diffusors\/overview\/",
"title": "LIGHTSABER! LIGHTFIELDS + DIFFUSORS",
"eyebrow": "Project",
"description": "I'm showcasing a lightsaber with a beam that can be switched on and off. All the electronics and optics are contained within the handle, so\u2026",
"meta": ""
},
{
"href": "\/projects\/through-wall-table-interaction-using-rf\/overview\/",
"title": "Through Wall\/Table interaction using RF",
"eyebrow": "Project",
"description": "3D interaction is a magical way for users to interact with a system without touching it. This is usually accomplished using a camera, but t\u2026",
"meta": ""
},
{
"href": "\/projects\/grid-free-super-resolution-for-audio-imaging\/overview\/",
"title": "Grid-free super-resolution for audio imaging",
"eyebrow": "Project",
"description": "Audio on a mobile device can be used to form low-resolution 3D images. The resolution of audio ranging and imaging is heavily limited by ba\u2026",
"meta": ""
},
{
"href": "\/projects\/ar-animation-tool\/overview\/",
"title": "AR Animation Tool",
"eyebrow": "Project",
"description": "&nbsp;Making 3D aniation easier by utilizing mobile AR, enabling manipulation of spatial objects using a spatial interface.",
"meta": ""
},
{
"href": "\/projects\/intrepid\/overview\/",
"title": "Intrepid",
"eyebrow": "Project",
"description": "Every 98 seconds, a person in the United States is sexually abused. Every 16 hours,&nbsp;a woman in the United States is murdered by her ro\u2026",
"meta": "in Living Mobile #consumer electronics #developing countries #human-machine interaction +5\u00a0more"
},
{
"href": "\/projects\/facesense-affective-cognitive-state-inference-from-facial-video\/overview\/",
"title": "FaceSense: Affective-Cognitive State Inference from Facial Video",
"eyebrow": "Project",
"description": "People express and communicate their mental states\u2013such as emotions, thoughts, and desires\u2013through facial expressions, vocal nuances, gestu\u2026",
"meta": "in Affective Computing #cognition #communications #gesture interface"
},
{
"href": "\/projects\/towards-in-vivo-biopsy\/overview\/",
"title": "Towards In-Vivo Biopsy",
"eyebrow": "Project",
"description": "A new method to detect and distinguish between different types of fluorescent materials. The suggested technique has provided a dramaticall\u2026",
"meta": "in Camera Culture"
},
{
"href": "\/projects\/beacon-concept-store-with-the-center-for-future-banking\/overview\/",
"title": "Beacon Concept Store with the Center for Future Banking",
"eyebrow": "Project",
"description": "The Smart Cities and Cognitive Machines groups have teamed up with the Center for Future Banking to design a concept banking store in the B\u2026",
"meta": "in Social Machines \u00b7 Smart Cities"
},
{
"href": "\/projects\/storytelling-in-the-preschool-of-the-future\/overview\/",
"title": "Storytelling in the Preschool of the Future",
"eyebrow": "Project",
"description": "Using the Preschool of the Future environment, children can create stories that come to life in the real world. We are developing interface\u2026",
"meta": "in Personal Robots"
},
{
"href": "\/projects\/smart-infra\/overview\/",
"title": "Urban Tattoo",
"eyebrow": "Project",
"description": "Scalable Urban Infrastructure for Human-Machine CohabitationNew infrastructure to help sustain public-sector participation and operation, a\u2026",
"meta": "in City Science"
},
{
"href": "\/projects\/computational-tinkering\/overview\/",
"title": "Computational Tinkering",
"eyebrow": "Project",
"description": "As children tinker with materials in the world, they are constantly putting things together and taking them apart. They are learning throug\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/smell-camera2\/overview\/",
"title": "Smell Camera: Record, Play, Rewind",
"eyebrow": "Project",
"description": "We present Smell Camera: an innovative way of capturing memories in the form of smell that can be recorded, stored, and played in the futur\u2026",
"meta": ""
},
{
"href": "\/projects\/snapshot-expose\/overview\/",
"title": "SNAPSHOT Expose",
"eyebrow": "Project",
"description": "We are applying learnings from the SNAPSHOT study to the problem of changing behavior, exploring the design of user-centered tools which ca\u2026",
"meta": "in Advancing Wellbeing \u00b7 Affective Computing #wellbeing"
},
{
"href": "\/projects\/collectivedebate\/overview\/",
"title": "Collective Debate",
"eyebrow": "Project",
"description": "On&nbsp;Collective Debate,&nbsp;users take a test of their morality, then debate an artificial agent regarding a controversial claim: that \u2026",
"meta": "in Social Machines #civic media #collective intelligence"
},
{
"href": "\/projects\/enigma\/overview\/",
"title": "Enigma",
"eyebrow": "Project",
"description": "A peer-to-peer network, enabling different parties to jointly store and run computations on data while keeping the data completely private.\u2026",
"meta": "in Human Dynamics"
},
{
"href": "\/projects\/chromoskin\/overview\/",
"title": "ChromoSkin",
"eyebrow": "Project",
"description": "Makeup has long been used as a body decoration process for self-expression and for the transformation of one's appearance. While the materi\u2026",
"meta": "in Living Mobile \u00b7 Responsive Environments #fashion #wearable computing"
},
{
"href": "\/projects\/search-for-extra-terrestrial-genomes-setg\/overview\/",
"title": "Search for Extra-Terrestrial Genomes (SETG)",
"eyebrow": "Project",
"description": "The widespread synthesis of common organic building blocks in space could have biased life beyond Earth towards chemical similarities to li\u2026",
"meta": "in Space Exploration Initiative #genetics #space #zero gravity"
},
{
"href": "\/projects\/desafio-aprendizagem-criativa\/overview\/",
"title": "Desafio Aprendizagem Criativa Brasil 2017",
"eyebrow": "Project",
"description": "ATEN\u00c7\u00c3O: Saiu o resultado do Desafio Aprendizagem Criativa Brasil 2017! Clique aqui para conhecer os fellows e projetos selecionados!----&n\u2026",
"meta": "in Lifelong Kindergarten"
},
{
"href": "\/projects\/haptic-footprint\/overview\/",
"title": "Haptic Footprint",
"eyebrow": "Project",
"description": "We only perceive a tiny sliver of the world around us. We are constrained by what our senses can process. These senses evolved to react to \u2026",
"meta": "in Responsive Environments #augmented reality #perception #data visualization"
},
{
"href": "\/projects\/cityscope-mark-i-real-time-data-observatory\/overview\/",
"title": "CityScope Mark I: Real-Time Data Observatory",
"eyebrow": "Project",
"description": "Real-time geospatial data is visualized on an exhibition-scale 3D city model. The model is built of LEGO bricks, and visualization is perfo\u2026",
"meta": "in Changing Places"
},
{
"href": "\/projects\/housewives-making-drugs\/overview\/",
"title": "Housewives Making Drugs",
"eyebrow": "Project",
"description": "STARRING&nbsp;JADE PHOENIX&nbsp;&amp; JADE RENEGADEIN COLLABORATION WITH ORGASMIC CREATIVE",
"meta": ""
},
{
"href": "\/projects\/sketch-based-cnc\/overview\/",
"title": "Sketch-based CNC",
"eyebrow": "Project",
"description": "Most digital fabrication workflows impose a strong separation between design and fabrication. Designs are first modeled in computer aided d\u2026",
"meta": "in Lifelong Kindergarten"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment