diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e380bf2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pyc +*.pyo +*.DS_Store diff --git a/exercise.py b/exercise.py new file mode 100644 index 0000000..f281f9c --- /dev/null +++ b/exercise.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from functions.data_cleaning import clean_data +from functions.populate_db import populate_db +from functions.sql_queries import run_queries + + +#Give the path of the CSV file: +original_csv_path = 'reddit_exercise_data.csv' +#Call the data_cleaning function that creates the clean Dataframe: +df = clean_data(original_csv_path) +#create a variable with the path of the clean data +clean_data_path = 'results/clean_data.csv' +#save clean data to CSV file: +df.to_csv(clean_data_path, encoding='utf-8', index=False) + +db_path = 'exercise_database.db' +#Call the function to populate the database: +populate_db(db_path, clean_data_path) + +#Run metrics SQL queries and save results to separate CSV files: +run_queries(db_path) diff --git a/exercise_database.db b/exercise_database.db index 37b6d44..13d497b 100644 Binary files a/exercise_database.db and b/exercise_database.db differ diff --git a/functions/__init__.py b/functions/__init__.py new file mode 100644 index 0000000..633f866 --- /dev/null +++ b/functions/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/functions/data_cleaning.py b/functions/data_cleaning.py new file mode 100644 index 0000000..8c3855d --- /dev/null +++ b/functions/data_cleaning.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +import pandas as pd +import datetime + +def clean_data(csv_path): + # read the csv file + df = pd.read_csv(csv_path , encoding='utf-8',) + + # make money_spent a float to be converted to NUMERIC data type in SQLite + df['money_spent'] = df['money_spent'].apply(lambda x: float(x)) + + # product_name only has one value (used df['product_name'].value_counts() to see that) telling us this is about the Reddit app. + # Therefore it brings no information so we delete it + del df['product_name'] + + # Every row's time is 00:00 so the time information is useless that date column is a datetime. + # Also, the date format changes between rows + # So let's make this column a date string in a format that SQLite will interpret as date https://www.sqlite.org/lang_datefunc.html + # all dates have year first, except for the ones uysing / instead of - + # transforming the dates to a "year first" date format. + def change_to_year_first_format(date_string): + if '/' in date_string: + return datetime.datetime.strptime(date_string, '%m/%d/%y').strftime('%Y-%m-%d') + else: + return date_string + + df['date'] = df['date'].apply(change_to_year_first_format) + df['date'] = pd.to_datetime(df['date'], yearfirst=True).apply(lambda x: x.strftime('%Y-%m-%d')) + +# Create columns with bins for apps_bought and money_spent. + + # Given the EDA, I could have used the following bins: + # bins_apps = [-1, 1, 5, 10, 25, 50, 100] + # bins_money = [-1, 1, 5, 10, 50, 100,200,300,400,450,500] + # but not sure of the business requirements, and given that this needs to be production ready for any data, + # I prefer using X bins of the same size. + df['app_bought_bucket'] = pd.cut(df['app_bought'], 20) + df['money_spent_bucket'] = pd.cut(df['money_spent'], 20) + + return df diff --git a/functions/populate_db.py b/functions/populate_db.py new file mode 100644 index 0000000..d8a6f7b --- /dev/null +++ b/functions/populate_db.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +import pandas as pd +import sqlite3 + +def populate_db(db_path, clean_data_path): + connection = sqlite3.connect(db_path) + clean_data = pd.read_csv(clean_data_path) + clean_data.to_sql(name = 'reviews', con = connection, if_exists = 'replace', index = False) + connection.close() \ No newline at end of file diff --git a/functions/sql_queries.py b/functions/sql_queries.py new file mode 100644 index 0000000..b4d8f85 --- /dev/null +++ b/functions/sql_queries.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +import pandas as pd +import sqlite3 + +queries_dict = { + 'average_score_by_iso': """SELECT iso ,AVG(score) FROM reviews GROUP BY iso """, + 'max_score_by_app_bucket': """SELECT app_bought_bucket , MAX(score) FROM reviews GROUP BY app_bought_bucket """, + 'average_score_over_time': """SELECT date , AVG(score) FROM reviews GROUP BY date ORDER BY date(date)""" +} +#generate one CSV per query: +def run_queries(db_path): + connection = sqlite3.connect(db_path) + + for key , value in queries_dict.items(): + new_df = pd.read_sql(value, con=connection) + new_df.to_csv(f'results/{key}.csv' , index=False) + + connection.close() \ No newline at end of file diff --git a/results/average_score_by_iso.csv b/results/average_score_by_iso.csv new file mode 100644 index 0000000..834d9ac --- /dev/null +++ b/results/average_score_by_iso.csv @@ -0,0 +1,82 @@ +iso,AVG(score) +AE,4.714285714285714 +AL,5.0 +AR,4.9 +AT,4.461538461538462 +AU,4.50561797752809 +BE,4.777777777777778 +BG,5.0 +BH,4.0 +BN,5.0 +BR,4.612903225806452 +BY,5.0 +CA,4.468421052631579 +CH,4.818181818181818 +CL,4.625 +CN,4.862068965517241 +CO,5.0 +CR,5.0 +CY,5.0 +CZ,5.0 +DE,4.734939759036145 +DK,4.678571428571429 +DO,5.0 +EC,3.6666666666666665 +EG,4.666666666666667 +ES,4.833333333333333 +FI,4.363636363636363 +FR,4.722222222222222 +GB,4.664576802507837 +GR,4.6 +GT,5.0 +HK,4.6 +HN,4.0 +HR,4.6 +HU,4.333333333333333 +ID,4.833333333333333 +IE,4.6 +IL,5.0 +IN,4.84375 +IS,4.0 +IT,4.9411764705882355 +JO,5.0 +JP,4.9 +KH,5.0 +KR,4.2 +KW,5.0 +KZ,5.0 +LB,5.0 +LK,5.0 +LT,5.0 +LV,5.0 +MK,5.0 +MT,5.0 +MX,4.620689655172414 +MY,4.407407407407407 +NE,5.0 +NG,4.5 +NL,4.622222222222222 +NO,4.775 +NZ,4.5 +OM,4.0 +PE,4.833333333333333 +PH,4.857142857142857 +PK,4.0 +PL,4.666666666666667 +PT,5.0 +RO,4.714285714285714 +RU,4.684210526315789 +SE,4.5 +SG,4.964285714285714 +SI,5.0 +SK,5.0 +TH,4.888888888888889 +TN,5.0 +TR,4.75 +TW,4.6 +TZ,5.0 +UA,4.857142857142857 +US,4.507191994996873 +UY,5.0 +VN,5.0 +ZA,4.529411764705882 diff --git a/results/average_score_over_time.csv b/results/average_score_over_time.csv new file mode 100644 index 0000000..ac28173 --- /dev/null +++ b/results/average_score_over_time.csv @@ -0,0 +1,50 @@ +date,AVG(score) +2017-05-23,4.3478260869565215 +2017-05-24,4.688524590163935 +2017-05-25,4.440860215053763 +2017-05-26,4.595238095238095 +2017-05-27,4.783333333333333 +2017-05-28,4.863636363636363 +2017-05-29,4.626373626373627 +2017-05-30,4.602941176470588 +2017-05-31,4.280405405405405 +2017-06-01,4.516624040920716 +2017-06-02,4.523605150214593 +2017-06-03,4.670731707317073 +2017-06-04,4.574468085106383 +2017-06-05,4.752 +2017-06-06,4.71304347826087 +2017-06-07,4.536082474226804 +2017-06-08,4.538461538461538 +2017-06-09,4.595238095238095 +2017-06-10,4.59375 +2017-06-11,4.791666666666667 +2017-06-12,4.589285714285714 +2017-06-13,4.597560975609756 +2017-06-14,4.388888888888889 +2017-06-15,3.625 +2017-06-16,3.625 +2017-06-17,3.8333333333333335 +2017-06-18,3.2777777777777777 +2017-06-19,3.2222222222222223 +2017-06-20,3.8 +2017-06-21,2.3333333333333335 +2017-06-22,2.8 +2017-06-23,3.090909090909091 +2017-06-24,3.2 +2017-06-25,2.8 +2017-06-26,3.4 +2017-06-27,4.562893081761007 +2017-06-28,4.667493796526054 +2017-06-29,4.644268774703558 +2017-06-30,4.67741935483871 +2017-07-01,4.71875 +2017-07-02,4.689655172413793 +2017-07-03,4.734513274336283 +2017-07-04,4.785046728971962 +2017-07-05,4.534883720930233 +2017-07-06,4.537634408602151 +2017-07-07,4.525773195876289 +2017-07-08,4.677083333333333 +2017-07-09,4.466666666666667 +2017-07-10,4.928571428571429 diff --git a/results/clean_data.csv b/results/clean_data.csv new file mode 100644 index 0000000..fbb8d45 --- /dev/null +++ b/results/clean_data.csv @@ -0,0 +1,5799 @@ +title,review,iso,score,date,app_bought,money_spent,app_bought_bucket,money_spent_bucket +Love it!,I use this app to read r/nosleep stories before bed. I love it!,US,5,2017-07-10,47,140.0,"(45.0, 50.0]","(125.0, 150.0]" +•••,Dank memes,MY,5,2017-07-10,3,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Very good app,"Love the app, makes using Reddit very convenient",US,5,2017-07-10,61,182.0,"(60.0, 65.0]","(175.0, 200.0]" +CNN here,"As the CEO of CNN I find this app repulsive. All of the violent ""memes"" about CNN could lead to one of our employees getting hurt. Please remove this app from the App Store or we are going to have an issue.",US,5,2017-07-10,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Easy peasy!,"I was infrequent in my visits, mainly mobile website. But since I downloaded I get such simple notifications of things I wouldn't have known of otherwise. Very streamlined!",US,5,2017-07-10,59,178.0,"(55.0, 60.0]","(175.0, 200.0]" +Reddit!!!,Never knew it was something so useful,US,5,2017-07-10,24,71.0,"(20.0, 25.0]","(50.0, 75.0]" +Good reading,It's good reading and I like the colours.,CA,5,2017-07-10,28,112.0,"(25.0, 30.0]","(100.0, 125.0]" +Works great,"I've never been an active Reddit user, but the app is much better than the site when on a phone. If you often find yourself on the Reddit website while browsing the internet, this app is very much worth it",US,4,2017-07-10,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +App is better than website,Please make your website equally easy to use. Having thumbnails automatically open like in the app would be so much easier,US,5,2017-07-10,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Great Time Waster,The amount of time spent on this app is ridiculous ! It's amazing what people post on here. Always something interesting.,US,5,2017-07-10,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Just like the site,Love it,US,5,2017-07-10,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +Really Smooth,Like it,DE,5,2017-07-10,3,14.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Fun,Fun,US,5,2017-07-10,34,137.0,"(30.0, 35.0]","(125.0, 150.0]" +Bool,Lil baller Faze Aizy be ballin ma dude,US,5,2017-07-10,27,109.0,"(25.0, 30.0]","(100.0, 125.0]" +Excellent!,Well designed,US,5,2017-07-09,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Easier than through safari,Made the switch as soon as app came out. Improves my Reddit experience.,US,4,2017-07-09,55,277.0,"(50.0, 55.0]","(275.0, 300.0]" +Love the pics,I am impressed with the variety,US,5,2017-07-09,33,131.0,"(30.0, 35.0]","(125.0, 150.0]" +很好,很好!,CN,5,2017-07-09,59,178.0,"(55.0, 60.0]","(175.0, 200.0]" +Love it.,Great app. Great content,US,5,2017-07-09,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +It's the best,Seriously,US,5,2017-07-09,48,95.0,"(45.0, 50.0]","(75.0, 100.0]" +Gud,Gudgud,US,5,2017-07-09,54,215.0,"(50.0, 55.0]","(200.0, 225.0]" +<3,What a wonderful app.,CA,5,2017-07-09,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome!,It's awesome. Yea,US,5,2017-07-09,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +👍🏻👍🏻👍🏻👍🏻,👍🏻👍🏻👍🏻👍🏻,CZ,5,2017-07-09,59,117.0,"(55.0, 60.0]","(100.0, 125.0]" +Awesome,Very smooth naviguation,CA,4,2017-07-09,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Viewing a gif pauses my music,"Didnt happen in previous versions, please fix 🙏",NL,3,2017-07-09,20,59.0,"(15.0, 20.0]","(50.0, 75.0]" +Memetastic,R/the_donald is all I have to say,US,5,2017-07-09,45,224.0,"(40.0, 45.0]","(200.0, 225.0]" +Superb,Great app,US,5,2017-07-09,59,297.0,"(55.0, 60.0]","(275.0, 300.0]" +Memes,Memes,CH,5,2017-07-09,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Can't turn off notifications,I changed my settings to not receive notifications but I still constantly get notifications from subreddits I'm not even subscribed to. Very annoying. Switching back to BaconReader,US,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Świetna do przeglądania reddita,"Działa bardzo dobrze. Jak na razie jedyny minus to nieco utrudnione używanie opcji ""collapse thread"". Poza tym bomba. Szybko i wygodnie.",PL,5,2017-07-09,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Great,No problem with the app. Great!,RO,5,2017-07-09,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Great app few bugs,Despite the occasional bug this is a great app!,US,5,2017-07-09,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +DANGER: Old guy with technology,So much information! I love the raw form (no special gui) and its up to the user to find the useful things.,US,4,2017-07-09,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +It let's me do Reddit on the go,I like it,US,5,2017-07-09,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Information and noods,Love it long time.,US,5,2017-07-09,66,66.0,"(65.0, 70.0]","(50.0, 75.0]" +Perfekt,"So schlimm die Webversion ist, so perfekt ist die App.",AT,5,2017-07-09,22,43.0,"(20.0, 25.0]","(25.0, 50.0]" +Reddit rules!!,"Reddit is an awesome way to pass time, any time of day, anywhere. I rarely use any of my social networks anymore because I find so many more interesting and useful posts on Reddit every day!",US,5,2017-07-09,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great App,Awesome app! Love to use it when I'm bored!,US,5,2017-07-09,16,16.0,"(15.0, 20.0]","(-0.5, 25.0]" +Nice app but low data version needed.,Thumbnails and images keep automatically loading despite my trying to trying to change the settings. Therefore eats up my data plan. Good app - low data version needed.,CA,4,2017-07-09,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Cool app,😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎snorks are obviously a Addams family rip off😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎,US,4,2017-07-09,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +Gifs,Love the app for looking at gifs of baby animals! The Redditors do go off topic very quickly however.,ZA,5,2017-07-09,68,339.0,"(65.0, 70.0]","(325.0, 350.0]" +As stated.,Nice UX/UI for the site. Keeps me coming back.,US,5,2017-07-09,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Awesome,Just great!,CO,5,2017-07-09,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Ads....so. Many. Ads.,I enjoy reddit but I don't enjoy having ads. I haven't been using this app as much as I used to. Can we get the option NOT to see them? Or to rate them by relativity & spam or inappropriate? I,US,2,2017-07-09,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +One of nicest apps I've ever downloaded,"Simple, fast and very friendly. +Spending more time here than in 9gag",RU,5,2017-07-09,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love this app!,Great app!,US,5,2017-07-09,66,263.0,"(65.0, 70.0]","(250.0, 275.0]" +Awesome app,It's reddit what else do you need to know,US,5,2017-07-09,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +Beautiful Interface. One of my favorite apps,This app has a simple interface that is easy to use and love.,US,5,2017-07-09,45,182.0,"(40.0, 45.0]","(175.0, 200.0]" +Stop sending me notifications of trending posts,Also your community is cancer,US,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app!,"Works perfectly, which is a bummer since it makes me spend endless hours on Reddit.",RO,5,2017-07-09,36,178.0,"(35.0, 40.0]","(175.0, 200.0]" +One Thing,I don't think that new and inactive users should have to gain karma to post things.,US,4,2017-07-09,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +有意思,挺好玩的app,CN,4,2017-07-09,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +All my favorites,All my favorite things to read about are available in 2 or 3 clicks and with the amazing community are constantly updated,US,5,2017-07-09,50,99.0,"(45.0, 50.0]","(75.0, 100.0]" +Love Reddit!,Very funny stuff!,US,4,2017-07-09,2,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it,"👍🏼 +Great app!",CA,5,2017-07-09,15,44.0,"(10.0, 15.0]","(25.0, 50.0]" +First time user and I love it,Used to use it only to browse specific topics till I really started using it today would recommend,US,5,2017-07-09,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great app!,Only content time kill app you need!,CA,4,2017-07-09,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Super app!,Perfect om je favoriete Reddits te volgen,BE,5,2017-07-09,59,235.0,"(55.0, 60.0]","(225.0, 250.0]" +Great time killer.,A great way to pass time.,US,5,2017-07-09,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +不错,比国内的少点乱七八糟的东西。,CN,4,2017-07-09,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +Still missing a couple of things,"Good so far, but would like to be able to having rising as an option for my home page and for it to be set as my default filter. It's always on hot when I open the app. One major thing; could we please have the ability to copy and paste an from the OP while commenting? Other editing tools would be great. Other apps have gotten you beat there. + +**UPDATE July 9, 2017: Copy and paste while commenting on the OP was added.",US,3,2017-07-09,5,21.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit Rules,Essential app,MX,5,2017-07-09,31,126.0,"(30.0, 35.0]","(125.0, 150.0]" +Great app!,Easy to use. Always works.,CA,5,2017-07-09,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Good app,Does what it needs to do,AU,5,2017-07-09,52,259.0,"(50.0, 55.0]","(250.0, 275.0]" +Universal Social Media Platform,"Do you like instagram? Facebook? Twitter? News? Something on the internet? + +Then you are in luck! Reddit is the internet in one app with everything you need. + +The best app there is.",ZA,5,2017-07-09,38,154.0,"(35.0, 40.0]","(150.0, 175.0]" +Love it!,One of my favorite apps.,US,5,2017-07-09,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Amazing,Great community,NL,5,2017-07-09,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Better than mobile browser,So far so good!,US,4,2017-07-09,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +"Great app, gifs could be better","I love everything about this app, except for the quality of gifs. Wish that was a bit smoother. Other than that, it's great!",US,4,2017-07-09,34,137.0,"(30.0, 35.0]","(125.0, 150.0]" +👍🏼,Very nois,DE,5,2017-07-09,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Nice,Reddit keeps me alive,TR,5,2017-07-09,39,157.0,"(35.0, 40.0]","(150.0, 175.0]" +Reddit isnt working,"Won't let me log in +I have an iphone 5s on iOS10",CA,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,"Great app! + +I would just like to easily be able to share posts with friends.",US,5,2017-07-09,24,122.0,"(20.0, 25.0]","(100.0, 125.0]" +Simple and great,It's simple and great to learn share discuss any topic about whole world.,IN,5,2017-07-09,38,77.0,"(35.0, 40.0]","(75.0, 100.0]" +Functional and smooth,"Reddit is great, in my opinion, but that aside, the app itself works smoothly for me, on an older iPhone 5, and is functional. Aka a good app.",DK,5,2017-07-09,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Asd,"Alien Blue sokkal jobb. +- tele van reklamokkal. Ejszakai modban nezelodsz es feher hatalmas hulye kepeket rak be reklamnak hogy kiegjen a retinad es amugyis tul sok van beloluk +- nem lehet swipeolassal collapsolni kommenteket +- upvote a reply gomb mellett tul kozel van kommenteknel es allandoan szenvedes eltalalni pedig nincs nagy ujjam +- nem lehet lefele swipeolassal frissiteni a kontentet, ujra kell inditani az egesz appot +- popular reszen szinte csak kepeket ad be, text postok sehol +- 18 oras posztokkal van tele, hagyjuk mar... Bar ez reddit hibaja nem az app de rohadt idegesito. +- es ebbol kovetkezik, hogy nem lehet swipe hideolni posztokat, manualisan kell az otmillio eves ezerszer latott szar posztokat eltuntetni ha mar unom hogy mindig ugyanazt latom.",HU,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Solid👌,Great place to vent,CA,5,2017-07-09,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Best reddit app I've found,Glad I came along this app.,US,4,2017-07-09,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Sweet,"Nice app, pat your back twice & rate it.",US,5,2017-07-09,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Reddit,It's pretty good,AU,5,2017-07-09,59,176.0,"(55.0, 60.0]","(175.0, 200.0]" +Reddit Best Thing Ever,I think the title speaks for itself,US,5,2017-07-09,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Slick af,Love the design.,CA,5,2017-07-09,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Great app!,Could do with the quotation function do replies though,SG,5,2017-07-09,49,147.0,"(45.0, 50.0]","(125.0, 150.0]" +最好的reddit客户端,速度快、界面简洁。,CN,5,2017-07-09,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +Cool,It's a gooood app,US,5,2017-07-09,8,17.0,"(5.0, 10.0]","(-0.5, 25.0]" +Fantastic,Love it,US,5,2017-07-09,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Top,10/10,HR,5,2017-07-09,20,81.0,"(15.0, 20.0]","(75.0, 100.0]" +I prefer the app to the website!,"I have been using the internet since 1997ish, and only went out of my way to visit the desktop browser version of Reddit this past year. I had heard about it, but what I had heard led message to believe that it was a slightly more user friendly version of 4chan, which I (as a writer/proof reader as well as a kind, loving, and 99.9% non-confrontational person) had been advised to avoid at all costs... but I suppose it surely has evolved into its own entity as I enjoy the site and way too many subs a whole bunch. I love this app though, even more than the website as it is 100% user-friendly! Most of the people are nice, trolls are hunted down and muted, and yeah...if you are searching for a public forum for just about any topic or subject you can imagine (and plenty you have never even imagined too), or are already a fan of Reddit, you should absolutely get this app right now!!",US,5,2017-07-09,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +"Solid platform, would download again",Tldr I like,US,5,2017-07-09,65,260.0,"(60.0, 65.0]","(250.0, 275.0]" +It's good,Love it best website so far for internet binges,CA,5,2017-07-09,54,269.0,"(50.0, 55.0]","(250.0, 275.0]" +很棒!,目前为止,唯一一款app的评论里没有一条广告、没有凑字数却满满都是好评(虽然字数不多)的app,CN,5,2017-07-09,8,15.0,"(5.0, 10.0]","(-0.5, 25.0]" +Everything I want and need,It's just beautiful,CA,5,2017-07-09,52,207.0,"(50.0, 55.0]","(200.0, 225.0]" +10/10 would do again,Good stuff,US,5,2017-07-09,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Great app,Easy to use,US,5,2017-07-09,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Not a bad time,"For real, not a bad time",US,5,2017-07-09,68,271.0,"(65.0, 70.0]","(250.0, 275.0]" +Hi,Love Reddit,US,5,2017-07-09,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Semi reliable,"It worked well for months. Loved it. Sometimes lately though it's been giving me the error ""cannot reach Reddit"" and while I can reach it on my browser fine, the app won't connect for hours and sometimes days.",US,3,2017-07-09,5,19.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Nice, clean app..",Smooth performance with this app and it hasn't stuttered once. I'm new to Reddit and thus app is helping me get the most out of a great site. Thanks!,CA,4,2017-07-09,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +At last!,I'm so glad they've come out with a proper Reddit app!,US,5,2017-07-09,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great App,"Love it, can spend hours on it, really top notch app.",US,5,2017-07-09,22,45.0,"(20.0, 25.0]","(25.0, 50.0]" +New posts have little chance,"I really love this app but have one problem that ultimately hurts me and lots of others, it automatically shows you the most popular in a reddit rather than the most recent, so not enough people see the new ones to make them popular, you can set it to where it shows you new ones instead, but most either don't know about it or can't be bothered, so really good posts get ignored because the ones that get attention are shown to more people instead of the newer ones, a lot of the time this isn't a problem, but on reddits like writing prompts, it can be hard to get the attention you need to get comments that are relevant",US,3,2017-07-09,8,32.0,"(5.0, 10.0]","(25.0, 50.0]" +Great,Works great!,CA,5,2017-07-09,43,173.0,"(40.0, 45.0]","(150.0, 175.0]" +Review,Meh,US,5,2017-07-09,3,14.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Best place for porn,But always bugging for a review mid-sesh,US,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love,Great app,US,5,2017-07-09,34,168.0,"(30.0, 35.0]","(150.0, 175.0]" +They asked me to,They asked if I am enjoying reddit. I said yaass. So they asked me to give them a rate.,US,5,2017-07-09,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it,Great app and clean ui,AU,5,2017-07-09,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Reddit,It's reddit. Were you expecting less?,US,5,2017-07-09,4,21.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Better way to scroll!!,"Way more interesting than other social media venues. Imagination galore, good choices, flex the feed. I love it!",US,5,2017-07-09,25,101.0,"(20.0, 25.0]","(100.0, 125.0]" +Good,Soooooooo nice!!!,CN,5,2017-07-09,68,342.0,"(65.0, 70.0]","(325.0, 350.0]" +Very interesting,"Find anything, and everything, on reddit. Having a great time exploring everyone's interests, opinions, art, and just anything. Wish navigation were a bit easier, more intuitive.",US,4,2017-07-09,31,61.0,"(30.0, 35.0]","(50.0, 75.0]" +Works well,Works well,GB,4,2017-07-09,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +No Sleep,Can't put phone down...,GB,5,2017-07-09,62,185.0,"(60.0, 65.0]","(175.0, 200.0]" +Coo,Cooo,US,5,2017-07-09,48,143.0,"(45.0, 50.0]","(125.0, 150.0]" +"It told me to rate the app, so I'm giving it 1 star.","It told me to rate the app, so I'm giving it 1 star.",US,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's reddit,Yep,US,4,2017-07-09,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Works well!,Solid app.,CA,5,2017-07-09,52,157.0,"(50.0, 55.0]","(150.0, 175.0]" +Too many rules,"Reddit has too many rules for posting. My posts come back 75% of the time because ""its in the wrong subreddit"" or ""it's inconveniencing"". Dumb app. Too many liberals.",US,1,2017-07-09,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Pretty nice,US,5,2017-07-08,39,157.0,"(35.0, 40.0]","(150.0, 175.0]" +Fantastic,Appsolutely Great!,US,5,2017-07-08,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +De beat meeemememe,THESE MEMEMEME ARE DE BEEEST,US,5,2017-07-08,45,91.0,"(40.0, 45.0]","(75.0, 100.0]" +Excellent,One of the best communities out there. Love this app.,US,5,2017-07-08,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app!,Like the title says,GB,5,2017-07-08,29,147.0,"(25.0, 30.0]","(125.0, 150.0]" +Love it,Such a good app to kill time or to even ask questions and get others opinions,US,5,2017-07-08,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +There I rated it,Now shut up,GB,5,2017-07-08,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +5 Star,Two Words. Dank Memes,US,5,2017-07-08,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Alien Blue was better.,Alien Blue is a much better app.,US,1,2017-07-08,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +UI,Smooth. Simple. Reddit. I've only seen UI this nice on skype and discord. Every time I open the reddit app and makes me smile. :),US,5,2017-07-08,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +great,truly is front page of the internet,US,5,2017-07-08,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +It Cured My Gout,"Now stop bugging me for a review, Reddit. Jesus.",US,5,2017-07-08,69,346.0,"(65.0, 70.0]","(325.0, 350.0]" +Great app,I've had no problems with this app.,US,5,2017-07-08,6,19.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,"Great app. Fast, smooth and intuitive",US,4,2017-07-08,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Real good,So easy to use,GB,5,2017-07-08,22,67.0,"(20.0, 25.0]","(50.0, 75.0]" +Love it,I can spend hours on reddit without even realising it,NZ,5,2017-07-08,48,95.0,"(45.0, 50.0]","(75.0, 100.0]" +Easy App to Use,Cool app.,US,5,2017-07-08,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Tut was es soll,Keine Abstürze.,DE,5,2017-07-08,27,136.0,"(25.0, 30.0]","(125.0, 150.0]" +One click collapse a thread,"Yes, you can one-click collapse a thread. Just click the blank area after the user name of a post.",US,5,2017-07-08,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +Boooo!,"Sorry, can't reach Reddit.",CA,1,2017-07-08,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Stopped Working / Not Loading,Are there any others having this problem? It's been about 40 hours now since I was able to use it. Never had this problem before and I've done nothing different than I usually do. I also updated the app about 12 hours ago to see if that would help...,US,3,2017-07-08,39,156.0,"(35.0, 40.0]","(150.0, 175.0]" +Meh,It's alright,US,3,2017-07-08,15,59.0,"(10.0, 15.0]","(50.0, 75.0]" +Trolls have ruined Reddit,"I have been an avid Redditur for many years, I love the diversity and openness to it, but unfortunately the trolls have taken over. Mods don't seem to care enough to rid this place of BS bc it gets them upvotes. Hopefully those in charge wake up and see what they are turning this great site/app into.",US,1,2017-07-08,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Is very good for viewing Reddit,Yes is good,US,5,2017-07-08,41,162.0,"(40.0, 45.0]","(150.0, 175.0]" +You've come so far!,"It took me a long time to come around, but you've finally nailed this app down & I couldn't be happier. I'll take this over all the third party options until the end of time. + +But a request? Allow us landscape viewing, please!",US,5,2017-07-08,47,140.0,"(45.0, 50.0]","(125.0, 150.0]" +Awesome,Love it,US,5,2017-07-08,54,269.0,"(50.0, 55.0]","(250.0, 275.0]" +Reddit Rocks,Easy to use and apparently easy to be abused by CNN if they don't like what you post on it.,US,5,2017-07-08,45,136.0,"(40.0, 45.0]","(125.0, 150.0]" +Good with some kinks,It's a good solid app that is easy to navigate with some drawbacks (putting links in etc.),US,3,2017-07-08,26,103.0,"(25.0, 30.0]","(100.0, 125.0]" +It's rad,Super rad,US,5,2017-07-08,55,276.0,"(50.0, 55.0]","(275.0, 300.0]" +Very nice,High five!,US,5,2017-07-08,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Love it,I'm a new user so I'm sure my review doesn't carry much weight but it's one of the best new apps that I've ever used.,US,5,2017-07-08,10,29.0,"(5.0, 10.0]","(25.0, 50.0]" +Great for actually thinking,If your tired of feeling mindless after looking at instagram this is for you!!,US,5,2017-07-08,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +REEEEEEEEEE,r/dankmemes is the best subreddit you normies.,US,5,2017-07-08,45,91.0,"(40.0, 45.0]","(75.0, 100.0]" +Meow,The meowest,NO,5,2017-07-08,17,67.0,"(15.0, 20.0]","(50.0, 75.0]" +Great,Does everything I want.,US,5,2017-07-08,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Great.,❤️❤️,US,5,2017-07-08,54,215.0,"(50.0, 55.0]","(200.0, 225.0]" +By by Facebook,Yep this will be prime outlet now.,US,5,2017-07-08,38,115.0,"(35.0, 40.0]","(100.0, 125.0]" +Awesome,Has something for everyone and everything you're interested in.,US,5,2017-07-08,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Favorite Social Media App,By far the best social media app I have on my phone. Manages to capture the best aspects of the website without making it look cluttered on a phone app.,US,5,2017-07-08,31,126.0,"(30.0, 35.0]","(125.0, 150.0]" +Easy to use. Fast.,See above.,US,5,2017-07-08,45,134.0,"(40.0, 45.0]","(125.0, 150.0]" +Really cool,"My new favorite flavor of social media. Handles media on other website in an intuitive way, unlike other apps.",US,5,2017-07-08,59,297.0,"(55.0, 60.0]","(275.0, 300.0]" +Pauses music at every video or GIF!!,"I'm playing music to Bluetooth speaker or Apple TV and Reddit pauses it at every video or GIF before I even press them. GAAAH + +Let us disable the ugly tracking appendage in URLs when sharing.",SE,4,2017-07-08,22,45.0,"(20.0, 25.0]","(25.0, 50.0]" +Great Everything!,"I love everything about this app, from the idea of Reddit to the perfect interface! Weather you need reliable news, memes, or a good laugh, this app is here for you. Highly recommend this to all of my friends!",US,5,2017-07-08,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Reddit,Great app. Works amazing.,US,5,2017-07-08,59,294.0,"(55.0, 60.0]","(275.0, 300.0]" +Fantastic!,"Simple, easy to use, and great for on the go!",US,5,2017-07-08,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Decent,New but getting a hang of it.,GB,4,2017-07-08,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +I'm here to rate!,外国友人都很有幽默感,CN,5,2017-07-08,64,257.0,"(60.0, 65.0]","(250.0, 275.0]" +Love it,Really great,CA,5,2017-07-08,25,101.0,"(20.0, 25.0]","(100.0, 125.0]" +No words,I just am amazed about everything,AU,5,2017-07-08,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +i enjoy the layout,its a fun app!! helps me discover people who like the same things as me,CA,5,2017-07-08,50,199.0,"(45.0, 50.0]","(175.0, 200.0]" +Great community...,...even the nobheads. 👍🏻,GB,5,2017-07-08,20,59.0,"(15.0, 20.0]","(50.0, 75.0]" +"It's Reddit, on my phone...","And it doesn't load slow on this crappy 4S with old software! That's nice, I guess...",DK,5,2017-07-08,40,159.0,"(35.0, 40.0]","(150.0, 175.0]" +Reddit and ifunny are the best,Love it,TR,5,2017-07-08,52,207.0,"(50.0, 55.0]","(200.0, 225.0]" +✌🏼,😚👌🏼,US,5,2017-07-08,20,78.0,"(15.0, 20.0]","(75.0, 100.0]" +Love this REDDIT App,Truly enjoy this app. Best app I have found for how I like to surf Reddit.,US,5,2017-07-08,27,106.0,"(25.0, 30.0]","(100.0, 125.0]" +Does what it advertises,"It's the only substitute for AlienBlue I guess. Once AlienBlue was purchased by Reddit, the app went downhill. I will use this until I find a better substitute.",US,3,2017-07-08,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +"Great, fun and informative",I love reddit. Stay informed and laugh at the same time.,US,5,2017-07-08,25,126.0,"(20.0, 25.0]","(125.0, 150.0]" +A great app,The reddit spirit is still alive and well in app version,GB,5,2017-07-08,26,129.0,"(25.0, 30.0]","(125.0, 150.0]" +The best,Such a fun and interesting tool to have. There are so many subreddits about so many different subjects that it is impossible to get bored or to not find one that suits you,MX,4,2017-07-08,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +1,2,US,5,2017-07-08,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Okay app but here's some ideas,"Let's you download some videos but not others. + +I use alien blue mostly but I do like the format of this app. Being able to see multiple gifs/vids playing on one page is very awesome but alien blue wins in simplicity. +Mesh the two and you have a perfect app. + +Please make alien blue premium free like in the past, it is a great app still.",US,4,2017-07-08,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +The Best App for Reddit,"Tried a few imitations, but keep coming back to this one. Fantastic interface!",US,5,2017-07-08,18,91.0,"(15.0, 20.0]","(75.0, 100.0]" +"Smooth interface, some minor flaws","I've been using the app since it first came out. I love how smooth and natural the interface is. The way you dispose of pictures and gifs feels very natural. The first flaw I saw with the app was the fact that you couldn't save comments (an issue which has since been fixed). Other than that, I find that some navigation is more difficult than it should be. On individual posts, I've noticed it's more difficult to navigate to the parent subreddit or access a user profile because you have to tap on the subreddit name or username. This has led to some issues: sometimes when I go to collapse comments, I will unintentionally access a user profile, or vice versa if I want to access a user's profile, I will accidentally collapse the comment thread. I'm a person with large thumbs, so this may be a few and far between issue. My original go-to Reddit app was BaconReader, which moved the user profile link for each comment into their options button (three dots) for each comment and post, a system which I prefer. Still, the app works great, no complaints on performance.",US,4,2017-07-08,42,125.0,"(40.0, 45.0]","(100.0, 125.0]" +Love it!,Fun to be able to peruse different interests.,US,5,2017-07-08,33,164.0,"(30.0, 35.0]","(150.0, 175.0]" +How good is it?,Hella,US,5,2017-07-08,66,131.0,"(65.0, 70.0]","(125.0, 150.0]" +Very nice,Entertaining,NL,4,2017-07-08,36,181.0,"(35.0, 40.0]","(175.0, 200.0]" +*pop* Noice,This type of media software is good for joining tons of community's and knowing what's going on throughout the world!,GB,5,2017-07-08,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Lots of fun,like /r/joke,US,5,2017-07-08,15,77.0,"(10.0, 15.0]","(75.0, 100.0]" +Recommended 👍🏼,Worth the 5 ⭐️⭐️⭐️⭐️⭐️,GB,5,2017-07-08,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +很有意思的社区,如题,CN,5,2017-07-08,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Yay,Reddit yeah!,AU,5,2017-07-08,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Great app!!,Good job !!! 👍,CA,5,2017-07-08,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Perfect,No words,US,5,2017-07-08,10,39.0,"(5.0, 10.0]","(25.0, 50.0]" +Lit,Af,DK,5,2017-07-08,64,127.0,"(60.0, 65.0]","(125.0, 150.0]" +Great,Prefect!,CN,5,2017-07-08,11,34.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app,Works as well as the site.,US,5,2017-07-08,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +Great app,Thats all,US,5,2017-07-08,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Best time waster ever,I,CA,4,2017-07-08,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Best,Reddit is a good place to mingle and browse,SG,5,2017-07-08,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Gets better every time.,"Probably one of my favorite apps not only because of the content it provides, but the constant updates, and continuing support. One of the best apps in the ecosystem. + +Developers need to learn from this.",US,5,2017-07-08,47,187.0,"(45.0, 50.0]","(175.0, 200.0]" +lacks functionality. Saved items still not appearing.,A decent app for casual users but lacks functionality of 3rd party apps.,NZ,2,2017-07-08,4,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it!!,"Great App for wonderful ideas for your babies or baby. I love the story's the most! Could not put my phone down after I started reading the stories! There is a ton of stuff on the app, but if you go on and play around with App you are going to love it!! Great idea whoever invented this!!",US,5,2017-07-08,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Reddit writer,"I like how Reddit is a platform where you are like playing a game, the more upvotes the more karma!",US,5,2017-07-08,55,218.0,"(50.0, 55.0]","(200.0, 225.0]" +Duh,It's an app for reddit,CA,5,2017-07-08,31,126.0,"(30.0, 35.0]","(125.0, 150.0]" +Great app!!,Use it for a few minutes or for hours. Great app and great community.,CA,5,2017-07-08,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +New user,"Good app. Can be overwhelming. Get used to it, plebs.",US,5,2017-07-08,45,134.0,"(40.0, 45.0]","(125.0, 150.0]" +Awesome,Really like it !,TW,5,2017-07-08,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +My go-to time waster,I have no gripes,US,5,2017-07-08,36,107.0,"(35.0, 40.0]","(100.0, 125.0]" +Blown away,"I was always skeptical of using Reddit. I would occasionally browse it on my computer and I never really got into it, but once I downloaded this app everything changed. This app is one of the most functional and interesting apps I have ever used. Everything runs smoothly and I have not run into a single issue, major kudos.",US,5,2017-07-08,29,143.0,"(25.0, 30.0]","(125.0, 150.0]" +Resisted Downloading Until Called to Serve,"I resisted downloading the app, preferring the website out of pure stubbornness. However, I have been called on by my country to serve in the 2017 Great Meme War: Operation Autistic Storm. The call will not go unanswered. I stood idly by in The Great Meme War of 2016 and I shall not make that mistake again. Join us, my brothers!! Join us in defeating tyranny and those who would seek to oppress, intimidate, doxx, or otherwise harm our nation's youth!!! Heed our call to arms and take up your positions!!!",US,5,2017-07-08,68,342.0,"(65.0, 70.0]","(325.0, 350.0]" +Love it,Don't know what I'd do without it!!!,CA,5,2017-07-08,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Awesome.,Furreal.,US,5,2017-07-08,55,109.0,"(50.0, 55.0]","(100.0, 125.0]" +Best app ever,Must have!,US,5,2017-07-08,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Reddit app is great!,Love getting my reddit fix on my phone!,CA,5,2017-07-08,8,34.0,"(5.0, 10.0]","(25.0, 50.0]" +Awesome,What's not to like?,US,5,2017-07-08,18,73.0,"(15.0, 20.0]","(50.0, 75.0]" +Research,I'm closer to answers here than the internet. THANK YOU,US,5,2017-07-08,29,59.0,"(25.0, 30.0]","(50.0, 75.0]" +obscenities,"well I saw the 5 star and figured this would be a good news app, but after downloading I see nothing but cursewords and racially charged posts. At least I know to stay away from reddit now.",US,1,2017-07-07,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +New user,So far so good,US,5,2017-07-07,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app for the iPhone but not optimised for the iPad .,"It's a shame because the iPhone app is great, however the iPad app is terrible and has forced me to move back to the alien blue app due to the lack of optimisation.",GB,3,2017-07-07,35,70.0,"(30.0, 35.0]","(50.0, 75.0]" +Love it,Really fun app with loads of interesting stuff.,GB,5,2017-07-07,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Yes,Nam Jeff,US,5,2017-07-07,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Bennet92,This is the best app in the world,US,5,2017-07-07,38,189.0,"(35.0, 40.0]","(175.0, 200.0]" +Great app,"But can you please, PLEASE move the ""jump to bottom"" button out of the way of the upvote/downvote button?",US,4,2017-07-07,28,141.0,"(25.0, 30.0]","(125.0, 150.0]" +Great app,Works great,US,5,2017-07-07,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +Love it,Great way to procrastinate 10/10,US,5,2017-07-07,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +Perfect (almost),"Reddit is awesome and it is almost like the original online. The only reason why I don't rate Reddit with 5 stars is because of lack of iPad support. When I mean iPad support I don't mean that you can't download it, however, because of the iPad's bigger screen the Reddit screen does not cover the whole iPad screen.",GR,4,2017-07-07,26,132.0,"(25.0, 30.0]","(125.0, 150.0]" +Favourite app!,Also addicting!,CA,5,2017-07-07,70,349.0,"(65.0, 70.0]","(325.0, 350.0]" +Reddit Completes Me!!,Very user friendly App! Love it.,CA,5,2017-07-07,15,46.0,"(10.0, 15.0]","(25.0, 50.0]" +Default Reddit setting,I wish it opened to a favorites default Reddit thread,US,5,2017-07-07,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +This app is my boy,Great way to kill 40 minutes of downtime.,US,5,2017-07-07,31,126.0,"(30.0, 35.0]","(125.0, 150.0]" +Decent app,For the most part it's great but some things can improve. E.g. First time posting I didn't know about flair so the bot responded later. Just don't allow the post then. Also it's not obvious how to delete old messages.,CA,4,2017-07-07,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +Great News,The news thread on this app has probably been the most credible outlet I've found. Much better than what other wide spread news outlets like CNN have turned into.,US,5,2017-07-07,57,287.0,"(55.0, 60.0]","(275.0, 300.0]" +Gr8,Gr8,AU,5,2017-07-07,3,14.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Mr. Poppycock,I miss alien blue but this app will do.,US,4,2017-07-07,8,17.0,"(5.0, 10.0]","(-0.5, 25.0]" +Nice,Nice,US,5,2017-07-07,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +Doing my part.,"Now, leave me alone. ;)",US,4,2017-07-07,49,148.0,"(45.0, 50.0]","(125.0, 150.0]" +"Sorry, can't reach better review","Unable to download review, try again later!",US,2,2017-07-07,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +10/10 memes,BEST MEMES,US,5,2017-07-07,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Amazing App,It is not often that the app is easier to use than the actual website. And this one is!,US,5,2017-07-07,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Love it,Really liking all the features available,CA,4,2017-07-07,7,29.0,"(5.0, 10.0]","(25.0, 50.0]" +Decent,This app does the trick. I particularly like using the night theme. It doesn't hurt my eyes nearly as much.,US,5,2017-07-07,55,166.0,"(50.0, 55.0]","(150.0, 175.0]" +Easy to use,Great app,US,5,2017-07-07,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Top Runner in Meme War,"Ya I joined a few years back and let me tell you there is no better way to keep up with modern news, memes, and more",US,5,2017-07-07,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +"I probably spend at least a third of my time on here, maybe half","I probably spend at least a third of my time on here, maybe half. I don't know why, but I haven't been getting on Facebook as much as usual this summer",US,5,2017-07-07,53,48.0,"(50.0, 55.0]","(25.0, 50.0]" +Great app,"Love it, can't keep my thumbs off the app.",MY,5,2017-07-07,15,0.0,"(10.0, 15.0]","(-0.5, 25.0]" +Top Kek,Good boi,US,5,2017-07-07,54,187.0,"(50.0, 55.0]","(175.0, 200.0]" +This thing,Is quite interesting 👍,GB,5,2017-07-07,62,210.0,"(60.0, 65.0]","(200.0, 225.0]" +Super duper luper cooper!,"This is where you go to find the memes on Instagram reposted before you see them there. So when your friend wants to show you a meme off of Instagram, you have already seen it. But then boom, you can show them a dope meme that is not on Instagram yet and then people will think your funny and then you will climb up the social ladder and dominate everyone. (from experience)",US,5,2017-07-07,43,0.0,"(40.0, 45.0]","(-0.5, 25.0]" +SUPPORT R/DANKMEMES IN THE GREAT MEME WAR,REEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE,US,5,2017-07-07,40,117.0,"(35.0, 40.0]","(100.0, 125.0]" +WHATS NOT TO LOVE??!??,"I can make any trade I want! Get all the prices I want from the community! There are giveaways??? And the community all believe in no scamming.... :,) best community ever!! You will also learn a lot about anything you have a question about if you just ask the community!!! My gosh it is better than google",US,5,2017-07-07,43,112.0,"(40.0, 45.0]","(100.0, 125.0]" +Great App,This app has gotten better and better to the point where I don't even use BaconReader anymore. It is everything I need in a Reddit app!,US,5,2017-07-07,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +Love Reddit #memewars,Love Reddit,US,5,2017-07-07,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +Nice,This is where I get my memes,US,5,2017-07-07,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Reddit blows,The_Donald is the only reason I have Reddit. For that I give it 5 stars. Otherwise it'd be 1 star,US,5,2017-07-07,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Reddit is life,The best app you could download.....EVER! Just do it!!!!!!!!!!!!,US,5,2017-07-07,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Increase your life's quality!,The users are key to the content. It's free and will make you laugh.,DK,5,2017-07-07,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +At least it's not CNN,"I have loved this app for a year now and the 2nd great meme war won me over, I pledge my full allegiance to the BEST news network.",US,5,2017-07-07,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great App,My favorite of all time.,US,5,2017-07-07,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Great App!,This app is great.,US,5,2017-07-07,45,91.0,"(40.0, 45.0]","(75.0, 100.0]" +Entertaining,Great to kill some down time and have quick laughs.,US,5,2017-07-07,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Best app ever.,The best thing I have done since online to the internet. No joke.,MY,5,2017-07-07,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Amazing,Love this apps,AU,5,2017-07-07,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +"Best place to get news, art, music etc.",Reddit is the best for catching up on current events and taking part in thought provoking discussion and so much more.,US,5,2017-07-07,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +"Yes, AMAZING","Reddit has almost any sub you can think have and keeps me entertained constantly. ALSO SUPPORT OUR TROOPS, DIGHT IN THE SECOND MEME WAR",US,5,2017-07-07,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Yes,It's good,US,5,2017-07-07,3,14.0,"(-0.1, 5.0]","(-0.5, 25.0]" +The best.,Love this app.,CA,5,2017-07-07,44,88.0,"(40.0, 45.0]","(75.0, 100.0]" +Usable,Works how it needs to,US,4,2017-07-07,60,241.0,"(55.0, 60.0]","(225.0, 250.0]" +Great app!,Sometimes when I need another opinion or insight I go on this app,US,5,2017-07-07,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +The_Donald,Great app - I use it to read The_Donald forum. Highly recommended!,US,5,2017-07-07,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Just got the app,"I was recommended the app by friends, glad I listened! So far the app has been very enjoyable.",US,5,2017-07-07,12,59.0,"(10.0, 15.0]","(50.0, 75.0]" +Helpful and entertaining,"If you have a question, find the right form and ask. Someone will always respond with what you're looking for. Beware of the Reddit hole, you can get lost for hours in it.",US,5,2017-07-07,29,59.0,"(25.0, 30.0]","(50.0, 75.0]" +Real good app.,Real good,US,4,2017-07-07,37,187.0,"(35.0, 40.0]","(175.0, 200.0]" +Follow for 🅱️,R/dankmemes 🅱️🅱️🅱️,NO,5,2017-07-07,24,73.0,"(20.0, 25.0]","(50.0, 75.0]" +Finally as usable as alien blue,"I've been using Alien Blue for years and avoided the earlier versions of the Reddit app because they sucked. Happily, the Reddit app is about as good, if not better, than Alien Blue.",US,5,2017-07-07,68,203.0,"(65.0, 70.0]","(200.0, 225.0]" +Much better than that garbage called 9gag!,!,NO,5,2017-07-07,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Works smoothly and is visually pleasing,There isn't much more that you would want to have from an app like this,IT,5,2017-07-07,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +"Nice app, great site",The app works well for mobile devices.,CA,4,2017-07-07,7,26.0,"(5.0, 10.0]","(25.0, 50.0]" +Super awesome and fantastic.,Is well good innit.,GB,5,2017-07-07,64,191.0,"(60.0, 65.0]","(175.0, 200.0]" +Very good!,I like it!,CN,5,2017-07-07,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +REEEEEEEEE,REEEEEEEEEEEEEEEEEEEEEEEEE,GB,5,2017-07-07,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Nice easy way to view Reddit,Nothing fancy or flashy. Just the stream of you chosen subreddits.,US,4,2017-07-07,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Great app,Great app,GB,5,2017-07-07,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Worse with every update.,"Features keep changing and becoming more annoying, such as constantly sending me 'trending notifications. Why?",NZ,2,2017-07-07,24,71.0,"(20.0, 25.0]","(50.0, 75.0]" +Great!,Love the UI,US,5,2017-07-07,6,19.0,"(5.0, 10.0]","(-0.5, 25.0]" +Omg,👍🏿👍🏿👍🏿👍🏿👌🏼👌🏼👌🏼👌🏼,US,5,2017-07-07,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +Works well,I find it very easy to navigate which is very nice.,US,5,2017-07-07,45,179.0,"(40.0, 45.0]","(175.0, 200.0]" +Good app have a cockie,Its a Good app to kill time with,NO,5,2017-07-07,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Front page of Internet,"Great community based news app. Everyone has Reddit, surely?",US,5,2017-07-07,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Good,Very functional.,US,5,2017-07-07,58,174.0,"(55.0, 60.0]","(150.0, 175.0]" +works and is intuitive,no headaches,US,5,2017-07-07,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +liberal liars,This website continues to manipulate conservative sub reddits. Changing their membership numbers and keeping their posts from the front page. Bunch of liars run this site.,US,1,2017-07-07,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Memes,"I greatly enjoy Reddit, even though at the time of writing this, I have currently been a Redditor for 7 hours. I recommend Reddit to everyone, and j hope you enjoy!",US,5,2017-07-07,64,191.0,"(60.0, 65.0]","(175.0, 200.0]" +Great!,Love this a app! 👍,US,5,2017-07-07,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Reddit has become a biased new outlet,"Reddit use to be a fun place where information was spread freely and without bias, but that has come to an end. You'll love it if you're an angry American, but otherwise take a hard pass.",CA,1,2017-07-07,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Nice,US,4,2017-07-07,51,256.0,"(50.0, 55.0]","(250.0, 275.0]" +Great!,Great!,US,5,2017-07-07,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Aww heel yeah,Great app,US,5,2017-07-07,59,176.0,"(55.0, 60.0]","(175.0, 200.0]" +Still no landscape view,I can't believe that there is still no landscape view for this app.,US,1,2017-07-07,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,"I'm fairly new to reddit and love using the app. Easy to read and use. When I first looked at the actual Reddit website years ago, it confused the hell out of me and I understood nothing. This app is very functional and I use it daily.",US,5,2017-07-07,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +New,I haven't used it for long but it is amazing,US,5,2017-07-07,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Stupid ap and boards,Got ip banned because of someone else on my network. (((They))) own it anyways so just use something else.,US,1,2017-07-07,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +What is this?,Appears this app was written on windows 3.0 or some ancient version of Linux or something. The interface is horrid and the overall look of the app seems to be from the early 2k. Needs a serious update to the interface.,US,1,2017-07-07,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love this app!,It's so entertaining and fun!,AU,5,2017-07-07,24,24.0,"(20.0, 25.0]","(-0.5, 25.0]" +Redditor lovor,"Can't handle all negative news so I go to Reddit to for inspiration, life hacks, financial advice, art, scientific wonders and education, and last but not least the reddit community comments that are pure genius!",US,5,2017-07-07,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Yizz,Good,PH,5,2017-07-07,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +love it and enjoy it,love it and enjoy it,CN,5,2017-07-07,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Simple and entertaining,Simple and entertaining.,TH,5,2017-07-07,12,59.0,"(10.0, 15.0]","(50.0, 75.0]" +Great app,Awesome,BR,5,2017-07-07,27,53.0,"(25.0, 30.0]","(50.0, 75.0]" +Love it!,Automatic 5 ⭐️⭐️⭐️⭐️⭐️ because r/nosleep and r/letsnotmeet exist. I generally use the website because I am more comfortable with it.,US,5,2017-07-07,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Nice App,Nice app with lots of contributors on many many topics.,US,5,2017-07-07,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +To the developers:,"After unsubscribing from suggested posts, I'm still getting daily random notifications of popular posts from subreddits that I'm not subscribed to. Please make it stop.",US,2,2017-07-07,0,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Clean look and user friendly,"I like the look of the Reddit app! It's nice that as you scroll through your homepage, you can see pics or gifs without having to open the post (like in Alien Blue) plus you can read a small snippet of any text posts as well before opening it. It's really user friendly which I appreciate. Saving comments is a really neat feature that I thought I could only do on the desktop version so that makes me a happy user!",US,5,2017-07-07,38,77.0,"(35.0, 40.0]","(75.0, 100.0]" +Dope af.,"This app is dope af, get it.",US,5,2017-07-07,10,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,"Great app, good features",SE,5,2017-07-06,48,95.0,"(45.0, 50.0]","(75.0, 100.0]" +Love it,I'm hoping for an iPad version,AU,5,2017-07-06,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +wonderful,communities of passionate people where every idea is heard. great concept and great execution on the website and the app.,US,5,2017-07-06,2,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Good, not great",It gets the job done,US,3,2017-07-06,31,126.0,"(30.0, 35.0]","(125.0, 150.0]" +Short your s--t out,"If you comment too much you get a comment ban +You need upvoted comments to get karma +You need karma to write posts +I can't get this karma + +The app is unusable trash unless you can wait for people to upvote the comment you can write every 10 minutes multiple times",AU,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Amazing,US,5,2017-07-06,45,227.0,"(40.0, 45.0]","(225.0, 250.0]" +Best place on the internet,"Reddit is my favorite place on the internet for a couple of years now. Very easy to use, valuable and better than facebook and twitter combined",EG,5,2017-07-06,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +Makarasoeng,Cydia,KH,5,2017-07-06,38,113.0,"(35.0, 40.0]","(100.0, 125.0]" +👍,I found it to be a pleasant experience. The community are all friendly and funny.,AU,5,2017-07-06,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love this,I love this app it keep me entertained for hours reading the stories,CA,5,2017-07-06,66,197.0,"(65.0, 70.0]","(175.0, 200.0]" +Don't download this,"If you have to read this review, you should probably go back to posting your opinions on Facebook. I was tempted to give this a 1 star just to turn someone off to it, because I'm greedy, and I don't want something as magnificent as Reddit ruined by the mass majority of stupid people.",US,5,2017-07-06,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +I LOVE IT,I don't ha e words i love it,IT,5,2017-07-06,48,238.0,"(45.0, 50.0]","(225.0, 250.0]" +Love it,The best!!,US,5,2017-07-06,34,67.0,"(30.0, 35.0]","(50.0, 75.0]" +Awesome,Awesome,RO,5,2017-07-06,38,77.0,"(35.0, 40.0]","(75.0, 100.0]" +Great app,"Lacks a few of Alien Blue's features, but I'm confident the devs are listening to feedback and will continue to improve the app. Overall an extremely well-functioning and clean app. 5/5",US,5,2017-07-06,43,128.0,"(40.0, 45.0]","(125.0, 150.0]" +Are you enjoying the Reddit app?,"You answered yes! Here's a floating banner that you can't get rid of except to tap ""rate us"" and end up here!",US,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +❤️,Its so damn good!,NO,5,2017-07-06,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +Five stars for FREEDOM,Good ol freedom,US,5,2017-07-06,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Stop it,"Stop asking if I like it or not +Stop asking me to activate push notifications +Just stop it",AU,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's good,Much good. Very wow.,US,5,2017-07-06,34,134.0,"(30.0, 35.0]","(125.0, 150.0]" +Knowledge is POWER!!,"I love reading what everyone's random, diverse interests are. I love seeing the pets and elephants also. Thanks Reddit!",US,5,2017-07-06,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +It good,Just reviewing so it'll stop asking me,CA,5,2017-07-06,8,17.0,"(5.0, 10.0]","(-0.5, 25.0]" +I love the app nice ui but a little confusing compared to android version,Nice,US,5,2017-07-06,33,131.0,"(30.0, 35.0]","(125.0, 150.0]" +Language support,"When this application will be Turkish ? +Bring a Turkish language support to this application. +Good but ingilicce",TR,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Have someone show you the ropes and you will enjoy this TONS!,"My daughter introduced me to Reddit and she and I have some similar interests so she knew some posts I would probably like. So, she helped me get started. It takes a while to get used BUT to some of the lingo, but when you do you are in for lots of spare time looking at things YOU subscribe to, not things somebody else puts up for you to see. Loads of fun and some awesome thrown in too.",US,5,2017-07-06,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit is Life,10/10,NL,5,2017-07-06,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Best App Ever,"If you want to internet, you need to reddit.",US,5,2017-07-06,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Works perfectly,Works perfectly,NL,5,2017-07-06,31,123.0,"(30.0, 35.0]","(100.0, 125.0]" +Reddit rules,I am a newer user to Reddit and I can't believe I didn't start using Reddit a long time ago. I love it.,US,5,2017-07-06,8,23.0,"(5.0, 10.0]","(-0.5, 25.0]" +Opens random posts when resuming the app,Opens random posts when resuming the app. Frequently from nsfw subreddits. Absolutely unacceptable.,GB,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it!,"It's Reddit, what more needs to be said?",US,5,2017-07-06,34,137.0,"(30.0, 35.0]","(125.0, 150.0]" +Coolness,Ye,US,5,2017-07-06,45,182.0,"(40.0, 45.0]","(175.0, 200.0]" +Stop asking for app ratings,"Stop nagging for app ratings, that love it hate it thing is really annoying and won't go away. If I like it, I'll rate it",GB,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it!!!,Reditt is amazing,US,5,2017-07-06,48,190.0,"(45.0, 50.0]","(175.0, 200.0]" +Great,Great app,CA,5,2017-07-06,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Gut,Very gut,CR,5,2017-07-06,5,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Fantastic,"Incredibly addicting, countless great threads to indulge in",US,5,2017-07-06,41,165.0,"(40.0, 45.0]","(150.0, 175.0]" +Very friendly people,Yep. I like this app because the users are all very friendly to each other.,US,5,2017-07-06,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +Awesome app,Still haven't seen an exploding dragon so that's a bummer.,CA,5,2017-07-06,48,190.0,"(45.0, 50.0]","(175.0, 200.0]" +I want to give gold.,No way to give gold?!! Gfxxd,US,4,2017-07-06,25,49.0,"(20.0, 25.0]","(25.0, 50.0]" +Everyone already knows.,"I was a late adapter and it feels like everyone already knows and has an opinion about Reddit but they asked, and I have little to do but fight my newly discovered brain tumor so why the hell not? + +I would've given it five stars but honestly I don't use it enough to see any flaws. It seems like you could find any community you are looking for here. And if you you don't like the community you found you have plenty of opportunities to change it for the better. And it's great for casually browsing in search of a laugh or shock or whatever, how I use it. Keep doing what you are doing Reddit and listen to those who use it more than I do. Thanks!",US,4,2017-07-06,42,84.0,"(40.0, 45.0]","(75.0, 100.0]" +God,Thanks My Son So Goodbye.,US,5,2017-07-06,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +It's how I take my memes these days,Good meme source.,US,5,2017-07-06,35,70.0,"(30.0, 35.0]","(50.0, 75.0]" +Love it,Spot on to look into most things,GB,5,2017-07-06,55,166.0,"(50.0, 55.0]","(150.0, 175.0]" +"Always ""cant reach reddit""",Give the app an update and fix this,CA,2,2017-07-06,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Before Bae there was Babe.,That'll do pig. That'll do.,US,5,2017-07-06,25,126.0,"(20.0, 25.0]","(125.0, 150.0]" +Great,"Good app, solid performance",GB,5,2017-07-06,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +We must fight back,#downwhiththecnn,AU,5,2017-07-06,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +👍🏻,Great!,US,5,2017-07-06,20,41.0,"(15.0, 20.0]","(25.0, 50.0]" +Good site,Good site,US,4,2017-07-06,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +So much better than the previous Reddit app,Who doesn't like Reddit?!,GB,5,2017-07-06,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +Good,Stuff,US,5,2017-07-06,29,117.0,"(25.0, 30.0]","(100.0, 125.0]" +Nice app👍🏻,Love it!,US,5,2017-07-06,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Great,Great,US,5,2017-07-06,34,137.0,"(30.0, 35.0]","(125.0, 150.0]" +is good,yeah is good,AU,5,2017-07-06,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +挺棒的,比原来的alian blue用着舒服一些,CN,5,2017-07-06,48,143.0,"(45.0, 50.0]","(125.0, 150.0]" +Güzel ama İngiliççe.,Just kidding. I'm on Reddit all day. That and 9gag.,TR,5,2017-07-06,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +DANK,The dankest of all memes,SE,5,2017-07-06,26,129.0,"(25.0, 30.0]","(125.0, 150.0]" +It's cool so far,"There's a subreddit for anything imaginable, as well as there being an active community 85% of the time so hey, download for fun.",US,4,2017-07-06,28,85.0,"(25.0, 30.0]","(75.0, 100.0]" +WE NEED MOAR STARS: MY 6th APPROACHES,"Celebrated my SIXTH Cake Day last month! SIX YEARS of knowing the news a day or more ahead of our local paper and stations, enjoying amazing pictures, following fav subs as part of a worldwide community. The Narwhal Bacons at Midnight in my bed!",US,5,2017-07-06,31,154.0,"(30.0, 35.0]","(150.0, 175.0]" +"Annoying ""Rate Me"" popup...","Annoying ""Rate Me"" popup...",US,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Get this app, and you will soon learn a new verb","""to Reddit; Redditing""",US,5,2017-07-06,5,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's reddit,Duh,US,5,2017-07-06,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +GREAT,the app is great,US,5,2017-07-06,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Nice app,App does what it needs to do,NL,5,2017-07-06,36,107.0,"(35.0, 40.0]","(100.0, 125.0]" +Very nice!,"Very nice app! Highly recommend and highly addictive, 10/10",US,5,2017-07-06,13,25.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great,Could spend days on this,US,5,2017-07-06,11,45.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it,👍🏻,US,5,2017-07-06,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +Great! Perfect!,If you want access to forums. Reddit is the perfect outlet. This app is the perfect way to display reddit. Definitely recommend all reddit users to download,AU,5,2017-07-06,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +Awesome,Don't know what ild do without Reddit.,US,5,2017-07-06,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Ok fine,"I'm reviewing this because it won't stop bugging me about it. Good app, good Reddit, etc.",US,5,2017-07-06,11,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Loved loved it,Nice one,CN,5,2017-07-06,15,29.0,"(10.0, 15.0]","(25.0, 50.0]" +Absolutely Brilliant! (Your best Emma Watson impression),"Never have I seen such an astounding collaboration of all people's of the world. Truly a tremendous accomplishment to have reached every individual on such a personal level, that one can only ever feel gut wrenching, unceasing love for every being, thought, idea, attempt at writing such a sappy love story that it involves vampires. [I mean, come on who would want to gaze ever longingly into the eyes of Damon Salvatore? Not I. 🤔...🤷‍♂️.] Aside from the point, we have a truly unique challenge ahead of ourselves; as I look out into the darkened seas of yore with fore lorn laughter and say with all the gusto that one can muster in these trembling bones. HAHA 😭",US,5,2017-07-06,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +The bar wouldn't go away,The prompt bar telling me to rate Reddit wouldn't go away so here you go.,US,1,2017-07-06,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Like it,US,5,2017-07-06,57,170.0,"(55.0, 60.0]","(150.0, 175.0]" +awesome,.,US,5,2017-07-06,15,29.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it,Perfect,US,5,2017-07-06,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +I really enjoy this app,This apps is fast and well made and allows me to enjoy Reddit as easily as I could from a desktop browser.,US,5,2017-07-06,6,22.0,"(5.0, 10.0]","(-0.5, 25.0]" +GOOD READS 👌🏼,SUPER RAD 🤙🏼,US,5,2017-07-06,47,234.0,"(45.0, 50.0]","(225.0, 250.0]" +Sick!,Very cool af.,US,5,2017-07-06,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Optimized for mobile; easy to navigate,The layout makes browsing quick and efficient when you're on the go. This app is the best way to keep up with threads when you have no access to a desktop.,US,5,2017-07-06,3,7.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Wow,"I didn't realize I would like Reddit so much! Its smooth, easy to use, and very useful. I first only downloaded it so I could get some advice on a game I was playing, and it turns out I am using it a ton! Cool cool",US,5,2017-07-06,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Great app!,Works as expected! Love the automatic night mode.,US,5,2017-07-06,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Great,I love it.,US,5,2017-07-06,38,115.0,"(35.0, 40.0]","(100.0, 125.0]" +I've been drafted,"I was to retire on my meme farm on Ifunny with my small family of political accounts and what not till I got drafted to Reddit to fight In this coming war, welp it seems I've got lots of work to do",US,5,2017-07-06,39,157.0,"(35.0, 40.0]","(150.0, 175.0]" +👍🏽,Great app,US,4,2017-07-06,1,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good sheit,"Quality content, probably my favourite place on the Internet",CA,5,2017-07-06,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +No better way to waste my workday,Great way to have constant access to the latest memes,US,4,2017-07-06,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Wicked,Awesomely great time,CA,5,2017-07-06,28,112.0,"(25.0, 30.0]","(100.0, 125.0]" +No need for Instagram or Twitter,Greatest website to connect and share with so many people.,US,5,2017-07-06,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +r/Reddit,Why not,US,5,2017-07-06,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Great app!,I often notice I use the app rather than the computer even if I'm near the computer.,US,5,2017-07-06,6,11.0,"(5.0, 10.0]","(-0.5, 25.0]" +All Star,"Very good current version , uh I mean very great app can't even tell the difference of whether I'm on safari or not !",US,5,2017-07-06,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +Great app,Always entertaining and informative.,US,5,2017-07-05,18,55.0,"(15.0, 20.0]","(50.0, 75.0]" +Love Reddit,Easy to browse in an app. Works great I like it,US,5,2017-07-05,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Love it!,"I use it all the time, and works great!",CA,5,2017-07-05,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +I'm loving it,Excellent app,BR,4,2017-07-05,25,51.0,"(20.0, 25.0]","(50.0, 75.0]" +"Disruptive, in a bad way.","Constantly nags me to write a review. Well, here you go.",US,1,2017-07-05,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +非常好,比某贴吧不知道好到哪里去了,CN,5,2017-07-05,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good stuff,This app satisfies my desires.,US,5,2017-07-05,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Very good for passing time,"This app lets you go on reddit via an app and it takes away the safari type explorer mobile site thing, making it very easy to navigate and go on. Honestly amazing idk about you. 🤷🏻‍♀️",US,5,2017-07-05,24,73.0,"(20.0, 25.0]","(50.0, 75.0]" +Selfishly self promotes,"Hahahahaha these worthless losers can't even figure out how to get an image to load faster than a 56k modem connection. + +App is designed to promote Reddit than actually be helpful to your Reddit experience. They don't let you save subreddit she without subscribing bc they want you to use your sub limit of 50 so u need to pay them for more subreddits.",US,1,2017-07-05,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +👌👍 Great,👍great,CA,5,2017-07-05,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Mother of the Internet,"Beste Apps auf meinem Handy!!! + +Reddit und 9GAG!",DE,5,2017-07-05,3,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great community sourcing for info in anything and everything!,"The prompt said this text box was optional, knock it off apple...",US,5,2017-07-05,4,17.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Worth while app,"I believe reddit to be a worth while app because it's good for generating conversation, ideas, or potentially helpful tips for other users.",US,5,2017-07-05,24,73.0,"(20.0, 25.0]","(50.0, 75.0]" +Sum good fuk,Title says it all,US,5,2017-07-05,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Yes,👌🏻 yeet,US,5,2017-07-05,24,98.0,"(20.0, 25.0]","(75.0, 100.0]" +It's the only thing that matters,Life without Reddit is less interesting,US,5,2017-07-05,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +This is a very good.,lol,US,5,2017-07-05,18,91.0,"(15.0, 20.0]","(75.0, 100.0]" +Great,great app,US,5,2017-07-05,45,182.0,"(40.0, 45.0]","(175.0, 200.0]" +The best app,The community is awesome.,US,5,2017-07-05,68,137.0,"(65.0, 70.0]","(125.0, 150.0]" +The,Best. app. Ever.,US,5,2017-07-05,54,161.0,"(50.0, 55.0]","(150.0, 175.0]" +Fun,Addicted. Come getchu some.,US,5,2017-07-05,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Love this app,I have been on Reddit for as long as I can remember. And love how the app renders it on my phone. I think I have almost stopped going to the browser version because of how much I love it on my phone.,US,5,2017-07-05,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +"Love it, but still miss alien blue.",It's great. Better than I thought it would be. But I still miss some of the features of alien blue. But I'm getting use to it.,US,4,2017-07-05,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +"Bien Reddit, muy bien","Me gusta! +La uso diario",MX,5,2017-07-05,29,86.0,"(25.0, 30.0]","(75.0, 100.0]" +"Amazing, spectacular, incredible.","An UNDERRATED app that is the beam of light for anything social. Whatever your into, there's something for you.",US,5,2017-07-05,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +It's good!,Honest!,US,5,2017-07-05,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Amazing,This is the most amazing so ever I was able to cook many eggs on it including Ostrava eggs and they weren't burnt but my phone was sticky but that nothing some winded can't fix thxs,US,5,2017-07-05,66,263.0,"(65.0, 70.0]","(250.0, 275.0]" +So far so good,Great for information!! Haven't had no dislikes,CA,5,2017-07-05,47,187.0,"(45.0, 50.0]","(175.0, 200.0]" +Nice app,It's a good app version of the website and pretty user friendly,US,5,2017-07-05,3,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Nice,Nice application but my English very bad :(,TR,5,2017-07-05,20,59.0,"(15.0, 20.0]","(50.0, 75.0]" +One missing feature,"The app is almost there for me. What has me using a third-party app as opposed to this one though is the ability to hide certain threads from the r/all page. Once I'm able to do this in the native app I'll be back. + +Edit: Within the last few weeks, the app has been slow to load to the point it has become almost unusable. I have switched back to a third part app.",US,1,2017-07-05,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great!,Just fantastic,US,5,2017-07-05,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +5-star,Love the app.,US,5,2017-07-05,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +What happened to the personal tab?,"Great app, but what happened to the tab that combined my subreddits?",US,3,2017-07-05,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +I love it,Best social media ever,RU,5,2017-07-05,24,98.0,"(20.0, 25.0]","(75.0, 100.0]" +App is best app ever 10/10 ign,This app is great. Get it now!!!!!!'nnnnnoowwww!!!!!!!!!!!!!!!!!!!,US,5,2017-07-05,55,221.0,"(50.0, 55.0]","(200.0, 225.0]" +Love it,Has basically everything you'd want to be a part of or have information about. Very helpful,US,5,2017-07-05,8,34.0,"(5.0, 10.0]","(25.0, 50.0]" +Good app,Not bad mobile version.,US,4,2017-07-05,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Is cool mang,You do the reddit and have the fun. Look at baby elephant and then stroke pole.,US,5,2017-07-05,57,283.0,"(55.0, 60.0]","(275.0, 300.0]" +"Reddit on the go, drains the battery like a truck though",Hey that rhymed,GB,4,2017-07-05,22,67.0,"(20.0, 25.0]","(50.0, 75.0]" +True Reddit experience,Comprehensive app with few crashes and easy to use links and interfaces,CA,4,2017-07-05,43,128.0,"(40.0, 45.0]","(125.0, 150.0]" +Good job.,"My original 5-star review said, ""Good app."" However, this app just prompted me again several months later to enter a review. For that, you lose a star. I'm not giving you another 5-star review every six months. I will reduce a star each time I'm asked to review this app.",US,4,2017-07-05,7,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's aight,Yup,US,5,2017-07-05,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Solid reddit browser.,I really enjoy it.,US,5,2017-07-05,55,166.0,"(50.0, 55.0]","(150.0, 175.0]" +App still great but the review prompt is garbage,"I reviewed this app a while back and noted its excellent UI and ease of use. + +Today it promoted me to review and when I refused (because I had already reviewed) it left the annoying message on the screen. The only way to dismiss it? Click ""Review"". + +Ok. So here's your review. Stop forcing users to review your product. It's annoying and a very bad experience. Secondly, its double annoying for people who already left a review. + +Idiots.",US,1,2017-07-05,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Overall quite good, but UI is not so friedly","Overall quite good, but UI is not so friedly",CN,4,2017-07-05,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Nice,More real than other social media app,US,5,2017-07-05,27,53.0,"(25.0, 30.0]","(50.0, 75.0]" +Easy to use,Must have for each Reddit user,BE,5,2017-07-05,1,7.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Оно самое,Приложение огонь🔥,RU,5,2017-07-05,59,238.0,"(55.0, 60.0]","(225.0, 250.0]" +Let's try you guys ❤️🙏🏻💋✊🏻you guys definitely red my life,My first time :) hello everyone 🦋,US,5,2017-07-05,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Love it!,I'm on it daily!,CA,5,2017-07-05,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Great interface,This version is a great improvement,US,5,2017-07-05,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Best app for bathroom breaks,I use it all the time. I have been peeing sitting since i downloaded this app,US,5,2017-07-05,29,115.0,"(25.0, 30.0]","(100.0, 125.0]" +Great,👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻,US,5,2017-07-05,57,170.0,"(55.0, 60.0]","(150.0, 175.0]" +Muito bom.,"Sigo algumas comunidades e abro o App todos os dias. +A navegação e simples porém eficiente e não tive nenhum problema com bugs ou algo do género, gostei bastante.",BR,5,2017-07-05,6,22.0,"(5.0, 10.0]","(-0.5, 25.0]" +Nice 🤗,Nice 🤗,AU,5,2017-07-05,2,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +The only app keep me in touch with world.,But it would be better if there is Android version.,CN,5,2017-07-05,36,143.0,"(35.0, 40.0]","(125.0, 150.0]" +Much better than Alien Blue,Thanks for keeping me entertained.,AU,5,2017-07-05,36,71.0,"(35.0, 40.0]","(50.0, 75.0]" +Dope,I downloaded the Reddit app and now my AIDS is cured.,US,5,2017-07-05,29,117.0,"(25.0, 30.0]","(100.0, 125.0]" +Let's try you guys ❤️🙏🏻💋✊🏻,My first time :) hello everyone 🦋,US,4,2017-07-05,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Splendid,"Reddit offers a ________ for anything and everything if you have the time, patience, and intelligence to read through. Highly recommended to anyone with a pair of eyes and fingers, or voice, etc..",US,4,2017-07-05,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Reddit is the least toxic news outlet/social media out there,"For anyone who thinks Reddit might not be for them I suggest you read a few threads before deciding. Reddit is highly monitored by moderators who prevent a lot of toxic behavior in each thread. The diverse ""subreddits' precise something for everyone, whether you need a laugh or something interesting to read. If you are someone who wants to get more out of your daily scrolls, Reddit is a great place to look.",US,5,2017-07-05,62,123.0,"(60.0, 65.0]","(100.0, 125.0]" +Dank af,🅱️est place for the dankest of memes!,NO,5,2017-07-05,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Greaaaat,Dope af if your into rainbow six I recommend this extremely,US,5,2017-07-05,50,248.0,"(45.0, 50.0]","(225.0, 250.0]" +Really fun.,"Great app, great people and great environment discussion... I just love reddit.",US,5,2017-07-05,66,329.0,"(65.0, 70.0]","(325.0, 350.0]" +Great app,Learn a lot of new stuff or just look at cute animals or look at scary stuff. Love this app.,US,5,2017-07-05,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Great!,Great!,US,5,2017-07-05,59,238.0,"(55.0, 60.0]","(225.0, 250.0]" +They asked I answered,"Really well made app, better than the desktop site!",US,5,2017-07-05,19,94.0,"(15.0, 20.0]","(75.0, 100.0]" +Fabulous.,My new favourite app.,CA,5,2017-07-05,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Nice app,Nice app,US,4,2017-07-05,57,172.0,"(55.0, 60.0]","(150.0, 175.0]" +Horrendously slow media loading,"Can take twenty seconds for a single image when it's bad. Gifs are worse. I have a fast connection, and on my laptop, on the same wifi, dozens of images and gifs load easily and near-instantly. Something needs to be fixed with the loading times.",US,1,2017-07-05,0,0.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Works better than the website,CA,5,2017-07-05,43,130.0,"(40.0, 45.0]","(125.0, 150.0]" +Pal,Pretty cool,US,3,2017-07-05,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +A must-have,Truly an indispensable source of entertainment no matter where you are.,SG,5,2017-07-05,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +Just one word,AWESOME,IN,5,2017-07-05,33,164.0,"(30.0, 35.0]","(150.0, 175.0]" +Good,"Sometimes I have issues liking things (so just doesn't respond), which is why I'm giving this 4/5 stars. Overall good app though.",US,4,2017-07-05,26,132.0,"(25.0, 30.0]","(125.0, 150.0]" +So far so good,The system works great reminds me of a Facebook feed that doesn't limit me to my friends list and paid post.,US,5,2017-07-05,59,176.0,"(55.0, 60.0]","(175.0, 200.0]" +Great,Great,US,5,2017-07-05,22,89.0,"(20.0, 25.0]","(75.0, 100.0]" +Gave in & got this after the browser pop up asked me for the billionth time,"It's as they claim and way faster and smoother than in a mobile browser. I don't care to search through however many Reddit-apps there are to find the best one, this one is good and I doubt I'll change.",US,4,2017-07-05,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Works fine,It does Reddit stuff pretty well.,US,4,2017-07-05,48,190.0,"(45.0, 50.0]","(175.0, 200.0]" +👅💦,Doing it's job so far,AU,5,2017-07-05,62,187.0,"(60.0, 65.0]","(175.0, 200.0]" +Excessive push notifications,"The app was really good... until it started sending dumb ""trending"" push notifications. + +I kept push notifications on so I can get notified for post relies and messages but looks like I'll be disabling them altogether now.",KR,2,2017-07-05,8,30.0,"(5.0, 10.0]","(25.0, 50.0]" +excellent app,"have some pet-peeves like not having a display of my favorites first, but maybe I don't know how to use it. Excellently executed app.",US,5,2017-07-05,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great,You know how I feel,US,5,2017-07-05,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +It's a great app,I've been wanted this app to come around in mobile but now we have it 👍,CA,5,2017-07-05,22,108.0,"(20.0, 25.0]","(100.0, 125.0]" +Awesome,I love Reddit. One of the best sites I have ever been on.,US,5,2017-07-05,10,39.0,"(5.0, 10.0]","(25.0, 50.0]" +Very good but messages needs some work.,"In general the app is very good but in line messages would be great. Having the reply sheet cover up past messages is annoying as you can't refer back to your prior messages. Don't let that out you off though, it's very good!",GB,4,2017-07-04,30,148.0,"(25.0, 30.0]","(125.0, 150.0]" +The most honest and genuine part of the Internet.,"Suggestion: + +Some users only browse a reduced number of subreddits. Add a tab for users to save a limited numbers of subs in, and switch back and forth between them, instead of going through the search tab every time.",CA,5,2017-07-04,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +Hand in hand with Twitter for the latest of everything,Keeps me upbeat after listening to all the BS on TV,US,5,2017-07-04,19,75.0,"(15.0, 20.0]","(50.0, 75.0]" +Good stuff,Good,US,5,2017-07-04,54,269.0,"(50.0, 55.0]","(250.0, 275.0]" +Great,Better on your phone and consumes very little data,NZ,5,2017-07-04,27,80.0,"(25.0, 30.0]","(75.0, 100.0]" +Works well,Good stuff,US,5,2017-07-04,3,7.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Giving credit to Reddit,Someone make that into a rap song,CA,5,2017-07-04,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Fabulous!!,"Can't live without the_donald!! + +Best app EVER. I check the_donald 3 times a day!!",US,5,2017-07-04,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit,Reddit for the win. Works as intended,US,5,2017-07-04,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Great!,👍,US,5,2017-07-04,70,349.0,"(65.0, 70.0]","(325.0, 350.0]" +Love the mobile app.,Really enjoy the mobile app,US,5,2017-07-04,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Awesome,Great app!,JP,5,2017-07-04,36,178.0,"(35.0, 40.0]","(175.0, 200.0]" +I think I jizzed so hard I need a glass of water,My body feels tingly,US,5,2017-07-04,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Süper 👍🏻,"Çok beğendim, gayet kullanışlı",TR,5,2017-07-04,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Still New at This,Pretty Good So Far.... Still working on figuring things out to my advantage!,US,4,2017-07-04,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Très bonne appli,Interface bien conçue.,FR,5,2017-07-04,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +"great app, great community",Reddit has a great community of people and has so many things to explore and discover. I use Reddit for music mainly and it is a great way to promote music but also discover new music and give support to smaller artists. Good stuff!,US,4,2017-07-04,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Love it,5/5 from me,NZ,5,2017-07-04,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +Great App that streamlines things,Only drawback is that I'm on it too much.,CA,5,2017-07-04,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Borat,BEDDY NICE. MUCH LIKE,US,5,2017-07-04,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Yaaaaaaaaa,Yaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,ES,5,2017-07-04,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Yes,"Very good app, except for search function.",US,5,2017-07-04,8,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome app,Really nice with the dark/night theme,SE,5,2017-07-04,35,35.0,"(30.0, 35.0]","(25.0, 50.0]" +A must have,Reddit owns,GB,5,2017-07-04,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +Fast and easy,Just changed from Alien Blue recently. They've definitely improved.,GB,5,2017-07-04,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Great app,Great app. Read everyday,NZ,5,2017-07-04,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Reddit taking care of their official app,The updates that rolled out recently has been an improvement. Enjoyable app. Use it everyday. Not a lot of problems.,US,3,2017-07-04,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +GREAT,SUPER COOL!,US,5,2017-07-04,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Pretty good.,"Works just fine, but the interface is somewhat different to navigate if you have used other Reddit apps in the past. Sometimes counter-intuitive.",US,4,2017-07-04,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +"Be informed, use Reddit.",Don't stay ignorant,US,5,2017-07-04,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +Stable App,Nice stable app,US,5,2017-07-04,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +The,Bomb shiggity,US,5,2017-07-04,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +IM IN LOVE,"The communities are great, so many helpful people and articles. It suits everyone because of the many topics it covers, I'd recommend it to anyone.",GB,5,2017-07-04,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Best time waster out there.,"A never ending source of information, humor, and questions to ponder",US,5,2017-07-04,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +I like it a lot,I'm not good at writing reviews. Some of these reviews are funny like the ones on reddit.,US,5,2017-07-04,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Great,Great,SE,5,2017-07-04,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Love checking in,This is a great app to check in and see what is really going on.,US,5,2017-07-04,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +很好,翻不了墙后只能靠它了,CN,5,2017-07-04,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Valida!,Ottima app per consultare Reddit,IT,5,2017-07-04,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Excellent app,Love it,MX,5,2017-07-04,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Beste Leben 👌🏻,Hi,DE,5,2017-07-04,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Fantastik port til mobil,"Appen har et elegant Design der er nem at bruge. Funktionalitet er god, når man tænker på at der er en app. Fantastisk hvis man bruger Reddit og gerne vil have det med på farten.",DK,5,2017-07-04,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +10/10 would bang,Dime,US,5,2017-07-04,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +The Pulse of Your Community,"Whatever it is you're looking to connect to, however much effort you intend to put forth, you will find the right community on Reddit. + +Either support or argue with them, it'd your choice! YOU choose your role in the world of .... REDDIT! + +I love the communities on Reddit. I love the information on Reddit. I love the interface of Reddit. I Love Reddit.",US,5,2017-07-04,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +My favorite,Great way to share funny stuff and solicit opinions and info. Best social media app by far. I also love how all the topics are divided so I only follow what I want!,US,5,2017-07-04,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Good,Like it,US,5,2017-07-04,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Amazing,I love it! Learn something new every time!,US,5,2017-07-04,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Great,Love it. Works perfectly.,US,5,2017-07-04,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Muito interessante ter acesso a tantas opiniões e possibilidades,Indispensável para um curioso,BR,5,2017-07-04,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +The best,Use it everyday,US,5,2017-07-04,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Great!,"Clean and beautiful design, very easy to use and read everything.",BR,5,2017-07-04,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Great app,Great,US,5,2017-07-04,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Great app,Great !!,RO,5,2017-07-04,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +ITS GOOD,👍,NO,5,2017-07-04,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Review,Review,HR,5,2017-07-04,15,45.0,"(10.0, 15.0]","(25.0, 50.0]" +Rate,I'm just rating this so it would stop asking me to rate it.,AU,5,2017-07-04,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Good,"Just the way the app should be. Userfriendly, fast, entertaining.",RU,5,2017-07-04,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Fivestars,"I love it. My favorite past time, entertainment, reading source, ect. I can learn so many things yet in so many cool ways.",US,5,2017-07-04,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +I love it,Amazing app,IT,5,2017-07-04,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Nice app,!?!,NO,5,2017-07-04,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +reddit,不需要翻墙 很方便,CN,4,2017-07-04,18,90.0,"(15.0, 20.0]","(75.0, 100.0]" +Cool,Cool,NO,5,2017-07-04,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,Really addictive.,GB,5,2017-07-04,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Great app. Very fluid and smooth,Offers exactly what you would expect from a reddit reader.,RO,5,2017-07-04,38,152.0,"(35.0, 40.0]","(150.0, 175.0]" +.,The best app ever,US,5,2017-07-04,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +General,Shackleford,US,5,2017-07-04,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Mr awesome,Awesome,AU,3,2017-07-04,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Amazing,"Awesome app, really easy to use, perfect for Reddit lovers.",GB,5,2017-07-04,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +Great,Great,GB,4,2017-07-04,3,9.0,"(-0.1, 5.0]","(-0.5, 25.0]" +An ESSENTIAL,This is quite honestly one the best apps out there. The combination of being able to make your feed a storm of memes and shocking world news while looking at cat pictures is perfect.,US,5,2017-07-04,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +Takes over my life,Apps doing well in letting me look at Reddit alllllll day long,GB,5,2017-07-04,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +love reddit!,the best social media out there,US,5,2017-07-04,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +Every GIF's freezes a second in! Grrrr!,I love Reddit but this version causes all my GIFs to freeze. It's so frustrating.,US,1,2017-07-04,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Awesome,Works great and intuitive!,NL,5,2017-07-04,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Reddit is amazing,Title says it all.,NL,5,2017-07-04,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Better way to view gifs,Usually use browser and have to click each link to see a gif. The only thing mobile loses is making it harder to type long comments and app reviews.,US,5,2017-07-04,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +Very good,Vg,US,5,2017-07-04,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Love it,"Reddit is a wonderful and amazing place and the app makes it a lot easier. One thing I think would be better is if I can have a place where all my subs are in one easy place without clicking search first + +Edit thx to my comment Reddit fixed sub search system.",US,5,2017-07-04,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Reddit mobile is the best,[title],US,5,2017-07-04,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +It won't let me log in,"Or even sign up, it just says try again later",AU,1,2017-07-04,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +4chan strikes again,"Honestly prefer Reddit via a browser (like chrome). Unsure why features from the browser site are not in the app - teal markings signifying top level comments, the ability to maximize and minimize gifs and images while scrolling through the front page, etc.",US,4,2017-07-04,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +r/5,"the absolute best social media. Its like imgur, but super evolved",US,5,2017-07-04,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +love the content,"great stories, recipes, and info but hate the rules to get something posted",US,5,2017-07-04,68,204.0,"(65.0, 70.0]","(200.0, 225.0]" +It's the best!,"I hate to admit I spend hours on it, but I do.",US,5,2017-07-04,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Is lit,It's lit,US,5,2017-07-04,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Better than 9gag,Must have,US,5,2017-07-04,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Reddit,Love it,GB,4,2017-07-04,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Y'all awesome I hope everyone enjoys my stuff.,Can y'all personally check out the art work I post (you'll like them [or so I hope]) thanks.,US,5,2017-07-04,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Great waster option,Good,CA,4,2017-07-04,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Stop asking for a review,Stop asking for a review,US,5,2017-07-04,18,90.0,"(15.0, 20.0]","(75.0, 100.0]" +Bang,Bang bang bang,US,5,2017-07-04,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +I am addicted to this app,So take it as a compliment,CN,5,2017-07-04,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Perfect!,"Finally! Took a while to get the optimal Reddit app up and going, but it's here. Not much more to say but enjoy it everyone!",US,5,2017-07-04,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +u/1000/1000,10/10 always look again,US,5,2017-07-04,65,260.0,"(60.0, 65.0]","(250.0, 275.0]" +Delish,"Who dat boy? Who him is? + +Oh yeah it dat alien.",US,5,2017-07-04,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Great!,"Love this app, to the point that I had to leave a review (something I haven't done in 3+ years). +To the review saying that you can't collapse a thread with one tap, yeah you definitely can. Just click near (to the immediate right of) the name of the commenter and it collapses/expands all children comments under it.",US,5,2017-07-04,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Good for a laugh!,"This app reminds me that there are truly funny people out there. Sure, there are many dicks but lost are just trolling. Can find a group for almost anything. Have to watch when I'm reading at work because I'm sure the guy in the next stall doesn't appreciate random laughter",US,5,2017-07-04,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +Nice,Reddit halt,DE,5,2017-07-04,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Love it,Thas all,US,5,2017-07-04,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Great,Easy to find interest topic,TH,5,2017-07-04,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +Reddit Has Helped to Fill the Void.,"I loved the IMDb message boards. Loved. Finding Reddit has helped me to find communities to discuss all my favourite television again. IMDb's loss is Reddit's gain -- bet they felt they'd won the lottery when IMDb made the worst business decision ever to nuke their boards! Shame on them btw, they've destroyed a cultural resource that could have informed film and tv lovers in perpetuity.",CA,5,2017-07-04,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Good for now.,"Works mostly well, certain comments don't load occasionally. But then I go back and refresh and works fine.",US,4,2017-07-04,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Reddit,Ok,SK,5,2017-07-04,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Groovy,Great app,US,4,2017-07-04,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Topkek,I love it,SG,5,2017-07-04,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +Subreddits,"Love the structure of the subreddits! It reminds me of Internet relay chat and message boards. Old school meets new format. Thanks, Reddit!",US,5,2017-07-04,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Well okay then,Never thought I'd say this but reddit is great. I always denied it and was never open minded about giving it a shot. What a effin life changer. Found things on there I didn't think I would find it be interested in.,US,5,2017-07-04,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +Very fast loading on my iPhone,It'd given 5 stars if reading favourite stories or subscription were easier,CA,4,2017-07-03,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Great App.,"Best way to find exactly what you want, when you want.",US,5,2017-07-03,4,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app!,One of my favourite apps!,CA,5,2017-07-03,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Most effective time waster,"Want to stay up to date on current world affairs, want to be able to shamelessly talk to rando's about a manga/anime you love, need inspiration for woodworking projects, just need something funny to see/read while you're on the pot? Download Reddit, easily the best time waster out there!",US,5,2017-07-03,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Perfection,Interface rooox,CA,5,2017-07-03,42,84.0,"(40.0, 45.0]","(75.0, 100.0]" +5star,No conplaints w app,US,5,2017-07-03,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Great!,🙂!,GB,5,2017-07-03,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +Awesome app,Let's me stay in touch with reddit when I'm not on the computer,US,5,2017-07-03,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +Nice,Great way to waste time,US,4,2017-07-03,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +The perfect tool for rudeness,Perfect way to ignore everyone in my house. All day.,GB,5,2017-07-03,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Can't fault it really.,Nothing to complain about.,GB,5,2017-07-03,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +r/nosleep,"The only reason I downloaded the app was for r/nosleep, but after I actually lurked around for a while I found Glitch In The Matrix and Paranormal and now I'm just wasting 10+ hours a day reading and lurking. 😂",US,5,2017-07-03,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Wow,"Just WOW, I MEAN WOW",US,5,2017-07-03,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +"It's what I do, while I'm sitting on the loo.",Yup. Time flies when you're dropping off your kids at the pool while catching up on the world of Reddit. 5/5 Would recommend.,GB,5,2017-07-03,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Great,Love this app.,GB,5,2017-07-03,51,102.0,"(50.0, 55.0]","(100.0, 125.0]" +Great app!,Easy to use with wonderful and active communities! Really have learned a lot. Clean simple interface on app. Only criticism is pretty easy to unselect your favorites on the search screen. Wish there would be a prompt before this action occurred,US,5,2017-07-03,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Best reddit app,"Hands down, the best reddit app.",US,5,2017-07-03,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Works well,Perfect for browsing through reddit,AU,4,2017-07-03,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Fun to use,Best app to browse for hours,DE,5,2017-07-03,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +The better option,When I get sick of the generic smalltalk from social media- I pick up the only real alternative: Reddit gives us what we make of it.,NO,5,2017-07-03,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +Perfect,It's the best thing for a wandering brain:,US,5,2017-07-03,50,150.0,"(45.0, 50.0]","(125.0, 150.0]" +5,Super sleek easy to use and browse love it,GB,5,2017-07-03,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Does the job !!!,Keeps me entertained and easy to use.,US,5,2017-07-03,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Worth the time to install,Took me a long time to switch over from the website but the app is great!,US,5,2017-07-03,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +You stay classy,"Best app for a quick analysis of what is wrong in the world along with cats, dogs and some cool stuff",GB,5,2017-07-03,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Phat,It would be better if you could save gifs/videos like you can with pictures.,CA,4,2017-07-03,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Top,👍,DE,5,2017-07-03,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +It's good!,It's a really good app that I'm glad they made.,US,5,2017-07-03,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Good/very good,X.,GB,5,2017-07-03,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Reddit,"Nice app always comes with the best features, i keep it on my iphone as long as they dont forget that there are still ios 8.3 users 👍",BE,5,2017-07-03,78,156.0,"(75.0, 80.0]","(150.0, 175.0]" +"Dang, man",Pretty neat. Except there are still issues trying to upload pics/videos directly to reddit via the app,US,4,2017-07-03,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Awsume,"Only ones i bother rating, They are just that good.",NO,5,2017-07-03,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Nom nom,For information's that's num nums this can be used for consumption.,US,5,2017-07-03,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit,Enjoy it.,US,4,2017-07-03,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Pretty good,What's wrong with reddit?,GB,5,2017-07-03,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Just perfect ‼️ ‼️,Amazing app.. It's the best of the best,TR,5,2017-07-03,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Love it,Just love it,DK,5,2017-07-03,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +A great time waster,but give us a nsfw filter,IE,4,2017-07-03,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +One of the better apps,I honestly like to browse reddit on my pc(more controllability) but this makes it's okay in mobile,US,5,2017-07-03,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Okay...,"I'll just name one issue the audio on video cuts in and out +When I watch the same link in a different app or browser I do not have this issue",US,3,2017-07-03,34,170.0,"(30.0, 35.0]","(150.0, 175.0]" +Notifications don't sync well,Always get ghost notifications and they don't sync well when you view them on a PC. Slow to update also.,US,2,2017-07-03,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +G,Good,SE,5,2017-07-03,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +5,$$((!))),US,5,2017-07-03,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Pretty Cool,It's alright,NO,5,2017-07-03,57,57.0,"(55.0, 60.0]","(50.0, 75.0]" +Fun,Fun,US,5,2017-07-03,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +Such great app!!,Best app I have on my phone so much interesting things to look at and very well designed,IE,5,2017-07-03,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +Reddit. Not just for lolcats anymore.,"It's also for climate science, IPA, History, bacon, etc. And chasing marmots. The Internet, but more so.",US,5,2017-07-03,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +To the developers,"There is one very frustrating thing that I can't get over. Soundless videos that stop audio. Since there is no way to avoid it this is a problem. I just scroll down and eventually my music stops, before the video even gets on the screen! If there was a setting that would really alleviate this problem that would be amazing. Maybe you could opt out of silent videos or just fix it so that silent videos don't replace actual audio. + +As a side note once I give you a rating please stop bugging me about it no one likes pop ups. The only thing that pop up did was remind me to tell you about this problem and take away two stars.",US,3,2017-07-03,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +LOVE,Love love love love love the community. Great design. Fantastic place.,US,5,2017-07-03,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +"Love it , great app",I read this app everyday. Random stuff and thousands of sub groups to find. Anything your looking for .,US,5,2017-07-03,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Great app,Love it!,BR,5,2017-07-03,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Great,A++,US,5,2017-07-03,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +What you're looking for,"This is reddit official app. It does everything that a lurker needs. I don't dice too deep, but it's my salvation many times in my everyday.",US,5,2017-07-03,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +好棒!,很不错的软件~有趣,CN,5,2017-07-03,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Reddit is as good as you want it to be,TLDR- Reddit good,US,5,2017-07-03,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Love it,Great app and website. R/no sleep is my favorite and of course /NSFW,US,5,2017-07-03,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app!,Everything works great no problems.,US,5,2017-07-03,98,294.0,"(95.0, 100.0]","(275.0, 300.0]" +Реддит - лучший сайт в интернете,Приложение удобное,RU,5,2017-07-03,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +It's okay,"This app does what I need it do most of the time. + +Gfycat videos play so choppily, it's terrible. You get like 5fps. If you can navigate the app's UI to somehow open the Gfycat link in Safari, it's very smooth. I've started using the Beam Reddit app just because it plays Gfycats smoothly in-app. Subreddits like /R/overwatch have a lot of Gfycat links, so it's super annoying when they all play terribly by default in this Reddit app. + +The biggest struggle I have is with watching YouTube videos within it. I'd rather the links just open in the YouTube app. Best I can get is watch it within the Reddit app or open it in Safari, but it takes too many clicks to open it in Safari even. + +I also wish there was better support for landscape orientation. I never use my iPad in portrait orientation. There's a lot of wasted screen space in landscape.",US,3,2017-07-03,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Wheeee!,It's like a new adventure every time I open the app!,US,5,2017-07-03,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +lol,yes,GB,5,2017-07-03,10,50.0,"(5.0, 10.0]","(25.0, 50.0]" +New to it. Great community,Great way to keep up on Bitcoin news.,US,5,2017-07-03,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Works well,"Great for going on Reddit comfortably on a mobile device, when you come out of your underground lair where your PC, still allowing you to avoid social interaction.",CA,5,2017-07-03,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great,"Once you understand the content you want to be viewing, it is so much fun reading all the paranormal/unexplained occurrences, that people have been involved in!",GB,5,2017-07-03,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Awesome app !!!,Everything on anything !!!,FR,5,2017-07-03,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +If you don't know...,"If you don't know, you're not on Reddit! This app provides one-stop-shop for everything past, current, future (thank Elon Musk mostly), fictional, funny, sad, real (and I mean gut-wrenching real), and everything in-between ....and everything out-between ......and everything sideways-between ... pretty much whatever-between! +Not to mention you'll learn some of the Reddit [subreddit/acronym] language like TL/DR, TIL, TIFU, ELI5 ...and the ever so popular FTFY. +If you don't know what anyone of these mean...download this app now!",US,5,2017-07-03,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +Good but could still get better,Improvement on alien blue but still has potential for further development.,GB,3,2017-07-03,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Reddit halt,"Update: Die App zieht super krass am Akku, 20min Benutzung kostet mein iPhone 6s etwa 10%. Das ist mir schon öfter aufgefallen, aber jetzt eben nochmal sehr deutlich. Das ist schon sehr heftig. +------------------------------------------- +Wer es kennt liebt es. Die App ist mir deutlich lieber als die Website am Rechner. Hat ein gutes Design, ist übersichtlich und lässt sich leicht bedienen.",DE,3,2017-07-03,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Just love it!,"Love spending my time on Reddit, rich information and lots of funny stuff. The app itself is great as well, so far not experienced any bug. The use experience is great.",HK,5,2017-07-03,1,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +®it/5star,Better then Instagram except for the memes,US,4,2017-07-03,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Good,Good,US,5,2017-07-03,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Amazing,This app måkes Reddit 10 times better if you are on an Apple device.,NO,5,2017-07-03,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +Все ок,Все ок,RU,5,2017-07-03,28,112.0,"(25.0, 30.0]","(100.0, 125.0]" +Very enjoyable,Only problem : takes my time!,FI,4,2017-07-03,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Great App,Great app,US,5,2017-07-03,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +Bester Reddit Client,"Der beste Reddit Client. Gute Diskussionsforen, insbesondere für alles, was mit Cryptowährungen zu tun hat, unerlässlich.",DE,5,2017-07-03,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +A+,I would be lost without my daily dose of Reddit. Obviously.,US,5,2017-07-03,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Good,"Fun to browse, provides some fresh memes. Just after his last update I couldn't actually open the app for about a week so.",US,4,2017-07-03,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Great,Really good mobile Version of Reddit.com. Also very simple and great for beginners,AT,5,2017-07-03,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +r/5stars,"Great stuff, y'all.",US,5,2017-07-03,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +memes,meme,US,5,2017-07-03,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +Love the app!,Great app for the sickest website in the world...!,IN,4,2017-07-03,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +Good stuff,Super fun,SE,4,2017-07-03,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Love it,"It's pretty nice, still would like landscape mode though",CO,5,2017-07-03,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Great,... seriously... now stop popping up on the phone. Rub Ru Reddit,US,5,2017-07-03,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +Great app,"Great app, pretty fast and useful",AR,5,2017-07-03,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Yeah it's good,It's good enough to use regularly I'd say,US,4,2017-07-03,86,86.0,"(85.0, 90.0]","(75.0, 100.0]" +The best,This is the best reddit app for iOS.,US,5,2017-07-03,31,62.0,"(30.0, 35.0]","(50.0, 75.0]" +I don't think there is a better app than this one.,"This is the only app I keep on my home screen. I cannot take a poop without it. I love my wife, but Reddit is vying for that number 1 spot.",US,5,2017-07-03,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +"Good app, it's fast",I really like this app,AR,5,2017-07-03,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +Yes please,I love Reddit. The only reason I gave it 4 out of 5 is because of how difficult it is to gain the capability to see NSFW on the app.,US,4,2017-07-03,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Couldn't have said it better,@deezesnooks review sums up my feelings exactly.,US,5,2017-07-03,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Good,Good,US,5,2017-07-03,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Problemfrit og underholdende,"Anbefaler for nytilkommet at prøve Reddit, specielt hvis du er en generel bruger af internettet og de sociale medier.",DK,5,2017-07-03,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Great!,Reddit is absolutely brilliant and I think it is such a great place to find funny posts and sometimes even informative news!,AU,5,2017-07-03,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +r/neet,it's wednesday my doods,US,5,2017-07-03,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +This app keeps getting better!,Love it!,US,5,2017-07-03,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +diccs n biscuits,"i love this app so much, get it bro",US,5,2017-07-03,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +My favorite part of the internet.,"My go-to entertainment source, 24-7. It's almost like being in a pub with friends, and you can choose to observe or participate - totally up to you. But the conversations are rarely boring. You will laugh at loud at the comments sections.",US,5,2017-07-03,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Perfect,10/10,NL,5,2017-07-03,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +It works,Is gud,AU,5,2017-07-03,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Okay app,"Kinda annoyed at with the popups randomly, but its free so Ill deal",CA,5,2017-07-03,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +!,!,NL,5,2017-07-03,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +Love it,Thank you for the memes,US,5,2017-07-03,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Aside from having all your interests conveniently divided up and annotated for ya...,It teaches you how to be Internet funny.,US,5,2017-07-03,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +Reddit review,I do like Reddit but sometimes it annoys me when it keeps asking me for my reddit pw.Also i only like reddit in dark mode as it's easier on the eyes.,IE,4,2017-07-03,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +"It's not bad, it's amazing",Words cannot describe. Have laughed out loud way too many times. This app literally is the best cure for boredom.,GB,5,2017-07-03,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it!,"Love this app! It's so informative and, interestingly different. So much to explore!",US,5,2017-07-03,4,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Have to create multi-subreddits in a browser,Cannot create multis in the app.,US,4,2017-07-03,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +Smart!,A university of human endeavors captured!,US,4,2017-07-03,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Great job.,Great app.,US,5,2017-07-03,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Never review. Except for this.,And that is my highest praise.,GB,5,2017-07-03,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Thank you Reddit,Love the boundless information I can't find here from a collective of smart people. Thanks for making my life easier!,US,5,2017-07-03,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +It's ruining my life,"Every waking moment, I'm redditing. When I wake up: Reddit. Coffee Break: Reddit. Stuck in traffic: Reddit. Bowel Movement: Reddit. You get the idea.",US,5,2017-07-02,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Great,Better internets,US,5,2017-07-02,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +/u/joo__,"Great for looking at whats happening rn, better than the website imo",GB,5,2017-07-02,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Ace,Really ace,GB,5,2017-07-02,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Sure.,The app asked me to write a review. Sure.,US,5,2017-07-02,31,31.0,"(30.0, 35.0]","(25.0, 50.0]" +Great app but needs block subreddit feature,"Looking at you The_Donald + +Also could use landscape mode, esp. when viewing landscape images.",US,4,2017-07-02,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +So far-great!,Just now getting into it but I enjoy it very much!!,US,5,2017-07-02,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +"Perfect for uploading, and lurking!",Yay!,US,5,2017-07-02,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's gooooood,Reallly good,US,5,2017-07-02,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +It's the internet,I'm on it everyday which is working for me. I'd give it the old 5/7.,CA,5,2017-07-02,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +Anyone get a towel?,Anyone? The Reddit app caused me to make a mess.,US,5,2017-07-02,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +非常好,好看放松愉快,CN,5,2017-07-02,31,124.0,"(30.0, 35.0]","(100.0, 125.0]" +Great,It's litty fam,US,5,2017-07-02,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +perfect but,amazing for checking reddit on the go but you should be able to see only what your subscribed to imo,GB,5,2017-07-02,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +Works!,Works great!,US,5,2017-07-02,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +NO QUIERO notificaciones,"Usabilidad y funcionalidad perfectas. Única crítica es la constante pantalla para encender notificaciones al abrir la aplicación. Si ya he decidido que no quiero notificaciones, menos quiero que me lo vuelvas a preguntar a cada rato. Es molesto e intrusivo.",MX,4,2017-07-02,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Love it,Just a great app.,NO,5,2017-07-02,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great,Great app,JO,5,2017-07-02,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +The latest version is broke.,"I really liked this app till the latest version. If I install it and run it, it causes my touch screen to become unresponsive. The only way to fix it is to uninstall the app and clear out the memory.",US,1,2017-07-02,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +The web app is better,"Slow, unreliable, hard/impossible to minimize replies when a user has very long flair. No reason to use this instead of their superior webapp, except that the webapp constantly pesters you to use the app instead.",US,2,2017-07-02,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Better than Facebook,Like Facebook but without annoying crap.,US,5,2017-07-02,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Best mobile Reddit app,I've been using a different Reddit apps through the years. This has been the best yet,US,5,2017-07-02,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +Love it,Literally needs nothing mote than what it already have !,JO,5,2017-07-02,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +"They continue to add ""enhancements"" that annoy","Update: this app has gotten even worse since I first poster this review. This app is a joke +I can't recommend this app. I went back to it for a while and they just recently changed more stuff that makes me regret going back. +First they flipped stuff around that made it hard if you are right handed. +Now they have made it so that looking through your subbed subreddit is even harder. Next to where you scroll through your subbed subreddits they added a button to pin it to the top of the list. It's extremely easy to hit that after scrolling. You will then have scroll all the way back to the top so that you can unpin it. They removed it alphabetical from the list so you have to go all the way up.",US,1,2017-07-02,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +always get stuck on this app for longer than i should... 10/10,would recommend to a friend,US,5,2017-07-02,55,220.0,"(50.0, 55.0]","(200.0, 225.0]" +Great app,Great app if you're looking for something interesting or just to procrastinate,GB,5,2017-07-02,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +A heaping helping of awesomesauce!,I read thesilphroad.,US,5,2017-07-02,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Buttery,So buttery. The app is nice as well.,US,5,2017-07-02,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +It does good,I like much,US,5,2017-07-02,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Nice!,Very good lol,US,5,2017-07-02,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Great app,It allows for interaction with others very easy over many different topics!,GB,5,2017-07-02,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +6/5,What else can you say?,US,5,2017-07-02,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great APP,Love Reddit and this is great for media posts. I use alien blue for text heavy reddits and this for gif heavy.,US,5,2017-07-02,90,360.0,"(85.0, 90.0]","(350.0, 375.0]" +*DIGITAL KOOLAID MAN*,"*BURSTS THROUGH YOUR SCREEN* +""OH YEEEEAAAAAH*",US,5,2017-07-02,8,32.0,"(5.0, 10.0]","(25.0, 50.0]" +A,Tökéletesen működő app! Mindenkinek ajánlom,HU,5,2017-07-02,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Does what it should.,Yup.,US,5,2017-07-02,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Litmas eve,I use this to get involved with communities on what I'm interested in such as video games or sports. Or just keep up to date on real news,US,5,2017-07-02,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Distractionitis,Always a go to app when I need a distraction from the mundane.,CA,4,2017-07-02,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +10/10 DaNk MeMeS,"I LoVe GoInG oN rEdDiT. tHeY aLwAyS hAvE gOoD, iNtErEsTiNg NeWs AnD nEvEr StAlE mEmEs.",US,5,2017-07-02,89,356.0,"(85.0, 90.0]","(350.0, 375.0]" +Love it,The best reddit app available.,US,5,2017-07-02,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +I love the NSFW stuff.,Check them out.,US,5,2017-07-02,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Best way to Reddit on a phone,Love this app.,US,5,2017-07-02,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Reddit rules!,"Great app! Clean, crisp, and easy to navigate 😊",US,5,2017-07-02,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +So good,Very nice UI and all Reddit is there. Do recommend if you have an account.,US,5,2017-07-02,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Easier to use than standard website version,Super easy to navigate and post. This app got me hooked on reddit.,US,5,2017-07-02,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +I mean...,It's reddit.,US,5,2017-07-02,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love easy Reddit access,Used Reddit all the time and finally decided to make an account and download the app... super easy format and love the apps simplicity!,US,5,2017-07-02,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Awesome,It's good I don't have a problem with it :),HU,5,2017-07-02,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Easy to read and browse content,Wow some app,TW,5,2017-07-02,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +It's just great,A decent app for the best website.,NL,5,2017-07-02,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Sweet as,Sweet as,NZ,5,2017-07-02,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app,"Works as expected, haven't encountered any issues 👍🏻",PL,5,2017-07-02,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +a lot of animal memes,#great,SE,5,2017-07-02,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +"Real front page of internet, enjoying it",Amazing app with great content.,SG,5,2017-07-02,86,86.0,"(85.0, 90.0]","(75.0, 100.0]" +Fancy pictures to look at👍🏽,I like this app,US,5,2017-07-02,75,225.0,"(70.0, 75.0]","(200.0, 225.0]" +Reddit,Good stuff 👍🏻,US,5,2017-07-02,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Great app,"Most of my spare time on Reddit, app is perfect and working exactly as expected.",IE,5,2017-07-02,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Best iOS Reddit app,"Good app, easy to use. Prefer Reddit is fun but that's not available on iOS",GB,5,2017-07-02,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Awful,"Not intuitive to use. Not easy to reply to original comment/OP, doesn't allow easy copy/pasting, cannot seem to just click on profiles in thread, and worst of all, I have to open the post to save it for later, so I can't save NSFW stuff for a more appropriate time.",US,1,2017-07-02,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app,Use it every day,US,5,2017-07-02,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +👍🏽,"Perfect way to use Reddit! +I just want to be able to change my password in-app please. 😑",US,5,2017-07-02,24,24.0,"(20.0, 25.0]","(-0.5, 25.0]" +Awesome,Ok,MY,5,2017-07-02,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Blue is better in one significant way,"There are a lot of features to like in this version that I'll leave to the five star reviews to gush over. + +An earlier version called Alien Blue has one feature that keeps me using it over all the nice features in this version. + +Part of reddit's charm are the comments. They'll provide insights, wit, or counterpoint that sometimes eclipse the original post. They truly make reddit. + +Like comments elsewhere there's lots of chaff that hides the ones that make reddit worthwhile. That's where this version fails to breast Blue. Blue enables comment thread collapse with a single tap. This version requires two taps - one to open a pop-up and another to collapse the thread. As odd as it sounds, doubling the number of taps takes more than twice as long to effect as a single tap. The pop-up, like all pop-ups, interrupt the flow as you shift attention from the contents to the pop-up. Pop-ups elsewhere are intrusive and this one's no less obnoxious. + +It's a small thing that keeps me favoring Blue over this version. There are many terrific features in this version that I know of and there may be more waiting to be found that will remain unfound until this version has single-tap-collapse as one of its features.",US,3,2017-07-02,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Reddit,Great fun and interesting II.,US,5,2017-07-02,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Very good.,Translates very well from website to app,US,5,2017-07-02,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Cool,"Like this app. Night friendly screen is good, no more waking the SO :-) Wish you could set a sub it went to upon opening. Maybe there is and I haven't found it yet.",IE,4,2017-07-02,93,279.0,"(90.0, 95.0]","(275.0, 300.0]" +Love it,Totally,US,5,2017-07-02,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +What's not to like,Nothing,US,5,2017-07-02,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Great,"Aside from trending notifications, the app is great.",US,4,2017-07-02,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Love Reddit,Love this app! Reddit is a great place on the internet,US,5,2017-07-02,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +u/j0rdancodes replied,"This app is the best thing in existence. + +Too much? :P",US,5,2017-07-02,35,70.0,"(30.0, 35.0]","(50.0, 75.0]" +Reddit is amazing,"Due to reddit having a great community on different forums/topics it makes it more enjoyable to know that you are not the only person that likes what you like. + +Overall I would rate reddit 5 stars for great, everything",FI,5,2017-07-02,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Reddittt,i loveeeee this,US,5,2017-07-02,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Works great,Great.,US,5,2017-07-02,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Perfect!,Works just fine:),PL,5,2017-07-02,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Great App,Great for news and social groups who share similar interests!,US,4,2017-07-02,28,112.0,"(25.0, 30.0]","(100.0, 125.0]" +Great,Great,FR,5,2017-07-02,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Great app,Really nice app if you like Reddit,IS,5,2017-07-02,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Much needed app.,"There is bunch of 3rd party app that works but i just didnt like them. Now this official app is great and works really great. Smooth, modern and they nailed what a reddit app should be.",IN,5,2017-07-02,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Reddit,Love it!!!,US,5,2017-07-02,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Bout time,"Reddit needed a proper app, works great on iphone and ipad. If you want an app to access the front page of the internet, this is the one. Lurker or poster, all are welcome",AU,4,2017-07-02,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Reddit is great,App nice and simple to use.,GB,5,2017-07-02,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Lovely 👍🏼,Thanks..,TR,5,2017-07-02,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Always new content,There are so many subreddit's tuat you will never get bored,NL,5,2017-07-02,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Best app,Love it,US,5,2017-07-02,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +One star for incessantly bugging me to review.,"Not a bad app. But the constant bugging me to review it, in a format that leaves me no option to easily escape, earns this app a one star review. Respect your users.",US,1,2017-07-02,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Great product,More fun a bag of popcorn at bedlam,CA,4,2017-07-02,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Great app,"Love this app, perfect for reddit",US,5,2017-07-02,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +Love it!,Now that it works with iPad I love it. The app is nice and fast provides notifications updates and keeps you on top of everything.,US,5,2017-07-02,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Overall great,Not amazing. But definitely enjoyable to use,US,4,2017-07-02,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +10/10,Amaze,US,5,2017-07-02,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +"Love it! So funny, informative, everything","Gets all the news first and cute stuff and easy use on the app. Can't use the desktop version, the apps the best. +Get it and never go back.",AU,5,2017-07-02,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +LOVE REDDIT,Best thing since slice bread!,US,5,2017-07-02,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Stop asking me to rate you all the damn time,Otherwise it's a good app,AU,5,2017-07-02,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +いいと思う,Good,JP,5,2017-07-02,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +It's reddit cmon,Need I say more,US,5,2017-07-02,29,145.0,"(25.0, 30.0]","(125.0, 150.0]" +henlai,So magical,HK,5,2017-07-02,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Enjoy,Enjoy app,US,4,2017-07-02,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Almost perfect,I just need to figure how to collapse comment subthreads,CA,4,2017-07-02,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Nice,Nice!!,CA,5,2017-07-02,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Excellent,The app is very user friendly and the whole layout looks neat.Well done.,US,5,2017-07-02,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Meme,I'm getting this app for meme purposes,US,4,2017-07-02,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +有一点点瑕疵,完美,除了长按不能复制,CN,4,2017-07-02,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Simple elegant useful,It's the best way to reddit on mobile,US,5,2017-07-02,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Love it,Favorite app,US,5,2017-07-02,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Memes,"Wonderful app and community, but rare glitches.",US,4,2017-07-02,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Like a good book!,I can't stop reading!,US,5,2017-07-02,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Great way to spend free time,Title says it all,US,5,2017-07-02,5,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Very good,Has spicie memez n stufsh,US,5,2017-07-02,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +It's cool dude,Yeah it's pretty cool,US,5,2017-07-02,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +It's a thing.,"Come on, what's the worst that could happen?",US,5,2017-07-02,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Super awesome,Always on the app,US,5,2017-07-02,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +It's,Grrrreat,CA,5,2017-07-02,75,225.0,"(70.0, 75.0]","(200.0, 225.0]" +5STR/OnPoint,Always loved and admired,US,5,2017-07-02,44,88.0,"(40.0, 45.0]","(75.0, 100.0]" +Good layout,Waiting for any new functions that make us read and happy easily.,AU,5,2017-07-02,94,94.0,"(90.0, 95.0]","(75.0, 100.0]" +Is it Reddit?,Oh boy it sure is.,CA,4,2017-07-02,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Go to app,"Boredom sets in and I go to reddit! +Lots to explore!",US,5,2017-07-01,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Cool app !!,Funny (笑´・艸・),JP,5,2017-07-01,87,174.0,"(85.0, 90.0]","(150.0, 175.0]" +Funciona bien,Funciona bien,ES,5,2017-07-01,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Jeezoo,"Great app, bla blah blah, I'm busy.",US,5,2017-07-01,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +Finally.,This app make Reddit feel like not something from the 1999! BIG LIKE.,US,5,2017-07-01,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Great,Grrrrrreeeat,US,4,2017-07-01,26,26.0,"(25.0, 30.0]","(25.0, 50.0]" +Fantastic app and platform,Fantastic app and platform,US,5,2017-07-01,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Dank memes await,"It's prettttty dank, the birthplace of many a meme. ""Hey, that's pretty good!"" - Idubbbz.",CA,5,2017-07-01,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Cool,Now maybe Reddit will stop asking me for a rating.,US,5,2017-07-01,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Nice communities!,So far so good. Fun and positive communities.,US,5,2017-07-01,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +Love reddit,5 stars if landscape worked on iPhone,US,4,2017-07-01,71,284.0,"(70.0, 75.0]","(275.0, 300.0]" +Annoying,The ads aren't a big deal and I really don't mind that portion because they aren't overbearing. On the other hand I'm sick of being asked to review the app every time I use it. In that case you get 1 stars. Your move.,US,1,2017-07-01,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Unable to upload photos.,"Every time I attempt to upload a photo with this app, it shuts down immediately. First, it just wouldn't let me post the photos and would say it failed to upload them. Now that I've updated, the app shuts down. Great in every other aspect but this is ridiculous.",US,3,2017-07-01,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +So far so good,Have used it for a week and have enjoyed it. Love that I can be in a community of my interests. I still need to figure out how to post.,US,4,2017-07-01,44,88.0,"(40.0, 45.0]","(75.0, 100.0]" +Eve online Reddit,Great stuff!,US,5,2017-07-01,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +Ekşiye örnek olsun,internet aleminin en popüler haberleri burada. uygulama da sorunsuz. bizimkilere örnek olsun.,TR,5,2017-07-01,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Excelente,Excelente,US,5,2017-07-01,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +"Very user-friendly, easy to use!","Two thumbs up, lads.",US,5,2017-07-01,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Gh,.hbhb,US,5,2017-07-01,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Really good.,"I haven't experienced any problems thus far. It's all working well. +The ads can be annoying but that's about it.",DE,5,2017-07-01,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Sweet,Yee,US,5,2017-07-01,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Yay,Good,US,5,2017-07-01,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Loved it,This is a awesome app,IN,5,2017-07-01,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Very good app!,"Easy ti use, I'm using every day, it is very good!",IT,5,2017-07-01,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +I Love Reddit!!,It's the best way to waste time!,US,5,2017-07-01,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Awesome,"I mean really, the world is better with reddit",PL,5,2017-07-01,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Good!,I think its much nicer looking than the desktop version although I wish you could see flairs and change them easier on the app.,US,4,2017-07-01,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +Helps keep me occupied while rehabbing back injury,I love to read random stuff when I'm bored. Reddit has helped keep my mind occupied during a long rehab from a back injury. Thanks redddit!,US,5,2017-07-01,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Just get it,Works great and guarantees to make me smile and be entertained on a daily basis.,GB,5,2017-07-01,51,102.0,"(50.0, 55.0]","(100.0, 125.0]" +"Aw, shucks.","Gee buds, this is a real good app, honest. There ain't no foolin' in these bones. Now get the heck outta here, ya jokers! Go get that karma, see!",US,5,2017-07-01,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +😊,"Love Reddit!! Really great discussions and lots of funny stuff too. The only thing that irritates me is when I see an interesting subject and the first person to post on goes with a joke or something, everyone after that comments on the joke and no info then on the title",US,5,2017-07-01,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Reddit,"They asked me to do it, and it's good enough that i'll want to do it. 11/10",NO,5,2017-07-01,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +TL;DR,TL;DR,US,5,2017-07-01,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +Functional and Enjoyable,"Apps works and delivers. + +I actually like the app better than the website (easier to navigate, clean, simple).",US,5,2017-07-01,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Greasy haired pussyfooting,Why is there an account dedicated to horse vaginas,US,5,2017-07-01,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Güzel,"Güzel güncellemeler düzenli olarak geliyor, böyle devam ederse şimdiki gibi güzel kalacak.",TR,5,2017-07-01,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Cool,Nice plaform,TH,5,2017-07-01,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Amazing App,"I didn't even created my account on a computer. My first and only account was created on this app, no more than 130 days ago. This app is so, exquisitely, good. + +That search engine tho...",US,4,2017-07-01,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +ya yeet,it's lit,US,5,2017-07-01,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Genial,Muy útil y actualizado. Sirve para distraerte,MX,5,2017-07-01,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Pretty good,"Why aren't all the features of the website in the mobile version. I'm tire of having posts get rejected because I didn't put the right tag in the subject....guess what, there aren't any tags to select!",US,4,2017-07-01,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Badass,Get it,GB,5,2017-07-01,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +Oooooyeeeeee,This app has been stable and provided me with hours of entertainment and learning.,US,5,2017-07-01,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Social media: don't regret it.. Reddit!,A fresh approach to social media. Just try it. You'll see.,US,5,2017-07-01,47,188.0,"(45.0, 50.0]","(175.0, 200.0]" +I love this app,I love Reddit but this app changed the game for me. I love browsing through the app and I love the night mode feature.,US,5,2017-07-01,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Great,Crazy fun,ZA,5,2017-07-01,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Stuff.,Free entertainment. What's better.,TH,5,2017-07-01,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great!!,So glad to finally have an official Reddit app. It works well and I use it all the time. Bravo!,US,5,2017-07-01,21,42.0,"(20.0, 25.0]","(25.0, 50.0]" +Reddit is Pretty Great,"It's a good app, but it's kind of hard for posts to get to the top.",US,4,2017-07-01,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +Luvs it!,Every day!,CA,5,2017-07-01,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +I don't know how to Reddit on anything else now,GOLD PLS,US,5,2017-07-01,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Great app,Spend hours of you life immersed in the world of reddit right on your phone,US,5,2017-07-01,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Good,Only doing it to stop the app messaging for rateing also preatty good for memes,IT,5,2017-07-01,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +"Simple, fun and easy to use",Great app.,US,5,2017-07-01,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Reddit,Самый лучший:)),UA,5,2017-07-01,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +Just works!,Good design and stable functionality,CA,5,2017-07-01,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Solid app!,Fast and easy to use to read all the subreddits,US,5,2017-07-01,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Solid,AF,FI,4,2017-07-01,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Good app! Good fun!,10/10 would rate again,SE,5,2017-07-01,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Fun way to waste time!,"Reddit is my go to app when stuck in situations where I can leave, but I don't want to just do nothing....",US,5,2017-07-01,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Great Time Waster!,Great app to find discussions about anything and everything!,US,5,2017-07-01,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Bad navigation,Make comments collapse easier,BR,1,2017-07-01,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +Iz good,"Here you go, Reddit. I'm reviewing your app. Iz good.",US,5,2017-07-01,100,200.0,"(95.0, 100.0]","(175.0, 200.0]" +Super great app,Reddit is the bees knees and this app just amplifies it. Thank you,GB,5,2017-07-01,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +What's not to love?,Better than all the stuff you will see on FB and allows you to actually see content that matters to you,US,5,2017-07-01,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Just an all around good app,👍🏼,CA,5,2017-07-01,4,16.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love,"Reddit ap is easy to use and very fast. Love the community, keep it up guys.",US,5,2017-07-01,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Yeet!,Love it boi.,US,5,2017-07-01,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +Is good,Very good,US,5,2017-07-01,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Favorite way to waste my free time,Love Reddit. App is easy to read my favorite subs.,US,5,2017-07-01,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Love it!,PLZ PLZ PLZ PLZ DON'T GET BLOCKED.,CN,5,2017-07-01,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Nice,I like it.,US,5,2017-07-01,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Is amazing. Can confirm.,Yas.,US,5,2017-07-01,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +5,5 stars,US,5,2017-07-01,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Good app,Easy to use. Thanks.,US,5,2017-07-01,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Very nice!,Very nice!,BG,5,2017-07-01,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Interface needs work,Overall response is great. Sometimes a pain to find random subs. Feels stripped down massively from the desktop version... which I will stick with.,US,2,2017-07-01,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Super App. Alles funktioniert,Super App. Alles funktioniert,DE,5,2017-07-01,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +Best platform ever,Love it. One of my top go-to apps to kill time productively.,AU,5,2017-07-01,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +It's what you'd expect,It's Reddit like you'd expect it... enough said.,US,5,2017-07-01,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Awful,Why am I being forced to leave a review? Garbage!,RU,1,2017-07-01,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Sehr gute App,"Hat zwar ab und zu Bugs, welche ich aber nicht reproduzieren kann also wird es sich um situationsbedingte Einzelfälle handeln 👍",AT,5,2017-07-01,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Very solid for the casual browser,I'm not a big reddit buff and don't make my own posts and such but the experience just commenting and exploring the fascinating community is a great experience.,GB,5,2017-07-01,74,74.0,"(70.0, 75.0]","(50.0, 75.0]" +Review,Will this review stop the app asking me to review it? I hope so..,GB,5,2017-07-01,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Awesome All Around,"This app is one of my favorites. Functionality is great and I rarely, if ever, experience issues. I love the swipe features and am mildly entertained by the ability to rotate an image you swipe away if you do it just right.",US,5,2017-07-01,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit app is great,💪👍,CH,5,2017-07-01,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Amazing,Anybody who doesn't use this doesn't know what they're missing. There is a MASSIVE community with unlimited categories to look for when killing time. Excellent app.,CA,5,2017-07-01,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Great!,Information from all degrees of the spectrum.,US,5,2017-07-01,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Shittay,"Worst update. 1/2 the time doesn't work ""Cant Reach Reddit"". Super unimpressed",CA,1,2017-07-01,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Almost Always Refreshing!,"Great app, good for a laugh or two daily.",US,5,2017-07-01,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +Good but could be perfect,"Great app all round, but would like a way to search a subreddit for a post",MY,4,2017-07-01,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +The Best!,Love Reddit!,US,5,2017-07-01,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +Love Reddit!,Get links that you wouldn't otherwise see.,NZ,5,2017-07-01,4,16.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great community,Love it!,DE,5,2017-07-01,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great!!,Love it.,US,5,2017-07-01,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +😃,😱👺,US,5,2017-07-01,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +Too many subreddits that I don't follow,Random subs are getting spammed to my homepage so bad that I see numerous xposts. Please stop Reddit.,CA,1,2017-07-01,2,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +A real social network,"So cool, so many subjects, so many facts, so many things to learn!",US,5,2017-07-01,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Pretty good,Pretty good,AU,5,2017-07-01,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Love it,I think that the sub Reddit called aww is the best,US,5,2017-07-01,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Pretty dank my dude,Neato if I do say so myself,US,5,2017-07-01,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +"Good app, great site","App does what it should do. Would be good if comments threads could be collapsed, (or maybe I missed something), but otherwise, awesome!",AU,5,2017-07-01,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +"Great app, even better site","Reddit is by far the center of the internet, and this app goes just about as far to give mobile users the same, if not a more innovative approach to access it. My only complaint is not being able to view a full thread if it is too long, it says ""x more replies"" but clicking on it just makes it invisible. Otherwise, great app.",US,4,2017-07-01,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Great app on many levels!,"The app performance is great. Offering a wide variety of interests from tech to world news. Many NSFW categories , jokes and more. Quick interaction subscriber friendly. Updates often without a timely interval.",US,5,2017-07-01,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Not bad,Was expecting more nastiness then puppy videos. It's a good place to find unusual subjects.,US,4,2017-07-01,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Wonderful,On par if not easier than using the website,AU,5,2017-07-01,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Awesome community!,Awesome community!,US,5,2017-07-01,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Umm duh.,It's the greatest platform for everything. E.V.E.R.Y.T.H.I.N.G.,US,5,2017-07-01,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +nice,lol nice,US,5,2017-07-01,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +Dope as heck,So many cool stories!,CA,5,2017-07-01,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Good app,Good app If you use Reddit a lot not really worth it if you only browse occasionally though,CA,5,2017-07-01,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Great,I'm always on here,US,5,2017-07-01,99,99.0,"(95.0, 100.0]","(75.0, 100.0]" +Great,Great,US,5,2017-07-01,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +I like,I like,US,5,2017-07-01,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Can't get enough of this app- god bless Reddit,"I use this app everyday, it has become my me ""coffee break"" at work.",CA,5,2017-07-01,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it,Great,PH,5,2017-07-01,29,145.0,"(25.0, 30.0]","(125.0, 150.0]" +Thank you Reddit Team,"just thank you, your site connects so many people and provides me with the best entertainment to get through work. +Cheers",AU,5,2017-07-01,75,375.0,"(70.0, 75.0]","(350.0, 375.0]" +Night mode load screen fixed!,My brain and weary eyes says thank you. Finally!,US,5,2017-07-01,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Love it,It's a great app that makes browsing reddit on your phone easy. I love it.,US,5,2017-07-01,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Good,Reddit is good.,US,5,2017-07-01,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +I love reddit. It's like Facebook with strangers. I like strangers better,👌🏻.,US,5,2017-07-01,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +I like Reddit.,The latest version seems to be working well.,US,5,2017-07-01,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Want to Stay Awake Past Your Bedtime Unintentionally???,"This is how I cut down on my already reduced sleep schedule! In all seriousness, it's a solid app for solid material. Good job guys.",US,5,2017-07-01,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Reddit is good,App is good. Reddit is good.,US,5,2017-07-01,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Pretty good,Lack of subreddit sidebar button but overall decent app,EC,5,2017-07-01,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Love it,Cancer but good :),US,5,2017-07-01,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +10/10,What can I say? It works pretty flawlessly. Thanks guys!,US,5,2017-07-01,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Redit is a community of community's,"I originally started using redit as a way to communicate with people who play Pokémon go, my experience was incredible. Now I have branched out and found that so many sub-redits are providing joy and laughter to thousands. I know that no one may read this but I genuinely laugh every time I go into the redit app. Thank you",US,5,2017-07-01,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +🎉😁😘😃🙃😶🙂🎊,"AWESOME good for 5mins of a couple of hrs, and the great pics don't hurt😉 +6/30/17 still LOVIN IT🖖❤️😁",US,5,2017-06-30,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Love Reddit and app is great!,Nuff said. App is great and easy to use. Layout is organized and I don't feel like I'm going all over trying to find simple things.,US,5,2017-06-30,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Awesome,Awesome,NZ,5,2017-06-30,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Reddit alright,"It's good for interesting posts but not really that funny. I read a book when I was in grade 4 and forgot the title of it forever, anyway someone on reddit found it for me so yeah",CA,4,2017-06-30,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Love reddit love the app,"No complaints, wait I would like the ability to delete hidden sites",US,5,2017-06-30,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +App for iPad is hot garbage,"Poorly formatted for iPad's wide screen. Also if you click on any link for something, it pops up but it disappears and the screen goes white after 30 seconds. You guys put zero effort into the iPad version, it seems",US,1,2017-06-30,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Awesome app!,"Great navigation, and easy to use. Fantastic!",BR,5,2017-06-30,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +Much wow,Much wow,US,5,2017-06-30,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +New,I never been a big reddit user till today I been reading Reddit post all day and looking through all the different things people write and I love how supportive the Reddit community it,US,5,2017-06-30,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Will deduct one star each time.,I was asked to rate it although I already had. FU Reddit for wasting my time. Which is all you do anyways. Love it.,NO,4,2017-06-30,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Love it,Good stuff,FI,5,2017-06-30,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Great entertainment but know what you're doing before you post,Some redditors are snarky,US,5,2017-06-30,89,178.0,"(85.0, 90.0]","(175.0, 200.0]" +Excellent,"This app is pretty practical, I have to say.",AR,5,2017-06-30,31,62.0,"(30.0, 35.0]","(50.0, 75.0]" +Enjoyable,"Nice, relaxing stable fun quick, and smart!",GB,4,2017-06-30,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +best on iphone,"too bad there's no 'reddit is fun' on the appstore, but this is close enough",DE,4,2017-06-30,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Wow,Good eh,US,4,2017-06-30,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Works great,"Only flaw is that the app doesn't always open links and I have to click the open link from the safari page instead of the app opening up. + +Update 6/30/2017: Decided to drop it down a star because despite already giving the app a review, it still constantly asks me to rate the app.",US,3,2017-06-30,98,392.0,"(95.0, 100.0]","(375.0, 400.0]" +Berry hood spp,Its god,RO,5,2017-06-30,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Works so good my legs went numb.,"Sat down for my daily meeting on the porcelain throne, and as usual, I had to browse Reddit because this meeting turned into a longer one than expected. I seemed to get lost in the east maneuverability around the Reddit site through this app. The ease of use, with which I was able to submit posts, attach pictures and links for zero upvotes and demoralizing comments, was unbelievable! So much so that my legs went numb from excessively long sitting. I had to get up and my feet slapped on the tile floors with no feelings with sounds of clapping. + +Downloader beware. + +5/5",US,5,2017-06-30,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Fun when you're bored,CA,5,2017-06-30,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Works fine. Asks to rate all the time.,Works fine. Asks to rate all the time.,US,3,2017-06-30,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Great app,Never thought I'd be a Reddit kid but have grown to really enjoy it. Not only does it make me laugh and intrigued in my interests but it also makes me aware of what's going on in the world. 5 stars.,US,5,2017-06-30,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +Solid reddit experience,"It works as advertised. Also, the application stays largely out of the way as I'm browsing. Thanks for that.",US,5,2017-06-30,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Brilliant,Great way to find new friends and great content.,GB,5,2017-06-30,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +Glad there's finally an official app,This is usually where I go to find out the latest news and catch some laughs. Has always been there for me Reddit <3,US,5,2017-06-30,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Decent,"Since the stupid app won't stop pestering me until I review it here you go. Not bad, nothing spectacular.",US,3,2017-06-30,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Great,The app works great.,US,5,2017-06-30,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Pretty decent app with a couple interface flaws,"Noticing a bug with messages. Whenever I have a message in my inbox and I click on the mail icon, the app quits out.",US,3,2017-06-30,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Great app!,I love this app!,US,5,2017-06-30,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Great app,I was an avid user of Alien Blue but I finally switched to the Reddit app. I love it.,US,5,2017-06-30,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Great,I love Reddit but 1 star because I don't want to see deep fried memes on the popular section. They are mostly dumb but they pop up regularly I just feel like I should be able to block specific things from there I don't want to see any more Beep Bried Bemes!,US,1,2017-06-30,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +An exceptionally entertaining social media app.,"I initially signed up for Reddit as a time waster, but I have been thoroughly impressed with the content, the humour and the comments left by all the posters. + +Reddit Secret Santa is an insanely genius cherry on top of this extravagant sundae.",CA,5,2017-06-30,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Oh my,Hell yea. App rocks,US,5,2017-06-30,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +New to Reddit !,"I'm just learning how to use it , but so far so good. Loving the easy to use set out and easily available content",ZA,4,2017-06-30,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Gr8,All the dank memes are here before they get on I iFunny.,US,5,2017-06-30,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Good,It's good,US,5,2017-06-30,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +Buena pero no es Alien Blue,"Faltan algunas opciones de personalización, pero buena app dentro de lo que cabe.",MX,4,2017-06-30,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Go home Apple,Give me NSFW!,US,5,2017-06-30,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Very good official app,Close to browsing the original,GR,4,2017-06-30,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Hopeful,Hopefully the app will stop telling me to rate it now,US,4,2017-06-30,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +You pester me for a rate this is what you get.,App is good but I don't like being pestered every week to rate something that isn't worth a rate. So You get one star cause you annoy the ever loving crap out of me. Happy reddit?,US,1,2017-06-30,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +love it,it truly is better than the mobile internet version,US,5,2017-06-30,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Missing features,"Kind of degraded experience vs desktop, but ok for browsing",FR,4,2017-06-30,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Great app,Wicked,NZ,5,2017-06-30,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Never have had a problem unlike other Reddit apps,Title,US,5,2017-06-30,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Great app! Would recommend!,"Good UI, pleasing visuals, all round great app",GB,5,2017-06-30,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +This is a good app,I use this app all the time. It has good features.,US,5,2017-06-30,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Great,best wast of my time,AT,5,2017-06-30,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +The Best of the Internet,Reddit has everything you want and everything you didn't know you wanted.,US,5,2017-06-30,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Great,Funny stuff if you find the right subreddits,SE,5,2017-06-30,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +❤️,I love it,US,5,2017-06-30,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +8008135,It's good,US,5,2017-06-30,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Great!,Love it,US,5,2017-06-30,4,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Super awesome,Super awesome,US,5,2017-06-30,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +Not too shabby,Works for its intended purposes. I wish the comments had a feature to send the active screen to the next comment. (Past the replies),US,4,2017-06-30,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Greatest Website,Read the title,US,5,2017-06-30,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Good,Good app,IT,5,2017-06-30,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Reddit,Me like,US,5,2017-06-30,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Amazing,"Really good app, you can find just about anything on it",GB,5,2017-06-30,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Amazing,Makes the great content on Reddit easy to browse.,US,5,2017-06-30,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +Love this app,Everything works right. Doesn't crash.,US,5,2017-06-30,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Good,Good,US,5,2017-06-30,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +It's good,Bacon,US,5,2017-06-30,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Not had a problem with it,Good app,GB,5,2017-06-30,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +Great app,Great app,US,5,2017-06-30,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Reddit is bad,I hate it,US,5,2017-06-30,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +nice app,I like it's,JP,5,2017-06-30,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Always handy,"All the answers you have, are found here.",NL,4,2017-06-30,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Love the app!,Just that simple.,US,5,2017-06-30,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Great app,Never have any issues with the app. Super convenient to access Reddit and all of the subs on the go.,US,5,2017-06-30,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Excellent App,👍🏼👍🏼👍🏼,US,5,2017-06-30,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +"Why must you do this, Reddit?","What is this new Reddit application thing? Why do people have to apply for a website now? Is this that net neutrality thing you talk about? + +I think it is sad. I have grandchildren who love this website and now they have to get an application and fill out personal details? We are cancelling our subscription. + +I love your website though. Just stop making me fill out applications and give my info to strangers. My social security number is mine, mine only. + +Sincerely, +Ken M.",DK,5,2017-06-30,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Needs a UI Overhaul for iPad,"The app is great for what I need on my iPhone. However, it is poorly done for iPad. The UI doesn't take advantage of the iPads screen size. 3rd party apps have done a much better job with the iPad UI. I've since switched on all my devices because of it.",US,2,2017-06-30,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +Bis auf...,... die Werbung - Top!,DE,5,2017-06-30,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Intelligent funny,Legit,US,5,2017-06-30,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Best app,I love it,MX,5,2017-06-30,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Awesome,It's to good for words,US,5,2017-06-30,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +It good,It is good,US,5,2017-06-30,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +It's great!,I'm still finding my way around the app/site but so far it's great! Lots of interesting topics to check out.,US,5,2017-06-30,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +Awesome!,Best way to spend your 9-5.,CY,5,2017-06-30,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +God bless night mode,That is all.,US,5,2017-06-30,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +I,Don't like writing reviews but I do like redit.,US,5,2017-06-30,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +It's reddit in a app,Nuff said.,US,5,2017-06-30,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +Dank,Dank,FR,5,2017-06-30,39,156.0,"(35.0, 40.0]","(150.0, 175.0]" +Love,I love to scroll through... great for lazy people,US,5,2017-06-30,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +I have had the app for 19 hours,"I am enjoying the app. I have found many intelligible opinions on various interpretations of unsolved mysteries. No crashes or any problems whatsoever. +Highly recommended and may be addictive!",US,5,2017-06-30,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Fine replacement for AlienBlue,Good to go,US,5,2017-06-30,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Noice,Sick mobile version. Simple and easy to use 👌,AU,5,2017-06-30,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great app and very easy to navigate,"I like Reddit for many reasons. The mobile app is so easy to use, easy to sub to groups, and offers a much faster way to get into conversations about whatever you're looking for.",US,5,2017-06-30,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Awesome app,Wonderful. Used a fake Reddit app for years. This is much much better.,US,5,2017-06-30,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Great app!,I've been using both the app and the website for 20 days now and I love it so far!,RU,5,2017-06-30,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Application is THE BEST,"Great application, very easy to use!",US,5,2017-06-30,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +It's reddit on my phone,I love reddit,US,5,2017-06-30,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Very Clean,Easy to use and twice as fast as safari,US,5,2017-06-30,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Stop,Stop asking me to rate.,US,1,2017-06-30,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great work everyone,"It's like Reddit, but in an app. Crazy",US,5,2017-06-30,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Reddit,But how'd you take THAT picture??,US,5,2017-06-30,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Scoop Dijour,I love having Reddit to have adult informative discussions about my interests from A to Z. Ty reddit...should have subbed along time ago.,US,5,2017-06-30,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Sign up/ log in,"I literally cannot log in to the app nor can i make a new account on it, i tried a thousand times with both and it just says to try again later, PLZ FIX",US,3,2017-06-30,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +What I read each morning,I start my day on a positive note with this app. Reddit is the best!,US,5,2017-06-30,90,360.0,"(85.0, 90.0]","(350.0, 375.0]" +Smooth but needs more improvements,"I love this app because it's so smooth compared to other reddit apps, but what's missing is the trigger to load the images HQ or not, like a button under the image to allow me to load it in HQ or SQ.",US,4,2017-06-30,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Me,:),US,5,2017-06-30,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Watch out very addictive,"If someone told me that I had to delete all my apps or die with the exception of one, my exception would be Reddit. There are so many subreddits to suscribe to everything from diy to frugality to catlovers, to everything in between! I read, hear, and see stuff on Reddit that gets talked about on the radio the next day! I am like ""pffft"" I knew about that already!",US,5,2017-06-30,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +Love,I love this rabbit hole of all things intriguing,US,5,2017-06-30,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Cool,It's fine. Sometimes slow. A lot of ads.,KR,4,2017-06-30,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +The best community on the internet,Reddit is more than an app; it's the community that makes it all that important. It is the nicest collection of people on the web.,US,5,2017-06-30,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Good,10/10 would download again,TH,5,2017-06-30,55,275.0,"(50.0, 55.0]","(250.0, 275.0]" +Opening Reddit links,"Needs to be more seamless in opening from a Reddit URL. At the moment, I get taken to the App Store where I then have to open the app. It doesn't make sense.",GB,3,2017-06-30,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Reddit = Life,Such a great app! There is something for everyone,US,5,2017-06-30,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +My hourly fix,Love Reddit and I am totally devoted to it.,US,5,2017-06-30,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +Best app ever,I spend hours on it. I love it.,CA,5,2017-06-30,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Best online,"All in one info, entertainment and everything going on around the world.",US,5,2017-06-30,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Good stuff,👍,US,5,2017-06-30,4,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app!,Even greater now!,US,5,2017-06-30,86,86.0,"(85.0, 90.0]","(75.0, 100.0]" +Good app but..,"Too many ads between posts, and they use cookies from my google and Kijiji app which I hate because that always makes me feel like I have no privacy. And it's the same ads posted over and over again.. if your gonna breach my privacy at least keep me entertained.",CA,4,2017-06-30,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +r/KnightsOfPineapple,Finally made it to r/all!!!,CA,5,2017-06-30,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Good app,Good app,US,5,2017-06-30,71,355.0,"(70.0, 75.0]","(350.0, 375.0]" +Fills my days with joy,Title says it all.,CA,5,2017-06-30,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +For all my on-the-go needs,"Intuitive to use, easy to manoeuvre between pages. I don't use that many features though so it works fine for me, but may not have full abilities like the browser version.",SG,5,2017-06-30,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great!,Pretty much the best,US,5,2017-06-30,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Functional and clean...,Does what it needs to well 😀,US,4,2017-06-30,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Great,Barrels of fun,GB,5,2017-06-30,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +Go to all,You can spend hours on this app!,US,5,2017-06-30,58,174.0,"(55.0, 60.0]","(150.0, 175.0]" +great,enjoy,JP,5,2017-06-30,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +Reddit is sexy,Reddit is sexy,SG,5,2017-06-30,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Social media for intelligent people,Love it!,CA,5,2017-06-30,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Good App,Does what it says.,US,5,2017-06-30,55,275.0,"(50.0, 55.0]","(250.0, 275.0]" +Love,"it. + +Edit: I'm going to take away a star for every time the app asks me to review it, after I have already reviewed it. + +Edit 2: just asked again. I took another star away. I wasn't kidding Reddit. I'm a man of my word. + +Edit 3: asked again. You're apparently not taking me seriously. Took another star away.",US,2,2017-06-30,6,30.0,"(5.0, 10.0]","(25.0, 50.0]" +Great App!! I LOVE IT 👏🏾,"I love using this app, gave me a new sense to life, you can say",US,5,2017-06-30,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +Pretty good,Would be better if gifs loaded properly,US,4,2017-06-30,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Nice 👍,Nice :),SG,5,2017-06-30,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Gr8 m8 lol,Hehehe,US,5,2017-06-30,100,200.0,"(95.0, 100.0]","(175.0, 200.0]" +Pretty great,Yeah,AU,5,2017-06-30,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +I love,The app has all...very good,BR,5,2017-06-30,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Killer,Short and sweet : it's wicked.,US,5,2017-06-30,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +Review of Reddit,Reddit's Review,SG,5,2017-06-30,8,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Absolutely brilliant!,"Loads fast, super intuitive and way better than the Android app!",US,5,2017-06-30,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Works well enough.,"No major issues. The swipe features could be improved. Accidental swipes, cause you to rescroll through old content again.",AU,4,2017-06-30,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +Very good,Very good,BR,4,2017-06-30,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +Fantastic.,Get rid of the notifications though.,AU,4,2017-06-30,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +Good,The best app in the WORLD,PL,5,2017-06-30,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +5 star - let us add flairs via app,Only really here because it kept asking me to give feedback.,GB,5,2017-06-30,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +Love it,Amazingly entertaining,US,5,2017-06-30,3,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Mobile App > Website now. Highly recommended.,We used to search for third party solutions but now Reddit native app itself is super.,US,5,2017-06-30,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Great app.,Does what it needs to.,AU,5,2017-06-30,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +I'm coming around,Hated the new app at first since alien blue was my go to. But I'm starting to come around.,US,5,2017-06-30,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Bae goals,Love i,US,5,2017-06-30,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Better than the website,It might not have 100% the functionality the website does but it's much easier to use and displays the content in an uncluttered and clear style,GB,5,2017-06-30,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +r/5starz,Good,US,5,2017-06-30,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Really good,This app is great. I recommend it a lot.,GB,5,2017-06-30,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Yep,US,5,2017-06-30,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Savage,Easily the best app,US,5,2017-06-30,10,30.0,"(5.0, 10.0]","(25.0, 50.0]" +Works really well!,"As a mobile version of Reddit, this is a great app. Wish there was an option to have a limit to posts as an alternative to the infinite scroll.",CA,4,2017-06-30,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Love it!,It's avoid way to browse reddit.,US,4,2017-06-30,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Stop asking for ratings all the time!!,Just stop it.,DK,1,2017-06-30,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +perfect pick me up,honestly as an app itself it's nothing mind blowing but reddit as a site is so wonderful and uplifting that the app deserves all the stars for giving us easy to use access to this world of wonder,US,5,2017-06-30,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Love this app,Best app out there would recommend it! I'm a happy user for Reddit.,US,5,2017-06-30,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +Great love It,Be careful not knowing the new features. Karma is a B****,US,5,2017-06-30,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Reddit,Reddit good,US,5,2017-06-30,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +"Only doing it to stop the pop up, but it's good",It's fine,CA,4,2017-06-30,22,110.0,"(20.0, 25.0]","(100.0, 125.0]" +Ya,Yea ya,US,5,2017-06-30,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +Awesome,it's super easy to navigate,MX,5,2017-06-30,31,62.0,"(30.0, 35.0]","(50.0, 75.0]" +Ultimate mind number,The internet in all its glory at your fingertips.,US,5,2017-06-30,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Great App,Great app for watched Reddit subs. Nice and simple to use,AU,5,2017-06-30,87,261.0,"(85.0, 90.0]","(250.0, 275.0]" +Für Gamer unverzichtbar,Wenn man mal wieder vergessen hat wie ein Endboss zu töten ist oder sich einfach nur austauschen will. Un ver zichtbar!!!,DE,5,2017-06-30,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +Ya,Ya,US,5,2017-06-30,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +I spend too much time on this,Addictive,CA,5,2017-06-30,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Good stuff,It's nice to have a place where the good content outweighs the bad content (by bad I mean the sad and ugly side of humanity.),US,5,2017-06-30,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Goodnight,"Good stuff......they wanted me to rate and wouldn't stop bugging, five stars cause it doesn't annoy me like Facebook.",US,5,2017-06-30,76,228.0,"(75.0, 80.0]","(225.0, 250.0]" +Meeeemeees,MEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEMEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEs!,US,5,2017-06-30,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Hard to compete,"When it comes to Reddit it's hard to find a good application, of course theirs is better than others, but I'm tired of being asked to rate and review the application, so hopefully this stops the prompts.",US,4,2017-06-30,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Addictive,"You can browse, comment, post, troll and pretty much be as curious and smart and stupid as possible. + +Tons of interesting and funny crap to waste countless hours of your life.",US,5,2017-06-30,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Good,"Job gets done not too bad of a set up, prefer narwhal better but it's whatever",US,5,2017-06-30,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Awesome way to explore,Have been part of Reddit for 11 years now.. it's getting better and better everyday,US,5,2017-06-30,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Very funny,Reddit is a place for the funniest or even weirdest people to be. Your missing out if you don't have this app!,US,5,2017-06-30,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great app,Works fine for me,DK,5,2017-06-30,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Stop with the pop up,Stop with the pop up,US,5,2017-06-30,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Late night entertainment,Great,GB,5,2017-06-30,3,9.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love,I love it.,US,5,2017-06-30,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +The best,This app is better than instagram and snapchat combined,US,5,2017-06-30,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Truly is my favorite app,"Reddit offers very unique and otherwise undiscoverable content. There is really nothing to complain about. The system of up votes and down votes, allows for a everyone's opinion to count. I personally love the idea of staying completely anonymous if you choose. If I had to find one thing to improve I'd say layout, but really deserves 5 stars.",US,5,2017-06-30,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +Very fun,Focuses on the topics unlike twitter and Facebook where it's all about the people and what's in their profile pictures. Everyone is equal in Reddit,GB,5,2017-06-30,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Cool,Cool,US,5,2017-06-30,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +"#include ""review.h""","int main() +{ + Review review; + int stars = 5; + review.setStars(stars); + + cout << ""Reddit is the best, and + anyone who says otherwise has a + different opinion than me.\n""; + + return 0; +}",US,5,2017-06-30,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Rockin',"It's like ifunny, but for adults!",US,5,2017-06-30,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +Really love it!,The format is very simple and easy to follow.,US,5,2017-06-30,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Well designed,The app is well designed to equip user to enjoy all features of reddit. The night version is especially great.,IN,5,2017-06-30,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Good stuff,"Reddit is great, but the app needs some work.",US,4,2017-06-30,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +Simple and intuitive,Great app,US,5,2017-06-30,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Great App,"This is my new favorite social media, its simple but fun.",US,5,2017-06-30,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Nice app,Reddit is best!,CL,5,2017-06-30,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +yeah!,not much to say other than the people at Reddit did a great job shifting platforms. thx!!,US,5,2017-06-30,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Justin Edwards,Reddit is awesome!,US,5,2017-06-30,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +_______,_______,US,5,2017-06-30,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Replaced my social media,"I deleted my facebook and was looking for something to fulfill my browsing habit. The Reddit website left me wanting, but the app did not disappoint.",US,5,2017-06-30,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Ruining my life one post at a time!,"If this site and app didn't exist I could possibly have my life together, make better decisions, and have time to improve my performance at work, and maybe even go to a gym once in a while. Thank goodness it does!",CA,5,2017-06-30,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Bye Facebook,This is my new obsession,US,5,2017-06-30,76,228.0,"(75.0, 80.0]","(225.0, 250.0]" +Good,Great,CA,5,2017-06-30,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +Love me some Reddit,"Great platform. Always love Reddit. Obviously investigate at your own risk, but this is the true front page of the internet. Why waste time with MSM when you can read all of their stories firsthand from primary sources. Anyone not reading Reddit is at a true disadvantage when looking for actual media and public opinion",US,5,2017-06-30,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Very good!,"Not as easy to navigate on the computer, but is very close.",US,4,2017-06-30,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Seemless amazing app.,I don't ever take time to review apps. This one deserves it.,US,5,2017-06-30,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Gr8 10/10,Would download again,US,5,2017-06-30,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +It's reddit. It's awesome,Reddit enough said,US,5,2017-06-30,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Okay - Can be more intuitive.,"Navigation could be improved. +The way we save pages or the tabs aren't really my thing. It isn't as intuitive as I thought it would be. But definitely usable.",CA,4,2017-06-30,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +Love t,I love it,US,5,2017-06-30,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Love it,It's hard to critique something that makes you smile every day but wish the posts you see go to the bottom instead of having to scroll through the same ones every time I close out & go back into the app.,US,5,2017-06-30,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +My news!,"News that I want to read, not all the other stuff in the world that doesn't interest me.",US,5,2017-06-30,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +nice!,"works well, has all the features from the website and a bit more, the style is pleasant, minimal ads that don't dominate the screen, i love it",US,4,2017-06-30,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Dank,AF,DK,5,2017-06-30,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Love it,Just love it,US,5,2017-06-30,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Zippy,It's fast and functional.,US,5,2017-06-30,78,390.0,"(75.0, 80.0]","(375.0, 400.0]" +Some pretty good memes,But buzzfeed is taking over r/dankmemes so they aren't the greatest right now.,US,5,2017-06-30,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Reddit Loveit,"If you want to find a way to aimlessly scroll through the internets most fascinating content then you came to the right app +(Goes back on to reddit for another few hours)",US,5,2017-06-30,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Dank,The only place to find fresh dank memes rate it 🅱️/10,IT,5,2017-06-30,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Fantastic,US,1,2017-06-30,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +Ultimate source for help,"I don't think I've written a review for an app for about 8 years... Well this deserves one. No matter what question you have, you get answers from any type of person in any field. The community is really kind and helpful, very responsive, and always gives 100% into there responses. I mean, just download the app. You use if you need it and don't use it if you don't need it. Plus it's free. What's not like to like?",US,5,2017-06-30,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Great App For A Great Site!,I'm a die hard Redditor and this app has a very user friendly layout and honestly couldn't be any easier to navigate! 5/5 would mobiley Reddit again. Haha.,US,5,2017-06-30,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Good For Mobile,"I like that this app has really brought reddit into the modern apps category, but it's content is more filtered than if I went on my desktop. I wish I could see all of the posts that I see in a browser that I do in this app.",US,4,2017-06-29,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +Reddit changed my life!,One of the best communities out there. Must have app!!!,US,5,2017-06-29,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +The one necessary app,"Reddit is my everything. News, memes, cats, cars, lulz, food, life, etc.",US,5,2017-06-29,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Rate,"Make the rating button more viewable.. Otherwise, great app :)",NO,5,2017-06-29,71,284.0,"(70.0, 75.0]","(275.0, 300.0]" +Rad,iCal,US,5,2017-06-29,98,294.0,"(95.0, 100.0]","(275.0, 300.0]" +Awesome,First and fave,US,5,2017-06-29,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Super,Love the app!,US,5,2017-06-29,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +Surprisingly good,"I have started using this just recently after getting a new tablet and discovering the Biscuit app I used on my old tablet was no longer available. I tried few other third party apps, but this one had the best and easiest to understand UI, better than the web actually. We have to see if the developers will continue improving it (There are many reviews from pointing out flaws, some cosmetic, some more serious.) But overall this is really good effort and has the potential to become best-of-a-kind as long as the development continues at steady pace.",US,4,2017-06-29,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Good stuff!,Gimme some a that goooood stuff,US,5,2017-06-29,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +Reddit is wicked!,Reddit is great man! Lets you chat to so many kindred spirits around the world! Whats not to like!,GB,5,2017-06-29,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +"Generally great, but too many ads.","Yep, good app, enjoy using. But WAY to frequent and repetitive adverts. Super annoying.",GB,4,2017-06-29,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +Great app.,It does exactly what you want it to. No complaints.,US,5,2017-06-29,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Does what it should,Great app.,CA,5,2017-06-29,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +Reddit,I read it on Reddit.,US,5,2017-06-29,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Good,I like,CA,5,2017-06-29,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +gg,superb app,GB,5,2017-06-29,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +App,It's an app,US,5,2017-06-29,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Neat,It's pretty neat!,US,5,2017-06-29,31,31.0,"(30.0, 35.0]","(25.0, 50.0]" +Nice,It really is.,US,4,2017-06-29,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Reddit,Love it,DE,5,2017-06-29,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +The gateway to the internet,"Great app, I rate it 5/7, a perfect score.",US,5,2017-06-29,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Love Reddit,Great app. But can you add support for iOS 7?? Not everyone has a new phone. Thanks!,PH,4,2017-06-29,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Fantastic!,My friend recommended this to me a couple months ago and since then I have become addicted to it. It is a great way to really learn things on a specific topic and just have fun with the community that contributes to said topic. THUMBS UP!,US,5,2017-06-29,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Great,"Daily user, everything I need here",GB,5,2017-06-29,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +"The apps fine, it just keeps pestering you for a rating","I moved over when alien blue stopped being well supported. The app is official and works fine with occasional crashes but nothing terrible. + +I do however dislike the regular pestering for a rating. If it was revolutionary I'd have been happy to extend a positive rating, however it's just good enough. Once or twice is fine, but it's requested a rating many more times now and I believe ratings should be relatively organic.",US,3,2017-06-29,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Reddit is awesome,Reddit and this app are awesome. The end,US,5,2017-06-29,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Love it,So great,US,5,2017-06-29,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Solid but could be better with RES,Significantly better than browsing mobile site. If they add features from RES (e.g. tagging usernames) it would be exceptional.,US,4,2017-06-29,8,32.0,"(5.0, 10.0]","(25.0, 50.0]" +Worthwhile,Runs smoothly with no bugs. Good stuff.,US,5,2017-06-29,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +addict,been redditing for 6 years and still addicted as ever,US,5,2017-06-29,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +My favorite app,👍👍👍,US,5,2017-06-29,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Reddit is good,I highly recommend visiting r/dankmemes,US,5,2017-06-29,72,288.0,"(70.0, 75.0]","(275.0, 300.0]" +Ayyy that's pretty good,It's delectable,US,5,2017-06-29,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +Another essential app IMO,"The Reddit app is by far the one I use the most. It's the only app that keeps me up to date on politics, lets me find adorable animal gifs, and leave me stifling my laughter during down time in the office - all with lightning fast performance and a clean UI. Seriously, it's top notch.",US,5,2017-06-29,31,155.0,"(30.0, 35.0]","(150.0, 175.0]" +Review,AMAZING 11/10,CA,5,2017-06-29,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Reddit ✌🏻,Awesome.,GB,5,2017-06-29,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Love it!!,Use it every day!!,CA,5,2017-06-29,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +Great Reddit App,This is the best reddit app for the iPhone,CA,5,2017-06-29,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Great app,Very good app. Which it has a view where it shows all the posts feom the redits your are following.,US,5,2017-06-29,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +A great app,It's good if you play games and need some tips pick this app up,US,5,2017-06-29,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +5/5 such subs such wow,r/bananamals,US,5,2017-06-29,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Very good app,Title,PT,5,2017-06-29,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Delightful,That's it. It's just delightful.,US,5,2017-06-29,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +No 🅱️ormies,if you use anything other than twitter and Reddit you are a normie,US,5,2017-06-29,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good app runs smoothly,Good app,US,5,2017-06-29,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,"Great app, great content, the users are dicks though",CA,5,2017-06-29,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Redditors love it!,Me too!!,DE,5,2017-06-29,42,84.0,"(40.0, 45.0]","(75.0, 100.0]" +Great App,great client for reddit,PT,5,2017-06-29,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Love it,Real good,GB,5,2017-06-29,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Great!,Cool beans,US,5,2017-06-29,82,164.0,"(80.0, 85.0]","(150.0, 175.0]" +Wirklich gut aber ohne Werbung wäre es besser,Wirklich gut aber ohne Werbung wäre es besser.,DE,5,2017-06-29,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Love it,Love the app,US,5,2017-06-29,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +Reddit,There really isn't anything else to say about it.,CZ,5,2017-06-29,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Great app,Love R/dankmemes,US,5,2017-06-29,31,124.0,"(30.0, 35.0]","(100.0, 125.0]" +You know why I'm here,Memes,US,5,2017-06-29,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Works well,But it is a little slow when you are watching a video.,US,4,2017-06-29,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +BEST App,"Dude, 5 stars all the way forever!!!",US,5,2017-06-29,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +Great,Bestest app in the world and in space,MT,5,2017-06-29,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +Better than most social media,"I've been using Reddit for about a year now, and it's ok. +It's better than FB or other social media sites. +There is still a lot of fake news going around, but luckily people usually get called-out when they post BS. +Many subs do not promote truth though, and it is easy to get banned for pointing out errors. There are lots of one sided subs. +There are also lots of trolls, mostly from under the bridge of r/the_Donald. But if you don't take their bait, they crawl back into there holes soon enough. +Oh yeah, karma means nothing, but Gold is where it's at.",US,3,2017-06-29,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Very entertaining,"Have learned all sorts of random stuff and if I'm having a bad day, watching a piglet eat a watermelon cheers me up no end. So, no complaints.",GB,4,2017-06-29,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +Great!,Great ap,GB,5,2017-06-29,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +Great for passing time 😄😄,Love it ❤️❤️❤️❤️,BE,5,2017-06-29,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Love it!,Search function stinks. But that's what google is for I guess.,US,5,2017-06-29,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +Trick rating prompt,No No nooo,DK,1,2017-06-29,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app for daily catch-up of all my news,Thanks for the best app out there,GB,5,2017-06-29,31,93.0,"(30.0, 35.0]","(75.0, 100.0]" +Great,Awesome,MX,5,2017-06-29,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Good,Enjoyable waste of time,GB,5,2017-06-29,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Ok app,"But the in-dismissible ""Rate Me!"" Pop up gets you one star. + +Also you're still not as good as Alien Blue was before you killed it.",CA,1,2017-06-29,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Great,Great app,US,5,2017-06-29,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Sweet app,It's very gud,CA,5,2017-06-29,45,225.0,"(40.0, 45.0]","(200.0, 225.0]" +My life,Without reddit I am nothig,CA,5,2017-06-29,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +Great,Please make it more obvious how to add a top level comment,US,5,2017-06-29,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Very entertaining app,What else is there to say!,US,5,2017-06-29,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Pretty good,"The feature for new users that severely restricts them in how much they can post and comment is annoying, but the rest is good.",US,4,2017-06-29,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Top,Best internet community,ES,5,2017-06-29,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +Stop prompting to enable notifications,That is user hostile behaviour,CA,1,2017-06-29,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Good 👍🏼,"Not a fan of the lousy reasons my posts sometimes get removed from a thread, but overall the app is good.",US,4,2017-06-29,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Dank,Dank,FR,5,2017-06-29,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +Sudden problems logging in.,I can no longer log into any of my Reddit accounts on the app after this recent update. Is anyone else having this problem. I hope this is fixed soon.,US,5,2017-06-29,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +My favorite social media app,It's great for bonding with your weird friends and truly expressing your hidden personality.,US,5,2017-06-29,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Gud,Ye,US,4,2017-06-29,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Sexy as hell,Great bb,CA,5,2017-06-29,86,86.0,"(85.0, 90.0]","(75.0, 100.0]" +"Top, bis auf Werbung",Aber Finanzierung muss ja sein.,DE,4,2017-06-29,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Works well!,Very user friendly.,CA,5,2017-06-29,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Great App,"This app has an enormous community and has a billion smaller ones within it. All of the communities that I have encountered, which was quite a lot, are extremely nice and knowledgeable in the topic that was asked. There's so many communities to fit your own personality and to meet people who might just be the same way! Great front page allows you to see trending things among the most popular subreddits and maybe even expose you to new ones you never knew were there. Excellent app and even more awesome people. Good job.",US,5,2017-06-29,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +Formatting is broken,"It doesn't have intrusive ads (the reason I abandoned BaconReader), but comment formatting is seriously broken. Markdown works on the desktop site, why does it not work on the official app?",US,3,2017-06-29,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +It's lit fam,Yeet,US,5,2017-06-29,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +This replaced all the apps I used to stay informed!,The title says it all!,BG,5,2017-06-29,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +Awesome.,Everything is perfect except perhaps the search feature.,CA,5,2017-06-29,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Asks if I wanted to rate it too often,Alright,US,3,2017-06-29,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Life changing,This app changed my life.,US,5,2017-06-29,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Great app,I start my mornings off reading Reddit!! Love it!😀,US,5,2017-06-29,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Pretty Good,"5/7 with rice + +Edit: Reddit won't stop asking me to rate the app + +Edit2: hmmm, I have returned to this fateful place + +Edit3: Deja vú + +Edit4: Back Again + +Edit5: res + +Edit6: *cough*",US,5,2017-06-29,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +🅱️oneless 🅿️izza,🅱️roovy,CA,5,2017-06-29,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Najisgt,Inte så illa,SE,5,2017-06-29,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Eat it,Tastes great,US,5,2017-06-29,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Really nice and easy to use,I love this app!,US,5,2017-06-29,87,261.0,"(85.0, 90.0]","(250.0, 275.0]" +"You're good, stop asking me to rate you!",O_O,US,5,2017-06-29,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Great App,Solid app and great experience so far,US,5,2017-06-29,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Needs Gold Features For App,"No Gold features, more ads, used to be a great app. Seems to be Ad-revenue driven after recent updates. Contestant notifications. Unable to to switch between other account(s) without freezing entire app on iPhone 6.",US,1,2017-06-29,73,365.0,"(70.0, 75.0]","(350.0, 375.0]" +Reddit rules!,I resisted trying any social media the last couple of years after having a bad taste left over from Twitter experience but so far I love the targeted topic approach of Reddit and this app has been working great for me thus far.,US,5,2017-06-29,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Finally caught up to alien blue,Since Alien Blue won't log me in so I switched,US,5,2017-06-29,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +Awesome,It's reddiit on your phone. Much awesomeness,CA,5,2017-06-29,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Top!,Top!,DE,5,2017-06-29,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Almost perfect,"You know what Reddit is. +This app makes it mobile-friendly. +Playing videos can sometimes be slower than hell, for some reason. +I can switch to the YouTube app and play the linked video instantly, but the Reddit app takes minutes to load the same video. It's odd. + +Worth a download.",US,4,2017-06-29,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +Excellent,Fantastic app for the best website on the internet.,US,5,2017-06-29,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Really good.,I like it.,US,5,2017-06-29,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Find a community you enjoy,Great app; great social media to find a group of people or interest or hobby that you enjoy. 10/10 with rice,US,5,2017-06-29,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +Pretty dang good,Works great,US,5,2017-06-29,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Great app,Love it,US,5,2017-06-29,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Great!,Great!,CA,4,2017-06-29,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Lol,"Love it, you see some funny and interesting things on here",US,5,2017-06-29,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Great app,Easy to use and navigate,CA,5,2017-06-29,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Leftist Garbage,"Reddit suppresses conservative views and forces leftist views on users. Go to r/The_Donald and join the best community on the internet. And make sure you unsubscribe from r/TwoChromosomes. Reddit forces you to subscribe when you open an account. It's a cesspool of sad, depressed feminists. Pages like r/Politics are 100% propaganda pages for left wing policy. The page is monitored by bots and any comment that goes against the narrative being pushed is down-voted into oblivion. Just get the app and go to r/The_Donald.",US,1,2017-06-29,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Great app,Works as expected.,CA,5,2017-06-29,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Every day all day,CA,5,2017-06-29,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +Works great.,The app works great. Leaving this review because I'm tired of the app asking me to review it.,US,5,2017-06-29,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +An amazing app,I recently discovered the world of reddit and this app is now one of my most used. It's very quick and easy to access anything you want. Highly recommend.,CA,5,2017-06-29,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Easy to use,good,TW,4,2017-06-29,26,26.0,"(25.0, 30.0]","(25.0, 50.0]" +Entertaining,Never run out of things to read or watch,US,5,2017-06-29,76,380.0,"(75.0, 80.0]","(375.0, 400.0]" +Great app!,"Love the way the contents are presented. This is one app, I visit everyday!",LK,5,2017-06-29,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +おすすめ,英語を出来るなら必須!,JP,5,2017-06-29,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Yesss,Le meilleur moyen pour procrastiner !,FR,5,2017-06-29,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +GOAT,"What is Gordon Ramsey's favorite subreddit? + +Is F*cking r/aww",US,5,2017-06-29,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Good app,Nice little app!,US,3,2017-06-29,18,90.0,"(15.0, 20.0]","(75.0, 100.0]" +A lively community!,People here are very pleasant. Enjoy!,CN,5,2017-06-29,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +LPT,Real life pro tip is always in the comments.,US,5,2017-06-29,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +Great app!,I recently joined the Reddit community and love being able to access the forum on my phone. It makes it so much easier to interact and engage with like-minded people. Definitely my most used app at the moment.,US,5,2017-06-29,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +"Great app, works as it should",Great,GB,5,2017-06-29,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +I'm only writing this so Reddit stops asking,K thanx bai,GB,5,2017-06-29,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Such a good app,"Sah good, my only gripe is the app constantly asking me to give it a review.",US,4,2017-06-29,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +So glad there is an official app!,Love it,US,5,2017-06-29,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Works correctly,It's ok,PL,5,2017-06-29,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +Cool App,"Everything works and looks good. Images/GIFs and videos seem to load faster than on the old app. + +What is missing is a fast access to the save feature (like on the old reddit app).",CH,4,2017-06-29,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Love it!,Wasting time is easier than ever,CA,5,2017-06-29,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Great app,Use it everyday and love it.,US,5,2017-06-29,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +Любимое приложение,"Топовая штука для залипания и траты времени +Реддит ван лав",RU,5,2017-06-29,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Reddit censors groups over political ideology,"I'm giving this site/app a 1 star for it's extreme censorship. The subreddit The_Donald is censored, while left wing subreddits are left untouched and free. Upvotes have even been manipulated to keep popular stories from trending. They give the guise of free discussion, while hypocritically censoring the political opinions they do not agree with. + +Either all should be free or no one is truly free.",US,1,2017-06-29,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great site : Great app!,"Solid built app, easy to use and intuitive, brings a lot of the functions from the desktop site to your smart devices.",CA,5,2017-06-29,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +So lit 🔥🔥😫😤,Reddit ist richtig lecker,DE,5,2017-06-29,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +HMB OP TIL this is a good app,"HMB OP TIL TIFU PS +don't know what this means? + +Use this app and you'll be happy when you figure it out!",US,5,2017-06-29,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Very useful app!,Great way to trade online for RL,OM,4,2017-06-29,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +My favourite procrastination tool,This app helped me fail my a-levels. Thanks Reddit!!,GB,5,2017-06-29,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +"Great app, much fun",Love it to death,CA,5,2017-06-29,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Good,Great and entertaining,CA,4,2017-06-29,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +The best Reddit app,The one I use anyway,US,5,2017-06-29,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Great work!!,"Just need to add auto night mode base on time input (i.e. 10pm-4am) not only via location, since most of the users don't need location on all the time",PH,4,2017-06-29,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Awesome,Awesome,US,5,2017-06-29,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Соол,Кул,BY,5,2017-06-29,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Great app,It's been very stable and fun. Thanks Reddit,US,5,2017-06-29,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +Nice,Great,AU,5,2017-06-29,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Yah,Good,US,5,2017-06-29,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Nice!,Reddit everywhere,BR,5,2017-06-29,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Evo kad baš tražite uporno,Agresivno davljenje da se uključe notifikacije i ocijeni aplikacija.,HR,1,2017-06-29,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Great app,"Easy to use, much better than the website, and has lots of good content",SG,5,2017-06-29,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Yes,Yes.,DK,5,2017-06-29,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +My go to app,"I love it, you can learn, laugh, aww, and cry at the content. And a really cool community too.",GB,5,2017-06-29,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +"Good app, Reddit is always a wise decision",Like good beer,US,5,2017-06-29,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +👍,"Ребят, всё супер, только верните оранжевый логотип, а не синий, пожалуйста!)",RU,4,2017-06-29,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Eh.,"It's cool and all, but I'm only writing this review to get the app to stop harassing me to review it.",CA,4,2017-06-29,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Good stuff,Good job!,US,5,2017-06-29,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +Awesome app,"Lots of fun stuff to look at and explore. People help people. Porn to technology to explain it to +Me like I'm 5. Cool stuff and cool people.",US,5,2017-06-29,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Works great,I like it.,US,5,2017-06-29,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +Great time killer,"My feed updates significantly once per day, so I am redditing instead of reading a morning newspaper.",US,5,2017-06-29,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +Great!,Still new to it but reddit has a depth to it that keeps sucking me in. And I always see news first on reddit way before any other app.,AU,5,2017-06-29,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Excellent time burner,Keeps me sane,US,5,2017-06-29,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Horrible new color,Don't even know what's the point of having a grey color as background upon Reddit startup,MY,3,2017-06-29,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Godlike,Real good app,US,5,2017-06-29,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Fine,One of my most frequented apps.,CA,5,2017-06-29,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +🤖,Best social app ever created,RU,5,2017-06-29,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Great! But...,"It is a great app to waste time and learn things, however a few of the forums have got annoying rules that make it impossible to contribute at an early account age/level.",GB,4,2017-06-29,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Yes,Yes,US,5,2017-06-29,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Great app but does have its bugs,As above,AU,4,2017-06-29,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Wonderfully unique culture,It's the best of the internet without having to deal with mom making status updates and pictures of redneck guy from high schools kid collection.,US,5,2017-06-29,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Love Reddit,App is easy to use and navigate... thanks Reddit! Best message board out there.,US,5,2017-06-29,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Censorship &a playing favorites,I find Reddit's censorship of particular communities on account of political agendas to be disgusting immoral and un-American,US,1,2017-06-29,49,147.0,"(45.0, 50.0]","(125.0, 150.0]" +A+ app,You read it,US,5,2017-06-29,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +It's a Reddit app,They keep harassing me to rate the app so enjoy your rating.,CA,1,2017-06-29,33,165.0,"(30.0, 35.0]","(150.0, 175.0]" +Lurker special,Used safari for ages-moved to app and no ragrets 5/7 perfect score,US,5,2017-06-29,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Great great,Great:),AU,4,2017-06-29,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Great App!,"Use Reddit daily, the app is brilliant. (but they censor The_Donald which is pretty frustrating so take my 1 star)",GB,1,2017-06-29,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Yes,Do it,CA,5,2017-06-29,49,245.0,"(45.0, 50.0]","(225.0, 250.0]" +Awesome,Just like the website you can enjoy post and be in community's all straight from your mobile device,US,5,2017-06-29,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +Yep,Darn good app,US,5,2017-06-29,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Superb,Ablsolute great conversational application,US,5,2017-06-29,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Yup,So addictive and great.,US,5,2017-06-29,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Dankest,Dank memes all time of the day,US,5,2017-06-29,74,74.0,"(70.0, 75.0]","(50.0, 75.0]" +Love it!,Love it love it love it!,US,5,2017-06-29,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Dope,It's dope,US,5,2017-06-29,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Great Reddit client,Voila,US,5,2017-06-29,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Great app,"Seamless. Gifs and video play great, threads look great. Eat your heart out Twitter.",US,5,2017-06-29,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Download it. What are you waiting for?,This is an awesome app for an awesome site. Whatever you're into you'll find people that share your vision. Like shaving tomatoes? I beat you'll find a thread that will keep you happy!,US,5,2017-06-29,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Fantastic,This app truly could not be better,US,5,2017-06-29,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great Navigation!,I love the layout and simplicity of the App! Great design!,CA,5,2017-06-29,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +Amazing,5 star,US,5,2017-06-29,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Nice app,Reddit told me to rate the app although i already did a while ago so I'm here again editing my old review to say I still enjoy the app.,US,5,2017-06-29,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Super helpful,I was only on for 20min tops and i already got super helpful tips and great stories.,CA,5,2017-06-29,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Yes,Good. Have iPhone. Now I must go back,US,5,2017-06-29,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Amazing way to communicate,"I mostly use Reddit for Call of duty Zombies, and I've made a lot of friends in doing so, regardless of that, any other post I see are pretty cool and it can be a great way to find out what's going on in the world from people who are actually experiencing it, rather then some news outlet",US,5,2017-06-29,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Awesome,Very pleased with all of Reddit!,US,5,2017-06-29,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Yes,Yes,US,5,2017-06-29,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +Great App,"All around great app, has great communities where you can really learn about your interests, get involved with groups you enjoy, or try to take on new skills!",US,5,2017-06-29,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Software issue,"On my iPhone 7+ I open the app, go to messages tab, and the app crashes.",US,3,2017-06-29,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +I laugh,"I'm hoping that if I tell her I like her she'll stop asking me if I like her or ""not really.""",US,5,2017-06-29,8,32.0,"(5.0, 10.0]","(25.0, 50.0]" +挺有意思,朋友推荐了这个app~挺有意思的,CN,5,2017-06-29,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Great,"Great app, no bugs whatsoever and the content is very entertaining and intriguing",US,5,2017-06-29,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Awesome,Great app,US,5,2017-06-29,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Very good,All the conspiracy theory you'll ever need.,GB,5,2017-06-29,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Muito bom,"Bom para encontrar diversas coisas que pela internet são separadas e aqui acabam ficando determinados assuntos mais ""concentrados""",BR,5,2017-06-29,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +Wow great,This is great wow,US,5,2017-06-29,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +I could get lost here everyday.,It's just that good,US,5,2017-06-29,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +good app,noice,US,5,2017-06-29,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Best site/app ever,Front page of my needs!,US,5,2017-06-29,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Never Disappointed,"If you want intelligent conversation mixed with just the right amount of sarcasm, wit, and friendly banter Reddit is for you! A very open minded community with posters from all over the world. One of the most interesting places on the internet!",US,5,2017-06-29,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Fed app,Et download værd hvis du bruger Reddit.,DK,5,2017-06-29,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Needs improvement,Needs landscape mode and less obtrusive ads and notifications,US,3,2017-06-29,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +"Plants need love, too.","All around a well developed, solid way to interface with the reddit community. + +Some additions that would be nice: +•Allow app users to choose a ""flair"" tag that certain subreddits require for posting something. +•Color code the vertical lines which allow an app user to keep track of the comments and replies.",US,4,2017-06-29,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Almost as good as RIF,...before RIF broke itself and now this is the best app around,CA,4,2017-06-29,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Mejor app para reddit,Es la más cómoda de usar.,MX,5,2017-06-29,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Nice,🤙🏻,US,5,2017-06-29,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +Good App,as title,HK,5,2017-06-29,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +"My ""go to"" app.....love it!",:),CA,5,2017-06-29,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Greatest social media app,Best part about it is how specific it is honestly. Very rare amongst the other apps.,US,5,2017-06-29,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Simple reddit browser,A simple reddit browser that gets the job done.,MY,5,2017-06-29,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Great app!,Great app! Amazing community!,GB,5,2017-06-29,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Reddit is fascinating,"It can be whatever you need it to be - simple entertainment, learning how to cook, or looking at cute animals.",US,5,2017-06-29,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Good,US,5,2017-06-29,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +I spend way too much time on this,Hours have gone by much too quickly while reading stories way too late that make every noise in the house creepy. I love it,US,5,2017-06-29,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Go down the Reddit hole!,"I spend far too much time scrolling Reddit, and posting has become my guilty pleasure, but my life would be a lot more dull without it.",US,5,2017-06-29,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +It's 3am...,I should probably go to sleep...but scrolling is too fun...,GB,5,2017-06-29,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Overall good,I like to use,MY,4,2017-06-29,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +MAGA,Really easy to upvote everything in the r/The_Donald. Nice app,US,5,2017-06-29,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +Great app!,Really love it. Use it daily.,US,5,2017-06-29,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Awesome!,"Great app, now updated it feels slick and easy to use. Great stuff",CA,4,2017-06-29,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Ok application. Could be better.,"Basic application to consult Reddit. Don't imagine this app will change the way you use a Reddit webpage. They just did their homework, nothing more.",CA,3,2017-06-29,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +It's great,Thanks.,US,5,2017-06-29,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +REEEEE,This app lit ni🅱️🅱️a 😩😩😩😩💯💯💯💯🔥🔥👌👌👌👌👌👌,US,5,2017-06-29,99,99.0,"(95.0, 100.0]","(75.0, 100.0]" +Nice,Nice,CA,5,2017-06-29,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Good,👍👍👍,MY,4,2017-06-29,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +La red social,"Todo bien, cada vez me siento más en una red social pero funciona bien",MX,5,2017-06-29,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +OMG such funny app,"I go on Reddit for the LOL's. When I get super duper bored at work (neurosurgeon) i liek to browse this here app. Sometimes i hurt my side from laughing too hard at the funny pictures and comments that are posted. This app, in my opinion, marks the beginning of a human era. What that human era is i have no idea.",US,5,2017-06-29,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Great,Love it,CA,5,2017-06-29,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +👍👍👌👌,Its awesome,SG,5,2017-06-29,71,284.0,"(70.0, 75.0]","(275.0, 300.0]" +Works great,Hi I like this app I don't do much but look cat pictures and check out relationship drama but for that it works awesome so I'm a happy camper,US,5,2017-06-29,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Best for apple,Works well enough,AU,4,2017-06-29,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Best app ever created!,There's a subreddit for EVERYTHING it's amazing!,NO,5,2017-06-29,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Love Reddit,Love this app. Only downside is that I am so interested in the stuff on Reddit that I can't put it down.,US,5,2017-06-29,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Fun community & app works well,Love my subbies,CA,5,2017-06-29,92,368.0,"(90.0, 95.0]","(350.0, 375.0]" +Sick,Nasty,US,5,2017-06-29,16,16.0,"(15.0, 20.0]","(-0.5, 25.0]" +me⬆️irl,they'll upvote anything,US,5,2017-06-29,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +cool,not bad,AU,4,2017-06-29,47,188.0,"(45.0, 50.0]","(175.0, 200.0]" +Classic,It's reddit,US,5,2017-06-29,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Great app,The posts are always interesting,US,5,2017-06-29,49,245.0,"(45.0, 50.0]","(225.0, 250.0]" +Beast,Greatest,US,5,2017-06-28,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great content. Good warning system for mature content,I like this app for its convenience. Thanks!,US,5,2017-06-28,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +I'm not sure what I would do without it.,Seriously.,US,5,2017-06-28,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Great community,"Love Reddit and the app. A little difficult to track messages, but overall a great way to browse.",US,5,2017-06-28,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Love it,App lets me browse and post on Reddit. No muss no fuss. Clean interface is easy to read.,US,5,2017-06-28,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Good enough,A great app for daily and heavy use. Would appreciate the ability to add enhancements,US,4,2017-06-28,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Awesome,Awesome,US,4,2017-06-28,22,110.0,"(20.0, 25.0]","(100.0, 125.0]" +Great minus the fact it keeps asking me to review,"Let's hope reviewing this makes the app shut up about giving it a review. + +Edit: +3 asking for rating",US,4,2017-06-28,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +WOOOooooooo,"M U C H R E V I E W + +VVVV G O O D",US,5,2017-06-28,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +Gotta love it,I love redit and I love this app,US,5,2017-06-28,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +What was missing in my life,Better than 9GAG,PT,5,2017-06-28,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Bug,"It's fine, but I have a notification flag that won't go away despite not actually having any new notifications and keeps coming back after I dismiss all. It's annoying.",US,2,2017-06-28,3,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Not as good as it should be,"There are a couple of key features of Reddit that the app doesn't have, like multi subreddits and r/random. The app feels unfinished.",US,3,2017-06-28,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Great app,"Great app, something for everyone",IE,5,2017-06-28,90,450.0,"(85.0, 90.0]","(425.0, 450.0]" +Great app,Reddit.,US,5,2017-06-28,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +I like it!,Easy to use!,US,5,2017-06-28,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +Works great!,"Only thing I find that I don't like is that the developers have decided to exclude nsfw posts/subreddits which I think is kinda excluding some things that I find to be quintessential to the Reddit community, other apps like antenna are good for circumventing such inconveniences though. 7 out of 10",US,4,2017-06-28,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Really impressed by mobile version.,I prefer mobile to the desktop. I'm like 7-8 years into Reddit and I still find new stuff all the time.,US,5,2017-06-28,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +ppe btw lel xd,veriey good appe,US,5,2017-06-28,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +Mo boeno,Mo boeno,AR,4,2017-06-28,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Speak softly and carry a big stick,Speak softly and carry a big stick,US,5,2017-06-28,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +Fun way to Procrastinate,"Better then 9GAG for reasons 😏, good lay out and categories, I enjoy the community on most subs",AU,4,2017-06-28,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it!,Love it,GT,5,2017-06-28,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Love it,Wish I knew about the official Reddit app a long time ago! Best app ever,US,5,2017-06-28,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Reddit is good,They asked me to rate them and it's good enough to make me do it,NO,5,2017-06-28,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +Haven't used Reddit in years...,The app makes it really accessible and easy to make a new account :),GB,5,2017-06-28,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Da bomb,Toats the best app,US,5,2017-06-28,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +this is a title,sick reddit thing bros. can u stop asking me to rate the mobile app now plz...very annoying. fanks. peace.,GB,5,2017-06-28,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +It's good,I'm only writing this review so Reddit will stop asking me to,US,5,2017-06-28,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Handy tool,Really helps with not needing to be at my computer to respond to comments on post. Runs great and looks great.,CA,5,2017-06-28,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +Yay reddit,Love it I can find all my fandoms and kinks and favorite things on here. Great online community,US,5,2017-06-28,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Great except for the fact I already rated and it's still asking me to rate again,Bsyshendidlshshs e dhddjeje e ehsjdudj,CA,5,2017-06-28,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +10/10 would get again,Good....very good,US,5,2017-06-28,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +Super,Sehr gut gemachte App.,DE,5,2017-06-28,73,219.0,"(70.0, 75.0]","(200.0, 225.0]" +Stop asking me to rate the app,"I miss a fair amount of gifs and media content with no option to open in a browser. +Also, I'd love it if the app stopped asking me to rate it. Do that and I'll give it 4 stars.",US,1,2017-06-28,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +La adoro,La mejor forma de perder el tiempo antes de dormir. Puedes estar horas enganchando a cosas interesantes!,ES,5,2017-06-28,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Awesome App,5 star app,NG,5,2017-06-28,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Almost prefer the mobile app,Over desktop. Minus having the RESreader plugin. Great App,US,5,2017-06-28,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Good stuff,Review,US,5,2017-06-28,3,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app! Easy to use,Very intuitive and great UI.,US,5,2017-06-28,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Flawless,Works better than actual Reddit,GB,5,2017-06-28,50,150.0,"(45.0, 50.0]","(125.0, 150.0]" +La mejor red social,"Reddit ha sido el mejor descubrimiento de todos, la mejor red social que existe. Además la app va súper fluida y es muy intuitiva de usar. 10/10",ES,5,2017-06-28,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +H3H3Productions,They brought me to papa's house (Reddit) and it is pretty good go to crappy design for a quick goof,US,5,2017-06-28,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +So far so good,"I use this for a few fashion and gentlemen's sub reddits,on stuff like straight razor shaving, and so far have had noting but good experiences.",US,5,2017-06-28,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Great,Hours of entertainment,CA,5,2017-06-28,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +My best daily app,"I use this app every day, all day.",US,5,2017-06-28,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +love it,😍😍😍😍,RU,5,2017-06-28,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +10/10 very good app,Recommend for everyone!!! And this app is very easy and fun to use!,US,5,2017-06-28,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Reddit is the best platform for everything under the sun,Easiest 5 stars of my life,SG,5,2017-06-28,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +I love Reddit!,I get to read tons of people's experiences. It's totally anonymous as you want it to be.,US,5,2017-06-28,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Really easy to use.,It is really easy to use and it makes keep coming and opening the app and seeing if someone posted something new.,US,5,2017-06-28,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Yes,Nbn,US,5,2017-06-28,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +Great app,Easy to use and navigate.,US,5,2017-06-28,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it!!!,"Omg omg omg! I just love Reddit, I deal with a lot and I just love getting how I feel off my chest and getting a lot of support because I can't find it else where. If you have any type of problems, then Reddit is the way to go! Happy Redditing😂😊💘!",US,4,2017-06-28,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +r/5stars,"This app is my 10 mins before work, my side dish to my lunch, my after work special and my evening poo companion. It never lets me down even when I let me down. Its all the everything and none of the nothing. We will write songs about reddit app one day... in fact I wouldn't be surprised if there already is one... or 12. I browse with safety knowing that the NSFW banner is labeled in red like caution tape saving me from potential scrutiny from on lookers, yet still allowing me to save it for a later date when no one is around me say reddit I love thee... *whispers ""say my name, say my name"". Reddit app is a must have for all your emotional needs.",US,5,2017-06-28,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +Hey,Good job,US,5,2017-06-28,83,415.0,"(80.0, 85.0]","(400.0, 425.0]" +Ghdkndfhhc,I love pasta,US,5,2017-06-28,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Interesting and entertaining!,"You get to see things from lots of walks of life that make you laugh, sad or intrigued.. so much to learn about! Love this app.. must download for any intellectual!",CA,5,2017-06-28,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Great,Its a good app,US,5,2017-06-28,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +"Yes, I am loving this app",Now stop asking me to rate every other day.,US,5,2017-06-28,66,330.0,"(65.0, 70.0]","(325.0, 350.0]" +Good app,Love Reddit,US,5,2017-06-28,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +The Truth About Reddit,Every account on Reddit is a bot except you.,US,5,2017-06-28,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Good app,Some minor flaws,US,4,2017-06-28,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +Good app,Good app,US,5,2017-06-28,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +Good,Is good.,US,5,2017-06-28,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Great and user friendly,"While not all features are available on the mobile version, the app fulfills everything I need it to when I am bored at work or have a spare minute during lunch. It works well, and i highly recommend it to anyone that wants to use Reddit.",US,5,2017-06-28,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +One of the better Reddit apps,Great app that is good for Reddit. Absolutely awful for nsfw content,US,5,2017-06-28,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +🅱️,Greatest app NA/EU,DK,5,2017-06-28,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +Great,Love Reddit. Better than the site.,US,5,2017-06-28,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Awesome,This app is great,US,5,2017-06-28,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +It's awesome 5 stars,I like everything except the new layout it's hard to tell when a comment thread ends and another begins,US,5,2017-06-28,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +Good,"New to Reddit, but I like the app. I enjoy finding interesting posts to read about what others say about my favorite hobbies & topics.",US,5,2017-06-28,45,225.0,"(40.0, 45.0]","(200.0, 225.0]" +Love this app,Love it,US,5,2017-06-28,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +Me_irl is the best,r/dankmemes is trash,US,5,2017-06-28,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +8/5 would recomend,"Its reddit, if 6/5 was possible then id do it",US,5,2017-06-28,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Love it,Finally! Been waiting for a Reddit app for years.,US,5,2017-06-28,82,164.0,"(80.0, 85.0]","(150.0, 175.0]" +Love it,Love it. All you need to know it that's it's awesome.,US,5,2017-06-28,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Reddit is dope son,The title says it all,US,5,2017-06-28,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Invasive,I had already left a review but was still regularly bothered by an are you enjoying the app pop up. Whatever answer you give it leaves a box over the screen asking to review that does not go away. For this reason I am changing my rating to 1 star.,GB,1,2017-06-28,90,360.0,"(85.0, 90.0]","(350.0, 375.0]" +Tolle App,Ich bin begeistert,AT,5,2017-06-28,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Live the app,"One star because it keeps asking me to rate it. So, here is your rating.",US,1,2017-06-28,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Lovely,Greatest community on this interwebs thing,DE,5,2017-06-28,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Reddit,Reddit is good,GB,5,2017-06-28,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Nice app,Go on this way,TR,5,2017-06-28,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Good time killer,It's good,US,5,2017-06-28,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Awesomesauce,"Four due to some bugs. Otherwise, it's awesome",US,4,2017-06-28,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +This score used to be five stars.,"Seriously? When I am prompted to give a review, I'll give it. I don't want to keep getting reminders to give a review after I've already given it. + +I love the app but can't stand getting notifications to rate after I've already given a rating. + +It's petty, I know... but maybe I'll never get a notification now. + +Update: NOPE. I STILL GET REQUESTS TO REVIEW THE APP!",US,1,2017-06-28,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Only complaint would be that I now spend too much time on this app.,Only complaint would be that I now spend too much time on this app.,US,5,2017-06-28,28,112.0,"(25.0, 30.0]","(100.0, 125.0]" +No complaints,I thought about it and couldn't find anything to complain about,US,5,2017-06-28,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Outside world,Anime,US,5,2017-06-28,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Love it,"still excellent, nothing out of the ordinary",US,5,2017-06-28,8,32.0,"(5.0, 10.0]","(25.0, 50.0]" +It's ok,👍,US,5,2017-06-28,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +Hey,that's pretty good,US,4,2017-06-28,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Review,Reddit is great!,US,4,2017-06-28,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Works well,"Only issue is having to use browser to update settings, however is only a minor issue",GB,5,2017-06-28,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Dukinsky,Excellent,CO,5,2017-06-28,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +I still miss Alien Blue,It's a little buggy but mostly works fine.,US,4,2017-06-28,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Great,It's good,US,5,2017-06-28,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Great app,"This has been a great app, haven't had any problems, I would recommend it to all my friends.",US,4,2017-06-28,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +Upvote,"I do love this app, I was a skeptic and used others Alien Blue. This is better.",US,5,2017-06-28,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Easy to use.,Constant updated information. Fun browsing.,US,5,2017-06-28,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Reddit is life,Top,DE,5,2017-06-28,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Perfect,Reddit is perfect,US,5,2017-06-28,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +TOP!,"Aktuelle Infos, toller Austausch! TOP!",AT,5,2017-06-28,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Simple app for Reddit,"No crashes, works as expected.",US,5,2017-06-28,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Great dude,Top app,GB,5,2017-06-28,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Great app,"Great app awesome app the possibilities are yyyyuuuuuuuuuugggggeeeeee. Would recommend, though I miss alien blue but I got used to this one and it's almost the same😃",US,5,2017-06-28,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +That's pretty good,One of the best apps,US,5,2017-06-28,19,57.0,"(15.0, 20.0]","(50.0, 75.0]" +Nice,Love it,US,5,2017-06-28,8,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Works really well on my small iPhone SE.,Haven't encountered any issues. It's a smooth and attractive app!,US,5,2017-06-28,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Same,Same,US,5,2017-06-28,94,94.0,"(90.0, 95.0]","(75.0, 100.0]" +Amazing,Lets people join communities and talk with other people that like the same stuff,US,5,2017-06-28,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +I love it,Very good app. Keeps me entertained,US,5,2017-06-28,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +No sleep,"I downloaded the app to accesss Elias Witherow's short stories on /nosleep instead of viewing on thoughtcatalog.com because the app promised it would be faster, and it was! If you love horror check him out. Buy his new book ""The Black Farm"" if you read and like his short story ""Feed the Pig."" Excellent writing. Thanks Reddit!",US,5,2017-06-28,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +IPad version,👍🏻👍🏻👍🏻👍🏻,US,5,2017-06-28,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +It good,It good again,US,5,2017-06-28,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +What is a potato?,Love the app. Maybe a little too much.,US,5,2017-06-28,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Its okay.,"The soda was too cold, not enough ketchup for the hotdogs.",US,5,2017-06-28,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Terrific app,Always keeps me entertained and works smoothly.,US,5,2017-06-28,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Love it,I can choose what communities to receive for my feed and the app flows just how i want it to,US,5,2017-06-28,4,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Pretty good,Pretty good,US,5,2017-06-28,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +works just fine for the likes of me,i aint got no problems,SE,4,2017-06-28,75,225.0,"(70.0, 75.0]","(200.0, 225.0]" +"Reddit is love, Reddit is life.",Good stuff.,US,5,2017-06-28,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +So good,So flipping good,CA,5,2017-06-28,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Great, but quite Left leaning","I love Reddit and the content I'm able to access, the only downside is how far left it is, so anything conservative is usually quite downvoted.",US,4,2017-06-28,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +reddit,this is how we do,US,5,2017-06-28,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Probably the thing on the InterWeb,"I can't get enough of this app, I actually read more in a day than I have my enter time in school, 16 years. The best part is when other social media sites try to take credit for something that already went viral on Reddit 2 weeks ago, amateurs.",US,5,2017-06-28,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Having Fun,I recently started using Reddit and was recommended to download the app. So far I'm loving it. It's basically become part of my daily routine or when I'm bored. The app is easy to use and I have pretty much no issues with anything.,US,5,2017-06-28,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Not bad,"Yo I just got into Reddit and I gotta admit, it's pretty nifty!",CA,5,2017-06-28,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Gave it 4 stars because it kept asking for a review,"Good app, gives me Reddit, yay...",GB,4,2017-06-28,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +Reddit,What can I say it's Reddit,US,5,2017-06-28,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Litty,No I'm not from Compton England is my city,US,5,2017-06-28,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Ok,This apps pretty good I guess. It's reddit,US,5,2017-06-28,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Absolutely Great,Anything and everything i want,US,5,2017-06-28,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Best time waster ever,No text needed,US,5,2017-06-28,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Great!,App works great. Very easy to use. Never crashes. iPhone6S Plus.,US,5,2017-06-28,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit review,"What do you call it when a car full of commuters gets sick from driving underground + +Carpool tunnel syndrome",US,5,2017-06-28,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Nice!,Lots of stuff were discussed in here ;),PL,5,2017-06-28,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +radical,"best way to kill the time and you make it form to what you want to see, really great system",US,5,2017-06-28,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Notifications won't stop,"I've shutoff notifications for posts and suggestions from Reddit within the app settings but I still keep getting them. Needs a fix, very annoying!",US,1,2017-06-28,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +Perfect,"This app is great, really what I was looking for!",IE,5,2017-06-28,93,279.0,"(90.0, 95.0]","(275.0, 300.0]" +11/10,11/10 would download again,CA,5,2017-06-28,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Let me get uhhhh.......,Coool I guess better than jerking off,US,5,2017-06-28,86,86.0,"(85.0, 90.0]","(75.0, 100.0]" +Awesome!,Great app,NL,5,2017-06-28,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Love it!,This app is the best option for viewing Reddit on your phone! I would recommend this app to anyone looking to browse Reddit on their phone.,US,5,2017-06-28,21,42.0,"(20.0, 25.0]","(25.0, 50.0]" +Enjoying the App!,"I don't use my computer for much except schoolwork, and recently decided to join Reddit. I really enjoy the app and have little to no problems on it.",US,5,2017-06-28,2,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Perfekt für lange Klositzungen,"Wer mal so richtig derbe einen abseilen muss, ist bei Reddit genau richtig aufgehoben.",DE,5,2017-06-28,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Pretty great,I use the app for Reddit more than I use my computer. It just feels far more intuitive.,US,5,2017-06-28,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Good stuff,Good,US,5,2017-06-28,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +11/10 would Reddit again,Quality memes,US,5,2017-06-28,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Does what I want it to do,I read and comment. I hate Facebook. Reddit is better,CA,4,2017-06-28,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Plain and simple the best...,way to Reddit on the go!,NL,5,2017-06-28,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Perfect for my add mind,"Love it, can switch to any topic I want...laugh, learn, etc...",US,5,2017-06-28,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great!,"By far the best app on my phone. Whatever you enjoy, you can find a group that does as well. It's amazing!",US,5,2017-06-28,87,261.0,"(85.0, 90.0]","(250.0, 275.0]" +Amazing,Great app,US,5,2017-06-28,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Tis pretty good,Shwifty af,BR,5,2017-06-28,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +cewl,Reddit,US,5,2017-06-28,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +Great app,This is an easy way to quickly access Reddit that I can recommend.,US,5,2017-06-28,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Love it,I'm a huge fan of Reddit and the app just makes it easier to use.,US,5,2017-06-28,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Better than the web version!,"I love this app. Makes browsing subs, looking at messages, and getting notifications so much easier than on the web version which feels very spread out... got this for convenience and use it more than facebook or texting now a days haha",US,5,2017-06-28,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +"Pretty good, but could use some improvements","With this app getting Reddit in your phone has never been easier. It works really well, and finding subs is really well done. The biggest problem is the search engine, which Reddit has struggled with for a long time. Almost impossible to find articles you have just read. Once that gets fixed, I'll give the app a 5/5.",US,4,2017-06-28,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Works well,Navigating the app is just as easy as navigating the website.,US,5,2017-06-28,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +It's fine,Fine.,US,5,2017-06-28,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +pretty good,"app itself needs some work but it does the job i guess. struggles with gifs, links & video at times",US,3,2017-06-28,94,470.0,"(90.0, 95.0]","(450.0, 475.0]" +Great App,Well designed and works well,ZA,5,2017-06-28,72,360.0,"(70.0, 75.0]","(350.0, 375.0]" +Great App,great app,US,5,2017-06-28,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Add me on PS4,"Reddit app is amazing. Add me on PS4: MRFUEGO941 + +Edit: Night theme is a blessing sent from the reddit-gods. Love it. Thank you Reddit for such an amazing app!",US,5,2017-06-28,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +The internet is fun again,Learn about anything you want in tangential ways you never imagined.,US,5,2017-06-28,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Great app,Reddit is amazing for passing time or finding communities that you love and the people in those communities are (mostly) accepting of you and do amazing things for each other. I have seen people give away old computers or buy games for each other and have many give aways. You also get to subscribe to subreddits of your interest or browse all of the top posts to find new thing. All around amazing app.,US,5,2017-06-28,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Only choice,To /r,SE,5,2017-06-28,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Good app,Who doesn't love reddit!?,US,5,2017-06-28,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +An awesome app with issues,"Filters filters filters are needed, other than that it's a great Alien Blue replacement although I prefer Alien Blue",ZA,3,2017-06-28,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Good good.,Good good like good.,US,5,2017-06-28,36,144.0,"(35.0, 40.0]","(125.0, 150.0]" +Great,It's nearly perfect. Can't think of any big issues with the app.,PT,5,2017-06-28,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +Needs Proper Multitasking!,The content on screen doesn't rearrange in the multitasking UI. Could be very helpful!,US,3,2017-06-28,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Very smart app,Works well,CA,5,2017-06-28,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +"Great App, Never Crashes, and is easy to use","I find this app easy to use, it rarely if not never crashes, and it doesn't bog my phone down.",US,4,2017-06-28,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +Its a therapy,Total stress relief,US,5,2017-06-28,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Sneaky rating request,Read the title reddit :-/,AU,2,2017-06-28,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Pretty happy,This app does everything I need it to!,GB,5,2017-06-28,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +Does what it's designed to do!,Love it! My only suggestion is it would be nice to have a boas of favourite Subs you can access easily instead of having to search them every time (or am I doing it wrong?),AU,5,2017-06-28,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Wonderful app for Reddit users!,"A great user interface makes this app the perfect for any Reddit user. Easy way to see all of your subs. Pics, gifs, videos, etc are all shown in a nice and very convenient way. Features easy, one handed, infinite scrolling. This app gets regular updates that really help make it more perfect!",US,4,2017-06-28,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Good stuff,Works well,US,5,2017-06-28,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Great app,"Great app, works good.",NL,5,2017-06-28,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Addicted!,Love this app...,US,5,2017-06-28,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Genial,Excelente para mantenerse al tanto de los tópicos de interés.,MX,5,2017-06-28,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Faster,"Feels like the update made the initial load a lot faster. Well done on the night mode load screen, too.",US,5,2017-06-28,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +A Place to Hide from Facebook,"I couldn't handle the politics and echo chamber reverb on Facebook. I just wanted to see cool things. Even about knitting, which I love. Reddit delivers. Thanks for giving me something else to look at!",US,5,2017-06-28,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Good app,5/5,US,5,2017-06-28,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Easy peasy,Super easy to use and search for stuff. So now I can lurk easier.,US,5,2017-06-28,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great,Super dope,US,5,2017-06-28,34,170.0,"(30.0, 35.0]","(150.0, 175.0]" +Great app.,I enjoy the variety of stories on Reddit. It's a neat app to have. I recommend it!,US,4,2017-06-28,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Просто хорошее приложение,Норм,RU,4,2017-06-28,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Crashes frequently,"It's a wonderful app, when it works, but since the update, I've had it happen where it'll suddenly stop working. This can be whilst I've been using it, or just trying to load it up in the first place.",GB,1,2017-06-28,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +"Review option wouldn't go away, so 3 stars",Basically forced to send in this review. It's an alright app I suppose.,US,3,2017-06-28,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Platform is great,Platform is great and easy to use. Users post great stuff and the sub lists are great.,US,4,2017-06-28,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Super nice app,Works perfectly and has a great design compared to the desktop version.,DE,5,2017-06-28,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +"I LOVE Reddit, but...","I have always loved the Reddit app. But the newest update seems to have caused several problems: it will often freeze up and take a while for me to be able to scroll through, it is beginning to give me a ""Sorry, Can't Reach Reddit"" message a lot even though my WiFi is full bars, and many gifs will not load. + +If these can be fixed, I will gladly change my rating back to 5 stars :)",US,3,2017-06-28,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +"Good app, no problems","Had this app for awhile. It Works well, no issues.",US,5,2017-06-28,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +Great!,Pretty seedless to use!,US,5,2017-06-28,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Dank memes,It's where they originate,US,5,2017-06-28,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +Golden,The app finally brings a social media platform to my phone that ISNT total garbage (except twitter).,CA,5,2017-06-28,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +What the site needed,"Alien blue was weird, glad Reddit finally developed their own app. Love it",US,5,2017-06-28,31,93.0,"(30.0, 35.0]","(75.0, 100.0]" +👍🏼👍🏼👍🏼,please add password protection,SG,5,2017-06-28,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Reddit is love Reddit is life,And now I never have to stop,US,5,2017-06-28,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Love it,I have no complaints about the app.,US,5,2017-06-28,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +App works awesome,Never freezes easy to use,US,5,2017-06-28,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +Reddit lovers,"Beautiful design, display and easy to use! Honestly, Reddit never ceases to disappoint. Never crashed or have had any bugs since the time Ive downloaded the app",US,5,2017-06-28,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +Reddit,Awesome app!,US,5,2017-06-28,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +Smooth!,"Love the ""togetherness"" of the app. Refreshing!",RO,5,2017-06-28,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +lit app,very lit,US,5,2017-06-28,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Great App!,"I was a long-time user of Alien Blue because it offered so much more than any other third-party Reddit apps. This app, after a bit of trying, finally won me over with its updated UI and great features!",US,5,2017-06-28,76,380.0,"(75.0, 80.0]","(375.0, 400.0]" +Awesome community,"Just join, you won't regret it",DE,5,2017-06-28,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Great App,I love how easy this app is to use. The interface is great as well!,US,5,2017-06-28,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Exceptional,"Great procrastination tool, the best!",GB,5,2017-06-28,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Good bye free time,Need I say more?,US,5,2017-06-28,94,94.0,"(90.0, 95.0]","(75.0, 100.0]" +Awesome application,This app is revolutionary,US,5,2017-06-28,45,225.0,"(40.0, 45.0]","(200.0, 225.0]" +Love it,Luv it,US,5,2017-06-28,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Great mobile app,"Happy with the app, love the network.",US,4,2017-06-28,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Gut aber Werbung nervt etwas,Leider in jedem subreddit alle 2-3posts ein werbebanner.,DE,4,2017-06-28,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Great app!,Great app!,US,5,2017-06-28,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Very,Good,DE,5,2017-06-28,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +Don't use this app....,....if you want to be productive. This app steals your time and runs away with it to never be seen again.,DE,5,2017-06-28,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +10/10,Dope,SE,5,2017-06-28,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Great mix,Trivial/ serious as hell.... it is all there !,SE,5,2017-06-28,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Awesome app!,"Very easy to use. Simple, clean and fast.",US,5,2017-06-28,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Stop Bothering Me,"Just here so it stops asking me to rate it. I peruse Reddit daily. Thanks for saving me from the drivel that is Facebook — I prefer Reddit drivel. There, is that good?",US,5,2017-06-28,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Great,"App was always easy to use, but recent updates have made it even more so!",US,5,2017-06-28,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +My favorite app,"Even though Reddit has some censoring issues its not nearly as bad as facebook and twitter, and I have found my community in r/the_donald... It's by the far the best app out right now and you can pretty much communicate freely in there, even though the main mods vote it down so its not at the top. The people in the actual community are really cool. I rate it 4 stars for that reason. Because the attack on conservative speech right now (i dont care what people say its true) there are more subs in that community than any other and it gets flagged for its content. HOWEVER there are other subs that are pretty cool. I love the art and photography and there are some pretty funny stuff too. If your not in reddit your missing out, but hey your loss right..",US,4,2017-06-28,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +Fantastic,"I really enjoy the forum set up, I especially enjoy the anonymity.",US,5,2017-06-28,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Redit,"I like it, so far so good!",US,5,2017-06-28,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Nice app,Nice,PL,4,2017-06-28,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Good app,Needs community grouping but all in all better than anything else.,US,5,2017-06-28,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +Great app!,No longer will I have to use he browser,US,5,2017-06-28,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Reddit helps me through my day,My job consists of a lot of sitting around while things process and calculate and having the Reddit app to just flick up and scroll through or look at more in depth sub Reddits and posts really does help my day feel quicker and more entertaining.,GB,5,2017-06-28,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Good it's good,Good,US,5,2017-06-28,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Awesome,The Internet has been distilled perfectly.,US,5,2017-06-28,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +nice,nice,US,5,2017-06-28,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Okay,Easy to click the wrong sub.,US,3,2017-06-28,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Good,Good,US,5,2017-06-28,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +PLEASE cool it with notification reminders,"I don't like notifications. I turn them off for every app. I hate how when you have them off for this app, it asks you if you want to turn them on every time you launch it. PLEASE add a ""do not ask me again"" thing? It's very annoying. If the app didn't do that, I'd give it 5 stars. I originally was rating it 3 stars but you keep ignoring my request.",US,1,2017-06-28,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Love it,CA,5,2017-06-28,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Standard reveew,I r8 m8,GB,5,2017-06-28,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +Cool Apps,It's good.,US,5,2017-06-28,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Love it,Never had any problems,US,5,2017-06-28,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Didn't know what I was missing till I got this,This is the epicenter of the internet. I'm learning all sorts of random stuff from all over the world 10/10 would recommend,IL,5,2017-06-28,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Wonderful app but please...,"Please please please please please stop notifying me that something is ""trending"". ""Well why don't you just turn notifications off?"" you might ask. Because I still want to be notified when people reply to my comments and such. Reddit is unique. Don't try to make it like Instagram or Facebook with these notifications. Please. Unrelated but also important to me, I would also love to see the actual number of points rather than seeing ""4.5k"" for example.",US,2,2017-06-28,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome App!,One of my favorite apps. Addicting.,US,5,2017-06-28,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Love it,Great app. Slightly harder to use than other apps but once you get used to it you'll see it's better and more reliable than any other reddit app out there.,US,5,2017-06-28,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Very easy to use,It's easy to use and overall nice (: very good app in my opinion,US,5,2017-06-28,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Sehr gute App,Eine extrem gute App zum öffnen von Reddit quasi ohne Fehler,DE,5,2017-06-28,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +10/10,Amazing,US,5,2017-06-28,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Good,Good,US,5,2017-06-28,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +Reddit rules,"Oh how I love the reddit app, first thing I check when I wake up, last thing I check before I pass out every day. I would definitely advise you to d-load app now!!!",US,5,2017-06-28,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Writing a review because they keep asking me!,The app is great! It's free and I get to see all the content I'd ever want to see! Yahtzee!,US,5,2017-06-28,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +A must have app 10/5.,"Best app on the store. #1 in its own category for years, uncontested. Would highly recommend this app.",US,5,2017-06-28,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +.aww/love it,Love it. I am a big animal person and Reddit has made my life happier with their .aww feed. Love how you click on a video/gif/or pic and it loads fast then you can swipe it away!!! Thank you developers,US,5,2017-06-28,29,145.0,"(25.0, 30.0]","(125.0, 150.0]" +Great fun,Very entertaining,VN,5,2017-06-28,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Daily read,Reddit is great and the app makes it even more accessible.,GB,5,2017-06-28,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +This App Changed Everything,I live for reddit,US,5,2017-06-28,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +The best website on the internet is also a great app for iOS,Reddit has some of the best stories and the threads provide a great laugh. The app has finally arrived for iOS and it is awesome!,US,5,2017-06-28,47,188.0,"(45.0, 50.0]","(175.0, 200.0]" +Really came up!,This app is so much better than any older Reddit apps I've used before. Awesome.,US,5,2017-06-28,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app!,Must have for me,PL,5,2017-06-28,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +Great app,Just writing in here so I can send review,AU,5,2017-06-28,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Love it,"Easy to navigate and super practical, who needs internet browsers when apps like this exist? Keep up the good work guys!",MX,5,2017-06-28,65,260.0,"(60.0, 65.0]","(250.0, 275.0]" +Great app,This app has everything you need with frequent QoL updates. Great app!,NL,5,2017-06-28,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +👍,Good,US,5,2017-06-28,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Cute,S'cute,US,5,2017-06-28,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +Great app,I love what happenin here,US,5,2017-06-28,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +It's fine,K,US,5,2017-06-28,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Great apps,The apps works greatly without fail and its user interface is friendly and easy to use. Kudos to the team for a great appa,MY,5,2017-06-28,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Good,Yeeeeeeeeee,GB,5,2017-06-28,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Nags for reviews,"Poor design, this app nags for reviews and forces me to go into the app store.",FI,1,2017-06-28,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Purrfect,Love the grid view the most,US,5,2017-06-28,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Pretty reliable,Never had a problem with it!,GB,5,2017-06-28,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Great functionality,This app is perfect for exactly what the online version of Reddit does. Highly recommend downloading it if your Reddit user!,US,5,2017-06-28,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +"Great App, Great Community","The app is even easier to use than the website itself. Everything runs smooth as butter and the app is very visually appealing. + + ""10/10"" + -IGN",US,5,2017-06-28,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +👍,👍,DE,5,2017-06-28,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Always bugging me for a review,"Great source for porn, but annoying",US,1,2017-06-28,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +"It's good, real good",Reddit is the place for internet stuff,US,5,2017-06-28,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Dank,Memes,CA,5,2017-06-28,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Followed a friend,A trusted friend led to Reddit land and I have not looked back since. I love the variety and breadth of information.,US,5,2017-06-28,29,145.0,"(25.0, 30.0]","(125.0, 150.0]" +Near perfect,"Love the clean UI look and speed. +Needs a night time UI color swap, and sometimes going back a page drops me back to the main page.",US,4,2017-06-28,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Very nice,Works as intended without any issues.,PL,5,2017-06-28,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +Smooth Interface,I wish I'd downloaded it sooner.,US,5,2017-06-28,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Wonderful.,"Works smoothly, no complaints. Reddit did it again.",US,5,2017-06-28,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +Reddit,Excellent app design. I like it better than the website.,US,5,2017-06-28,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Nice,Nice,CA,5,2017-06-28,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Best forum ever,Has most of the information you'll ever need,SG,5,2017-06-28,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Best social app ive ever seen!,Best social app ive ever seen!,US,5,2017-06-28,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great!,"This app responds well, it gets frequently updated and is able to host all the weird stuff I love to look at! A+!",US,5,2017-06-28,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Better than Facebook,I used to scroll through Facebook all the time out of boredom. I got tired of seeing the same stuff every day. Since I switched to Reddit I haven't been back. Thanks Reddit!,US,5,2017-06-28,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +10/10 would use again,"Awesome app, no complaints",CA,5,2017-06-28,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app but...,Great app with my iPad but not with other android pads. Some functions like gifs or videos will not play in Reddit app itself. To view YouTube will have to be outside the app. Can only view vertical position.,US,4,2017-06-28,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Top,A+++,DE,5,2017-06-28,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +My quick internet fix,"Random stuff from the internet. Informative, mystifying, interesting, horrifying, wrong, and addicting all with the scroll of a thumb.",US,5,2017-06-28,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +I use this app the most!,This app is the best! Ads should have a box around them. Not liking them right now.,CA,4,2017-06-28,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Great app,Easy to use,US,5,2017-06-28,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Love it but it has some downsides,"Love the reddit app. It's a nice format of everything and a nice design. The only 2 problems I have with it are 1. Sometimes it doesn't recognize that I'm in the reddit app and will ask me to go to the App Store to download it then once I click on it it just redirects me to the store, then back to the app. 2. I can NEVER see how many up/downvotes someone has",CA,4,2017-06-28,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +My to go app !!!,I had used multiple apps for news for tech but this app is everything I need for tech and anime. The best app in the store!!,US,5,2017-06-28,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Great!,Awesome App,US,5,2017-06-28,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Good,This app is good!,DE,5,2017-06-28,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +A solid dependable easy to use app.,Great app. Straightforward.,US,5,2017-06-28,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Ads everywhere,It's not worth using. Other reddit apps can be much better,US,1,2017-06-28,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Night Mode.,YOU DID IT. NIGHT MODE HAS A NIGHT MODE LOADING SCREEN. BLESS U.,US,5,2017-06-28,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Gr8 memes,Nice,US,5,2017-06-28,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Great app,:)Only writing because the app said me to.,IT,5,2017-06-28,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Reddit On The Go!! Whohoo!!,Every feature I love anywhere I want it ❤️,CA,5,2017-06-28,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Love Reddit,What else is there to say?,CA,5,2017-06-28,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Good,really like the user interface and night mode is great,IN,5,2017-06-28,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Awesome app!,Love the app! I really love the auto night theme! Awesome job!,US,5,2017-06-28,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Reddit is coooooool,I like although I lurk.,US,5,2017-06-28,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Simple but effective.,"What you cannot update in app (e.g., multireddits) can be easily fixed a PC and will then work well in app well worth it.",CA,4,2017-06-28,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Great!,Amazing app!,US,5,2017-06-28,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Stop asking,Stop asking me to review,US,1,2017-06-28,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Great app!,"Easy to use, clean and customisable, and they even added flairing!",US,5,2017-06-28,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Wonderful app version of the site,Love the smooth and easy reading in the app. Especially the dark background theme,SG,5,2017-06-28,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Go to app for everything,"Any hobby you want to pursue or information you need, there is a great community for all of it here. It is my go to app and website for anything I need.",SG,5,2017-06-28,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +😍,😍 can't get enough.,US,5,2017-06-28,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Better than Facebook,Total says it all,US,5,2017-06-28,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +I love it,I love Reddit so having it on my cellphone is awesome,CA,5,2017-06-28,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Pretty good,^^,US,4,2017-06-28,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Dope,It's pretty dope,US,5,2017-06-28,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Love it,Awesome App,US,5,2017-06-28,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Great,But can't find where to post stuff,US,5,2017-06-28,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Amazing!,Great app,US,5,2017-06-28,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Works great,Love the interface,US,5,2017-06-28,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Wasting all my time,"I'm like ""Hey, What up, Hello""",US,5,2017-06-28,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Better than Alien Blue,I used aliens blue for years. Recently switched and the interface is much more friendly and gifs from imgur play. Stop asking me to rate this,US,5,2017-06-28,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Awesome,It's a good app,US,5,2017-06-28,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Good,Thanks,US,5,2017-06-28,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Such Amaze,I've tried other third party Reddit apps and I keep coming back because no one can do it better. Best app out there.,US,5,2017-06-28,26,26.0,"(25.0, 30.0]","(25.0, 50.0]" +Great app,Love it,US,5,2017-06-28,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Gifs and images take forever to load,"Like the tile says. When I first downloaded it load times were great, now they're abysmal. I downloaded Narwhal Reader and they're almost instant now.",US,3,2017-06-28,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +So many hours I'll never get back,"Where to start... you download the app, create an account and then you can appear to be a fortune teller a few days in advance before this content gets posted to Facebook. It has changed my life.",US,5,2017-06-28,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +It's great,Just get it,US,5,2017-06-28,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Love it,"Just like the website, which is really what you want.",US,5,2017-06-28,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Great app,Its awesome,US,5,2017-06-28,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +xHASHTAG_SOLOx,"""Good morning. Good morning. In less than an hour, aircraft from here will join others from around the world, and you will be launching the largest aerial battle in the history of mankind. Mankind, that word should have new meaning for all of us today. We can't be consumed by our petty differences any more. We will be united in our common interest. Perhaps it's fate that today is the 4th of July, and you will once again be fighting for our freedom. Not from tyranny, oppression, or persecution, but from annihilation. We're fighting for our right to live, to exist�and should we win the day, the 4th of July will no longer be known as an American holiday, but as the day when the world declared in one voice, 'We will not go quietly into the night! We will not vanish without a fight! We're going to live on, we're going to survive.' Today we celebrate our independence day!"" + +President Thomas Whitmore +July 4th, 1996",US,5,2017-06-28,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Best Social Media ESC App,The best,US,5,2017-06-28,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Good time.,This app is nice to use and the way the site is ran is also nice. 10/10 would download again.,US,5,2017-06-28,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it so much!,I prefer browsing on my app now because this one is so nice!,US,5,2017-06-28,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +I love it!!,"Alright, got the app awhile back, can't put the app down. It's too good. Who's FB?? Lol.",US,5,2017-06-28,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Newest update crashes on start,Just like the title. iOS is current. iPhone 6s.,US,3,2017-06-28,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Garbage,"The app constantly asks you to rate it and when you say no the bar doesn't ever go away so I'm finally writing a review. Never mind the quality of the site and the absurd censorship and paid advertising that tries to pass for content, the app itself needs a lot of work. It slips advertisements into the content list that are completely irrelevant and often counter to the content that gets posted. + +I recommend not using this app.",US,1,2017-06-28,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +Best App,Reddit Keeps me entertained for hours,US,5,2017-06-28,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +A1,Ni🅱️🅱️a,FR,5,2017-06-28,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Loves it,^,US,5,2017-06-28,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +Nice and simple.,As simple as that.,CL,5,2017-06-28,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Cool,Good for memes.,US,5,2017-06-28,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Salty scrubs,Nothing but whiny salty scrubs it's awesome!!,US,5,2017-06-28,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Eh,It works alright,US,4,2017-06-28,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +Love it,Hooked on it,US,5,2017-06-28,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Read away,It's da best,US,5,2017-06-28,1,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's Reddit on your phone,10-10,US,5,2017-06-28,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +This app is my life,"If you have an application that you go to for several times a day, has to be a good app. It is intuitive the user experience is amazing and it just makes sense. When the app is better than the website you know it's a good app.",US,5,2017-06-28,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +The best,Favorite app,US,5,2017-06-28,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +sneaky feedback system,sneaky feedback system redirects negative feedback away from App Store,AU,1,2017-06-28,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Great,Pretty good Reddit client! Easy to use,US,5,2017-06-28,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Always room for improvement!,"Thank you for a great app. + +Can you add some clearance around the page down arrow? + +Can you also make the username hit area a little bigger on comments?",CA,4,2017-06-28,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Countless hours of browsing,Title says it all,CA,5,2017-06-28,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app,If this app was a dude I'd give it the least toothy bj I have ever given,US,5,2017-06-28,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +"Full of bugs, but I still love Reddit","Lots of bugs like links not being clickable, but I still love Reddit. Except Spez. Screw Spez.",US,3,2017-06-28,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +love the app,"now stop asking me to rate it every ten minutes + +hope this helps",US,1,2017-06-28,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +Good interface,Fluid app. When an app works well there is not that much to say about it.,US,5,2017-06-28,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Dope,Dope!!!!!,US,5,2017-06-28,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +A key to happiness,"The best app I could have ever asked for. Filled with just any sort of topic a person could desire, and the fact that you will always have other people there who are interested in the same thing interacting with you.",US,5,2017-06-28,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +"The best designed social media app, hands down","For the purposes Reddit fulfills, it does everything it needs to do with no fuss. Great UX, no complaints really.",US,5,2017-06-28,79,237.0,"(75.0, 80.0]","(225.0, 250.0]" +Love it,🤙🏽🤙🏽🤙🏽🤙🏽🤙🏽🤙🏽👍🏽👍🏽,US,5,2017-06-28,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Great!,"I love Reddit. It is my only media outsource and I couldn't be happier with it, unless it gave me money. Or a Nintendo Switch. Point is Reddit is fun, easy to use, and keeps me up to date with political issues, memes, and news in general! I recommend this for anyone over the age of 12!",US,5,2017-06-28,33,165.0,"(30.0, 35.0]","(150.0, 175.0]" +La mejor app,Buen contenido y buen soporte,MX,5,2017-06-28,64,128.0,"(60.0, 65.0]","(125.0, 150.0]" +Well thought out,"Well thought out app, very intuitive and makes It really easy to browse Reddit",US,5,2017-06-28,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +best social media app,5 stars,US,5,2017-06-28,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Great content and quality users.,Found a home in Reddit. The community is solid and kind plus the content is all over the place. Love it.,US,5,2017-06-28,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Easy to use,Awesome community. Smooth app,US,4,2017-06-28,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +This is my review,Reddit aight I guess.,US,5,2017-06-28,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Great app,Great app! Easy to save posts you like and find new subreddits!,US,5,2017-06-28,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +5/7,Good app,US,5,2017-06-28,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Gotta love it!,Reddit is the best place to get up to date on any kind of information just find the subreddit that fits into your news or question and it will be answered by someone from the absolutely amazing community of Reddit,US,5,2017-06-28,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +I used to have free time,Now I have Reddit!,US,5,2017-06-28,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +,"10/10 + +Would upvote again.",US,5,2017-06-28,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +Great!,This app works perfectly! I enjoy Reddit through my phone over on the computer. I love this app!,US,5,2017-06-28,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Great App,Great for connecting with communities of your interest.,US,5,2017-06-28,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Banned?? Whaaaat?,Banned? This app is so weird. Some civil war going on in here. I was randomly banned from a subreddit I had NEVER visited TwoXChromosomes - just a randomBan. No response at all from the mods. None. Zero.,US,1,2017-06-28,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Change it back :(,I hate the new browse communities page! Especially when it auto subscribes you to the ones it shows you. I would rather just poke around subreddits based on topics. I really dislike having to select topics I'm interested in instead. I just wanted to look at what kind of stuff is in each topic without subscribing to anything.,US,1,2017-06-28,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Love it,I spend at least 4 hours a day on Reddit,AU,5,2017-06-28,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +Great,Great,US,5,2017-06-28,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +Reddit app,Nice one!,PL,4,2017-06-28,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +Awesome App,The app is super user friendly.,US,5,2017-06-28,49,147.0,"(45.0, 50.0]","(125.0, 150.0]" +Works great!,Awesome app,US,5,2017-06-28,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +"Good app. Great memes, don't be political.","I literally don't care about your political opinion and nor does anybody else, just stick to memes. Be like Obi-Wan Kenobi ""oh I'm not brave enough for politics""",US,4,2017-06-28,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Great,I love Reddit definitely worth the download,US,5,2017-06-28,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +Reddit app,👍,SG,5,2017-06-28,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Great app,Great app,US,5,2017-06-28,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Great,"This app has been improving with every update. Still room for improvement, but all around a great way to browse Reddit on iOS. Update: still love the app, but no 5 star until I can copy text from the app. Example, copy a gamer tag to paste in my Xbox app.",US,4,2017-06-28,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Redditors make it great,"Tech behind the app is so-so. Everything is harder to do on small screen, including reading. But it's still a portal in the millions of Redditors who love it and run it.",US,4,2017-06-28,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Great,Great app 👉🏿🚫👌🏻,US,5,2017-06-28,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +"Good, but can always use an update.","Overall a great app. Wish it supported landscape on iPhone, but I'll take what I can get.",US,4,2017-06-28,66,66.0,"(65.0, 70.0]","(50.0, 75.0]" +Love Reddit.,It's so easy to use and post. Love this app.,US,5,2017-06-28,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Poop,Poop,US,5,2017-06-28,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +great,just great.,US,5,2017-06-28,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Great,Really good,CA,5,2017-06-28,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Bet,This hoe lit,US,5,2017-06-28,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Reddit,"Has consumed my existence. It has curled its slimy tentacles into my life and corrupted my once productive wholesome life. + +Thanks.",US,5,2017-06-27,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Got a great upgrade,"This app works excellent. Has the most features one could want and browses very nice. + +Since the overhaul it also got some good mod tools. Not perfect yet but it's getting there.",NL,5,2017-06-27,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Balls,Balls balls balls,US,5,2017-06-27,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +I like it and they told me to rate the app,So here i am.,US,5,2017-06-27,70,350.0,"(65.0, 70.0]","(325.0, 350.0]" +love it,greatest app ever,CA,5,2017-06-27,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Fantastic,Great app. Asa former user of Alien Blue this one is far more user-centric and intuitive,CA,5,2017-06-27,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +More shi(r)t posts pls,r/prequelmemes forever,CA,5,2017-06-27,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +its good,i wanted reddit to stop asking me to review it,GB,5,2017-06-27,2,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Stop asking to rate if I've already done it,Title says it all you'll get asked a million times you wanted another rating u dropped 3 stars good for you😡,US,1,2017-06-27,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +It works great!,Love it!,CA,5,2017-06-27,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Very good,Some gifs take a bit to load but app is still great!,US,5,2017-06-27,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Good,Nice,US,5,2017-06-27,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Love it!,It's awesome!,AU,5,2017-06-27,68,340.0,"(65.0, 70.0]","(325.0, 350.0]" +Best Social Media App,"I use this more than Facebook now. It's so fun! + +Edit: It's getting 5 stars from me now, after they've added the ability to flair your posts and a few other really cool features. I'm a fan.",US,5,2017-06-27,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Reddit official app,Good app,US,5,2017-06-27,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +great,great like website,US,5,2017-06-27,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Under Duress,I'm being forced to write this review because the pop-up asking me to rate that app won't go away unless I do. The app is great except for this annoying extortion.,US,5,2017-06-27,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +I haven't really tried anything else,"I guess the app is good enough that I don't actually need to. + +Edit: the app keeps sending me back here to review even after already reviewing and it's a major pain in the... + +I'm dropping the star rating from 4 to 3 because of this.",AU,3,2017-06-27,19,57.0,"(15.0, 20.0]","(50.0, 75.0]" +Awesome app!,Very fluid and professional; updated often.,US,5,2017-06-27,4,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit Review,It's pretty decent. Already found some cool stuff on it. 95% would recommend.,CA,4,2017-06-27,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Greatest website ever,I love this website!,US,5,2017-06-27,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Impressed,I love this app.,US,5,2017-06-27,78,390.0,"(75.0, 80.0]","(375.0, 400.0]" +"I use it daily, it's definitely a must have!",Reddit offers so much diversity and information at your fingertips. You can get lost in the comments of a post for hours. Try it out!,US,5,2017-06-27,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +Works good,No complaints,US,4,2017-06-27,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +Good app,"The best I've used out of all Reddit apps. I would like to see an option for us to use Safari View Controller, so it can support ad blockers. Other than that, this app is very good :)",US,4,2017-06-27,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +I never give reviews...,...but this app deserves one. Amazing from top to bottom 👍🏼,US,5,2017-06-27,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +Reddit Сила 👍👍👍,Толко перёд!,RU,5,2017-06-27,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +Very interesting and interactive!,..,US,5,2017-06-27,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Good,Very Good,AU,5,2017-06-27,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Balls,Deep,US,5,2017-06-27,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Good,It's good.,US,5,2017-06-27,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Just get it,Best memes ever(if u don't sub to r/dankmemes your doing it wrong),US,5,2017-06-27,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Great app,"This is an app I use basically every day. +No real negatives",GB,5,2017-06-27,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Aeiou,Aeiou,CA,5,2017-06-27,77,308.0,"(75.0, 80.0]","(300.0, 325.0]" +Bless this mess,Love it,US,5,2017-06-27,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Great app for a great community,Just download it stop reading reviews ... just great,GB,5,2017-06-27,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +Much better than Facebook and Instagram,Best social app - avoid your family!,US,5,2017-06-27,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +"Not much to say, it's great!",That's all,US,5,2017-06-27,72,216.0,"(70.0, 75.0]","(200.0, 225.0]" +Good App,"Search function is not great. As expected it uses a lot of battery and data. + +I love the way I can share photos through text and iMessage. Sharing YouTube links is not so good. The app shares the Reddit link which is cumbersome for people that don't use the app. It would be better if it simply shared the YouTube link. A small concern overall, but one that affects my experience (listening to friends complain about awkward linking).",CA,4,2017-06-27,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +"reddit is love, reddit is life",great success,PT,5,2017-06-27,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +S'lit,Yea,US,4,2017-06-27,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +Nice,Much easier to use than the desktop site. Great work.,US,5,2017-06-27,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Great App,This my new favourite Reddit app and I look forward to future updates that make it perfect,GB,4,2017-06-27,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +So glad they made an official one.,I loved the other apps that came before but this one feels so poloished. Thank you devs.,US,5,2017-06-27,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Works,It's seamless. For the most part all Reddit features show on here. My favorite Reddit client!,US,4,2017-06-27,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +Functional and Fashionable,"Easy to use and navigate, customizable interface, I've never had it crash on me, overall great app.",US,4,2017-06-27,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +It's nice mate,Fuera Osorio,US,5,2017-06-27,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Nice app,Way easier to navigate on the app with mobile vs using the webpage,US,4,2017-06-27,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Only good Reddit app,"Since Reddit has been changing its style slightly recently, this app best reflects the changes. Other apps make Reddit feel too old school. Some people like that but for me the new style Reddit and this work seamlessly for a quality browsing experience.",GB,5,2017-06-27,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Bamboozles.,I love Reddit.,DE,5,2017-06-27,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Best app...,...For the best site!,US,5,2017-06-27,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Mobile Reddit = Best Reddit,Reddit manages to do something I see VERY rarely- it's actually better on the phone app than it is on pc!,GB,5,2017-06-27,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +Life changing,"Title says it all, idk what my life was before Reddit",US,5,2017-06-27,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Reddit on the fly,"Love the app; sleek, simple, clean. Sometimes have issues loading video, but I believe that's my reception/signal and not so much the app.",US,5,2017-06-27,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Yes,Great ducking app,US,5,2017-06-27,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Great app!!,Good app,US,5,2017-06-27,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +Works fine,"Serviceable, makes sense, does what it does needs to do, found a cool online community!",US,4,2017-06-27,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Supportive and Hilarious Community,The people on Reddit are the only thing giving me hope that humanity isn't doomed. These are great people!,US,5,2017-06-27,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Best Reddit app,10/10 would recommend for anyone interest in a good social media site,US,5,2017-06-27,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Clean,Perfect,FR,5,2017-06-27,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Good app,I enjoy redditing and this app has made it easier for me to reddit through my phone.,US,5,2017-06-27,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +ieii,legal,BR,4,2017-06-27,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Great,It makes me happy knowing there's others messed up in the head like me.,US,5,2017-06-27,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great App,My favorite app and most used on app store,US,5,2017-06-27,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Highly Recommend!,"Easy to use, looks great and consumes tons of my time as I read. Awesome community and I've yet to have any issues at all with the app!",US,5,2017-06-27,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +"Sleep ruined, but I think that means it's working.","Reddit keeps me up at night, ruining my sleep schedule and making me drowsy for work the next day. That said, I think that's exactly how Reddit is supposed to function, so it gets a solid 5/5 stars.",US,5,2017-06-27,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +Awesome App,An excellent way to waste all my time.,US,5,2017-06-27,35,35.0,"(30.0, 35.0]","(25.0, 50.0]" +Great site,To get all the the_Donald news!!!,US,5,2017-06-27,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +👍🏻,fantastic,US,5,2017-06-27,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +What else?,It's reddit.,US,5,2017-06-27,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +FeelsGoodMan,The app makes browsing Reddit better than using the website itself.,US,5,2017-06-27,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Good Stuff,Yep,US,5,2017-06-27,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Great,It's a great app,US,5,2017-06-27,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Good app!,Not much for style but well functioning.,US,4,2017-06-27,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Great App,Fast. Responsive and works as expected what more do you need?,GB,5,2017-06-27,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Great App!,"I just switched to apple from android, and the functionality of this version is better imho.",US,5,2017-06-27,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Pretty good,Can be laggy at times but otherwise a great app,US,4,2017-06-27,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +epic,really epic,US,5,2017-06-27,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Great app but could be better,"I would like a way for users to go back to the comment they were reading on a post, in case they scroll all the way up. Also bigger up and down vote buttons would help. Otherwise it is a great app!",US,4,2017-06-27,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Me encanta,Es la app más amistosa para navegar reddit,MX,5,2017-06-27,92,368.0,"(90.0, 95.0]","(350.0, 375.0]" +It's cool,Very entertaining site. I love it!,US,5,2017-06-27,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Love Reddit,It's probably the app I use the most on my phone.,US,5,2017-06-27,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +My most used social media app,Nothing bad to say about the app. I get all my news plus fun links from this app and it is extremely accessible. Reddit is amazing. Best app on my phone.,US,5,2017-06-27,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Not bad,Good but would love to be able copy and paste from messages,US,4,2017-06-27,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +There's a bug preventing me from viewing my posts.,Will change to 5 stars when fixed.,US,2,2017-06-27,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app!,Great app!,US,5,2017-06-27,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Happy to waist my time here,This app has consumed so many hours of my life.,US,5,2017-06-27,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Who doesn't love a little reddit,What is there to honestly hate about the app? It does exactly what you need and then some.,US,5,2017-06-27,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Great App,Only sometimes there is a bug with paragraphs,DE,5,2017-06-27,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Very good app to communicate with the online community,Great app that lets me interact with others about various topics.,US,5,2017-06-27,66,66.0,"(65.0, 70.0]","(50.0, 75.0]" +Addictive,"Addictive, addictive, addictive",GB,5,2017-06-27,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +10/10 with rice,Certainly better than Alien Blue.,US,5,2017-06-27,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +"Love Reddit, love the app more",The definitive way to use reddit,US,5,2017-06-27,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Boi,"It's really nice,I'm glad the Reddit app definitely performs well",US,5,2017-06-27,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +Bad,Bad,GB,1,2017-06-27,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Nice,I mean it's reddit.,US,5,2017-06-27,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +Works great!,Loving the app.,US,5,2017-06-27,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +Just to get rid of the notification,This is a rating.,US,5,2017-06-27,10,30.0,"(5.0, 10.0]","(25.0, 50.0]" +an gud app,iz gud app that I recomend,US,5,2017-06-27,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Great App,"-Does everything it's supposed to +- Great organization and layout",US,5,2017-06-27,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Most used App for non-facebooker.,"Love Reddit, it's my first stop for true crime and pop culture as I am no fan of Facebook or Websleuths. Anonymous and entertaining!",US,5,2017-06-27,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +I'm hooked!,Reddit is so addicting. I've learned a lot of new things since I started using it. The official app works best for the iPhone. For the iPad I'd recommend a third party app like Narwhal until Reddit makes their official app more iPad friendly. All in all I love it.,US,5,2017-06-27,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Better than browser,Slick and easier to browse. Easier to find my subscriptions and subreddits I don't know the full names of. Good app to have for sure!,US,5,2017-06-27,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Getting better!,Still needs a landscape version.,AU,4,2017-06-27,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Awesome app!,I'm more unproductive as ever!,US,5,2017-06-27,10,30.0,"(5.0, 10.0]","(25.0, 50.0]" +Beep beep,Lettuce,US,5,2017-06-27,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Best social media app,"A nearly perfect platform for viewing Reddit, other Reddit apps don't compare. Only issue is some gifs don't load at all, just sit there with the loading circle blank.",US,5,2017-06-27,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +It's good,"Nothing to say, worth your time",US,5,2017-06-27,3,9.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit is life.,"This app lets me be on Reddit where ever I want. At home, at the bus, at the park, at my job, and at my family meetings. What else would you want?",US,5,2017-06-27,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Fine,"Nice app. Nothing too special, but it doesn't need to be.",US,4,2017-06-27,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Oh Reddit,10/10 would smash,US,5,2017-06-27,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Love this app.,Tis the greatest,US,5,2017-06-27,73,219.0,"(70.0, 75.0]","(200.0, 225.0]" +Really Nice,And informative,CL,5,2017-06-27,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Favorite app,Great app to talk to people,US,5,2017-06-27,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +This app pleases me,( ͡° ͜ʖ ͡°),US,5,2017-06-27,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +It's Reddit,It works.,US,5,2017-06-27,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Makes my Day,Like every day,NL,5,2017-06-27,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Forces me to make a review,Wow,US,1,2017-06-27,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +Why get rid of CSS?,"Yeah, cuz advertisers are all that matter. Not the people actually USING the website. sellouts.",US,1,2017-06-27,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Best eva,The best eva,US,5,2017-06-27,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Happy Convert,For years I used Imgur as my main source of entertainment but I can happily say I've converted to Reddit after exploring some subs relevant to my lifestyle. I like that you can pick and choose what type of content appears on your home page. The app is very easy to use. I look forward to lots more browsing! Thanks!,US,5,2017-06-27,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Great app,Love it,US,5,2017-06-27,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Awesome.,Awesome,US,5,2017-06-27,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Great app,Very entertaining.,US,5,2017-06-27,75,375.0,"(70.0, 75.0]","(350.0, 375.0]" +Love it,Can't stand to use the desktop version anymore since this app is way better with its previews and things.,US,5,2017-06-27,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +Nice app,Polished and well done. Easy way to use Reddit from your phone. Every redditor should have,US,5,2017-06-27,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Good app,Rating so they will stop bothering me to rate.,US,5,2017-06-27,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +It works,See title line,US,5,2017-06-27,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Great app!,Love the app! I wish they wouldn't constantly ask me to rate it though,US,4,2017-06-27,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +le reddit member likes it,"it is good, indeed.",TR,5,2017-06-27,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Good but could be better,"This app is solid, but seems like some settings just aren't there. Also it's not great for us with big thumbs.",US,4,2017-06-27,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +I have no issues,Good programming and excellent browser of reddit,US,5,2017-06-27,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Solid,"Can't complain. Hasn't crashed, loads gifs/videos/pages quickly, doesn't let me give gold which helps my bank account... good stuff.",US,5,2017-06-27,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Good app,Just hard to see your original post when people reply. Otherwise nice platform,US,4,2017-06-27,91,273.0,"(90.0, 95.0]","(250.0, 275.0]" +Great app,Thanks!,US,5,2017-06-27,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +One of the best reddit apps I've used,It's really nice! Minus the fact that it randomly signs you out if the app closes or stays in the background for too long.,US,5,2017-06-27,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Stop asking me to rate,It doesn't go away until you click it to rate,US,1,2017-06-27,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Amazing,I dislike the format of reddit on the computer so the mobile version has me completely addicted!,US,5,2017-06-27,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Would like better image handling,"App functions smoothly and as expected. However, it would be nice if clicking image links didn't require the app to launch its web browser. Would like the image to just open directly without being in the web browser.",US,4,2017-06-27,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Good procrastination tool,Title,US,5,2017-06-27,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +All old posts marked Post Failed?,"I love Reddit. Love the app. But the newest update is all screwed up for me. When I go into My Posts, all of my old posts are marked ""Post Failed"". Every single one. So it's impossible for me to go to any of my old posts, or check the karma, without doing a search.",US,2,2017-06-27,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +Love the iOS app,"I like the interface in the app so much, I hardly even use the website anymore.",US,5,2017-06-27,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Love it!,Love the app and the community!,US,5,2017-06-27,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +I love Reddit,"Until I used Reddit I was lost, now that I've found Reddit I'm lost with other people",US,5,2017-06-27,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Nice nice,Baby,US,4,2017-06-27,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +Gr8,Rati,US,5,2017-06-27,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Pretty cool,Title says it,US,5,2017-06-27,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +I love Reddit,A lot,US,5,2017-06-27,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +A good reddit mobile client,"Quite feature rich, only lacking a few obscure features available on the web client.",US,4,2017-06-27,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Great app,Don't know about the unofficial apps since people are always going ob about them but this one is regularly updated with new features and is smooth. Love it,GB,5,2017-06-27,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Rate Me Rate Me,"This is one of those apps that will constantly interrupt you to rate them. +Rating 1 star for annoying me. + +Apple: can't you use app usage stats to rank apps? So developers don't have to annoy me to rate them.",US,1,2017-06-27,73,219.0,"(70.0, 75.0]","(200.0, 225.0]" +Good,Good,GB,5,2017-06-27,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +10/10,It's a top quality app.,US,5,2017-06-27,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Rated 1 star for the,Annoying requests to rate,RO,1,2017-06-27,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +I love it!,"I had downloaded the app a while back, but never really gave it a chance and deleted it. Then my cousin got me into Reddit again and I haven't been able to put down the phone since. Posts are never dull and comments always seem to make me laugh. The design of the app itself is really nice, easy to use and simple to navigate through. Have nothing bad to say about it!",US,5,2017-06-27,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Asked me if I liked Reddit,I love Reddit. but add Flair and please fix issues with not showing posts in some subs (or explaining why) and sometimes not playing gifs. I will make it 5 stars at that point.,US,4,2017-06-27,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +awesome,best place for trading in acnl!,US,5,2017-06-27,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Ok Cool,Will you stop asking for rating now?,US,5,2017-06-27,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Five-Star App for a Three-Star Network,"Reddit is everything that was good and bad about Usenet, if you're old enough to remember Usenet: anonymous, musky, undermoderated, and really freaking weird. + +If you're going to use Reddit, though, this app is the way to do it. Gorgeous interface, extremely fast and crisp. The only drawback I've found to it so far is that I can't edit my flair, or if I can the way to do it isn't immediately obvious.",US,4,2017-06-27,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Now with less dickbutts!,Yep.,US,5,2017-06-27,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Love Reddit,Title,US,5,2017-06-27,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +4/5,"Occasional failed gif/videos loading, but works",US,4,2017-06-27,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +Hell yea,5 stars for vandi,US,5,2017-06-27,74,74.0,"(70.0, 75.0]","(50.0, 75.0]" +Best website in the palm of your hand,👍a,CA,5,2017-06-27,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Solid but bugged,Solid enough but it won't let me delete characters when writing post titles 😒,GB,3,2017-06-27,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +Love it!,"I am new to Reddit. Have only been on it for about a year and I love it! This app is super user friendly and makes my mindless scrolling and article reading a breeze. Thanks, Reddit!",US,5,2017-06-27,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Perfect,Amazing app!,US,5,2017-06-27,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +这个不错,国外版贴吧~,CN,5,2017-06-27,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Awesome app!,This app is awesome. The layout is good and is very user friendly. Would highly recommend!,ZA,5,2017-06-27,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +Bomb as f&$%,Reddit for life!,US,5,2017-06-27,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Nice,Nice,US,4,2017-06-27,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Love it! Where'd all my empty time go!,"This app is amazing, so many people and so many amazing communities",US,5,2017-06-27,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +All of the bacon,"This product has completely changed my mindset on bacon flavored rice. At first I was skeptical, like anyone else would be. After using Reddit, bacon flavored rice has become a staple in our home. I highly recommend you try it today!",US,5,2017-06-27,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +Really terrific,The best way to browse the nsfw stuff in the bathroom stall at work.,US,5,2017-06-27,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +My Oxygen,"Reddit has become my life line and go to web address for all things life 😊 +Amazing app love it ❤️🙌",IN,5,2017-06-27,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +Overall good,Can't figure out how to search for a term through all subreddits.,US,4,2017-06-27,95,380.0,"(90.0, 95.0]","(375.0, 400.0]" +Love it,Good app broman,AU,5,2017-06-27,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Annoying Rating Ads,"Originally had this as best app in the store, but after I already rated it you're popping up the rate me! Bar at the bottom where I can't see content forced me to come back here to lower the rating since that's apparently the only way to get rid of it. Stupid design there for sure. 2/5 now for that.",CA,2,2017-06-27,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +"So far, so good.",I'm new to Reddit but so far I haven't had an issue with the app.,US,5,2017-06-27,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +The best of the internet,The only problem is how addictive the app is,GB,5,2017-06-27,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Stop asking me to rate this app,"I love this app. But came here just to ask you guys to stop asking me whether I love this app or not. + +Enjoy the 1 star.",US,1,2017-06-27,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +Great,"Sometimes it doesn't work well with gifs and images, but other than that, it's my favorite mobile way to view reddit",US,4,2017-06-27,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +10/10,Would Recommend,US,5,2017-06-27,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Great app for compulsively checking Reddit,Yes,US,5,2017-06-27,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Solid,Add more functionality from the website.,US,4,2017-06-27,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +STOP!,STOP UPDATING THIS APP! YOUR DEVS ARE INCOMPETENT AND MAKING IT WORST!!!!,US,1,2017-06-27,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Quenching the knowledge thirst,Great app. My go to when I have free time to waste on the phone,US,5,2017-06-27,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Love the Reddit app,Rarely does it have an issue and that's usually a user error to be honest. Love Reddit!,US,5,2017-06-27,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Great app... love love love it,Hi,US,5,2017-06-27,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Good app,Good app,US,5,2017-06-27,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +"Works Well, No (Real) Complaints",Stop asking now please.,US,4,2017-06-27,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +To all nor🅱️ies,Reddit made me delete 9GAG. 10/10 would do it again,DK,5,2017-06-27,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Quality reading,Lots of interesting people's posts!,KR,5,2017-06-27,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Good ! I use it everyday,Easy to use once u get used to the interface. No bugs so far !! I love it !,HK,5,2017-06-27,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Proctastination: the App,10/10 would procrastinate again,CZ,5,2017-06-27,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Wow many memes,.h,CA,5,2017-06-27,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Great app,I still have alien blue because I can look users up in the search bar. That's really the only option I'd like to see. That and the friends options.,US,4,2017-06-27,47,188.0,"(45.0, 50.0]","(175.0, 200.0]" +Ads and harassment to rate,This is your app for your website so why are there more ads than other free Reddit app? Why do you constantly harass people to rate your stupid app? You ask for a rating you get 1 star,US,1,2017-06-27,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +No complaints!,This app is great. It keeps me entertained and happy. Thanks Reddit!,US,5,2017-06-27,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +It's amazing,It has everything you could want,GB,5,2017-06-27,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Great app,"Addictive interesting site, love it",GB,5,2017-06-27,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +App is ok but the ads are the weirdest I've ever seen,What is with all the ads for industrial quantities of shredded cheese? Are these targeted or does everyone possibly need to regularly shred 200lbs of cheese?,US,3,2017-06-27,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Reddit at it's best,"How can you not be addicted to this app lol? I finally understand what all the fuss is about, great source of knowledge and information",US,5,2017-06-27,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Solid,Good app,US,4,2017-06-27,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +Easy to use and great app,"Really love the app, I find Reddit is explored very well while away from your computer",US,5,2017-06-27,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +It interrupted me for an App Rating,"My policy is firm. Whenever you ask for an App Rating, you get one star.",US,1,2017-06-27,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Excellent,Wow,GB,5,2017-06-27,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Лучше приложение в мире !,Просто обожаю РЕДИТ! Я твой фанат !,RU,5,2017-06-27,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Great App,Works well and has regular updates which invoke genuine improvements.,US,5,2017-06-27,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Good for on the go,Worse then the desktop version but not by much,CA,4,2017-06-27,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +*mlem*,r/rarepuppers,US,5,2017-06-27,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Better than desktop,Better than desktop,US,5,2017-06-27,79,237.0,"(75.0, 80.0]","(225.0, 250.0]" +Love it,Trust me,US,5,2017-06-27,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Good App,Much better than the mobile site. The only annoying thing is having to open the App Store to switch between the two. Most other apps these days have a quicker and more seamless transition. 5 star other than that small thing.,GB,4,2017-06-27,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +Memes,The memes are bomb here 👌🏼💯💯💯💯,US,5,2017-06-27,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Reddit,"On popular post, sort comments by controversial. ;)",US,5,2017-06-27,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Amazing App,Keeps gamers together 👍🏽,US,5,2017-06-27,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +No safety for a users,Downloaded-enjoyed browsing posts. I posted my first picture and got spammed in my inbox by all kinds of vulgar harassing people. There was no option that I could see to block these people in the app. I even googled it but could not find a solution. Once it's easier to block harassing people I may try this again,CA,1,2017-06-27,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +I love u Reddit,Thank u Reddit I love u Reddit,US,5,2017-06-27,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Good,8/10 with rice,AU,5,2017-06-27,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +Perfect,"Reddit is like the alligator of the internet. Since its creation in the primal waters of the internet, it hasn't evolved, because it doesn't need to. It is the perfect killing machine.",US,5,2017-06-27,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +It's Great,I don't know why people still use baconreader. This is clearly better.,US,5,2017-06-27,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Reddit,Great app,ZA,5,2017-06-27,29,145.0,"(25.0, 30.0]","(125.0, 150.0]" +Love it,"Just use it, you won't regret it",US,5,2017-06-27,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Use it. Good app,Good app.,US,5,2017-06-27,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Excellent,Very stable. Easy to navigate. It's very hard to decide whether I prefer the desktop version or the app more.,US,5,2017-06-27,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Just great!,"I love the design, love reddit, what else is there to say? Congrats and keep it up!",GB,5,2017-06-27,51,102.0,"(50.0, 55.0]","(100.0, 125.0]" +Being addicted to your phone is becoming more productive,"This app has completely overtaken my use of Facebook, Instagram and any other social media. Allowing me to laugh and learn something new every day. A great way to be more Informed while still filling the millennial ""always on your phone"" stereotype.",CA,5,2017-06-27,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +The front page of the internet. Always a smile.,Not bad,GB,5,2017-06-27,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +Great app!,"This app runs pretty smoothly and always uses its updated to be better, not worse like other apps.",US,5,2017-06-27,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +A fairly good app for redditing on IOS,"Just one issue tho, if I accidentally swipe left I wouldn't be able to get back to whatever I was browsing, it'd be perfect if I can just swipe right back at it.",MY,4,2017-06-27,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +Best update ever,I needed this update very much. Thank you devs 😋,IN,5,2017-06-27,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +So good,It is so good that i gor hard as a rock,CA,5,2017-06-27,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Good Stuff,Good.,US,5,2017-06-27,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Nice,Just need to add the flairs and it'd be perfect,US,4,2017-06-27,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +Notifications,"Update 6/27/17 +I have had to disable notifications because Reddit likes to spam it's users with trending posts. Why?",US,1,2017-06-27,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +10/10,10/10,US,5,2017-06-27,3,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Does what it says on the tin!,"Never encountered a single bug or crash since I've had it. + +Nice UI and easy to navigate! + +Some GIFS don't load but 9/10 a bot posts a link that makes it load. + +Highly recommend :)",GB,5,2017-06-27,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Better than browsing on desktop,IMO. I'd like this app better if it quit asking me to rate it.,US,5,2017-06-27,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Great!,Awesome app,US,5,2017-06-27,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +No insightful review here (part 2),Editing my review 5 months later as I was prompted to rate the app again. Thought hey it's a Great Reddit app so why not.,US,5,2017-06-27,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +No reason to use anything else.,Simply the best Reddit app.,US,5,2017-06-27,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +Decent,Decent,US,4,2017-06-27,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +Works great,I like being able to post images in the app. Everything else works well too.,US,5,2017-06-27,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +GIFs pause audio,"Not possible to play audio on phone and browse reddit, because opening a gif pauses the audio. + +There's other annoyances too like no way to filter out subreddits. + +Narwhal app is better.",US,3,2017-06-27,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Keeps sending me push alerts for random posts even with notifications disabled,"Uninstalled for this reason. Stop sending me ""trending"" posts.",US,1,2017-06-27,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +The best way to browse Reddit on your iPhone.,"6/27/17: I feel like I'm probably the only one here that keeps updating their comments like this... but, whatever. The app is actually really good now. The Dev's are actually listening and I apologize for my criticism before. Everything runs smoothly. I use this app every day. Just wanted to say thank you to the Reddit team for constantly working on this app and listening to feedback. + +There is no longer a ""featured"" section in the middle of your home page, which is great. It now has its own tab at the top under ""popular""/""discover"" which is not intrusive at all. + +This is pretty much the best app for Reddit right now. A lot of the others are full of ads or don't have a very user friendly UI. + +I just wish we could get hold to preview images and gifs like how Alien Blue had it. Then it'd be perfect. + +2/25/17: the new update included push notifications, which is cool, but it also included one of the worst updates possible by throwing in an extremely out of place and ugly ""Featured"" section right in the middle of your front page. Not only does it stick out like a sore thumb, but it's full of subs I personally don't care for, hence why I'm not subscribed to them. So why would I want to see this on my front page? Honestly, this might be the thing that makes me switch to a different app. I miss Alien Blue. If you're new and looking for a good Reddit app, look elsewhere as of now. It seems the devs either stopped listening to users or just don't care. + +Original review: Coming from ""team Alien Blue"" here. It's not as good, but ever since they stopped supporting AB this has become better. The only issue I have is that there is no ""hold to preview"" pictures, gifs and videos. Plus it seems like it degrades images to the point where you can't read small text in images (I.e screenshots of Reddit threads). But you can easily open them in Safari to fix that. + +Other than that, it is pretty good. It has things AB never had like showing gold, showing tags and others. + +Update: as of 12/21/16 it appears they fixed the image degrading thing. The app is really good and is constantly updating. For some reason they decided to move the voting arrows to the left side of posts which make it really awkward to use for someone that is right handed. But they kept the voting arrows on the right for comments which makes it even more awkward. I hope they make this an optional feature in the future.",US,5,2017-06-27,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Pretty good,Would like a night mode included.,AU,4,2017-06-27,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Rating so they can stop asking me to,Which is the only negative side affect of the app,US,5,2017-06-27,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app use it every day.,Lots of fun.,US,5,2017-06-27,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +Good app,Is good,US,5,2017-06-27,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +Cool app,Cool app,NZ,5,2017-06-27,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Awe,Some,DE,5,2017-06-27,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +Can you describe Reddit?,Yeah it's lit,US,5,2017-06-27,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +Not as good as Alien Blue,"Still missing basic features as slide to minimise comment thread. + +Now it requires camera roll access to be able to use the share sheet!? This on top of the app bugging you daily to enable notifications!? + +You're better off downloading a third party app.",GB,1,2017-06-27,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Much Reddit,Very wow.,GB,5,2017-06-27,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Reddit rocks,Awesome app and website,TR,5,2017-06-27,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +Most used app,"A staple. If you use reddit, you NEED this app!",US,5,2017-06-27,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +Very Good App,"I wasn't gonna write a review, I was just gonna rate it.. But Apple is making me. 😕 This is a very good app though, with a great community.",US,5,2017-06-27,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Great site and app!,:),US,5,2017-06-27,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Awesome,Really great,US,5,2017-06-27,5,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's good,Not a bad app,US,4,2017-06-27,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Still missing basic features,"1. 3D Touch +2. Grouping subreddits",AU,3,2017-06-27,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +Great,Enjoying it a lot.,US,5,2017-06-27,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great app,Works intuitively and allows access for great user submitted content,US,5,2017-06-27,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +Top marks,I enjoy it immensely :),US,5,2017-06-27,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Content full but usefulness is still need,"I like Reddit, found out while playing online game. It is much more fun and intelligent than Facebook posts and links, due to the fact that nonsense news will not get any traction like FB do. +App itself is not outstanding, while reply/comment, it is hard to quote the original post or in reply. Unlike website.",SG,4,2017-06-27,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Nice,Good app,JP,5,2017-06-27,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Horrible design,"I like being able to see what type of notification it was instead of lumping it together the bottom bar wasn't ""cluttered"" it was organized the exact way it was needed. this update just makes the app harder to use",US,1,2017-06-27,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +No complaints,"I really can't think of anything I'd change about this app other than adding a floating ""double up arrow"" within threads that will move up each comment. As the ""double down arrow"" is one of my most used features.",GB,5,2017-06-27,77,308.0,"(75.0, 80.0]","(300.0, 325.0]" +Good app,a p p,US,5,2017-06-27,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Great app!,"Reddit is truly ""The Front Page of the Internet"". No qualms with the app, does everything it's supposed to.",AU,5,2017-06-27,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Is good,Is good boye,US,5,2017-06-27,90,360.0,"(85.0, 90.0]","(350.0, 375.0]" +HailAlistar your brain is broken.,HailAlistsr doesn't know the meaning of broken even if it hit her/humming the head with a broken brick.,US,5,2017-06-27,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Rate,Gr8 r8 m8.,US,5,2017-06-27,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Use it,Great,US,5,2017-06-27,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +Amazing,Love the app! Works very nicely!,CA,5,2017-06-27,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +iPad split-screen support lacking,"Really needs iPad split-screen support. Basically unusable unless you give it 75% of landscape mode. Other than that much lower density than Alien Blue and no custom groups for subreddits you don't want to subscribe to, but check in on very often. The ""scroll to next post button"" continues to be worse than two-finger swipe-to-collapse. Alien Blue remains strongly superior, years after being discontinued.",US,3,2017-06-27,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +"Not as good as many of the android apps, but pretty dang good","Alien blue has come a long way, but it is still behind many of the non-official android apps that offer features such as searching a specific sub or viewing the sidebar.",US,4,2017-06-27,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Ambivalence,I love Reddit more than I hate it; that puts it above most people I know.,GB,5,2017-06-27,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Most usable Reddit client,"Out of all 3rd party I tried, official is most usable one",US,5,2017-06-27,68,340.0,"(65.0, 70.0]","(325.0, 350.0]" +Meh,"It's a nice app but the only issue is that text formatting don't work properly e.g. When text is suppose to be formatted to rise up ""^^^hey^^^kid"" it doesn't actually get formatted and appears as that.",AU,4,2017-06-27,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +So far so good,The mobile app is definitely more slick than the website. So far so good.,CA,4,2017-06-27,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Music stops while playing GIFs,"I think it's ridiculous + +Hello /r/mildlyinfuriating",US,1,2017-06-27,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Solid app,Tis gr8. 👌🏼,US,5,2017-06-27,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Best app everrr,"Thanks for being there for me when I'm on the toilet and don't feel like lurking facebook, Reddit ❤",US,5,2017-06-27,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +Better than Facebook,You can literally communicate with everyone about anything and it's fact checked to ensure the regards of the world are filling up the world with nonsense. Kickass,US,5,2017-06-27,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +It's reddit,"but on your phone. + +Trust me.",CA,5,2017-06-27,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Reddit is fantastic,Like online meet ups and get to learn / stay current with the things you care about by subscribing to the appropriate subreddits!,US,5,2017-06-27,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Phenomenal,Yee,US,5,2017-06-27,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +It's great.,That is all,US,5,2017-06-27,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +Great app.,1/1 great app.,US,5,2017-06-27,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Better than expectations,"Had been using alien blue to browse up until I upgraded phones to one with more storage space, so I thought I'd try out some new apps. + +Totally blows alien blue out of the water IMO, the addition of night mode allows for similar viewing style but this app seems much smoother, viewing photos without leaving the app is much more fluid.",CA,5,2017-06-27,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Perfect but,"I really love the old post button, I think it would be great if it comes back",PE,5,2017-06-27,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Love it!,Live the app interface. Intuitive and easy to use. Thank you.,US,5,2017-06-27,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +👌,"Easy to use, works great",CA,5,2017-06-27,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Great app. Works better than website.,No additional comments.,US,5,2017-06-27,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +AWESOME!,Woot!,US,5,2017-06-27,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Almost perfect,Other then a few minor problems (such as an odd crash) this program is great.,US,4,2017-06-27,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Great,"Occasional bugs with posting to subreddits. Other than that, far and away my most used app, it does exactly what I need it to. I waste a lot of time on here. The desktop experience is sufficiently shrunken down, which is all I can ask for.",US,4,2017-06-27,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +Favorite Social Media app,"Nice and sleek, works great minus the bug where if I suspend the app to do something real quick, it'll refresh and I'll lose all my progress. But it's a minor hassle, way better than Facebook and Twitter for sure",US,5,2017-06-27,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +Use it erryday ♥️,Love it,US,5,2017-06-27,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +good job,very good,CN,5,2017-06-27,19,57.0,"(15.0, 20.0]","(50.0, 75.0]" +reddit,this.,US,5,2017-06-27,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Pretty Good,Was used to Reddit is fun on android but this a good replacement,US,4,2017-06-27,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Awesome,Sauseome,US,5,2017-06-27,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +It's good.,I enjoy it.,US,5,2017-06-27,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Favesies,10/10 with rice.,US,5,2017-06-27,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Yes daddy,10/10 my papi,US,5,2017-06-27,16,16.0,"(15.0, 20.0]","(-0.5, 25.0]" +The best,I love this app!! So fun!!,CA,5,2017-06-27,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Very nice! Works great.,Flawless app!,CA,5,2017-06-27,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Awesome!,Really enjoying the communities and filters. Reddit is a blast!,US,5,2017-06-27,100,200.0,"(95.0, 100.0]","(175.0, 200.0]" +Love it.,Great app,US,5,2017-06-27,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Perfect on the iPhone but,It would be awesome if the iPad app was as good as the iPhone!,US,4,2017-06-27,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +Pretty great,Some difficulty viewing gifs and images every now and then but otherwise wonderful,US,4,2017-06-27,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +Don't know what i would do without the reddit app,It would be nice if the layout of the apps and buttons doesnt change every 2 weeks though. Whenever i get used to the new layout it changes,CA,4,2017-06-27,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Love this,This app gave me aids and I never looked back 😀,GB,5,2017-06-27,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it.,Big fan of Reddit. The app just makes it more accessible for me to feed my addiction.,US,5,2017-06-27,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Good app,No problems,AU,5,2017-06-26,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Landscape mode?,When is it coming to this app?,US,3,2017-06-26,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +1 bug left guys,"I bought a new 12.9inch Pro iPad and thought it would fix itself but no it didn't, please fix your app reddit so that when I do Splitview 50/50 with 2 apps it doesn't clip the edges of your app. This is replicated on any iPad so please test and fix it.",US,2,2017-06-26,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +Great!,Nil issues,AU,5,2017-06-26,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +"Solid, but add flair please",Add flair! So many subs require you to flair your post. You can't do it in the app as of yet.,US,4,2017-06-26,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Love the design!,"The design is great, app is so smooth.",US,5,2017-06-26,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Why is the picture on the right on grid views??,Please change the orientation or at least provide and option to move the photo to the left side vs the right side. That is not natural to view right to left since most people look at the image first.,US,2,2017-06-26,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Fantastic app,Brings the Reddit experience to mobile,US,5,2017-06-26,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Excellent Client,Just use it.,US,5,2017-06-26,83,415.0,"(80.0, 85.0]","(400.0, 425.0]" +Stop it,I am very happy to use the mobile version on my phone. Stop constantly asking me to download you app. I'm sick and tired of getting the pop up and not being able to view the site without having the App Store pop up every time. It's like an annoying spam! Just let the user decide whether or not they want to use your app or not.,US,1,2017-06-26,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +bugged,some posts can't be upvoted randomly,AT,1,2017-06-26,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +app is getting better and better,"the way reddit has been rapidly improving lately speciallythr mobile app and all the new profile feature on the website is amazing , as i was writing this review i got a message from one subreddit moderator about an issue with my post like 10 mins ago , and he followed up on my msg quickly and effectively , so thanks alot , thumbs up :) + +keep up the good work :)",US,5,2017-06-26,94,470.0,"(90.0, 95.0]","(450.0, 475.0]" +Den/den,:),US,5,2017-06-26,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Bring back the old Browse Communities tab,"It used to be so easy to discover new communities. All I had to do was find a topic and boom, tons of great subreddits popped up for me to choose. Now i dont get that list of topics so i cant easily find new subs. + +Please go back",US,2,2017-06-26,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +Extremely buggy,Works when it wants to.,US,1,2017-06-26,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Chill with the push notifications,Also the UI is pretty bad compared to a lot of other Reddit apps,US,2,2017-06-25,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Awful,"Terrible app, makes the viewing and posting experience much worse than just going to the website and doing the same thing",US,1,2017-06-25,70,350.0,"(65.0, 70.0]","(325.0, 350.0]" +Please bring back the discover tab,I love the app but the discover tab made it 5/5,US,3,2017-06-25,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +All good,👍,DE,5,2017-06-25,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Yes,Loy,KH,5,2017-06-25,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +The people’s news,User generated news articles makes this app totally unique. You will find stories on here that you can find elsewhere. They are both exclusives and sometimes even first before other news networks pick them up. There is such much content to look at its addictive.,GB,5,2017-06-25,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +Posting,I like the program except every time I try to post a picture th app crashes. Can we fix it?,US,2,2017-06-25,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Comment on the comment section,"Your comment section is a total mess, not attractive and we need to scroll a lot too much. Take example on 9gag's because they did it better",FR,2,2017-06-25,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +Impossible de me connecter sur mon compte,L'application à l'air géniale est l'est de manière générale mais il m'est impossible de me connecter depuis plus d'1 mois et un message d'erreur s'affiche lorsque je saisie mes informations (informations valides je précise).,FR,2,2017-06-25,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Terrible,"Bad app, bad forum.",AU,1,2017-06-25,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Good but one major flaw,"Fantastic app. However, multiple subreddits favorited go missing on a daily basis. This happens only to the subs I visit most. Very annoying bug and it has slipped through several patches",US,2,2017-06-24,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Junk,"Reddit keep spamming me with blocking popups to use this app when viewing the site. I do not want to swap to an app, learn to develop stuff that works in the browser.",SE,1,2017-06-24,19,95.0,"(15.0, 20.0]","(75.0, 100.0]" +可以可以可以,可以可以可以!,CN,5,2017-06-24,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +New Update mutes my podcast,"I obviously love Reddit, but a new update has made it so my podcast app pauses while I browse Reddit. I don't like that! Sometimes I like to listen to music or podcasts while browsing.",US,4,2017-06-24,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +"Landscape mode for iPhone, 3D Touch support",I really wish this app supported landscape orientation and you could 3D Touch to view post media without tapping into the full comment page.,US,4,2017-06-24,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Crash,Newest results in a crash every time I open my messages. This happens on both iPad and iPhone.,US,2,2017-06-23,31,155.0,"(30.0, 35.0]","(150.0, 175.0]" +Landscape mode for iPhone,I really wish this app supported landscape orientation.,US,4,2017-06-23,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +Bad,"The performance is extremely poor, as it requires you to restart app constantly in order to load.",HK,1,2017-06-23,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Stop With the Notificatioms,This isnt getting over 2 stars until it stops constantly asking me to enable notifications. I don't want to enable them so quit asking.,CA,2,2017-06-23,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Security?,What happened to the security controls (PIN/Touch ID)??,US,3,2017-06-23,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +I like it,"I like Reddit so far, and the app has a nice clean look and isn't that glitchy (occasional issues but that's with almost everything). Good job!",US,5,2017-06-23,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +GIFs pause audio,"Not possible to play audio on phone and browse reddit, because opening a gif pauses the audio. + +There's other annoyances too like no way to filter out subreddits.",US,3,2017-06-23,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +😫,Nice but app doesn't work because of last update ): but memes are noice and 🅱️💯⭐️⭐️⭐️⭐️⭐️💯🅱️,RU,4,2017-06-23,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Great UI,Easy to scroll and keep up. Better then website at times!,MY,5,2017-06-23,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +In-app browse bug.,"I have encountered a bug when using the application. The bug is as following: + +When going into the ""Browse Community"" section the letters which are in the right side of the screen don't show all of the letters. For example: I have many communities and subreddits that start their name with the letter ""B"",but I can't seem to find the letter in the bar in the right. + +Please find a solution for this problem, as it looks like I won't be able to fix it from my side. Thank you very much and feel free to contact me for more details and pictures. + +Edit: I found that the problem occurs upon clicking on the little star beside subreddits.",BH,4,2017-06-23,10,50.0,"(5.0, 10.0]","(25.0, 50.0]" +Latest version doesn't work,"None of buttons work, it is all frozen. Mine is in night mode. Nothing loads. Only noticed this in latest update",US,1,2017-06-23,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +"Stop asking for reviews, stop posting notifications for random posts",I've used this app for a while and it's pretty decent but I hate being harassed with what are basically ads for an app I already paid for. 1 star until they cut this stuff out.,US,1,2017-06-22,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Needs to Change Messages,"Good app. But they need to add some more options to your reddit inbox. E.g., the option to delete or archive old, or annoying, messages that you don't want to have to see anymore when you scroll through your inbox. A way to favorite ❤️ conversations so they don't get buried by a bunch of people messaging you. Also, if the same user messages you, but under a new ""subject"", it should link to the previous messages like gmail does (kinda). Guys will re-message me, but I already decided they're not for me, and I don't read/remember all of their usernames, and they end up wasting my time. +Also, they need to add a search function to the messages, so I can search peoples' usernames to see if we've talked before! Gosh! +They need to create more functionality in their mobile app: the ability to edit posts, add/edit flair, etc.",US,3,2017-06-22,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Missing key 'reddit' features,"I love the app but there are some things that are annoying. + +1. Most subreddits require adding flair to post. There is no way to add flair in the app + +2. There is no way to subscribe to post, i.e. r/nosleep without logging into the mobile site within the app.",US,3,2017-06-22,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Awesomesauce,"Love the reddit app, easy browse for my daily dose of memes",US,5,2017-06-22,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Horrible application,"This has got to be the worst read it up available on the App Store using the Safari browser is way better this app is just so blowing up on the iPad is on usable all the buttons are so big and everything looks so out of place soon just wait to be on the iPad. + +I recommend everybody to not use this application and instead use the application called narwhale one is much better",GB,1,2017-06-22,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Please don't auto play adverts,Data is expensive,ZA,3,2017-06-22,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Terrible to use,"How did they make it so hard to browse Reddit? Stick to the Alien Blue app, it's so much better.",GB,1,2017-06-22,31,124.0,"(30.0, 35.0]","(100.0, 125.0]" +Poor,if there was a 0 i'd give it a 0,AU,1,2017-06-22,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +Awesome,This app Is so much better than all the rest,GB,5,2017-06-22,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Unique,It's different from the usual forums it stays interesting and what you can find...well the options are endless,US,5,2017-06-22,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Awesome,Finally the perfect reddit client!,ES,5,2017-06-21,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +"Small text formatting, 3D Touch support","^Please ^fix ^this ^^^^incredibly ^annoying ^text ^formatting ^^for ^^^the ^^^^love ^^^^of ^^^^god! + +The app should allow 3D Touch peeking into media posts. + +Stop asking for notifications to be turned on.",US,3,2017-06-21,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Inability to copy text,please enable the ability to copy titles and comments of sub reddits in this app. very essential!,IN,3,2017-06-21,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +Please stop forcing me to download app on browser,"Whenever I try to use Reddit on the browser the annoying App download window pops up trying to force me to download the Reddit App. Please stop this idiocy. I like the browser better. This is America, let be use Reddit how I fuking want.",US,1,2017-06-21,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Why aren't I getting notified?,I got 6 comments on a post I made but I wasn't notified by any of them. Please fix this.,US,3,2017-06-21,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Garbage,Another form of over moderated social media. Not worth the 30 second download,US,1,2017-06-21,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +👌🏼,Great app,NL,4,2017-06-21,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +"Great for Reddit, pushy for reviews though","Does what it says on the box. Though, it insists on being reviewed with this annoying bar which can't be dismissed. Like pushy little Steve asking adults for approval at every turn.",PL,3,2017-06-21,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +App is terrible,"The Alien Blue app was so superior. Now Alien Blue has changed their version, so it has now lost features. How Reddit could buy out Alien Blue and then release an app that has half the features is beyond me. Pathetic. They should be ashamed.",US,1,2017-06-21,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +Choking with ads,Used to be great. Now every 10th post is a useless repetitive ad for something i don't need or card about. 1/10. Went back to web mobile with ad-block and never looked back.,CA,1,2017-06-21,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +Not intuitive,"Unlike some unofficial apps or like the website, you have to click into a menu to be able to collapse threads. +Annoying when you're reading the front page and want to collapse a dozen things at once. Bad design, should only need to click once. + +Also, when you ""search"" while viewing a subreddit it should search only that sub by default!!! + +Forced to use because can't get alien blue now. +:/ regret deleting it.",CA,2,2017-06-21,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Useless,Super clean app with great functionability unless you try refreshing it then it's the most useless app.,US,1,2017-06-21,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +A neat app but...,"I've got only two complaints. + +It parses markups e.g. ^(superscripts) or **emphasises** in a different way than the web version. That's no good. + +And I love the Night Mode. However in that mode **bold** texts are not bold enough. I can hardly distinguish them. + +I'm satisfied with other things, so keep it up!",JP,4,2017-06-20,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Believe me,I love it,US,5,2017-06-20,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Great. But Improvements, please","BETTER optimization for iPad, please. Not yet? +Quick-reply: why doesn't this exist?",SE,5,2017-06-20,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +Boo.,Most gifs and image links don't work. Switch to another app for a second and you'll lose your place. It stinks.,US,1,2017-06-20,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Sure,"It's fine, it's not some life changing app tho",US,2,2017-06-20,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Nice,Naicu,US,5,2017-06-20,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +Simply the best app,I love it,RU,5,2017-06-20,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +Good app design. Ads are annoying,Make a paid version to get rid of ads. Other than that I think it'll replace alien blue.,CA,4,2017-06-20,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Clean look but with bugs,Sometimes images either are cropped or don't load at all,US,4,2017-06-20,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +Spilt view,Please fix split view. Otherwise okay 😎,AU,3,2017-06-20,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Comments..,"Great app. Looks good ( for Reddit ) + +But with the new update, every gif that I open feels the need to stop any thing else playing. Audiobooks, Spotify, music on my phone, any other kind of media. It didn't happen before so idk what changed.",US,3,2017-06-19,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Better than Facebook,There's an awful button that appears over the posts and pictures on iPhones SE. They don't seem to care about fixing it.,GB,1,2017-06-19,92,368.0,"(90.0, 95.0]","(350.0, 375.0]" +Really good,This app is really good and I'm writing this review in hopes that it'll stop asking me to write a review.,US,4,2017-06-19,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Good,Generally a well made app but I wish there was a way to make webm/gfycat links not compressed and low quality.,AU,4,2017-06-19,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +"Liebe Reddit, nur die App ist so mittel","Allein schon, wie man die neuesten Nachrichten in einem Subreddit findet, ist sehr mühsam. Da könnte definitiv noch dran gearbeitet werden!",DE,4,2017-06-19,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +In-app browse bug.,"I have encountered a bug when using the application. The bug is as following: + +When going into the ""Browse Community"" section the letters which are in the right side of the screen don't show all of the letters. For example: I have many communities and subreddits that start their name with the letter ""B"",but I can't seem to find the letter in the bar in the right. + +Please find a solution for this problem, as it looks like I won't be able to fix it from my side. Thank you very much and feel free to contact me for more details and pictures.",BH,4,2017-06-19,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Pointless??,"Since the latest update, it has been failing to connect to Reddit :(",MY,1,2017-06-19,31,62.0,"(30.0, 35.0]","(50.0, 75.0]" +New inbox UI is awful,"I updated the app to find the inbox UI changed, and now I wish I could go back. It's difficult to see which is a new notification and what is already read.",US,2,2017-06-19,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Chinese please~~traditional,Chinese please~~traditional,TW,4,2017-06-19,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Notifications settings doesn't work,This keep showing notifications of popular posts even if you turn if off,BR,1,2017-06-19,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +👍🏻,"Reddit is the front page of the internet, one stop shop for all the new memes. Check it out.",US,5,2017-06-19,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +Reddit can finally go with you everywhere,"With the refurbished app, which is very enjoyable!",PT,5,2017-06-19,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +Wish I would have known of this sooner,Hands down best thing that's happened to me.,US,5,2017-06-19,94,94.0,"(90.0, 95.0]","(75.0, 100.0]" +Split-view,"Split view on the iPad Pro 10.5"" does not display properly.",US,3,2017-06-19,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +Huh?,Shhh.. reddit doesn't actually exist....,US,5,2017-06-19,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +Bad,What's the point of abandon the good old iPad version for a blown up phone version?,AU,1,2017-06-19,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +LOVE IT!!!,I can't get enough of it. Thanks for making life a little easier sometimes,CA,5,2017-06-19,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +"Great app, but even the most basic functionality isn't available","This app has been getting a lot of well needed updates. However, the most basic feature, editing posts, is not available. + +How can such a feature be not in this app yet? For as long as this Reddit app has been around, I would have thought by now this would be added. + +Get it together.",US,1,2017-06-19,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +No need to ask for location to use auto dark mode,You can simply use system time to switch between light and dark modes. Not comfortable sharing my location on reddit.,BE,3,2017-06-18,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Communities,"Can you bring back the old Communities layout where everything was categorised. I don't understand this new layout, it's difficult to find anything I want to browse, and I can't find the subreddits I used to frequent by never subscribed to.",AU,2,2017-06-18,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +Could be better,Can we please have a landscape mode for iPhone 7 Plus and iPad?? It would make it so much more comfortable to use the app on bigger devices. Otherwise perfect app!,IE,3,2017-06-18,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Great,"I love the app, but when I have notifications turned off and I am still getting notifications of whats trending on subreddits i don't even visit like /r/funny i feel like deleting it and going back to Alien Blue.",US,3,2017-06-18,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +Great app just missing one thing,the app is amazing I haven't encountered any bugs or anything with the app but it is missing the option of creating a subreddit from within the app itself.,US,4,2017-06-18,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Terrible app but slightly better than the mobile site,Both are slow and unresponsive,US,1,2017-06-18,72,216.0,"(70.0, 75.0]","(200.0, 225.0]" +Needs to Change Messages,"Good app. But they need to add some more options to your reddit inbox. E.g., the option to delete or archive old, or annoying, messages that you don't want to have to see anymore when you scroll through your inbox. A way to favorite ❤️ conversations so they don't get buried by a bunch of people messaging you. Also, if the same user messages you, but under a new ""subject"", it should link to the previous messages like gmail does (kinda). Guys will re-message me, but I already decided they're not for me, and I don't read/remember all of their usernames, and they end up wasting my time. +Also, they need to add a search function to the messages, so I can search peoples' usernames to see if we've talked before! Gosh!",US,3,2017-06-18,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +ALMOST Perfect,"As someone who has been using the BaconReader client for years, I was so stoked to finally have a real reddit app for the iPad. Vertical orientation is great, but at the same time I wish there was a better layout for horizontal orientation. Maybe more functionality or a sidebar similar to the BaconReader layout. + +Overall, though, great app.",US,4,2017-06-18,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Where is the discover tab?!,No discover tab?! It was most convenient one.,RU,1,2017-06-18,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good to use,Nice app.,SG,5,2017-06-18,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Why is there no feature to block or blacklist NSFW content?,"I'm sick of scrolling through /r/all and NSFW content being every third post I see. + +If you could please add a ""Hide NSFW Content"" Switch in the settings I'd be really thankful. + +Or a Blacklist feature in general so I could black list subreddits I'm completely sick of seeing.",US,3,2017-06-18,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +"Like the app, but you bugged incessantly for a rating",And now I'm giving you one star while saying nice things. I'll change it if you make it so I can get rid of your little reminder to rate without killing and reopening the app.,US,1,2017-06-18,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Can't go wrong,It's reddit. Enough said,US,5,2017-06-18,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app but I have feature requests,"Main Feature Requests + +1. Multi-reddit configuration +The iOS app is what I primarily use rather than the web desktop version. I'd love to have the ability to add/remove multireddits and the subreddits within them. As of now, we can only view it + +2. ""Copy text"" option on +a. OP's original post +b. Inbox/messages + +This option is only available on comments within a thread but if I want to copy a snippet from the initial post, I can only use share and only copy the link to thread itself and then I'd have to open it on my mobile browser. + +The messages is even more of an issue as well because a lot of times I might want to copy a link or snippet of text but there's no option whatsoever so not only do I have to go to my browser but I also have to login. + +3. Other minor Requests + +Compact and card view customized to a particular subreddit + +Sometimes a subreddit isn't very image or video heavy so I a compact view is ideal for me while others are. Another option is adding an image/video gallery module to a subreddit which you guys already have within the ""discover"" tab + +Movable subscriptions. You can favorite a subreddit but after that you have to remove it all in reorder it. Perhaps manual reordering rather as an option along side the default alphabetical could work too",US,3,2017-06-18,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Happy days,Great works well...,NZ,5,2017-06-18,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Edit Posts?,He app is overall great! Just would love to have a feature to edit a post.,US,4,2017-06-18,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +"Love Reddit, but...","Since the new update, I no longer get notifications if someone responds to my post. They do not show up in my inbox at all. Comment replies and messages show up like normal, but nothing about post replies. Frustrated. Notifications turned on but nothing shows up.",US,4,2017-06-18,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Super super app,Super app,TZ,5,2017-06-18,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Excellent,The app is great,IE,5,2017-06-17,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +Ffffyayayay,😂😂😂😂😂,CA,4,2017-06-17,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +Not optimized for iPad,This app is still horrible to use in split view multitasking for iPad. Will this be fixed for iOS 11 or what? Really annoying! Imgur is MUCH better and handle iPad screen as it is supposed to!!!,SE,2,2017-06-17,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Bomb.com,"Great app, easier to use than old version. I love this community.",US,4,2017-06-17,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +great app,"recommended!!! +thank you sooo much!!!",IN,5,2017-06-17,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Great app,"Easy to use, easy to go back etc.",GB,5,2017-06-17,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +The_Donald is only the Real Reddit,Most Sub-Reddits are boring & empty.The_Donald & Apple are attacked all the time.So be aware of Hillary Bots,US,4,2017-06-17,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +I cry real tears,It relaxes me to just sit and scroll through Reddit every afternoon. Sometimes I even laugh so hard I almost pee my pants (not really but real tears do stream down my face). Very little else in this world makes me laugh aloud like that. Thanks Reddit!,US,5,2017-06-17,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Not scaled to screen.,Why is there so much wasted space in landscape and portrait mode? Can't even use this wasted space to scroll. Looks like an iPhone app on my iPad mini.,US,1,2017-06-17,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Underwhelming way to experience reddit,I've been using this app on my iPad for months with mixed results. The pull-to-refresh UI is annoying for a fast-changing comment thread. And suddenly it won't let me post comments. One star for poor quality.,US,1,2017-06-17,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +Share button does not work,"So, the share button is broken on this new version. + +Update: the share button still does not work. + +It works now",US,5,2017-06-17,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +Easy & fun to use,A +,US,5,2017-06-17,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Spills all the tea,The tea has be spilt about rupauls drag race I am shifted,US,4,2017-06-16,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +Love it,"It's as awesome as it should be. It's on mobile, so it is limited, but it's what the user should expect",US,5,2017-06-16,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +Works well when it feels like connecting,"Constant service drop outs when the mobile site works great. This happens on mobile and wifi in multiple locations, I get that stupid moose error. Wish I still had one of the other Reddit apps that worked consistently. When it does work, it is very good. But the poor reliability kills it for me.",US,2,2017-06-16,10,50.0,"(5.0, 10.0]","(25.0, 50.0]" +Great,Everyone is so funny,US,5,2017-06-16,73,219.0,"(70.0, 75.0]","(200.0, 225.0]" +"Obscure, normal, interesting, alarming and humorous all at once","The best community, I mean it, really the best. Better than all of the other communities. Believe me.",US,5,2017-06-16,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Very nice,"The app works very well. +There are a few minor features from the desktop site that I'd like to see brought to mobile, like editing a post flair after posting, or setting user flair on subreddits that support it.",CA,4,2017-06-16,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +"put back old ""browse communities""",the new way to search for communities is so annoying. i don't want to subscribe to a bunch of random communities. i want to find the ones i browse on occasion. not a fan.,US,1,2017-06-16,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +"Great app, great site",An app that I was waiting for and it works very well,CL,5,2017-06-16,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app,Thanks guys,RU,5,2017-06-16,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Hot stuff,Hot hot hot,US,5,2017-06-16,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Kapanma hatası,Durduk durmadık yerde kapanıyor,TR,2,2017-06-16,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Please stop trying to influence what I read,and also make the be able to browse single big subs like /r/iama and don't say it can't reach Reddit when it can reach other subs.,DE,3,2017-06-16,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Please stop trying to influence what I read,and also make the be able to browse single big subs like /r/iama and don't say it can't reach Reddit when it can reach other subs.,DE,3,2017-06-16,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Good,"But could be better . Whenever I'm directed to a Redditpost form google ( whatever browser) it only ever shows the front /home of Reddit and never the actual post I've supposedly been directed to. +But it's a quick and reliable app when it comes to other functions, it doesn't freeze and jump as many others .",SE,4,2017-06-16,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Veldig underholdene app,Beste appen i verden,NO,5,2017-06-16,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Mittlerweile gut brauchbar,Und besser als der nunmehr ausgedient Alien Blue Client,DE,5,2017-06-16,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Decent but newest update is not great.,"Works well as an app to browse reddit. Never really have issues with loading pages or any of the media. + +Only issue is that the newest update changed the ""explore subreddit"" from a coherent list of options to now a watered down version of past success. What's the point of an explore subreddit tabs if it literally had less than half of the original. Seems more restrictive than liberating in my opinion.",US,3,2017-06-16,78,156.0,"(75.0, 80.0]","(150.0, 175.0]" +Annoying,Edit: I have no choice but to downgrade my score. This app keeps asking me to enable notifications. I don't want that. Stop nagging!,CA,3,2017-06-16,90,360.0,"(85.0, 90.0]","(350.0, 375.0]" +App is fine,"But I hate that I had to download it because the mobile website literally won't even let you browse due to the app banner. Frustrating, guys.",US,1,2017-06-16,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Don't want notifications,"Just let me say ""no"" once and for all. Stop repeatedly nagging me.",US,2,2017-06-16,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Nice!,The best 😎,MX,5,2017-06-16,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Can't log in,"I loved this app for the first year or so that I used it. I deleted my old Reddit account and created a new one, and now I can't log in. It just says ""please try again later"" over and over again.",US,2,2017-06-16,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +I love Reddit,Cause it's the best,US,5,2017-06-16,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +Unread message,"Every time I use the app, the app says there is an unread message. I click the ""mark all items read"" button and it gets rid of the unread message but when I open it up again it shows it's still unread.",US,3,2017-06-16,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +Annoying,Does not stop asking to enable notifications. More annoying than enjoyable. Find an alternative app.,US,1,2017-06-15,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +Great port to mobile,It's great,US,5,2017-06-15,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Reddit!,<3,US,5,2017-06-15,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +"App is fine, community is trash","App works great, but Reddit is full of completely trash people with garbage views that permeate into almost every subreddit. Reddit does as-close-to-nothing as possible to moderate their community in any meaningful way and will eventually be destroyed by their own inaction and the handing of their site over to MRA/white supremacist/Donald-stroking hateful idiots.",US,1,2017-06-15,83,415.0,"(80.0, 85.0]","(400.0, 425.0]" +Spicy Reddit Memes,"Reddit is amazing. It's a place to debate, discuss topics of concern, trigger people on the internet. Meet new people and connect through threads, subreddits etc... and also REEEEEEEEEEEEEEEEEEE",US,5,2017-06-15,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Stop sending me notifications,I don't care about what's trending. Your worthless app doesn't have a setting to turn it off. Screw you.,US,1,2017-06-15,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Be a lot cooler if you did,"App id great, yeah. I just think the app would be a lot cooler if there was a slider or but or setting (i do not care) that would allow you to switch off all nsfw posts from coming up on the Front Page or rAll. Something like seems like it might be an easy addition. Just my 2 cents.",US,5,2017-06-15,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Why?!,"Why is the ability to thumbnail subreddits removed?! + +EDIT: Nevermind. It's still there. I was using night mode and didn't carefully look. Carry on. Reddit is great 👍🏽",US,5,2017-06-15,78,390.0,"(75.0, 80.0]","(375.0, 400.0]" +Put the browse communities tab back,"I don't want to have to sub to a bunch of communities just to view the options available in each category. Put the browse communities tab back the way it was + +----- +I'm so happy to finally have an app for browsing reddit. I never spent any time on Reddit except when it turned up in a Google search, but now it's the first app I open when I wake up in the morning! Sometimes the app won't load right on my phone, so not a perfect rating, but it does pretty well",US,1,2017-06-15,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Overall great app,Thanks for new updates that made this app very fun to use,US,5,2017-06-15,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Works fine,No issues.,CA,5,2017-06-15,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Good job of making a complex forum service simple,The official app is better than alien blue which I was using for awhile. Definitely makes the front page of the internet the first app I check on my phone,US,4,2017-06-15,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Crashes instantly,Just downloaded the new update and the app crashes instantly.,CA,1,2017-06-15,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +Better than most,Not the most feature rich but does the job and I'd simple to use.,GB,5,2017-06-15,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Safari View Controller?,Safari View Controller!,DE,1,2017-06-15,42,84.0,"(40.0, 45.0]","(75.0, 100.0]" +What you'd expect.,"The front page of the internet is exactly that, Reddit user see trending pieces way before they hit mainstream media giving you a bit of the scoop before anyone else. The app is straightforward and simplistic keeping it very easy to use and understand even for a beginner. I'd recommend this app to most people.",GB,5,2017-06-15,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Gets the job done,"My biggest gripe is on iPad: you can't scroll in the white space left and right of the column. That's generally where my thumbs rest when I'm using an iPad, so it's a big pain to scroll because I have to move my hand across the screen. The Twitter app is a great example of how it should work correctly.",US,3,2017-06-15,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Fungerer finfint,Kjapp og intuitiv.,NO,5,2017-06-15,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +I really do like cats,"But not like, in a weird way. +That said, this app is the real mvp. +I'm sure there are better apps out there but at this point I'm too aftaid to ask. +Go you.",GB,4,2017-06-15,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Awesome,Love Reddit man,US,5,2017-06-15,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +<3 Reddit,Nothing like having it on your phone.,US,5,2017-06-15,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Crashes,Every time I click on anything...? Especially if I try to check my inbox!,US,1,2017-06-15,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Why?!,Why is the ability to thumbnail subreddits removed?!,US,3,2017-06-15,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Some recommended changes,"Overall, the updates were good. But I would like to address some changes. First off, please bring the ""write a post"" thing back to the bottom bar. It's annoying to scroll all the way to the top. Second, I get these notifications. When I get multiple of the same post, I have to click through every single one of them to get rid of the notification. Please make it so that all the notifications of each post disappears when I read it. For example, if I get two different post notifications, I click one of them and both are on my screen, I want both of them to be gone. I would like an indicator, like an orange dot (or a balloon) on unread notifications. Finally, when I click on the notification, and click back, please make it so that it shows that I read it. If I want to clear all notifications, I don't want to click the same one over and over again",US,3,2017-06-15,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Would have given more,"I thoroughly enjoy Reddit, I really do. However I do not enjoy being solicited for my reviews, feedback, ratings etc. I felt compelled to write this to avoid any additional solicitations. + +Dang. I got another solicitation to review.... please stop!",US,3,2017-06-15,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Very nice .. first timers will find it difficult to navigate ...,Overall awesome app ... first timers won't find easy easy ... but quick to understand and cool,IN,4,2017-06-15,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Love your app,It's great!!!,US,5,2017-06-15,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Sweet,Sick,US,5,2017-06-15,31,62.0,"(30.0, 35.0]","(50.0, 75.0]" +What other choice do I have,As long as it works,US,5,2017-06-15,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +amazing app but one flaw,i follow some weird subreddits and wish there was an option to lock the app so no one can go on my phone and look at them😂😂,CA,4,2017-06-15,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +It's Reddit It's Great,Enough said,US,5,2017-06-15,2,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Need access to photo library to share or copy image.,No way.,US,1,2017-06-15,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Bom,Bem desenhada e intuitiva!,PT,5,2017-06-14,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Yassss,LOVE THIS APP,US,5,2017-06-14,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +memes,spiciest and edgiest memes fam,US,5,2017-06-14,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +1 bug left guys,"I bought a new 12.9inch Pro iPad and thought it would fix itself but no it didn't, please fix your app reddit so that when I do Splitview 50/50 with 2 apps it doesn't clip the edges of your app. This is replicated on any iPad so please test and fix it.",US,4,2017-06-14,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Great,Love it,DE,5,2017-06-14,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Stop asking for notifications,"I've disabled notifications, yet after every update you ask. So annoying",AU,1,2017-06-14,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Awesome app,Love it! So useful!,UA,5,2017-06-14,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Last update crash,"App crashes when browsing communities and selecting popular near me from the ""interests"" list.",US,5,2017-06-14,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +It's quite stable,"Pretty good, hasn't crashed on me in the 8 months or so that I've been using the app. No ads, and the app's user interface is intuitive, mirroring the desktop version of the website.",US,5,2017-06-14,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +The_Donald is why I use Reddit,Make no mistake.Most Sub Reddits are sad 😭,US,4,2017-06-14,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Swipe to close comment threads??,"Why oh why can you not integrate swipe to close comment threads? It is the only piece of functionality the official app is missing to make it better than AlienBlue. Until than I will stick with the better app. AGAIN, WHY?",US,2,2017-06-14,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +It's dope,It's literally got everything on here,US,5,2017-06-14,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +Notifications won't turn off,I've turned off notifications but the app still gets making them. Download a different Reddit app.,US,1,2017-06-14,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +❤️,"Спасибо, что вы есть!",RU,5,2017-06-14,92,368.0,"(90.0, 95.0]","(350.0, 375.0]" +Ja,Me gusta.,NL,5,2017-06-14,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Excelente !,"Está app tiene todo tipo de noticias y chismes de interes , muy buena para pasar el rato 👌🏼",US,5,2017-06-14,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Avid lurker,"Clean app design, functions similar to alien blue so it was a smooth switch. Only downside is it once had a small banner at the top saying I should post something, and I'm really just a Reddit lurker",US,5,2017-06-14,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Finally !!,"We finally have a real Reddit client and that is pleasant to use! +Congrats guys, continue this amazing job!",FR,5,2017-06-14,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +5 stars!!,This is absolutely great! 😁,GB,5,2017-06-14,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Fun app/site,"Really cool site and app to read about, get opinions on, hear a new perspective or get some humor on pretty much any thing under the sun.",US,5,2017-06-14,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +A Facebook for kids,Have not really ran in to a lot of bad looking words or things,US,5,2017-06-14,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Eh ouais,L'application est lourde,FR,5,2017-06-14,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +Great app,"Great app, very functional",US,5,2017-06-14,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Fantastic App,I recommend Reddit to probably two people a day. It's the best app I've ever had.,US,5,2017-06-14,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +I'm Reddi to write a good review.,"I love the app, it's so easy to use and I have not ran into any problems with it yet. Very very well made!",US,5,2017-06-14,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Came here without prompt to review,"Thanks for acting on previous feedback! + +I keep expecting Save to be where Share is, and Share to be where Save is. The current locations keep me from quickly doing either. + +------- + +Remaining from previous: +Please add a way to get down to the last thing I read. Accidentally hitting Snoo takes me back to the top and I quit the app instead of scrolling to find that point manually.",US,4,2017-06-14,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Great app!,Nice,SE,4,2017-06-14,38,152.0,"(35.0, 40.0]","(150.0, 175.0]" +Works great!,I have no complaints!,US,5,2017-06-14,55,275.0,"(50.0, 55.0]","(250.0, 275.0]" +Wonderful app,"This app is amazing,little almost no bugs,lots of laughs,many groups/communities and it's a friendly app",CA,5,2017-06-14,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Kpalafar,Super,RU,5,2017-06-14,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Much better than it was,"The app really improved! I enjoy reading sassy comments on how the world works on my way to lesson, and so should you!",IT,5,2017-06-14,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Great app for browsing Reddit!,Top Tier Reddit App!,US,5,2017-06-14,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +Love it,When I got sick of fb.,MY,5,2017-06-14,58,174.0,"(55.0, 60.0]","(150.0, 175.0]" +OH YEAH!!!,Number 1 internet news! Best news!best gifs! Best videos! Yum tasty as F*ck!,US,5,2017-06-14,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Not Alien Blue,"Obviously I wanted to see what all the hubbub was about and and it does look aesthetically nice, however the lack of features as in Alien Blue are disappointing. One of the things that I use the most is the touch and hold to open imgur links and videos without having to go into the post entirely. This is just one of the feature that I really like about Alien Blue and if they're able to resolve it I may consider coming back. + +Update: 20170614 + +I've tried out the app again recently and there have been significant improvements. However I'm constantly getting that ""Sorry, can't reach Reddit"" error multiple times a day and it's not due to connectivity. Remove and reinstall doesn't make the issue subside. Hey maybe it's me but if they can fix this then rating will improve.",US,2,2017-06-14,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Super App,Macht viel sehr viel Freude 😊,DE,5,2017-06-14,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Works great,"The app works great, much better than the browser and saw tits on subreddit. So definitly 5 stars",NL,5,2017-06-14,36,144.0,"(35.0, 40.0]","(125.0, 150.0]" +Best,This is the best app I've ever used- works perfectly,GB,5,2017-06-14,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Best,This is the best app I've ever used- works perfectly,GB,5,2017-06-14,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Amazing,Great app love it.,US,5,2017-06-14,89,178.0,"(85.0, 90.0]","(175.0, 200.0]" +Reddit,Best app for viewing Reddit on a mobile device,US,5,2017-06-14,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +Best social media,FeelsGoodMan,GB,5,2017-06-14,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Good app,"I like the app; good overview, easy to navigate. There are acasional freezes, but nothing out of the normal.. (I think somebody mentioned) +The advertisments are pretty annoying, even more with those generic stock images they use. I would even pay to get rid of them, but sadly there is no option for this.",CH,4,2017-06-14,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +It's fun,I like going on the front page to see what's trending but finding other sub Reddits is easy,CA,4,2017-06-14,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Worth down loading,Great app. Good for a laugh and loads of interesting things to pass the time,AU,5,2017-06-14,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +G,A little slower than site but good,US,5,2017-06-14,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +打开新世界的大门,良心app,非主流信息集中地,CN,5,2017-06-14,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Love it💕💕,This app never disappoints me,US,5,2017-06-14,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +love it,i really enjoy this app,US,5,2017-06-14,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Quick and Easy,Great app!! Quick and easy to use. Love it,AU,5,2017-06-14,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Best reddit app out there,Finally will browse Mobil,US,5,2017-06-14,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Good,Me irl is the best sub reddit,CA,5,2017-06-14,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +I see the hype,It's great,US,5,2017-06-14,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +It's a funny and helpful place,Ask and thy shall receive. Seek and thee will find. Seriously though ;),US,5,2017-06-14,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Lame,I wouldn't even have downloaded this except the website harasses you to do it.,CA,1,2017-06-14,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +V good,Love it,US,5,2017-06-14,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +好用,不知道比贴吧nga之类的强多少,CN,5,2017-06-14,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +10/10,It should have been 10 stars because this app deserves it,VN,5,2017-06-14,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Works terrible on iPad,Split screen support on iPad is awful. It cuts off part of the window. Basically the app doesn't know how to scale. I'm pretty sure Apple has a pretty much drag and drop API that allows your apps to scale easily between devices. How does a site like reddit not know about it?,US,1,2017-06-14,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Fun and Interesting,First app I chose to review,US,5,2017-06-14,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Notifications are horrible,"Notifications should be relevant. Not just crap memes and racist jokes. + +Turned em off but the point is they should be better. + +And stop begging for reviews.",US,1,2017-06-14,98,294.0,"(95.0, 100.0]","(275.0, 300.0]" +It is Wednesday my dudes,"Yeah the app is good, I with there were image previews in photoshop battles though instead of making you click the link every time",GB,5,2017-06-14,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Need to filter my posts,"I like more the 'new' view when looking at my own posts. On the desktop I can change it, not on mobile.",US,1,2017-06-14,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +"Fantastic on the iPhone, but...","... on the iPad, the UI is so bad I had to give it 2 stars only. Alien Blue for iPad was a nearly perfect iPad reader app. Perfect info density, great design, can scroll with my right thumb without pain... you know the basic stuff (what is the deal with apps and non-scrollable 1""+ areas on the edges?). Please take some usability cues from AB, before it stops working on my iPad like it did on my iPhone.",US,2,2017-06-14,31,124.0,"(30.0, 35.0]","(100.0, 125.0]" +It's Reddit,The best.,CA,5,2017-06-14,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +It's good,It's good,US,4,2017-06-14,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Please fix a otherwise great app,"I bought a new 12.9inch Pro iPad and thought it would fix itself but no it didn't, please fix your app reddit so that when I do Splitview 50/50 with 2 apps it doesn't clip the edges of your app.",US,2,2017-06-14,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Finger on the pulse,"Like to check the ""hot"" category to see what the rest of the net will be talking about tomorrow.",US,4,2017-06-14,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Better then all the rest,Just started using it fully and the community is of helpful,GB,5,2017-06-14,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +So good,I'll name my first born after this app,AU,5,2017-06-14,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Love Reddit,Unlike FB there is no commitment to liking what a friend posts. I read and like whatever I want.,CA,5,2017-06-14,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +Better than iAlien,"The Reddit app loads smoother than iAlien, crashes less and previews GIFs on the fly.",US,5,2017-06-14,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good site,It shows me what I wanna see. Seems like that shouldn't be hard to find but it is,US,5,2017-06-13,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +Good app.,It's a good app.,RU,5,2017-06-13,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Still working out the kinks,It's getting there,US,4,2017-06-13,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Gr8 m8 8/8,Dis be gr8,US,5,2017-06-13,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Redditt Mobile rocks,Great user experience. Great content and communities.,CA,5,2017-06-13,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +The_Donald,Is the greatest..... if you subscribe to the_donald.....otherwise ehhh!,US,5,2017-06-13,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +Leave me alone,It's great! Fudge!,US,5,2017-06-13,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Amazing,No words needed,US,5,2017-06-13,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Crashes when I post an image,"Whenever I choose to post a picture and select the image I want, the app crashes, does this only on the newest version",US,2,2017-06-13,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Topkek,Topkek appie,NL,5,2017-06-13,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Awesome!,Great app!,US,5,2017-06-13,4,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +memes,MAYMAYS,GB,5,2017-06-13,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Amazing,Love it,ZA,5,2017-06-13,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +This app is amazing,"My dog came back to life and I learned to love again. Thanks, Reddit app!",US,5,2017-06-13,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +Top marks,Each sub is fascinating and detailed. Great app and site.,CA,5,2017-06-13,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +It just works,It for sure does the work.,US,5,2017-06-13,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Flawless app,"Really intuitive, clear, and the night mode is really nice, almost as easy as using your PC",GB,5,2017-06-13,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Access,I am for the access to the information and the round table format,US,5,2017-06-13,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Covfefe,Covfefe,US,5,2017-06-13,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Simple and perfect!,"I've used many Reddit clients, and I may switch back to one of them at some point. But I really like the simplicity of the official app. 5/5",US,5,2017-06-13,31,62.0,"(30.0, 35.0]","(50.0, 75.0]" +Amazing,"Great app!! +Short review just wanted to pop over and give it a high rating! +It is super good about not using much data!",US,5,2017-06-13,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Clean,Do the job perfectly.,FR,5,2017-06-13,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it,My friend just introduced me to reddit and it stole my life away.,US,5,2017-06-13,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +"Reddit is great, but not on iPad","I love Reddit and use it daily. Although I am glad they have released their official app for iPad; their idea of landscape support is far from enjoyable. Indeed it is a measly column central on the screen, and you can only scroll by dragging the central column. Why not fill the screen with more content? Looking forward to seeing improvements.",GB,4,2017-06-13,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +great,very good,GB,5,2017-06-13,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Love it,Best 👌🏼👌🏼,MK,5,2017-06-13,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +stop,stop asking if i enjoy reddit every time i launch the app thanks,US,1,2017-06-13,46,92.0,"(45.0, 50.0]","(75.0, 100.0]" +Yaaaas.,😂👍🏻,CA,5,2017-06-13,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Great UI Design,But the rules is too hard!!!!,CA,4,2017-06-13,98,294.0,"(95.0, 100.0]","(275.0, 300.0]" +I do like it a lot!!!,It's very nice!,US,5,2017-06-13,16,16.0,"(15.0, 20.0]","(-0.5, 25.0]" +Bad community,"Besides the obvious liberal bias in any of the main threads, app is okay, however community is garbage",US,3,2017-06-13,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Everything changes again,Life is different after having Reddit on the phone.,SG,5,2017-06-13,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Luv it,Great procrastination app!!,GB,5,2017-06-13,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Amazing,Love it! Definitely addicted!,US,5,2017-06-13,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +Great Reddit Browsing App!,If you like Reddit you'll enjoy having this App to keep up with your favorite subreddits when you are on the go!,US,5,2017-06-13,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Better than the impersonators,Official reddit app was worth the wait. Actually it took way to long but they nailed it. Upvote.,US,5,2017-06-13,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +reddit ruined my grades,totally waste all my time on this app but Im not complaining — its great,US,5,2017-06-13,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Dope,Pretty good,US,4,2017-06-13,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Fun!,"Easy to use, really enjoying it right now!",CA,5,2017-06-13,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Good,US,5,2017-06-13,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Awesomesauce,:),CA,5,2017-06-13,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +At Reddit's bequest.,"Don't read this incorrectly. Yes. Five stars. I gave Reddit five stars after they asked me to rate them. Reddit has always been the best reddit it can be whether at your own risk you choose to indulge I must urge you to Reddit responsibly. Long term over exposure to Reddit can cause the following side effects: dry mouth, jaundice, nausea, heartburn, indigestion, inability to fall asleep or stay asleep, fatigue, shortness of breath, illusions of grandeur, anhedonia, mania, bouts of dissociation, migraines, flu-like symptoms and in rare cases spontaneous human combustion. Talk to your doctor today about Reddit : filling in a new future together.",US,5,2017-06-13,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +It's great,"I was skeptical for a while after coming from Alien Blue, but now the reddit app is solid. Keeps me entertained during movements every day.",NZ,5,2017-06-13,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Its reddit,On iphone...well optimized app.,US,5,2017-06-13,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Improved,Gotten much better. Has become my primary Reddit app since antenna has gone down in quality.,US,5,2017-06-13,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Sweet,One of the better places for discussions.,US,5,2017-06-13,16,80.0,"(15.0, 20.0]","(75.0, 100.0]" +"Different, good type of different","Another, separate social media platform from fb & twitter. Variety is the spice of life. Still learning both twitter and reddit, but am quite happy with both. Reddit seems more flexible but.... at least two thumbs up??? At least so far....",AU,5,2017-06-13,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Love this app!!!,"So much fun, I'm surprised it's not illegal; LOL...",US,5,2017-06-13,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great,Love the app makes reading and commenting smooth and easy,US,5,2017-06-13,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Love,Reddit,US,5,2017-06-13,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +An app worth getting if youre a reddit fan :),I really love how it looks on the iphone 7! Thanks for the great work. Wish there was an easier way to view all my subscribed subreddits :),CA,4,2017-06-13,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Good app. Very informative posts.,I love Reddit. I always thought it was weird for some reason but I tried it out and I really like it. I've also received a lot of help from others on the app.,US,5,2017-06-13,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +很方便好用,比web端都方便,CN,5,2017-06-13,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Very Good,What the title says,CA,5,2017-06-13,35,35.0,"(30.0, 35.0]","(25.0, 50.0]" +good,fun,CN,5,2017-06-13,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Left FB for Reddit,"It's a pretty sweet site. I'm still getting used to the format. I'm probably the last person on Earth to try it out. Lol. Gave up the data mining, insecure and invasive FB for the more chill and diverse Reddit. You should too.",US,4,2017-06-13,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Reasonably efficient.,Nil,MY,4,2017-06-13,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +Love it,Reddit has changed my life.,AU,5,2017-06-13,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Lol,不错嘛,CN,5,2017-06-13,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Harassing,Stop harassing me to rate you,US,1,2017-06-13,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +"Functional, but barely","I just wish I could have Reddit Is Fun for iPhone. For how long the official Reddit app took to be made/home out, you'd think it would be very thorough, well made, and easy to use but it's not, much like Reddit mobile. So disappointing.",US,2,2017-06-13,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +Get a kick from random posts,I love to go on some random sub reddit and browsing. But I do miss the rankings not being on this app.,US,4,2017-06-13,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +I came for the cats,And left with the rats,US,5,2017-06-13,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it!,:D,US,4,2017-06-13,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Awesome times a million!,This is the best app everyone should have it!,US,5,2017-06-13,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Cool and Fun!,Great,BR,5,2017-06-13,31,155.0,"(30.0, 35.0]","(150.0, 175.0]" +This ok,Just something to go on when you're bored,US,4,2017-06-13,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Be smart,"Reddit! Reddit!! Reddit!!! A place where you can express your feelings, share your ideas and get feedback that can either make you or break you. But, it's a community you should be in regardless.",US,5,2017-06-13,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Thia is good,Such a good app.. nothing else to say,CA,5,2017-06-13,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Redditicio iphonacri,❤️❤️❤️,AR,5,2017-06-13,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Very Pleased,A great social media platform. Can't complain.,CA,5,2017-06-13,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +Best app ever,Functional and so entertaining,US,5,2017-06-13,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +Perfekt!,"Übersichtlich, stabil, optisch ansprechend und funktioniert ausgezeichnet. Ist mir persönlich lieber als am Desktop.",AT,5,2017-06-13,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Decent app but search is awful,The only complaint I have is that when I need to search for something it is impossible.,US,4,2017-06-13,19,57.0,"(15.0, 20.0]","(50.0, 75.0]" +So glad you have a real app now!,And it works great! Cheers to good internet communities <3,US,5,2017-06-13,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +"It was great, better than ""Cats...""",I'd go see it again and again...,US,5,2017-06-13,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +It's somewhat entertaining,Good bathroom reading.,US,3,2017-06-13,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Irritating prompts,Finally rated the damned thing so it would stop prompting me to do so.,US,1,2017-06-13,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Awesome,Reddit is a very interesting app,US,5,2017-06-13,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +fino,"ta fino, echenle una mirada si saben ingles les prometo que se van a reir",CL,5,2017-06-13,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Nom nom nom !!!!!!!!!,Nom,US,5,2017-06-13,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Can't live without,The best reddit client ever,CA,5,2017-06-13,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +New user,"Just have to take the time to learn it. +Check r/cringe if you like awkward humor",US,5,2017-06-12,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Great,Nothing else like it!,GB,5,2017-06-12,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Awesome,Amazing,US,5,2017-06-12,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +LOve it,Great app. User friendly,CA,5,2017-06-12,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +The Best Comunity,"I think this is a very good app for people who like to know more about whats going on in the world, wanna learn new stuff and to, obviously, have fun and laugh",PT,5,2017-06-12,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Fun and great,Great to use and easy,US,4,2017-06-12,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +/r/ILOVEREDDIT,Reddit is a great app and I really enjoy using it.,AU,5,2017-06-12,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Reddit app,smooth running app. Makes life worth living.,US,5,2017-06-12,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Love Reddit,Love this app!,CA,5,2017-06-12,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Great!,It's great,US,5,2017-06-12,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +Terrible,So many assholes on Reddit. Reddit needs to monitor these people!,US,1,2017-06-12,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +is gud,do job muh internet very good yes,US,5,2017-06-12,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Don't put an 8 minute restriction on comments.,"8 minutes on posts are fine, but on comments it is just awful.",US,3,2017-06-12,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Good content.,I delight in the sensibility of Reddit users.,US,5,2017-06-12,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Love Reddit,Excellent,GB,5,2017-06-12,87,174.0,"(85.0, 90.0]","(150.0, 175.0]" +Better UI than the last time I used it,"I don't remember exactly when was the LAST time I really used Reddit, but it has gotten better when I re-downloaded it two days ago. It's much easier to locate when other users replies to your comment and such. Great improvement!",US,4,2017-06-12,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +😆,Great app,US,5,2017-06-12,46,92.0,"(45.0, 50.0]","(75.0, 100.0]" +Excellent!,Great app! Reddit takes me to places that I didn't realize existed.,US,5,2017-06-12,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Reddit,Fun to use,NL,5,2017-06-12,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Cool app,It's kinda like a social media app that shows you what you're interested in,US,4,2017-06-12,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +PLEASE cool it with push notification reminders,"I don't like push notifications. I turn them off on every app. I hate how when you have them off for this app, every time you launch it, it asks you if you want to turn them on. PLEASE add a ""do not ask me again"" thing? It's very annoying. If the app didn't do that, I'd give it 5 stars.",US,3,2017-06-12,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Can't complain,"I've forgotten my username 3 times and they made it simple enough to join again. I'll stay, I guess",US,5,2017-06-12,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Awesome,"Sleek, fast, and to the point!",LV,5,2017-06-12,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Great,Cool app I really like it,US,5,2017-06-12,36,144.0,"(35.0, 40.0]","(125.0, 150.0]" +All good,👍🏼👍🏼👍🏼👍🏼👍🏼,IE,5,2017-06-12,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Terrible,"Always nagging for a review, so here",US,1,2017-06-12,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Engaging,Fun way to keep up with interesting topics and people,US,5,2017-06-12,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Love it,Great app. Love it,PH,5,2017-06-12,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Love it!,"Accessible, lovely interface 🙂",ZA,4,2017-06-12,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +5+,Работает отлично.,RU,5,2017-06-12,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Great for Browsing,This app/website has all the content you could possibly want all under the Reddit umbrella. Love it.,GB,5,2017-06-12,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Great app,No need of tools,CN,5,2017-06-12,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +It's reddit.,You either like it or don't like the internet.,US,5,2017-06-12,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +A very functional version of the original,"Let's be honest, usually apps to browse websites are clunky things with too many buttons you can't find. Most often you just give up and go directly to the site in your favorite browser despite the small font. This is one of the few apps that is effective for this job.",US,5,2017-06-12,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Great,Terrific Reddit app,ZA,5,2017-06-12,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Is good,Yeet,US,5,2017-06-12,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +Dope,Dope.,US,5,2017-06-12,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Great! Love it!,Was just introduced to this site and I love how I can pick what I see and subscribe to.,US,5,2017-06-12,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Hits all my important spots.,Works just as seen on TV. Covers in one coat. Taste great. Less filling. Kills time like no other site...,US,5,2017-06-12,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Night mode is perf,I love jt,CA,5,2017-06-12,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Amazing,Matches the description,NO,5,2017-06-12,86,86.0,"(85.0, 90.0]","(75.0, 100.0]" +Savage,Imgoingtohellforthis,US,5,2017-06-12,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Actually a pretty amazing app,"I was hesitant to download this as I liked browsing reddit on safari, but this app is actually pretty amazing. Perfect app perfect score 5/7",US,5,2017-06-12,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Cookiedeandon,I like this app so much and my cat like it,US,5,2017-06-12,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Always something cool to see,"Sharing of stuff for the people, by the people.",US,5,2017-06-12,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Ah,Ah,US,5,2017-06-12,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Crashes?,"Wonderful app otherwise, but whenever I click the notification tab, it crashes. Every. Single. Time. So annoying. I'm not about to hunt through the sub Reddit to fine the notification.",US,3,2017-06-12,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +It's a hoot,Some news you can use and some you can't. The comments are often hilarious.,US,5,2017-06-12,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +开了一扇窗户一样,喜欢,异常喜欢,CN,5,2017-06-12,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Good app,For finding out fun stuff and waisting time,US,4,2017-06-12,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +New Scroll Button,The new scroll button is giving me a migraine. It's to high up on the page. I can't read a sentence without it obstructing my view of the words or picture.,US,1,2017-06-12,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Here is my review......,......so the app stops prompting me to give it review.,US,5,2017-06-12,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +O&A,The opie and Anthony reddit is hilarious,US,5,2017-06-12,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Love,Great reads,US,5,2017-06-12,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Love it,Great UI,US,5,2017-06-12,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Portable memes,"The app is great, need some reddit on the go 👍🏼",US,5,2017-06-12,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +It's reddit tho,"It kept wanting a review from me like every other app, but considering it's my favourite, I'll give it a solid 5/5",AU,5,2017-06-11,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Good,Good,US,5,2017-06-11,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Good but one sided politically,Great videos but apparently reddit censors conservative viewpoints (except conservative Islam),US,4,2017-06-11,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +A must have,Enormous access to people and groups and funny stuff.,US,5,2017-06-11,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Very good for news,I love using it for news,BR,5,2017-06-11,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +420/69,Haha like normie ya know lollllololoolooolool,US,5,2017-06-11,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Great Way to Stay Informed,"It's self-explanatory and the interface is simple for users to navigate. Thank you, Reddit team. You've created an awesome venue for creativity.",US,5,2017-06-11,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +Good,Good app,US,5,2017-06-11,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Just dong this so they'll stop asking me to rate,"But yeah, love it",US,5,2017-06-11,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +Great,Great great.,US,5,2017-06-11,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +More entertaining than FB these days,"Who can keep up with all of the awful events in the world? Why would you want to when there's Reddit? Cats on pizza boxes? We've got it! Rick and Morty Photoshops? Oh yes. Tiny trumps? Showerthoughts? Food porn? Check, check, and check. Scroll your cares away, for hours a day! Cheaper than therapy!",US,5,2017-06-11,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Late in the game,"Struggled with organization of the desktops site, app is awesome! Thanks!",US,5,2017-06-11,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Absolutely atrocious,"Convoluted, pain to use, far less efficient than the desktop version of the website. + +Don't use this awful app or the mobile site. Use desktop mode to get the real reddit experience. + +You know, where it's supposedly user moderated content in an elaborate social experiment, but in reality is a bunch of meganerd mods devoting countless unpaid hours moderating the content they deem unacceptable for consenting adults. + +The app is awful, and Reddit in general is even worse.",CA,1,2017-06-11,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Try,Great hcghghhhhhhv. Hhvjgv hggjgfd Highgate ggg,GB,5,2017-06-11,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Great!,Love the app it's fun thanks.,US,5,2017-06-11,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Great App,Reddit is amaze,US,5,2017-06-11,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Five Star!,I love it more than Facebook,US,5,2017-06-11,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Gr8,M8,US,5,2017-06-11,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Phoenix Randall,"(Just a suggestion) Is there any way to make a ""favorites"" tab or ""my subscribes"" to make it easier to go to the things I enjoy reading more rather than having to always see ""most popular"" every time I log into Reddit? + +Recently left Facebook and instagram and love the lay out and how much I find myself coming back to keep my self informed.",US,5,2017-06-11,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +amazing,cures depression,US,5,2017-06-11,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +It's everything that Facebook isn't,"The humor is humorous, the thoughts are thoughtful, the signal to noise ratio is very good. It's the way the Internet should be. It's sort of like the way Usenet used to be.",US,5,2017-06-11,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Best thing on internet,"It can not be better than this to have in one place the best of the best of internet, awsome app,awsome idea, awsome reddit +Thank u +Wajdi raach",TN,5,2017-06-11,81,324.0,"(80.0, 85.0]","(300.0, 325.0]" +I find myself using Reddit all the time!,This app is the easiest way to enjoy Reddit!,US,5,2017-06-11,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +I love Reddit,Reddit is the goat,US,5,2017-06-11,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great,The best time waste on the internet. And I mean that in the best way.,US,5,2017-06-11,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Great app,Literally the best app for information ever!,GB,5,2017-06-11,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +Cooooool,It's so cool because its so anonymous. Andy Kaufman,US,5,2017-06-11,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Imgur but worse :D,Lel,GB,5,2017-06-11,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +The best,"Probably the best social media website out there. It brings me a lot more joy than something like twitter, and more cringe than Facebook, and who could ask for more!?",CA,5,2017-06-11,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +r/td is now all i see ... sad,"No reddit, i don't want my frontpage to be r/the_donald every second 'duckin' post",AT,3,2017-06-11,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +Awesome,Awesome,US,5,2017-06-11,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +10/10,Shitposting on the internet whilst out and about has never been so easy,GB,5,2017-06-11,31,155.0,"(30.0, 35.0]","(150.0, 175.0]" +"Fantastic, but....",Good user experience. My only grouse is on the way the comments are displayed; you can't simply collapse comments of your choice. You're forced to scroll through everything.,MY,4,2017-06-11,6,30.0,"(5.0, 10.0]","(25.0, 50.0]" +Good,Good,US,5,2017-06-11,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +10/10 Would Get Rid of the Notification Again,As above,GB,5,2017-06-11,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Hot dog!,"The app is easy to navigate but like everything, Reddit has a learning curve. The upvote/downvote system has its pros and cons and learning how to contribute by voting and posting takes time. Each sub (category, e.g. r/funny) has its own set of rules but overall the content is monitored by moderators like most other online forums. As Tom Haverford once said ""Reddit has all the best links"". It really is the front page of the internet. Get the app. It's great. It's what you do with it that ultimately defines your experience.",US,5,2017-06-11,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +Ok,Its ok,AU,3,2017-06-11,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Reddit,Easy to use!,GB,5,2017-06-11,76,304.0,"(75.0, 80.0]","(300.0, 325.0]" +Fantastic,"Fantastic, yummy , special, juicy & delicious 🌈🙏🏻🤣🖖🏼🍉🎅🏿🎈‼️......💫",US,5,2017-06-11,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +Love it!,"A great time waster, but occasionally informative too! +And when they are meant to be, often the comments are absolutely hilarious, I love the long strings of increasingly ridiculous replies, genius.",GB,5,2017-06-11,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Design and features are awesome!,"Love the design of the app, as the easy of use. Recommend 100%.",PT,5,2017-06-11,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Great,Great,US,5,2017-06-11,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Wow,It makes life so much easier 10/10 would use again,US,5,2017-06-11,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Great social media app,"As long as you can get to understand how Reddit works you will have no problems finding content you enjoy. Great images, stories, links to content on YT there is something for everybody. Just fully understand how to post or the moderators will get you!!",GB,5,2017-06-11,89,178.0,"(85.0, 90.0]","(175.0, 200.0]" +Love it!!!!,It's great a site that you can have open discussions on all topics of interest,NZ,5,2017-06-11,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Excellent,Way better then the Website!,AT,5,2017-06-11,39,156.0,"(35.0, 40.0]","(150.0, 175.0]" +Fantastic App,"Great App. Once you try it, you will be hooked. The notifications are a brilliant feature.",GB,5,2017-06-11,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Great app,Love it,AU,5,2017-06-11,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +Worlds Leading Blog/Forum - Detailed Review,"I have loved this app ever since it came out, well atleast since I found it a few years ago on the web only Reddit. I have nothing but great things to say the only thing is the Banner that comes up in the Website when using a Mobile or Tablet asking to use the app. Yes I know apps are the way to go. But i really think it should be a smaller window. Just seeing it before, it covered 1/4 of my browser or iPhone 6 4.7 inch screen and was a lot of blank background space. With that as well I think you should make a ""don't show me this again (square box to tick)"" until that user signs out/leaves all the Reddit pages or until the browser session is over. Then it's refreshed and will be asked again to ""try"", ""use"" or ""download"" the Reddit app. + +This is not Reddit alone at all... so any other app developers or people involved in apps/phone development and web development you might like to read this. + +This kind of ""download/use out app advertising"" on a device's websites that are co-using or completely converting to app use. In this app phenomenon that is just ""programs simplified"" and packed into an Application. Many programs are now listed under Applications on different devices with the programs not changing from the program it was rather being re-categorised as an Application. +With this there has been a lot of new integration into the web development over the last several years. With apps having only exploded a couple of years ago. So people/companies are really on to it with marketing and over marketing is one thing that this instance does, can and will drive some* people away from using the app or the website at the time. Since a lot of the older users will be adjusting to the change and the simple fact that there just aren't features on every app compared to its parent website. Just like Reddit. + +Also for any one making anything digital making everything simple isn't always right. Having a ""simple"" functionality plan is different and if your looking to make an app that's simple then this will be the way to go. Simply put... There needs to be more, it can't all be simple. A lot of apps as many would have seen with windows 8& 10 in particular is their very bland and ultra basic ways their apps/programs work, function and look now. Yet there is still 5 ways to do one simple thing... Personally I don't like it. I prefer windows 7 a lot more. I'm actually planning on going to Mac as next PC or Laptop, anyhow. Sure some of the new features on W10 are great. However with the multi-functionality of everything on windows besides third party stuff is becoming more complicated for the average person who didn't have the experience growing up with alt of electronics or technology let alone the technology that's in our faces right now.. or they just didn't have the want to learn, didn't understand why at the time or perhaps the generation gap with some users has made it extremely hard for those who didn't use a lot of technology that are now bis hard to get around with some people. That's ok but technology as we or most now becoming forced into having online accounts and signing up to digital content that to some of them I've taught, is completely mind boggling for them and I understand why. + +There's another thing I want to Adress. +We could be living without energy bills since 1917. Search ""tesla power"" and why Nicolas Tesla was assassinated because the power company's/coal mining/other energy production plants would be out of business or atleast put behind a whole lot. You'll have to read it yourself if you want to now about it. Also another thing. We know the iPhone 9s coming but it's already in development. They already know what the iPhone 10 is more or less going to look like. Sure the models will vary with consumer criticism positive or negative. + +I also want to push the fact that +Unless I was to be super picky and leave some constructive criticism which I do from time to time within the apps or websites and for Reddit I have and will continue to do so in regards to bugs & other issues, update problems, suggestions, ideas etc. + +This is what you can expect to read about and shows you that there is so much to learn on Reddit. + +IT IS THE NUMBER ONE SOURCE OF INFORMATION. GENUINE INFORMATION FROM OTHERS. + +KEEP UP THE GOOD WORK REDDIT TEAM!",AU,5,2017-06-11,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +pretty good app with nice contents,some video clips can be saved correctly?,SG,5,2017-06-11,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +Great,Love this app,GB,5,2017-06-11,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Brilliant service and app,I've learnt a lot through the community. Obviously you have to be discerning but it's superb how you can get people's experiences and tap into the latest thoughts / opinions of the community on any subject.,GB,5,2017-06-11,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Full of weirdos,"Going to delete, the community seems to be trolls and people who hide behind social media to hurt others. Poster child for this app would be a 30+ year old male who is cosplay obsessed with a unshaved neckbeard living in his parents basement who reads a thesaurus to sound intelligent ... read some really cruel comments. Not fun it's pretty boring.",US,1,2017-06-11,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +Funny,It's nice,US,5,2017-06-11,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Good memes,Great source of memes,US,5,2017-06-11,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Awesome,Awesome,CA,5,2017-06-11,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Go to website for anything,Best site on the internet,US,5,2017-06-11,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Best-Saturday-night,Better content than any other community,PE,5,2017-06-11,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Iz nioce,I lyke,AU,5,2017-06-11,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +Jesus how many nicknames are taken,"Anyway, i love this app",US,5,2017-06-11,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Amazing,"I don't just look at Reddit, I'm invested in the community.",US,5,2017-06-11,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +Nice,It's awsome,US,5,2017-06-11,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Its good,Adding more a few more themes would be appreciated,PH,5,2017-06-11,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Awesome,Awesome no trouble,AU,5,2017-06-11,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Nice,Reddit/7,ES,5,2017-06-11,99,99.0,"(95.0, 100.0]","(75.0, 100.0]" +Where Memes Are Born,honestly r/me_irl and r/meirl are both better than iFunny,US,5,2017-06-11,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Good.,It's good.,US,4,2017-06-11,91,182.0,"(90.0, 95.0]","(175.0, 200.0]" +Great app,I love the app Yaddah yaddah yaddah I'm writing this because I want to suggest adding a way to view the title of a post while in comments. Sometimes I'll get so far or set the phone down and come back to it and I don't know what the post was even about. I'll have to scroll all the way back up leaving where I was reading and then having to find it again.,US,5,2017-06-11,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Good and reliable,Best way to access Reddit,US,5,2017-06-11,55,220.0,"(50.0, 55.0]","(200.0, 225.0]" +Awesome app to keep up to date with whatever thread you have,Faster then the browser safari,US,5,2017-06-11,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Everything I never knew,That I needed to know!,US,5,2017-06-11,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Good,Karma +1,GB,5,2017-06-11,65,325.0,"(60.0, 65.0]","(300.0, 325.0]" +Very useful!!,I use the app a lot when reading forums and looking up info for a range of topics,US,4,2017-06-10,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Great,Great,TR,5,2017-06-10,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Reddit is the internet in all its entirety,Great app,US,5,2017-06-10,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome!,It's the best,US,5,2017-06-10,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +Tired of SILENT gifs stopping my music every 5 seconds,"Infinite scrolling doesn't work and it's really annoying, I don't like having to go to each subreddit individually and looking at all the same content, I like variety.",US,2,2017-06-10,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Easier to browse than on PC,For me it's seemless,AU,5,2017-06-10,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Super,Appli très bien conçue,FR,5,2017-06-10,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Fun,Goos,US,4,2017-06-10,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Worth the many Reddit black holes you'll fall into,Wasn't much of a Redditor until recently but I've been enjoying the community is hilarious and diverse.,US,5,2017-06-10,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Littt,It's a nice app,US,5,2017-06-10,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Great!,Great!!,CA,5,2017-06-10,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +Of da hook fo sho dawg fo real g,"Yo dis da best app out deir mane it keep al da goo stuffs and sheet you know what I mean g +- Your local black",US,5,2017-06-10,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +The shit😘,good/great/astounding/astonishing/fantastic,DK,5,2017-06-10,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Good times,App works well,US,5,2017-06-10,68,204.0,"(65.0, 70.0]","(200.0, 225.0]" +Absolutely a great app,"This is a rabbit hole of information. I love it ! Can't get enough, its amazing.",US,5,2017-06-10,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Very good,Only just got into it but love it so far!,GB,5,2017-06-10,21,42.0,"(20.0, 25.0]","(25.0, 50.0]" +It's aight.,It's aight.,US,5,2017-06-10,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Awesome!,Love it,US,5,2017-06-10,80,400.0,"(75.0, 80.0]","(375.0, 400.0]" +Finally,Great app to kill hours on. A dedicate Reddit app is the best thing ever,US,5,2017-06-10,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Review,Is good,US,5,2017-06-10,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Love it,This app its about anything,AE,5,2017-06-10,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +r/mildyinteresting,Love this version of the site it's really simple and easy to get around. The perfect mobile version,US,5,2017-06-10,3,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Amazing Reddit App,"One of the better ones I've used, and it's official",US,5,2017-06-10,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +Nice,"Very nice, never gets boring",DK,5,2017-06-10,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +New,Cool forums,US,5,2017-06-10,87,174.0,"(85.0, 90.0]","(150.0, 175.0]" +Cool!,It's nice!,CA,5,2017-06-10,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Perfect.,There really isn't an easier way to browse Reddit,GB,5,2017-06-10,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +FIRST 10 SECONDS AND I EXPERIENCED A BUG!,"I CANT EVEN LOG IN, SO BAD, PLEASE FIX IT.",US,1,2017-06-10,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Good as always,"Perfect, lol",VN,5,2017-06-10,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +it work good,it work good,US,5,2017-06-10,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +Reddit and music?,I guess I can't listen to music and browse Reddit at the same time now. Fix coming soon?,US,2,2017-06-10,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Only way I get my news,Love it,US,5,2017-06-10,6,30.0,"(5.0, 10.0]","(25.0, 50.0]" +An amazing app,I just got this app and I love it!,US,5,2017-06-10,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Entertaining,Reddit is truly enjoying.,MY,5,2017-06-10,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Liking it,"I didn't care about Reddit for a long time: its just a fad right? Well, it's here to stay and I must say I really like it. I've been using it more and more.",US,4,2017-06-10,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Smooth!,"Works perfectly, very easy to use. :)",CH,5,2017-06-10,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Love Reddit,Love this app,CN,5,2017-06-10,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Good,Really good,GB,5,2017-06-10,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Love it,Rawr,GB,5,2017-06-10,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +Marvelous,"Great app, creators are constantly improving their work and the reddit service itself is wonder social media",PL,5,2017-06-10,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Great app,Nice App.,PK,4,2017-06-10,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +It's cool.,"Simple, good looking and easy.",NG,4,2017-06-10,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +Reddit is great,Love it so much,NZ,5,2017-06-10,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Pretty Good!,"The app does what I want it to do, no complaints.",US,5,2017-06-10,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Good looking easy to navigate interface,Nice,US,5,2017-06-10,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Not a bad time,"For real, not a bad time",US,4,2017-06-10,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +the good stuff,...is here,US,5,2017-06-10,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +A great time waster,"Lots of fun, some insightful comments, good app to have if your spirits need a lift!",CA,4,2017-06-10,91,182.0,"(90.0, 95.0]","(175.0, 200.0]" +.,It works,US,5,2017-06-10,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Melting pot,"It's a great place to find information or see current situations and have a discussion. There's a mixture of funny, serious, and raw everything that takes place here. It's like describing a color to a blind person... they just have to see it to know what I'm talking about. Like any social media site, there are negative people that have a single goal of seeking attention. Sometimes it's frustrating. There is ""gold"" for comments and ""karma"" for how important they think you are, but I'm not in those clicks, but if you're hella nerdy, you can get high gold and karma so join in the fun guys!",US,5,2017-06-10,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +Works great,Gets me to reddit each time.,US,5,2017-06-10,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +10/10,10/10 would rate again,US,5,2017-06-10,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Great,Great,CA,5,2017-06-10,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +"Works great, can get repetitive","I don't have any major problems with it, but if I use it multiple times a day, sometimes I will see the same things repeated.",US,4,2017-06-10,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Love it,"Have spent many hrs in class and at home browsing, askReddit in particular, can't see myself stopping anytime soon.",US,5,2017-06-10,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it,I'm tired of having the rating thing pop up so that's why I'm rating it,US,5,2017-06-10,87,174.0,"(85.0, 90.0]","(150.0, 175.0]" +Super,Super amazing. Everyone love the reddit and this super amazing app,US,5,2017-06-10,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +App constantly asks for reviews,"App always asks if I am enjoying the app. Very annoying. I just want that message to go away, and I would enjoy the app a lot more.",US,1,2017-06-10,19,95.0,"(15.0, 20.0]","(75.0, 100.0]" +💯,Awesome app,US,5,2017-06-10,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Reddit!!,What's not to like??!?,NO,5,2017-06-10,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Bad,Popup,US,1,2017-06-10,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Amazing!,"I love this app! It's a great app version of the website. It's intuitive and clean. It runs fast and accurately. I like having an app of the site that makes it easy to browse, read, reply, and comment on subreddits. Oh, and it comes with really nice stickers that look great for iMessage!",US,5,2017-06-10,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +truly rad,sick bro,US,5,2017-06-10,79,237.0,"(75.0, 80.0]","(225.0, 250.0]" +Love it.,Great app,GB,5,2017-06-10,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Hello yeah,Hell yeah,GB,5,2017-06-09,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Great!,I recommend very much,BR,5,2017-06-09,31,31.0,"(30.0, 35.0]","(25.0, 50.0]" +L'app fait le job !,J'utilisais alien blue jusqu'à la sortie de l'App officielle et on s'y adapte très bien. Fluidité au top,FR,5,2017-06-09,100,200.0,"(95.0, 100.0]","(175.0, 200.0]" +Fine,Just fine. Now stop begging for reviews,US,1,2017-06-09,55,275.0,"(50.0, 55.0]","(250.0, 275.0]" +Super easy to use.,Really easy to use interface,US,5,2017-06-09,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +nice,just downloaded it for r/meirl i liked it.,TR,5,2017-06-09,87,261.0,"(85.0, 90.0]","(250.0, 275.0]" +Reddit,Reddit is great - making me review it? 3 stars.,GB,3,2017-06-09,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Love it,Hate the ads,NZ,4,2017-06-09,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Yes,Mmhmm,US,5,2017-06-09,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +Better than the others,...it just is.,US,5,2017-06-09,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great entertainment,Perfect for when you need to entertain yourself...like when your husband watches fishing shows or your kids tell you every detail of Minecraft.,US,5,2017-06-09,49,245.0,"(45.0, 50.0]","(225.0, 250.0]" +Slow gifs,Why do gifs run so slowly on this app? I'll use antenna and the exact same gif will look like it's running at 60 fps and the same gif on this app chunks like a slideshow?,US,3,2017-06-09,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Très bien,Ça change tout par rapport à la version Web,FR,5,2017-06-09,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +Great!,I enjoy it a lot,US,4,2017-06-09,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +:),My top most useful app,RO,5,2017-06-09,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +Not perfect but nice enough,Nice app,US,5,2017-06-09,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Not bad,Yep,US,5,2017-06-09,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +nice,sure,SG,5,2017-06-09,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +"Amazing, all to be said.",...,US,5,2017-06-09,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Best reddit app,"This is now the best app - easy to use, new features and UI improvements keep making it better.",CA,4,2017-06-09,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great,Love it,CA,5,2017-06-09,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +I'm an old(-er or -ish...your call) non-participant,"As the title says I'm an older dude (not 'THE' but 'a') who checked out Reddit while giving up FB for lent. Yea, I know but FB was/is getting lame and I gotta cling to my faith somehow! In any case, it's actually pretty cool and immense. Unless into supremely weird, and potentially immoral, unethical or just plain illegal you'll find a topic or conversation that's been had. Easy to navigate and fun to see so many topics and discussions without all the cheesiness of other social media platforms. If I have to 'like' one more post to prevent the wrath of God coming down on me, I'm going to have the wrath of the law come down on me. The app is easy to use, navigate and read. Nothing super dance looking but very easy to look at while using. I'd buy it for a dollar.",US,5,2017-06-09,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +"Love it. Duh, There's boobies...Lots of boobies",Duh...boobies,US,5,2017-06-09,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Decent,Reddit is just the best,CA,5,2017-06-09,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +It works I guess,"I'm new, doing this to stop the reminders. It works, it's free, nuff said",US,4,2017-06-09,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +"Good app, but has annoying tendencies","The app works well for browsing and saving, up and down voting, etc. + +If you have the same problem as I was having and you have 2 accounts logged in you have to disable the notifications on both accounts. + +However, I still get pop ups in the app to review it when I didn't want to (but that ship has sailed). I also continually get notifications of trending things on Reddit when I've already turned that off in my notifications settings.",US,4,2017-06-09,66,66.0,"(65.0, 70.0]","(50.0, 75.0]" +Brilliant,Great app! Works very well. No issues.,IN,5,2017-06-09,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Mis dies,Mis putos dies,ES,5,2017-06-09,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +great!,farewell to my beloved Alice Blue.,KR,5,2017-06-09,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +Reddit is fun,"Alien Blue and Reddit is Fun are better apps, but Reddit is cool too I guess.",US,3,2017-06-09,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +Excellent!,I really enjoy this app,US,5,2017-06-09,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Pretty decent,"I switched from Alien Blue a while back after Reddit acquired it. This is a decent app. There are things I don't love about it and it's not perfect, but it works. If you're new to reddit, you will find nothing lacking here, but if you are coming from AlienBlue (not likely since it's no longer available) or one of the other apps, there are a few minor annoyances.",US,4,2017-06-09,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +Most used app on my phone,"Stay in the loop with what's happening around the world and never miss out on the spiciest memes. The political views of the site sometimes bleed into the content and that's lame, but it isn't deal breaking.",US,5,2017-06-09,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +It's Reddit,What's not to love?,US,5,2017-06-09,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Awesomeness,"Well I saw captinsparklez react to a bunch of Reddit things and I checked it out and it creates a lot of different emotions depending on what you are looking at. + +And when I am sad I look at it and it makes me happy.P.S gongrats on being the first app ever to make me want to right a review.",GB,5,2017-06-09,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Good,Nice aff,TR,5,2017-06-09,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Love it!,Great app to go with a great site!,US,5,2017-06-09,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Sauber,Love it,DE,5,2017-06-09,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Neat,It's pretty neat.,US,5,2017-06-09,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Love it,Swearsy realsies.,US,5,2017-06-09,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Love it,The front page of the internet as someone said to me. But only the cool stuff. Never disappointed when I open this app for some amusement/informative stuff.,AU,5,2017-06-09,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit.,"Great application, very stable.",GB,5,2017-06-09,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great,Great Reddit app,US,5,2017-06-09,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Works Great,App works perfectly fine to browse Reddit. No issues to list.,US,5,2017-06-09,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +"It's great mate, I rate it 8/8!",As a meme enthusiast I highly recommend,US,5,2017-06-09,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Too many ads,Uninstalled because there was a repeated ad every 8th post. It was this stupid terminator mobile game,US,1,2017-06-09,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +Much meme,Such wow,US,5,2017-06-09,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Reddit,Love it!,US,5,2017-06-09,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Decent App,"I'm far from a normal Reddit user, but I remember looking for an app a while back and the only thing I could find were 3rd party made apps. Great to see an official one now that is made as good as it is!",US,5,2017-06-09,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +Not bad.,Pretty enjoyable. No frustrating hiccups with the app yet.,US,5,2017-06-09,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Great,Like the app,US,5,2017-06-09,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Wow!,"If something interests you, join the party on Reddit!",US,5,2017-06-09,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +Reddit,"Great app, platform anyone can enjoy",BE,5,2017-06-09,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +it's reddit,what do you want from me. it steals my life,US,5,2017-06-09,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +Super awesome app!,"This app works so fast and nice, that it is wonderful to use each time. Thanks for this and please keep it uncluttered and performant!",DE,5,2017-06-09,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +SUPER APP ABER...,Deutschsprachige Unterstützung der App wäre ein guter Vorteil!,DE,4,2017-06-09,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +"Slick, reliable, friendly.","Easy to use and seems to have less flaws than the full site. I never get an issue with endless-Reddit on the app? +Good job guys :-)",GB,5,2017-06-09,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +Facebook without all your annoying friends,...and cute animal pics,US,5,2017-06-09,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +It's pretty awesome !!!!!!!!,Best app that's on my phone !!!!!!,US,5,2017-06-09,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +Feature request,"Please, add ""Default Sort"" option (""Hot"", ""New"", ""Top"", ""Controversial"") in addition to ""Default View"" one. Beside that — great app!",UA,4,2017-06-09,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +Never loads comments,Ever.,GB,3,2017-06-09,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +10/10,Ten outta ten good game,US,5,2017-06-09,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Best,Best for finding people to help you on everything,US,5,2017-06-09,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +Remove the forced profile post section,"Ive been really enjoying the Reddit app. It took me a long time to warm up to it after Alien Blue went dark. + +That said I am not interested in using Reddit like Facebook. I am sure others are, and I would like to be able to follow other people. But don't waste 30px of my feed with a post form Im not interested in using.",US,1,2017-06-09,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +La meilleure,Super!,FR,5,2017-06-09,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Good here,"Reddit is awesome, that is all. The app is great with no hiccups yet",US,5,2017-06-09,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Great App,😀,CA,5,2017-06-09,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +Love,"This is a really good time consuming app. I love the pictures, stories and everything about it. I go on it almost every day. Amazing. 5 stars all around.",US,5,2017-06-09,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +Good,Good,AU,5,2017-06-09,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Neat,All the sub Reddit are great. Love the comments on everything too. For the most part.,US,5,2017-06-09,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +Good to pass the time,Easy once you get the hang of it,AU,5,2017-06-09,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Decent app but sometimes I prefer browser,Getting sick of being told to use the app when sometimes I just want to use the browser. It can be too hard to navigate when I have a large image loaded between posts.,US,2,2017-06-09,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Easy to use,Love the notifications. A+,CA,5,2017-06-09,51,102.0,"(50.0, 55.0]","(100.0, 125.0]" +Small issue with the newest update,"When you read a reply in the notifications section, the tint of the notification doesn't change to let you know that you've read it until you reload.",US,5,2017-06-09,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +"It's reddit, it's great. Star off because...",Did they add that awful grad to the icon just because the last icon was too perfect?,GB,4,2017-06-09,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +Use it all the time...,"I am definitely satisfied by this app, I open it often, and have yet to be disappointed by it. No crashing, not too much lag with the gifs and such. Overall, I'm happy with it.",US,4,2017-06-09,92,368.0,"(90.0, 95.0]","(350.0, 375.0]" +I accidentally don't have a life anymore,Oops,US,5,2017-06-09,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Super intuitive and simple!,Love the app.,US,5,2017-06-09,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +It's le reddit but mobile,This is a review.,US,5,2017-06-09,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +Generally a good platform,"Reddit itself is sometimes suspect, but this is by far the least clunky way I've found to navigate it on mobile. Good on iPhone and iPad.",US,4,2017-06-09,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +You know what this is,And it does it very well.,US,5,2017-06-09,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +Dank App,very good yes thanks,CA,5,2017-06-09,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +best reddit app,best reddit app,SG,5,2017-06-09,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Honesty on any subject.,"Whatever you're interested in, you can find people talking about it. An amazing community of knowledge.",US,5,2017-06-09,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Love this,There's just something great about this that is not a part of FBk. and other social media sites.,US,5,2017-06-08,94,282.0,"(90.0, 95.0]","(275.0, 300.0]" +Love it,💜❤️❤️❤️,NZ,5,2017-06-08,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Yes,It good,US,5,2017-06-08,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Good pooping material,In the mood for a thoughtful poo or just laughing it out. Perfect for everyone,GB,5,2017-06-08,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +Great job!,"It's easy to use, and has a simple but nice interface",AR,5,2017-06-08,44,88.0,"(40.0, 45.0]","(75.0, 100.0]" +App has problems,"Split view has never properly worked. + +And in the latest update the notifications tab is really bad",NZ,2,2017-06-08,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +The_Donald,I wouldn't bother with Reddit if it wasn't for r/The_Donald.,US,5,2017-06-08,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +Reddit,Excellent,IE,5,2017-06-08,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,"Lots of fun, good time killer",US,5,2017-06-08,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Hi,Addicting,US,5,2017-06-08,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +"Spammy app pesters you with ""trending"" garbage notifications","Your phone will randomly buzz throughout the day. Is it a text? No, it's the &$@! reddit app crying like a colicky baby for your attention with utterly useless, utterly unwanted alerts about whatever cat picture is ""trending"" right now. + +You can't turn this off, at least not without turning off /all/ notifications, including PMs. + +Users shouldn't put up with this kind of tactic. Uninstalled the app.",US,2,2017-06-08,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Stop asking if I want to rate you..,..,DE,3,2017-06-08,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +I Love Reddit!,I suggest the shower thoughts sub reddit,US,5,2017-06-08,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Entertaining!,Good App!,US,5,2017-06-08,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Love it,Good stuff,NO,5,2017-06-08,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +"Good, but I hate apps that make you review them","Especially since the pop up to rate it won't go away until you do. Like, I get why otherwise the majority of reviews will be bad. Ah well. It works.",CA,4,2017-06-08,49,245.0,"(45.0, 50.0]","(225.0, 250.0]" +Best,Best app around,CA,5,2017-06-08,83,415.0,"(80.0, 85.0]","(400.0, 425.0]" +Reddit,Great app and you can find anything,US,5,2017-06-08,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +I don't care about receiving notifications for what posts are trending,That's how you get your notifications turned off and your app deleted.,US,1,2017-06-08,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Good app,Love it,RO,5,2017-06-08,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +5 to a 1,"I reviewed this app when I first got it, since then you constantly ask me to rate it, so I have again, it was a 5 it's now a 1... Now stop interrupting my use of it, and stop asking me to review it, otherwise I'll delete it!",GB,1,2017-06-08,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Good app,It is a nice app.,US,4,2017-06-08,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Solid,Not a liquid or gas.,US,5,2017-06-08,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +So far so good,Five minutes in and it seems pretty great,US,5,2017-06-08,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +10 out of 10,This app is the greatest and I haven't ran into any glitches in the app. 👌🏿,US,5,2017-06-08,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Love Love Love!!,There's just so many things I love about this app..to many things write about,US,5,2017-06-08,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +ngam,ngam shoi,MY,5,2017-06-08,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Front page of the internet,Everything is covered. Plenty of topics,CA,4,2017-06-08,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Decent App,It's coo. Room for improvement tho.,US,4,2017-06-08,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +The front page of the internet will not be refused,"I am a late engager in the world of reddit - quite frankly it overwhelmed me and the moderator rules in the writing section gave me ""troll - wikieditor - scathing intellectual dressing down in public"" fears & anxiety. +I hoped I could let it go but alas I found my way to some subreddits in the underground where I felt safe and next thing I know I'm IFTTT - IN some valuable reddit feeds and getting a nice summary done for me (most of these curated email ""autobot for your thought"" lists are merely opportunities procrasturbation. + +Reddit seems relevant. I never liked the desktop feed constantly displayed on a coworkers' screen (too DOS like for me, a spreadsheet is never my go-to visual aesthetic) while he was supposedly working. Then the archery subreddits got me to narwhal app whose dark theme I liked and then reddit kept coercing me to use the teletubbie icon app. + +And after a few weeks, I find myself using it more and will probably delete the more newsfeed clunky feel of narwhal in favor of the native reddit app. + +I'm sure I'm not doing thus right. yodaOG",US,4,2017-06-08,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Pretty good,Full of memes 👌,GB,5,2017-06-08,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Cool,Really cool app,AL,5,2017-06-08,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +Perfect App,"You can get news, kill time, find answers for questions on most topics, and explore interests as you wish.... smoothly",US,5,2017-06-08,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Best thing ever,"Reddit is the most amazing Internet community ever! The app is great no complains despite minor bugs. +Allthough the start is a little confusing.",DE,5,2017-06-08,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +Great,Just what I wanted.,US,5,2017-06-08,95,380.0,"(90.0, 95.0]","(375.0, 400.0]" +Love it so far😍,"It's like a intelligent social media forum that is super advanced. I mean, I'm pretty sure that anything you see on social media originated on Reddit.",US,5,2017-06-08,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Nice app,Definitely a more mobile friendly version of this website,CA,5,2017-06-08,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Works seamlessly,I'm pretty happy with the reddit app. I'm not experiencing any major problems. Keep up the good work reddit :),NO,5,2017-06-08,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Good,Good,AU,5,2017-06-08,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Prefer to Desktop Browsing,Even using desktop plugins for reddit I still find the app to be better,AU,5,2017-06-08,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +Addiction,Sabah akşam reddit bam bam bam,TR,5,2017-06-08,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Well designed,Well designed app,IT,5,2017-06-08,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Good,Very good,VN,5,2017-06-08,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Very good,Like the desktop site but on an app - amazing,GB,4,2017-06-08,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Perfect app,Really nice looking night theme,FI,5,2017-06-08,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Great,Reddit on phone? Hell yea,US,5,2017-06-08,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +"Best reddit app, no further explanation needed",🔥🔥🔥,US,5,2017-06-08,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Good,Love the user interface,MY,4,2017-06-08,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +了解中,了解中,学习,嗯嗯,CN,2,2017-06-08,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Great app,"Great layout, easy to use.",VN,5,2017-06-08,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Love this app!!!,This app made Reddit even better than it already was! So good. Only thing I don't care for is the fact you can't come for than 3 times before it tells you to slow down and won't allow to comment again for a couple minutes. I like to share my opinion and I don't offend anyone reddit! Let me comment more. Haha.,US,5,2017-06-08,31,124.0,"(30.0, 35.0]","(100.0, 125.0]" +Awesome,Awesome app!,US,5,2017-06-08,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Good,Very perfect,VN,5,2017-06-08,73,219.0,"(70.0, 75.0]","(200.0, 225.0]" +Love it!,i love searching memes XD,US,5,2017-06-08,15,45.0,"(10.0, 15.0]","(25.0, 50.0]" +良心软件,老司机们快上车,CN,5,2017-06-08,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Decent app,"Works well so far. Easy to navigate. + +Edit: (June 8, 2017) still works!",US,5,2017-06-08,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +A Review on the reddit app,Good app,AU,5,2017-06-08,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Looove it,Love it,SE,4,2017-06-08,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Good stuff,Easy to use app. So many ads now.,CA,4,2017-06-08,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Good,TR,5,2017-06-08,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Great app,Great app. Great threads. Great photos.,US,4,2017-06-08,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Good shart,Perf,AU,5,2017-06-08,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +App great app,Great app,US,5,2017-06-08,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app,"Nice, clear and useful.",RU,5,2017-06-08,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +boodagaboodaga,funk,US,5,2017-06-08,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app,Love it,US,5,2017-06-08,74,74.0,"(70.0, 75.0]","(50.0, 75.0]" +Better than Facebook,Awesome social networking app. Support and social groups are plus,IN,5,2017-06-08,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,Love it,US,5,2017-06-08,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Just started!,"New to the site, but it's fun so far!",US,5,2017-06-08,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Garbage-ish,"Needs Some work. More work! because there is too many rules for everything and I think it's all unfair. The mods say long messages and I don't understand. It's annoying me and making me suffer through annoyingness. I am sorry but it just needs more work. And needs better nicer people because you don't want to get someone annoyed by you and say the f word or yell at you on social media. Its like you can't do anything to help fix the problem. I love reddit but I feel I can't post anything. I have three accounts I think and I'm trying to find out what they are. But I can't. I don't remember. I want to get them deleted for good. So I can only have one account. The mods are nice and some of them are weird. They say too much. I still don't understand the words they mean in their sentences. And all the rules are everywhere and it's hard for me to follow them. I don't know why I can't to reddit in the first place. And I don't know why there are 5828488493948583948578494758948 rules for everything. I mean what the what?! It's annoying, hard, overwhelming, annoying, fun (sometimes), boring, etc... but I still like this app. I just need the rules and everything that annoys people or all that stuff be fixed as well. Plez? I can't stand it *sits on spiny chair* hope you like what your doing! Because your making some people suffer through the rules and trying to follow them and also talking to people for help and then they yell at them. THAT IS NOT NICE. I disagree to treat a person or talk to them that way. TREAT people with RESPECT and all that other stuff people told you about to do! It's easy! Ok I think that's all. :3 + +And some of the mods are mean or unfair. Just please tone it down with the rules. There are like five thousand eighty nine million rules. Or some how many rules there are. Just tone it down a little please and don't let people use vocabulary words that are super long and hard for me to understand them. And the mods keep telling me ""you can't do this let rule 1"" I mean why can't I do it? I posted other posts like that and you stop me on that one post? And why can't I use text box sometimes? Or something. I don't like being banned or muted. I just god banned and muted twice for 72 hours and the second one.. is permanent. I don't like that idea. I said PLEASE TONE DOWN ON THE RULES. Don't make more rules so we feel like dogs and can't do anything. And people keep saying ""this doesn't belong here you keep just breaking the rules"" and ""you can't do this"" or ""you can't do that"" then why do we HAVE IT THEN?! Huh?! Why? I do hope your doing great Reddit. Your making people suffer of problems because of the mods and some people on there who says things like that and makes people feel bad. It's always me who gets something like""you did this"" ""you can't do that"" ""our just breaking more rules"" STOP WITH THE RULES. TOO MANY. Please it's very annoying to have to read all the rules and forget. Just keep the rules down low. I mean keep only a little bit of rules for all the subs. And hen Reddit will be better. + +Oh, yeah and whenever I post something someone says ""you can't do this your just breaking the rules"" THEN WHY CAN OTHER PEOPLE POST IT THEN?????!!!!!! And people keep giving me -1 on my comments on one of my posts! Stop that please! This is a professional app then right? Then why are people posting random stuff? And I post something and it's not aloud and I break the rules????? Idk.. I'm going to destroy this app now. Jk. Maybe. But T.O.N.E it down with the RULES PLEASE!?... and people. One person: u/Algernon_asimov is still making me sad and worried. In Trying my best on this app I really am. Wish I could delete messages within the app. And so things that I CAN do. + +Reddit just needs to change. + +Die reddit die + +No I'm kidding + +I hate you :) +And like you as an app sometimes :)",US,1,2017-06-08,18,90.0,"(15.0, 20.0]","(75.0, 100.0]" +"Good, but I hate pop-up saying rate me!","Love Reddit. Excellent for wasting a day, but I hate it when apps ask you to rate them and you can never get rid of it. Give me a 'don't ask me again' option and I'm all over it! Don't 'ask me later'. Ughhhhhhh.",US,4,2017-06-08,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +dictionary missing,"dictionary.... +and dimmer screen... +would be nice.",CA,4,2017-06-08,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Really easy to use. However if I was making any long posts I would use my laptop.,CA,5,2017-06-08,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Lots of fun!!!,I actually learn a lot from Reddit......funny and informative.....:),US,5,2017-06-08,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Super!,Great!,US,5,2017-06-08,76,380.0,"(75.0, 80.0]","(375.0, 400.0]" +Does what it needs to do,No more/less.,US,4,2017-06-08,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +Good,App,CA,5,2017-06-08,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Awesome!!,Really great. Love it there's always a good laugh on here. Great job!!,CA,5,2017-06-08,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Amazing app! Definitely download this!,"I can't say enough good about this app! I have purchased music festival lyrics through Reddit, I've read the reason why air traffic control isn't fully automated, I've seen photos of Mt St Helens erupting, countless memes, diagrams of how things work, and hilarious or sometimes heart wrenching stories. This app really has something for everyone, you just have to know where to look. I'm a fairly new user but this has replaced Facebook for my cool new content source.",US,5,2017-06-07,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Good use of your time,"Instead of online shopping or social media, learn!",CA,5,2017-06-07,56,112.0,"(55.0, 60.0]","(100.0, 125.0]" +Everyone loves Reddit.,If you don't enjoy Reddit you are what's wrong with the world. Goodbye.,US,5,2017-06-07,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +How do you get one star?,Unnecessary pop ups and demands for ratings. That's how.,US,1,2017-06-07,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Amazing,10/10,TR,5,2017-06-07,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +Amazing app!!!,Love this app! Yes it's not Alien Blue but it gets the job done. Give it a try!,US,5,2017-06-07,19,95.0,"(15.0, 20.0]","(75.0, 100.0]" +Great app,Still prefer Reddit on the desktop but this is my go-to mobile app,CA,5,2017-06-07,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Good app,Good app,US,5,2017-06-07,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +Reddit,Good quality app. I will use this a lot! It's totally free and easy to use.,US,5,2017-06-07,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Great 👍,Best Reddit app in town.,DE,5,2017-06-07,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +AirPlay issues.,"I like to Airplay music to my Apple TV while browsing Reddit, but it's annoying as GIFs automatically are airplayed to my tv when they show up while I'm scrolling. Please change this. Maybe only airplay the GIF if it's clicked on or something. But I don't think it should automatically airplay just because it shows up while scrolling. I don't want everyone in the living room to see what GIFs pop up since Reddit tends to be... unpredictable at times.",US,2,2017-06-07,16,16.0,"(15.0, 20.0]","(-0.5, 25.0]" +Coolio,Coolio. App could use some improvements in organizing favorites with categories or folders. Hope that comes in the future.,PT,5,2017-06-07,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Go to old people Facebook,It make me haha,US,5,2017-06-07,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Great app,"Wonderful browsing experience, easy to use & rarely encounter bugs. A++!",US,5,2017-06-07,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Great app,"Excellent app, easy to lose track of time!",CA,5,2017-06-07,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Does,It,US,5,2017-06-07,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Great,"Definitely my go-to for internet browsing, it's tumblr without feminists and multiple gender people! And there's MEMES, MEEEEMEEEEMS",CA,5,2017-06-07,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Awesome app,Best time waster ever I love it. I get to keep scrolling through versatile content I actually want to see instead of the mundane Facebook/IG feed I've got to choose from.,US,5,2017-06-07,41,123.0,"(40.0, 45.0]","(100.0, 125.0]" +Good,Good,US,5,2017-06-07,72,288.0,"(70.0, 75.0]","(275.0, 300.0]" +great,great,GB,5,2017-06-07,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Good,Great meme simulator 10/10,US,5,2017-06-07,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Must get app of the year!!!,"Best social media app ever, the funniest & interesting",GB,5,2017-06-07,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +good,i dunno why he man is the skit of the world and the brother of the man who was the brother of the brother and brother of the brother who used the term brother of a father a man who had a great man brother and a friend who had been a man ham brother brother and a man of a brother who was the man ham who was the man using a windows for years and brother and the father skit father and father who was in a relationship and a man ham father and stepmother who was the man of the brother.,CA,5,2017-06-07,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +I'm too hung over for a proper review...,"But! I will say the this app is neat, and Reddit is exactly what it needs to be and it's good and then we feast.",US,5,2017-06-07,91,273.0,"(90.0, 95.0]","(250.0, 275.0]" +Love Reddit,I spend way too much time on this 😄,CA,5,2017-06-07,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Works like a charm,Wonderful. Simply wonderful.,MY,5,2017-06-07,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +I like Reddit,"I've never actually visited the desktop site so I can't really compare the two. It's a solid app, works perfectly. My only suggestion would be to make it possible to block users from sending you PMs, or just disable PMs in general if you so choose.",US,5,2017-06-07,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Very nice,Very good,MX,5,2017-06-07,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Pretty great.,I'm always using Reddit on my computer. Now I can on my phone too. :),US,5,2017-06-07,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +Love,It,US,5,2017-06-07,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Reddit,Great,US,5,2017-06-07,90,450.0,"(85.0, 90.0]","(425.0, 450.0]" +Love it,Good app,RO,5,2017-06-07,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Reddit is incredible,No matter what you're looking for reddit has it. The app is amazing.,US,5,2017-06-07,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +nice,nice app,GB,5,2017-06-07,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Literally saved my life,"I got a severe depression and about to kill myself. Then I met some good souls on reddit and they helped me a lot. Thanks, reddit!",US,5,2017-06-07,72,288.0,"(70.0, 75.0]","(275.0, 300.0]" +SO MUCH INFO,WOOOOOOOOOW,GB,5,2017-06-07,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Great!,Great app!,SE,4,2017-06-07,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +fantastic app,"Love Reddit, the only ""social media"" that hans't been totally over-run by spam",US,5,2017-06-07,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Cant tell what comments/message are unread,"In older versions, unread messages were in bold font, but now everything has the same font and so you have to click on ever message individually",US,3,2017-06-07,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +I use this app everyday.,Works great. 5/5 stars,US,5,2017-06-07,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app,"Works well, very smooth interface!👍🏽👍🏽",US,5,2017-06-07,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +Yeeaaaahhh,Okaaaaaaay,FR,5,2017-06-07,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Great app!,Works great. Very helpful for my game (Dawn of titans).,CA,5,2017-06-07,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +"Informative, thoughtful and funny","I get my Lols and my insight from all the great subreddits. It's great to have a platform to share your hobbies and passions! +Very informative, funny, interesting and beautiful stories.",GB,5,2017-06-07,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Whippitaw,Runtelldat to erbodi,US,5,2017-06-07,36,144.0,"(35.0, 40.0]","(125.0, 150.0]" +Cool,"Good app, weird",US,5,2017-06-07,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Stop nagging,"Love the app itself, but HATE that it keeps nagging me to enable notifications. I do not want notifications and I will never want notifications so give me the option to say ""No thanks"" and stop asking!!!",CA,2,2017-06-07,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +The purest way to browse the front page of the internet,"After deleting my Facebook account (I got sick of the negativity, clickbait, politics, and generally useless time waste that Facebook is) I turned to Reddit to satisfy the occasional need for interesting news and dank memes. It does not disappoint. I'm not new to reddit but I haven't visited it much in the last few years and last time I checked on iPhone there wasn't an OFFICIAL app. So of course when I found this app I gave it a shot and it's a very clean simple interface that makes navigating and partaking in the communities you choose very easy and enjoyable. More importantly it's quick to use so you don't wind up wasting hours away while accomplishing nothing like Facebook does. Haha",US,5,2017-06-07,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Free speech,They block content they do not agree with. However that is their right. But don't expect to get all sides of any news story.,US,1,2017-06-07,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +"Use it, you won't regret it!","Great app, better than the site itself!",AU,5,2017-06-07,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Perfecto medio para perder el tiempo,"La aplicación es genial, ya que las publicaciones se separan en los diversos tópicos que se presentan.",AR,5,2017-06-07,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Great app for a great community,"Reddit is honestly the best thing since sliced bread. You can find subreddits (or small cults) of people dedicated to certain topics or ideas just like you are. You can get random curious questions that you have answered and you can read hilarious conversations. Again, best thing since sliced bread.",US,5,2017-06-07,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +Fine app,About time Reddit had na official app,NL,4,2017-06-07,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,"stable,comfort and fast ,everything needs this app has it",US,5,2017-06-07,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +A good one!,"Yes, a good one.",NL,5,2017-06-07,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +Pretty god damn good!,"Good improvement since the last version. Just one thing: when clicking on a message notification, please show me which tab that my message is so I don have to search all the tabs. Nevermind btw, i just saw that they've fixed it. Gjwp",SE,5,2017-06-07,76,380.0,"(75.0, 80.0]","(375.0, 400.0]" +Frontpage of the internet,Well executed mobile version of one of the best communities on the web!,CH,5,2017-06-07,57,57.0,"(55.0, 60.0]","(50.0, 75.0]" +I'm doing this to stop the rating pop up,It's very needy.,US,1,2017-06-07,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Awesome,Does everything the desktop version would,CA,5,2017-06-07,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Community of all your interests,Great app and easy to use. Reddit is a great way to find out and talk about all things you're interested in.,AU,5,2017-06-07,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Review,Amazing!!!,KZ,5,2017-06-07,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +I love Reddit,It's awesome and improvement over site,IN,5,2017-06-07,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Awesome,Classic reddit. Official Ios version is way more better than everything. Keep it up boiz. High five from /r/vaping 💨,TR,5,2017-06-07,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Terrible,"The forum design on the app and on desktop I personally find terrible, that aside what ruins Reddit for me is the fact that it is becoming more of a site for big spending advertisers to show their junk while someone like me has to face so many difficult to work with/backwards rules that I believe will eventually back fire in reddits face down the road, plus it just looks and feels like a cheap version of ifunny but then again this is all just my opinion and really all that matters is wether u enjoy it or not. Me I don't, not one bit, but oh well i guess that's why I deleted the app and will probably never use it again no matter what updates they make. Reddits just not for me...",US,1,2017-06-07,49,245.0,"(45.0, 50.0]","(225.0, 250.0]" +Post button,The app is fine. The only problem I have is that the post button was moved. It is now in an inconvenient place. It looked fine in the navigation bar; it wasn't too cluttered before. Now the buttons on the navigation bar are too spaced apart. Please move it back.,US,3,2017-06-07,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Reddit rocks.,Love it,CA,5,2017-06-07,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +LOL,Love it,CN,5,2017-06-07,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Great app,Much better than the mobile site,US,5,2017-06-07,89,356.0,"(85.0, 90.0]","(350.0, 375.0]" +Love Reddit!,Can't be on the internet properly without reddit!,US,5,2017-06-07,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Cant,Cant post GIFs,US,1,2017-06-07,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Reviewing while i wait for this slow app to load,Reddit on a pc is great. The app? Slow as all ****,CA,1,2017-06-07,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Exceeded expectations,"Does everything I was looking for. + +For the few reviewers that were saying they didn't like that they have to scroll though child comments; you can deduct a comment by tapping to the right of the poster is name 🤙🏽",GB,5,2017-06-07,76,380.0,"(75.0, 80.0]","(375.0, 400.0]" +Love it,Love it,CA,5,2017-06-07,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Best reddit client,...,SI,5,2017-06-07,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it.,Amazing app. Easy to navigate,US,5,2017-06-07,19,95.0,"(15.0, 20.0]","(75.0, 100.0]" +So glad there is such a thing!,I am so happy this website exists and even more happy it is in app form. Connecting with other great minds and having happy posts to look at to find peace and purity is wonderful!,US,5,2017-06-07,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Informative and funny....win win!,"Only started using Reddit a few months back and I love it, so sick of FB and the like as it's all ""look at me"" etc, this app has made me laugh, been blown away by some of the pictures people have posted and generally touched emotionally by some of the posts 👍",GB,5,2017-06-07,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Amazing,Love it,US,5,2017-06-07,78,390.0,"(75.0, 80.0]","(375.0, 400.0]" +Cool,Cool,CA,5,2017-06-07,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +The only read you need,"Literally everything about anything, never a dull moment...",GB,5,2017-06-07,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Fun dumb stuff,It's fun dumb reddit lol,US,3,2017-06-07,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,It's great,US,5,2017-06-07,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +I love Reddit UX/ Ui,"I'm a designer and I love this app. It's a wonderful transition between the site to mobile. I adore the animations, loading screens, integration of banner colors from sub-reddits, and the collapsible comments. It's great to scroll through and it's probably the first thing I open in the morning. Keep it up, hopefully I can work for you someday and learn the robot ways.",US,5,2017-06-07,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Muy buena,Solo me gustaría poder compartir directamente el contenido con otras apps (no links).,US,4,2017-06-07,49,147.0,"(45.0, 50.0]","(125.0, 150.0]" +Awesome.,Love it.,US,5,2017-06-07,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Pretty good,It's pretty good but I miss alien blue a little bit,US,4,2017-06-07,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Reddit,Reddit asked me to rate them and I like Reddit so here's 5 stars.,US,5,2017-06-07,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +I love it!,There are so many things that make me laugh when I'm having a bad day!,US,5,2017-06-07,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +I love Reddit,Best of the interwebs in one convenient app,CA,5,2017-06-07,73,365.0,"(70.0, 75.0]","(350.0, 375.0]" +A++,A++,US,5,2017-06-07,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Constantly asks for a review.,App constantly asks for a review. Very annoying!,US,1,2017-06-07,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Awesome,You need to know something ask on here boom you got your answer plus nice people.,US,5,2017-06-07,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +"Good app, good support",Wish they had a 4chan app like this,US,4,2017-06-07,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Like the app,Amazing,CN,5,2017-06-07,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Only app you need,Nice and easy to use interface,US,5,2017-06-07,19,57.0,"(15.0, 20.0]","(50.0, 75.0]" +Daily,"I look at Reddit daily, especially their Astronomy section. The content is always good and the articles, a plenty. Dank memes too.",US,5,2017-06-07,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Great,Great,US,5,2017-06-07,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +J,So far so good 👍🏼,US,5,2017-06-06,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +great stuff.,make links easier to click on phone? idk,US,5,2017-06-06,90,450.0,"(85.0, 90.0]","(425.0, 450.0]" +Good stuff,Good stuff,GB,5,2017-06-06,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Nice,Nice,PE,5,2017-06-06,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Smooth and stable,Very smooth and stable. Works well without any problems and it's just like the mobile view.,US,5,2017-06-06,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Pretty good,"The only thing I don't like about this app is that it doesn't go back to where you were if you need to exit for some reason. + +Other than that I can't complain really.",AU,5,2017-06-06,50,150.0,"(45.0, 50.0]","(125.0, 150.0]" +"Hace lo debe hacer, bien.",Mejor que acceder por el navegador.,MX,5,2017-06-06,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Best,The only social media i'd love to be in now. Very positive and supportive and humorous people.,IN,5,2017-06-06,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Why do I have to leave a review?,"It's Reddit. Everyone knows what it is. Can't I just rate 5 stars and leave? What if I want to keep my opinions to myself? I mean, clearly I don't, but I could!",SE,5,2017-06-06,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +I love the fact that Nigerians are not alive,lol jk Reddit post,US,5,2017-06-06,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +the best,"By far the best app I ever used, never has any bugs and always has new and interesting content.",GB,5,2017-06-06,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Worst App Ever,"Takes up space and keeps spamming ""Please Download the Mobile App"" + +I'm already fukkin using the mobile App you dumfukkkkk, ooooly fukkkkin shiiiiiiet dude... retarded developers",US,1,2017-06-06,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +It does it's purpose,Good to have a branch to communicate,US,5,2017-06-06,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +Reddit review,"Since I can't use facebook anymore.. This will have to do! Lol. It's great though. You can find topics to follow about anything, really. Somewhat like any other social media site, just far more interesting and simple to use. I recommend it. 🤘🏼😁",US,5,2017-06-06,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Perfect score,"5/7, can't share with anyone because Reddit SHOULD be well known and I don't associate with the elderly",US,5,2017-06-06,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Just because they ain't no pop,Telling me to please rate,US,5,2017-06-06,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Cool and interesting,My sister recommended it.,US,5,2017-06-06,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit,Awesome app!! Easy to find channels .. and a ton of them too!,CA,5,2017-06-06,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +Best Reddit,Hands down the best way to browse reddit on iOS!,US,5,2017-06-06,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Fantastic Site,Great app,US,5,2017-06-06,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's cool,Yeah,US,5,2017-06-06,64,128.0,"(60.0, 65.0]","(125.0, 150.0]" +Love the app,Easy to use. Great app.,US,5,2017-06-06,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +Great app,A really great one for the redditors,AR,5,2017-06-06,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +Easy to use,Great app.,CA,5,2017-06-06,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +😍,❤️❤️,DE,5,2017-06-06,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +My Favorite App,"Easily my favorite app or form of social media, I love being able to find forums and groups that I care about or things that relate to me without difficulty. It's always entertaining.",US,5,2017-06-06,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +A plus,It asked me to rate it,US,5,2017-06-06,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Perfect!,The app is actually amazing,CA,5,2017-06-06,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +MMMM YESH,Best thing since ME,US,5,2017-06-06,11,22.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app,"Good easy to use interface, wide ranging views n good for browsing",GB,5,2017-06-06,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Love this app,Keeps me up to date with everything that interests me!,US,5,2017-06-06,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Wit,My nephew laughed at me for only just discovering Reddit. I am very entertained and find myself getting sucked in for hours. FB is getting especially neglected by me since it came into my life.,US,5,2017-06-06,80,400.0,"(75.0, 80.0]","(375.0, 400.0]" +Amazing.,I get feedback so quickly and the people on here (at least the ones I've seen) are so kind and helpful!,CA,5,2017-06-06,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +AMAZING,wow,NL,5,2017-06-06,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +"Great for ""Redditing""","Perfectly usable app for browsing Reddit. Allows for quick access to topics you are involved in. All the basic capabilities for ongoing usage, but no really no extra bells and whistles.",US,4,2017-06-06,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +The finest memes,11/10,FR,5,2017-06-06,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +My comments seem to edit themselves,"When I write something and later check back in it, they've been edited. Super strange.",US,1,2017-06-06,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Great finally an official app!,"Fantastic, smooth. + +Only way this would be 5 star - if shared links to / from other people using the app natively opened the app rather than safari. Frustrates me sometimes",GB,4,2017-06-06,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Very good,Very good,SE,5,2017-06-06,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +It's lit,Good stuff,US,5,2017-06-06,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +Reddit review,I could not survive this crazy world without Reddit. That's all I have to say.,US,5,2017-06-06,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +Foro del Siglo XXI,"Excelente navegación, temáticas de todo tipo, integradora...",AR,5,2017-06-06,35,35.0,"(30.0, 35.0]","(25.0, 50.0]" +Yeet,Ya yeet,US,5,2017-06-06,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Yuh,Love it,US,5,2017-06-06,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Good,Yup,US,4,2017-06-06,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Reddit,I read it on Reddit.,US,4,2017-06-06,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Great app.,👍,US,5,2017-06-06,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Just love it,"It's a great little app, great community, simple and easy to use.",GB,5,2017-06-06,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Great!,"Was hoping that this would be good, and it it is! No complaints! Way more intuitive than the desktop but that's no surprise lol.",US,5,2017-06-06,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +"Reddit, I have stuff to do","This is the only ""social media"" I use. I am a news junkie, but the variety of information I see on Reddit rounds out all the mainstream info I read. Entertaining. Informative. Addictive.",US,5,2017-06-06,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +I f@cked Reddit.,She was great.,US,5,2017-06-06,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Pretty good app for a pretty good webzone,Lots of reasonable interactions with rough edges. App and site would be a lot better without all the white supremacists but hey at least you get memes.,US,4,2017-06-06,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +better than 9gag,"more content, more categories, people don't get offended by anything, better user experience and community",HN,4,2017-06-06,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Awesome,10/10 would recommend to a friend,US,5,2017-06-06,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +Great official app,Been using a 3rd app for a while that would crash often on gif content. Thankfully this doesn't happen anymore.,US,4,2017-06-06,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Love Reddit,Great app,US,5,2017-06-06,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +Fun,The best way to fill up 5 minutes of my time.,US,5,2017-06-06,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +As a redditor can confirm,This app bacons with the narwhal! Seriously though as an ex alien blue user the Reddit app is awesome.,US,5,2017-06-06,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +Good,It's generally good. I just wish there was a way to quote. And perhaps better copying capabilities.,CA,4,2017-06-06,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Reddit is awesome,I have no problems with at all with the app,CA,5,2017-06-06,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Great app,Better than insta,KW,5,2017-06-06,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Great app,"Great app, it keeps me up-to-date with funny stories in reddit",VN,5,2017-06-06,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Great app and great community,Love it,RU,5,2017-06-06,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +Wow,It works!,CA,5,2017-06-06,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +The best app ever,Great app,US,5,2017-06-06,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Memes,It's great for going to r/dankmemes and stealing some memes for your meme account on Instagram,US,5,2017-06-06,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Great,I loooove this version/app of reddit. 5/5.,HR,5,2017-06-06,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Definitely my most used app,"I spend enormous amounts of time using this app, and that is because reddit is the best online community ever to exist.",NO,5,2017-06-06,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +Great app,It's replaced my Facebook usage,AU,5,2017-06-06,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +I prefer it over any other social network,Love it,AE,5,2017-06-06,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Works.,Yep,FI,5,2017-06-06,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Good app,"For a great website. Some things could improve, but overall great. Wish the sub sidebars and posted rules were viewable, the ability to use flair, make quotes or bolden text.. but it's still Reddit.",US,4,2017-06-06,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Swell,V good 11/10 app,US,5,2017-06-06,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Dank 🅱️emes,r/dank🅱️emes may have fag mods but the memes are spicy,SE,5,2017-06-06,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +Easy to use,"Was never really interested in reddit until someone recommended the app. It's easy to use, has loads of differrent topics to choose from and the design is very thought through. Enjoying it so far!",DE,5,2017-06-06,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +It's... it's...,Lit. 🔥🔥🔥,US,5,2017-06-06,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Great,Great,NO,5,2017-06-06,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +Awesome,"Awesome app, great design and very convenient navigation system! Perfect!",RU,5,2017-06-06,87,174.0,"(85.0, 90.0]","(150.0, 175.0]" +Brilliant app,I've spent so long on this great communities,GB,5,2017-06-06,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Love it,Great app to use my favorite website on my phone!,US,5,2017-06-06,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +Good,Good,US,5,2017-06-06,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +It's been useful so far,I'm really enjoying,US,5,2017-06-06,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +10/10,10/10,US,5,2017-06-06,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +dope,yep,US,5,2017-06-06,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Get it,"Just get it, okay? Why are you even reading reviews. It's a no brainer.",US,5,2017-06-06,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Great app,Great app,US,5,2017-06-06,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +It's completely adequate!,"It's an app! It will ask me to review it until I leave a review or tell the app to never ask again, at which point I'll feel slightly guilty because I use the app and it was free. Worth every penny!",US,5,2017-06-06,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +5 stars,Reddit has always been one of the best platforms for online communities! The App is great.,HK,5,2017-06-06,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +5 stars!,"The experience is smooth and none other. The app size is small, and that's a good point too. If I had to make a request, there should be a clear cache option, because the app gets from 20MB to 300MB in size.",PH,5,2017-06-06,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Love Reddit,Love Reddit,US,5,2017-06-06,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +All I need.,"If it is not covered on Reddit, it didn't happen, or it's not funny, or it doesn't matter.",US,5,2017-06-06,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +Great,Great,NO,5,2017-06-06,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Love it,"Best app ever, you can post 1 comment every 10 minutes",US,5,2017-06-06,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Good,Good,US,5,2017-06-06,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Worth the download,Smoother than other Reddit apps for sure.,US,4,2017-06-06,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Fast beautiful app,App is much better than mobile site,US,5,2017-06-06,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Great,"Excellent app, wonderful interface",ZA,5,2017-06-06,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Easy to use,Great app,US,5,2017-06-06,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Great for wasting time,I want my life back,US,5,2017-06-06,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +"Sorry, can't reach reddit.","Sorry, can't reach reddit. + +Sorry, can't reach reddit. + +Sorry, can't reach reddit.",US,1,2017-06-06,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Awesome,Love it!,US,5,2017-06-06,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Nice and simple,"App is nice and clean, easy to read and find stuff once you get used to it. I still prefer using my laptop, but this is nice for simple scrolling.",US,5,2017-06-06,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Good,Things good. Make happy. Swell times.,US,5,2017-06-06,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +My Reddit experience,"In my few hours on Reddit I've seen a woman sticking jolly ranchers up her hooha, a boy named Kevin who is mentally off, and a Dragon Ball subreddit",US,5,2017-06-06,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +Great,🙂😘😜🤓🤗😋😍,US,5,2017-06-06,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Lit,Reddit is essential.,US,5,2017-06-06,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +when you force it…,you get reviews like this.,US,1,2017-06-06,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +much nice.,10/10 would recommend.,US,5,2017-06-06,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +It's lit.,I guess.,US,3,2017-06-06,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app !,Works perfectly!,US,5,2017-06-06,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +"Everything relevant, now!",Don't be left behind :-),US,5,2017-06-06,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +Annoying asking to rate,"Until this app stops asking me to rate with every update I will not rate it any higher. For the love of all that is good, I need an open in safari link. All gifs do not play in the app and occasionally I want to open a link in safari regardless.",US,1,2017-06-06,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Pretty good,Not a fan of the way you view your subreddits but it is 100x better than it used to be,US,4,2017-06-06,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Dank af,Dank,US,5,2017-06-06,22,66.0,"(20.0, 25.0]","(50.0, 75.0]" +It's a great app,It's a great app,AU,5,2017-06-06,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Great app,Very friendly gui,CA,5,2017-06-05,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +"After years of searching, who knew the official app would be the best?","This app has made Reddit fun again for me. Visually eye-popping, with a clean, easy to use interface. + +Edit: I really like the app, but the weekly nag to review the app when I've already done so is annoying.",US,5,2017-06-05,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +Love it,Have always loved this app and it's always making improvements.,CA,5,2017-06-05,44,176.0,"(40.0, 45.0]","(175.0, 200.0]" +Reddit but app.,What is there more to say? It's Reddit but in App form. Easiest 5-Star,US,5,2017-06-05,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +Excelente para las noticias,Es una aplicación muy completa a la hora de ver noticias de todo el mundo. Siempre con humor o con seriedad. Dependiendo tu punto de vista.,AR,5,2017-06-05,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Love it,Its great.,AU,5,2017-06-05,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +It works,Aadfg,SE,3,2017-06-05,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app,Much better than antenna.,US,5,2017-06-05,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Great for Rocket League,Great for RL,US,5,2017-06-05,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +420 meme city,"Inhale dank maymays, exhale dank maymays",GB,5,2017-06-05,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +The amount of inline ads are unbearable,Its like every 8th post is an ad. You have to slide into these things. Not wrap your ad campaign with sand paper and shove into my gaping consciousness. Pete sake.,US,1,2017-06-05,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Solid app but feels oddly alien,I'm used to alien blue and I still use it today. The official reddit app isn't bad. It's actually very good but incredibly awful for browsing r/all. Some kind of filters like in RES and easier access to r/all would be welcome.,PL,4,2017-06-05,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Reddit rocks!!,Excellent site that brings me smiles and insights!,US,5,2017-06-05,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +I'm loving this app,"From day one, when my friend introduced me to this website, I fell in love.",US,5,2017-06-05,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Best app ever! :),This is a great time consumer,US,5,2017-06-05,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Toppen bra!,Reddit är kul. Appen gör det enkelt att använda Reddit på mobilen lagg fritt och stilrent. Helt suverän app och hoppas du har en bra dag!,SE,5,2017-06-05,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +Awesome,Cool app,CA,5,2017-06-05,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Not much to dislike.,Does what it says it should do. Great way to kill some time.,US,4,2017-06-05,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great way to stay connected online,Likr,US,5,2017-06-05,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +great,my grandson morty loves this all you weirdos are just like him,US,5,2017-06-05,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Love it,"If Vaynerchuk likes it, i like it",US,5,2017-06-05,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +10/10,Love it!!!,US,5,2017-06-05,5,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Just needs a lock for privacy,CA,5,2017-06-05,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +Pretty good man,Gnarly app guys,US,5,2017-06-05,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Beste Bruda,Zitat Jeanine,DE,5,2017-06-05,8,32.0,"(5.0, 10.0]","(25.0, 50.0]" +Ich liebe es,Das ist die beste Erfindung seit Internet und Strom! Ich liebe diese App. Einstellungen sind zu kompliziert gestaltet,DE,5,2017-06-05,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +5,5,US,5,2017-06-05,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Endless Hours of Entertainment.,"I have spent so many enjoyable hours on Reddit while I could have been exercising. Instead of waking up and making myself a healthy breakfast, I spend my time on Reddit. Instead of going to bed at a reasonable hour, I lay in bed on Reddit until my eyes don't work. Instead of taking a quick bathroom break, I sit on the toilet browsing Reddit until my legs fall asleep. HOURS of entertainment.",US,5,2017-06-05,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's good,That is all,GB,5,2017-06-05,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +guddd,Ww,TR,5,2017-06-05,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +I'd jack off to this,I'd jack off to this,US,5,2017-06-05,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +This is a review to make it stop prompting me to review it,"So yea +Reddit very good app",CA,5,2017-06-05,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Awesome,Just awesome. Informative and entertaining,US,5,2017-06-05,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +good,i really enjoy it,VN,5,2017-06-05,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Awesome,👍🏿,US,5,2017-06-05,98,392.0,"(95.0, 100.0]","(375.0, 400.0]" +They got the app right,Nailed the Reddit experience in this app. It's my go-to for my phone fix,US,5,2017-06-05,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +Well...,I'd like to say I expect it to get better in the future as it begins to take on the rest of alien blue's people. So I will. Gotta fix that search bar though.,US,4,2017-06-05,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great app,Very easy to use,US,5,2017-06-05,79,237.0,"(75.0, 80.0]","(225.0, 250.0]" +Works great,Clean and fast.,US,5,2017-06-05,76,304.0,"(75.0, 80.0]","(300.0, 325.0]" +Amazing!,Amazing stuff on Reddit! Enough to keep you entertained every hour of every day of every year.,US,5,2017-06-05,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Great,Great for smiles!!,US,5,2017-06-05,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +Great,Use it everyday,US,5,2017-06-05,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +A great medium,"Reddit has so many different forums, articles, topics, viewpoints, it's impossible to NOT find something for each and every person. A bit of an immature cesspool at times, but it all depends on what you are there to find.",US,4,2017-06-05,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Reddit is fun,This app works fairly well for the redditing needs.,US,5,2017-06-05,38,152.0,"(35.0, 40.0]","(150.0, 175.0]" +Reddit is life,The front page of the internet,CA,5,2017-06-05,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +The app is great. YMMV with Reddit as far as usefulness goes,Reddit is a place where every user has long lost their sense of humor. Each user only knows what is funny based on jokes they have seen with the most upvotes.,US,5,2017-06-05,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Nice memes,10/10 would meme again,US,5,2017-06-05,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Love the app!,Love this app! I don't use the mobile site anymore! Has all the things i need!,US,5,2017-06-05,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Endless Knowledge & some fun,This is what the internet should be. Anonymous mediated interactions with other humans.,US,5,2017-06-05,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Quality,A quality app that's more interesting and amusing than Instagram and Snapchat,US,5,2017-06-05,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Good,Not bad. I mostly want it to stop asking me to write a review.,US,4,2017-06-05,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +Great App,"Easy to use +Clean interface",US,5,2017-06-05,81,324.0,"(80.0, 85.0]","(300.0, 325.0]" +Yeee,It's a good app,US,5,2017-06-05,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Warning! Extremely Addictive!,Can't stop. Absolutely love it!,AU,5,2017-06-05,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Fun app,It's a lot of fun.,US,5,2017-06-05,72,216.0,"(70.0, 75.0]","(200.0, 225.0]" +r/mildlyinteresting,Reddit in a nutshell.,AU,5,2017-06-05,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +Great App!,Love it,US,5,2017-06-05,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +Basically my phones homescreen,I use this app on a daily basis and it has yet to crash.,US,5,2017-06-05,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Love the community,A wonderful app,US,5,2017-06-05,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Great App to get Reddit on the Go,"Works great, no crashes loads fast.. Sharing is easy as.",US,5,2017-06-05,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome,Love the app,CA,5,2017-06-05,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Love Reddit,LOVE THIS APP!,US,5,2017-06-05,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +нормально,только надоедает просьбой об отзыве.,RU,4,2017-06-05,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Love it,Cool,PE,5,2017-06-05,10,50.0,"(5.0, 10.0]","(25.0, 50.0]" +I will always love it.,Bottom line is: when all the other web crawlers on the inter-webs finish what they have to say(never)... Reddit.com and it's armies of followers come in to clean up the mess. This is the only place I get my real news the rest is just flourish. Bravo resistors. WEAREREDDIT.,US,5,2017-06-05,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Solid,Just works,US,5,2017-06-05,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +"Simple, informative, comprehensive","Wonderful for connecting us across Earth in trustworthy, immediate ways with dynamic communities of shared interests, goals, and values.",US,5,2017-06-05,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Just a great community,Super helpfull,NL,5,2017-06-05,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Great,"Nice interface, love it!",BR,5,2017-06-05,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Great,👍,NO,5,2017-06-05,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +Great,Love it,US,5,2017-06-05,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Awesome,"One of my favourite apps; one of the best online communities; an EXCELLENT resource for pretty much anything - entertainment, knowledge, support....",GB,5,2017-06-05,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Relly Great,I love it,DK,5,2017-06-05,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Interesting App,"It's a content based social media site. Learn cool stuff, find funny gifs, and do stuff",US,5,2017-06-05,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Great app,"Great appearance, user friendly",MY,5,2017-06-05,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +lol,great,MY,5,2017-06-05,73,365.0,"(70.0, 75.0]","(350.0, 375.0]" +Scroll away the stone,My go to poop time scrolling material.,US,5,2017-06-05,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Reddit is fckn amazing,"No intrusive ads, no crashes, simple, user friendly, easy to use 10/10 best app so far",HU,5,2017-06-05,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Very nice!,I like it.,RU,5,2017-06-05,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +Great,Great.,GB,5,2017-06-05,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Works,More stable than web interface safari on old ipad2.,AU,4,2017-06-05,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +"Love the app, but please ditch the commercials",Love the app but please ditch the commercials,NL,4,2017-06-05,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Dank app,Very Dank,GB,5,2017-06-05,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Good community,I love how professional people are in the forum. The interface of this apps is user-friendly as well.,BN,5,2017-06-05,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Good,Good,GB,5,2017-06-05,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +A great app for the best site on the web,A great app for the best site on the web,AU,5,2017-06-05,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +Great app!!,Reddit offers great original content daily. I highly recomend👍🏼,US,5,2017-06-05,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Reddit told me to,Didn't shut up until I rated. Still a great app though,US,5,2017-06-05,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +The best,Simply the best,IE,5,2017-06-05,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Absolutely Brilliant!,No Words ❤️ Btw New Peeps do subscribe to ELI5.,IN,5,2017-06-05,72,216.0,"(70.0, 75.0]","(200.0, 225.0]" +I like Reddit a lot !!,I'm just learning how to get around but this is a super great,US,5,2017-06-05,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Get this App!,Seriously get on Reddit. The key is to find a the subreddits you like and then this site (app) turns into the most interactive and amazing thing in the plannet. I'm not even joking when I say that Reddit users have been there for me on nights I've wanted to commit suicide. The community is inclusive and welcoming. Download Reddit and become apart of my community.,US,5,2017-06-05,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Awesome app,Using it for a year. Love it,US,5,2017-06-05,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Appen utmärkt,Appen för Reddit är utmärkt. Men tjänsten i sig har en stod brist och det är sökmotorn.,SE,5,2017-06-05,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Great app,Top notch,US,5,2017-06-05,24,24.0,"(20.0, 25.0]","(-0.5, 25.0]" +Really fun,There is literally everything on reddit,US,5,2017-06-05,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Awesome mobile app,"Always entertaining! A ""must have"" !",US,5,2017-06-05,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Ads in paid app,"I paid for this app and I still get bothered by ads such a shame, the previous app was much better.",EC,1,2017-06-05,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Enthralling,Weaning me off other social media.,US,5,2017-06-05,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Love,Love it,US,5,2017-06-05,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Great app,Redditors are my people :),US,5,2017-06-05,74,74.0,"(70.0, 75.0]","(50.0, 75.0]" +Sometimes,"Use it all time +Good when bored +Still like Reddit everyday!",US,4,2017-06-05,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +Awesome,"The UI could be a bit more streamlined, but still a good quality app that will have you on for hours",US,4,2017-06-05,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Excellent,"Easy to use, well organized, and a great community!",US,5,2017-06-05,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +it asked for a review,good memes,US,5,2017-06-05,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Love it,Rt,US,5,2017-06-05,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +👍🏻,👍🏻👍🏻👍🏻👍🏻👍🏻,US,5,2017-06-05,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Cofefefefed,Cofefe skin my nutsack,US,5,2017-06-05,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +It's great,Wow,US,5,2017-06-05,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Great app!,"Love the app. It is a great way to stay up to date with all throngs Reddit.. which, is pretty much just all things. Haven't run into a problem with it yet. Good job guys.",US,5,2017-06-05,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Es good,"A little weird sometimes + +butts",US,4,2017-06-05,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +So much fun,I love this app.,US,5,2017-06-05,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Love!,How could you not love Reddit? The new update is funky getting used to but I'm sure I'll be able to navigate it no time! Never used it on a desktop so not sure how I would compare it to that version.,US,5,2017-06-05,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +Awesomeness,Love it.,US,5,2017-06-05,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +Everywhere,On my bed and on the pooper. The reddit app gets me through life like a trooper,US,5,2017-06-05,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +Surfing,Love surfing this app at the end of a day,US,5,2017-06-05,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +Reality toolkit,"Democracy and free speech in action; the good, the bad and the ugly all in one place. Indispensable tool for the new world.",US,5,2017-06-05,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's good,Get it now,US,5,2017-06-05,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +"Force me to do a review, huh?",Any app that pops up a banner that won't go away until I review the app gets one star.,US,1,2017-06-05,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +What I think of Reddit,Is really good,US,5,2017-06-05,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +Loading,Good but some videos or Gifs wont play,US,4,2017-06-05,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Ok,This app it fun,US,3,2017-06-05,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Good enough.,"This is the friendliest, most sincere, most adult of the social media platforms.",US,5,2017-06-05,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +Not bad,"Mostly it's a decent app but it doesn't alert me when people reply to my posts, only to my comments which is frustrating.",US,4,2017-06-05,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Umm,Umm,US,3,2017-06-05,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +It's reddit,Works,US,5,2017-06-04,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Ohhhh baby baby baby,"Gals and guys, this is my jam right here. Maaayne, Reddit is just cool beans. I can't believe how many hours I spend on this app. I laugh so hard that I snort and I cry so hard that I toot. This app is as kewl as freakmaster 2000.",US,5,2017-06-04,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Amazing,Awesomeness,US,5,2017-06-04,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Yes I like Reddit,And this app is super,US,5,2017-06-04,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Great,Such great,US,5,2017-06-04,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +"New to Reddit, won't be leaving.","Love the app, dialogue, photos...EVERYTHING.",US,5,2017-06-04,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +"It's no Alien Blue, but it'll do","I also think part of it is the algorithm, because I just keep seeing the same content on the front page for hours at a time. It's not breaking news stories,either, but gifs of dogs or cats or girls doing stuff. The app is better than using the page site if you're on mobile, but I miss Alien Blue.",US,4,2017-06-04,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +Fun,Reddit is fun!,US,5,2017-06-04,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Nice,Nice.,US,5,2017-06-04,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Hilarious community,The people of Reddit are very funny. Constantly being asked to rate is annoying though.,US,5,2017-06-04,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Super👍🏻,Die App macht wirklich fun und ist echt gut👍🏻👌🏻,DE,5,2017-06-04,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Solid reddit!,Works stable only minor issues,DE,4,2017-06-04,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Ooooooo,Great,US,5,2017-06-04,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,I love this app,US,5,2017-06-04,87,261.0,"(85.0, 90.0]","(250.0, 275.0]" +Could use certain features that other apps have/don't have,"-SFW Feature where you can hit a button and no NSFW links will show up in your thread. + +- needs content filter + +-when opening a link, start with just the image, video, or gif while not loading stuff like Imgur or YouTube. What I mean is not opening the website, only the picture or video. Then when tapping a button, give us the choice to open it on that website. + +Just to name a few.",US,4,2017-06-04,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +Reddit ish,"Like the program just wish it was a little more easy to navigate like, so I would like to be able to skip down to my own post in the timeline of posts not just go to my post without seeing the surrounding comments. Some threads don't actually reply to each other there is jut a lot of ""top level"" responses. If you only view your own top level response then finding yours amongst a million top level responses takes forever.",US,3,2017-06-04,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Great,Great,CO,5,2017-06-04,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +11/10,professional redditor would do again,CA,5,2017-06-04,36,36.0,"(35.0, 40.0]","(25.0, 50.0]" +Five stars,Five stars,US,5,2017-06-04,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +It's reddit,Read title,US,5,2017-06-04,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +Great app,Really I have no complaints,US,5,2017-06-04,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Notifications,The notifications in the latest update are beyond horrible. They are useless I cannot see color distinction between read vs non read. They do not update neither. Please fix this.,US,3,2017-06-04,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +Pretty great app,Only things are missing support for Imgur albums and proper gfycat support. Currently imgur albums are just in-app browser links and gfycats always looks worse/have lower frame rate with the built in viewer.,GB,4,2017-06-04,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +The front page of the internet,Yay,US,5,2017-06-04,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +Reddit tiene futuro,Es supremamente vanguardista y en linea con el mundo segundo a segundo y te da voz para participar y debatir tus ideas y pensar,CO,5,2017-06-04,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Love the new app,See subject line,US,5,2017-06-04,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Spam notifications,Sends constant spam all day and no way to turn it off without turning off notifications completely.,US,1,2017-06-04,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Reddit university,Top notch and it's free,US,5,2017-06-04,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Good,"However, I think the new icon is worse. Gradient looks bad.",CA,4,2017-06-04,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Reddit on the go,I like this app overall. It runs great and navigation is easy.,US,4,2017-06-04,65,325.0,"(60.0, 65.0]","(300.0, 325.0]" +So awesome much wow!!,I never heckin cared about anything before I discovered this alien app,US,5,2017-06-04,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Very lacking,"Visit history and (web)cache/Cookies should be able to be cleared separately, want to know what I've visited without bloating the amount of storage █ Access to each sub's sidebars should be much easier; like, display it along threads list in light green background, like one of the pinned threads but more visible █ Cannot create/delete multireddits; neither can change names of multis, or add/remove subreddit to them █ Unintuitive features: No hints to collapse comment threads █ Sliders are incredibly hard to use █ No landscape orientation",US,2,2017-06-04,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +Good,Good,US,4,2017-06-04,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Great app,Works well. Good user interface.,US,5,2017-06-04,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +One of the better apps out there,:),CA,5,2017-06-04,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Great platform.,100% user made content and user-voted submissions. Interesting to see what everyone likes!,US,5,2017-06-04,75,225.0,"(70.0, 75.0]","(200.0, 225.0]" +Love it!,The links to other articles keeps it very relevant.,US,5,2017-06-04,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +"New to me, useful",For me I got Reddit reluctantly but have found it informative for the particular health topic about which I wanted info from other patients,US,3,2017-06-04,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great Reddit client,Superb way to browse reddit,GB,5,2017-06-04,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Quite convenient!,A great app for viewing the latest Reddit posts!,US,5,2017-06-04,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +This Reddit app is great except...,Everything about this app is fantastic but for the love of God stop recommending the trending posts. It's just annoying and I'm already on the site enough times in a day to know what the post is. Everything else is 10/10,US,4,2017-06-04,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +Well done.,"I still use the Alien Blue app also because it opens directly to whatever sub Reddit I was feeling last and most of the time i just scroll r/funny, but it's great how are you can scroll through without needing to click on links and videos and pictures are right there on this app.",US,5,2017-06-04,83,415.0,"(80.0, 85.0]","(400.0, 425.0]" +5/5 brudar,Tust,SE,5,2017-06-04,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Novice,New here but like what I seen,US,4,2017-06-04,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +It's reddit,If the internet could be summed up into one website....,US,5,2017-06-04,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Drafts and pm deletion,"What's the deal with this app and lacking basic features which should've been part of it from the get go? Such as having drafts section and being able to delete private messages? These are basic stuff!! Come on reddit, up your game man!",US,3,2017-06-04,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Great app,Has served me quite well. And every update it's been improving. There isn't really any downside to using this one...except you can't make [Spoiler](/spoiler) posts like you can on desktop.,CA,5,2017-06-04,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +I use it daily.,I enjoy reading reactions to current events from the international community of Reddit users.,US,5,2017-06-04,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Reddit changed my life.,Literally.,US,5,2017-06-04,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Amazing,Much better than it was a couple years ago.. Now I almost never use the computer version of reddit cause this one is so good!,US,5,2017-06-04,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Great info across all spectrums,"I love this app for browsing different opinions and sometimes getting a ""cute puppy fix""",US,5,2017-06-04,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Love it,"Lots of fun. I especially like how you can find a subreddit/community for pretty much any interest. From specific video games to fashion advice, beer to photography, if you can think of it there's probably a subreddit for it. The app itself runs smoothly and anything you subscribe to on a laptop will show on the app.",US,5,2017-06-04,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Reddit is manipulated by US security agencies,"Reddit is known to be heavily manipulated by us intelligence operations. The following excerpt is from the Washington Post, which itself was a copy and paste from a blog entry on Reddit: + +Notice Eglin Air Force Base as the “most addicted” city. This is about a year ago, so reddit has been getting heavily sh!tp0sted by government employees for at least this long. + +Eglin AFB is a major hub for Pentagon domestic manipulation programs online. + +A lot of this got established right when the war on terror started. Then in 2012 the Smith-Mundt Modernization Act legalized Pentagon / other agency domestic propaganda. That’s not to say what we think of as ‘propaganda’ or manipulation wasn’t going on before – just that they no longer have to plausibly believe the narrative they try to trick you into buying.",US,1,2017-06-04,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +I love Reddit,"I rarely use my computer, so this app it great due to the fact that it functions great.",US,5,2017-06-04,41,123.0,"(40.0, 45.0]","(100.0, 125.0]" +Nice.,I just love it.,RU,5,2017-06-04,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Adverts,Every 5th post is an advert and very often it's the same advert over and over. Sad.,GB,1,2017-06-04,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +It's time to stop,I'm rating this app 1 star because it won't stop begging me to rate it,US,1,2017-06-04,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +Works perfect,"Perfect for passing the time when bored or travelling, prefer the app than the website",IE,5,2017-06-04,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Love Reddit,"Dumped FB, signed up to Reddit. Best decision ever.",US,5,2017-06-04,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Great app,👍,SK,5,2017-06-04,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Love it,Tons of great content,US,5,2017-06-04,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Well made and easy to navigate.,"This is a great app, that looks good and is laid out well. Much prefer it to the website.",GB,5,2017-06-04,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +It works,No complaints. Which like I want it to.,US,5,2017-06-04,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +Awesome!,"I can't believe I didn't find this app sooner!! Excellent content and info for any topic you need. Great people, great app!!",US,5,2017-06-04,33,165.0,"(30.0, 35.0]","(150.0, 175.0]" +Reddit is the Devil,"Seriously, you first get on Reddit to read cool information about stuff you like or to look at cute and adorable photos. Then you find the dankmemes, jokes, and nsfw subreddits. Your life is gone after that. You are a redditor from that point. Even if you only lurk for the first two years like me you're still a redditor.",US,5,2017-06-04,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Спасибо,Всё работает отлично,RU,5,2017-06-04,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +Great,"Great stuff, very interesting.",US,5,2017-06-04,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +A Great App the Works Tremendously Well,"Rd been a rocky beginning, but the official Reddit app is finally everything you could want out of it. I'd even say better than the actual website. It offers a great amount of accessibility and functionality that's very easy to use and encourages further browsing. Easily one of my favorite apps, period.",US,5,2017-06-04,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Good stuff,Entertaining!,US,5,2017-06-04,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Love it!,Great,NL,5,2017-06-04,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +It's ok.,"Don't really understand Reddit, but seems cool",US,5,2017-06-04,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Ok,Ok,VN,5,2017-06-04,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +Reddit,Robert on reddit,US,5,2017-06-04,41,123.0,"(40.0, 45.0]","(100.0, 125.0]" +Newbie,Hi! So far so good with Reddit. I'm new to this so I really don't know what to do but it's very fun!,US,4,2017-06-04,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Worth the storage space,Makes browsing much better.,US,5,2017-06-04,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Reddit saved my life.,"I was standing on a chair w a noose around my neck when I downloaded Reddit. I got distracted and completely forgot about my suicidal plans. It's been 13 hours and I'm still standing on this chair haven't moved once besides when I almost fell and ""accidentally"" died. Haha thanks Reddit.",US,4,2017-06-04,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Great updates,Much improved for viewing comment scores and following threads.,US,5,2017-06-04,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Why Location?,Adding location was not a good idea.,AE,3,2017-06-04,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Love it!,"User friendly and convenient to use. I find myself reaching for my phone to browse Reddit whenever I'm standing around waiting (e.g. lines at the bank, grocery store, etc). Amusing way to pass the time, although it's changed recently. Lately, there's been a lot of weird subreddits crowding the front/all page, such as Star Wars, meirl, madlads, etc, hence the 4 stars instead of 5. I've been too lazy to log in and customize my feeds, but that's certainly an option.",US,4,2017-06-04,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Annoying ads,Can't I just pay to remove ads?,TR,4,2017-06-04,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +Good,I don't see problems,CZ,5,2017-06-04,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Dank,Dank,US,5,2017-06-04,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Strong and reliable,Super stable!,GB,5,2017-06-04,24,24.0,"(20.0, 25.0]","(-0.5, 25.0]" +Good,Good,GB,5,2017-06-04,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +"Reddit is good, app is okay",Why the hell dies landscape mode have so much empty space??? It's ridiculous.,US,2,2017-06-04,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Nice,Thxs,SE,5,2017-06-04,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Excellent,Excellent.,US,5,2017-06-04,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app to browse through my favourite newsfeed and subscriptions,Great app to browse through my favourite newsfeed and subscriptions. Interface is pretty sleek and minimal.,AU,5,2017-06-04,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Great stuff,Much better than unofficial app,GB,5,2017-06-04,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Reddit,Good in medsos,ID,5,2017-06-04,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +"Great interface, great content",Does the job 👍🏻,GB,5,2017-06-04,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +kidding? Its reddit!,5 stars no doubt,AU,5,2017-06-04,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Best App Ever*,*See title.,US,5,2017-06-04,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Nice,Love the app but dont tell me to rate your app everytime I open it... 5 stars if it wouldnt do that.,DE,3,2017-06-04,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +Great app to browse Reddit with,As mentioned above :),GB,5,2017-06-04,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +Wonderful,This app works amazing I've never had a problem with it in the years that I've used it.,US,5,2017-06-04,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +Love it,Love Reddit!,AU,5,2017-06-04,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +👌🏼lit,👆🏼👆🏼👆🏼,TR,5,2017-06-04,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Adverts,"WTF reddit, I get it with a few ads, fine, but this is getting out of control. Please amend or lose users.",NZ,3,2017-06-04,44,88.0,"(40.0, 45.0]","(75.0, 100.0]" +Love it,Good!,DE,5,2017-06-04,65,260.0,"(60.0, 65.0]","(250.0, 275.0]" +You already know if you like it,The app throws you back to the golden age of internet memes and social comedy. It is comparable to early Facebook and Instagram or YouTube back when it actually took talent to be funny.,GB,5,2017-06-04,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Better than on Desktop,See above,DE,5,2017-06-04,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +App works great,Reddit is what it is,SE,5,2017-06-04,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Yup,It's good.,US,5,2017-06-04,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +Reddit til iPhone,Bruger den kun til iPhone og er super tilfreds!,DK,5,2017-06-04,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,"Easy to use, nice interface - no glitches for me (so far).",GB,5,2017-06-04,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Very nice,Very nice,TR,5,2017-06-04,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Good,Good,CA,5,2017-06-04,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Good App,Solid 4/4,US,5,2017-06-04,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Easy to use,Use this app all the time.,US,5,2017-06-04,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Memes,How do I get green text,US,5,2017-06-04,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Good app worthy,Nice,IN,5,2017-06-04,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Great UX,"This app has a great usability, intuitive interface and easy browsing",BR,5,2017-06-04,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +I just love Reddit.,Love it.,US,5,2017-06-04,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Great,Reminds me of the old forum boards.. Lots of great information,RO,5,2017-06-04,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Reddit Rocks,Love the posts but the comments truly make it!,US,5,2017-06-04,81,324.0,"(80.0, 85.0]","(300.0, 325.0]" +Would be 5 if they didn't ask for reviews all the time,"But then again, I wouldn't review it at all f they didn't. So- yeah 5:5",US,5,2017-06-04,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +App is great,I like it,US,5,2017-06-04,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Gud,It gud,US,5,2017-06-04,55,220.0,"(50.0, 55.0]","(200.0, 225.0]" +Not the Alien I am looking for ...,"... but a lot better than the alternatives I have tried. It also appears to have solved the memory bloat problem apparent in other apps - no crashes so far, even with huge images. + I give it 4 stars only bc I'm annoyed by the ads. +How about a paid version without them?",US,4,2017-06-04,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +goooooood,awesome,VN,5,2017-06-04,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +New to Reddit,"I'm new to Reddit, and I'm loving it so far. Lots of great Q&As for any topic of interest.",US,5,2017-06-04,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Creativity flourishes,"I have always loved Reddit for its witty comment sections and the breadth of content. There's a subreddit for everything. The straightforward, stripped-down presentation keeps the focus on the content and off advertisements and gaudy aesthetics.",US,5,2017-06-04,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Best,Love it,US,5,2017-06-04,91,182.0,"(90.0, 95.0]","(175.0, 200.0]" +Awesomely easy,I use it for let's not meet,US,5,2017-06-04,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Nice app,Works fine and is pretty simple,CL,5,2017-06-04,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +Excelente contenido,Especialmente la sección Funny,MX,5,2017-06-04,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +"Yeah, it's pretty good!","Yeah, it's pretty good!",US,5,2017-06-04,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +REDDIT,i love this app!!,US,5,2017-06-04,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Very lacking,"Visit history and (web)cache/Cookies should be able to be cleared separately, want to know what I've visited without bloating the amount of storage █ Cannot create/delete multireddits; neither can change names of multis, or add/remove subreddit to them █ Unintuitive features: No hints to collapse comment threads █ Sliders are incredibly hard to use █ No landscape orientation",US,2,2017-06-04,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Works very well,"Easy to use, what else do you need?",US,5,2017-06-04,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +It good,I fell like it should be like the pic etion but it what u get,US,3,2017-06-04,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +"Nice app, upgrades help.",Yep.,AU,5,2017-06-04,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Christmas,Fgg,AU,5,2017-06-04,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +It's a well put app,It's a well put app,PH,5,2017-06-04,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Easy Entertainment,Always something to distract.,US,4,2017-06-04,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Good,Good,AU,5,2017-06-04,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Great,Great,US,5,2017-06-04,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +It's reddit,Who doesn't like reddit,US,5,2017-06-04,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Desperately seeking approval,"Annoy me with constant pop ups to review the app and you're gonna have a bad time. One star for the annoying ""Rate Us"" pop up that comes up every few times I open the app.",US,1,2017-06-04,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Works,It works,CA,5,2017-06-04,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +It's Reddit,No problems with this app.,US,5,2017-06-03,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Wouldn't stop asking me for reviews,And kept wanting notifications to be switched on.,GB,1,2017-06-03,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +It's Reddit,On your phone. Dedicated Reddit app. Gotta love Reddit. Once I used to love reading jokes online. I used to tell my friends I reddit.,CA,5,2017-06-03,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Excellent app!!,Please make one for windows 10!,US,5,2017-06-03,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +Love it,Its the bees knees,US,5,2017-06-03,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Can't get enough it!!,"It's a great collection of a wide variety of pics, videos and stories. There is a little something for everyone! I can spend hours looking at all the stuff and not see the same thing twice.",US,5,2017-06-03,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Goood,It be gooood,US,5,2017-06-03,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Highly Recommended!,Best reddit app. Nearly flawless.,US,5,2017-06-03,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +No multi Reddits?,Easy app to browse but the multi Reddit feature is no where to be found,CA,3,2017-06-03,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +It scroll good,Rull good,AU,5,2017-06-03,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +Perfekt 👌,Gut übersichtlich und angenehm zu benutzen,DE,5,2017-06-03,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +What are you waiting for?,Quit reading reviews. Scroll back up and get it!,US,5,2017-06-03,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Great Reddit app,Never crashes never freezes spend almost as much time on the app as I do on the toilet,US,5,2017-06-03,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +Amazing,"So fun and useful! Pretty much a +sub-Reddit for anything!",US,5,2017-06-03,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Noice,Yup,US,5,2017-06-03,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Great App,👍,US,5,2017-06-03,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Real people will have their say!,"Real people, real discussions on whatever you are interested with",US,5,2017-06-03,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Reddit is...,"The bee's knees, the cat's pajamas and yes, the squirrel's pearls.",US,5,2017-06-03,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Great App,Great way to connect with others who have similar interests,US,5,2017-06-03,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Way better!,This newer app is wayyyyyy better than the old alien blue one. Super sweet! Good job guys!!,US,5,2017-06-03,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Great app!,Easy to use!,US,5,2017-06-03,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Great App!,This app makes it easy to browse Reddit and find the content you are looking for.,US,5,2017-06-03,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Great,Does what it's supposed to do,CA,5,2017-06-03,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +Great App,Love this app.,GB,5,2017-06-03,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Taste bean,Good memes but users crush my dreams,US,4,2017-06-03,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +The best,One of the best apps,SE,5,2017-06-03,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it!,It's an awesome app,US,5,2017-06-03,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +great,awesome app,LB,5,2017-06-03,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Fun,Passes the time when I'm at awkward social events and I can just get lost in my phone and no one can bother me,US,5,2017-06-03,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Getting better,"Not as feature rich as Alien Blue, but it's getting better with each update",IE,4,2017-06-03,66,66.0,"(65.0, 70.0]","(50.0, 75.0]" +Thumbs up,The best.,US,5,2017-06-03,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Awesome,Awesommmmme,US,5,2017-06-03,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Love it,Awesome,US,5,2017-06-03,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +Little time and a lot of curiosity? This is your app,"I hear first about pretty much everything, thanks to Reddit. It also allows me to know and learn a little bit about everything. I just love it!",CL,5,2017-06-03,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Awesome,:),US,5,2017-06-03,19,95.0,"(15.0, 20.0]","(75.0, 100.0]" +I was way too productive last year,"I was quite the social butterfly last year, and I didn't really care for it. Reddit helped me break out of the rut. Thanks Reddit!",US,5,2017-06-03,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +It's everything I expected and wanted!,"What did I Just Say!?! +Read the frickin' title!",US,5,2017-06-03,76,380.0,"(75.0, 80.0]","(375.0, 400.0]" +Awesome app,It's a really great app to read reddit and has functioned good so far,CA,5,2017-06-03,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Good app,Has something for everyone and easy to use on phone.,US,5,2017-06-03,72,360.0,"(70.0, 75.0]","(350.0, 375.0]" +Push notifications are out of control.,"It's nice Reddit finally decided to cater to mobile users and create their own app but the push notifications make this app infuriating to have installed. + +The app insists on sending me notifications about posts I have no interest in. I have turned off ""recommended posts"" in my notification settings and yet I still receive notifications I don't want. + +Additionally, even after I have cleared the unwanted notifications, when I open the Reddit app I'm immediately taken to the post I was notified about. They have made it impossible to ignore their unwanted notifications. + +Honestly even Facebook isn't this bad - trying to push Reddit in users faces all the time is pathetic. I'll be going back to an unofficial app until Reddit sorts out how to deliver push notifications without being overbearing.",US,1,2017-06-03,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +Pretty entertaining,Always something interesting to read or laugh about,US,5,2017-06-03,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +All the important topics day by day,Helps you get acquainted with the current,US,5,2017-06-03,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Reddit,(:,CA,5,2017-06-03,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Gammal hederlig allt-åt-alla-delning,"Reddit är den totala antitesen till Snapchat osv: dela vad du vill, det sparas för alltid och alla kan se det. Välgjord app, men det går förstås att använda på webben och i 3:e-partsappar också. Önskar att default-sorteringen gick att ändra, men i det hela, toppnivå!",SE,5,2017-06-03,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +MAJOR SECURITY FLAW DO NOT DOWNLOAD,"This app will prevent your iPhone from auto locking, regardless of setting. There is *no* option to disable this! I very nearly had some extremely sensitive personal data compromised as a result. I repeat: your phone *WILL NOT LOCK* if you leave this app open. This is a very serious and inexcusable security hole. I honestly can't believe it was allowed in the app store. DELETE IMMEDIATELY!!",US,1,2017-06-03,72,288.0,"(70.0, 75.0]","(275.0, 300.0]" +Zomg,Reddit is the best thing that's ever happened to me.,US,5,2017-06-03,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Love it,Love it,US,5,2017-06-03,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +REDDIT,"So glad I discovered Reddit. I could spend hours on here reading the just the general postings, much less the categories I'm thoroughly interested in!",US,5,2017-06-03,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +Ausgezeichnet :),Sehr gut,US,5,2017-06-03,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +My thoughts on Reddit mobile,"First of all it is an absolutely wonderful tool for learning, but not only that it also has an overall smooth run, I rarely (if at all) have problems with it. + +I highly recommend this app",US,4,2017-06-03,91,182.0,"(90.0, 95.0]","(175.0, 200.0]" +Easily the best app and community ever,Between rolling on the floor laughing and reading real issues and discussing with real people who have opinions not watered down is finally the best thing that happened to Internet :),CA,5,2017-06-03,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +It's good,Pretty good app.,US,5,2017-06-03,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +So far so good,Ill review again if there are errors or complaints,PH,5,2017-06-03,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Not as good as Alien Blue.,"Not as good as alien blue, but not horrible.",US,3,2017-06-03,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +Awesome,"I love this site it has everything, thank you for making the internet great again !",CA,5,2017-06-03,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Most used app,"I love this app. It has its bugs here and there, all apps do, but overall it's fantastic. It's my most used app by far.",US,5,2017-06-03,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Rating to remove pop up,"It's Reddit, you get the point",US,4,2017-06-03,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +Reddit app,"Great app, just a little clunky to search for new subreddits imo",NO,4,2017-06-03,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Great,Great,US,5,2017-06-03,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Excellent mobile app,This app mimics the web and is beautiful. The iOS team did a great job.,US,5,2017-06-03,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +<3,<3<3,SE,5,2017-06-03,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Better than Facebook,My Facebook friends are boring. I interact with people all over the word on Reddit!,US,4,2017-06-03,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +Reddit,Slaps,US,5,2017-06-03,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Simplicity is key,"Now that I've been using Reddit for iOS for the past few months I prefer it over the desktop/browser site. It's simpler, cleaner and delivers the same information without the additional desktop distractions. Same old Reddit just ... better!",US,5,2017-06-03,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Great App,10/10 get this app lit lit lit as a christmas clit,CA,5,2017-06-03,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Fun!,I'm enjoying it.,CA,5,2017-06-03,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +It's reddit,Reddit is good. The app works well.,US,5,2017-06-03,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +Great app,Love it!,NO,5,2017-06-03,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Es good,Jes es good,US,5,2017-06-03,4,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Dank,So dank.,GB,5,2017-06-03,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +Best way to reddit,bwtr,PE,5,2017-06-03,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Love,Love this app!,US,5,2017-06-03,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +Nice app,Easy to use,TH,5,2017-06-03,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Works great,Only improvement can think of would be viewing of subreddit sidebars.,SE,4,2017-06-03,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Collective wisdom,I always enjoy the collective wisdom and collaborative spirit on Reddit.,CA,5,2017-06-03,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +I love Reddit,There is a little bit of everything on here.,US,5,2017-06-03,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +Rising,"I enjoy the app, just wish you could sort by rising content.",US,3,2017-06-03,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Love you guys !,"Your app is wonderful, really appreciate all the work you guys are doing + +Yogi",US,5,2017-06-03,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Awesome,Great App,US,5,2017-06-03,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Now W/ Mod Tools!,The mod tools are fantastic! Thank you for the updates!!,US,5,2017-06-03,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +amazing. just like quora but with a better interface.,the communities and moderators there are the best. it's easy to use and topics don't bore you over there. better than instagram/snapchat.,HK,5,2017-06-03,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +One of the best communities on the web,"Reddit has everything you need. Just type what you're thinking about in the search bar and you'll find lots of communities of people who share the same interests, great for gathering information.",GB,5,2017-06-03,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's nice,It's nice,US,4,2017-06-03,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Excellent forum,"Knew about it for many years but Ignored it as the layout didn't look very appealing. But have started using it for some specific research and now I realize the power of Reddit. Must appreciate the work moderators put in in removing anything offensive or put of line. Overall, very good experience so far.",CA,5,2017-06-03,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Mobile Reddit,Would be 5 stars if it didn't brow beat me into rating it.,US,4,2017-06-03,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Fantastic App,I honestly couldn't want anything more. I genuinely love this app.,US,5,2017-06-03,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Very smooth,The app feels very responsive and is great to use. Keeps me occupied throughout the day!,AU,5,2017-06-03,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +Fantastic Programme!,Reddit is really good programme!,UA,5,2017-06-03,66,66.0,"(65.0, 70.0]","(50.0, 75.0]" +Yah,Reddit =better than Facebook,US,5,2017-06-03,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Great App!,"So far so good. For me, there should be Clear Cache option for iOS users so we could save our space regularly.",PH,5,2017-06-03,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +I mean,"It's Reddit, nuff said",US,5,2017-06-03,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +Reddit,La app está bien pero se me rompieron los dos brazos poco después,ES,4,2017-06-03,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +Great...,"Love it, and uses it every day!",DK,5,2017-06-03,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Works,No complaints! It does what I want it to do,US,5,2017-06-03,36,144.0,"(35.0, 40.0]","(125.0, 150.0]" +Good reddit client,Better than the other alternatives I have tested. Definitely recommended,US,5,2017-06-03,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Love it,"Anyone can use Reddit, there is a place for everything and everyone is active.",GB,5,2017-06-03,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +Good but improvements would help,"Really good app overall. +Please fix a back button when clicking on links within reddit, sometimes you can't go back.",GB,4,2017-06-03,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Ok,Ok,CA,3,2017-06-03,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Best time waster of all time,"Viewing the most ridiculous things the web has to offer, supreme time wasting skill is lvl 1000",US,5,2017-06-03,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Top,Top,HR,5,2017-06-03,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Great app funny subreddits,But why is there a /r/ behind each subreddit?,NL,5,2017-06-03,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Eff yeahhhh,no words can explain Reddit. Sorry. Just do it.,CA,5,2017-06-03,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Love Reddit!,All of my favorite topics in one place. Lots to explore and discover. Love it!,US,5,2017-06-03,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Good,Good app,IE,5,2017-06-03,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Vraiment top,Très pratique pour les débats et infos,FR,5,2017-06-03,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +"Awesome, must have app","Great UI, easy to navigate. 🤘🏼",UY,5,2017-06-03,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Just great,Warning: highly addictive,NL,5,2017-06-03,31,93.0,"(30.0, 35.0]","(75.0, 100.0]" +Great time killer,Always something interesting to read or watch,US,5,2017-06-03,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +App,Awesome app,IN,5,2017-06-03,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Absolutely Outstanding!,"This app has literally everything! Honestly, news, memes, stories, funny pics and gifs, and of course, subreddits with wide ranging variety of interests! Space, Futurology, Naruto, History, Cats, whatever you're interested in! Absolutely my favourite app on my iPhone!",IN,5,2017-06-03,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Works as advertised,Does what they say it does,IL,5,2017-06-03,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +"Great app, does what it's supposed to","I love the app, and haven't experienced any issues with it. I wish they had one for the iPad though.",US,5,2017-06-03,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Very stable,"Easy to use and super helpful if ur a reddit user, follower or blogger",AE,5,2017-06-03,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Best App For iPhone,The only app I could ever have it on any phone.,IN,5,2017-06-03,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Gud,Gud,GB,5,2017-06-03,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Yes,Good,FI,5,2017-06-03,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +I just found out my dad sells heroin,"Like, I don't even know what to do. He's helping me pay for school but that money's coming from selling drugs. I don't know if I can live with that.",US,5,2017-06-03,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +It's good.,I have been a reditor for over 4 years. I can't figure out why every comment I make gets deleted because I don't have karma. How do you get karma?,US,5,2017-06-03,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +Entertaining,"I really love reading, but I also love memes, and Reddit brings this all to you in this simple app plus so much more content than just those 2 categories! I can get so involved in Reddit that I don't even realize how much time has passed. +Although it's got great content, one thing I did not like about the app is that sometimes when I click on a continued or next page, instead of sending me to the next page through the reddit app, it opens up a webpage! That really annoyed me because the font is different and I get kicked out of the app! This was basically the only thing I disliked about the app. +Luckily so far, I have not encountered a ton of porn like some reviewers have commented. Maybe they have a virus on their phone...😕",US,4,2017-06-03,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +"After using for a while, I like it as much as Alien Blue","Took some getting used to, but it's pretty intuitive.",US,5,2017-06-03,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +Love it,Awesome app!,CA,5,2017-06-03,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +Best way to Reddit,In my opinion.,US,5,2017-06-03,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +It's okay,I only use the app during my free time.,US,5,2017-06-03,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Would Reddit Again,Great app fast and stable.,AU,5,2017-06-03,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Love it,"Ana amazing app that features everything just type your interests and you'll find threads, videos, information .. great app!",US,5,2017-06-03,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +No reason not to download it,"Honestly, everything I use Facebook for minus the clutter. Very useful app, clean interface. I use the app more than I use the website.",US,5,2017-06-03,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +So great,I enjoy this app more than the computer version. Reddit is the ultimate social media.,US,5,2017-06-03,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Fun!,Yay! Me likely!,US,5,2017-06-03,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Not too shabby,Not too shabby,US,4,2017-06-03,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Great app. Great people!,The dark theme is cool af.,IN,5,2017-06-03,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +Meh,"This is a review for the app only, not Reddit itself (which is great). Replying to comments is terrible, main and subreddit search are annoyingly in different places, and there's no way to save your preferences.",US,1,2017-06-03,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +Works great,"Works great, easy to use, changed the way I Reddit",CA,5,2017-06-03,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +Confused but hopeful,"I'm still trying to figure out what reddit is for/about/42? + +I'm hoping it enhances something in my workflow.",US,3,2017-06-03,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Great!,Great App,HK,5,2017-06-03,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Nice,Good,US,5,2017-06-03,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Interesting,Interesting but hard to follow.,US,4,2017-06-03,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app,Absolutely love the app makes work go by faster,US,5,2017-06-03,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Expected nothing less from Reddit,"I really like the UI and UX throughout the entire app. + +Some of the highlightable areas: ease of use, simplicity of presentation, and the strong depth of discovery with little capture complexity.",US,5,2017-06-03,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Well done.,It's well done.,US,5,2017-06-03,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Struggles,"This app struggles with basics. The post button move was dumb. You can't pin new topics as a default. I don't care what's HOT, I want to be able to set it to the Newest post by default. Something stupid could be the hottest thing and it's at the top but something I actually care about is buried until I click through and sort by new and then I can see newer posts.",US,2,2017-06-03,1,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,"Great +Great +Great +Great +Great",US,5,2017-06-03,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +10/10 would reddit again,...,AU,5,2017-06-03,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Mems,"Easy sharing, great interface and night mode.",AU,5,2017-06-03,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Ruined!,This update removed the post button and the backspace key no longer works!!,US,1,2017-06-03,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Don't make me rate your app,I hate apps that ask to be rated constantly.,US,1,2017-06-03,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +This app works well.,This application works well.,US,5,2017-06-03,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Excellent,"Je passe mes journées sur ce site et sur l'application, je recommande fortement !",FR,5,2017-06-03,90,90.0,"(85.0, 90.0]","(75.0, 100.0]" +Awesome,"Reddit has a community for just about anything. Are you a rock climbing enthusiast? There's a community for that. Do you like knitting? Community for that too. Want to talk politics w/o the FB drama? Plenty of that. Maybe you just want to see funny memes, Reddit has you covered. You can't post much at first but after a couple days (once Reddit knows you aren't a bot) you can post almost as much as you like.",US,5,2017-06-03,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Much better than the website,"This app is a great way to enter the world of Reddit. It loads quickly, has themes and is very addictive. Comments should be redone as they are confusing.",US,4,2017-06-03,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Easiest way to browse reddit on mobile,"Been using this app since it came out, reliable and easy to browse reddit.",US,5,2017-06-03,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +No complaints.,Adding subreddit flair to the app would be a nice touch.,US,5,2017-06-03,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Not bad,Not bad,US,5,2017-06-03,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +It's okay I guess.,It's pretty good.,PH,5,2017-06-03,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Love it,Sad I discovered reddit so late.,AU,5,2017-06-03,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +Review,I love it,US,5,2017-06-03,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Love It,Much better than Alien Blue and other previous Reddit Apps.,US,5,2017-06-03,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +Like it,Fun fun fun,AU,5,2017-06-03,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +Functional,"A pretty solid app. I've used others, but this is the most convenient and reliable.",US,5,2017-06-03,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Good,Good,US,5,2017-06-03,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Love it,It's great,US,5,2017-06-03,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Needs subreddit notifications,"Needs customizable notifications for new posts in each subreddit. Otherwise, great app!",US,4,2017-06-03,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +My go-to Reddit app,No complaints. Now quit asking me to rate this app.,US,5,2017-06-03,3,9.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Check it out!,"I can say anything, but you won't know til you try it!",US,5,2017-06-03,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +It's fine,Mostly doing this to get it to stop asking me if I like using Reddit. I use it a lot so obviously it's fine and works fine. Wish I could still hold my thumb over photos and get a preview though.,US,4,2017-06-03,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Bra,Inte perfekt men bra nog. Och det går bra att söka i enskilda subs.,SE,4,2017-06-02,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Reddit = Good,Read the title.,US,5,2017-06-02,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Reliable and easy way to access Reddit,I like this app! Does what it should.,AU,5,2017-06-02,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Awesome,"Love the new reddit app, much better layout",AU,5,2017-06-02,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Great Reddit Viewer,This app is great for iPhones!,US,5,2017-06-02,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Awesome,Buenísima,MX,5,2017-06-02,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Karma?,"Why do comment scores hop around? On some threads, I'm positive there isn't enough voting traffic to cause scores to change every second, yet refreshing causes scores to jump up and down wildly...",US,3,2017-06-02,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +fun app!,AWESOME !,US,4,2017-06-02,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Awesome,"Yeah, now leave me alone! ✌🏼👋🏼",US,5,2017-06-02,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Good app,Love it.,US,5,2017-06-02,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Nice,Nice and simple to navigate,SG,5,2017-06-02,80,400.0,"(75.0, 80.0]","(375.0, 400.0]" +G,G,CA,5,2017-06-02,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Brightens my day,So much interesting things to waste my life reading. Lol,US,5,2017-06-02,100,400.0,"(95.0, 100.0]","(375.0, 400.0]" +Essential app,"Great function, essential on the go app.",GB,5,2017-06-02,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +Good but revert the post button,The old post button was at the perfect spot. Now you have to go to the top of the page and it gets really annoying. Also the new notification system is kinda confusing.,US,3,2017-06-02,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +Wtf happened to the Notification Center?,"I loved this app, it was perfect. Now the notification centre is terrible. Change it back.",CA,3,2017-06-02,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Love it !,It's the best,CA,5,2017-06-02,68,340.0,"(65.0, 70.0]","(325.0, 350.0]" +5 Sterne,Wenn man links kopieren kann,DE,4,2017-06-02,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +Them roll calls,Are tight,US,4,2017-06-02,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Fantastic,Awesome,US,5,2017-06-02,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +I'm only here to watch......you know,Shook!,CA,5,2017-06-02,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Landscape,If only it would landscape,CA,4,2017-06-02,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Yes,Yes,US,5,2017-06-02,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,Nice,US,5,2017-06-02,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +Okay I rated it,Now stop asking me to rate. You know how good you are already.,US,5,2017-06-02,99,99.0,"(95.0, 100.0]","(75.0, 100.0]" +New themes!,I love the themes! It makes me want to use the app more often aside on the humor and things I learned in using the app! :),PH,5,2017-06-02,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Nice Mechanics,"I have tried both the Facebook app and the Reddit app. Just based on their performance alone, I can say the Reddit is much faster and more convenient than the Facebook app. I am impressed with it, but it could use a few fine adjustments. 4/5",US,4,2017-06-02,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Works great,"Although on rare occasion, some YouTube videos won't play through it.",US,5,2017-06-02,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +V tight,Good laughs. Gotta love the internet.,US,5,2017-06-02,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great application,Easy to use and keeps me abreast with many important topics,US,5,2017-06-02,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +Good,"Reddit is good. +Life is good.",AU,5,2017-06-02,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good job,9 gag is cancer,US,5,2017-06-02,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Great ap finally,Very good ap,US,5,2017-06-02,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Redit,I love redit,US,5,2017-06-02,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Reddit Keeps Me Sane,"So interesting to see so many viewpoints and opinions, plus I'm so sick of Facebook fakery and Daily Mail tabloid news of sucky reality and instagram media whores.",US,3,2017-06-02,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Hot and spicy memes,I find the latest and dankest of memes on this app,US,5,2017-06-02,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Great,Great,ZA,5,2017-06-02,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Great,Lets me read polandball just wish the swipe issue wasn't there,US,5,2017-06-02,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +I'm Addicted,"I don't like the new update. It was perfectly fine a few hours ago and now it's all changed, not as easy to navigate. It went from a 5/5 to 3/5 because of it, please change it back",IE,3,2017-06-02,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app,"Quick, easy to navigate and doesn't get in the way of reddit",US,5,2017-06-02,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Rapide et efficace,L'application est très bien faite. Rien à redire !,FR,5,2017-06-02,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Nice UI for newcomer,"As a new user I've always found other Reddit related apps difficult to use. I know that some old redditors got infuriated with the official app, but I think it's aimed to make the onboarding experience more pleasant for newcomers.",US,5,2017-06-02,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Cool,Cool,PE,4,2017-06-02,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Love it,But please stop asking me to rate lol,US,5,2017-06-02,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +Awesome,Awesome app,US,5,2017-06-02,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +Yuuup.,Because who doesn't like having /r/aww at your fingertips all day?,US,5,2017-06-02,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +It's Pretty Solid,"Its really good. I think its probably the best app I ever used, even better than Tiny Wings.",US,5,2017-06-02,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +It fits me..,This is my top 3 app on my iPhone. Thanks Reddit:),JP,5,2017-06-02,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +top!,goes deep !,BR,5,2017-06-02,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +3/5,But 5/5 with rice,GB,5,2017-06-02,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Not too shabby,I like cake,US,4,2017-06-02,39,156.0,"(35.0, 40.0]","(150.0, 175.0]" +More new and original content than anywhere on the internet!!!,🦄🦄🦄,SK,5,2017-06-02,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +Génial,"Super, rien à redire.",FR,5,2017-06-02,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Best pornhub portal app,"Also, gifs.",PH,5,2017-06-02,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +"No iPad, not an upgrade","I tried the new app since the Reddit team has made a bunch of noise about how it's the replacement for Alien Blue. But it's a phone-only app and looks terrible on the iPad. The UI is just godawful and ugly and now it has started spewing notifications for stuff I don't care to see, so it's actually worse than when it came out. I deleted it within minutes the first time and regret trying it again. I'll stick with Narwhal and there's no way this app gets a third chance from me.",US,1,2017-06-02,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +Reddit is the best,Weeeeew,US,5,2017-06-02,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Great app,"Great website + +Midnight",US,5,2017-06-02,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Functional and Intuitive,Great App,AU,5,2017-06-02,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +It's good,Functional and smooth ap,US,5,2017-06-02,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Love it,Fun as hell,US,5,2017-06-02,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +Great site,GOOD,US,4,2017-06-02,90,450.0,"(85.0, 90.0]","(425.0, 450.0]" +I'm on here everyday,"I wouldn't say it's an addiction... okay I would say it's an addiction. Keeps me entertained when I'm bored, and teaches me new things every day. Awesome!",US,5,2017-06-02,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Amazing,I have no complaints. Reddit is the way I spend my free time.,US,5,2017-06-02,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Good - need quick zoom,Better than alternatives. Wish I could force touch image to quick zoom. Give me that and have a 5 - 4/5 till then.,US,4,2017-06-02,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +The Best EVER!,"This reddit app is the best app! Ever! I have used, literally hundreds of thousands of Reddit review apps people – literally hundreds of thousands. Seriously! This app is the most awesome, best app ever. And...ladies and gentlemen... it is 100% American made... made right here in Pittsburgh, not Paris ! Unless you mean Perris, California... which in that case YES! Folks... I remember when YOU used to have to wait a whole 24 hours to read REDDIT on paper. You had to literally walk all the way down to the corner REDDIT stand and literally purchase it with real money, not that silly ""gold"" and then take it home and I'm not kidding or you would literally, literally have to up-vote and down-vote via US snail mail! Literally. So what if most of the traffic on reddit is sent to Russia!? Who cares, and what are you little snowflakes hiding anyways? Ehh...Maybe I've said too much aanyway use this app, buy this app, enjoy this app, it's the best app EVAH. RIGHT Jared?",US,5,2017-06-02,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Fast and fun to use!,"This app is really cool and it loads fast on must stuff. Continue the great work! + +EDIT: the newest update removed the post button and now it's harder to post… please add it back.",US,4,2017-06-02,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +Must have,The only app to use for viewing Reddit,CA,5,2017-06-02,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Reddit A OK,"Covfefe aside, it's a great crapper app.",US,5,2017-06-02,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +Love it !,"Best App, I Love it",DE,5,2017-06-02,47,188.0,"(45.0, 50.0]","(175.0, 200.0]" +Would be 5...,...if they didn't almost force me to rate it.,US,4,2017-06-02,81,405.0,"(80.0, 85.0]","(400.0, 425.0]" +Great App,"Nice, clean UI. Gr8 community.",IN,5,2017-06-02,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Solid app,Solid,US,5,2017-06-02,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Great,This is way better than alien blue. It is a useable interface with many similarities to the computer site.,US,5,2017-06-02,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +The app works great!,"Never crashes, user friendly, clean-looking... need I go on?",US,5,2017-06-02,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Great,Preferring to spend more time here than other platforms recently.,SG,5,2017-06-02,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +"The app has a pop up that won't go away, asking me to write a review",So here I am. I guess this could go on /r/maliciouscompliance.,US,1,2017-06-02,34,170.0,"(30.0, 35.0]","(150.0, 175.0]" +Love it,Good app.,US,5,2017-06-02,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Great app!!,Great app!!,US,5,2017-06-02,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Gud app,It gud,US,5,2017-06-02,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Best Reddit App,Very much enjoy the app!,US,5,2017-06-02,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Best app in the App Store,"By far the most convenient way to satisfy my Reddit needs. Every day I check Reddit, and will continue to do so for the foreseeable future!",US,5,2017-06-02,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Good app.,"It's a good app, but it could use a tab for my subscriptions.",CA,4,2017-06-02,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Perfect,Best source for simply everything.,CH,5,2017-06-02,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +I could read it all day,I swear I could read Reddit all day. It's fun reading about topics and getting remarks from people all over the world.,US,5,2017-06-02,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +Good!,Read it saved my life!,US,5,2017-06-02,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Pretty Good,"5/7 with rice + +Edit: Reddit won't stop asking me to rate the app + +Edit2: hmmm, I have returned to this fateful place + +Edit3: Deja vú + +Edit4: Back Again + +Edit5: res",US,5,2017-06-02,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +Nice,Recommended,TH,5,2017-06-02,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Memes,Dank,CA,5,2017-06-02,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +It's aight,Not horrible. Not excellent.,CA,3,2017-06-02,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Definitely the only humanity left on the internet,"Like, really.",IN,5,2017-06-02,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Good app,Other than needing private message improvements( ability to c+p PMs) its overall good,US,5,2017-06-02,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Decent... limited utility but seems to work ok,I am enjoying it but it doesn't replace the main interface with web browser,US,4,2017-06-02,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Best,Works great!,US,5,2017-06-02,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Best app,Great app,US,5,2017-06-02,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Great fun on the toilet.,And at work.,US,5,2017-06-02,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Turning into all politics,It was better before it turned into an anti-trump app.,US,2,2017-06-02,23,92.0,"(20.0, 25.0]","(75.0, 100.0]" +Mate,If only my life was as interesting as this app.,AU,5,2017-06-02,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +On this app all day,"It's awesome suit use it. Reddit is love, Reddit is life.",US,5,2017-06-02,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Let us scroll in the gray margins in landscape mode on iPad,"It's very clear that this app was designed as an iPhone-first app without much thought put into the iPad version. Case in point--it's impossible to scroll in the gray spaces to the left an right of the main content column when the iPad is in landscape mode. This makes browsing feeds very awkward, as you have to position your hand in the middle of the screen just to be able to scroll the feed. Please fix this.",US,3,2017-06-02,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +9/10,"Like skyrim, with puppies",US,4,2017-06-02,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Stahp,Only reviewing this so it stops asking me.,CA,3,2017-06-02,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +Here is the review you've been asking for,Stop bugging me for a review in the app.,US,1,2017-06-02,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +One of my most used apps,It's gotten a lot better and more stable. Before it sucked,CA,5,2017-06-02,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Well good innit,"Title says it all. I'm new to Reddit and this has swiftly become my most used app for news, jokes, memes and general procrastination.",GB,5,2017-06-02,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Reddit,Better than the browser version.,US,5,2017-06-02,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Learned so much...,"Great app, informative fun facts as well as real life advice",US,5,2017-06-02,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Awesome,I really like the reddit app but it can sometimes be a little slower but it works perfectly fine for me,US,5,2017-06-02,55,220.0,"(50.0, 55.0]","(200.0, 225.0]" +Stop asking me,"Your app is great, ok? It really is. I use Reddit every day to keep up with my favorite subreddits/interests. It is a definite improvement over the 3rd party Reddit apps.",US,5,2017-06-02,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +A review,"What it says on the tin, the front page of the Internet",AU,5,2017-06-02,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Very Entertaining,Very informative and entertaining app,US,5,2017-06-02,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Great,Great app. Push notifications are a little dumb though.,US,4,2017-06-02,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Five stars,Yay!,US,5,2017-06-02,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +I Reddit,Get with the program already.,US,5,2017-06-02,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Good interface. Great time sink!,Fun,US,5,2017-06-02,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Good app,It's reddit it works well kaboom,US,5,2017-06-02,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +The app works,"I mean, it's works",US,5,2017-06-02,76,228.0,"(75.0, 80.0]","(225.0, 250.0]" +App constantly prompts you to rate it,It's really annoying. Only writing this to shut it up.,CA,3,2017-06-02,66,330.0,"(65.0, 70.0]","(325.0, 350.0]" +Nice but still think alien blue was better,Interface has over simplified what you can do with Reddit. Alien blue struck a better balance between mobile and browser,GB,3,2017-06-02,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Reddit made me do this,Stop asking me to rate you Reddit and you might have gotten five stars,US,4,2017-06-02,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Why do you need access to my photos to share a link!?,This was never the case but now when I try to share a post you request access to my photos. Why!?!? If I'm sharing a link my photos aren't involved.,US,1,2017-06-02,25,125.0,"(20.0, 25.0]","(100.0, 125.0]" +Great,Good,GB,5,2017-06-02,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Awesome,Love the swipe and night time features,CA,4,2017-06-02,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Pretty good,Quick and i like the interface,CA,5,2017-06-02,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +Love Reddit,"Can find almost anything you're looking for, love that people from all over the world can come together and comment on any given post.",CY,5,2017-06-02,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +Pretty Good,"I'm a former alien blue user and loved it. The official app interface is nice and they've added a lot of the features I liked from AB (night mode being the best). Still getting used to it, but overall a great app. +One thing is there are quite a lot of Ads. It would be nice if there was a small fee to remove them.",CA,4,2017-06-02,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +Great,"Works fine, no issues. Does what it's supposed to do",GB,5,2017-06-02,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Convenient Reddit browsing.,"Majority of the functionality wrt desktop version retained, no major gripes. App is improved from time to time to fix latent issues. + +As for Reddit itself; be warned. You will often question your life choices when you check the time and realise it's 4 am and you have only 3 hours of sleep left.",SG,5,2017-06-02,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +Great app,Love it.,GB,5,2017-06-02,71,71.0,"(70.0, 75.0]","(50.0, 75.0]" +Solid,"Works really well, thank you Reddit for finally bringing this out, the other clients weren't great...this is!",GB,5,2017-06-02,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +"Constant ""rate us"" pop-ups","The app is solid, but the constant ""please rate us"" pop-ups are obnoxious and a huge annoyance. Even after you dismiss it, its bugs you again and again. So after being bugged for the umpteenth time, I figured it was time to give it a rating.",AU,1,2017-06-02,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Ultimate Distraction,Another reason I've stopped reading books. Gee thanks world.,GB,5,2017-06-02,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Awesome!,Endless hours of entertainment!,AU,5,2017-06-02,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Forced reviews always get one star.,Whenever an app for forces a user to provide a rating it up automatically gets one star.,US,1,2017-06-02,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Too many ads,It wasn't a bad app until every third post started being a (usually the same) sponsored link. Time to look for an alternative.,US,1,2017-06-02,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Goood ol' reddit,Boo ya! Big reveal.... i'm PICKLE RICKKKKK!!,GB,5,2017-06-02,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Loves me some reddit,"Another way to waste hours of my life every day. Seriously though if you've never used reddit it's basically like Facebook only the posts are things you are actually interested in instead of your friends/family posting fake news, their political propaganda crap or pictures of their food. I never realized how little I had in common with the people I know until friending them on Facebook. This is a much better way to do social media.",US,5,2017-06-02,82,164.0,"(80.0, 85.0]","(150.0, 175.0]" +Great!,"Does eveything you need, works great!",BE,5,2017-06-02,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +W00t,W00t,US,5,2017-06-02,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Good stuff,"No complaints, my go-to procrastination app.",GB,5,2017-06-02,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +10/10 would reddit again!,Best app ever. Screw Facebook! This is the way!,AU,5,2017-06-02,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Covfefe,I never used Reddit because I never liked how it looked on a computer. The app makes waaaay more enjoyable to use. Easy to navigate and simple. Great job. Just fix the search action.,US,5,2017-06-02,91,273.0,"(90.0, 95.0]","(250.0, 275.0]" +C-c-c-combo Resource!,Pretty much where I get my news and my lolz.,US,5,2017-06-02,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Works well,Way better then before,CA,5,2017-06-02,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Reddit,Very satisfied with this app.,US,5,2017-06-02,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Good,Good,HR,5,2017-06-02,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Gr8 App,Gr8 srsly,PL,5,2017-06-02,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +The best waste of time,"Love Reddit, and the mobile app is the best of its kind. News and kittens!",US,5,2017-06-02,66,264.0,"(65.0, 70.0]","(250.0, 275.0]" +Deez,Kinda confusing at first but once you're used to it it's cherry,US,5,2017-06-02,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +Great,Awesome,US,5,2017-06-02,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Good app for reddit,Best that I've found for iPhone,US,5,2017-06-02,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Simply put, this app is fantastic",I love Reddit desktop experience and the app is a fantastic addition. Very easy to use and even easier to set up. Just love it all around. Use it daily.,US,5,2017-06-02,72,288.0,"(70.0, 75.0]","(275.0, 300.0]" +Great improvement,"Been using the Alien Blue app for years now, and I can definitely say that this is a massive improvement.",CA,5,2017-06-02,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Very good,Improving all the time,RO,5,2017-06-02,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +App,Its good,US,5,2017-06-02,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +"Great, but has problems with connection","I have an IPhone 6, and this app is usually reliable and easy to navigate. I was having connectivity problems in the past, but not anymore!",US,5,2017-06-02,36,144.0,"(35.0, 40.0]","(125.0, 150.0]" +Great,Just a really good app,US,5,2017-06-02,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +👍🏻,It's actually pretty great. I'm on here all the time and I love it!,US,5,2017-06-02,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +App design genius,"This app is a prime example of function over form. Works so well; ads don't block you/annoy the hell out of you, smooth as hell, glitches are rare, even the popup for leaving a review is so subtle and kind of gives you the choice wheres some apps just hound you for it. What a beauty.",CA,5,2017-06-02,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +I'm lovin it,Reddit is an amazing app. A for sure must have!,US,5,2017-06-02,58,174.0,"(55.0, 60.0]","(150.0, 175.0]" +"Nice app, annoying rating message","So, here....",NL,3,2017-06-02,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Almost too good,I have trouble using the browser based version of Reddit on my computer. This app has me spoiled.,US,5,2017-06-02,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Reddit rules,It's beast,US,5,2017-06-02,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +^_^,Great,RU,5,2017-06-02,80,400.0,"(75.0, 80.0]","(375.0, 400.0]" +Works like it should,What more to say,FI,5,2017-06-02,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Fun,I'm super addicted to Reddit already,US,5,2017-06-02,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +Stop,I just want the pop up to go away,US,1,2017-06-02,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Great app,Very user friendly!,CA,5,2017-06-02,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +Great,Great,US,5,2017-06-02,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +splendid app!!,redcyclopedia!,US,5,2017-06-02,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +It's Lit Fam,You Guys keep this stuff up. You're killing it.,US,5,2017-06-02,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Good,Thanks,US,5,2017-06-02,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Love it,I just somehow recently discovered Reddit. Not sure how. I feel like I've been living under a rock.,US,5,2017-06-02,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Awesome UX/UI. Way better than I was expecting.,"Best Reddit mobile experience I've had. Ever. The end. Serious prop to the developers for clearly putting time into figuring out a way to enhance the experience so much. The subtle animations are fun, it's beautifully designed, and the automatically playing gifs (instead of having to click links)? 5/5, would recommend.",US,5,2017-06-02,77,308.0,"(75.0, 80.0]","(300.0, 325.0]" +Definitely best choice,Aaa,SG,5,2017-06-02,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Better than porn itself,I'd rather spend my time on Reddit than beat my meat to porn any day of the week!!! ❤️,US,5,2017-06-02,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Not to be mistaken for revit,Redit is an app that lets you look at memes and what not. It doesn't work for architectural drafting.,US,5,2017-06-02,34,170.0,"(30.0, 35.0]","(150.0, 175.0]" +Love it,Love it,US,5,2017-06-02,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Amazing,I love the community so much and it makes reading anything extremely enjoyable!,US,5,2017-06-02,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Wonderful,Reddit is a good binge app and you can actually learn something from it and personalize it to you interest and hobbies to get a better experience!,US,5,2017-06-02,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Use every day,"I am a Reddit addict, and this app is perfect for on-the-go. There is literary a forum for every type of person with every interest. It says a lot that I took the time to write this review for it.",US,5,2017-06-02,64,128.0,"(60.0, 65.0]","(125.0, 150.0]" +Best app ever,Love the pulse of the reddit world.,US,5,2017-06-02,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +Gr8 m8 I r8 8/8,Now I can browse Polandball on the road,US,5,2017-06-02,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Covfefe,The most covfefe-est app out there,US,5,2017-06-02,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Reddit is a window to the world in every way,"Reddit is a great source of links, pics, videos and discussions. The discussions can be funny, deep, informative and/or trying. I love every aspect of reddit as indeed a window on the universe and it's knowledge. Additionally, I just learned that reddit.com is the sixth most visited website in the world!",US,5,2017-06-02,51,102.0,"(50.0, 55.0]","(100.0, 125.0]" +Decent app,The app makes it easy to read stories on a mobile device. No complaints here.,US,4,2017-06-02,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Excellent way to kill time,Love me some Reddit.,US,5,2017-06-02,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +Lit,11/10 my most used and favorite app on my phone,US,5,2017-06-02,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Awesome,It's reddit. It's their official app. It works great.,US,5,2017-06-02,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Great app but...,...STOP nagging me to review it and turn on notifications.,CA,1,2017-06-02,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Something for everyone.,And that's the scariest thing about Reddit. Great app btw.,US,5,2017-06-02,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Love it,Nuff said.,US,5,2017-06-02,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Won't stop asking me to rate,"Won't stop asking me to rate, love Reddit .. sorta.. except for the liberal agenda you push on your front page. Other then that take your one star review for constantly bugging me",CA,1,2017-06-02,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Does what I need it to do,"Honestly, I just want the annoying pop-up to stop.",US,5,2017-06-02,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Works great,Works great,US,5,2017-06-02,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Great place to....,"Find whatever it is you're looking for in all honesty. Advice, memes....just the essentials",US,5,2017-06-02,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +"Needs, NEEDS, a landscape mode","Until this app gets a landscape mode it gets one star. Pages just don't load right in portrait. I much prefer to browse in landscape mode, most content is optimized for landscape mode (video and images mostly, which are prevalent on Reddit). I hate having to constantly rotate my device to switch between browsing and viewing. + +WHY CANT I BROWSE REDDIT IN LANDSCAPE??!!??!!!???!!!",US,1,2017-06-02,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Almost great,"I love the app, but please add the ability to left swipe to collapse comments!",US,4,2017-06-02,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +"We did it, Reddit.",We got a decent app.,US,5,2017-06-02,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +It won't quit asking me to rate it,It won't quit asking me to rate it. Even after an update saying they fixed the issue where it asks way to much.,US,1,2017-06-02,71,355.0,"(70.0, 75.0]","(350.0, 375.0]" +P good,Pretty good,US,4,2017-06-02,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +What an amazing civ community,Great place to discuss civ strat,US,5,2017-06-02,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Great App!,Great app absolutely love it!,US,5,2017-06-02,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Great App!,Love using the Reddit app!,US,5,2017-06-02,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Reddit,Reddit Reddit Reddit red dit. Reddit.,US,4,2017-06-02,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +Love it,Just love it,US,5,2017-06-02,24,24.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great way to keep up w current everything,Reddit is great to see what's current. Comment threads can be very interesting too. I only have it 4 of 5 bc the search function is limited.,US,4,2017-06-02,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Excellent resource for everything and anything.,This app is lit! A great way to get information on a gamut of interests and curiosities.,US,5,2017-06-02,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +"Never leave me, Reddit",It's the best thing to read at night that somehow includes all my interests.,US,5,2017-06-02,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +Fun!!!,Glad to have a real Reddit App finally! 🙏,US,5,2017-06-02,70,350.0,"(65.0, 70.0]","(325.0, 350.0]" +Make an account,Just make an account and browse your home page to see all the subreddits you're subscribed to.,US,5,2017-06-02,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Fun,It's good for memes,US,3,2017-06-02,55,275.0,"(50.0, 55.0]","(250.0, 275.0]" +Literally works,Preeetty good,BR,5,2017-06-02,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Nice!!,Very nice!!,US,5,2017-06-02,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,Good app,US,5,2017-06-02,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +It has improved.,"It was trash when they initially killed Alien Blue in favor of this, but it has improved quite a bit.",US,4,2017-06-02,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +works for me,reliable app for browsing reddit. i use this app more than any other.,US,5,2017-06-02,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Keeps asking if I like it.,If you love apps that keep asking you to rate them them you'll LOVE this app.,US,1,2017-06-02,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +I ❤️ Reddit!!,Yep.,US,5,2017-06-02,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +I likey I likey,Beast,US,5,2017-06-02,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +New inbox is terrible,It doesn't update properly. I have to tap into it and scroll to update.,CA,1,2017-06-02,81,324.0,"(80.0, 85.0]","(300.0, 325.0]" +Groovy,"New to this but enjoying so far. Respect to alligators, sturgeons, and gar.",US,5,2017-06-02,55,275.0,"(50.0, 55.0]","(250.0, 275.0]" +Great,Great app. Tired of being bothered to write a review though.,US,4,2017-06-02,76,304.0,"(75.0, 80.0]","(300.0, 325.0]" +The title says it all.,It's reddit.,US,5,2017-06-02,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,"This app is very easy to use. The only thing that causes me to not give it five stars is that the embedded videos have trouble playing sometimes, at least for me. Also, it asks me to write reviews continuously. This is like my 5th one.",US,4,2017-06-02,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Great,Love the app,US,5,2017-06-02,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Nice,Great app,TH,5,2017-06-02,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Perfect,It absolutely perfect just so organized and fast,US,5,2017-06-02,57,228.0,"(55.0, 60.0]","(225.0, 250.0]" +Ecuador,Ecuadooooooor!,FR,4,2017-06-02,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Great app,Very convinient love it,CN,5,2017-06-02,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome,Great app👍👍👍👍👍,US,5,2017-06-02,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,Great,US,5,2017-06-02,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great!,Awesome app,US,5,2017-06-02,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Love it,"Helped me with depression, being just so easily accessible and is just such a great app for Reddit. Easy to use",GB,5,2017-06-02,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Great!,Pretty great app! Very responsive!,US,5,2017-06-01,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +Love this community!,Best on the web. Simple as that,NO,5,2017-06-01,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Yup,Hey! It's pretty good.,GB,4,2017-06-01,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +It's good,Good,US,5,2017-06-01,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +Do they think they're fb??,"Ugh, NOT into the ""post something interesting"" prompt at the top of the page. So unnecessary.",US,3,2017-06-01,75,375.0,"(70.0, 75.0]","(350.0, 375.0]" +Amazing,You know an app is good when it has features you wish the site had 🙏🙏,AU,5,2017-06-01,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Became my default Reddit app,The app keeps getting better over time.,US,5,2017-06-01,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Reddit,Iz gud,GB,5,2017-06-01,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Awesome app,Love it,US,5,2017-06-01,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Works great and is lol,Yup it's good,US,5,2017-06-01,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +It's good,What the title says,GB,5,2017-06-01,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +Good enough,It works. Now stop asking me to rate it.,US,4,2017-06-01,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +It's greats,It's ok,US,1,2017-06-01,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +"Great app, getting better with every update!","I love Reddit, and this is the best app to browse reddit on!",US,5,2017-06-01,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +"Dear Chase,","I feel like I can call you Chase because you and me are so alike. I'd like to meet you one day, it would be great to have a catch. I know I can't throw as fast as you but I think you'd be impressed with my speed. I love your hair, you run fast. Did you have a good relationship with your father? Me neither. These are all things we can talk about and more. I know you have no been getting my letters because I know you would write back if you did. I hope you write back this time, and we can become good friends. I am sure our relationship would be a real home run!",US,5,2017-06-01,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +Works great!,"It's an excellent way of keeping up with your favorite subreddits while going to the bathroom, waiting in line, or ignoring a class. It even has a dark mode, and works great!",US,5,2017-06-01,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Get it,Great app. Use it every day.,US,5,2017-06-01,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +You know you want it ;),Now!,US,5,2017-06-01,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Super duper,Super duper awesome,US,5,2017-06-01,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Top notch...,Love this Reddit.,US,5,2017-06-01,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Well designed,Really accessible!,US,5,2017-06-01,52,156.0,"(50.0, 55.0]","(150.0, 175.0]" +v good,v nice,US,5,2017-06-01,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Good,It's good. I like it.,US,5,2017-06-01,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Great,I use it all day. Everyday.,US,5,2017-06-01,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +You kill alien blue and want 5stars? Go die,Seriously,US,1,2017-06-01,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Even better site,CA,5,2017-06-01,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +It's,Lit,US,5,2017-06-01,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Easy to use,Very intuitive app to use. Used to use Reddit is Fun but having previews while scrolling is pretty good,US,5,2017-06-01,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Yes,Plis stop asking me reddit,AU,5,2017-06-01,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +approved,it just works!!!!,GR,5,2017-06-01,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Amazing sharing site!,"This is a GREAT app for the latest things in any entertainment, awesome app!",US,5,2017-06-01,88,352.0,"(85.0, 90.0]","(350.0, 375.0]" +Reddit Ap,It's a solid app. Allows one to view reddit and comment easily. It badly needs a clipboard function however.,US,4,2017-06-01,73,219.0,"(70.0, 75.0]","(200.0, 225.0]" +What more could you want?,Seriously. What more could you ask for?,US,5,2017-06-01,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's reddit,Of course it's awesome,US,5,2017-06-01,5,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love it,Great app,CA,5,2017-06-01,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Yep,"Good app, well done.",AU,5,2017-06-01,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Great! Needs filters and gallery view.,"While I'm really glad to see reddit producing a mobile app for their website, there are some things that could be done to improve the mobile app experience. We need a gallery view mode, like in AlienBlue. We also need casual subreddits like in AlienBlue. You know why. ;)",US,4,2017-06-01,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +"""The front page of the internet""",Mindenkinek kötelező!,HU,5,2017-06-01,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Reddit is fairly fun I guess,"I searched covfefe, like anyone would. So far I'm duly entertained. I'm. It sure why reddit wants me to ""do less,"" though. Like, after I clicked on a few arrows and felt ready to make my very own comment, Reddit app said I was doing ""too much"" and my only choices were ""discard"" & ""keep editing."" Bc my comment was like two words, I couldn't think of any more-accurate two words, so I had to click ""discard"" and my opinion on covfefe will never be recorded only to get lost in the social-media jungle anyway... I think my two words on the subject deserve at least to be posted. So what does Reddit mean by saying ""you're doing too much, try again in eight minutes?"" Is it a mobile-app thing that needs work, or is Reddit actually telling me to ""shut up for now, try speaking up later?"" + +If it's the latter, then screw this. If not, what's the Reddit problem with me typing words? I can click as many arrows as I want to, but words? ""You're doing too much"" by using my words, says the Reddit app. Why? I've consulted the FAQ, so, what the FUQ? + +I hope I have a chance to use my words at some point bc they're worth reading. Says me & my 43 Facebook friends, at least. Haha, y'all are silly like that.",US,4,2017-06-01,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +r/dankmemes is where it's at..,Tru..,GB,5,2017-06-01,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Very good.,"A great social media outlet, with some genuinely good content in posts in almost all parts of it. But, the community can be toxic at times.",US,4,2017-06-01,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Nice updates,Really appreciate the effort to update regularly with new features.,US,4,2017-06-01,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Hooray,It makes me smile,US,5,2017-06-01,100,200.0,"(95.0, 100.0]","(175.0, 200.0]" +Love it,Works great. Nice resource to connect with others!,US,5,2017-06-01,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +I love it!,I'm so glad Reddit has an app on iOS finally. I have no issues with the app yet been using it for a few months now.,US,5,2017-06-01,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Great,Great for browsing during free time at work,US,5,2017-06-01,82,82.0,"(80.0, 85.0]","(75.0, 100.0]" +I Waste More Time Than I Realize,The title says it all...,US,5,2017-06-01,94,470.0,"(90.0, 95.0]","(450.0, 475.0]" +Good stuff,It does everything I want it to do.,US,5,2017-06-01,3,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +great app,read the title :),HR,5,2017-06-01,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Use it almost everyday,Good in my book. Not sure if I like the new notification section though.,US,4,2017-06-01,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +Awesome,best reddit app out there,DE,5,2017-06-01,51,51.0,"(50.0, 55.0]","(50.0, 75.0]" +Awesome!,Better than on PC... mostly.,US,5,2017-06-01,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +It's reddit,Good meme,US,5,2017-06-01,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +Want to keep annoying me with rating requests?,Because that's how you get a one star rating.,US,1,2017-06-01,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Works,Does what it should.,US,4,2017-06-01,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Nag nag nag,"Why do you nag me so much about rating the app ? + +Why ? + +If you pester me more I will certainly rate it for you ....",US,3,2017-06-01,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +sik,pretty rad,US,5,2017-06-01,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"Not ""Perfect"", but stop being so entitled","The reddit app is as advertised; a pared down, balanced mobile translation of the desktop experience with all the additional functionality typical for a reader app (night mode, preloading, etc.). Find another app if you need some niche functionality not available in the official app. If you have some crazy narrow band additional feature that you totally critically need, maybe it is time to conclude your epic 2 hour visit to the toilet and walk the 15 feet to your computer instead. Go slow do you can regain the feeling in your legs.",US,4,2017-06-01,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Great App,Very informative and easy to use.,GB,5,2017-06-01,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Love reddit,^^*,US,5,2017-06-01,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Leads to Opportunities,I mainly use the app to keep to up with Supreme or get a good laugh. Has led to various buys and sells too! Would recommend exploring your interests.,US,5,2017-06-01,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Nice,Nice,TR,5,2017-06-01,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +"Brilliant App, One Suggestion","It is all too easy to swipe left when scrolling through a subreddit's ""top"" or ""hot"" feed, thus returning the user to the front page of the subreddit or the website as a whole. When returning to the feed, it places the user back at the beginning, which can be very frustrating. + +Other than that, it's a great app, and I love using it.",US,4,2017-06-01,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Love it,Great app. My favorite,US,5,2017-06-01,95,380.0,"(90.0, 95.0]","(375.0, 400.0]" +Reddit,It's fine. Stop asking me to rate now.,US,5,2017-06-01,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Fabulous!!,"Can't live without the_donald!! + +Best app EVER.",US,5,2017-06-01,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +Works great. I find it more convenient than on a desktop,Perfect. Can't complain about anything. I love the black version where it's easier on the eyes at night. You can switch it in the settings.,US,5,2017-06-01,49,245.0,"(45.0, 50.0]","(225.0, 250.0]" +Wow,Much Great,US,5,2017-06-01,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Pretty good.,No h8 I r8 8/8 m8,US,5,2017-06-01,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +Better than alien blue,Does everything I need from it.,US,5,2017-06-01,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +K,I love reddit but hate reviews I'm only doing it so reddit stops asking me,AU,5,2017-06-01,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Legit,"2 legit 2 quit + +Works great",US,5,2017-06-01,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Home away from home,"I was going to say this app really helped me to step out of my shell, but it was really more like it allowed me to take it with me.",US,5,2017-06-01,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +Love,Great app. Getting better all the time.,US,5,2017-06-01,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Intuitive interface,The design of the app and performance are exemplary.,US,5,2017-06-01,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Awesome,Great reader app,US,5,2017-06-01,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Genial,"Muy sencilla de usar y rápida. No puede mostrar cadenas de comentarios muy largas (o al menos no veo la opción para hacerlo), pero por lo demás perfecto.",ES,5,2017-06-01,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +What is,Covfefe,US,5,2017-06-01,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Good app,Good and fun,US,5,2017-06-01,16,64.0,"(15.0, 20.0]","(50.0, 75.0]" +Works,It works great.,US,5,2017-06-01,73,146.0,"(70.0, 75.0]","(125.0, 150.0]" +Nice,Ace,GB,5,2017-06-01,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Great,Fluent to use and not overly simplified. Bravo,US,5,2017-06-01,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +It's reddit,"I just browse r/all when I'm on my phone and the app is great for that. + +I too a star off because it told me to write a review after I already did.",US,4,2017-06-01,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Works as it should.,Has a night mode.,US,5,2017-06-01,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Best app I use!,10/10 would app again,GB,5,2017-06-01,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Reddit,Best social media site to dat,US,5,2017-06-01,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Melons,Are my favorite,US,5,2017-06-01,19,57.0,"(15.0, 20.0]","(50.0, 75.0]" +Pretty good,"Like, really good",GB,5,2017-06-01,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +Sick,Love this app,GB,5,2017-06-01,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +Better than mobile.,Could be better.,US,4,2017-06-01,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +All my daily lol's,Warning can be quite NSFW,US,5,2017-06-01,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Best reddit app for iPhone,Great!,US,5,2017-06-01,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Brilliant,Great app man,GB,5,2017-06-01,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +⬆️,🔺🔝,US,5,2017-06-01,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +Mostly great,Only downside is that posts are very limited and you have to wait about 10 minutes to make another post.,US,4,2017-06-01,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Buen app,"Buen app, funciona bastante bien en mi iOS, tiene buenas funciones y es fácil de navegar.",MX,5,2017-06-01,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Truly a great app,Really fun to do when you have nothing else to do,US,5,2017-06-01,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +It's great,"Always found Reddit hard to navigate, this updated app has made it much more useful for me!",US,5,2017-06-01,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Addictive,I find out so many esoteric things and it peaks my interest to further investigation!,CA,4,2017-06-01,38,152.0,"(35.0, 40.0]","(150.0, 175.0]" +Stop popping up to ask me for a review,Piss off,US,1,2017-06-01,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +New version doesn't work,"6/1/17 +As of this update, the app no longer gets internet connection. People seem to be having the same problem. This is ridiculous...",US,1,2017-06-01,37,148.0,"(35.0, 40.0]","(125.0, 150.0]" +Please fix notifications,"I keep getting notifications for what's trending, even though in my settings that option is turned off. 1 star until fixed",US,1,2017-06-01,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Stupid and fun,Best time-vortex out there. Just watch your productivity shrink.,US,4,2017-06-01,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +"Good app, but has annoying tendencies","The app works well for browsing and saving, up and down voting, etc. + +However, I still get pop ups in the app to review it when I didn't want to (but that ship has sailed). I also continually get notifications of trending things on Reddit when I've already turned that off in my notifications settings.",US,2,2017-06-01,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Excellent,Perfect on a phone,GB,5,2017-06-01,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +it's chill,it's chill. no probs so far.,US,5,2017-06-01,81,324.0,"(80.0, 85.0]","(300.0, 325.0]" +Great app,*****,US,5,2017-06-01,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Awesome,Love using it!,GB,5,2017-06-01,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Wasting my precious time,"Whenever I need to do something, Reddit is my guardian demon reminding me that responsibilities are secondary to it.",CA,5,2017-06-01,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +good,it's good,US,5,2017-06-01,72,216.0,"(70.0, 75.0]","(200.0, 225.0]" +Good app,"Decent, needs a few updates to improve functionality like saving etc, not very easy to figure out currently",GB,4,2017-06-01,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Amazing!,"I use the app for the manga subreddit, and it works well for what I need it for. That's all.",US,5,2017-06-01,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +8008135,Nice,US,5,2017-06-01,75,225.0,"(70.0, 75.0]","(200.0, 225.0]" +It works... ;),Had 0 issues with the app and it's a nice tool to have when you're on the go as much as I am.,US,4,2017-06-01,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Amazing !,"Great content, great app !",US,5,2017-06-01,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +Love it,One of the best website to app translations.,GB,5,2017-06-01,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Nice App,Love it!!!,DE,5,2017-06-01,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Good,"Decent, but sometimes .gifs don't load properly",US,4,2017-06-01,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +A great bunch of lads,Makes for a very informative toilet time,IE,5,2017-06-01,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Read that and this and liked it,"Reddit, either you like it, or your just old and play solitaire.",US,5,2017-06-01,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Reddit: The GOAT,"Running on an iPhone 7, the Reddit app is great. Solid performance, easy to use. I wish they'd add flair features to mobile because the desktop site will probably give you cancer. Overall, mobile is the way to go for Reddit, even before this app. But, with this app, Reddit is hands down the best form/news platform on the market.",US,5,2017-06-01,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +5,Star man,US,5,2017-06-01,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Requests for ratings are annoying,"They keep asking me to rate them, for this reason alone, they get one star.",US,1,2017-06-01,48,48.0,"(45.0, 50.0]","(25.0, 50.0]" +Very very nice,My best app,AE,5,2017-06-01,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Great App,Great app.,IN,5,2017-06-01,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +Works great,Just a casual browser and it works great. has all the basic functions I need. Only complain would be ads but eh it's not that big of a deal.,US,5,2017-06-01,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +Why?,"This app is useless. It doesn't use the available screen real estate of the iPad. It's just the phone version with rotation hacked in. It doesn't even do that correctly. It places the cards in the middle 40% of the screen with huge bars of nothingness on both sides. +Why can't we just get an updated version of Alien Blue?",US,1,2017-06-01,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +"Reddit is an amazing app, but...","I don't like that the post button has been changed. I really liked where the post button was before this update. Now, it's a hassle having to scroll back to the top of the page to post something whereas it was more convenient at the bottom where the other search tools are. + +Also, Tweetbot has this feature where the user can flick their screen and the screen will change between day and night mode. If Reddit can implement this feature, this would definitely be a win-win. This is just for easier access instead of going into the settings page.",US,4,2017-06-01,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Good app,Reads really well,CA,5,2017-06-01,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Amazing!,"Super fun and amazing app filled with super cool and nice people! If you're debating whether or not to download the app, download it!!!",US,5,2017-06-01,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Good!,Pretty good. Usually much faster than safari or chrome for reddit stuff,US,4,2017-06-01,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +My favourite app,My bosses would fire me if they knew how much I Reddit:(,NO,5,2017-06-01,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Great functionality,Easy to use interface,US,5,2017-06-01,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +What a resource,"Anything you want with professional people. + +Or bounce memes and laugh for hours.",US,5,2017-06-01,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +❤️,What's not to love?,US,5,2017-06-01,41,41.0,"(40.0, 45.0]","(25.0, 50.0]" +Good,It's addicting,US,5,2017-06-01,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Good,Good,US,5,2017-06-01,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +👍🏻👍🏻👍🏻,👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻,GB,5,2017-06-01,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +Better than reading through browser,I really like the ease of use on a mobile. Highly recommend.,US,5,2017-06-01,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Could be worse...,... but it's Reddit (+) with ads (-).,US,3,2017-06-01,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Definitely too many ads,Oh well,CA,3,2017-06-01,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +It works!,I don't have any issues with this. I wish I could say that about a lot of other apps,US,5,2017-06-01,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +Very simply stated,Reddit is beating the hell out of Twitter.,US,5,2017-06-01,81,324.0,"(80.0, 85.0]","(300.0, 325.0]" +Very few problems with the app,"Hey, that's pretty good.",US,4,2017-06-01,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +"Truly is ""the front page of the internet""",Very good,AE,5,2017-06-01,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Great,Much better than the website :) no issues here,DE,5,2017-06-01,85,255.0,"(80.0, 85.0]","(250.0, 275.0]" +Love it! Missing something though,The reason I rated 4 Stars is because the app is missing the feature to add flair next to your username depending on the subreddit.,US,4,2017-06-01,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Works as advertised,I can access reddit.,CA,4,2017-06-01,28,112.0,"(25.0, 30.0]","(100.0, 125.0]" +Gaming community is as toxic as destinys community,"Literally lol, came to Reddit as I figured there'd be fair discussions about unbalance and whatnot, instant horrid karma and downvotes for saying something was overpowered 😂",CA,1,2017-06-01,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Awesome,"Great app, works perfectly. I like it better than the website",US,5,2017-06-01,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Great app,Love it,US,5,2017-06-01,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +Prior Notifications Were Better,"Enjoy the app. Regular user of Reddit. But the new notification layout to me is trash. Very hectic instead of split out. + +Would be good if there were an option to choose the old version vs the new. + +Thankfully I am jail broken and will be downgrading the app to the prior version.",US,3,2017-06-01,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Great app!,Been using Reddit for about 6 years now and I absolutely love it. I used alien blue before but once I used this official app I never went back! Great UI and it's really smooth.,US,5,2017-06-01,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Addicting,Great port from the website to the app. Just wish that we could see the custom formatting for some subreddits.,CA,5,2017-06-01,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Good,Good,CA,5,2017-06-01,68,340.0,"(65.0, 70.0]","(325.0, 350.0]" +It's great,"It's great, you'll love it",US,5,2017-06-01,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +My family is nuts,Hey,RU,5,2017-06-01,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Great!,Super great and easy to use!,US,5,2017-06-01,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Great,Is good but not perfect but still pretty gosh darn good,GB,4,2017-06-01,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +Awesome sauce,🤤,US,5,2017-06-01,77,385.0,"(75.0, 80.0]","(375.0, 400.0]" +Stop,It good,US,5,2017-06-01,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Trying to get addicted,"I'm back in Redditland after several years and the app is pretty nice. Years ago I just read Reddit on my pc browser but now I have the app on a phone for the first time. The app is pretty decent on my iPhone 6 and I've had no problems with it thus far, so what else could I ask for?",US,5,2017-06-01,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Great app for browsing Reddit,Works well for viewing gifs and videos,GB,5,2017-06-01,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +Excellent mobile version,"The mobile experience on the app is constantly improving, and personally now preferable to desktop!",US,5,2017-06-01,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Good app,I like it. Stop asking me to review it.,CA,4,2017-06-01,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +Super great,...,US,5,2017-06-01,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +It's Reddit,"It's Reddit, on your phone. What more are you going to ask?",US,5,2017-06-01,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Still some drawbacks,"Buuut it's apples fault. There's no setting within this app to toggle on/off NSFW posts, you have to do it from a browser. Other than that, app works fine to me.",US,5,2017-06-01,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Good Times (few flaws),"Definitely worth the download if you spend any time trolling Reddit on your phone... + +Make sure you turn off push notifications though as top trending stories pop up a lot and you can't even quick link to them if your screens locked. + +Also, it will pester you into writing a review--just like this!",US,4,2017-06-01,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +Bring back AlienBlue -Update,"I hate that they killed Alien Blue and I'll never forgive them for that. Everything else is **** compared to Alien Blue. + +Update: I've grown to love the new Reddit app, it's pretty much perfect.",US,5,2017-06-01,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Simple!,"With little to no coaching, anyone with this app will be able to access their Reddit account, it doesn't have many issues, and if you review it once it stops asking. ;)",US,5,2017-06-01,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Must have,"Fun, and informative!",US,5,2017-06-01,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +Awesome,This app makes navigating Reddit much easier than the desktop version. Simply amazing with tons of interesting topics and articles. A must have.,CA,5,2017-06-01,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Solid Mobile App for Reddit!,"I was a long time Alien Blue user, but, late last year, they announced they were stopping their app--still possibly available in store but they re not updating anymore. + +Since then, I've used Reddit and it's very solid. + +Being a former AB user, there is one hung I'd like that to see: The casual subreddits option. + +You could save subs to a ""casual"" tab--this means you don't subscribe to them but can still easily access subs you don't subscribe to. + +Reddit has added multi subs so this helps some but, for those places you don't subscribe to, it's nice for the casual option. + +Either way, 5/5. Solid app",US,5,2017-06-01,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +Stop annoying users by asking to review.,Stop annoying users by asking to write a review of the app. Thanks.,US,1,2017-06-01,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +"It's lit, fam",So good.,US,5,2017-06-01,28,56.0,"(25.0, 30.0]","(50.0, 75.0]" +I don't want to review!!!,I have a great day and I will be in the back,AU,1,2017-06-01,33,33.0,"(30.0, 35.0]","(25.0, 50.0]" +Addicting!,Can't stop scrolling down,US,5,2017-06-01,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +It's okay I guess,I like to use the mobile app,US,5,2017-06-01,98,392.0,"(95.0, 100.0]","(375.0, 400.0]" +Good Enough,Yes,US,4,2017-06-01,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +很棒!,确实很棒很好用呀,CN,5,2017-06-01,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Best app on my phone,10/10,US,5,2017-06-01,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +"Inconsistent interface, naggy, useless alerts","Stop spamming me with alerts and requests for reviews. If I wanted Reddit to send me alerts, I would have said yes the first dozen times.",US,1,2017-06-01,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Reddit Rocks,I enjoy finding out new things and seeing hilarious mishaps on Reddit. I use the app at least once a day,US,5,2017-06-01,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Awesome,Works great,US,5,2017-06-01,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Perfect,"It really helps the day go by while at work, and you can learn a thing or two about anything.",US,5,2017-06-01,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +Love it,Reddit nails it once more,NL,5,2017-06-01,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Reddit,My daily time waster thank you Reddit for the dankness,US,5,2017-06-01,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Great App,"Great for browsing Reddit on the go. Good UI for mobile users, info organised cleanly 👍",GB,5,2017-06-01,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Great stable and smooth app,"Works exactly as expected, thank you",CA,5,2017-06-01,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +I'm just here so I don't get fined,I'm just here so I don't get fined,AU,1,2017-06-01,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Neat,Good app,US,4,2017-06-01,26,26.0,"(25.0, 30.0]","(25.0, 50.0]" +Perfect,Best mobile app.,US,5,2017-06-01,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +pretty good app,yay,CA,5,2017-06-01,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Essential,"Reddit is great, app is great",GB,5,2017-06-01,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Gr8 it's a good app,Hate the whole having to rate thing tho,GB,5,2017-06-01,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +Tis a good app my friends,Good,GB,5,2017-06-01,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Stop asking me!,Stop asking me to write reviews. I already did!,NL,1,2017-06-01,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +Solid,Works very well for me and my iPhone 7,US,5,2017-06-01,71,284.0,"(70.0, 75.0]","(275.0, 300.0]" +Better than Instagram,👍🏿👍🏿,CH,5,2017-06-01,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +Everything works very well and looks good,"The UI is very intuitive, switching between subs is easy, and the notification system is still the best change so far.",US,5,2017-06-01,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Stop,Asking me to write a review.,US,1,2017-06-01,58,174.0,"(55.0, 60.0]","(150.0, 175.0]" +"Much reddit, many good",Yarp.,AU,5,2017-06-01,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +iPhone 6S,"Works perfectly. I used to use Alien Blue and this is genuinely an upgrade. I tried to use it before but it worked poorly; however, it works extraordinarily well now. I would like the option to use the random subreddit features that are available to the desktop version.",US,5,2017-06-01,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +A solid way to get my daily dose of reddit,I like the app,US,4,2017-06-01,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +Love the app,Does everything it should do,BE,5,2017-06-01,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Great sap,Addictive,US,5,2017-06-01,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Its reddi,But in app form. Groundbreaking,US,5,2017-06-01,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Works Great! Awesome app,Good stuff,US,5,2017-06-01,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Love it,Use this app everyday,US,5,2017-06-01,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +It's taken over my life,It's been 528 days since I downloaded the reddit app. I've lost touch with all my friends and my family will no longer speak to me. But the memes are dank.,CA,5,2017-06-01,49,49.0,"(45.0, 50.0]","(25.0, 50.0]" +Top,Love it!,DE,5,2017-06-01,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +Love it,"I give it five stars or as Netflix sees it, thumbs up",US,5,2017-06-01,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Recommend,Love it,US,5,2017-06-01,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Loving it,GB,5,2017-06-01,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Great app for great community,That's all there is to it.,US,5,2017-06-01,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +"Night mode, text size... just perfect!","Incredible how you guys integrated all that I talk about when developing apps! + +From night mode to easily changing font sizes, everything is there for a great experience! + +Congratulations, really stellar work!",CA,5,2017-06-01,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Sempai ^_^,Love ya,RU,5,2017-06-01,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +5/7,"Would rate again + +Rated again--still a perfect score",US,5,2017-06-01,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +It's pretty ok,"Decent functionality. I miss some of the features from AlienBlue, but overall a good experience.",US,5,2017-06-01,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +Superb Content,I guess my review is not related to the app but more to the content contributors. I bailed on all social media about a year ago and replaced Facebook and Instagram with Reddit. It's fantastic!,US,4,2017-06-01,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +"You're great, reddit",Now stop bugging me for reviews,AU,5,2017-06-01,33,165.0,"(30.0, 35.0]","(150.0, 175.0]" +Good app,Good,GB,5,2017-06-01,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +Good job,Reddit,US,5,2017-06-01,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Good ap,"I open, I read, I click. We work well together.",US,4,2017-06-01,13,13.0,"(10.0, 15.0]","(-0.5, 25.0]" +Hey that's pretty good!,Hey that's pretty good!,CA,5,2017-06-01,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Easy to browse,The app is very friendly and easy to browse.,BR,5,2017-06-01,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +Woo,"App is easy to use, rarely have issues with it.",US,5,2017-06-01,93,279.0,"(90.0, 95.0]","(275.0, 300.0]" +A community of intelligence.,5/5.,GB,5,2017-06-01,13,26.0,"(10.0, 15.0]","(25.0, 50.0]" +Great and wonderful!,I really enjoy this app!,US,4,2017-06-01,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good,App is OK,US,4,2017-06-01,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +It's does most Reddit things,"Only complaint is, sometimes GIFs won't play. Although it's not very often at all. Still 5 stars.",US,5,2017-06-01,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +Best reddit app by far,"Best reddit app by far, simplistic, minimalistic, quick, effective and is perfectly optimised with a lot of customisation!",GB,5,2017-06-01,54,162.0,"(50.0, 55.0]","(150.0, 175.0]" +Awesome Community,Reddit feels like you're in on the greatest secret nobody knows about but the reality is everybody does,US,5,2017-06-01,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Super,Parfait!,FR,5,2017-06-01,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +Does the job,See above,US,3,2017-06-01,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Good,It's good,AU,5,2017-06-01,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Works well - difficult to navigate,"Works well, stable and functional. Only complaint is the ease of navigating amongst topics, which is not obvious.",ZA,4,2017-06-01,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Good App,Great to get as much info as possible on tour area of interest,GB,4,2017-06-01,74,148.0,"(70.0, 75.0]","(125.0, 150.0]" +Fantastic app.,"Fluid, stable and easy to use.",GB,5,2017-06-01,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Great,Great app I enjoy,US,5,2017-06-01,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +Awesome,Better than the Website!,DE,5,2017-06-01,1,1.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Fantastic.,Excellent posts,BR,5,2017-06-01,80,400.0,"(75.0, 80.0]","(375.0, 400.0]" +Great app,"Cant recommend enough. + +Heaven is a place on earth with you",HR,5,2017-06-01,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Simple and sleek,Love this app and its developers for that matter. They do an amazing job maintaining it and listening to feedback!! Moderators are always on hand for advice too!,GB,5,2017-06-01,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +It's Great,I love it,US,5,2017-06-01,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Good,It's good. Now stop asking me to review it.,AU,5,2017-06-01,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Love it!,So much easier using the app,GB,5,2017-06-01,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Reddit,👍🏼 love it!,US,5,2017-06-01,80,240.0,"(75.0, 80.0]","(225.0, 250.0]" +Awesome! New to reddit,"I got into reddit at the beginning of last year. +The app is great.",US,5,2017-06-01,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +"Great app, great website","Pretty much flawless in terms of software, no glitches that I can find + +Entertaining, always interesting comments, whatever, + +It's reddit",GB,5,2017-06-01,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Great,Good interface. Doesn't lag. Not too many ads. Links open properly.,ZA,5,2017-06-01,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Yeah.... I just want them to stop asking for a review so woo Reddit,You go Glen Cocoa,AU,5,2017-06-01,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Love it!,Great functionality,AU,5,2017-06-01,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +They keep pestering me so here,"Take it you greedy little animals +Oh you like that 5 stars? +Why don't you call me daddy too?",US,5,2017-06-01,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Feeling obliged,"I hate when an app asks you to leave a review but this app has taken like 41% of my battery over 20 hours because I use it so much. + +It's a great app and deserved a review, so I won't even dock a point for asking.",AU,5,2017-06-01,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +The best,Yes! The official Reddit app!,NZ,5,2017-06-01,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Easy to use as always :),but in the recent updates there's a bug where i dont recieve notification...,MY,4,2017-06-01,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +"Good app, but...","Reddit as a social media platform is awesome and the app is easier to navigate than the website, however, with this new update, upvotes and notifications are displaying incorrectly in my Inbox. Whenever i'm scrolling through a subreddit, per se, I upvote sonething and the ""vote"" button just turns orange, not adding any value to the post's points. + +Please fix.",US,3,2017-06-01,34,170.0,"(30.0, 35.0]","(150.0, 175.0]" +Informational and Entertaining,A truly great place to find internet things,DE,5,2017-06-01,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Best thing ever,🎉,US,5,2017-06-01,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Love,It,US,5,2017-06-01,61,244.0,"(60.0, 65.0]","(225.0, 250.0]" +"Overall, no complaints","Pretty solid app for browsing reddit. However, I do wish there was a way to be subscribed to ""casual"" subreddits like in the Alien Blue Reddit client app. Just because I subscribe to something doesn't necessarily mean I want it to show up on my feed.",US,4,2017-06-01,100,200.0,"(95.0, 100.0]","(175.0, 200.0]" +Great,Good 3 years 2k karma,CA,5,2017-06-01,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Fun,So much fun I like fidgets,US,5,2017-06-01,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +Reddit is great!,Great app for an even better service!,US,5,2017-06-01,32,128.0,"(30.0, 35.0]","(125.0, 150.0]" +Loves the Reddit,Title speaks for itself A+ material over here,US,5,2017-06-01,46,184.0,"(45.0, 50.0]","(175.0, 200.0]" +Egentligen skitbra app men,"Man kan inte söka i enskilda subs, så vitt jag vet (annars fem stjärnor.. kanske)",SE,1,2017-06-01,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +I used to use antenna,But I like this one more.,US,5,2017-06-01,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Fantastic,"I'm with cdgeorgia, I'm only writing this so I stop getting asked.",AU,5,2017-06-01,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Garbage-ish,"Needs Some work. More work! because there is too many rules for everything and I think it's all unfair. The mods say long messages and I don't understand. It's annoying me and making me suffer through annoyingness. I am sorry but it just needs more work. And needs better nicer people because you don't want to get someone annoyed by you and say the f word or yell at you on social media. Its like you can't do anything to help fix the problem. I love reddit but I feel I can't post anything. I have three accounts I think and I'm trying to find out what they are. But I can't. I don't remember. I want to get them deleted for good. So I can only have one account. The mods are nice and some of them are weird. They say too much. I still don't understand the words they mean in their sentences. And all the rules are everywhere and it's hard for me to follow them. I don't know why I can't to reddit in the first place. And I don't know why there are 5828488493948583948578494758948 rules for everything. I mean what the what?! It's annoying, hard, overwhelming, annoying, fun (sometimes), boring, etc... but I still like this app. I just need the rules and everything that annoys people or all that stuff be fixed as well. Plez? I can't stand it *sits on spiny chair* hope you like what your doing! Because your making some people suffer through the rules and trying to follow them and also talking to people for help and then they yell at them. THAT IS NOT NICE. I disagree to treat a person or talk to them that way. TREAT people with RESPECT and all that other stuff people told you about to do! It's easy! Ok I think that's all. :3 + +And some of the mods are mean or unfair. Just please tone it down with the rules. There are like five thousand eighty nine million rules. Or some how many rules there are. Just tone it down a little please and don't let people use vocabulary words that are super long and hard for me to understand them. And the mods keep telling me ""you can't do this let rule 1"" I mean why can't I do it? I posted other posts like that and you stop me on that one post? And why can't I use text box sometimes? Or something. I don't like being banned or muted. I just god banned and muted twice for 72 hours and the second one.. is permanent. I don't like that idea. I said PLEASE TONE DOWN ON THE RULES. Don't make more rules so we feel like dogs and can't do anything. And people keep saying ""this doesn't belong here you keep just breaking the rules"" and ""you can't do this"" or ""you can't do that"" then why do we HAVE IT THEN?! Huh?! Why? I do hope your doing great Reddit. Your making people suffer of problems because of the mods and some people on there who says things like that and makes people feel bad. It's always me who gets something like""you did this"" ""you can't do that"" ""our just breaking more rules"" STOP WITH THE RULES. TOO MANY. Please it's very annoying to have to read all the rules and forget. Just keep the rules down low. I mean keep only a little bit of rules for all the subs. And hen Reddit will be better. + +Oh, yeah and whenever I post something someone says ""you can't do this your just breaking the rules"" THEN WHY CAN OTHER PEOPLE POST IT THEN?????!!!!!! And people keep giving me -1 on my comments on one of my posts! Stop that please! This is a professional app then right? Then why are people posting random stuff? And I post something and it's not aloud and I break the rules????? Idk.. I'm going to destroy this app now. Jk. Maybe. But T.O.N.E it down with the RULES PLEASE!?... and people. One person: u/Algernon_asimov is still making me sad and worried. In Trying my best on this app I really am. Wish I could delete messages within the app. And so things that I CAN do. + +Reddit just needs to change.",US,1,2017-06-01,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Solid app,Good way to use the site,US,4,2017-06-01,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Great App,I like it better than on the computer because you can change the backgrounds and it is easier on the eyes. Also whenever you're bored just open it and start reading.,US,5,2017-06-01,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +It works,The ads are annoying,CA,4,2017-06-01,75,375.0,"(70.0, 75.0]","(350.0, 375.0]" +Simply great!,This is by far the best Reddit experience.,US,5,2017-06-01,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +Ya,Yeet,SE,5,2017-06-01,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +Good,Good app,AU,5,2017-06-01,2,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +reddit rating,wow!,NL,5,2017-06-01,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Bomb,Bomb,IT,5,2017-06-01,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +It's dumb and clever,it's generally for stupid time wasting but you can also learn and follow real interests which can be amazing,GB,4,2017-06-01,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Easy to use,Simple straightforward and a lot less buggy than other versions,US,5,2017-06-01,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Works great,Notifications when I get a comment are awesome. The one feature I would like is a central way to click to all my subscriptions.,US,4,2017-06-01,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Great,Good way to browse reddit.,US,4,2017-06-01,71,355.0,"(70.0, 75.0]","(350.0, 375.0]" +Love it!!!!!,I really do......... thanks for reading.,US,5,2017-06-01,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Awful,Don't get this app,US,1,2017-06-01,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Great!,"This is a great app, I recommend it",BE,5,2017-06-01,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Good stuff,I like it,US,4,2017-06-01,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +不错,ꉂ ೭(˵¯̴͒ꇴ¯̴͒˵)౨”,CN,5,2017-06-01,76,228.0,"(75.0, 80.0]","(225.0, 250.0]" +It's Reddit,I mean come on. It's awesome and unlike many other social media apps you actually feel like you're seeing regular quality content,US,5,2017-06-01,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Good Place to Hang Around,Interesting place,MY,5,2017-06-01,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +My comments aren't appearing in any of the subreddits,I really like browsing with the app. Just wish I could contribute,US,2,2017-06-01,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +Great,This app has done wonders for my Reddit addiction. Now I can be browsing inconsequential nonsense wherever I go.,GB,5,2017-06-01,36,108.0,"(35.0, 40.0]","(100.0, 125.0]" +Love it,Love it,US,5,2017-06-01,26,26.0,"(25.0, 30.0]","(25.0, 50.0]" +Excellent app - far better than the Desktop experience,Every time I use the desktop version I'm reminded how much better the app is.,US,5,2017-06-01,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Best app,My favorite app now,CN,5,2017-06-01,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +True Reddit,Great app! One of the best.,US,5,2017-06-01,16,48.0,"(15.0, 20.0]","(25.0, 50.0]" +Read it first,I love that I always know news first. From every category imaginable.,US,5,2017-06-01,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +Much scroll,"Many meme +Such post +Very comment",US,5,2017-06-01,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Strong mobile app,"The iOS app is much improved and enjoyable to use. I prefer Reddit on a PC, but when I don't have the opportunity, the mobile app allows for fairly seamless browsing and reading.",US,4,2017-06-01,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +It doesn't work,"Fails to connect to Reddit on wifi or cellular. Since that's it's only purpose, 1 star.",US,1,2017-06-01,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +"Easy to use, better than mobile site","Faster, more convenient.",US,5,2017-06-01,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Such thing as too addicting?,"By far my most used app. Love browsing reddit in my ""down time"".",US,5,2017-06-01,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +It's reddit,Nothing needs to be said,US,5,2017-06-01,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Really great app,"Really enjoy this app. It was a fairly simple switch from Reddit is fun. Only complaint is that there is no way to add flare to posts. I don't use Reddit on a desktop so this is my only option.(fixed!!) + +Loving the update to notifications! It's was a little tedious before.",US,5,2017-06-01,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +My go to app,"This is a fantastic app that lets you explore all of your interests, try it",GB,5,2017-06-01,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Stop it,"1 star for badgering me to review you. + +Also fix the non stop political spam and counter spam problem.",US,1,2017-06-01,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +Goat,🐐,US,5,2017-06-01,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Duh,Very enjoy,US,5,2017-06-01,76,76.0,"(75.0, 80.0]","(75.0, 100.0]" +Great,It's just great alright stop Adkin questions just close ur eyes and accept it,US,5,2017-06-01,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Finally a good app for Reddit,Glad they supported an official one.,US,4,2017-06-01,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Bacon,Bacon is good. So is Reddit.,US,4,2017-06-01,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +New version is meh,I miss having direct access to make a new post from anywhere. Notifications are better but could be improved more. Benefits to inconveniences are a push in the update,US,3,2017-06-01,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +An amazing app with even better content!,"The app is pretty flawless and the content just is amazing, endless entertainment which can be used for even your benefit.",US,5,2017-06-01,68,204.0,"(65.0, 70.0]","(200.0, 225.0]" +Good app but lacks landscape view,Only missing feature imo. Otherwise a very good app.,GB,4,2017-06-01,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love Reddit,But god damn I wish it would stop asking for reviews,AU,5,2017-06-01,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Awesome,Awesome,US,5,2017-06-01,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +Notification settings ignored,I turned off notifications for trending posts and still got a notification. Thanks for betraying my trust. Also stop forcefully asking me to review so often. They are too frequent and too intrusive.,US,1,2017-06-01,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Yup,Get it.,US,5,2017-06-01,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Neat,Like it. Smooth and silky,US,5,2017-06-01,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +So easy and quick!,"The app is easy to use for all it's users, young and old. It is also fast with minimal lag",US,5,2017-06-01,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +Better than it used to be,"This app has had a pretty troubled past, but some recent design changes that have made it a lot better. However, they still don't support their OWN TEXT FORMATTING, which is always irritating. + +Obviously, desktop will always be better, as the app doesn't have the ingrained CSS of subreddits.",US,4,2017-06-01,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +good,goodly,US,5,2017-06-01,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +"Reddit, as it should be.",Writing this review in the vain hope that the app will stop trying to force me to write a review.,GB,5,2017-06-01,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Perfect,App works just like it should.,US,5,2017-06-01,71,355.0,"(70.0, 75.0]","(350.0, 375.0]" +Need bigger font size,"I'm currently using the watermelon font size. Titles are readable, yet comments are still in tiny font that get blurry when i read somewhat longer comments. I have perfect vision and I'm using this app on my iPhone 7 plus, so I believe I can't get bigger font size with your app's restrictions. I wish you allow system font size to be applied on the app instead of your custom font sizes. Some people who are using accessibility features for vision on the iPhone can't use your app without a magnifier, and it does not make it an enjoyable experience. Alien Blue was better font-size wise. + +To be honest, I have never seen a watermelon as tiny as your font.",US,1,2017-06-01,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +It's Reddit,Basically just another outlet for my Reddit fix.,US,5,2017-06-01,24,24.0,"(20.0, 25.0]","(-0.5, 25.0]" +Stop bugging me reddit,Okay I did it,AU,5,2017-06-01,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +Reddit!!!!!,Only downside is if you want to access your full range of settings you still will have to use your browser.,AU,5,2017-06-01,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +It's lit,"I love Reddit, it makes me laugh and is really simple to use! Just use the search engine and find your kind of people on subreddits",US,5,2017-06-01,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Pretty good,Pretty good,CA,5,2017-06-01,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Solid 5/7,Great app much wow,AU,5,2017-06-01,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Pretty good!,"No alien blue, but pretty good otherwise. Not a lot of account settings though.",AU,4,2017-06-01,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Awesome,Awesome,US,5,2017-06-01,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +Simple,Simple and easy to use,US,5,2017-06-01,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +Great,Rate 8/8 mate,US,5,2017-06-01,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Terrible,Literally any app is better than this one.,CA,1,2017-06-01,18,90.0,"(15.0, 20.0]","(75.0, 100.0]" +Rockstars of the opportunity,It rocksgg,US,5,2017-06-01,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +Love it,It's easy to navigate and I spend most of my time on this app.,US,5,2017-06-01,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +Reddit,FCC,US,5,2017-06-01,33,66.0,"(30.0, 35.0]","(50.0, 75.0]" +Yeah sick,Mad,AU,5,2017-06-01,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +No complaints,"A Tim Getty's shout out to the easy ""switch between accounts"" feature.",US,5,2017-06-01,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Best Reddit app for iPhone I've tried,"Unless someone can point out a better one, this is it. The only thing I ever really want is more Reddit formatting options when making comments cause having to look them up is a pain. + +Edit: Please stop asking me to rate this if I've already rated it.",US,4,2017-06-01,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Reddit app works well!,"I was an avid user of Alien Blue but switching over to the official iOS app has been pretty painless. Now, with the most recent update, it's one of my favorite apps.",US,5,2017-06-01,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +"Great, flexible app.",I find no issues of note with Reddit's application and deem it really good for those who wish to browse it on their phones.,JO,5,2017-06-01,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Slowly sucked my social life away,Reddit slowly sucked my social life away so that I can gain fake karma points for people Ill never meet,US,4,2017-06-01,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Pretty good,Wish I could swipe left to collapse comment chain like alien blue,CA,4,2017-06-01,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +Reddit,"This app allows one to view the world in words and pictures. It stimulates that which needs stimulated. Philosophy to art, i usually find here first. Have fun.",US,4,2017-06-01,68,340.0,"(65.0, 70.0]","(325.0, 350.0]" +Bonerific,Boner all the time while using this app.,US,5,2017-06-01,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Great app.,5 star app.,US,5,2017-06-01,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +I like it!,Yeah I like it,US,5,2017-06-01,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Its okay,Stop asking me to set notifications up... I'll let you know when I want them,US,2,2017-06-01,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Good stuff,Better than on desktop,US,5,2017-06-01,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +Good app,.,AU,5,2017-06-01,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Quick and efficient,Love this app. Makes reddit browsing a breeze.,US,5,2017-06-01,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Teh gnarwhale bacons at night kekek,I love this app because I can show how smart I am on r/politics and r/atheism.,US,5,2017-06-01,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great mobile app,"Great mobile app. Not perfect, some room for improvement but it's really great overall.",US,4,2017-06-01,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Love it!,Can't. Stop. Reading.,US,5,2017-06-01,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Good!,"I don't post a lot and I am not a moderator. This app works fine for what I need. + +It would sure be swell if the app stopped asking for a review all the time.",US,4,2017-06-01,46,92.0,"(45.0, 50.0]","(75.0, 100.0]" +Do you like the internet?,Yes? Then try this community. It's internet as hell.,US,5,2017-06-01,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Great app!!,"I use this for entertainment and to learn about all kinds of subjects: science, video games, history, etc. I love being able to find people with similar interests and also discuss diverging opinions all in one place.",US,5,2017-06-01,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Best,Really nice covfefe.,IT,5,2017-06-01,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +The best thing on teh interwebz,I never have problems dope site and app now please stop telling me to rate your app.,US,5,2017-06-01,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +It's good.,"There have been a few times where people tried to send me a message and it never came through. There have also been a few times when someone has commented on a post I made, and I got a phone notification for it, but I couldn't see the message. A day later it showed up. +All in all though, app is good.",US,4,2017-06-01,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Best Facebook Yet!,"I love this new Facebook app! My newsfeed changed a little. Different icon look, but the alien head is cool. Really dig the NSFW posts. Also the cat pics. #keepinitreal",US,5,2017-06-01,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Good with room for improvement,It's a great app but no porn. I think that holds it back some... just being real.,US,4,2017-06-01,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +Great improvements on the new update,It will still need more work. I hope there is a way to delete messages as at this point I can't do it on the phone.,US,5,2017-06-01,86,430.0,"(85.0, 90.0]","(425.0, 450.0]" +Reddit is cool,Endless fun,US,5,2017-06-01,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love this app,"New update is really bad. Laggy search bars, randomly quitting while I was using the app and many other problems plague the mobile experience. Really not good.",US,2,2017-06-01,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +Good,👍🏼,CA,5,2017-06-01,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +Best social media app,Title says it all,US,5,2017-06-01,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Must have for all devices,Been with Reddit for almost 4 years now. Still love it.,US,5,2017-06-01,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Powerful,Great stuff,US,5,2017-06-01,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great app,👍,BR,5,2017-06-01,17,68.0,"(15.0, 20.0]","(50.0, 75.0]" +Great app,Dope,US,4,2017-06-01,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Works well,"Similar experience to the desktop site. Not much is missing, especially with recent updates.",US,5,2017-06-01,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Alien Blue was a hundred times better,"You can't browse by all your favorite subreddits like you could in Alien blue. Instead you can only browse r/all or go to each subreddit individually. Which is pretty irritating because half of r/all is always porn. + + New update is clunky, app now has a post at the top of EVERY subreddit where if you click it let's you make a post. Completely unnecessary and I've already clicked it multiple times absentmindedly thinking it's the top post of a sub. + + Also a criticism of Reddit in general and not so much the app, be prepared for 10 threads a day about Donald Trump being the worst person ever gets very annoying. You block 8 subs every day and 8 new ones pop up. I'm not a trump supporter nor am I against him, but regardless I don't want to have to see half of the front page talking about him every day of the year.",US,2,2017-06-01,65,325.0,"(60.0, 65.0]","(300.0, 325.0]" +It's gud I guess,Breddy gud,US,3,2017-06-01,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Good,Good,US,5,2017-06-01,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Memes Pepe XD I am hip and cool,Pretty good source of may mays,US,5,2017-06-01,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Review,I like Reddit!,US,4,2017-06-01,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Great app,Long time user and Reddit lover,US,4,2017-06-01,21,42.0,"(20.0, 25.0]","(25.0, 50.0]" +Great,Best forum out there,US,5,2017-06-01,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +It's Reddit,It's Reddit. What do you expect?,US,5,2017-06-01,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +TipTop,"Runs great, I've never experienced any issues or crashes.",US,5,2017-06-01,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great app for a great community,Just download it stop reading reviews,GB,5,2017-06-01,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Reddit!,Covfefe.,US,5,2017-06-01,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Good app for pooping,I use this app every time I'm pooping. Definitely cures boredom.,US,5,2017-06-01,32,96.0,"(30.0, 35.0]","(75.0, 100.0]" +It's reddit.,Yep. It's reddit. It works.,US,5,2017-06-01,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +Good app,I think I've said too much.,US,5,2017-06-01,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +I mean it's Reddit...,"Reddit is proof that if there was a god, that he loves us unconditionally. With that being said the app could be better.",CA,4,2017-06-01,88,176.0,"(85.0, 90.0]","(175.0, 200.0]" +Rated.,Rated so it can stop asking me to rate it,US,3,2017-06-01,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +Spectacular 😍💎,"I love the update 💕, the only issue is that the app keeps crashing when I try to post ever since the update.",CA,5,2017-05-31,35,70.0,"(30.0, 35.0]","(50.0, 75.0]" +Cool app,Esta chida la app mucha diversidad un buena alternativa a las redes sociales. Recomendada 👍✌️,MX,4,2017-05-31,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Almost perfect,"I made myself switch from Alien Blue a few months back when it became borderline unusable w broken / missing features and little by little, the reddit app has gotten much better. Almost perfect at this point with how fast and well organized it is. Really like that in this update, the post button has been moved inline instead of on the bottom bar (as I rarely post stuff, just browse). + +The few things I'd like are a safari view controller for links (so that I can use a content blocker for the really bad sites), 3D touch on thumbnails, less review prompts (I feel like I get 20 a month), and movable subreddit favorites that aren't organized alphabetically. Other than that, super happy!",US,5,2017-05-31,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Suhlid,Love the app just as good as the site,US,5,2017-05-31,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +stop asking for a rating,it's reddit ffs you do not need more visibility,US,1,2017-05-31,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Works good,Stop asking me to rate this app,US,5,2017-05-31,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +👍🏻,👍🏻,US,5,2017-05-31,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +should have a where you left off system,loving reddit but i hate that i have to rescroll to where i left everytime i reopen the app...,US,3,2017-05-31,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +"Such Ads, many bothers",The only reason I am writing this review is because the app leaves a giant banner on the bottom until you do. Ads all over the place. Do better.,CA,1,2017-05-31,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Definitely needed,"This app fills a very important need in this day and age. A platform is to discuss very specific subject matter with others. Whether it be health, hobby, or job related. So thanks to the developers!!",US,5,2017-05-31,24,96.0,"(20.0, 25.0]","(75.0, 100.0]" +Love it,Reddit is the best news site ever,US,5,2017-05-31,98,294.0,"(95.0, 100.0]","(275.0, 300.0]" +Best Reddit App on App Store,"Great UI, snappy, excellent 3D Touch integration. Really is the best app for Reddit on iOS",US,5,2017-05-31,54,162.0,"(50.0, 55.0]","(150.0, 175.0]" +Sends mandatory clickbait notifications,"This app sends notifications about clickbait political ""news,"" and there is no means to opt out. + +You can opt out of ""suggested posts."" However, you cannot opt out of the political clickbait without disabling notifications altogether. It just keeps coming.",US,1,2017-05-31,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +wont stop begging for you to rate it,"And wont stop begging for you to turn your notifications on + +In the last month I've been begged to rate the app over 10 times + +Even after I rate it with 1 star, I still get nagged over and ovet and over + +And I am back again, after being asked to review it one more time",NO,1,2017-05-31,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Needs ability to filter subreddits.,Can't filter,US,3,2017-05-31,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +very,informative.,US,4,2017-05-31,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Works fine,Works fine.,US,4,2017-05-31,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Really enjoy it,No issues at all with current version,US,5,2017-05-31,86,258.0,"(85.0, 90.0]","(250.0, 275.0]" +Very effective,No issues at all. Very helpful and intuitive.,US,5,2017-05-31,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Diss be kool.,Diss be kool.,US,5,2017-05-31,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +The Front Page of the Internet,If you aren't on Reddit I don't know what you're doing. Download this. Now.,US,5,2017-05-31,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Good,10/10,US,5,2017-05-31,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Good.,Good.,US,5,2017-05-31,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +💕love,Works fine on my iPhone 6s ! ❤️,US,5,2017-05-31,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +It's good,But it needs more cowbell,US,5,2017-05-31,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Good,Good,NZ,5,2017-05-31,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Reddit Good Apple Bad,"Reddit App: +9/10 +Apple's Review System: +!?#$/!?#$",AU,5,2017-05-31,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Well done,"Love the app, does all in need it to. + +Thanks Reddit",US,5,2017-05-31,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Awesome App,"I would give it 100 stars if I could!!! +Love it!!!",CA,5,2017-05-31,62,186.0,"(60.0, 65.0]","(175.0, 200.0]" +Do you like the app?,I love the app EXCEPT every stupid time you ask me to rate it. There. It's rated. Leave it alone.,US,1,2017-05-31,47,94.0,"(45.0, 50.0]","(75.0, 100.0]" +Amazing app,Love it,US,5,2017-05-31,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +Pretty fun,"Feel a little boxed in w an app as I'm the type to open 23 tabs and right click to share stuff yet all said I am really enjoying having this app to escape from all the real world crap. I love having been able to subscribe to themes I like and get a feed of them and then able to delve into any topics from there and have even joined some threads so yeah I'm finally getting into Reddit after all these years and having it in app is great. + +Messages add on isn't anything to write about. Maybe a watch app could be fun for reading replies to watched threads.",US,4,2017-05-31,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +Great way to waste a couple of minutes,and learning new things too!,US,5,2017-05-31,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Perfect app,awesome sauce👍🏻,US,5,2017-05-31,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great!,I love reddit,US,5,2017-05-31,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +Stop asking for a review,Every single time your app asks for a review I will give a 1 star review. Stop it.,AU,1,2017-05-31,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +Bad Update,"This past update has just made the app worse. Took away to make a post no matter where you're at on a page. Now you HAVE to scroll all the way to the top. So annoying. Also took away being able to see the comment karma for replies, which I thought was a great addition in the last update. Please change these things back!!!",US,2,2017-05-31,69,207.0,"(65.0, 70.0]","(200.0, 225.0]" +Nice and stable app,"Does what it is supposed to do, straightforward to use. + +Downrated to three stars because it keeps asking me to leave a review, after I did already.",IS,3,2017-05-31,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +Amazing App,"I go on reddit almost every day +The app makes it very easy to manage posts as well as look at what's new",US,5,2017-05-31,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +It's Reddit,Pretty dank,GB,5,2017-05-31,11,55.0,"(10.0, 15.0]","(50.0, 75.0]" +Good App,Very User friendly and fast,DE,4,2017-05-31,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +It's good,"Really good, it's no alien blue, but it does the job",US,5,2017-05-31,38,76.0,"(35.0, 40.0]","(75.0, 100.0]" +Not bad,Decent,US,4,2017-05-31,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Literally all I use on my phone,"Close my laptop, open the app. Help me please",US,5,2017-05-31,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +"Easy, interesting, and fun",Love it.,US,5,2017-05-31,74,296.0,"(70.0, 75.0]","(275.0, 300.0]" +Great,Use it. It's great.,US,5,2017-05-31,80,400.0,"(75.0, 80.0]","(375.0, 400.0]" +Wut,One thing I don't understand is why I cant sign in using Facebook,RU,5,2017-05-31,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +Great love it,Despite the Reddit app covfefe,GB,5,2017-05-31,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +Works as expected.,Works,US,5,2017-05-31,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +Bien !,"Mais je n'aime pas l'idée de devoir donner accès à ma pellicule et à mon appareil photo pour pouvoir enregistrer des photos... +Je n'ai pas d'autres bémols.",FR,4,2017-05-31,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Good,It's good for simple browsing.,US,4,2017-05-31,96,384.0,"(95.0, 100.0]","(375.0, 400.0]" +Love it,Closest app that is like being on the computer,US,5,2017-05-31,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +Great app,Came from alien blue and downloaded this. Completely great app haven't had any major problems.,US,5,2017-05-31,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +Reddit,Great site,US,5,2017-05-31,43,172.0,"(40.0, 45.0]","(150.0, 175.0]" +Great,Great,US,5,2017-05-31,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Great app,"Love the community, app works great for me. Only downside is you can't see a profile or post history from messages. You have to search the user name.",US,5,2017-05-31,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,I learn so many things every single day!,US,5,2017-05-31,5,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +My Reddit fix,I need my daily reddit fix or I start to get the shakes and this app is the way to it. I'll always have my reddit fix in the palm of my hand.,CA,5,2017-05-31,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Great,It's a good app,US,4,2017-05-31,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Best reddit app but with a little flaw,"In the new version they removed the post button at the bottom and i loved it, i hope it comes back",ES,4,2017-05-31,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +Awesome!!!,"Great way to discover loads of new stuff, I love how you can customize the colors and search up things you are interested in! There is a post for everything, great app.",US,5,2017-05-31,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Not as good as alien blue,"Works most of the time, but sometimes it locks up and won't load comments when alien blue will + +Edit: deducting a star because the app won't stop asking you to rate it even if you have already. Very annoying.",US,3,2017-05-31,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Great.,Nuff said,US,5,2017-05-31,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +"reddit..., wow","Love it, so many subreddits, never gets boring, so interesting. It's hard to put my phone down.",AU,5,2017-05-31,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +good addition to the pc version,can't beat pc tho,AT,4,2017-05-31,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Great!,Prefer using the app to desktop. Much easier to browse and post.,US,5,2017-05-31,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Perfect,Works perfectly,US,5,2017-05-31,9,45.0,"(5.0, 10.0]","(25.0, 50.0]" +"Does what it should, doesn't what it shouldn't.",😀,US,5,2017-05-31,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Great,Simply the best social media available.,US,5,2017-05-31,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +"Great app, one problem.",Still like it. Still would like landscape layout.,US,5,2017-05-31,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +use it every day,Works well for the iphone 5,US,5,2017-05-31,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +Can't copy photos,Terrible.,US,1,2017-05-31,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +👍🏻,👌🏻,US,5,2017-05-31,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +I like,I like. You like. We like. World peace. Very nice.,US,5,2017-05-31,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Overall good,Could definitely use some UI improvements but it's pretty good so far and they're updating regularly,US,4,2017-05-31,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +Good app,I like this app,US,4,2017-05-31,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +"Great App, not only entertaining but also informative.",This app is really good. 🙏🏼,US,5,2017-05-31,41,123.0,"(40.0, 45.0]","(100.0, 125.0]" +Love this app so far,"A few years back I would always see different social apps, whether it be Instagram, facebook, twitter, youtube, Snapchat, ifunny, twitch, Kik, discord, reddit, and others. Many of them serve different purposes compared to each other, and I never understood Reddit and never downloaded it. A few days ago I downloaded it and I like it very much. You can subscribe to different communities called sub-Reddits and post there, ask questions, answer people's questions, discuss the topic of the community, and other things too. There are very many communities for so many different topics and if you don't like the community for a topic you are interested in, chances are there are other communities based around the same thing. It's a very entertaining app in my opinion. I can learn things, talk about topics, help others with a question, laugh about the funny subreddits, and a lot more. I would definitely recommend giving this app a try and getting used to it, because I loved it after the first 10 minutes of using it.",US,5,2017-05-31,40,80.0,"(35.0, 40.0]","(75.0, 100.0]" +Cool,Good app!,GB,5,2017-05-31,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +Awful experience so far!,After only using this app for a few weeks we have already found that it is poorly run and even more poorly moderated. Use something else!,US,1,2017-05-31,79,316.0,"(75.0, 80.0]","(300.0, 325.0]" +Introverts Unite!,It's like Facebook without all that icky caring about others stuff.,US,4,2017-05-31,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Great app. Much better than their website.,Awesome.,US,5,2017-05-31,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Needs work,Overall not that bad however you cannot view videos in landscape mode.,CA,3,2017-05-31,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +Better than mobile site,Mobile site is solid but the app makes the experience more enjoyable especially with submission of content,US,5,2017-05-31,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,No complaints other than it kept asking me to review so here you go.,CA,5,2017-05-31,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +"Well, it's Reddit. What else is there to say.",Reddit has their own app and it works. No issues.,CA,4,2017-05-31,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Fantastic app,I've wasted so much time browsing Reddit with this app that I'm surprised I still have a job.,US,5,2017-05-31,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Indispensable,The only app I would save if my house was on fire.,US,5,2017-05-31,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Great app,See above,US,5,2017-05-31,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Love it,Works great,US,5,2017-05-31,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +"You kept asking me to review, so I did",.,US,1,2017-05-31,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Sick,Stop asking me to review now,US,5,2017-05-31,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +Nice,Nice,US,5,2017-05-31,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Good,Overall good,US,4,2017-05-31,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +Alien blue who?,I really Wish alien blue was an alternative.,US,5,2017-05-31,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +Perf,Perf,US,5,2017-05-31,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Reddit asked me to do this,I love Reddit. You should download it and use it.,NL,5,2017-05-31,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Great app,Works as intended. Easy to navigate.,US,4,2017-05-31,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Best,Only way to go!,US,5,2017-05-31,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +Great,Great,US,5,2017-05-31,93,372.0,"(90.0, 95.0]","(350.0, 375.0]" +Great app,"Makes me laugh and is great for killing time. One thing I would change is the ability to change your username, but that's not huge.",US,5,2017-05-31,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Good app,Love it! Especially the night mode!,CA,5,2017-05-31,5,25.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great App,Great entertainment and my favourite social media.,GB,5,2017-05-31,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Seamless app with great content,"Great content, wonderful community, seamless app with a simple and responsive interface + +Love it!",US,5,2017-05-31,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Love it.,"It's really fun just to casual browse and get new info like, TIL something about Apple or an artist. Only downside is the search engine aside from that, literally everything is perfect imo.",SE,4,2017-05-31,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +I wish they would stop changing the app.,"The last update was perfect. The UI looked great but now with the newest update, the moved the submit button. It is now at the very top of the screen and goes away when you scroll down. + +Before, I could be anywhere in the app and press the little submit button, submit my post and go on with my Reddit-ing. Now I have to lose my place in the timeline, scroll all the way up, submit, then scroll all the way down to find my place again. :(",US,3,2017-05-31,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +Pineapples,I like it,US,5,2017-05-31,70,280.0,"(65.0, 70.0]","(275.0, 300.0]" +Loves it,Booooooom heres some entertainment,US,5,2017-05-31,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +Great,Love it,US,5,2017-05-31,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Many good 👍🏽,I like scrolling through Reddit during downtime. It's very relaxing. Just don't subscribe to the technology subreddit- the constant knowledge of the imminent destruction of net neutrality will just make you depressed,US,5,2017-05-31,75,150.0,"(70.0, 75.0]","(125.0, 150.0]" +Stupid Notifications,"I've always loved this app up until this most recent update. I don't want stupid notifications popping up every hour telling me about ""trending posts"". Even when I disabled it within the app it continues sending me notifications. Extremely annoying and pointless addition.",US,1,2017-05-31,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +Love it!!,I'm hooked!!,CA,5,2017-05-31,51,102.0,"(50.0, 55.0]","(100.0, 125.0]" +App,Quite a few things that can't be seen properly in the app as opposed to in a computer.,US,3,2017-05-31,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Love it,Prefer the old Android version but still love the app,US,5,2017-05-31,63,189.0,"(60.0, 65.0]","(175.0, 200.0]" +Great,Love it. Works great. Does what I want.,US,5,2017-05-31,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +People will think I am a bot but...,I really have had no problems with this app.,US,5,2017-05-31,23,69.0,"(20.0, 25.0]","(50.0, 75.0]" +Working as intended,"No problems, works great. Love using it! Thanks guys!",US,5,2017-05-31,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Great App,Enough Said,US,5,2017-05-31,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Gold,"Pure gold, all the time.",US,5,2017-05-31,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +Good,Good,US,5,2017-05-31,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Admin issues,"Communities seem to be censored and controlled by administrators, not moderators. + +The app itself is better than browsing at a computer but it would be nice if an accidental touch didn't send me all the way back up to the top. + +It's also really hard to clear notifications and keeps annoying me by asking if I want to have push notifications which are only going to highlight subs I don't care about. I don't want notifications... I spend enough time on Reddit already.",US,3,2017-05-31,1,3.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Inline Post Is No Good,"The UI updates, specifically the ""inline post"" button, were unnecessary and feel cumbersome. + +Please consider finding a better way to post, or a less distracting way. Better yet, give an option to turn the inline post button off. + +The previous version was better.",US,2,2017-05-31,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +"May 31, 2017",Everything seems to work fine. Keep calm and chive on.,US,5,2017-05-31,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Hi,Great App!,US,5,2017-05-31,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +Good,Good- i like,US,5,2017-05-31,42,84.0,"(40.0, 45.0]","(75.0, 100.0]" +It's ok but not the best.,"Alien Blue was the best iOS app, but this is a close second.",US,4,2017-05-31,8,16.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,Works great.,US,5,2017-05-31,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Uber M,A review confefe of oranges.,US,4,2017-05-31,58,174.0,"(55.0, 60.0]","(150.0, 175.0]" +Missing feature,It's not supporting that feature ( ^ ) to make its smaller above a text,AE,5,2017-05-31,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Hours of fun,Lots of interesting stories and people to talk to,US,5,2017-05-31,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +Awesome,Yay,US,5,2017-05-31,82,164.0,"(80.0, 85.0]","(150.0, 175.0]" +Needs some added functionality.,It's overall pretty good. I would like to see an ability to save a post like I have on other Reddit apps. If we're being nit picky I'd also like to see a post directly linked to the article in question rather than needing two clicks to get there. But that's just me being lazy. Otherwise it's good.,US,4,2017-05-31,21,42.0,"(20.0, 25.0]","(25.0, 50.0]" +Rating this so they can get off my back ffs,Rating this so they can get off my back ffs,US,5,2017-05-31,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Great site and good app,"I love Reddit and the official app is pretty good. Easy to post, comment, and just browse.",US,5,2017-05-31,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Reditt Mobile,Only rating it cause it keeps asking me too. Its what you would expect from a reddit app,US,5,2017-05-31,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Works great!,Never any issues with bugs or crashes. Great app!,US,5,2017-05-31,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +If you don't know how Reddit works by now.,"I can only imagine you are a time traveler, or have been frozen in a glacier since caveman days. If it's the first one then could you please go back and domesticate bears instead of cats? I'm curious how that would work out.",US,5,2017-05-31,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Stop asking me how I like the app.,Does leaving a review make this app stop asking me how I like it? Here's your 1 star. Stop asking now.,US,1,2017-05-31,11,11.0,"(10.0, 15.0]","(-0.5, 25.0]" +Cool,Sick,US,5,2017-05-31,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Yee,Yee.,US,5,2017-05-31,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Awesome,Offers a subredddit for everyone and is very entertaining,US,5,2017-05-31,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Hmmmmm,I can't post without losing my place on the front page. You have restart at the beginning to create a post.,US,4,2017-05-31,97,97.0,"(95.0, 100.0]","(75.0, 100.0]" +It's Reddit!,"(May 30, 2017) It's still a cool app. Although I'm a little put off by the ""new post"" bar at the top of the subreddit. Why is that? + +(May 18, 2017) Clean, easy, manageable. Closable comments. Better browsing than on desktop. + +Though why can't I give gold on this app?",US,5,2017-05-31,90,450.0,"(85.0, 90.0]","(425.0, 450.0]" +Can't wait for it to be the go-to app,"It's a good app. The idea of Reddit is beyond great. The app just doesn't do anything more than the website does when it comes to a different tool to view Reddit. It's the website on wheels. This review is solely based on the app and not on the website Reddit! +Peace!",US,3,2017-05-31,91,273.0,"(90.0, 95.0]","(250.0, 275.0]" +Noice,If you like Reddit you will use this.,US,5,2017-05-31,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Annoying,Keep asking for a review and I'm tired of it.,US,1,2017-05-31,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Great app to a fantastic collective,"This app is a great support to the site itself. +Very little issues have occurred and it seems to be quite reliable.",US,5,2017-05-31,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Landscape,No landscape mode after a year. 1 star,US,1,2017-05-31,43,215.0,"(40.0, 45.0]","(200.0, 225.0]" +Awesome,Awesome,US,5,2017-05-31,78,234.0,"(75.0, 80.0]","(225.0, 250.0]" +Spend most of my time on it,"It's a fun way to spend your time, it's easy to use, and you can learn a lot.",US,5,2017-05-31,10,20.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app!,♥️♥️♥️,ID,5,2017-05-31,75,375.0,"(70.0, 75.0]","(350.0, 375.0]" +Loving it,"Bought Alien Blue, but ended up using this free app.",US,5,2017-05-31,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +It's better,Getting better,US,4,2017-05-31,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +Best in Class,Exploring the world,IN,4,2017-05-31,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Great,Great,US,5,2017-05-31,28,84.0,"(25.0, 30.0]","(75.0, 100.0]" +Great app all around,The development people at Reddit know what they are doing. Consistently making the app more user friendly and intuitive. Keep up the good work guys/gals! Love the app.,US,5,2017-05-31,66,132.0,"(65.0, 70.0]","(125.0, 150.0]" +Great Forum,It's nice to have a niche Clash Royale community forum. Very insightful and entertaining.,US,5,2017-05-31,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +Love it!,I do,US,5,2017-05-31,26,104.0,"(25.0, 30.0]","(100.0, 125.0]" +it's good,it's a good app,US,5,2017-05-31,72,360.0,"(70.0, 75.0]","(350.0, 375.0]" +Support User Selectable App Icons,"App has come a long way since the beginning. It's still not as good as several third-party apps (Readder / Narwhal / Beam), in that it could really benefit from swipe to vote gestures. + +That said, the new icon is pretty ugly with the diagonal gradient, that that's the beauty of personal preferences— everyone's different. I would love to see you guys to support the iOS 10.3 API for customising icons and allow users to choose from various icon options that match the app's themes (Reddit / Dark / Trees / Pony).",US,5,2017-05-31,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app,👌🏻👌🏻👌🏻,US,5,2017-05-31,12,48.0,"(10.0, 15.0]","(25.0, 50.0]" +Review,Fantastic,US,5,2017-05-31,10,30.0,"(5.0, 10.0]","(25.0, 50.0]" +Good overall,Has a great UI could work on getting a better integration with Reddit itself,CA,4,2017-05-31,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Good stuff,Lose the political advertising and let's get back to cat posts,US,5,2017-05-31,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +App will pester you for ratings,Stop asking me to rate your app. Perfect 5/7 score though.,US,4,2017-05-31,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +It's always something...,"Great app, I'm just scratching the surface but every time I get on I learn something new and interesting.",US,5,2017-05-31,22,110.0,"(20.0, 25.0]","(100.0, 125.0]" +int main (void),"{ + cout >> ""Hello World!"" >> endl; + return 0; +}",US,5,2017-05-31,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Solid App,"The app works way better than any other social media app, plus, it's Reddit. How could you not rate it five stars?",CA,5,2017-05-31,98,392.0,"(95.0, 100.0]","(375.0, 400.0]" +It getting better with every update,More and more is being updated,US,4,2017-05-31,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Ads and harassment to rate,This is your app for your website so why are there more ads than other free Reddit app? Why do you constantly harass people to taste your stupid app? You ask for a rating you get 1 star,US,1,2017-05-31,56,280.0,"(55.0, 60.0]","(275.0, 300.0]" +Very easy to use. Don't even do it in my laptop anymore,"This is a great app. There are others, but this one is the best.",US,5,2017-05-31,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Great minus the fact it keeps asking me to review,"Let's hope reviewing this makes the app shut up about giving it a review. + +Edit: +2 asking for rating",US,4,2017-05-31,26,78.0,"(25.0, 30.0]","(75.0, 100.0]" +Very good,Absolutely love the UI!,CA,5,2017-05-31,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Your app asked me to rate you,So here you go.,US,1,2017-05-31,39,156.0,"(35.0, 40.0]","(150.0, 175.0]" +Awesome,Sooooooooooooooooooooooooo Awesome,US,5,2017-05-31,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +best goddamn app ever,"one of the few apps ive never had any problems with , lots of cool an interesting sub reddits, love it, dope af",US,5,2017-05-31,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +I use it every day,👍,US,5,2017-05-31,27,135.0,"(25.0, 30.0]","(125.0, 150.0]" +Convenient,Not bad for what it is,SG,5,2017-05-31,55,220.0,"(50.0, 55.0]","(200.0, 225.0]" +Great!,"Great app for viewing Reddit, I've had zero issues with it.",US,5,2017-05-31,44,44.0,"(40.0, 45.0]","(25.0, 50.0]" +"Love it, however!","Great app, though the inability to hide NSFW subreddits has left me in subscribing to a lot of good content to avoid anything risky popping up while on the go.",CA,4,2017-05-31,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +CAN I GET A HELL YEAH,💯💯💯,US,5,2017-05-31,56,224.0,"(55.0, 60.0]","(200.0, 225.0]" +Love it,Great app,US,5,2017-05-31,47,188.0,"(45.0, 50.0]","(175.0, 200.0]" +Filters?,"The announcement about filters about a year ago said that you could filter r/all. Turns out you still can't do that, don't want to see all this trump trash every time I go on Reddit.",GB,2,2017-05-31,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +"Decent on phone, bad on iPad.",Have a decent time with this on iPhone (except for comment threads rarely loading without doing a reload dance) but I still use alien blue on iPad. The video playback experience for alien blue is much more enjoyable on iPad - like being able to scroll and see other posts while watching a video - or view the comment thread while still watching a video. Going to keep using alien blue until that layout issue gets sorted and properly uses iPad space.,US,2,2017-05-31,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Completely Broken Now,"App is near useless. New update rendered it unusable. Put it back the way it was the day before. And get rid of ""Popular"" while you're at it",US,1,2017-05-31,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +In the loop.,Never realized how slow TV news was until I started reading Reddit! Same exact articles or clips shown on tv but often days later.,US,5,2017-05-31,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +Works as expected,Great app for Reddit on the go. Never had any problems with it so far,US,5,2017-05-31,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Great app,App is a far better alternative to the website,CA,5,2017-05-31,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Useful and entertaining,Stop asking me to rate stuff I clearly use a lot,US,5,2017-05-31,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Reddit,It's Reddit,GB,5,2017-05-31,96,480.0,"(95.0, 100.0]","(475.0, 500.0]" +"Organized, based on minemalism.","This app works pretty well! +However linking stuff is still a bother.",NO,4,2017-05-31,31,155.0,"(30.0, 35.0]","(150.0, 175.0]" +Great.,I like to reddit on the toilet.,AU,5,2017-05-31,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Love it,It's gotten really streamlined and easy to use. Lovin it!,US,5,2017-05-31,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Incompetent Devs,"Keep changing the functionality after users get used to it. They have no idea how to keep features implemented properly. Stop changing how to navigate through the app. + +This app keeps taking one step forward, and two back.",US,1,2017-05-31,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +Bra,Bra bra,SE,5,2017-05-31,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Very useful,Reddit is definitely one of the better forums,IE,5,2017-05-31,37,185.0,"(35.0, 40.0]","(175.0, 200.0]" +Is Gucci,It has its ups and downs but it's all good,US,5,2017-05-31,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +Great,"Everything is functional, no complaints.",US,4,2017-05-31,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great app,"Interesting , funny , great pass time...",GB,5,2017-05-31,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Beyond helpful,"I have a '97 Tj and without Reddit, my Jeep would still be sitting in the same spot in the driveway a year later. My aquariums have never been more healthy because of the people of r/aquariums. If you need help with anything, Reddit is the place to go.",US,5,2017-05-31,33,165.0,"(30.0, 35.0]","(150.0, 175.0]" +Lacks satisfactory Markdown support.,"Still does not have a fully functional Markdown parser. I'd prefer functional Markdown over sporadic UI changes, personally.",US,4,2017-05-31,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Stop nagging,"I don't want notifications turned on. I don't need to be continually asked ""do you like Reddit?"" STOP!",US,1,2017-05-31,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Easily the best Reddit app,Does everything I need it to do,US,5,2017-05-31,53,106.0,"(50.0, 55.0]","(100.0, 125.0]" +Good meme,It's a good app,US,5,2017-05-31,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Great app,Would be 5 stars if you could flair a post you've created which of course is still missing from the app.,GB,4,2017-05-31,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +Yes,We needed a barrier between the members and The Normies This is the perfect solution to that tnx you reddit for everything you have done,US,5,2017-05-31,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Not fake news,Well some but upvotes weed it out for the most part,US,5,2017-05-31,92,368.0,"(90.0, 95.0]","(350.0, 375.0]" +ez memes ex life,いいぞこれ👻,JP,5,2017-05-31,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Amazing,"I just getting the review thing to stop bugging me, really a great app tho",US,5,2017-05-31,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +Good stuff,"Not going to lie, I spend WAY too much time on this app.",US,5,2017-05-31,98,392.0,"(95.0, 100.0]","(375.0, 400.0]" +Great!,Could be even better!,NO,4,2017-05-31,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Cesspool.,90% trash.,US,1,2017-05-31,78,312.0,"(75.0, 80.0]","(300.0, 325.0]" +Reddit awesome App ehh,"Reddit has completely changed how I enjoy internet content over the past few months. I don't even have the Facebook app on my phone anymore. But the Reddit app itself does have some bugs, but I've never ran into any catastrophic issues myself.",US,4,2017-05-31,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Quality app - Night mode is a godsend,"Quality app, fast and no issues in several months of daily usage",GB,5,2017-05-31,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Suedekitty,So much good!,AU,4,2017-05-31,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +A great replacement to Alienblue,"With mild annoyances and odd graphical quirks, the official Reddit app leads by example of how social media and forum apps should be handled.",US,4,2017-05-31,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Doesn't allow me to turn down settings to use less bandwidth in low coverage areas.,"The absolute worst thing about this app is that it auto-plays gifs when loaded. I seriously get motion sickness from scrolling down while a moving gif comes into view with contrary motion. + +Secondly I can watch my battery tick down from all the open gifs and large pics loading when I'm in a poor coverage area. + +Thirdly reddit won't load at all when the Internet coverage is *really* poor. Please pay for senior engineers to tighten up your code, please! + +No I can't find any settings to turn auto-gifs off.",AU,2,2017-05-31,4,16.0,"(-0.1, 5.0]","(-0.5, 25.0]" +New version broke,As of 5/31/17 the app crashes when opened,US,1,2017-05-31,22,110.0,"(20.0, 25.0]","(100.0, 125.0]" +Great app,"Way better than the online site, at least on a smartphone. Easy to use, easy to filter, very nice.",DE,5,2017-05-31,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Pretty good,The app is less reliable than the mobile site though,US,3,2017-05-31,31,93.0,"(30.0, 35.0]","(75.0, 100.0]" +Love the design!,"the design is great, app is so smooth.",US,5,2017-05-31,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +10/10,10/10,TR,5,2017-05-31,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +Pesters for feedback and to enable notifications,"The feedback one seems to be less frequent, but the notification request seems to be every update. It's annoying, if I say no, why would I want to repeat myself every few weeks? If I changed my mind I can find the options thanks.",US,1,2017-05-31,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great app,Great,US,5,2017-05-31,96,192.0,"(95.0, 100.0]","(175.0, 200.0]" +Can't live without it.,Title.,SI,5,2017-05-31,15,15.0,"(10.0, 15.0]","(-0.5, 25.0]" +pretty good,pretty good,GB,5,2017-05-31,82,164.0,"(80.0, 85.0]","(150.0, 175.0]" +Works great!,"Never had an issue apart from an occasional freeze. Layout is excellent and easy to navigate, it's exactly what you'd expect from a mobile Reddit.",CH,5,2017-05-31,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Full access to share?,"After the recent update, sharing anything locally now requires full access to the users camera roll?! Why? Never seemed to be an issue in the past, why is it now a requirement? + +Still requires access to photos and videos to share an image with the latest update.",US,1,2017-05-31,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Pretty Good,"All I need, easy to use and in my opinion better than alien blue.",GB,4,2017-05-31,63,126.0,"(60.0, 65.0]","(125.0, 150.0]" +Awesome,Honestly I just enjoy the themes so much. More themes please!,MY,4,2017-05-31,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +good,good,CA,3,2017-05-31,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Nice app,"But I have to say that I preferred the old navigation bar with the ""Post button"" at the center, it was way more cool than today's 3.0 release. +Also, since some updates I notice that there're some lags while scrolling through discussions (iPhone 5 here) which I never had on previous versions. +Further, why not make the navigation bar disappear when scrolling to the bottom and make it appear again while going to the top? Coupled with the old bar would make a really cool and usable UI.",IT,4,2017-05-31,9,27.0,"(5.0, 10.0]","(25.0, 50.0]" +"So far, so good 😊",There aren't any problems in the app worth mentioning. The app's layout is very clean and easy to navigate through.,US,5,2017-05-31,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Great app,❤️,ID,5,2017-05-31,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Way too much time,I spend way too much time on Reddit and refer to it in conversations every single day as a source and topic of discussion hahah.,US,5,2017-05-31,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Good,7/10 with rice,AU,5,2017-05-31,19,76.0,"(15.0, 20.0]","(75.0, 100.0]" +.,This app is so boring I want to kill myself. 5 stars!,CA,5,2017-05-31,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +The best Social Media Platform,"Good source of information if you want to hear about personal experiences, attribute to communities or simply rant. It's all welcome as long as your not an idiot.",US,5,2017-05-31,76,304.0,"(75.0, 80.0]","(300.0, 325.0]" +New notifications tab is awful,"The old notifications tab was amazing. It sorted messages, comments, and post replies separately. The new tab sorts them all into one cluttered list. Include an option to go back to the old way of organizing notifications and I would change my rating.",US,1,2017-05-31,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Good,Good,US,5,2017-05-31,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +"Thank you, Reddit.",And thank you for this amazing app. Keep doing your thing. 👍,US,5,2017-05-31,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +Great,Perfect,US,5,2017-05-31,76,152.0,"(75.0, 80.0]","(150.0, 175.0]" +Love it,Great app recommend it you can find anything you are interested in,AU,5,2017-05-31,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Great app,Especially appreciate the automatic night time mode and nice to see constant updates for features/bug fixes/stability improvements.,CA,5,2017-05-31,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +!,:D !!,US,4,2017-05-31,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +Ads,Ads.. just so many.,CA,1,2017-05-31,95,475.0,"(90.0, 95.0]","(450.0, 475.0]" +Love new update,Love reddit and this app,US,5,2017-05-31,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +A very well Made App,"Thanks to the Reddit app devs ,the new update fixes a lot of the smaller issues with the app.I love it + +A Potrait Mode for the 6 Plus would have been great",US,5,2017-05-31,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +Good,Great app,DO,5,2017-05-31,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Great reddit app!,My favorite reddit app so far. Easy to navigate and fast menus!,US,5,2017-05-31,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Gud,Very gud,US,5,2017-05-31,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +New favourite app,best app new favourite for me,CA,5,2017-05-31,72,360.0,"(70.0, 75.0]","(350.0, 375.0]" +Great stuff,Love it.,US,5,2017-05-31,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Wonderful,"This app really suits everything that reddit stands for, I personally believe that it is user friendly and very supportive and easy to use. + +I find myself lost in the updated day to day feed that the homepage of Reddit provides, there is an infinite amount of possibilities in this app you just have to find them. + +Once you step into the foot hold of Reddit you can adventure to any land you wish, there is a community for everything no matter how vulgar or innocent, no matter your culture or background there is a place for discussion in this app. + +I personally suggest that every user with access to the internet download this app, it is really brilliant and I feel like most other Reddit users can agree with me on that. + +in conclusion, I feel like this app is for all people with a need and drive to find conversation and discussion in people and for anyone who has an expansive mind frame and always wants to learn and see new and interesting things in the world.",US,5,2017-05-31,82,164.0,"(80.0, 85.0]","(150.0, 175.0]" +Awesome,Just awesome,US,5,2017-05-31,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +"Not as good as many of the android apps, but pretty dang good",Alien blue has come a long way.,US,4,2017-05-31,62,62.0,"(60.0, 65.0]","(50.0, 75.0]" +Reddit,"Nice App, which is wasn't so anti-right tho.",US,5,2017-05-31,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Great,Awesome,US,5,2017-05-31,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +I use it almost everyday!,The app is great for just passing the time and looking at your favorite sub Reddits with ease. I definitely recommend this if you are a regular reddit user.,US,5,2017-05-31,26,130.0,"(25.0, 30.0]","(125.0, 150.0]" +Ads every 9 posts,It seems like the frequency of ads is increasing. Or there's an ad every 10th post on the front page. It's pretty excessive imo,US,1,2017-05-31,59,59.0,"(55.0, 60.0]","(50.0, 75.0]" +Upload gifs,I would like to be able to upload videos and gifs using the app to different subs,US,2,2017-05-31,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +"Great app, needs some improvements.",I love Reddit.,US,5,2017-05-31,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Great app,This app takes Reddit to a whole new level great work!,US,5,2017-05-31,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Love it!,I love everything about Reddit 1 time waster other than me,US,5,2017-05-31,14,28.0,"(10.0, 15.0]","(25.0, 50.0]" +Great,"Great app, easy access and decent features. Would recommend",US,5,2017-05-31,53,53.0,"(50.0, 55.0]","(50.0, 75.0]" +Getting there...,"Massive improvement overall. I've switched back to using this app over the third party apps. I would still like to be able to sort my front page by new instead of top without having to toggle it manually every time I open the app. I'm able to set comments to sort this way, why not the posts themselves?",US,4,2017-05-31,34,170.0,"(30.0, 35.0]","(150.0, 175.0]" +Cool,Super great,US,5,2017-05-31,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +The app,Love the app saves a lot of time in going between Reddit pages.,US,5,2017-05-31,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +Ugh,I love reddit but hate giving reviews. I'm only doing it now so that reddit will stop asking me.,AU,5,2017-05-31,47,235.0,"(45.0, 50.0]","(225.0, 250.0]" +Solid App,"It's good, and I'm hoping rating it stops the occasional please rate me app pop up.",US,4,2017-05-31,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Good app and getting better,"Used AlienBlue for a long time, and initially this app was inferior. However, consistent updates have made this a great app for everything one would need when using Reddit. I expect it to continue to excel at what it does and only get better.",US,5,2017-05-31,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Still no fix for gfycat previews,"It's been months and there still hasn't been a fix for this after it was broken several versions ago. I emailed the developers a long time, they acknowledged it, and yet it's not fixed. This makes many subreddits unbearable to use because most of the posts are gfycat gifs. Please fix this",US,2,2017-05-31,65,260.0,"(60.0, 65.0]","(250.0, 275.0]" +Go back,"I just updated to the new version, and already don't like it. Put the notification tab back the way it was",US,3,2017-05-31,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +Good client,"Good client, not great. I've voiced my thoughts on the official sub that I think could be improved.",US,4,2017-05-31,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +Great overall,Great app. Fast and never crashes. Search application is my only complaint.,US,4,2017-05-31,49,196.0,"(45.0, 50.0]","(175.0, 200.0]" +fk off,only installed this trash bc they have a pop up everytime i open reddit,US,1,2017-05-31,89,356.0,"(85.0, 90.0]","(350.0, 375.0]" +Translate to portuguese?,Translate to portuguese?,BR,4,2017-05-31,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +Great for news and entertainment,Reddit is a wonderful rabbit hole in the internet world. I enjoy it for both news and amusement.,US,5,2017-05-31,42,126.0,"(40.0, 45.0]","(125.0, 150.0]" +Leave me alone,This is your review now go away!,US,4,2017-05-31,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +So refreshing,"I quit FB and started using Reddit. I could not be more pleased. I no longer get annoyed with idiots because it's all relatively anonymous and half the time people are being facetious. Plus, no dumb tasty videos.",US,5,2017-05-31,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Great!,Top notch!,US,5,2017-05-31,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Regular,"Pues si, la App se ve menos encimada ahora pero era realmente necesario quitar el soporte para iOS 8?",MX,2,2017-05-31,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Search Functionality is Terrible!!,"Reddit's search functionality is terrible. Specifically when you wish to search with in a post for relevant content. Until the functionality exists, I'll stick with Safari.",US,1,2017-05-31,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +Love the app,I really enjoy the app so gud for attractiv thing,FR,5,2017-05-31,53,159.0,"(50.0, 55.0]","(150.0, 175.0]" +Love Reddit!!,It's the best!,US,5,2017-05-31,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +It's pretty good.,"Sometimes I feel like I might have enormous thumbs because I hit the wrong button consistently, it seems like some things are smashed together but I'll live. Everything else works pretty well for me.",CA,4,2017-05-31,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Great,Great,US,5,2017-05-31,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Another Alien Blue expatiate coming 'round,"Edit 4/18/2017 - background music keeps pausing when I open the app. Super annoying. + +Like many I was dismayed initially with this app, after using Alien Blue for years. It did not take long to come around to this, the official app, however. Gone are Alien Blue's difficult diagonal controls and inefficient pull-to-preview gimmick. The official app is fast (albeit a little crashy) and has the look and feel of a modern app. I'm confident this honeymoon period will end when Conde Nast starts to push monetization, but for now the app works well enough and looks good doing so. + +Edit: less crashy now + +Edit: good communication from devs. App generally gets better, but leaves some head scratchers too. Why can't subreddits be dynamically selected for compact view? + +Edit again: finally nailed it. 5 stars. + +Edit again: still 5 stars.",US,5,2017-05-31,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Solid,Does what it says it does. This is reddit not some sort of feels clubs. Shut up and read about jolly ranchers.,US,4,2017-05-31,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +"Great, but...","This app is great, and would replace Alien Blue for me, if it included one thing: the ability to swipe to minimise a comment chain in-thread, like Alien Blue does. I didn't realise how useful (and indeed integral) that simple gesture was until I wasn't able to do it. It sure beats scrolling through loads of child comments you don't care about to get to the next parent comment. Please include this!",GB,3,2017-05-31,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Use it every day!,Entertaining and learn something new every day!,US,5,2017-05-31,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Beat app ever.,Reddit is the best app I've ever downloaded,US,5,2017-05-31,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +please add 3d touch to preview posts,plsss!!!! also nice release,EG,4,2017-05-31,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Love,Endlessly entertained.,US,5,2017-05-31,42,42.0,"(40.0, 45.0]","(25.0, 50.0]" +Great,Absolutely great for myself as a gamer and many other characters:),GB,5,2017-05-31,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Notifications notification.,STOP ASKING ME TO ENABLE NOTIFICATIONS EVERY TIME YOU UPDATE,US,1,2017-05-31,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +Fun,Great time. Love it,US,4,2017-05-30,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Great but..,U should add a shortcut to share the link and the title. Its easier and faster,US,4,2017-05-30,59,295.0,"(55.0, 60.0]","(275.0, 300.0]" +Amazing,I love it!,US,5,2017-05-30,21,21.0,"(20.0, 25.0]","(-0.5, 25.0]" +It's reddit,Move along,US,5,2017-05-30,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Please fix scroll lag,"Scrolling can be a bit laggy. The new post button was better suited in the navigation bar, in my opinion",US,5,2017-05-30,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Diccs,Diccs in,US,5,2017-05-30,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +Needs ACTUAL iPad Support,"iPad version is just a stretched out iPhone app, and it feels cheap. It leaves plenty of wasted space, and I don't need to see each post as 6x6 inches, the iPad screen has plenty of real estate and deserves a unique design that doesn't waste as much as of the screen as this app does. 2 stars because it 'works,' but that's all it does. Will stick to Narwhal for now",US,2,2017-05-30,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Share button does not work,"So, the share button is broken on this new version. + +Update: the share button still does not work.",US,1,2017-05-30,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Swipe left to collapse please,"This update is crazy. If I open a subreddit on my 7 plus, only 50% of the screen is displaying content from the subreddit. The other half is the bottom bar (un-hidable), the top bar, the filtering, and now the add new post. On alien blue I can open a subreddit and have 95% of the screen dedicated to the subreddit, only having a small search bar at the top. + +I rarely post and now more space is wasted by a post bar",US,1,2017-05-30,63,252.0,"(60.0, 65.0]","(250.0, 275.0]" +Great app,I use it daily And would reccomend!,SI,5,2017-05-30,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +"Interesting, entertaining and funny!",Great!,US,4,2017-05-30,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Perfect,Much better than on PC to me.,US,5,2017-05-30,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +New version doesn't work,Broken as of 5/30,US,1,2017-05-30,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Nice app,"Works smoothly, easy to use",HU,5,2017-05-30,97,485.0,"(95.0, 100.0]","(475.0, 500.0]" +Great app,Great app,US,5,2017-05-30,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Gooood,Good app really enjoying it. No bugs yet :D,AU,5,2017-05-30,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Good memes,The app is gr8,CA,5,2017-05-30,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +It is what you expect it to be.,No surprises,US,5,2017-05-30,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +amazing app,"This app has a community for everything, if you're interested in something there's a subreddit for it",HR,5,2017-05-30,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Great,👍🏻,CH,5,2017-05-30,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Great way to browse Reddit,Much better than the mobile webpage. Using the app makes browsing Reddit on the go very easy,GB,5,2017-05-30,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +For Reddit,I hope you guys enjoy Reddit like I do kakaka .,VN,5,2017-05-30,5,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Really great!,No complaints,US,5,2017-05-30,74,74.0,"(70.0, 75.0]","(50.0, 75.0]" +Loveeee,I love this app so much. Makes going on Reddit so much easier,US,5,2017-05-30,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +reddit is tight,just writing this so the app will stop asking me to review tho,US,5,2017-05-30,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Snoop dog,Smokes weed,US,5,2017-05-30,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +OK 👌,Good 😊 app. Easy to use 👍,GB,5,2017-05-30,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +It's Reddit. As you would expect.,Stable. Works well.,GB,5,2017-05-30,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Just need this annoying rating question to stop,Never will be as good as Alien Blue,US,4,2017-05-30,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Such,Such awesome Such use,DK,5,2017-05-30,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +Improving,Great app...improving well,US,5,2017-05-30,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Best,Best app,HK,5,2017-05-30,88,440.0,"(85.0, 90.0]","(425.0, 450.0]" +Almost perfect,"Works great, just wish that the iPad version showed threads full screen when in landscape orientation, rather than using only 1/3 of the screen.",US,4,2017-05-30,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Love it,"Love it, I think it could be better, cleaner.",ZA,4,2017-05-30,31,124.0,"(30.0, 35.0]","(100.0, 125.0]" +Snygg o funktionell,Inget att klaga på.,SE,5,2017-05-30,65,325.0,"(60.0, 65.0]","(300.0, 325.0]" +I enjoy Reddit and learn a lot on it,I enjoy Reddit and learn a lot on it,US,5,2017-05-30,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Suggestion,Could you make it possible to add flair after posting? literally my only problem,CA,4,2017-05-30,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +"Neat little communities, prefer app over website","What an awesome little social app for getting to know people not only in your community, but from around the world. definitely a good way to share common interest and even figure out new ones.",US,5,2017-05-30,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Time to share life,"This is kewl. I am 61yo and copied my 24yo son, probably to satisfy my curiosity about what he reads instead of the imbicile newspapers. + +I like Reddit, often!",AU,5,2017-05-30,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Reddit great. Reddit app ok.,Reddit = great. Reddit app = ok. I was use to alien blue. Hopefully I come back around on this one because I only use Reddit on mobile.,CA,3,2017-05-30,72,72.0,"(70.0, 75.0]","(50.0, 75.0]" +Great app!,Lots of fun and works as intended!,US,5,2017-05-30,22,110.0,"(20.0, 25.0]","(100.0, 125.0]" +Brilliant,"Superb app, fast and nice. Love it.",CA,5,2017-05-30,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Dope,It's dope,US,5,2017-05-30,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Pretty good,Hey this is pretty good,AU,5,2017-05-30,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +Well done,Great,FR,5,2017-05-30,84,168.0,"(80.0, 85.0]","(150.0, 175.0]" +学英语的动力!,以前说是学英语为了了解全世界,现在学英语是为了了解中国🇨🇳!,CN,5,2017-05-30,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +A+,A+,SE,5,2017-05-30,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +love it,finally the app comes,CN,5,2017-05-30,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Great app!,Great app,CN,5,2017-05-30,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +This app will consume your life,You've been warned,US,5,2017-05-30,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +perfect,:),MY,5,2017-05-30,88,88.0,"(85.0, 90.0]","(75.0, 100.0]" +Great,My only place to get good memes!,AU,5,2017-05-30,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Easy to use and customisable,Love the dark reader option. No complaints about this app. It even runs quickly on my slow iPhone 4,GB,5,2017-05-30,64,128.0,"(60.0, 65.0]","(125.0, 150.0]" +It's Reddit,Great app.,US,5,2017-05-30,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Love reddit! Definitely,It is great.,MX,5,2017-05-30,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Reddit warriors unite!,R/Balisong,US,5,2017-05-30,21,42.0,"(20.0, 25.0]","(25.0, 50.0]" +Worth it,A great insight into the human condition and so much more,US,5,2017-05-30,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Kann nicht klagen,Reddit ist einfach geil und die App wirklich gut gemacht. 5*,DE,5,2017-05-30,8,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Slide Over Multitasking View Broken,The app is pretty good overall except the multitasking Slide Over feature on iPad doesn't resize content properly or at all it seems.,US,3,2017-05-30,22,44.0,"(20.0, 25.0]","(25.0, 50.0]" +It's great,Yeah it's pretty good,US,5,2017-05-30,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Eggcelente!,Great experience.,US,5,2017-05-30,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Fabulous,Love it😉❤️❤️,CA,5,2017-05-30,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Love it,I use it almost every day,US,5,2017-05-30,54,216.0,"(50.0, 55.0]","(200.0, 225.0]" +I like Reddit,Rated to make it stop asking me.,US,5,2017-05-30,100,100.0,"(95.0, 100.0]","(75.0, 100.0]" +Great app,Amazing app easy to use,US,5,2017-05-30,86,172.0,"(85.0, 90.0]","(150.0, 175.0]" +I read all the other reviews,And now you saw mine and reddit,US,4,2017-05-30,45,45.0,"(40.0, 45.0]","(25.0, 50.0]" +Super Sweet,Awesome app! Great interface and intuitive navigation.,CA,5,2017-05-30,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Cool community for the most part,"There are bowels, but mostly good discussion and food for thought and news",US,5,2017-05-30,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Great app,Makes Reddit easy to navigate on mobile,US,5,2017-05-29,64,128.0,"(60.0, 65.0]","(125.0, 150.0]" +Bringing Reddit to my phone in style,Works well. Loads pretty fast. Great for Reddit on the go,US,5,2017-05-29,10,40.0,"(5.0, 10.0]","(25.0, 50.0]" +Quoi dire,La base rien d'autre,FR,5,2017-05-29,66,330.0,"(65.0, 70.0]","(325.0, 350.0]" +Yay!,5 stars,GB,5,2017-05-29,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Reddit All Day,Love the Reddit app. 10/10 would download again.,US,5,2017-05-29,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Font colour,"In night theme, the font colour is black on black background when you hit the image options to share/save for example",CA,1,2017-05-29,63,315.0,"(60.0, 65.0]","(300.0, 325.0]" +Too pretentious for its own good,"Ex-baconreader veteran here, have been trying several times to use this app, and I just can't do it. It's awful. + +First, it seems as if the developers have favoured looks over features, took me about a decade to find my subreddit subscriptions. Things are hard to find, too small or just not there + +I like browsing the 'rising' tab, and thus far, I can't seem to be able to find it - if it's there they need to make it easier to see + +To give credit where credits due, I like how I can view the subreddit rules while creating my post, this isn't in most of the other Reddit apps. + +I know I'm being picky but if you want an authentic Reddit experience use baconreader.",GB,2,2017-05-29,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Love it!,Connecting the world to the world.,US,5,2017-05-29,4,16.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Finally an alternative,To Alien Blue.,DK,4,2017-05-29,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +App is good,Better than the website for mobile users,US,5,2017-05-29,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +very,good,NO,5,2017-05-29,30,60.0,"(25.0, 30.0]","(50.0, 75.0]" +Hi,I continually get asked to rate so here.,CA,4,2017-05-29,83,332.0,"(80.0, 85.0]","(325.0, 350.0]" +Like it,I just started it and it's a cool good app,US,5,2017-05-29,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Still amazing,I used to use Reddit everyday for hours from like 2010 to like 2015 but I took a years break at about September 2015 but in January I decided to make a new account and it's amazing. I would highly recommend downloading this app. And using it for hours everyday.,US,5,2017-05-29,75,375.0,"(70.0, 75.0]","(350.0, 375.0]" +Great fun,Easy to use,GB,5,2017-05-29,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Cool to have the answer to a specific question,S,US,5,2017-05-29,71,284.0,"(70.0, 75.0]","(275.0, 300.0]" +Yes,Yes. Yes.,US,5,2017-05-29,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great to look through and find unusual things,A great pass time,AU,5,2017-05-29,95,380.0,"(90.0, 95.0]","(375.0, 400.0]" +Yay,"Yaaaaay +101",US,5,2017-05-29,8,40.0,"(5.0, 10.0]","(25.0, 50.0]" +great app! enjoying a lot!,!!!,BY,5,2017-05-29,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +Good app,Literally writing this because the app told me to. But this is a great way to browse Reddit on the go,US,5,2017-05-29,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Good App,Good App,US,5,2017-05-29,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Love It,Simple but not bare. My most visited app by far,US,5,2017-05-29,4,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Went from iFunny to Reddit,ADDICTED,US,5,2017-05-29,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Simple,Pretty straight forward for reading posts. Mostly use it for reading post about programming and software. It's a good resource.,US,4,2017-05-29,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Please turn off trending posts push notifications,Thanks for the great app.,US,5,2017-05-29,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +Love it,I'm never not on Reddit,US,5,2017-05-29,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +"The world, topic by topic","While I haven't done too much exploring yet, there is a comprehensive list of sub-Reddits where you can find just about anything",US,5,2017-05-29,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Red....it,Love it,US,5,2017-05-29,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Wouldn't change a thing,"Works perfectly, smoothly, seamlessly",US,5,2017-05-29,94,470.0,"(90.0, 95.0]","(450.0, 475.0]" +Reddit Rocks!,Knowledge is power!,US,5,2017-05-29,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Alien blue was better.,This is ok.,US,3,2017-05-29,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +A++ baby,You know why,US,5,2017-05-29,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Great thanks!,Everything works well,RU,5,2017-05-29,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Way easier than baconreader.....,In my opinion.,US,4,2017-05-29,23,115.0,"(20.0, 25.0]","(100.0, 125.0]" +Good,I like reading Reddit,US,5,2017-05-29,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Very enjoyable application,"Reddit supplies all users with a high variety in topics including sport, gaming and landscape pictures just to name a few.",GB,4,2017-05-29,7,35.0,"(5.0, 10.0]","(25.0, 50.0]" +Good,Works great,US,5,2017-05-29,94,470.0,"(90.0, 95.0]","(450.0, 475.0]" +Reddit my dood,"Cools memes, my dood",US,5,2017-05-29,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +It's easy to use and it's super entertaining,Look at the title,US,5,2017-05-29,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Best app,Great app makes the browsing much easier,IL,5,2017-05-29,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Good,Smooth app,US,5,2017-05-29,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Awesome app.,Love it. Love it. Love it.,US,5,2017-05-29,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +Very nice,"Really nice app, but still getting used to it from Allen Blue",US,5,2017-05-29,41,123.0,"(40.0, 45.0]","(100.0, 125.0]" +Getting better and better,Please continue to update and add more cool features and maintain stability! Great app! Probably my most used third party app!,GB,5,2017-05-29,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +5,5,RU,5,2017-05-29,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Good app,"Haven't run into any problems. Great for browsing reddit on the go (Or you know, being lazy and staying in bed, whatever fits your bill.)",CA,5,2017-05-29,84,84.0,"(80.0, 85.0]","(75.0, 100.0]" +Best thing,Best thing since sliced bread!!!,GB,5,2017-05-29,52,208.0,"(50.0, 55.0]","(200.0, 225.0]" +Good for browsing,I like that I can switch between personal and throw away accounts very easily.,US,5,2017-05-29,9,36.0,"(5.0, 10.0]","(25.0, 50.0]" +Love it,"Reddit is realy realy good. It wold only get better if you let us add profile photos... +LOVE IT",PT,5,2017-05-29,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Getting better,"I'm updating my review because they've made updates---now 3 stars. They still need to provide some of the customization that was in Alien Blue. Also, why can't I switch to landscape mode? Small things like this could make this app great. Keep up the good work!",US,3,2017-05-29,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Awesome app,"There are small things about it I find annoying, but the entire app itself is pretty user friendly, and a good way to browse reddit on the go while avoiding eye contact with strangers in public places.",US,4,2017-05-29,41,205.0,"(40.0, 45.0]","(200.0, 225.0]" +Great app!,I use it all the time,JO,5,2017-05-29,26,52.0,"(25.0, 30.0]","(50.0, 75.0]" +Great app,Love Reddit and the app is really good,GB,5,2017-05-29,14,56.0,"(10.0, 15.0]","(50.0, 75.0]" +"Simple, utile, convivial, l'appli à posséder","Je ne connaissais pas Reddit il y a encore quelques mois (et oui, c'est possible). Aujourd'hui, il ne se passe pas un jour sans que je m'y rende. Des infos, des thématiques, tout est simple et accessible. Je ne m'en passe plus maintenant.",FR,4,2017-05-29,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Love it,"It's a great app with tons of features such as reddit sections,they also have many news topics and stuff that fits you",US,5,2017-05-29,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Good app,They said I can leave it blank but I can't.,HK,5,2017-05-29,39,195.0,"(35.0, 40.0]","(175.0, 200.0]" +Reddit is awesome,I sometimes enjoy using the app more than on the laptop,CA,5,2017-05-29,33,165.0,"(30.0, 35.0]","(150.0, 175.0]" +Totally Awesome,Download this app ASAP if you are addicted to Reddit like the rest of the world.,US,5,2017-05-29,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +"Just want the ""rate me"" notifications to stop","More or less getting used to this app before AB becomes unusable. I still like Narwhal a bit because it ""feels"" similar to AB, but can't ignore that the official client is free.",US,3,2017-05-29,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Loving Reddit Now,"Reddit is a lot of fun. Just take it as that--fun. But at first, anytime I tried to write a conservative view I was pretty much pummeled. Then I learned to pick the different groups to b in and then it was a blast. Also finding the groups that just post hilarious stuff or gorgeous pictures are absolute mood boosters. You can also do some good in this world by encouraging people who need an uplifting word.",US,5,2017-05-29,51,204.0,"(50.0, 55.0]","(200.0, 225.0]" +Cool,I like Reddit & I think the app is just fine,US,5,2017-05-29,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +As expected,"Simple,fast,just as it should be.",ID,5,2017-05-29,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +sure whatever,it's great,US,5,2017-05-29,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +One thing to suggest,"When I save posts, i don't want to have to look back through my saved stuff to find my funny stuff, or my scary stuff, or whatever. I think that there should be folders to put it in, allowing to sort through saved posts",US,4,2017-05-29,35,35.0,"(30.0, 35.0]","(25.0, 50.0]" +CNN,BBB,US,5,2017-05-29,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Good. Could be better.,"Great content +Requires a better user interface +Could be more visual +Have an offline mode",US,4,2017-05-29,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,Use it a lot.,US,5,2017-05-29,40,160.0,"(35.0, 40.0]","(150.0, 175.0]" +Great improvements,Easier to use than on safari. Still some fuctionality problems,US,4,2017-05-29,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Tacos,Needs more taco.,US,5,2017-05-29,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +Excellent,Yes yes yes yes yes yes yes,US,5,2017-05-29,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +Excellent app!!,Good way to pass the time while on public transport and stuck in traffic! I've learnt some interesting things from Reddit!,AU,4,2017-05-29,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Good enough for my needs.,I just like wasting time.,US,5,2017-05-29,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +As expected,The reddit we know and love !!,CA,4,2017-05-29,3,15.0,"(-0.1, 5.0]","(-0.5, 25.0]" +What did you expect,It's Reddit... on your phone,US,5,2017-05-29,32,32.0,"(30.0, 35.0]","(25.0, 50.0]" +Danke,I this good but I you I can't seem to reply,US,4,2017-05-29,70,210.0,"(65.0, 70.0]","(200.0, 225.0]" +Neat,10///10,US,5,2017-05-29,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +good app!!!,good app.,US,4,2017-05-29,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +You know why you're* here,It's an app,US,5,2017-05-29,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +free your body and soul here,you deserve it!,CN,5,2017-05-29,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Like going from dial up to high speed.,It's 👍🏼,US,5,2017-05-29,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great app,Great app,US,5,2017-05-29,70,140.0,"(65.0, 70.0]","(125.0, 150.0]" +Missing some key features,Saved posts are still tragically underdeveloped,US,3,2017-05-29,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +They wanted me to rate them,So there,US,1,2017-05-29,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +No complaints,Loving it.,US,5,2017-05-29,60,60.0,"(55.0, 60.0]","(50.0, 75.0]" +Love the ability to see a small snapshot of it all on my homepage,"I count on this app and Reddit to give me a little info I may not have known, stuff I didn't want to know, pics of kittehs and good old fashioned shade throwing and debate.",US,5,2017-05-29,37,37.0,"(35.0, 40.0]","(25.0, 50.0]" +Great app,"Lightweight, ready to use, clean interface and no bugs. Love using it.",CA,5,2017-05-29,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Yup,Love it,CA,4,2017-05-29,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +"Don't do it! Once you sign up, you're stuck forever!","Don't sign up, honestly, once you sign up to reddit, you'll be a redditor forever! I've been a member for 8 years, it just keeps drawing you back in... between the cats, hilarious posts, newest memes and p*rn you'll never forget, or want to leave...",AU,5,2017-05-29,20,100.0,"(15.0, 20.0]","(75.0, 100.0]" +I love it,So good.,US,5,2017-05-29,76,228.0,"(75.0, 80.0]","(225.0, 250.0]" +Nice app,It aight I guess. Only doing this so it doesn't pop up again. Aight deuces,US,5,2017-05-29,80,320.0,"(75.0, 80.0]","(300.0, 325.0]" +Good,Wish I could subscribe to subreddits and be alerted by push when a new thread is made in that subreddit,CA,4,2017-05-28,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Shreddit,I'm a Shredditor.,US,5,2017-05-28,6,6.0,"(5.0, 10.0]","(-0.5, 25.0]" +Awesome,Great,US,5,2017-05-28,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Pretty good,Would love to see a way to check on subscriptions,US,5,2017-05-28,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +E🅱️ic,Thank,US,5,2017-05-28,46,92.0,"(45.0, 50.0]","(75.0, 100.0]" +Perfect Reddit Client,Been using this for a while now. It's my go to app for using Reddit on my iPhone and iPad. 👌🏽,US,5,2017-05-28,97,291.0,"(95.0, 100.0]","(275.0, 300.0]" +Great,Keeps me informed and entertained,NO,5,2017-05-28,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +Love it,I've been watching captainsparkles do the reddit sections on YouTube and I wanted to get Reddit and today I got it and it's awesome,US,5,2017-05-28,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +Many wows,Many wows,NO,5,2017-05-28,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +Beautiful app!,Started using Reddit more frequently because of it for which I'm so grateful! I'm enjoying it :),IN,5,2017-05-28,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Great app,Great app...love Reddit!,US,5,2017-05-28,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +Humor,I really love reddit! All the people on there has a really great and mature sense of humor. Its wonderful! Always great if im bored!,DK,5,2017-05-28,85,425.0,"(80.0, 85.0]","(400.0, 425.0]" +Great!,All my meme college classes are here!,US,5,2017-05-28,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Splendid Reddit,Great and mobile friendly app,UA,5,2017-05-28,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +It's lit,"Could be better, could be worse",US,5,2017-05-28,7,28.0,"(5.0, 10.0]","(25.0, 50.0]" +Great app for killing time,Love this when I've got a few minutes that need filling.,GB,5,2017-05-28,64,192.0,"(60.0, 65.0]","(175.0, 200.0]" +Love this app!,"Honestly, I love the app more than the site! Lol great app, works well, and no problems whatsoever! 👌🏽👍🏽😊",CA,5,2017-05-28,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Reddit is life.,End of story.,US,5,2017-05-28,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Good,This is a good app. I only get news from Reddit. All other sources are fake news. Sad.,US,5,2017-05-28,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Awesome,It is Reddit! Enough said!,HR,5,2017-05-28,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Brand new,"I am new to this as of yesterday, but seems to be a brilliant idea and so far has been easy to use.",US,5,2017-05-28,59,177.0,"(55.0, 60.0]","(175.0, 200.0]" +Perfect!,App works well,US,5,2017-05-28,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Supoyb,.,GB,5,2017-05-28,29,87.0,"(25.0, 30.0]","(75.0, 100.0]" +Amazing,Woop!,GB,5,2017-05-28,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's awesome,Love it!,US,5,2017-05-28,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Great & useful app!,Very useful!,AT,5,2017-05-28,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +Much easier to use than the actual site.,...,CA,5,2017-05-28,68,272.0,"(65.0, 70.0]","(250.0, 275.0]" +is good,is good,US,5,2017-05-28,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +Love IT!!!,"Awesome appp, never crashes.",US,5,2017-05-28,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Perfect,:),CA,5,2017-05-28,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Best Reddit client out there,I'm not a reddit power user so I can't say if it has all the awesome features that power users want... but I spend hours on this app and I love it.,US,5,2017-05-28,98,196.0,"(95.0, 100.0]","(175.0, 200.0]" +How can I not love this essential app for life??,"Read the title. It's essential for living. Base your life off the jokes on Reddit and you'll soon be happy, wealthy, and wise.",US,5,2017-05-28,84,336.0,"(80.0, 85.0]","(325.0, 350.0]" +Love it,"Havent googled to find how much data Reedit collects about me yet, but I love the app and reedit. + +Cant belive I waited so long to install it. + +Edit: Still love it...",SE,5,2017-05-28,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Love Reddit,I started on Reddit a few months ago I can say the app is faster than the mobile site,US,5,2017-05-28,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +So far so good,Easy to navigate.,US,5,2017-05-28,93,93.0,"(90.0, 95.0]","(75.0, 100.0]" +To rabbit,Beautiful!!,CN,5,2017-05-28,89,267.0,"(85.0, 90.0]","(250.0, 275.0]" +Great!,Works well,US,5,2017-05-28,7,21.0,"(5.0, 10.0]","(-0.5, 25.0]" +Almost as good as Alien Blue was,Just need to work out annoying glitches like threads randomly not loading no matter how many times I restart the app!,US,4,2017-05-28,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Facking incredible,I doend all My Time on this website,NL,5,2017-05-28,13,65.0,"(10.0, 15.0]","(50.0, 75.0]" +Love it!,Love the night mode,GR,5,2017-05-28,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Reddit is nice,The beauty of Reddit is that it has something for everyone. Any hobby or interest you might have will have a subreddit devoted to it.,GB,5,2017-05-28,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +Brilliant,Brilliant,GB,5,2017-05-28,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +One of my favorite passtimes,Is truly improved by this app!,NL,5,2017-05-28,99,198.0,"(95.0, 100.0]","(175.0, 200.0]" +excellent app,a cool little app that you can enjoy anytime👍🏻,TR,5,2017-05-28,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Guys... its love,"This place is more supportive than my family, easier to be around than my friends, the best source of news and more educational than school. This is it for me!",AU,5,2017-05-28,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +5,App is getting much better,GB,5,2017-05-28,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +"Love Reddit, app needs work",It's a ward in progress.,US,3,2017-05-28,95,285.0,"(90.0, 95.0]","(275.0, 300.0]" +Reddit is lit,Nice,US,5,2017-05-28,92,92.0,"(90.0, 95.0]","(75.0, 100.0]" +My new favorite app.,"I never even do reviews, I haven't stopped laughing and scrolling yet.",US,5,2017-05-28,54,108.0,"(50.0, 55.0]","(100.0, 125.0]" +Great App!,This app if far superior to safari. Interface is great and the app performs very well.,CA,5,2017-05-28,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Fun,Fun to use,CN,5,2017-05-28,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Love it,I mainly lurk rather than contribute but i honestly love it. I know there are some dark subs but I steer clear.,AU,5,2017-05-28,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Love it,💪🏾,DO,5,2017-05-28,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Good,Hope more and more focus,CN,5,2017-05-28,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Not as much bacon as the PC version.,"Notably fewer narwhals too. + +All kidding aside, it is a great implementation of Reddit for iOS. It takes a moment to get used to, though.",US,5,2017-05-28,39,78.0,"(35.0, 40.0]","(75.0, 100.0]" +So much cool stuff,It is cool no complaints,US,5,2017-05-28,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Great app,Love it!,NZ,5,2017-05-28,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Enjoy it very much,Great app,CA,5,2017-05-28,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +Love it,Use it every day and love it,US,5,2017-05-28,25,75.0,"(20.0, 25.0]","(50.0, 75.0]" +Issue fixed: Leaving the app restarts it,"EDIT: 5/27/17 the issue below is fixed +If you leave the app for a minute and a half and open it again, whatever you were looking at is gone and you're greeted with the front page. The constant restarts break the convenience of the app.",US,4,2017-05-28,74,370.0,"(70.0, 75.0]","(350.0, 375.0]" +Excellent Application!,Very functional. Highly recommended.,US,5,2017-05-28,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Good app,Good community,VN,5,2017-05-28,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Good app!!,I love this app. Not quite alien blue but pretty good.,US,5,2017-05-28,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Reddit allows violent hate groups to terrorize it's users and plan/execute murders,"Reddit has allowed, most prominently, r/the_donald to promote violence against minorities and dissenters. This promotion of bigotry has been ignored by Reddit's moderators.",US,1,2017-05-28,55,220.0,"(50.0, 55.0]","(200.0, 225.0]" +Just videos,No long posts no drama just watching videos! Luv it,US,5,2017-05-28,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Absolutely addicting,So much gameplay and fun in the game,US,5,2017-05-28,21,63.0,"(20.0, 25.0]","(50.0, 75.0]" +Perfect app,👍🏽,NL,5,2017-05-27,39,117.0,"(35.0, 40.0]","(100.0, 125.0]" +Nice app,I like reddit :),US,5,2017-05-27,29,29.0,"(25.0, 30.0]","(25.0, 50.0]" +Love it!,Great app,US,5,2017-05-27,57,285.0,"(55.0, 60.0]","(275.0, 300.0]" +5+,Beautiful,UA,5,2017-05-27,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Great App!,"I love the people on here, very helpful! Would recommend to anyone",US,5,2017-05-27,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +I like this app,Gives good news and it's funny.,CA,5,2017-05-27,92,276.0,"(90.0, 95.0]","(275.0, 300.0]" +Perfect,Would recommend :),BY,5,2017-05-27,50,50.0,"(45.0, 50.0]","(25.0, 50.0]" +Better than alien blue!,👍🏼,DE,5,2017-05-27,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Great!!,Great app 👍🏼,GR,5,2017-05-27,66,330.0,"(65.0, 70.0]","(325.0, 350.0]" +Just right,"Like Redit. Information and conversation that is edgy, topical and fun. Enjoy communicating with others on esoteric topics",US,5,2017-05-27,27,27.0,"(25.0, 30.0]","(25.0, 50.0]" +Good enuf,Cool,US,3,2017-05-27,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Başarılı,"Uygulama sitenin kendisinden daha kullanışlı, ve kolay.",TR,5,2017-05-27,20,20.0,"(15.0, 20.0]","(-0.5, 25.0]" +Warning: Reddit is highly addictive,"This is a PSA to anyone that hasn't started to use Reddit. Reddit is highly addictive and has been known to take hours of your life at a time. Side effects include: loss of productivity, procrastination, loss of job due to less productivity, being late to important events, death due to laughter from memes, increased knowledge about useless facts, new interests in different things from around the world, and increased time in the restroom. + +However, if used properly, you may find that you are more knowledgeable about important subjects such as politics, foreign affairs, and other such subjects that aren't covered by the media. You may also find that you're the first to share the dankest memes on your Facebook, Twitter, and/or Instagram before they become re shared to death by everyone else. + +Please use with caution.",US,5,2017-05-27,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Getting tired of the issues with the iPad version,"If I was writing this from my iPhone I'd be giving the app 5/5 stars, but I'm on my iPad. The iPad version of this app is pretty pitiful and has been for quite a while. The UI doesn't properly scale to fill the iPad's larger screen. The app shouldn't only be using 40% - 50% of the screen real estate directly in the center of the screen with large gaps on both sides. I shouldn't have to reach into the center of the screen to scroll when using my iPad in landscape. The app doesn't work properly in split view at all, half of the UI gets cut off which makes the app unusable. Other than that the App is stable and operates smoothly, I never really have any problems with the app crashing or hanging. But, until the UI scales to properly fill the entire iPad screen and works properly in split view my review will stay at 3/5 stars. I've been waiting patiently for quite a while for these problems to be addressed but clearly adding a gradient to the app's icon is more important. I really love this app (on my iPhone) and know you guys can do better with the iPad version.",US,3,2017-05-27,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +Love it,"The app has such a modern look to it and is easy to navigate, I just wish there was an option to search specific reddit users.",US,4,2017-05-27,35,35.0,"(30.0, 35.0]","(25.0, 50.0]" +Cleanly made app,"Very nice app super easy to use. Also, fk apple's strict censorship. Any subreddits with possible NSFW are just empty because apple cant handle the possibility an adult might see something unsightly.",US,5,2017-05-27,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +...,Just get it,US,5,2017-05-27,88,264.0,"(85.0, 90.0]","(250.0, 275.0]" +Good stuff.,Reddit has some real good stuff.,US,5,2017-05-27,58,58.0,"(55.0, 60.0]","(50.0, 75.0]" +⭐️,Outstandingly strategery!☝️,US,5,2017-05-27,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +Great app. Better than browser experience,Gets better each time,GB,4,2017-05-27,38,114.0,"(35.0, 40.0]","(100.0, 125.0]" +好东东,回国发现不用翻墙也能上reddit,CN,5,2017-05-27,58,232.0,"(55.0, 60.0]","(225.0, 250.0]" +🅱️ice app,Very nice app for Memes,US,5,2017-05-27,58,290.0,"(55.0, 60.0]","(275.0, 300.0]" +Great Forum!,From memes to my dreams I really love Reddit! This is good for just about anything you want to chat about!,US,5,2017-05-27,91,364.0,"(90.0, 95.0]","(350.0, 375.0]" +It's Reddit,This,US,5,2017-05-27,84,420.0,"(80.0, 85.0]","(400.0, 425.0]" +Great app. I have some troubles sometimes though.,Sometimes it will not load some gifs even if I'm on wifi with a good connection. It's weird.,US,4,2017-05-27,27,54.0,"(25.0, 30.0]","(50.0, 75.0]" +Great,Awesome app,US,5,2017-05-27,64,256.0,"(60.0, 65.0]","(250.0, 275.0]" +Great app that works well,"There are very rarely any bugs or crashes, everything works well",DE,5,2017-05-27,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +Parfait,Il ne manque rien. Bravo Reddit ! 👌,FR,5,2017-05-27,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +My favourite app!,"This app is for anyone on the internet, ever.",GB,5,2017-05-27,18,18.0,"(15.0, 20.0]","(-0.5, 25.0]" +Love it. Also mobile app is finally good,Reddit,EG,5,2017-05-27,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +The news feed I want 24/7,I don't even waste my time with corporate news feeds anymore. Filters by interests and go. Love it.,CA,5,2017-05-27,61,305.0,"(60.0, 65.0]","(300.0, 325.0]" +Reddit,Better than 9 gag,RO,5,2017-05-27,36,72.0,"(35.0, 40.0]","(50.0, 75.0]" +Well,"Ya, love it.",DE,5,2017-05-27,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Fun,It's fun to use,US,5,2017-05-27,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +非常好,very lucky I found it!,CN,5,2017-05-27,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Funny and helpful,"Reddit has everything, whether you're looking for advice on a topic or just want to look at the dankest of memes. Reddit is the place to be!",GB,5,2017-05-27,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +"(Website, not app review)","I've been on the Reddit app (and Reddit as a whole) for two minutes, and I'm already loving it. This is the app I've been looking for. Not too conservative iFunny, not too liberal Tumblr (even though I'm a proud slightly moderate liberal). I can customize my internet experience the way I want. I'm going to thank my little brother over and over for introducing me to Reddit. I like Instagram, but I'm fed up with it. Facebook ruined the mobile app with trash updates (oh, and also basically stealing snapchat. Bye!) Twitter is too saturated with opinion. Facebook is for my mom who doesn't at all care to see that viral political meme a day later than when it was rising through the ranks on Reddit. (Last night, in fact, I predicted she would see it. It's fine though.) I'm changing my life for the better. This is one step. I am grateful that Reddit is for DISCUSSION. Discourse, open discussion of ideas- this is something the modern world is lacking, in my opinion. ""Front page of the Internet"" is the most accurate motto for a website I've ever heard.",US,5,2017-05-27,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +love it :),reddit is amazing,RU,5,2017-05-27,22,88.0,"(20.0, 25.0]","(75.0, 100.0]" +Love it,My favorite app so far :),EC,5,2017-05-27,18,36.0,"(15.0, 20.0]","(25.0, 50.0]" +It's reddit,Use it I guess,US,5,2017-05-27,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Good app,Works well for me,US,5,2017-05-27,20,60.0,"(15.0, 20.0]","(50.0, 75.0]" +Gucci,Gucci,US,4,2017-05-27,71,355.0,"(70.0, 75.0]","(350.0, 375.0]" +Debería estar en español,Debería abarcar más idiomas,CL,2,2017-05-27,2,10.0,"(-0.1, 5.0]","(-0.5, 25.0]" +My most used app,I find it so much easier to use this app than to actually use the website.,US,5,2017-05-27,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +I love it!,It's easy to use.,US,5,2017-05-27,19,95.0,"(15.0, 20.0]","(75.0, 100.0]" +fug,Good app 👌,US,5,2017-05-27,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Reddit is amazing!,"Looking for something? Chances are you'll find people talking about it here? Need entertainment? Reddit has everything. Get it, Hop in and post up.",US,5,2017-05-27,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +Awesome!,Great App!,US,5,2017-05-27,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Reddit,Good app,US,5,2017-05-27,76,304.0,"(75.0, 80.0]","(300.0, 325.0]" +It's like the developer of this app doesn't browse reddit,"The app serves it's purpose on a platter with holes in it. What's here is nice and works, but it's missing some appetizing features. +I'll describe what the app needs based on my usage. +When I open the app, I want to see my favorite subsections. To do that know is not fluid at all. +I want a tab that will show all of my posts, show date and time, karma, number of replies, route to the post. +More details. + +Thank you.",US,4,2017-05-27,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Good,Good,US,5,2017-05-27,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Lol,Amazing it's truly Masoud,US,5,2017-05-27,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Great way to build community quick and spread word about events.,US,4,2017-05-27,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +A fluid App considering the amount of users!,This is a great app that is fluid given the amount of users using it at any given moment of the day,US,5,2017-05-27,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +:d,Title,US,5,2017-05-27,21,105.0,"(20.0, 25.0]","(100.0, 125.0]" +Works for me,Like!,US,5,2017-05-27,20,80.0,"(15.0, 20.0]","(75.0, 100.0]" +Love this app,Good app. Fun to use and surf through various subreddits. Would recommend downloading.,US,5,2017-05-27,3,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Best of the internet all in one place.,If it's good it's on Reddit first.,US,5,2017-05-27,12,36.0,"(10.0, 15.0]","(25.0, 50.0]" +A very functional way to view Reddit.,"I don't ever have crashes, a new update brought multis, and the interface is intuitive enough.",US,5,2017-05-27,9,9.0,"(5.0, 10.0]","(-0.5, 25.0]" +5 stars!,"The app has a few bugs, but are being fixed. It deserves 4stars but I'm giving it five, so Reddit will send me free stuff!",US,5,2017-05-27,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Keeps prompting me to rate,Intrusive message with no way to dismiss.,US,1,2017-05-26,93,465.0,"(90.0, 95.0]","(450.0, 475.0]" +Love it!,Reddit makes it easy to get questions I have answered and has tons of other stuff to see too!,US,5,2017-05-26,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +The most time consuming app ever,The Narwals are Bacon at Midnight,US,5,2017-05-26,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Simple but effective,Finally found the right app to browse Reddit.,PH,5,2017-05-26,4,20.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Best Reddit App for OIS,!!,DE,5,2017-05-26,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +Finally becoming universally applicable,Every subreddit is beginning to have its own look own rules and much easier to navigate,US,5,2017-05-26,60,240.0,"(55.0, 60.0]","(225.0, 250.0]" +Good app,Just stop asking me to rate it.,US,4,2017-05-26,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great App,Best social media app,US,5,2017-05-26,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Mmmmm. Boobies.,And other stuff that I like to look at.,US,5,2017-05-26,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Reddit,The app is ok,IL,5,2017-05-26,1,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Good light app,Works great. No bug at the moment.,CA,5,2017-05-26,14,42.0,"(10.0, 15.0]","(25.0, 50.0]" +Great love such wow,Love it,US,5,2017-05-26,57,114.0,"(55.0, 60.0]","(100.0, 125.0]" +Stop,For making me rate,US,1,2017-05-26,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +A real contender of an app.,"A veritable treat to the corpus mentus. I can only recommend it. +If the app doesn't whet your palate at first, take a glance under the hood at the really tidy code. I've heard about c++ perfectionists but this beggars belief.",GB,5,2017-05-26,25,50.0,"(20.0, 25.0]","(25.0, 50.0]" +Great for news and funny stuff,I like the app but I wish we could edit flairs on mobile since not everyone has access to a computer or laptop all the time.,US,5,2017-05-26,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Works great,Works great,US,5,2017-05-26,92,460.0,"(90.0, 95.0]","(450.0, 475.0]" +Love it!,I only really stick around for the scary stories but overall I'm addicted to this app!,CA,5,2017-05-26,1,2.0,"(-0.1, 5.0]","(-0.5, 25.0]" +love reddit,love reddit,US,5,2017-05-26,79,158.0,"(75.0, 80.0]","(150.0, 175.0]" +Proper social media,Fantastic discussions,GB,5,2017-05-26,17,34.0,"(15.0, 20.0]","(25.0, 50.0]" +Good,"From what I can tell, there are no flaws",GB,5,2017-05-26,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Nickel.,"Rien à dire, parfait pour glander ^^",FR,5,2017-05-26,77,77.0,"(75.0, 80.0]","(75.0, 100.0]" +10/10,"Reddit' s pretty cool, really fun with the amount of forums and variety for each subject",US,5,2017-05-26,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Great,Great app,US,5,2017-05-26,23,46.0,"(20.0, 25.0]","(25.0, 50.0]" +10/10,Love it :0,US,5,2017-05-26,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Impressive app,Impressive app,TR,5,2017-05-26,72,360.0,"(70.0, 75.0]","(350.0, 375.0]" +Bit like Ronseal,Does exactly what it says on the tin.smooth and responsive app. No issue at all!,GB,5,2017-05-26,44,132.0,"(40.0, 45.0]","(125.0, 150.0]" +Nice,"I like it. I use it daily, I use it more than my social media.",US,5,2017-05-26,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Stop asking me to Rate you.,It's like the hot girl in school constantly asking her friend zoned guy friend who has clearly been fawning over her for 4 years if she will ever find someone to love her.,US,5,2017-05-26,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Must have,"Waited for so long. +Nicely done. +Good job.",TR,5,2017-05-26,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Reddit,"Read it, Reddit, love it",US,5,2017-05-26,45,90.0,"(40.0, 45.0]","(75.0, 100.0]" +Ótimo,É um excelente cliente de reddit.,BR,5,2017-05-26,55,55.0,"(50.0, 55.0]","(50.0, 75.0]" +They want a review,I give them review,US,4,2017-05-26,46,92.0,"(45.0, 50.0]","(75.0, 100.0]" +Nuff said,It's good,MY,4,2017-05-26,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +Awesome,I love reddit.,US,5,2017-05-26,36,180.0,"(35.0, 40.0]","(175.0, 200.0]" +Love it,Great app!,US,5,2017-05-26,34,68.0,"(30.0, 35.0]","(50.0, 75.0]" +Gr8,Love it,SI,5,2017-05-26,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +Awesome,Better than 9gag,TR,5,2017-05-26,44,220.0,"(40.0, 45.0]","(200.0, 225.0]" +Good Job,Need my subscribed in front please,ID,4,2017-05-26,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +"If you use Reddit, I'm sure you'll enjoy it",It's a good app for Reddit and I have no complaints plus it's free and the only ads you can scroll past.,US,5,2017-05-26,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +Solid,Solid,AU,5,2017-05-26,38,190.0,"(35.0, 40.0]","(175.0, 200.0]" +My goto app!,"If there is anything I need to know, or see its on here. Even the stuff I don't want to know or see are here! A must have app",CA,5,2017-05-26,67,335.0,"(65.0, 70.0]","(325.0, 350.0]" +Good,Nice,TW,5,2017-05-26,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Great,Yep,AU,5,2017-05-26,72,144.0,"(70.0, 75.0]","(125.0, 150.0]" +Did-it,Amazing as ever,AU,5,2017-05-26,66,330.0,"(65.0, 70.0]","(325.0, 350.0]" +Good,Very good app,IT,5,2017-05-26,7,14.0,"(5.0, 10.0]","(-0.5, 25.0]" +不用翻墙很方便,如题,时常关注一下欧美捞逼还是挺有趣的,CN,5,2017-05-26,55,165.0,"(50.0, 55.0]","(150.0, 175.0]" +Pretty Solid; Weird to learn but amusing.,The title says it all.,CA,4,2017-05-26,64,64.0,"(60.0, 65.0]","(50.0, 75.0]" +The best app I've ever seen,👍🏻,RU,5,2017-05-26,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Perfect,"Reddit was good before beginning to become more popular and it's pretty decent today would never go to 9gag or ifunny those are for plebs Reddit is iT +Why does the Narwhal Bacon?",US,5,2017-05-26,89,445.0,"(85.0, 90.0]","(425.0, 450.0]" +Awesome,Reddit makes Facebook look like last week's tuna sandwich.,US,5,2017-05-26,11,44.0,"(10.0, 15.0]","(25.0, 50.0]" +First time user!,"It's easy, simple to use and the community is wonderful!",US,5,2017-05-26,51,153.0,"(50.0, 55.0]","(150.0, 175.0]" +Love it,Excellent app read Reddit every day!,GB,5,2017-05-26,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Does what it needs to,A bit buggy at times but it gets the job done,AU,3,2017-05-26,14,14.0,"(10.0, 15.0]","(-0.5, 25.0]" +It's a Reddit app,It does what you need.,US,4,2017-05-26,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +Outstanding,"Love this app, great app to get lost from the real world",US,5,2017-05-26,28,28.0,"(25.0, 30.0]","(25.0, 50.0]" +It's okay,Just made an account.,US,5,2017-05-26,85,170.0,"(80.0, 85.0]","(150.0, 175.0]" +A great place to find whatever it is your looking for,This app brings the dankest memes straight to your fingertips!,US,5,2017-05-26,52,104.0,"(50.0, 55.0]","(100.0, 125.0]" +Bought,HIS NAME WAS SETH RICH,US,1,2017-05-26,65,195.0,"(60.0, 65.0]","(175.0, 200.0]" +"App works great for me, could use a tutorial","At first the app was hard to figure out where everything was, but I've had no problems with it and I enjoy Reddit.",US,4,2017-05-26,10,30.0,"(5.0, 10.0]","(25.0, 50.0]" +Wonderful,A+,US,5,2017-05-26,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Good app,It's well created!,US,5,2017-05-26,70,70.0,"(65.0, 70.0]","(50.0, 75.0]" +Excellent,My daily app,VN,5,2017-05-26,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +I love it,I love it,US,4,2017-05-26,37,74.0,"(35.0, 40.0]","(50.0, 75.0]" +Great app!,It works and it's easy to use. I hope I they keep up the good work!,US,5,2017-05-26,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Great,lil confusing but that's reddit not the app,US,4,2017-05-26,38,38.0,"(35.0, 40.0]","(25.0, 50.0]" +I like it,Its nice,US,5,2017-05-26,47,141.0,"(45.0, 50.0]","(125.0, 150.0]" +Very good mkaay?,Mkaay,SE,5,2017-05-26,35,175.0,"(30.0, 35.0]","(150.0, 175.0]" +Nice,Great app,NL,5,2017-05-26,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Like it should,Works as advertised. No problems,US,5,2017-05-26,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +It's getting better,"I honestly still don't like it as much as alien blue, despite it being almost a clone of alien blue, but they're updating it and it's getting better.",US,4,2017-05-26,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +For obvious reasons,Only downside is you can't play minecraft in this app. [7],US,5,2017-05-26,69,345.0,"(65.0, 70.0]","(325.0, 350.0]" +Bom,De verdade,BR,5,2017-05-26,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Interesante,"Excelente acceso al contenido de la red, me sorprende la forma tan sencilla de interactuar y descubrir información interesante",MX,5,2017-05-26,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +love the content,"great stories, recipes, and info but hate the rules to get something posted",US,3,2017-05-26,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Can no longer share things,"I would rather take, share, and delete a screenshot instead of giving Reddit access to my camera and photos",US,1,2017-05-26,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +It's nice,"I like this because it's nice and clever: ""Reddit"" = ""I read this."" Hehoheha",US,5,2017-05-26,2,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +A++,Great!,US,5,2017-05-26,80,160.0,"(75.0, 80.0]","(150.0, 175.0]" +Great App,Just as easy to use as the webpage,CA,4,2017-05-26,82,328.0,"(80.0, 85.0]","(325.0, 350.0]" +Great app,Great way to use Reddit!,US,4,2017-05-26,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +They keep improving,The app has come miles from a year or two ago. It's lovely to use now. My only suggestion is to make it easier to see which posts you've read. Right now unread appears in black text and read is in grey. In certain light this is kinda hard to see.,US,4,2017-05-26,69,276.0,"(65.0, 70.0]","(275.0, 300.0]" +Très bonne application,****,CA,4,2017-05-26,25,100.0,"(20.0, 25.0]","(75.0, 100.0]" +Stop bugging me,Rate the app now so it won't nag you.,US,5,2017-05-26,19,38.0,"(15.0, 20.0]","(25.0, 50.0]" +love,just download it and love it so much💖,GB,5,2017-05-26,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +门户新闻,不用翻墙的门户新闻,CN,5,2017-05-26,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Muy entretenido,Bbhhvh,ES,5,2017-05-25,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Gave it a go,"Hard to use. A bit confusing. Can't edit profile. A bit if a pain. Deleted it. + +- can't actually delete my account. Guess I'll be getting emails now till rapture.",GB,3,2017-05-25,83,83.0,"(80.0, 85.0]","(75.0, 100.0]" +Awesome!,Intuitive and beautiful!,BR,5,2017-05-25,59,118.0,"(55.0, 60.0]","(100.0, 125.0]" +Stop bothering me,"Stop asking me to rate every version. Also your iPad app needs work. Basic auto layout, what are you waiting for?",US,1,2017-05-25,89,356.0,"(85.0, 90.0]","(350.0, 375.0]" +yay,yay,US,5,2017-05-25,42,168.0,"(40.0, 45.0]","(150.0, 175.0]" +Good App,Good App,US,5,2017-05-25,3,9.0,"(-0.1, 5.0]","(-0.5, 25.0]" +I like Reddit,I like Reddit,US,5,2017-05-25,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +Best app on app store,Read title,GB,5,2017-05-25,42,210.0,"(40.0, 45.0]","(200.0, 225.0]" +Garbage-ish,"Needs Some work. More work! because there is too many rules for everything and I think it's all unfair. The mods say long messages and I don't understand. It's annoying me and making me suffer through annoyingness. I am sorry but it just needs more work. And needs better nicer people because you don't want to get someone annoyed by you and say the f word or yell at you on social media. Its like you can't do anything to help fix the problem. I love reddit but I feel I can't post anything. I have three accounts I think and I'm trying to find out what they are. But I can't. I don't remember. I want to get them deleted for good. So I can only have one account. The mods are nice and some of them are weird. They say too much. I still don't understand the words they mean in their sentences. And all the rules are everywhere and it's hard for me to follow them. I don't know why I can't to reddit in the first place. And I don't know why there are 5828488493948583948578494758948 rules for everything. I mean what the what?! It's annoying, hard, overwhelming, annoying, fun (sometimes), boring, etc... but I still like this app. I just need the rules and everything that annoys people or all that stuff be fixed as well. Plez? I can't stand it *sits on spiny chair* hope you like what your doing! Because your making some people suffer through the rules and trying to follow them and also talking to people for help and then they yell at them. THAT IS NOT NICE. I disagree to treat a person or talk to them that way. TREAT people with RESPECT and all that other stuff people told you about to do! It's easy! Ok I think that's all. :3 + +And some of the mods are mean or unfair. Just please tone it down with the rules. There are like five thousand eighty nine million rules. Or some how many rules there are. Just tone it down a little please and don't let people use vocabulary words that are super long and hard for me to understand them. And the mods keep telling me ""you can't do this let rule 1"" I mean why can't I do it? I posted other posts like that and you stop me on that one post? And why can't I use text box sometimes? Or something. I don't like being banned or muted. I just god banned and muted twice for 72 hours and the second one.. is permanent. I don't like that idea. I said PLEASE TONE DOWN ON THE RULES. Don't make more rules so we feel like dogs and can't do anything. And people keep saying ""this doesn't belong here you keep just breaking the rules"" and ""you can't do this"" or ""you can't do that"" then why do we HAVE IT THEN?! Huh?! Why? I do hope your doing great Reddit. Your making people suffer of problems because of the mods and some people on there who says things like that and makes people feel bad. It's always me who gets something like""you did this"" ""you can't do that"" ""our just breaking more rules"" STOP WITH THE RULES. TOO MANY. Please it's very annoying to have to read all the rules and forget. Just keep the rules down low. I mean keep only a little bit of rules for all the subs. And hen Reddit will be better. + +Oh, yeah and whenever I post something someone says ""you can't do this your just breaking the rules"" THEN WHY CAN OTHER PEOPLE POST IT THEN?????!!!!!! And people keep giving me -1 on my comments on one of my posts! Stop that please! This is a professional app then right? Then why are people posting random stuff? And I post something and it's not aloud and I break the rules????? Idk.. I'm going to destroy this app now. Jk. Maybe. But T.O.N.E it down with the RULES PLEASE!?... and people. One person: u/Algernon_asimov is still making me sad and worried. In Trying my best on this app I really am. Wish I could delete messages within the app. And so things that I CAN do.",US,1,2017-05-25,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Reddit filters the internet so I don't have to,And I love it. iPhone version is better than the iPad,US,5,2017-05-25,91,182.0,"(90.0, 95.0]","(175.0, 200.0]" +Awesome,Great app,CA,5,2017-05-25,82,410.0,"(80.0, 85.0]","(400.0, 425.0]" +Too good and too meme,"Meme is love, Meme is life",CA,5,2017-05-25,30,120.0,"(25.0, 30.0]","(100.0, 125.0]" +Pretty Chill,I like,US,5,2017-05-25,69,69.0,"(65.0, 70.0]","(50.0, 75.0]" +Political agenda,Reddit these last few weeks has been spamming me with anti-Trump and pro liberal propaganda. Deleted and will use Alien blue instead. F U /spez.,US,1,2017-05-25,43,43.0,"(40.0, 45.0]","(25.0, 50.0]" +Good time killer,"I like the feed, but it's a little cumbersome that I can't tailor my feed directly. I have trouble finding how to customize my content. I would really like to be an avid user, but I find myself going back to Facebook and YouTube still...",US,4,2017-05-25,22,22.0,"(20.0, 25.0]","(-0.5, 25.0]" +Works like a charm,Keep up the good work,DE,5,2017-05-25,75,300.0,"(70.0, 75.0]","(275.0, 300.0]" +Great design and functionality,Never crashes for me on iPhone. I like using the app far more than computer browser.,US,5,2017-05-25,87,87.0,"(85.0, 90.0]","(75.0, 100.0]" +Awesome app,The best reddit app on planet earth - a pleasure to use!,GB,5,2017-05-25,51,255.0,"(50.0, 55.0]","(250.0, 275.0]" +Pretty good,Needs an easy way to check comment karma across all your comments.,US,5,2017-05-25,67,201.0,"(65.0, 70.0]","(200.0, 225.0]" +Awesome,"Awesome app, works perfectly",DK,5,2017-05-25,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Love,Love it!!!!,US,5,2017-05-25,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +It's good,"It's good, better on Android tho.",US,4,2017-05-25,34,136.0,"(30.0, 35.0]","(125.0, 150.0]" +Great,Everything you need in your iPhone.,IE,5,2017-05-25,54,270.0,"(50.0, 55.0]","(250.0, 275.0]" +It's an app!,"It's not as versatile as the web version, but that's the price one pays. Maybe the developers will listen to the users one day. Until then, it will have to do.",US,3,2017-05-25,35,140.0,"(30.0, 35.0]","(125.0, 150.0]" +I hate social media but this is what I was looking for,I always avoided Reddit and I don't know why. It may be perfect.,US,4,2017-05-25,54,162.0,"(50.0, 55.0]","(150.0, 175.0]" +Super,"Entertainment, knowledge what not everything, u name it. All in one app. I turn to Reddit when ever I am idle.",US,5,2017-05-25,46,46.0,"(45.0, 50.0]","(25.0, 50.0]" +A most excellent mobile way to reddit,The app does everything it needs to.,IE,5,2017-05-25,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Ironic.,"He could save others from death, but not himself.",SE,5,2017-05-25,12,24.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great waste of time.,Pull down refresh would be lovely.,US,4,2017-05-25,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +Works well most of the time,We did it Reddit!,US,4,2017-05-25,2,8.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,So far no problems.,US,4,2017-05-25,15,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Enjoy,Enjoy apl,US,3,2017-05-25,79,79.0,"(75.0, 80.0]","(75.0, 100.0]" +What happened?,Once again no notifications. So so great otherwise.,US,1,2017-05-25,5,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Great,Superb!,DK,5,2017-05-25,32,160.0,"(30.0, 35.0]","(150.0, 175.0]" +Rated so it will stop telling me to rate,Word.,US,3,2017-05-25,18,54.0,"(15.0, 20.0]","(50.0, 75.0]" +Reddit app the best!,Love it,AU,5,2017-05-25,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Good app,Just very good,NL,5,2017-05-25,65,65.0,"(60.0, 65.0]","(50.0, 75.0]" +Reddit,Love it.,CA,5,2017-05-25,62,310.0,"(60.0, 65.0]","(300.0, 325.0]" +Gud,It HaS tHe BeSt MeMeS eVeR.,US,5,2017-05-25,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +I LOVE IT!,I am a Reddit veteran and just found out about this app and it is so convenient and is easy to navigate. Love it,US,5,2017-05-25,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Flawless App,"Slick, lightweight, won't kill your battery",US,5,2017-05-25,47,47.0,"(45.0, 50.0]","(25.0, 50.0]" +First page on reddit...0 times,Never gonna make it,AU,5,2017-05-25,75,75.0,"(70.0, 75.0]","(50.0, 75.0]" +Stop asking,Love it writing this to make it stop asking to rate,US,5,2017-05-25,41,164.0,"(40.0, 45.0]","(150.0, 175.0]" +Perfect app!,Feels really good to use Reddit.,IN,5,2017-05-25,85,340.0,"(80.0, 85.0]","(325.0, 350.0]" +It's ok,Wish I could much more easily see the Reddits I follow,US,4,2017-05-25,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +Great app,This app allows me to pass the time when there is nothing going on.,US,5,2017-05-25,1,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Nice app,Really enjoy this app and how people threat new member.,TH,4,2017-05-25,55,110.0,"(50.0, 55.0]","(100.0, 125.0]" +Great overview,This is where I come for an overview and underview of the world. Good stuff.,US,5,2017-05-25,94,188.0,"(90.0, 95.0]","(175.0, 200.0]" +Good,Good,AU,5,2017-05-25,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +Like they say in r/miata,This s**t is the BEST,US,5,2017-05-25,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Love it,Quickly became my go-to app for news and fun in the morning (dethroning facebook's 7-year reign over my information intake),FR,5,2017-05-25,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +No bulls@$t,Just good stuff,NZ,5,2017-05-25,67,134.0,"(65.0, 70.0]","(125.0, 150.0]" +Reddit rocks,Nice app. Good features,IN,5,2017-05-25,93,186.0,"(90.0, 95.0]","(175.0, 200.0]" +Annoying,"Stop asking for a review in the app, REALLY annoying.",NL,1,2017-05-25,27,81.0,"(25.0, 30.0]","(75.0, 100.0]" +Cool,Good stuff,US,5,2017-05-25,40,120.0,"(35.0, 40.0]","(100.0, 125.0]" +Spot on,Works like a charm,DK,5,2017-05-25,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Brillo,Yup,AU,5,2017-05-25,54,54.0,"(50.0, 55.0]","(50.0, 75.0]" +Well informative,Ever since Reddit I feel like I have a better grasp on my current interests,US,5,2017-05-25,71,213.0,"(70.0, 75.0]","(200.0, 225.0]" +Love it,Fun little doodad,US,5,2017-05-25,1,5.0,"(-0.1, 5.0]","(-0.5, 25.0]" +10/10,Would use again.,FI,5,2017-05-25,99,495.0,"(95.0, 100.0]","(475.0, 500.0]" +sehr cool,"benutzeroberfläche der app 5 sterne +content von reddit 5 sterne",DE,5,2017-05-25,100,300.0,"(95.0, 100.0]","(275.0, 300.0]" +Amazing,Love it!,IN,5,2017-05-25,50,150.0,"(45.0, 50.0]","(125.0, 150.0]" +Love it!,App works well. Easy to use and search.,US,4,2017-05-25,67,67.0,"(65.0, 70.0]","(50.0, 75.0]" +Worth a try,Collapsing threads could be easier. Otherwise a great app.,FI,4,2017-05-25,19,19.0,"(15.0, 20.0]","(-0.5, 25.0]" +Just stopped working,"Won't load anything, site still works on browser but app has been useless for a bit now. Not like it isn't functional, if I try to log in it'll tell me if I got the password wrong but when it's right just says sorry please try again later. Doesn't matter even if it did let me in, not a single thing will load on the app.",US,1,2017-05-25,72,216.0,"(70.0, 75.0]","(200.0, 225.0]" +Good App,It's decent,US,5,2017-05-25,29,116.0,"(25.0, 30.0]","(100.0, 125.0]" +Love it,"Would like to be able to see my top comments of all time though + +Like the comments I've gotten the most upvotes on",US,4,2017-05-25,40,200.0,"(35.0, 40.0]","(175.0, 200.0]" +Brilliante,This app ticks so many boxes.,CA,5,2017-05-25,52,52.0,"(50.0, 55.0]","(50.0, 75.0]" +Best social media platform,Very addictive & community is always on point,GB,5,2017-05-25,83,249.0,"(80.0, 85.0]","(225.0, 250.0]" +Great!,10/10,UA,5,2017-05-25,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +The knowledge never ends!,I have found a lot of very useful information searching here,MX,5,2017-05-25,46,138.0,"(45.0, 50.0]","(125.0, 150.0]" +Great app,Never thought I'd be a Reddit kid but have grown to really enjoy it. Not only does it make me laugh but it also makes me aware of what's going on in the world. 5 stars.,US,5,2017-05-25,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Fine app,"Like night mode...no real complaints. Just doesn't feel like a five-star app (I know i know, that's a useless statement).",US,4,2017-05-25,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Love it,Only form of social media I use.,US,5,2017-05-25,18,72.0,"(15.0, 20.0]","(50.0, 75.0]" +Keeps me up to date,My favorite app!,US,5,2017-05-25,6,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Pretty good,The app is everything that it should be,US,5,2017-05-25,44,88.0,"(40.0, 45.0]","(75.0, 100.0]" +Nice,"Appreciate the info, intel, and fun stuff.",US,5,2017-05-25,77,154.0,"(75.0, 80.0]","(150.0, 175.0]" +Thumbs up,Get lost in it!,US,5,2017-05-25,69,138.0,"(65.0, 70.0]","(125.0, 150.0]" +Love it,"Facebook? +Pinterest? +Noooope. Reddit",US,5,2017-05-25,71,142.0,"(70.0, 75.0]","(125.0, 150.0]" +Enjoying it,"Definitely enjoying the app, easy to use.",US,4,2017-05-25,4,4.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Love Reddit but I'm here to get rid of the pop up,Mk,US,5,2017-05-25,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Reddit review as requested on the app,Having the app makes it slightly easier to log in but that is it,GB,4,2017-05-25,73,365.0,"(70.0, 75.0]","(350.0, 375.0]" +:),:),US,5,2017-05-25,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +It's coo,It's coo,US,5,2017-05-25,95,190.0,"(90.0, 95.0]","(175.0, 200.0]" +Garbage-ish,"Needs Some work. More work! because there is too many rules for everything and I think it's all unfair. The mods say long messages and I don't understand. It's annoying me and making me suffer through annoyingness. I am sorry but it just needs more work. And needs better nicer people because you don't want to get someone annoyed by you and say the f word or yell at you on social media. Its like you can't do anything to help fix the problem. I love reddit but I feel I can't post anything. I have three accounts I think and I'm trying to find out what they are. But I can't. I don't remember. I want to get them deleted for good. So I can only have one account. The mods are nice and some of them are weird. They say too much. I still don't understand the words they mean in their sentences. And all the rules are everywhere and it's hard for me to follow them. I don't know why I can't to reddit in the first place. And I don't know why there are 5828488493948583948578494758948 rules for everything. I mean what the what?! It's annoying, hard, overwhelming, annoying, fun (sometimes), boring, etc... but I still like this app. I just need the rules and everything that annoys people or all that stuff be fixed as well. Plez? I can't stand it *sits on spiny chair* hope you like what your doing! Because your making some people suffer through the rules and trying to follow them and also talking to people for help and then they yell at them. THAT IS NOT NICE. I disagree to treat a person or talk to them that way. TREAT people with RESPECT and all that other stuff people told you about to do! It's easy! Ok I think that's all. :3 + +And some of the mods are mean or unfair. Just please tone it down with the rules. There are like five thousand eighty nine million rules. Or some how many rules there are. Just tone it down a little please and don't let people use vocabulary words that are super long and hard for me to understand them. And the mods keep telling me ""you can't do this let rule 1"" I mean why can't I do it? I posted other posts like that and you stop me on that one post? And why can't I use text box sometimes? Or something. I don't like being banned or muted. I just god banned and muted twice for 72 hours and the second one.. is permanent. I don't like that idea. I said PLEASE TONE DOWN ON THE RULES. Don't make more rules so we feel like dogs and can't do anything. And people keep saying ""this doesn't belong here you keep just breaking the rules"" and ""you can't do this"" or ""you can't do that"" then why do we HAVE IT THEN?! Huh?! Why? I do hope your doing great Reddit. Your making people suffer of problems because of the mods and some people on there who says things like that and makes people feel bad. It's always me who gets something like""you did this"" ""you can't do that"" ""our just breaking more rules"" STOP WITH THE RULES. TOO MANY. Please it's very annoying to have to read all the rules and forget. Just keep the rules down low. I mean keep only a little bit of rules for all the subs. And hen Reddit will be better. + +Oh, yeah and whenever I post something someone says ""you can't do this your just breaking the rules"" THEN WHY CAN OTHER PEOPLE POST IT THEN?????!!!!!! And people keep giving me -1 on my comments on one of my posts! Stop that please! This is a professional app then right? Then why are people posting random stuff? And I post something and it's not aloud and I break the rules????? Idk.. I'm going to destroy this app now. Jk. Maybe. But T.O.N.E it down with the RULES PLEASE!?... and people. One person: u/Algernon_asimov is still making me sad and worried. In Trying my best on this app I really am.",US,1,2017-05-25,96,288.0,"(95.0, 100.0]","(275.0, 300.0]" +666,嘿嘿嘿嘿嘿嘿,非常好,CN,5,2017-05-25,23,23.0,"(20.0, 25.0]","(-0.5, 25.0]" +Way better than using it on a browser,I enjoy the app far better than using it on a mobile browser. I don't post anything. I just read and it works just fine for me.,US,5,2017-05-25,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +GR8 8/8,"gr8 b8 m8. i rel8 str8 appreci8 nd congratul8. i r8 dis b8 an 8/8. plz no h8, i'm str8 ir8. cr8 more cant w8. we shood convers8 i wont ber8, my number is 8888888 ask for N8. no calls l8 or out of st8. if on a d8, ask K8 to loc8. even with a full pl8 i always hav time to communic8 so dont hesit8. dont forget to medit8 and particip8 and masturb8 to allevi8 ur ability to tabul8 the f8. we should meet up m8 and convers8 on how we can cre8 more gr8 b8, im sure everyone would appreci8 no h8. i dont mean to defl8 ur hopes, but itz hard to dict8 where the b8 will rel8 and we may end up with out being appreci8d, im sure u can rel8. we can cre8 b8 like alexander the gr8, stretch posts longer than the nile's str8s. well be the captains of b8 4chan our first m8s the growth r8 will spread to reddit and like reel est8 and be a flow r8 of gr8 b8 like a blind d8 well coll8 meet me upst8 where we can convers8 or ice sk8 or lose w8 infl8 our hot air baloons and fly tail g8. we cood land in kuw8, eat a soup pl8 followed by a dessert pl8 the payment r8 wont be too ir8 and hopefully our currency wont defl8. well head to the israeli-St8, taker over like herod the gr8 and b8 the jewish masses 8 million m8. we could interrel8 communism thought it's past it's maturity d8, a department of st8 volunteer st8. reduce the infant mortality r8, all in the name of making gr8 b8 m8",US,5,2017-05-25,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Love this app,The aww section is the best!,US,5,2017-05-25,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +The reason I got fired,This app is single handedly the most addicting app created. Once you narrow down subreddits you enjoy you can spend easily two hours straight looking through. 5/7,US,5,2017-05-25,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Fine but not perfect.,"Its alright but always pesters you to review and send notifications when you use it. I'd rather use the web browser but reddit made it more difficult to use their site on mobile. + +Their app could be better in terms of navigation though.",US,3,2017-05-25,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Best of Reddit viewing apps,Love this app. Easy to navigate once you use it for a bit. Love the night mode. Get it!,US,5,2017-05-25,48,240.0,"(45.0, 50.0]","(225.0, 250.0]" +I'm a fan,"I'm a fan, though it could use more functionality. A way to differentiate viewed links would be a great start.",US,5,2017-05-25,61,61.0,"(60.0, 65.0]","(50.0, 75.0]" +Love it,I really enjoy using this app,US,5,2017-05-24,15,75.0,"(10.0, 15.0]","(50.0, 75.0]" +Good mobile version,Not bad,US,3,2017-05-24,80,80.0,"(75.0, 80.0]","(75.0, 100.0]" +Good enough,Yup,US,5,2017-05-24,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Amazing App,Varieties of topics to choose from!,US,5,2017-05-24,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Glorious,Reddit is bloody brilliant,US,5,2017-05-24,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Easy peazy lemon squeezey,"Search for topics, add commentary, see everyone's updates; big or small. Enjoy sharing what's in your noggin",US,5,2017-05-24,13,52.0,"(10.0, 15.0]","(50.0, 75.0]" +"it's functional, not the greatest looking though imo",3/5,US,3,2017-05-24,98,392.0,"(95.0, 100.0]","(375.0, 400.0]" +The app has come on leaps and bounds!,"When I initially downloaded the Reddit app a while back I deleted because I found it unusable. I can now say it's great, much improved.",GB,5,2017-05-24,14,70.0,"(10.0, 15.0]","(50.0, 75.0]" +Incomplete functionality,Much of the basic functionality in iOS is missing here - very disappointing. Reddit does a poor job of listening to their customers.,US,1,2017-05-24,60,120.0,"(55.0, 60.0]","(100.0, 125.0]" +Sick,Sick,US,5,2017-05-24,25,25.0,"(20.0, 25.0]","(-0.5, 25.0]" +Ok but annoying to refresh,I like the auto preview of images and videos. No performance issues that I've noticed. My main gripe is that I have to restart the app to refresh the posts. Super annoying.,US,3,2017-05-24,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Runs well,It good,AU,5,2017-05-24,78,156.0,"(75.0, 80.0]","(150.0, 175.0]" +Colossal,Time waster! My boss hasn't figured out why I spend so much time in the ladies room yet. Reading on Reddit.,US,5,2017-05-24,58,116.0,"(55.0, 60.0]","(100.0, 125.0]" +Trade in your Facebook for Reddit today.,"Fantastic! As a ""social network"" should be, just a plain oldschool forum really. Not that popular (yet) here in the Netherlands which kinda makes it even better! <3",NL,5,2017-05-24,24,72.0,"(20.0, 25.0]","(50.0, 75.0]" +an interesting app recommended strongly,very nice,CN,5,2017-05-24,84,252.0,"(80.0, 85.0]","(250.0, 275.0]" +Great!,I'm really happy with the app. It's similar to the desktop version so it feels familiar and we like that.,US,5,2017-05-24,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Rating it,It's a good version of Reddit but I preferred the Alien Blur scheme.,US,5,2017-05-24,41,82.0,"(40.0, 45.0]","(75.0, 100.0]" +Reddit,Great App,US,5,2017-05-24,4,12.0,"(-0.1, 5.0]","(-0.5, 25.0]" +HEllYAH,if you give reddit less than 5 stars... that's your poor decision not mine,US,5,2017-05-24,35,105.0,"(30.0, 35.0]","(100.0, 125.0]" +Review pop-ups,Unusable app,US,1,2017-05-24,100,500.0,"(95.0, 100.0]","(475.0, 500.0]" +Love it,"There's only one issues with text formatting (strikethrough) not showing up. Nothing that would warrant losing a star over. Personally, I prefer the app over my computer for browsing photo subs.",US,5,2017-05-24,41,123.0,"(40.0, 45.0]","(100.0, 125.0]" +Fun and useful,If you like reddit or want to give it a shot the app is handy and fairly developed enough.,US,5,2017-05-24,24,120.0,"(20.0, 25.0]","(100.0, 125.0]" +Works fine,Dont know of anything wrong with the app so 5/5 but Im not the most avid redditor.,US,5,2017-05-24,90,180.0,"(85.0, 90.0]","(175.0, 200.0]" +Annoying,"When they keep asking to rate their app, and you can't open it without a friendly reminder to rate it... it is just, annoying",MX,1,2017-05-24,29,58.0,"(25.0, 30.0]","(50.0, 75.0]" +Great app for a phone,This is a really good app for an phone and is really addictive. However on the iPad the layout isn't very good and doesn't really fit but other than that it's perfect.,GB,5,2017-05-24,53,265.0,"(50.0, 55.0]","(250.0, 275.0]" +Berry good,lol,US,5,2017-05-24,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Really,"Really, I love you Reddit App!",US,5,2017-05-24,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Love it,Love it but wish there was a faster way to access subbed Reddits,US,5,2017-05-24,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +My Favorite Newsfeed,I love it!,US,5,2017-05-24,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Love it,Easy and simple,US,4,2017-05-24,30,30.0,"(25.0, 30.0]","(25.0, 50.0]" +Well done for my daily dose of Reddit,I use this app all the time on my phone. It works great.,US,5,2017-05-24,11,33.0,"(10.0, 15.0]","(25.0, 50.0]" +Amazing transition from website to app,Just what a mobile should aspire to be.,US,5,2017-05-24,46,230.0,"(45.0, 50.0]","(225.0, 250.0]" +ReadyHit!,"Awesome app that allows you to bring items of interest to your iPhone or iPad at the touch of a button. Love the versatility, and the ability to save posts for later enjoyment.",US,5,2017-05-24,72,288.0,"(70.0, 75.0]","(275.0, 300.0]" +Reddit,good app,US,5,2017-05-24,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +.,Now I can shitpost from my phone,CA,5,2017-05-24,81,243.0,"(80.0, 85.0]","(225.0, 250.0]" +Reddit ist super!,"Habe vorher nur aus Geschichten von Reddit gehört. Ist ein klasse ""Forum"" und die App bietet genug um auf die Web Oberfläche verzichten zu können :)",DE,5,2017-05-24,78,390.0,"(75.0, 80.0]","(375.0, 400.0]" +Pretty great,That is all it's just pretty great,US,5,2017-05-24,62,248.0,"(60.0, 65.0]","(225.0, 250.0]" +Great,"Great app, makes it easy to pass any amount of time you may have on your hands.",US,5,2017-05-24,92,184.0,"(90.0, 95.0]","(175.0, 200.0]" +Endless hours of fun.,"I love Reddit. Endless endless hours of entertainment and porn I didn't know existed but happy it does. + +Also the app works pretty well.",US,5,2017-05-24,28,140.0,"(25.0, 30.0]","(125.0, 150.0]" +Neat,Does what it says on the box. The thing told me to rate it.,NZ,5,2017-05-24,48,192.0,"(45.0, 50.0]","(175.0, 200.0]" +Check check,Good app,US,4,2017-05-24,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +Love,"Luv it!!! Only bad thing is you'll prob be on it all day and night so use wisely. + +Edit: hey guys i'm not able to see the messages i receive through my inbox.",US,5,2017-05-24,62,124.0,"(60.0, 65.0]","(100.0, 125.0]" +It's frothy man,Cool as Cresta pop from the 70's and believe me that is so cool it's sub zero,GB,5,2017-05-24,71,284.0,"(70.0, 75.0]","(275.0, 300.0]" +Love it .............,Title says it all,US,5,2017-05-24,3,9.0,"(-0.1, 5.0]","(-0.5, 25.0]" +Stops music,Cant enjoy the app because it stops my music from playing.,US,2,2017-05-24,34,34.0,"(30.0, 35.0]","(25.0, 50.0]" +In new to the network but it's good so far,"Great app in general. I love the concept of Reddit I just dislike the toxic individuals that inhabit Reddit. This is not true for everyone in Reddit, but when you're in Subreddits like /r/LeagueofLegends or /r/GlobalOffensive or any of the other gaming related Subreddits, then you see more of these individuals. The app itself is great, mostly because it's simple. It's not always the easiest to navigate but for the most part it is fairly simple. My only complaint is that I find it hard to locate the Subreddits I am subscribed to without having to search them manually. This is somewhat of a deal breaker for me because I subscribe to a lot of Subreddits and I don't remember the names of all of them. If there's a way to find them without searching for them, I have not yet found it. But yeah, it's a great app.",US,4,2017-05-24,12,60.0,"(10.0, 15.0]","(50.0, 75.0]" +Awesome,Best app ever!,US,5,2017-05-24,43,129.0,"(40.0, 45.0]","(125.0, 150.0]" +👍👍 love it.,It's great,US,5,2017-05-24,98,98.0,"(95.0, 100.0]","(75.0, 100.0]" +The front page of the Internet,Now realised it was true.,IN,5,2017-05-24,16,16.0,"(15.0, 20.0]","(-0.5, 25.0]" +So Fresh,N so clean,US,5,2017-05-24,96,96.0,"(95.0, 100.0]","(75.0, 100.0]" +Fin app,Alt virker helt upåklageligt.,DK,5,2017-05-24,50,250.0,"(45.0, 50.0]","(225.0, 250.0]" +It's reddit.,The best,US,5,2017-05-24,66,198.0,"(65.0, 70.0]","(175.0, 200.0]" +It's Reddit I mean come on,A+,US,5,2017-05-24,79,237.0,"(75.0, 80.0]","(225.0, 250.0]" +Reddit Rocks,"Use it everyday, great for all info purposes",US,5,2017-05-24,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Would like it to be more robust,Love the UI and layout options. If it had my subreddit accessable I'd give it 4 stars. Great start but let's see how the updates come.,US,3,2017-05-24,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Great app,"Dude I love this app. It is missing a few things but overall it has everything I wanted. + +Two things: + +1. Quoted entries appear as zeros and ones currently + +2. There is no support for special characters that reddit desktop fully supports",US,4,2017-05-24,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Good,Good,AU,5,2017-05-24,43,86.0,"(40.0, 45.0]","(75.0, 100.0]" +Good but has Flaws,"I prefer using the Mobile version because it's easier for me no navigate but it does have some issues. Sometimes it lags and sometimes it crashes. It can also freeze and I have close the app and reopen it. It's good, I like the layout of the app. I just would like them to fix these issues is all.",US,4,2017-05-24,40,40.0,"(35.0, 40.0]","(25.0, 50.0]" +Love Reddit,Reddit is the best.,US,5,2017-05-24,52,260.0,"(50.0, 55.0]","(250.0, 275.0]" +Always something funny or interesting on there,Totally Recommend it,CH,5,2017-05-24,89,89.0,"(85.0, 90.0]","(75.0, 100.0]" +great,farewell to my beloved Alice Blue.,KR,5,2017-05-24,33,132.0,"(30.0, 35.0]","(125.0, 150.0]" +Great way to browse reddit,"although it could use some improvements as well as a version for iPad, this app is worthy of my daily use. I miss alien blue, but there are pros and cons to both; this app is reliable regardless.",US,4,2017-05-24,82,246.0,"(80.0, 85.0]","(225.0, 250.0]" +👌🏼,"I've rated, now leave me be.",US,5,2017-05-24,32,64.0,"(30.0, 35.0]","(50.0, 75.0]" +Fantastic,Great app,GB,5,2017-05-24,30,150.0,"(25.0, 30.0]","(125.0, 150.0]" +Dope,Amazing app,NE,5,2017-05-24,87,261.0,"(85.0, 90.0]","(250.0, 275.0]" +I love this app,"I am slowly preferring this over Facebook and it's awesome, I would not say the same about the website tho lol. + +✊🏻✊🏻🤘🏻",IN,5,2017-05-24,56,168.0,"(55.0, 60.0]","(150.0, 175.0]" +Reddit,Like the concept. Do not like the delay to post replies.,US,4,2017-05-24,94,376.0,"(90.0, 95.0]","(375.0, 400.0]" +Awesome,I Love it,DE,5,2017-05-24,50,100.0,"(45.0, 50.0]","(75.0, 100.0]" +Great !,Works great with vpn in my country,ID,5,2017-05-24,56,56.0,"(55.0, 60.0]","(50.0, 75.0]" +pls stap,I love this app. Now pls stop asking me.,FR,5,2017-05-24,15,30.0,"(10.0, 15.0]","(25.0, 50.0]" +Too much time,I spend way too much time on this site. Would recommend 10/10.,US,5,2017-05-24,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Life changer,Customize your feed with entertainment or just all learning - whatever you want. It's great.,US,5,2017-05-24,60,300.0,"(55.0, 60.0]","(275.0, 300.0]" +Excellent app,It's really front page of internet!,US,5,2017-05-24,86,344.0,"(85.0, 90.0]","(325.0, 350.0]" +Good,Useful and nice!!,IT,5,2017-05-24,33,99.0,"(30.0, 35.0]","(75.0, 100.0]" +Perfect app!,No bug very lite and fast,IT,5,2017-05-24,53,212.0,"(50.0, 55.0]","(200.0, 225.0]" +Best ~social network~ out there,Reallest social network out there hands down fam,BR,5,2017-05-24,27,108.0,"(25.0, 30.0]","(100.0, 125.0]" +Amazing!,Keel yourself updated!,BR,5,2017-05-24,50,200.0,"(45.0, 50.0]","(175.0, 200.0]" +Love it,👍🏼👍🏼,US,5,2017-05-24,74,222.0,"(70.0, 75.0]","(200.0, 225.0]" +Classic Reddit,"Addicting, everyday usage!",US,5,2017-05-24,90,450.0,"(85.0, 90.0]","(425.0, 450.0]" +What an app!,Great for knowing whats happening on our planet,US,5,2017-05-24,95,95.0,"(90.0, 95.0]","(75.0, 100.0]" +Really very good,Very easy to use,GB,5,2017-05-24,68,136.0,"(65.0, 70.0]","(125.0, 150.0]" +Super,I can lose myself in Reddit for hours at a time. A great community,GB,5,2017-05-24,16,32.0,"(15.0, 20.0]","(25.0, 50.0]" +Favourite App,"Love this, thoroughly entertaining. App works pretty well, only had a couple of glitches but updates worked a dream.",AU,5,2017-05-24,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +One of the greatest platforms.,ILike,US,5,2017-05-24,17,51.0,"(15.0, 20.0]","(50.0, 75.0]" +Awesome,"Great app, I love it.",AU,5,2017-05-24,24,48.0,"(20.0, 25.0]","(25.0, 50.0]" +Lit,It's lit,US,5,2017-05-24,49,98.0,"(45.0, 50.0]","(75.0, 100.0]" +Pagaliau geras oficialus reddit'o apps'as!,"Gretai veikiantys, paprastas, intuityvus ir gražus. Kažkaip nesitikėjau, kad kažkas pakeis Alien Blue, bet štai :). Turbūt vienintelis minusas tai, kad dar nesutvarkytas scale'ingas didesniems ekranams. Naudojant ipad'ą vis dar per daug tuščios erdvės, kuri galėtų būti išnaudota papildomoms funkcijoms ir all-in-all ant planšečių apps'as atrodo keistai. Tik šiuo atveju Alien Blueturbūt būtų geresnis pasirinkimas.",LT,5,2017-05-24,81,162.0,"(80.0, 85.0]","(150.0, 175.0]" +Great app,Great and informative,AT,5,2017-05-24,99,396.0,"(95.0, 100.0]","(375.0, 400.0]" +Indispensable,Can't be without this app. Love it love it love it,GB,5,2017-05-24,87,348.0,"(85.0, 90.0]","(325.0, 350.0]" +Rien à dire!,"Une appli officielle très fluide, gratuite, et qui répond aux besoins de l'utilisateur lambda que je suis. +À télécharger les yeux fermés.",FR,5,2017-05-24,91,455.0,"(90.0, 95.0]","(450.0, 475.0]" +F*** 9gag,See title.,CA,5,2017-05-24,60,180.0,"(55.0, 60.0]","(175.0, 200.0]" +Fedora,Hats,US,5,2017-05-24,65,325.0,"(60.0, 65.0]","(300.0, 325.0]" +Very good!,But it would be better if there is Android version.,CN,5,2017-05-24,65,130.0,"(60.0, 65.0]","(125.0, 150.0]" +Top,"Super App, nutze sie täglich. Übersichtlichen und einfach zu bedienen.",DE,5,2017-05-24,97,388.0,"(95.0, 100.0]","(375.0, 400.0]" +Nicholas fckng Cage,It's dank brahhh favorite social media/content host,US,5,2017-05-24,20,40.0,"(15.0, 20.0]","(25.0, 50.0]" +Sum gud stuf m8,"Gud stuf, them reddit",NL,5,2017-05-24,61,122.0,"(60.0, 65.0]","(100.0, 125.0]" +Best way to waste time,My favorite thing to do when I'm bored in class,US,5,2017-05-24,83,166.0,"(80.0, 85.0]","(150.0, 175.0]" +Genial,Cada visita es aprender algo nuevo,MX,5,2017-05-24,61,183.0,"(60.0, 65.0]","(175.0, 200.0]" +Great app,I enjoy using this app,AU,5,2017-05-24,68,68.0,"(65.0, 70.0]","(50.0, 75.0]" +Good memes,That is all thank you,US,5,2017-05-24,73,73.0,"(70.0, 75.0]","(50.0, 75.0]" +Reddit,Is great,US,5,2017-05-24,45,135.0,"(40.0, 45.0]","(125.0, 150.0]" +"It's Reddit, but not the annoying mobile website that constantly prompts you to use the app",It's functional,AU,4,2017-05-24,17,17.0,"(15.0, 20.0]","(-0.5, 25.0]" +Great when I'm bored,Sure is,US,5,2017-05-24,37,111.0,"(35.0, 40.0]","(100.0, 125.0]" +Good app. Fed up with the nagging,Fed up that it nags about rating in App Store and notifications. Otherwise ok.,NO,4,2017-05-24,30,90.0,"(25.0, 30.0]","(75.0, 100.0]" +Great,Great,US,5,2017-05-24,13,39.0,"(10.0, 15.0]","(25.0, 50.0]" +Great,It's so easy to use,AU,5,2017-05-24,97,194.0,"(95.0, 100.0]","(175.0, 200.0]" +"I gave it 5 stars, need I add a description?",...,US,5,2017-05-24,8,8.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's great,It's great,US,5,2017-05-24,10,10.0,"(5.0, 10.0]","(-0.5, 25.0]" +It's madd awesome!,That's all I have to really say.,CA,5,2017-05-24,39,39.0,"(35.0, 40.0]","(25.0, 50.0]" +Fascinating,"An interesting, mostly supportive community that seems to be easy to use, and helpful to others who need it.",CA,4,2017-05-24,17,85.0,"(15.0, 20.0]","(75.0, 100.0]" +Great app!,"I love the simple layout. Took a star off because I wish there was a pull-down refresh. All-in-all, it works like a charm and I can access my favorite subreddits easily.",US,4,2017-05-24,87,435.0,"(85.0, 90.0]","(425.0, 450.0]" +Enjoying it,5 stars,CA,5,2017-05-24,78,78.0,"(75.0, 80.0]","(75.0, 100.0]" +Pretty good but update bug is annoying,"If I'm playing music and I open the app, since new update it pauses my music even when I haven't opened anything in the app. It occurs when a gif is playing when I open up the front page even when no sound is playing. (Without actually opening anything) + +iOS 10.3.2 on an iPhone 7. + +Thanks guys! Keep up the great work",AU,4,2017-05-24,9,18.0,"(5.0, 10.0]","(-0.5, 25.0]" +Love it,Love it,CA,5,2017-05-24,77,231.0,"(75.0, 80.0]","(225.0, 250.0]" +Loves,Just love it!!!!!!!!!,CA,5,2017-05-24,46,92.0,"(45.0, 50.0]","(75.0, 100.0]" +Decent app,"It's alright, nothing spectacular but it does what it can.",US,3,2017-05-24,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Works,Works,CA,5,2017-05-24,90,270.0,"(85.0, 90.0]","(250.0, 275.0]" +Da bes',Bes',US,5,2017-05-24,6,24.0,"(5.0, 10.0]","(-0.5, 25.0]" +Good app,👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻👍🏻,CA,4,2017-05-24,85,85.0,"(80.0, 85.0]","(75.0, 100.0]" +Love it,Super entertaining,US,5,2017-05-24,73,292.0,"(70.0, 75.0]","(275.0, 300.0]" +Great,Great,CA,5,2017-05-24,7,7.0,"(5.0, 10.0]","(-0.5, 25.0]" +Great stimulant,👌🏼👌🏼,US,5,2017-05-24,91,91.0,"(90.0, 95.0]","(75.0, 100.0]" +Good,Like it,US,5,2017-05-23,91,182.0,"(90.0, 95.0]","(175.0, 200.0]" +Love the app!,Love the app!,GB,5,2017-05-23,48,96.0,"(45.0, 50.0]","(75.0, 100.0]" +Very user friendly,Love it,CA,5,2017-05-23,64,320.0,"(60.0, 65.0]","(300.0, 325.0]" +No Landscape Mode,How hard is it? Not hard.,US,1,2017-05-23,65,260.0,"(60.0, 65.0]","(250.0, 275.0]" +Reddit App,Solid enough app but still needs work.,US,4,2017-05-23,6,12.0,"(5.0, 10.0]","(-0.5, 25.0]" +Works,Works,US,5,2017-05-23,78,390.0,"(75.0, 80.0]","(375.0, 400.0]" +Love ability to write as much as I want,Twitter's 140 character limit is maddening.,US,5,2017-05-23,3,6.0,"(-0.1, 5.0]","(-0.5, 25.0]" +They really wanted a review.,"Constant review spamming. + +Constant allow notification spamming. + +Requires access to my photos so I can send my wife cat gifs. I don't want to share my photos. I want to share their photos. + +Just use the mobile website.",US,1,2017-05-23,45,180.0,"(40.0, 45.0]","(175.0, 200.0]" +Solid app,"Not sure why you people are complaining about this app. Alien blue was nice, but this is just as solid of a reddit app.",US,5,2017-05-23,12,12.0,"(10.0, 15.0]","(-0.5, 25.0]" +Great,Great app x 2,CO,5,2017-05-23,59,236.0,"(55.0, 60.0]","(225.0, 250.0]" +Can't save photos anymore,Wants access to my photos.,US,1,2017-05-23,63,63.0,"(60.0, 65.0]","(50.0, 75.0]" +Great app,"Love Reddit, spend at least an hour a day browsing.",GB,5,2017-05-23,48,144.0,"(45.0, 50.0]","(125.0, 150.0]" +Aye,Reddit is nice and this gives it an easy to read format on mobile,US,5,2017-05-23,99,297.0,"(95.0, 100.0]","(275.0, 300.0]" +Best reddit app ever and I've used them all,Great interface and user friendly,US,5,2017-05-23,54,162.0,"(50.0, 55.0]","(150.0, 175.0]" +Adults Social Media!,"The grown people playground, amazing app. makes me feel like i'm not alone. 10/10 recommend. There is something for everyone. Try it!",US,5,2017-05-23,79,395.0,"(75.0, 80.0]","(375.0, 400.0]" +Best reddit app,Best reddit app hands down doesn't crash ever,US,5,2017-05-23,21,84.0,"(20.0, 25.0]","(75.0, 100.0]" +Here are some reasons why I feel Reddit is amazing!,"I've been on this site for 37 days now and I love it. I am very young for a Redditor but I still feel I fit in. A lot of people will say it's for grandmas, but it's not. Reddit's use of communities and subreddits make it easy to find post you would be interested in. + +Reddit is a perfect place to go for news, for LOLs, or curiosity. Rather than on Instagram or Twitter, I feel my posts on Reddit have always been appreciated or given constructive criticism by the general public. + +Reddit is unique in that it's not about following people and looking at what they're doing, it's about getting in touch with the Reddit communities you love the most. + +I strongly give Reddit a 5/5",US,5,2017-05-23,98,490.0,"(95.0, 100.0]","(475.0, 500.0]" +Love it,"Really enjoy the app, easy to use and navigate.",US,5,2017-05-23,81,81.0,"(80.0, 85.0]","(75.0, 100.0]" +Have fun going down the rabbit hole,The Reddit app makes it easy to find almost any topic you'd like to connect with. I have spent hours reading through different subjects on Reddit with all the user comments and posts. Basic criticism here is that I'd like to find an easy way to access the latest comments by refreshing the page. Some apps out there similar to Reddit allow you to quickly refresh by pulling down the screen; I'd like to see Reddit do the same.,US,4,2017-05-23,34,102.0,"(30.0, 35.0]","(100.0, 125.0]" +Love it,I love it,US,5,2017-05-23,67,268.0,"(65.0, 70.0]","(250.0, 275.0]" +10/10,Just 10/10,DE,5,2017-05-23,57,171.0,"(55.0, 60.0]","(150.0, 175.0]" +Great,Great app and no issues with anything. Much better than using the website version. Great and good and great and this stupid limit on submitting a rating is crazy.,US,5,2017-05-23,98,294.0,"(95.0, 100.0]","(275.0, 300.0]" +Reddit iOS,Reddit is on iOS. Now I really don't have free time.,US,4,2017-05-23,57,57.0,"(55.0, 60.0]","(50.0, 75.0]" diff --git a/results/max_score_by_app_bucket.csv b/results/max_score_by_app_bucket.csv new file mode 100644 index 0000000..3b7785d --- /dev/null +++ b/results/max_score_by_app_bucket.csv @@ -0,0 +1,21 @@ +app_bought_bucket,MAX(score) +"(-0.1, 5.0]",5 +"(10.0, 15.0]",5 +"(15.0, 20.0]",5 +"(20.0, 25.0]",5 +"(25.0, 30.0]",5 +"(30.0, 35.0]",5 +"(35.0, 40.0]",5 +"(40.0, 45.0]",5 +"(45.0, 50.0]",5 +"(5.0, 10.0]",5 +"(50.0, 55.0]",5 +"(55.0, 60.0]",5 +"(60.0, 65.0]",5 +"(65.0, 70.0]",5 +"(70.0, 75.0]",5 +"(75.0, 80.0]",5 +"(80.0, 85.0]",5 +"(85.0, 90.0]",5 +"(90.0, 95.0]",5 +"(95.0, 100.0]",5