gitextract_yx64kgb8/ ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public/ │ ├── digger.jsdos │ ├── doom.jsdos │ ├── index.html │ ├── js-dos/ │ │ ├── js-dos.css │ │ ├── js-dos.js │ │ ├── types/ │ │ │ ├── src/ │ │ │ │ ├── backend/ │ │ │ │ │ └── v7/ │ │ │ │ │ ├── latency.d.ts │ │ │ │ │ ├── personal.d.ts │ │ │ │ │ └── v7-config.d.ts │ │ │ │ ├── components/ │ │ │ │ │ ├── action-bar.d.ts │ │ │ │ │ ├── action-hide.d.ts │ │ │ │ │ ├── action-save-or-exit.d.ts │ │ │ │ │ ├── client.d.ts │ │ │ │ │ ├── controls.d.ts │ │ │ │ │ ├── region.d.ts │ │ │ │ │ ├── sidebar/ │ │ │ │ │ │ ├── latency-info.d.ts │ │ │ │ │ │ ├── main.d.ts │ │ │ │ │ │ ├── networking.d.ts │ │ │ │ │ │ └── token/ │ │ │ │ │ │ ├── token-add-time.d.ts │ │ │ │ │ │ ├── token-select.d.ts │ │ │ │ │ │ └── token.d.ts │ │ │ │ │ ├── sidebar.d.ts │ │ │ │ │ └── tip.d.ts │ │ │ │ ├── dom.d.ts │ │ │ │ ├── hardware-transport-layer.d.ts │ │ │ │ ├── icons.d.ts │ │ │ │ ├── player-app.d.ts │ │ │ │ ├── player.d.ts │ │ │ │ ├── request.d.ts │ │ │ │ └── xhr.d.ts │ │ │ └── v7-services/ │ │ │ └── src/ │ │ │ └── personal.d.ts │ │ ├── wdosbox.js │ │ ├── wdosbox.js.symbols │ │ ├── wdosbox.shared.js │ │ ├── wdosbox.shared.js.symbols │ │ ├── wdosbox.shared.wasm │ │ └── wdosbox.wasm │ ├── manifest.json │ ├── robots.txt │ ├── scrabble.jsdos │ └── trail.jsdos ├── src/ │ ├── App.css │ ├── App.tsx │ ├── assets/ │ │ └── icons/ │ │ └── index.ts │ ├── components/ │ │ ├── applications/ │ │ │ ├── Credits.tsx │ │ │ ├── Doom.tsx │ │ │ ├── Henordle.tsx │ │ │ ├── OregonTrail.tsx │ │ │ ├── Scrabble.tsx │ │ │ ├── ShowcaseExplorer.tsx │ │ │ └── ThisComputer.tsx │ │ ├── dos/ │ │ │ └── DosPlayer.tsx │ │ ├── general/ │ │ │ ├── Animation.ts │ │ │ ├── Icon.tsx │ │ │ ├── Link.tsx │ │ │ ├── MusicPlayer.tsx │ │ │ ├── VideoAsset.tsx │ │ │ └── index.ts │ │ ├── os/ │ │ │ ├── Button.tsx │ │ │ ├── Desktop.tsx │ │ │ ├── DesktopShortcut.tsx │ │ │ ├── DragIndicator.tsx │ │ │ ├── ResizeIndicator.tsx │ │ │ ├── ShutdownSequence.tsx │ │ │ ├── Toolbar.tsx │ │ │ └── Window.tsx │ │ ├── showcase/ │ │ │ ├── About.tsx │ │ │ ├── Contact.tsx │ │ │ ├── Experience.tsx │ │ │ ├── Home.tsx │ │ │ ├── Projects.tsx │ │ │ ├── ResumeDownload.tsx │ │ │ ├── VerticalNavbar.tsx │ │ │ └── projects/ │ │ │ ├── Art.tsx │ │ │ ├── Music.tsx │ │ │ └── Software.tsx │ │ └── wordle/ │ │ ├── Wordle.tsx │ │ └── Words.ts │ ├── constants/ │ │ ├── Types.d.ts │ │ └── colors.ts │ ├── hooks/ │ │ └── useInitialWindowSize.ts │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── types.d.ts └── tsconfig.json