├── .gitignore ├── Applicatons ├── 1.Text-editor │ ├── index.html │ ├── index.js │ └── style.css ├── 2. File-compressor │ ├── heap.js │ ├── huffman.js │ ├── index.html │ ├── sample.txt │ ├── script.js │ └── style.css ├── 3. Contact-list-search │ ├── Trie.js │ ├── index.html │ ├── person.png │ ├── script.js │ └── style.css ├── 4. Photo-editor │ ├── index.html │ ├── index.js │ └── style.css ├── 5. WhatsApp chat list │ ├── default-user.png │ ├── index.html │ ├── index.js │ └── style.css └── 6. Money splitwise │ ├── index.html │ ├── index.js │ └── style.css ├── Images ├── camera.jpg ├── contact-list.jpg ├── file-compressor.jpg ├── mario.png ├── money.png ├── text-editor.png ├── traveling.jpg └── whats-app.jpg ├── README.md ├── home.css ├── img ├── apple-touch-icon.png ├── black.jpg ├── counters-bg.jpg ├── favicon.png ├── intro-bg - Copy.jpg ├── intro-bg.jpg ├── overlay-bg.jpg ├── post-1.jpg ├── post-2.jpg ├── post-3.jpg ├── r1.png ├── r2.png ├── r3.png ├── r4.png ├── r5.png ├── r6.png ├── r7.png ├── testimonial-2.jpg ├── testimonial-4.jpg ├── work-1.jpg ├── work-2.jpg ├── work-3.jpg ├── work-4.jpg ├── work-5.jpg └── work-6.jpg ├── index.html └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | firebase-debug.log* 8 | firebase-debug.*.log* 9 | 10 | # Firebase cache 11 | .firebase/ 12 | 13 | # Firebase config 14 | 15 | # Uncomment this if you'd like others to create their own Firebase project. 16 | # For a team working on the same Firebase project(s), it is recommended to leave 17 | # it commented so all members can deploy to the same project(s) in .firebaserc. 18 | # .firebaserc 19 | 20 | # Runtime data 21 | pids 22 | *.pid 23 | *.seed 24 | *.pid.lock 25 | 26 | # Directory for instrumented libs generated by jscoverage/JSCover 27 | lib-cov 28 | 29 | # Coverage directory used by tools like istanbul 30 | coverage 31 | 32 | # nyc test coverage 33 | .nyc_output 34 | 35 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 36 | .grunt 37 | 38 | # Bower dependency directory (https://bower.io/) 39 | bower_components 40 | 41 | # node-waf configuration 42 | .lock-wscript 43 | 44 | # Compiled binary addons (http://nodejs.org/api/addons.html) 45 | build/Release 46 | 47 | # Dependency directories 48 | node_modules/ 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Optional REPL history 57 | .node_repl_history 58 | 59 | # Output of 'npm pack' 60 | *.tgz 61 | 62 | # Yarn Integrity file 63 | .yarn-integrity 64 | 65 | # dotenv environment variables file 66 | .env 67 | -------------------------------------------------------------------------------- /Applicatons/1.Text-editor/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Select the Name below and Write the Message on message box.
95 |Click on the Button below to send the message to selected name.
96 | 104 | 105 | 106 |Enter the Transaction Details