notNotion
19 |Your Custom Bookmark Manager
20 |├── .gitignore ├── bookmark-manager ├── images │ └── favicon.ico ├── index.html ├── index.js └── style.css ├── budget-tracker ├── data.js ├── images │ └── favicon.ico ├── index.html ├── index.js └── style.css ├── kanban ├── data.js ├── images │ └── favicon.ico ├── index.html ├── index.js ├── kanban.js └── style.css ├── news-portal ├── data.js ├── images │ └── favicon.ico ├── index.html ├── index.js └── style.css ├── notNotion ├── budget-manager │ ├── data.js │ ├── images │ │ └── favicon.ico │ ├── index.html │ ├── index.js │ └── style.css ├── images │ ├── budget-manager.png │ ├── favicon.ico │ ├── kanban.png │ ├── logo.svg │ ├── news.png │ ├── productive.svg │ ├── quiz.png │ └── todo-list.png ├── index.html ├── main.js ├── master.css ├── progress-board │ ├── data.js │ ├── images │ │ └── favicon.ico │ ├── index.html │ ├── index.js │ ├── kanban.js │ └── style.css ├── quiz │ ├── images │ │ └── favicon.ico │ ├── index.html │ ├── index.js │ └── style.css └── todo-list │ ├── images │ └── favicon.ico │ ├── index.html │ ├── index.js │ └── style.css ├── quiz ├── images │ └── favicon.ico ├── index.html ├── index.js └── style.css └── task-manager ├── images └── favicon.ico ├── index.html ├── index.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | /out-tsc 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # IDEs and editors 33 | .idea 34 | .project 35 | .classpath 36 | .c9/ 37 | *.launch 38 | .settings/ 39 | *.sublime-workspace 40 | 41 | # IDE - VSCode 42 | .vscode/* 43 | !.vscode/settings.json 44 | !.vscode/tasks.json 45 | !.vscode/launch.json 46 | !.vscode/extensions.json 47 | 48 | # misc 49 | .sass-cache 50 | connect.lock 51 | typings 52 | 53 | # Logs 54 | logs 55 | *.log 56 | npm-debug.log* 57 | yarn-debug.log* 58 | yarn-error.log* 59 | 60 | 61 | # Dependency directories 62 | node_modules/ 63 | jspm_packages/ 64 | 65 | # Optional npm cache directory 66 | .npm 67 | 68 | # Optional eslint cache 69 | .eslintcache 70 | 71 | # Optional REPL history 72 | .node_repl_history 73 | 74 | # Output of 'npm pack' 75 | *.tgz 76 | 77 | # Yarn Integrity file 78 | .yarn-integrity 79 | 80 | # dotenv environment variables file 81 | .env 82 | 83 | # next.js build output 84 | .next 85 | 86 | # Lerna 87 | lerna-debug.log 88 | 89 | # System Files 90 | .DS_Store 91 | Thumbs.db -------------------------------------------------------------------------------- /bookmark-manager/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShubhamSarda/javascript-projects-ul/f83933e24b86ead70086a5a5ee7be5ce857a92c1/bookmark-manager/images/favicon.ico -------------------------------------------------------------------------------- /bookmark-manager/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |notNotion
19 |Your Custom Bookmark Manager
20 |${response.title}
36 | 44 |notNotion
18 |Easiest Way To Track Your Transactions!
19 |33 | Balance: $ 34 |
35 |36 | Income: $ 37 |
38 |39 | Expense: $ 40 |
41 |31 | ${source} 32 | ${time} 33 |
34 | $${Math.abs(amount)} 35 | 36 |notNotion
19 |Web Based Kanban Style Application To Handle Project Progress
20 |TODO
25 | 2 26 |IN PROGRESS
37 | 1 38 |COMPLETED
49 | 2 50 |notNotion
18 |Your Custom News Portal With Selected Categories And Updates!
19 |${item.title}
37 |${item.description}
38 |39 | ${item.publishedAt.replace("Z", "").split("T")[1]} 40 | ${item.publishedAt.replace("Z", "").split("T")[0]} 41 |
42 |67 | Balance: $ 68 |
69 |70 | Income: $ 71 |
72 |73 | Expense: $ 74 |
75 |31 | ${source} 32 | ${time} 33 |
34 | $${Math.abs(amount)} 35 | 36 |55 |
Frequently Asked Questions
97 |Try notNotion today!
118 |Plan, Organize, and Execute Your Projects.
119 | 120 |TODO
59 | 2 60 |IN PROGRESS
71 | 1 72 |COMPLETED
83 | 2 84 |notNotion
18 |Daily Quiz To Test Your JavaScript Knowledge!
19 |notNotion
17 |Manage And Search Your Pending Tasks In Clicks!
18 |