Skip to content

Commit a4f068b

Browse files
authored
cryptocurrency tracker added (#357)
* cryptocurrency tracker added * twitter hatespeech recognition
1 parent 2c416e4 commit a4f068b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+30543
-0
lines changed

Data Science Project/hateSpeech recognition.ipynb

+870
Large diffs are not rendered by default.

cryptohunter/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

cryptohunter/README.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Getting Started with Create React App
2+
3+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4+
5+
## Available Scripts
6+
7+
In the project directory, you can run:
8+
9+
### `npm start`
10+
11+
Runs the app in the development mode.\
12+
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
13+
14+
The page will reload when you make changes.\
15+
You may also see any lint errors in the console.
16+
17+
### `npm test`
18+
19+
Launches the test runner in the interactive watch mode.\
20+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21+
22+
### `npm run build`
23+
24+
Builds the app for production to the `build` folder.\
25+
It correctly bundles React in production mode and optimizes the build for the best performance.
26+
27+
The build is minified and the filenames include the hashes.\
28+
Your app is ready to be deployed!
29+
30+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31+
32+
### `npm run eject`
33+
34+
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
35+
36+
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37+
38+
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
39+
40+
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
41+
42+
## Learn More
43+
44+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45+
46+
To learn React, check out the [React documentation](https://reactjs.org/).
47+
48+
### Code Splitting
49+
50+
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51+
52+
### Analyzing the Bundle Size
53+
54+
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55+
56+
### Making a Progressive Web App
57+
58+
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59+
60+
### Advanced Configuration
61+
62+
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63+
64+
### Deployment
65+
66+
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67+
68+
### `npm run build` fails to minify
69+
70+
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)

cryptohunter/build/_redirects

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"files": {
3+
"main.css": "/static/css/main.ff42c6ff.css",
4+
"main.js": "/static/js/main.b977a214.js",
5+
"index.html": "/index.html",
6+
"main.ff42c6ff.css.map": "/static/css/main.ff42c6ff.css.map",
7+
"main.b977a214.js.map": "/static/js/main.b977a214.js.map"
8+
},
9+
"entrypoints": [
10+
"static/css/main.ff42c6ff.css",
11+
"static/js/main.b977a214.js"
12+
]
13+
}

cryptohunter/build/banner2.jpg

335 KB
Loading

cryptohunter/build/favicon.ico

1.12 KB
Binary file not shown.

cryptohunter/build/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Crypto Hunter</title><script defer="defer" src="/static/js/main.b977a214.js"></script><link href="/static/css/main.ff42c6ff.css" rel="stylesheet"></head><body><div id="root"></div></body></html>

cryptohunter/build/logo192.png

5.22 KB
Loading

cryptohunter/build/logo512.png

9.44 KB
Loading

cryptohunter/build/manifest.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"short_name": "React App",
3+
"name": "Create React App Sample",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
},
10+
{
11+
"src": "logo192.png",
12+
"type": "image/png",
13+
"sizes": "192x192"
14+
},
15+
{
16+
"src": "logo512.png",
17+
"type": "image/png",
18+
"sizes": "512x512"
19+
}
20+
],
21+
"start_url": ".",
22+
"display": "standalone",
23+
"theme_color": "#000000",
24+
"background_color": "#ffffff"
25+
}

cryptohunter/build/robots.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

cryptohunter/build/static/css/main.ff42c6ff.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cryptohunter/build/static/css/main.ff42c6ff.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cryptohunter/build/static/js/main.b977a214.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
object-assign
3+
(c) Sindre Sorhus
4+
@license MIT
5+
*/
6+
7+
/*!
8+
* Chart.js v3.7.0
9+
* https://www.chartjs.org
10+
* (c) 2021 Chart.js Contributors
11+
* Released under the MIT License
12+
*/
13+
14+
/**
15+
* A better abstraction over CSS.
16+
*
17+
* @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
18+
* @website https://github.com/cssinjs/jss
19+
* @license MIT
20+
*/
21+
22+
/** @license React v0.20.2
23+
* scheduler.production.min.js
24+
*
25+
* Copyright (c) Facebook, Inc. and its affiliates.
26+
*
27+
* This source code is licensed under the MIT license found in the
28+
* LICENSE file in the root directory of this source tree.
29+
*/
30+
31+
/** @license React v16.13.1
32+
* react-is.production.min.js
33+
*
34+
* Copyright (c) Facebook, Inc. and its affiliates.
35+
*
36+
* This source code is licensed under the MIT license found in the
37+
* LICENSE file in the root directory of this source tree.
38+
*/
39+
40+
/** @license React v17.0.2
41+
* react-dom.production.min.js
42+
*
43+
* Copyright (c) Facebook, Inc. and its affiliates.
44+
*
45+
* This source code is licensed under the MIT license found in the
46+
* LICENSE file in the root directory of this source tree.
47+
*/
48+
49+
/** @license React v17.0.2
50+
* react-is.production.min.js
51+
*
52+
* Copyright (c) Facebook, Inc. and its affiliates.
53+
*
54+
* This source code is licensed under the MIT license found in the
55+
* LICENSE file in the root directory of this source tree.
56+
*/
57+
58+
/** @license React v17.0.2
59+
* react-jsx-runtime.production.min.js
60+
*
61+
* Copyright (c) Facebook, Inc. and its affiliates.
62+
*
63+
* This source code is licensed under the MIT license found in the
64+
* LICENSE file in the root directory of this source tree.
65+
*/
66+
67+
/** @license React v17.0.2
68+
* react.production.min.js
69+
*
70+
* Copyright (c) Facebook, Inc. and its affiliates.
71+
*
72+
* This source code is licensed under the MIT license found in the
73+
* LICENSE file in the root directory of this source tree.
74+
*/

cryptohunter/build/static/js/main.b977a214.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)