···21212222If you find a bug, or have a suggestion on how to improve the project, just fill out a Github issue!
23232424-If you're interested in using BrainWaves as a basis for your own work to streamline EEG experimentation or psychological data collection, we'd love to hear from you. Send an email to [dano@neurotechx.com](mailto:dano@neurotechx.com) or create an issue and we'll be in touch.
2424+If you're interested in using BrainWaves as a basis for your own work to streamline EEG experimentation or psychological data collection, we'd love to hear from you. Send an email to [morrisondano@gmail.com](mailto:morrisondano@gmail.com) or create an issue and we'll be in touch.
25252626-All project management for BrainWaves occurs through issues on Github (via Zenhub). If you want to see what we need help with, or what is on our , check out the issues on this repository.
2626+All project management for BrainWaves occurs through issues on Github (via Zenhub). If you want to see what we need help with, or what is on our [roadmap](ROADMAP.md), check out the issues on this repository.
+2-5
ROADMAP.md
···55July/August 2020: Jiffy Lube & Pyodide
66Fall 2020+: LSL & Lab.js
7788-## Jiffy Lube
99-1010-- Finishing soon
1111-- Will provide CI and better dev experience
1212-138## Pyodide
1491510- Successfully added pyodide via webworker
···3429## Lab.js
35303631- Type lab.js data (pending lab.js TypeScript library update)
3232+- Remove jspsych and refactor lab.js usage
37333834## Non-technical stuff
3535+3936- Share on HN/reddit
4037- Consider writing short papers for JOSS and/or Journal of Open Source Education
4138- UCSD
···33 * These functions are all executed in the main process
44 */
5566-import { remote } from 'electron';
66+import { dialog } from 'electron';
77import { FILE_TYPES } from '../../constants/constants';
88-99-const { dialog } = remote;
108119export const loadDialog = (event, arg) => {
1210 switch (arg) {
+3
app/utils/ui/index.tsx
···11+export function sanitizeTextInput(text: string) {
22+ return text.replace(/[|&;$%@"<>()+,./]/g, '');
33+}