├── .github └── FUNDING.yml ├── .gitignore └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [beforesemicolon] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .idea 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Before Semicolon Projects 2 | 3 | ## Projects Menu 4 | 5 | 1. [Audio Player with Web Component & Web Audio API](https://github.com/beforesemicolon/BFS-Projects/tree/audio-player-tag) 6 | 2. [Date Time Manipulation](https://github.com/beforesemicolon/BFS-Projects/tree/date-time) 7 | 3. [Fullstack Login & Register forms Manipulation with HTML+](https://github.com/beforesemicolon/BFS-Projects/tree/login-register-form-handling) 8 | 4. [Resumable Multi-File Uploader in NodeJs](https://github.com/beforesemicolon/BFS-Projects/tree/multifile-resumable-uploader) 9 | 10 | 11 | For more projects and tutorials and code help visit [beforesemicolon.com](https://beforesemicolon.com) or the Youtube Channel [Youtube Channel](https://www.youtube.com/before-semicolon) for videos 12 | --------------------------------------------------------------------------------