Skip to main content

Posts

Showing posts from October, 2020

Amazon mobile reviews dataset

 Amazon mobile reviews dataset. Clean and ready to use amazon reviews dataset for data science and machine learning projects. The dataset having more than 30,000+ records and 20 different fields. Example Dataset: [      {                "product": "OnePlus Nord 5G (Gray Onyx, 8GB RAM, 128GB Storage)",            "product_company": "OnePlus",            "profile_name": "Nikhil",            "review_title": "*Read before you buy!!*",            "review_rating": "5.0 out of 5 stars",            "review_text": "\n  Yea..pre-ordered on 28 July, got it on 4 August. Package was nice without any damage. So here is my first impression:",            "helpful_count": "721 people found this helpful",     ...

ProductHunt API and Datasets

 Access ProductHunt api. Free api with 500 records visit  https://www.fakerestapi.com/datasets/product-hunt-dataset Current available records 2,00,000 +  Demo Data: {      "domain": "https://www.producthunt.com",       "description": "Stackpile allows you to install apps, tags and integrations on your website in seconds and track analytics using a unified API.",       "title": "Stackpile",       "url": "https://www.producthunt.com/posts/stackpile",       "created": "2016-03-31T00:12:51-07:00",       "header_tag_line": "A better way to install apps on your website",       "thumbnail": "https://ph-files.imgix.net/e6ed360a-995c-4930-82c3-ad779adb53b5?auto=format&auto=compress&codec=mozjpeg&cs=strip&w=60&h=60&fit=crop",       "upvote_count": "426",       "makers": [{"user_tag": "C...

How to install and use The silver searcher in Mac

 A code searching tool similar like ACK. https://github.com/ggreer/the_silver_searcher brew install the_silver_searcher How to use: ag "get" ag "dataset" ag -C "dataset" output: app/models/dataset.rb : 1 app/models/get_quote.rb : 1 app/models/subscribe.rb : 2 app/controllers/subscribes_controller.rb : 8 app/controllers/datasets_controller.rb : 56 ag -A "dataset" Print lines after match. If not provided, LINES defaults to 2 ag -B "dataset" Print lines before match. If not provided, LINES defaults to 2. Manual: man ag