summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/management/commands/askbot_add_test_content.py52
-rw-r--r--askbot/management/commands/askbot_create_test_fixture.py15
-rw-r--r--askbot/tests/page_load_tests.py30
-rw-r--r--askbot/tests/test_data.json4784
4 files changed, 1345 insertions, 3536 deletions
diff --git a/askbot/management/commands/askbot_add_test_content.py b/askbot/management/commands/askbot_add_test_content.py
index eb29d1c5..81bbc71e 100644
--- a/askbot/management/commands/askbot_add_test_content.py
+++ b/askbot/management/commands/askbot_add_test_content.py
@@ -1,5 +1,7 @@
from django.core.management.base import NoArgsCommand
from askbot.models import User
+from optparse import make_option
+from askbot.utils.console import choice_dialog
NUM_USERS = 40
@@ -19,18 +21,22 @@ EMAIL_TEMPLATE = "test_user_%s@askbot.org"
TITLE_TEMPLATE = "Test question title No.%s"
TAGS_TEMPLATE = ["tag-%s-0", "tag-%s-1"] # len(TAGS_TEMPLATE) tags per question
-CONTENT_TEMPLATE = """Lorem lean startup ipsum product market fit customer
- development acquihire technical cofounder. User engagement
+CONTENT_TEMPLATE = """Lorem lean startup ipsum product market fit customer
+ development acquihire technical cofounder. User engagement
**A/B** testing *shrink* a market venture capital pitch."""
-ANSWER_TEMPLATE = """Accelerator photo sharing business school drop out ramen
+ANSWER_TEMPLATE = """Accelerator photo sharing business school drop out ramen
hustle crush it revenue traction platforms."""
-COMMENT_TEMPLATE = """Main differentiators business model micro economics
+COMMENT_TEMPLATE = """Main differentiators business model micro economics
marketplace equity augmented reality human computer"""
class Command(NoArgsCommand):
+ option_list = NoArgsCommand.option_list + (
+ make_option('--noinput', action='store_false', dest='interactive', default=True,
+ help='Do not prompt the user for input of any kind.'),
+ )
def print_if_verbose(self, text):
"Only print if user chooses verbose output"
@@ -47,14 +53,14 @@ class Command(NoArgsCommand):
s_idx = str(i)
user = User.objects.create_user(USERNAME_TEMPLATE % s_idx,
EMAIL_TEMPLATE % s_idx)
- user.set_password(PASSWORD_TEMPLATE % s_idx)
+ user.set_password(PASSWORD_TEMPLATE % s_idx)
user.reputation = INITIAL_REPUTATION
- user.save()
+ user.save()
self.print_if_verbose("Created User '%s'" % user.username)
users.append(user)
return users
-
-
+
+
def create_questions(self, users):
"Create the questions and return the last one as active question"
@@ -90,7 +96,7 @@ class Command(NoArgsCommand):
active_question.title, tags,)
)
return active_question
-
+
def create_answers(self, users, active_question):
"Create the answers for the active question, return the active answer"
@@ -115,7 +121,7 @@ class Command(NoArgsCommand):
user.username
))
last_vote = ~last_vote
-
+
active_answer = user.post_answer(
question = active_question,
body_text = ANSWER_TEMPLATE,
@@ -137,7 +143,7 @@ class Command(NoArgsCommand):
user.username)
)
return active_answer
-
+
def create_comments(self, users, active_question, active_answer):
"""Create the comments for the active question and the active answer,
@@ -160,7 +166,7 @@ class Command(NoArgsCommand):
# Upvote the active answer
user.upvote(active_answer)
-
+
# Upvote active comments
if active_question_comment and active_answer_comment:
num_upvotees = NUM_COMMENTS - 1
@@ -169,22 +175,30 @@ class Command(NoArgsCommand):
user.upvote(active_answer_comment)
return active_question_comment, active_answer_comment
-
+
def handle_noargs(self, **options):
+ self.verbosity = int(options.get("verbosity", 1))
+ self.interactive = options.get("interactive")
+
+ if self.interactive:
+ answer = choice_dialog("This command will DELETE ALL DATA in the current database, and will fill the database with test data. Are you absolutely sure you want to proceed?",
+ choices = ("yes", "no", ))
+ if answer != "yes":
+ return
+
+
- self.verbosity = int(options.get("verbosity", 1))
-
# Create Users
users = self.create_users()
-
+
# Create Questions, vote for questions
active_question = self.create_questions(users)
-
+
# Create Answers, vote for the answers, vote for the active question
# vote for the active answer
active_answer = self.create_answers(users, active_question)
-
+
# Create Comments, vote for the active answer
active_question_comment, active_answer_comment = self.create_comments(
users, active_question, active_answer)
@@ -211,7 +225,7 @@ class Command(NoArgsCommand):
body_text = ANSWER_TEMPLATE
)
self.print_if_verbose("User has edited the active answer comment")
-
+
active_question_comment.user.edit_comment(
comment = active_question_comment,
body_text = ANSWER_TEMPLATE
diff --git a/askbot/management/commands/askbot_create_test_fixture.py b/askbot/management/commands/askbot_create_test_fixture.py
index 72baa7d2..23a7b2e4 100644
--- a/askbot/management/commands/askbot_create_test_fixture.py
+++ b/askbot/management/commands/askbot_create_test_fixture.py
@@ -2,6 +2,8 @@ from django.core.management.base import NoArgsCommand
from django.core import management
import os
import askbot
+from optparse import make_option
+from askbot.utils.console import choice_dialog
# FULL PATH HERE
@@ -16,6 +18,7 @@ EXCLUDE_APPS = ['contenttypes',
'askbot.activity',
'askbot.activityauditstatus',
'askbot.badgedata',
+ 'askbot.EmailFeedSetting',
'auth.Message']
@@ -25,6 +28,11 @@ class Command(NoArgsCommand):
flushes the database again.
"""
+ option_list = NoArgsCommand.option_list + (
+ make_option('--noinput', action='store_false', dest='interactive', default=True,
+ help='Do not prompt the user for input of any kind.'),
+ )
+
def print_if_verbose(self, text):
"Only print if user chooses verbose output"
if self.verbosity > 0:
@@ -33,6 +41,13 @@ class Command(NoArgsCommand):
def handle_noargs(self, **options):
self.verbosity = int(options.get("verbosity", 1))
+ self.interactive = options.get("interactive")
+
+ if self.interactive:
+ answer = choice_dialog("This command will DELETE ALL DATA in the current database, fill the database with test data and flush the test data. Are you absolutely sure you want to proceed?",
+ choices = ("yes", "no", ))
+ if answer != "yes":
+ return
# First, flush the data
self.print_if_verbose("FLUSHING THE DATABASE")
diff --git a/askbot/tests/page_load_tests.py b/askbot/tests/page_load_tests.py
index 0c8fbe9f..8e099ca3 100644
--- a/askbot/tests/page_load_tests.py
+++ b/askbot/tests/page_load_tests.py
@@ -12,6 +12,7 @@ from askbot.tests.utils import AskbotTestCase
from askbot.conf import settings as askbot_settings
from askbot.tests.utils import skipIf
import sys
+import os
def patch_jinja2():
@@ -35,6 +36,8 @@ if CMAJOR == 0 and CMINOR == 3 and CMICRO < 4:
class PageLoadTestCase(AskbotTestCase):
+ fixtures = [ os.path.join(os.path.dirname(__file__), 'test_data.json'),]
+
def try_url(
self,
url_name, status_code=200, template=None,
@@ -81,29 +84,6 @@ class PageLoadTestCase(AskbotTestCase):
else:
raise Exception('unexpected error while runnig test')
- def setUp(self):
- self.u1 = self.create_user(username='user1')
- self.u2 = self.create_user(username='user2')
- self.u3 = self.create_user(username='user3')
-
- self.question = self.post_question(user=self.u1)
-
- self.answer = self.post_answer(user=self.u1, question=self.question)
- self.answer.id = 38 # one of the tests tries this id
- self.answer.save()
-
- self.question2 = self.post_question(user=self.u2)
- self.question2.id = 2
- self.question2.save()
-
- self.question3 = self.post_question(user=self.u3)
- self.question3.id = 3
- self.question3.save()
-
- self.question17 = self.post_question(user=self.u1)
- self.question17.id = 17
- self.question17.save()
-
def test_index(self):
#todo: merge this with all reader url tests
@@ -169,7 +149,7 @@ class PageLoadTestCase(AskbotTestCase):
'answer_revisions',
status_code=status_code,
template='revisions.html',
- kwargs={'id':38}
+ kwargs={'id': 20}
)
#todo: test different sort methods and scopes
self.try_url(
@@ -267,7 +247,7 @@ class PageLoadTestCase(AskbotTestCase):
self.try_url(
'question_revisions',
status_code=status_code,
- kwargs={'id':17},
+ kwargs={'id':40},
template='revisions.html'
)
self.try_url('users',
diff --git a/askbot/tests/test_data.json b/askbot/tests/test_data.json
index 82aaacf2..75b386e3 100644
--- a/askbot/tests/test_data.json
+++ b/askbot/tests/test_data.json
@@ -1215,50 +1215,7 @@
}
},
{
- "pk": 1,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": true,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-11-28 15:09:06",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": true,
- "date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
- "location": "",
- "new_response_count": 61,
- "email": "test_user_0@askbot.org",
- "username": "test_user_0",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$3abb0$a6593061f9fb468fe4cb08bf310b5d97818a6c85",
- "silver": 0,
- "bronze": 3,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 520,
- "gravatar": "97b89e3082d2741855254393f078fe6c",
- "last_seen": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 2,
+ "pk": 9,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1268,25 +1225,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 58,
- "email": "test_user_1@askbot.org",
- "username": "test_user_1",
+ "new_response_count": 37,
+ "email": "test_user_8@askbot.org",
+ "username": "test_user_8",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$db11e$d6d648761cd7549ce370bef74b6bd9c62441d4ab",
+ "password": "sha1$6fcb7$fe736ba4d649a8dc6c4a418968f2385f0a21bbb0",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1295,13 +1252,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "6859f8f5f86ae184bab4c5e2297a6f85",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 518,
+ "gravatar": "2efc123f13b1590ab7f54b229b6ce61c",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 3,
+ "pk": 7,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1311,23 +1268,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 55,
- "email": "test_user_2@askbot.org",
- "username": "test_user_2",
+ "new_response_count": 43,
+ "email": "test_user_6@askbot.org",
+ "username": "test_user_6",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$42a42$a910ed229b3165635e3b0428339d6c16082b55ee",
+ "password": "sha1$411f1$9d201e56bb0c56ec136d1c8d934c0eab147593b7",
"silver": 0,
"bronze": 4,
"questions_per_page": 10,
@@ -1339,12 +1296,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 518,
- "gravatar": "564666778b07615b15a36ce51ac7f7d2",
- "last_seen": "2011-11-28 15:09:06"
+ "gravatar": "7ce778a81f19e1304bbcc21ee6331063",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 4,
+ "pk": 8,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1354,23 +1311,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 52,
- "email": "test_user_3@askbot.org",
- "username": "test_user_3",
+ "new_response_count": 40,
+ "email": "test_user_7@askbot.org",
+ "username": "test_user_7",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$3ea59$41ffa06b959bf63a8442b7434da510c62d2c534c",
+ "password": "sha1$eb1b8$c942013b7849d6c72efc3297b0bdd18f0c28c62f",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1382,12 +1339,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "32f9b7a8113ca3b42b63435fe4859b31",
- "last_seen": "2011-11-28 15:09:06"
+ "gravatar": "4556e9e446c727e6fdf37af356097ff2",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 5,
+ "pk": 6,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1397,25 +1354,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 49,
- "email": "test_user_4@askbot.org",
- "username": "test_user_4",
+ "new_response_count": 46,
+ "email": "test_user_5@askbot.org",
+ "username": "test_user_5",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$3733f$25fd22fc42b034a2b7fb1e68e75ca72840fd75ea",
+ "password": "sha1$5598c$4fa4cdef0a597bcf92e417da7bc3b77e78361e7e",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1424,13 +1381,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "23f7d972c0c664b156d0473c0999a697",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 496,
+ "gravatar": "9846d347d8a7d759c40cda0f3d13483f",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 6,
+ "pk": 12,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1440,23 +1397,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 46,
- "email": "test_user_5@askbot.org",
- "username": "test_user_5",
+ "new_response_count": 28,
+ "email": "test_user_11@askbot.org",
+ "username": "test_user_11",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$12d58$3fcddbacd279639c45f24ad27bb1660ee4daef14",
+ "password": "sha1$93294$3ac177911647fe34438c8dae115b20bdec80f914",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1468,12 +1425,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "9846d347d8a7d759c40cda0f3d13483f",
- "last_seen": "2011-11-28 15:09:06"
+ "gravatar": "ccb4b8fe5a80781e5051435db97becaa",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 7,
+ "pk": 10,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1483,25 +1440,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 43,
- "email": "test_user_6@askbot.org",
- "username": "test_user_6",
+ "new_response_count": 34,
+ "email": "test_user_9@askbot.org",
+ "username": "test_user_9",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$cdecb$fe149d658ad950b79aa934b42813fc5ad9064685",
+ "password": "sha1$8a201$c8572b07ccf47c55563721392ae83dc4d2a45ec9",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1510,13 +1467,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "7ce778a81f19e1304bbcc21ee6331063",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 496,
+ "gravatar": "2872546b9b5fa933413b58b18b0d56ca",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 8,
+ "pk": 2,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1526,23 +1483,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 40,
- "email": "test_user_7@askbot.org",
- "username": "test_user_7",
+ "new_response_count": 58,
+ "email": "test_user_1@askbot.org",
+ "username": "test_user_1",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$0cf08$96fd99bab5d80e77f85a2a39370ecb3f89a54447",
+ "password": "sha1$61ffc$5ad65aa128b4edc2c56b6cf960dddcad9f66ecb0",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1554,12 +1511,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "4556e9e446c727e6fdf37af356097ff2",
- "last_seen": "2011-11-28 15:09:06"
+ "gravatar": "6859f8f5f86ae184bab4c5e2297a6f85",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 9,
+ "pk": 14,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1569,25 +1526,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 37,
- "email": "test_user_8@askbot.org",
- "username": "test_user_8",
+ "new_response_count": 22,
+ "email": "test_user_13@askbot.org",
+ "username": "test_user_13",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$dc471$59016c44a4e0a48d982c014ed0313b8bfa337435",
+ "password": "sha1$6bde8$2b1182edb0e72c5db59b7b76386fbafc6298b5c4",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1596,13 +1553,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "2efc123f13b1590ab7f54b229b6ce61c",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 496,
+ "gravatar": "77dc2a59fecaa4eeb06fa9f563ebf669",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 10,
+ "pk": 15,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1612,25 +1569,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 34,
- "email": "test_user_9@askbot.org",
- "username": "test_user_9",
+ "new_response_count": 19,
+ "email": "test_user_14@askbot.org",
+ "username": "test_user_14",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$f0a49$bc9bc856ef957449d0b2afde51f6058a02168e9f",
+ "password": "sha1$7f38e$5933ca3795008d9e0114244864faac1d743155be",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1639,9 +1596,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "2872546b9b5fa933413b58b18b0d56ca",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 518,
+ "gravatar": "0a4b98e7ec7867d097ef4ee1c3d23104",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
@@ -1655,14 +1612,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 31,
"email": "test_user_10@askbot.org",
@@ -1671,7 +1628,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$a4044$141fd1e6a7a1d92d6822b09dbf47d02858df757a",
+ "password": "sha1$f90ee$15da682179f192e85dec5325dafd531a4efd10b5",
"silver": 0,
"bronze": 4,
"questions_per_page": 10,
@@ -1684,11 +1641,11 @@
"ignored_tags": "",
"reputation": 518,
"gravatar": "83458295fcf6dcdc6ee5815491cbee3f",
- "last_seen": "2011-11-28 15:09:06"
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 12,
+ "pk": 4,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1698,23 +1655,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 28,
- "email": "test_user_11@askbot.org",
- "username": "test_user_11",
+ "new_response_count": 52,
+ "email": "test_user_3@askbot.org",
+ "username": "test_user_3",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$f1320$7a17dcba0c5ff1109e55746584b4208b5611cb1b",
+ "password": "sha1$64fe9$44f013204511c63ce0cbdb0c7a1f2c81e44a5c3e",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1726,12 +1683,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "ccb4b8fe5a80781e5051435db97becaa",
- "last_seen": "2011-11-28 15:09:06"
+ "gravatar": "32f9b7a8113ca3b42b63435fe4859b31",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 13,
+ "pk": 19,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1741,23 +1698,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 25,
- "email": "test_user_12@askbot.org",
- "username": "test_user_12",
+ "new_response_count": 7,
+ "email": "test_user_18@askbot.org",
+ "username": "test_user_18",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$63ffb$53962ff094729dae1881d2210a8c65250b75b7d7",
+ "password": "sha1$6629c$0f6ae97e0ebcb09c23469abef32080102bafa4a0",
"silver": 0,
"bronze": 4,
"questions_per_page": 10,
@@ -1769,40 +1726,40 @@
"real_name": "",
"ignored_tags": "",
"reputation": 518,
- "gravatar": "6a70087a63bbc7c6a4028365ed4e1950",
- "last_seen": "2011-11-28 15:09:06"
+ "gravatar": "ec0f9a859b26512fdcc994516be5e752",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 14,
+ "pk": 20,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 0,
+ "gold": 2,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 22,
- "email": "test_user_13@askbot.org",
- "username": "test_user_13",
+ "new_response_count": 0,
+ "email": "test_user_19@askbot.org",
+ "username": "test_user_19",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$47b18$b1e1c28e4a9105b3fc98634dd5e91211be01ae56",
- "silver": 0,
- "bronze": 1,
+ "password": "sha1$0ef82$173d590b1c23c9f6c7b6cfb1196498a53cf0be2b",
+ "silver": 2,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1811,13 +1768,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "77dc2a59fecaa4eeb06fa9f563ebf669",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 713,
+ "gravatar": "b75bdbeb7354745fdf9fdf72200eb799",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 15,
+ "pk": 18,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1827,25 +1784,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 19,
- "email": "test_user_14@askbot.org",
- "username": "test_user_14",
+ "new_response_count": 10,
+ "email": "test_user_17@askbot.org",
+ "username": "test_user_17",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$150fb$3e5b7c25b3cd64f90f4eccf8c67db57f3c092674",
+ "password": "sha1$55744$75ca9a6b006211c4870dee080e4158db26c5d4c1",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1854,9 +1811,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "0a4b98e7ec7867d097ef4ee1c3d23104",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 496,
+ "gravatar": "b6778982e44fe0fbd78e3496069f1352",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
@@ -1870,14 +1827,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 16,
"email": "test_user_15@askbot.org",
@@ -1886,7 +1843,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$ab78e$0496711e921dadec232aa567b56f5ccb54f174c9",
+ "password": "sha1$c3c00$0f4108eb249034369125c3a299715f47c7da84c3",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1899,39 +1856,39 @@
"ignored_tags": "",
"reputation": 496,
"gravatar": "6c5d8511aa4f85cd75a16dbb3e03c5c7",
- "last_seen": "2011-11-28 15:09:06"
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 17,
+ "pk": 1,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
"gold": 0,
- "is_staff": false,
+ "is_staff": true,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
- "is_superuser": false,
+ "is_superuser": true,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 13,
- "email": "test_user_16@askbot.org",
- "username": "test_user_16",
+ "new_response_count": 61,
+ "email": "test_user_0@askbot.org",
+ "username": "test_user_0",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$e6bb6$3e5f6bdb177211ece81eb47452b1d6608f179a3d",
+ "password": "sha1$ea5da$c3bdc0df82479cc3a1498e0c4288ae8a718056b7",
"silver": 0,
- "bronze": 4,
+ "bronze": 3,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1940,13 +1897,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "f2174ffb3833816753de7f596f69468b",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 520,
+ "gravatar": "97b89e3082d2741855254393f078fe6c",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 18,
+ "pk": 17,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1956,25 +1913,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:06",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:06",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 10,
- "email": "test_user_17@askbot.org",
- "username": "test_user_17",
+ "new_response_count": 13,
+ "email": "test_user_16@askbot.org",
+ "username": "test_user_16",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$95108$2ed768fc01242d0b64e6213d3e0486cd8781f844",
+ "password": "sha1$817e3$44ea366ab209461095f1c6f236c156166cc17a7f",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1983,13 +1940,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "b6778982e44fe0fbd78e3496069f1352",
- "last_seen": "2011-11-28 15:09:06"
+ "reputation": 518,
+ "gravatar": "f2174ffb3833816753de7f596f69468b",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 19,
+ "pk": 21,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1999,25 +1956,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 7,
- "email": "test_user_18@askbot.org",
- "username": "test_user_18",
+ "new_response_count": 0,
+ "email": "test_user_20@askbot.org",
+ "username": "test_user_20",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$a09aa$a08a53953c46202136a4f239d0206e8706fd82c2",
+ "password": "sha1$59574$54ce25571357313105b19a39daa7dfedeb369fc8",
"silver": 0,
- "bronze": 4,
+ "bronze": 2,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2026,40 +1983,40 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "ec0f9a859b26512fdcc994516be5e752",
- "last_seen": "2011-11-28 15:09:07"
+ "reputation": 509,
+ "gravatar": "4f877025b0ab869a9e9400e28ed3eab5",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 20,
+ "pk": 5,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 2,
+ "gold": 0,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:00",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:00",
"location": "",
- "new_response_count": 0,
- "email": "test_user_19@askbot.org",
- "username": "test_user_19",
+ "new_response_count": 49,
+ "email": "test_user_4@askbot.org",
+ "username": "test_user_4",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$0b884$f10f8f19119f573810eb83a95c0af40a10755638",
- "silver": 2,
+ "password": "sha1$7bd4f$4fed2fd2f0a50c59a3e1c7f5bc2d245f185e6941",
+ "silver": 0,
"bronze": 4,
"questions_per_page": 10,
"about": "",
@@ -2069,13 +2026,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 713,
- "gravatar": "b75bdbeb7354745fdf9fdf72200eb799",
- "last_seen": "2011-11-28 15:09:07"
+ "reputation": 518,
+ "gravatar": "23f7d972c0c664b156d0473c0999a697",
+ "last_seen": "2011-11-29 11:22:00"
}
},
{
- "pk": 21,
+ "pk": 23,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2085,23 +2042,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 0,
- "email": "test_user_20@askbot.org",
- "username": "test_user_20",
+ "email": "test_user_22@askbot.org",
+ "username": "test_user_22",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$f03b3$5c6cca3289358c9a928ad797b50fadc714807272",
+ "password": "sha1$f7180$8502442f4727bdb5cc22bb1a5c920b8d85ede44f",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2113,8 +2070,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "4f877025b0ab869a9e9400e28ed3eab5",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "a5ddb8c0343a8aa84250f50535368aaf",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
@@ -2128,14 +2085,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 0,
"email": "test_user_21@askbot.org",
@@ -2144,7 +2101,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$c7ac1$6f10ad56555949d3970103406478b07b4de897a0",
+ "password": "sha1$51fa7$cff0d645baf77691f67eec2bb34ee2e0b9e08108",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2157,11 +2114,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "76b52b8b8655a296120d87715dbdd3e6",
- "last_seen": "2011-11-28 15:09:07"
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 23,
+ "pk": 25,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2171,23 +2128,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 0,
- "email": "test_user_22@askbot.org",
- "username": "test_user_22",
+ "email": "test_user_24@askbot.org",
+ "username": "test_user_24",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$845fc$28b30b57c027d8076816ddc11e99b020cd5a1318",
+ "password": "sha1$e5279$0c376c7f9e7912cdcb9a8e8e5f7227c52c6e15ef",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2199,8 +2156,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "a5ddb8c0343a8aa84250f50535368aaf",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "9273b4ea8133885f6864afbc27b17a6b",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
@@ -2214,14 +2171,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 0,
"email": "test_user_23@askbot.org",
@@ -2230,7 +2187,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$615db$804cb797c18603d318955636ddb8d2330159a623",
+ "password": "sha1$de87a$3bc6401bdfc6775887c3ecbec09fa394eb634a83",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2243,11 +2200,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "0b7ee0d2855d536bfcd272fe59e51e85",
- "last_seen": "2011-11-28 15:09:07"
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 25,
+ "pk": 27,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2257,23 +2214,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_24@askbot.org",
- "username": "test_user_24",
+ "email": "test_user_26@askbot.org",
+ "username": "test_user_26",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$26997$557592988b737fdd3e558ea00d1350c024786ddb",
+ "password": "sha1$4cbd4$032e616ef2c08f66347037f0cce9af0713076140",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2285,8 +2242,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "9273b4ea8133885f6864afbc27b17a6b",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "2089b5251d55cadb48417b9d2b78b4b2",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
@@ -2300,14 +2257,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
"new_response_count": 0,
"email": "test_user_25@askbot.org",
@@ -2316,7 +2273,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$15b61$20e4058ec22ad07e95342e7ff289ef9544f36738",
+ "password": "sha1$08d97$9ac274dc54da11e83f0dcf1991f57dbd3fbb95a7",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2329,11 +2286,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "3f02ce1295ff1104020fb76e0a713f19",
- "last_seen": "2011-11-28 15:09:07"
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
- "pk": 27,
+ "pk": 29,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2343,23 +2300,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_26@askbot.org",
- "username": "test_user_26",
+ "email": "test_user_28@askbot.org",
+ "username": "test_user_28",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$59705$4ed8a477fc298961ae408ad678e69f8bf63f0395",
+ "password": "sha1$d4453$8074db2f03a12e0ff84956ba3f80a863f02135f4",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2371,8 +2328,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "2089b5251d55cadb48417b9d2b78b4b2",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "7ea520152dac05fa69541ffe139bcca2",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
@@ -2386,14 +2343,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
"email": "test_user_27@askbot.org",
@@ -2402,7 +2359,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$5c4b7$94c71dfee6766662909353c14528daa8caab001d",
+ "password": "sha1$6435c$c0148935a628c8430570c8e5ba1ac4dc425b03a9",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2415,11 +2372,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "489074a9a117be5320690bd6977ece9e",
- "last_seen": "2011-11-28 15:09:07"
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 29,
+ "pk": 31,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2429,23 +2386,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_28@askbot.org",
- "username": "test_user_28",
+ "email": "test_user_30@askbot.org",
+ "username": "test_user_30",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$9b1d8$227390a82f10d856d94cdf5277cfb180d06910dc",
+ "password": "sha1$491b8$601af2150570d0a6a6994348cffcb98e8bffaa62",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2457,8 +2414,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "7ea520152dac05fa69541ffe139bcca2",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "4db2d8490aa35168e331b5ee5a0fd63b",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
@@ -2472,14 +2429,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
"email": "test_user_29@askbot.org",
@@ -2488,7 +2445,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$ac9f1$0e1e846588267cdd8229ad157b2c42644a657003",
+ "password": "sha1$7b80f$c44e6b4fd46f296e04b2b05b1b0d35c11eace4c9",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2501,11 +2458,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "98be33fd4cf91cd0d26e8bbdda1691f2",
- "last_seen": "2011-11-28 15:09:07"
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 31,
+ "pk": 13,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2515,25 +2472,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:01",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:01",
"location": "",
- "new_response_count": 0,
- "email": "test_user_30@askbot.org",
- "username": "test_user_30",
+ "new_response_count": 25,
+ "email": "test_user_12@askbot.org",
+ "username": "test_user_12",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$1d39d$0bf5eb23ac8dc954c79c68bd79b98aca26bed966",
+ "password": "sha1$06cc8$75eb8ea982a0c7fa2d508133df9edba158ffae36",
"silver": 0,
- "bronze": 2,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2542,9 +2499,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 509,
- "gravatar": "4db2d8490aa35168e331b5ee5a0fd63b",
- "last_seen": "2011-11-28 15:09:07"
+ "reputation": 518,
+ "gravatar": "6a70087a63bbc7c6a4028365ed4e1950",
+ "last_seen": "2011-11-29 11:22:01"
}
},
{
@@ -2558,14 +2515,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
"email": "test_user_31@askbot.org",
@@ -2574,7 +2531,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$e4b73$904a5f9e3ce706973794b89490b29bbe1506a05a",
+ "password": "sha1$6c784$fabf3831df0bc28d7116e5ecead54f70f52b6af6",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2587,11 +2544,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "e1646ca0338becadfc188108ef11a963",
- "last_seen": "2011-11-28 15:09:07"
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 33,
+ "pk": 37,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2601,23 +2558,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_32@askbot.org",
- "username": "test_user_32",
+ "email": "test_user_36@askbot.org",
+ "username": "test_user_36",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$22c62$598d4b1980e44b47fb2d9f01ee41e3f0b7635f9a",
+ "password": "sha1$91100$2e7c3a6a0e1c53e64dddcc681995d8a8f6cee1c2",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2629,12 +2586,55 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "1f4576d9b347126a61b9b6ca39aaf46d",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "906f494d5d4015f2d7d13a781d5dd2e7",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 34,
+ "pk": 3,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-29 11:22:00",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-29 11:22:00",
+ "location": "",
+ "new_response_count": 55,
+ "email": "test_user_2@askbot.org",
+ "username": "test_user_2",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$2f111$37691e24cf2f74476313cbf132ca032a36517690",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "564666778b07615b15a36ce51ac7f7d2",
+ "last_seen": "2011-11-29 11:22:00"
+ }
+ },
+ {
+ "pk": 38,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2644,23 +2644,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_33@askbot.org",
- "username": "test_user_33",
+ "email": "test_user_37@askbot.org",
+ "username": "test_user_37",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$74209$a38a886c4b7b13750f1a83e46addd1485594bbf6",
+ "password": "sha1$c882c$efdc667baf367463332f96139e8850b437dcfd49",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2672,40 +2672,40 @@
"real_name": "",
"ignored_tags": "",
"reputation": 498,
- "gravatar": "a3d70733b55cca2d4e94e42b246ce2af",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "641aca2f46519377ccd0500b6ab96ef0",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 35,
+ "pk": 40,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 0,
+ "gold": 1,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_34@askbot.org",
- "username": "test_user_34",
+ "email": "test_user_39@askbot.org",
+ "username": "test_user_39",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$7ad5b$343f8f9bdb78b9dba08d1ec94e2105eb0de7648d",
- "silver": 0,
- "bronze": 2,
+ "password": "sha1$60a6a$c9fba8b461a8b5d566f6296ed8eb3937a1bea923",
+ "silver": 1,
+ "bronze": 5,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2714,13 +2714,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 509,
- "gravatar": "a0a078c93e5bae4f19920e9f0ab6bd1d",
- "last_seen": "2011-11-28 15:09:07"
+ "reputation": 702,
+ "gravatar": "43d568bd3fb5f364a3e3a5aa2db795e4",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 36,
+ "pk": 33,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2730,25 +2730,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_35@askbot.org",
- "username": "test_user_35",
+ "email": "test_user_32@askbot.org",
+ "username": "test_user_32",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$6d439$671c16fa03616d4e14a07df46be7b923f590b2c5",
+ "password": "sha1$79b0d$c792ceafd2ae759c5b2c6952e83b07396372b569",
"silver": 0,
- "bronze": 1,
+ "bronze": 2,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2757,13 +2757,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 498,
- "gravatar": "7cb624e123b95ef9694b64823b0fb0f1",
- "last_seen": "2011-11-28 15:09:07"
+ "reputation": 509,
+ "gravatar": "1f4576d9b347126a61b9b6ca39aaf46d",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 37,
+ "pk": 39,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2773,23 +2773,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_36@askbot.org",
- "username": "test_user_36",
+ "email": "test_user_38@askbot.org",
+ "username": "test_user_38",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$e364f$f8ba2008db0ca400b375339a1d593680bde8fd9a",
+ "password": "sha1$9af1a$f8d569c6b7f5543edd1da16054d99d9e50f032b9",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2801,12 +2801,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "906f494d5d4015f2d7d13a781d5dd2e7",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "fcc3f6722e53bafdacdfea9ced92bbff",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 38,
+ "pk": 34,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2816,23 +2816,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_37@askbot.org",
- "username": "test_user_37",
+ "email": "test_user_33@askbot.org",
+ "username": "test_user_33",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$aa03d$73991a21b4b07510386790fd82bec2252c63daa8",
+ "password": "sha1$461f2$0020c7758230a00f930867fe7c5bddf3cfb8a4ae",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2844,12 +2844,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 498,
- "gravatar": "641aca2f46519377ccd0500b6ab96ef0",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "a3d70733b55cca2d4e94e42b246ce2af",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 39,
+ "pk": 35,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2859,23 +2859,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_38@askbot.org",
- "username": "test_user_38",
+ "email": "test_user_34@askbot.org",
+ "username": "test_user_34",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$397fe$be8a70aa25ab7266f0e2c08999d039c8d00a0a94",
+ "password": "sha1$ede22$54addd84f03b7c654f112d102f940f09211b9902",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2887,40 +2887,40 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "fcc3f6722e53bafdacdfea9ced92bbff",
- "last_seen": "2011-11-28 15:09:07"
+ "gravatar": "a0a078c93e5bae4f19920e9f0ab6bd1d",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
- "pk": 40,
+ "pk": 36,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 1,
+ "gold": 0,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-28 15:09:07",
+ "date_joined": "2011-11-29 11:22:02",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-28 15:09:07",
+ "last_login": "2011-11-29 11:22:02",
"location": "",
"new_response_count": 0,
- "email": "test_user_39@askbot.org",
- "username": "test_user_39",
+ "email": "test_user_35@askbot.org",
+ "username": "test_user_35",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$e520d$9a217a27c0c31d1ae29cc81908e786c5305b86e3",
- "silver": 1,
- "bronze": 5,
+ "password": "sha1$0952b$51d2fd274e952d6ad6012bc79fc883550dbf45ba",
+ "silver": 0,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2929,9 +2929,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 702,
- "gravatar": "43d568bd3fb5f364a3e3a5aa2db795e4",
- "last_seen": "2011-11-28 15:09:07"
+ "reputation": 498,
+ "gravatar": "7cb624e123b95ef9694b64823b0fb0f1",
+ "last_seen": "2011-11-29 11:22:02"
}
},
{
@@ -3901,10 +3901,10 @@
"is_anonymous": false,
"author": 40,
"tagnames": "tag-40-0 tag-40-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.EDITED",
"question": 40,
- "revised_at": "2011-11-28 15:09:31",
+ "revised_at": "2011-11-29 11:22:44",
"summary": "EDITED",
"revision_type": 1,
"answer": null,
@@ -3918,10 +3918,10 @@
"is_anonymous": false,
"author": 20,
"tagnames": "",
- "text": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "text": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:32",
+ "revised_at": "2011-11-29 11:22:45",
"summary": "No.2 Revision",
"revision_type": 2,
"answer": 20,
@@ -3929,50 +3929,16 @@
}
},
{
- "pk": 1,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 1,
- "tagnames": "tag-1-0 tag-1-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.1",
- "question": 1,
- "revised_at": "2011-11-28 15:09:07",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 2,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 2,
- "tagnames": "tag-2-0 tag-2-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.2",
- "question": 2,
- "revised_at": "2011-11-28 15:09:09",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
"pk": 3,
"model": "askbot.postrevision",
"fields": {
"is_anonymous": false,
"author": 3,
"tagnames": "tag-3-0 tag-3-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.3",
"question": 3,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:04",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -3986,10 +3952,10 @@
"is_anonymous": false,
"author": 4,
"tagnames": "tag-4-0 tag-4-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.4",
"question": 4,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:05",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4003,10 +3969,10 @@
"is_anonymous": false,
"author": 5,
"tagnames": "tag-5-0 tag-5-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.5",
"question": 5,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:06",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4020,10 +3986,10 @@
"is_anonymous": false,
"author": 6,
"tagnames": "tag-6-0 tag-6-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.6",
"question": 6,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:07",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4037,10 +4003,10 @@
"is_anonymous": false,
"author": 7,
"tagnames": "tag-7-0 tag-7-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.7",
"question": 7,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:07",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4054,10 +4020,10 @@
"is_anonymous": false,
"author": 8,
"tagnames": "tag-8-0 tag-8-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.8",
"question": 8,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:08",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4071,10 +4037,10 @@
"is_anonymous": false,
"author": 9,
"tagnames": "tag-9-0 tag-9-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.9",
"question": 9,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:09",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4088,10 +4054,10 @@
"is_anonymous": false,
"author": 10,
"tagnames": "tag-10-0 tag-10-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.10",
"question": 10,
- "revised_at": "2011-11-28 15:09:10",
+ "revised_at": "2011-11-29 11:22:09",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4105,10 +4071,10 @@
"is_anonymous": false,
"author": 11,
"tagnames": "tag-11-0 tag-11-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.11",
"question": 11,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:09",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4122,10 +4088,10 @@
"is_anonymous": false,
"author": 12,
"tagnames": "tag-12-0 tag-12-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.12",
"question": 12,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:09",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4139,10 +4105,10 @@
"is_anonymous": false,
"author": 13,
"tagnames": "tag-13-0 tag-13-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.13",
"question": 13,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:10",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4156,10 +4122,10 @@
"is_anonymous": false,
"author": 14,
"tagnames": "tag-14-0 tag-14-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.14",
"question": 14,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:10",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4173,10 +4139,10 @@
"is_anonymous": false,
"author": 15,
"tagnames": "tag-15-0 tag-15-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.15",
"question": 15,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:10",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4190,10 +4156,10 @@
"is_anonymous": false,
"author": 16,
"tagnames": "tag-16-0 tag-16-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.16",
"question": 16,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:10",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4207,10 +4173,10 @@
"is_anonymous": false,
"author": 17,
"tagnames": "tag-17-0 tag-17-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.17",
"question": 17,
- "revised_at": "2011-11-28 15:09:11",
+ "revised_at": "2011-11-29 11:22:10",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4224,10 +4190,10 @@
"is_anonymous": false,
"author": 18,
"tagnames": "tag-18-0 tag-18-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.18",
"question": 18,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:11",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4241,10 +4207,10 @@
"is_anonymous": false,
"author": 19,
"tagnames": "tag-19-0 tag-19-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.19",
"question": 19,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:11",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4258,10 +4224,10 @@
"is_anonymous": false,
"author": 20,
"tagnames": "tag-20-0 tag-20-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.20",
"question": 20,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:11",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4275,10 +4241,10 @@
"is_anonymous": false,
"author": 21,
"tagnames": "tag-21-0 tag-21-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.21",
"question": 21,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:11",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4292,10 +4258,10 @@
"is_anonymous": false,
"author": 22,
"tagnames": "tag-22-0 tag-22-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.22",
"question": 22,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:12",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4309,10 +4275,10 @@
"is_anonymous": false,
"author": 23,
"tagnames": "tag-23-0 tag-23-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.23",
"question": 23,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:12",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4320,16 +4286,33 @@
}
},
{
+ "pk": 51,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 11,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-29 11:22:20",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 11,
+ "revision": 1
+ }
+ },
+ {
"pk": 24,
"model": "askbot.postrevision",
"fields": {
"is_anonymous": false,
"author": 24,
"tagnames": "tag-24-0 tag-24-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.24",
"question": 24,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:12",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4343,10 +4326,10 @@
"is_anonymous": false,
"author": 25,
"tagnames": "tag-25-0 tag-25-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.25",
"question": 25,
- "revised_at": "2011-11-28 15:09:12",
+ "revised_at": "2011-11-29 11:22:12",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4360,10 +4343,10 @@
"is_anonymous": false,
"author": 26,
"tagnames": "tag-26-0 tag-26-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.26",
"question": 26,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:13",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4377,10 +4360,10 @@
"is_anonymous": false,
"author": 27,
"tagnames": "tag-27-0 tag-27-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.27",
"question": 27,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:13",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4394,10 +4377,10 @@
"is_anonymous": false,
"author": 28,
"tagnames": "tag-28-0 tag-28-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.28",
"question": 28,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:13",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4411,10 +4394,10 @@
"is_anonymous": false,
"author": 29,
"tagnames": "tag-29-0 tag-29-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.29",
"question": 29,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:13",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4428,10 +4411,10 @@
"is_anonymous": false,
"author": 30,
"tagnames": "tag-30-0 tag-30-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.30",
"question": 30,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:13",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4445,10 +4428,10 @@
"is_anonymous": false,
"author": 31,
"tagnames": "tag-31-0 tag-31-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.31",
"question": 31,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:14",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4462,10 +4445,10 @@
"is_anonymous": false,
"author": 32,
"tagnames": "tag-32-0 tag-32-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.32",
"question": 32,
- "revised_at": "2011-11-28 15:09:13",
+ "revised_at": "2011-11-29 11:22:14",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4479,10 +4462,10 @@
"is_anonymous": false,
"author": 33,
"tagnames": "tag-33-0 tag-33-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.33",
"question": 33,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:14",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4496,10 +4479,10 @@
"is_anonymous": false,
"author": 34,
"tagnames": "tag-34-0 tag-34-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.34",
"question": 34,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:14",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4513,10 +4496,10 @@
"is_anonymous": false,
"author": 35,
"tagnames": "tag-35-0 tag-35-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.35",
"question": 35,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:15",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4530,10 +4513,10 @@
"is_anonymous": false,
"author": 36,
"tagnames": "tag-36-0 tag-36-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.36",
"question": 36,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:15",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4547,10 +4530,10 @@
"is_anonymous": false,
"author": 37,
"tagnames": "tag-37-0 tag-37-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.37",
"question": 37,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:15",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4564,10 +4547,10 @@
"is_anonymous": false,
"author": 38,
"tagnames": "tag-38-0 tag-38-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.38",
"question": 38,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:15",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4581,10 +4564,10 @@
"is_anonymous": false,
"author": 39,
"tagnames": "tag-39-0 tag-39-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.39",
"question": 39,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:16",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4598,10 +4581,10 @@
"is_anonymous": false,
"author": 40,
"tagnames": "tag-40-0 tag-40-1",
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"title": "Test question title No.40",
"question": 40,
- "revised_at": "2011-11-28 15:09:14",
+ "revised_at": "2011-11-29 11:22:16",
"summary": "initial version",
"revision_type": 1,
"answer": null,
@@ -4615,10 +4598,10 @@
"is_anonymous": false,
"author": 1,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:15",
+ "revised_at": "2011-11-29 11:22:16",
"summary": "initial version",
"revision_type": 2,
"answer": 1,
@@ -4632,10 +4615,10 @@
"is_anonymous": false,
"author": 2,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:15",
+ "revised_at": "2011-11-29 11:22:16",
"summary": "initial version",
"revision_type": 2,
"answer": 2,
@@ -4649,10 +4632,10 @@
"is_anonymous": false,
"author": 3,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:15",
+ "revised_at": "2011-11-29 11:22:17",
"summary": "initial version",
"revision_type": 2,
"answer": 3,
@@ -4666,10 +4649,10 @@
"is_anonymous": false,
"author": 4,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:15",
+ "revised_at": "2011-11-29 11:22:17",
"summary": "initial version",
"revision_type": 2,
"answer": 4,
@@ -4683,10 +4666,10 @@
"is_anonymous": false,
"author": 5,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:15",
+ "revised_at": "2011-11-29 11:22:17",
"summary": "initial version",
"revision_type": 2,
"answer": 5,
@@ -4700,10 +4683,10 @@
"is_anonymous": false,
"author": 6,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:16",
+ "revised_at": "2011-11-29 11:22:18",
"summary": "initial version",
"revision_type": 2,
"answer": 6,
@@ -4717,10 +4700,10 @@
"is_anonymous": false,
"author": 7,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:16",
+ "revised_at": "2011-11-29 11:22:18",
"summary": "initial version",
"revision_type": 2,
"answer": 7,
@@ -4734,10 +4717,10 @@
"is_anonymous": false,
"author": 8,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:16",
+ "revised_at": "2011-11-29 11:22:19",
"summary": "initial version",
"revision_type": 2,
"answer": 8,
@@ -4751,10 +4734,10 @@
"is_anonymous": false,
"author": 9,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:17",
+ "revised_at": "2011-11-29 11:22:19",
"summary": "initial version",
"revision_type": 2,
"answer": 9,
@@ -4768,10 +4751,10 @@
"is_anonymous": false,
"author": 10,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:17",
+ "revised_at": "2011-11-29 11:22:20",
"summary": "initial version",
"revision_type": 2,
"answer": 10,
@@ -4779,33 +4762,16 @@
}
},
{
- "pk": 51,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 11,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-28 15:09:17",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 11,
- "revision": 1
- }
- },
- {
"pk": 52,
"model": "askbot.postrevision",
"fields": {
"is_anonymous": false,
"author": 12,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:18",
+ "revised_at": "2011-11-29 11:22:21",
"summary": "initial version",
"revision_type": 2,
"answer": 12,
@@ -4819,10 +4785,10 @@
"is_anonymous": false,
"author": 13,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:18",
+ "revised_at": "2011-11-29 11:22:22",
"summary": "initial version",
"revision_type": 2,
"answer": 13,
@@ -4836,10 +4802,10 @@
"is_anonymous": false,
"author": 14,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:18",
+ "revised_at": "2011-11-29 11:22:22",
"summary": "initial version",
"revision_type": 2,
"answer": 14,
@@ -4847,19 +4813,19 @@
}
},
{
- "pk": 55,
+ "pk": 1,
"model": "askbot.postrevision",
"fields": {
"is_anonymous": false,
- "author": 15,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-28 15:09:19",
+ "author": 1,
+ "tagnames": "tag-1-0 tag-1-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.1",
+ "question": 1,
+ "revised_at": "2011-11-29 11:22:02",
"summary": "initial version",
- "revision_type": 2,
- "answer": 15,
+ "revision_type": 1,
+ "answer": null,
"revision": 1
}
},
@@ -4870,10 +4836,10 @@
"is_anonymous": false,
"author": 16,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:19",
+ "revised_at": "2011-11-29 11:22:24",
"summary": "initial version",
"revision_type": 2,
"answer": 16,
@@ -4887,10 +4853,10 @@
"is_anonymous": false,
"author": 17,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:20",
+ "revised_at": "2011-11-29 11:22:25",
"summary": "initial version",
"revision_type": 2,
"answer": 17,
@@ -4904,10 +4870,10 @@
"is_anonymous": false,
"author": 18,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:20",
+ "revised_at": "2011-11-29 11:22:25",
"summary": "initial version",
"revision_type": 2,
"answer": 18,
@@ -4921,10 +4887,10 @@
"is_anonymous": false,
"author": 19,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:21",
+ "revised_at": "2011-11-29 11:22:26",
"summary": "initial version",
"revision_type": 2,
"answer": 19,
@@ -4938,10 +4904,10 @@
"is_anonymous": false,
"author": 20,
"tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"title": "",
"question": null,
- "revised_at": "2011-11-28 15:09:21",
+ "revised_at": "2011-11-29 11:22:27",
"summary": "initial version",
"revision_type": 2,
"answer": 20,
@@ -4949,2203 +4915,37 @@
}
},
{
- "pk": 1,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 1,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 2,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 1,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 3,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 1,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 4,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 1,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 5,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 1,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 6,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 2,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 7,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 2,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 8,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 2,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 9,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 2,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 10,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 2,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 11,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 3,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 12,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 3,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 13,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 3,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 14,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 3,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 15,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 3,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 16,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 4,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 17,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 4,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 18,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 4,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 19,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 4,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 20,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 4,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 21,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 5,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 22,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 5,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 23,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 5,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 24,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 5,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 25,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 5,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 26,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 6,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 27,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 6,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 28,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 6,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 29,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 6,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 30,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 6,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 31,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 7,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 32,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 7,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 33,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 7,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 34,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 7,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 35,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 7,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 36,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 8,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 37,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 8,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 38,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 8,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 39,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 8,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 40,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 8,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 41,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 9,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 42,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 9,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 43,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 9,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 44,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 9,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 45,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 9,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 46,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 10,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 47,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 10,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 48,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 10,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 49,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 10,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 50,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 10,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 51,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 11,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 52,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 11,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 53,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 11,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 54,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 11,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
"pk": 55,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 11,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 56,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 12,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 57,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 12,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 58,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 12,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 59,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 12,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 60,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 12,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 61,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 13,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 62,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 13,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 63,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 13,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 64,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 13,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 65,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 13,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 66,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 14,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 67,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 14,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 68,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 14,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 69,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 14,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 70,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 14,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 71,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 15,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 72,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 15,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 73,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 15,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 74,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 15,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 75,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 15,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 76,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 16,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 77,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 16,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 78,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 16,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 79,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 16,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 80,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 16,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 81,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 17,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 82,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 17,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 83,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 17,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 84,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 17,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 85,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 17,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:06"
- }
- },
- {
- "pk": 86,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 18,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 87,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 18,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 88,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 18,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 89,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 18,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 90,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 18,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 91,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 19,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 92,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 19,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 93,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 19,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 94,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 19,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 95,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 19,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 96,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 20,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 97,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 20,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 98,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 20,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 99,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 20,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 100,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 20,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 101,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 21,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 102,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 21,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 103,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 21,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 104,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 21,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 105,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 21,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 106,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 22,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 107,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 22,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 108,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 22,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 109,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 22,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 110,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 22,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 111,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 23,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 112,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 23,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 113,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 23,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 114,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 23,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 115,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 23,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 116,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 24,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 117,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 24,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 118,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 24,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 119,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 24,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 120,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 24,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 121,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 25,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 122,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 25,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 123,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 25,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 124,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 25,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 125,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 25,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 126,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 26,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 127,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 26,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 128,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 26,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 129,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 26,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 130,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 26,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 131,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 27,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 132,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 27,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 133,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 27,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 134,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 27,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 135,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 27,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 136,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 28,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 137,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 28,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 138,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 28,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 139,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 28,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 140,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 28,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 141,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 29,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 142,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 29,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 143,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 29,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 144,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 29,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 145,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 29,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 146,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 30,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 147,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 30,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 148,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 30,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 149,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 30,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 150,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 30,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 151,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 31,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 152,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 31,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 153,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 31,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 154,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 31,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 155,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 31,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 156,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 32,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 157,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 32,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 158,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 32,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 159,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 32,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 160,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 32,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 161,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 33,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 162,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 33,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 163,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 33,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 164,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 33,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 165,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 33,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 166,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 34,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 167,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 34,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 168,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 34,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 169,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 34,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 170,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 34,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 171,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 35,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 172,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 35,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 173,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 35,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 174,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 35,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 175,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 35,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 176,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 36,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 177,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 36,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 178,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 36,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 179,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 36,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 180,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 36,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 181,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 37,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 182,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 37,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 183,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 37,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 184,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 37,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 185,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 37,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 186,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 38,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 187,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 38,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 188,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 38,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 189,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 38,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 190,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 38,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 191,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 39,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 192,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 39,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 193,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 39,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 194,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 39,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 195,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 39,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 196,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 40,
- "reported_at": null,
- "feed_type": "q_all",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 197,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 40,
- "reported_at": null,
- "feed_type": "q_sel",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 198,
- "model": "askbot.emailfeedsetting",
- "fields": {
- "subscriber": 40,
- "reported_at": null,
- "feed_type": "q_ask",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
- }
- },
- {
- "pk": 199,
- "model": "askbot.emailfeedsetting",
+ "model": "askbot.postrevision",
"fields": {
- "subscriber": 40,
- "reported_at": null,
- "feed_type": "q_ans",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
+ "is_anonymous": false,
+ "author": 15,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-29 11:22:23",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 15,
+ "revision": 1
}
},
{
- "pk": 200,
- "model": "askbot.emailfeedsetting",
+ "pk": 2,
+ "model": "askbot.postrevision",
"fields": {
- "subscriber": 40,
- "reported_at": null,
- "feed_type": "m_and_c",
- "frequency": "w",
- "added_at": "2011-11-28 15:09:07"
+ "is_anonymous": false,
+ "author": 2,
+ "tagnames": "tag-2-0 tag-2-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.2",
+ "question": 2,
+ "revised_at": "2011-11-29 11:22:04",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
}
},
{
@@ -7153,7 +4953,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:08",
+ "voted_at": "2011-11-29 11:22:03",
"user": 2,
"content_type": 17,
"object_id": 1
@@ -7164,7 +4964,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:04",
"user": 3,
"content_type": 17,
"object_id": 2
@@ -7175,7 +4975,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:05",
"user": 4,
"content_type": 17,
"object_id": 3
@@ -7186,7 +4986,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:05",
"user": 5,
"content_type": 17,
"object_id": 4
@@ -7197,7 +4997,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:06",
"user": 6,
"content_type": 17,
"object_id": 5
@@ -7208,7 +5008,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:07",
"user": 7,
"content_type": 17,
"object_id": 6
@@ -7219,7 +5019,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:08",
"user": 8,
"content_type": 17,
"object_id": 7
@@ -7230,7 +5030,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:08",
"user": 9,
"content_type": 17,
"object_id": 8
@@ -7241,7 +5041,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:10",
+ "voted_at": "2011-11-29 11:22:09",
"user": 10,
"content_type": 17,
"object_id": 9
@@ -7252,7 +5052,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:09",
"user": 11,
"content_type": 17,
"object_id": 10
@@ -7263,7 +5063,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:09",
"user": 12,
"content_type": 17,
"object_id": 11
@@ -7274,7 +5074,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:09",
"user": 13,
"content_type": 17,
"object_id": 12
@@ -7285,7 +5085,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:10",
"user": 14,
"content_type": 17,
"object_id": 13
@@ -7296,7 +5096,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:10",
"user": 15,
"content_type": 17,
"object_id": 14
@@ -7307,7 +5107,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:10",
"user": 16,
"content_type": 17,
"object_id": 15
@@ -7318,7 +5118,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:11",
+ "voted_at": "2011-11-29 11:22:10",
"user": 17,
"content_type": 17,
"object_id": 16
@@ -7329,7 +5129,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:11",
"user": 18,
"content_type": 17,
"object_id": 17
@@ -7340,7 +5140,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:11",
"user": 19,
"content_type": 17,
"object_id": 18
@@ -7351,7 +5151,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:11",
"user": 20,
"content_type": 17,
"object_id": 19
@@ -7362,7 +5162,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:11",
"user": 21,
"content_type": 17,
"object_id": 20
@@ -7373,7 +5173,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:11",
"user": 22,
"content_type": 17,
"object_id": 21
@@ -7384,7 +5184,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:12",
"user": 23,
"content_type": 17,
"object_id": 22
@@ -7395,7 +5195,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:12",
"user": 24,
"content_type": 17,
"object_id": 23
@@ -7406,7 +5206,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:12",
+ "voted_at": "2011-11-29 11:22:12",
"user": 25,
"content_type": 17,
"object_id": 24
@@ -7417,7 +5217,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:12",
"user": 26,
"content_type": 17,
"object_id": 25
@@ -7428,7 +5228,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:13",
"user": 27,
"content_type": 17,
"object_id": 26
@@ -7439,7 +5239,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:13",
"user": 28,
"content_type": 17,
"object_id": 27
@@ -7450,7 +5250,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:13",
"user": 29,
"content_type": 17,
"object_id": 28
@@ -7461,7 +5261,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:13",
"user": 30,
"content_type": 17,
"object_id": 29
@@ -7472,7 +5272,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:14",
"user": 31,
"content_type": 17,
"object_id": 30
@@ -7483,7 +5283,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:14",
"user": 32,
"content_type": 17,
"object_id": 31
@@ -7494,7 +5294,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:13",
+ "voted_at": "2011-11-29 11:22:14",
"user": 33,
"content_type": 17,
"object_id": 32
@@ -7505,7 +5305,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:14",
"user": 34,
"content_type": 17,
"object_id": 33
@@ -7516,7 +5316,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:15",
"user": 35,
"content_type": 17,
"object_id": 34
@@ -7527,7 +5327,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:15",
"user": 36,
"content_type": 17,
"object_id": 35
@@ -7538,7 +5338,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:15",
"user": 37,
"content_type": 17,
"object_id": 36
@@ -7549,7 +5349,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:15",
"user": 38,
"content_type": 17,
"object_id": 37
@@ -7560,7 +5360,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:16",
"user": 39,
"content_type": 17,
"object_id": 38
@@ -7571,7 +5371,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:14",
+ "voted_at": "2011-11-29 11:22:16",
"user": 40,
"content_type": 17,
"object_id": 39
@@ -7582,7 +5382,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:16",
"user": 1,
"content_type": 17,
"object_id": 40
@@ -7593,7 +5393,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:16",
"user": 2,
"content_type": 21,
"object_id": 1
@@ -7604,7 +5404,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:17",
"user": 2,
"content_type": 17,
"object_id": 40
@@ -7615,7 +5415,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:17",
"user": 3,
"content_type": 21,
"object_id": 2
@@ -7626,7 +5426,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:17",
"user": 3,
"content_type": 17,
"object_id": 40
@@ -7637,7 +5437,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:17",
"user": 4,
"content_type": 21,
"object_id": 3
@@ -7648,7 +5448,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:17",
"user": 4,
"content_type": 17,
"object_id": 40
@@ -7659,7 +5459,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:15",
+ "voted_at": "2011-11-29 11:22:17",
"user": 5,
"content_type": 21,
"object_id": 4
@@ -7670,7 +5470,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:16",
+ "voted_at": "2011-11-29 11:22:18",
"user": 5,
"content_type": 17,
"object_id": 40
@@ -7681,7 +5481,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:16",
+ "voted_at": "2011-11-29 11:22:18",
"user": 6,
"content_type": 21,
"object_id": 5
@@ -7692,7 +5492,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:16",
+ "voted_at": "2011-11-29 11:22:18",
"user": 6,
"content_type": 17,
"object_id": 40
@@ -7703,7 +5503,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:16",
+ "voted_at": "2011-11-29 11:22:18",
"user": 7,
"content_type": 21,
"object_id": 6
@@ -7714,7 +5514,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:16",
+ "voted_at": "2011-11-29 11:22:19",
"user": 7,
"content_type": 17,
"object_id": 40
@@ -7725,7 +5525,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:16",
+ "voted_at": "2011-11-29 11:22:19",
"user": 8,
"content_type": 21,
"object_id": 7
@@ -7736,7 +5536,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:17",
+ "voted_at": "2011-11-29 11:22:19",
"user": 8,
"content_type": 17,
"object_id": 40
@@ -7747,7 +5547,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:17",
+ "voted_at": "2011-11-29 11:22:19",
"user": 9,
"content_type": 21,
"object_id": 8
@@ -7758,7 +5558,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:17",
+ "voted_at": "2011-11-29 11:22:20",
"user": 9,
"content_type": 17,
"object_id": 40
@@ -7769,7 +5569,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:17",
+ "voted_at": "2011-11-29 11:22:20",
"user": 10,
"content_type": 21,
"object_id": 9
@@ -7780,7 +5580,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:17",
+ "voted_at": "2011-11-29 11:22:20",
"user": 10,
"content_type": 17,
"object_id": 40
@@ -7791,7 +5591,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:17",
+ "voted_at": "2011-11-29 11:22:20",
"user": 11,
"content_type": 21,
"object_id": 10
@@ -7802,7 +5602,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:18",
+ "voted_at": "2011-11-29 11:22:21",
"user": 11,
"content_type": 17,
"object_id": 40
@@ -7813,7 +5613,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:18",
+ "voted_at": "2011-11-29 11:22:21",
"user": 12,
"content_type": 21,
"object_id": 11
@@ -7824,7 +5624,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:18",
+ "voted_at": "2011-11-29 11:22:22",
"user": 12,
"content_type": 17,
"object_id": 40
@@ -7835,7 +5635,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:18",
+ "voted_at": "2011-11-29 11:22:22",
"user": 13,
"content_type": 21,
"object_id": 12
@@ -7846,7 +5646,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:18",
+ "voted_at": "2011-11-29 11:22:22",
"user": 13,
"content_type": 17,
"object_id": 40
@@ -7857,7 +5657,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:18",
+ "voted_at": "2011-11-29 11:22:22",
"user": 14,
"content_type": 21,
"object_id": 13
@@ -7868,7 +5668,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:19",
+ "voted_at": "2011-11-29 11:22:23",
"user": 14,
"content_type": 17,
"object_id": 40
@@ -7879,7 +5679,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:19",
+ "voted_at": "2011-11-29 11:22:23",
"user": 15,
"content_type": 21,
"object_id": 14
@@ -7890,7 +5690,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:19",
+ "voted_at": "2011-11-29 11:22:24",
"user": 15,
"content_type": 17,
"object_id": 40
@@ -7901,7 +5701,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:19",
+ "voted_at": "2011-11-29 11:22:24",
"user": 16,
"content_type": 21,
"object_id": 15
@@ -7912,7 +5712,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:20",
+ "voted_at": "2011-11-29 11:22:24",
"user": 16,
"content_type": 17,
"object_id": 40
@@ -7923,7 +5723,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:20",
+ "voted_at": "2011-11-29 11:22:24",
"user": 17,
"content_type": 21,
"object_id": 16
@@ -7934,7 +5734,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:20",
+ "voted_at": "2011-11-29 11:22:25",
"user": 17,
"content_type": 17,
"object_id": 40
@@ -7945,7 +5745,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:20",
+ "voted_at": "2011-11-29 11:22:25",
"user": 18,
"content_type": 21,
"object_id": 17
@@ -7956,7 +5756,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:21",
+ "voted_at": "2011-11-29 11:22:26",
"user": 18,
"content_type": 17,
"object_id": 40
@@ -7967,7 +5767,7 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-28 15:09:21",
+ "voted_at": "2011-11-29 11:22:26",
"user": 19,
"content_type": 21,
"object_id": 18
@@ -7978,7 +5778,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:21",
+ "voted_at": "2011-11-29 11:22:27",
"user": 19,
"content_type": 17,
"object_id": 40
@@ -7989,7 +5789,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:21",
+ "voted_at": "2011-11-29 11:22:27",
"user": 20,
"content_type": 21,
"object_id": 19
@@ -8000,7 +5800,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:22",
+ "voted_at": "2011-11-29 11:22:28",
"user": 20,
"content_type": 17,
"object_id": 40
@@ -8011,7 +5811,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:22",
+ "voted_at": "2011-11-29 11:22:28",
"user": 1,
"content_type": 21,
"object_id": 20
@@ -8022,7 +5822,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:22",
+ "voted_at": "2011-11-29 11:22:28",
"user": 2,
"content_type": 21,
"object_id": 20
@@ -8033,7 +5833,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:22",
+ "voted_at": "2011-11-29 11:22:29",
"user": 3,
"content_type": 21,
"object_id": 20
@@ -8044,7 +5844,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:23",
+ "voted_at": "2011-11-29 11:22:29",
"user": 4,
"content_type": 21,
"object_id": 20
@@ -8055,7 +5855,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:23",
+ "voted_at": "2011-11-29 11:22:30",
"user": 5,
"content_type": 21,
"object_id": 20
@@ -8066,7 +5866,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:23",
+ "voted_at": "2011-11-29 11:22:30",
"user": 6,
"content_type": 21,
"object_id": 20
@@ -8077,7 +5877,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:24",
+ "voted_at": "2011-11-29 11:22:31",
"user": 7,
"content_type": 21,
"object_id": 20
@@ -8088,7 +5888,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:24",
+ "voted_at": "2011-11-29 11:22:32",
"user": 8,
"content_type": 21,
"object_id": 20
@@ -8099,7 +5899,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:24",
+ "voted_at": "2011-11-29 11:22:32",
"user": 9,
"content_type": 21,
"object_id": 20
@@ -8110,7 +5910,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:25",
+ "voted_at": "2011-11-29 11:22:33",
"user": 10,
"content_type": 21,
"object_id": 20
@@ -8121,7 +5921,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:25",
+ "voted_at": "2011-11-29 11:22:34",
"user": 11,
"content_type": 21,
"object_id": 20
@@ -8132,7 +5932,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:26",
+ "voted_at": "2011-11-29 11:22:35",
"user": 12,
"content_type": 21,
"object_id": 20
@@ -8143,7 +5943,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:26",
+ "voted_at": "2011-11-29 11:22:36",
"user": 13,
"content_type": 21,
"object_id": 20
@@ -8154,7 +5954,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:27",
+ "voted_at": "2011-11-29 11:22:37",
"user": 14,
"content_type": 21,
"object_id": 20
@@ -8165,7 +5965,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:28",
+ "voted_at": "2011-11-29 11:22:38",
"user": 15,
"content_type": 21,
"object_id": 20
@@ -8176,7 +5976,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:28",
+ "voted_at": "2011-11-29 11:22:39",
"user": 16,
"content_type": 21,
"object_id": 20
@@ -8187,7 +5987,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:29",
+ "voted_at": "2011-11-29 11:22:40",
"user": 17,
"content_type": 21,
"object_id": 20
@@ -8198,7 +5998,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:30",
+ "voted_at": "2011-11-29 11:22:41",
"user": 18,
"content_type": 21,
"object_id": 20
@@ -8209,7 +6009,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:30",
+ "voted_at": "2011-11-29 11:22:42",
"user": 19,
"content_type": 21,
"object_id": 20
@@ -8220,7 +6020,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 20,
"content_type": 21,
"object_id": 20
@@ -8231,7 +6031,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 1,
"content_type": 16,
"object_id": 39
@@ -8242,7 +6042,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 1,
"content_type": 16,
"object_id": 40
@@ -8253,7 +6053,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 2,
"content_type": 16,
"object_id": 39
@@ -8264,7 +6064,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 2,
"content_type": 16,
"object_id": 40
@@ -8275,7 +6075,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 3,
"content_type": 16,
"object_id": 39
@@ -8286,7 +6086,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 3,
"content_type": 16,
"object_id": 40
@@ -8297,7 +6097,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 4,
"content_type": 16,
"object_id": 39
@@ -8308,7 +6108,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 4,
"content_type": 16,
"object_id": 40
@@ -8319,7 +6119,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 5,
"content_type": 16,
"object_id": 39
@@ -8330,7 +6130,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 5,
"content_type": 16,
"object_id": 40
@@ -8341,7 +6141,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 6,
"content_type": 16,
"object_id": 39
@@ -8352,7 +6152,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 6,
"content_type": 16,
"object_id": 40
@@ -8363,7 +6163,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 7,
"content_type": 16,
"object_id": 39
@@ -8374,7 +6174,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 7,
"content_type": 16,
"object_id": 40
@@ -8385,7 +6185,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 8,
"content_type": 16,
"object_id": 39
@@ -8396,7 +6196,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 8,
"content_type": 16,
"object_id": 40
@@ -8407,7 +6207,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 9,
"content_type": 16,
"object_id": 39
@@ -8418,7 +6218,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 9,
"content_type": 16,
"object_id": 40
@@ -8429,7 +6229,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 10,
"content_type": 16,
"object_id": 39
@@ -8440,7 +6240,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 10,
"content_type": 16,
"object_id": 40
@@ -8451,7 +6251,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 11,
"content_type": 16,
"object_id": 39
@@ -8462,7 +6262,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 11,
"content_type": 16,
"object_id": 40
@@ -8473,7 +6273,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 12,
"content_type": 16,
"object_id": 39
@@ -8484,7 +6284,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 12,
"content_type": 16,
"object_id": 40
@@ -8495,7 +6295,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 13,
"content_type": 16,
"object_id": 39
@@ -8506,7 +6306,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 13,
"content_type": 16,
"object_id": 40
@@ -8517,7 +6317,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 14,
"content_type": 16,
"object_id": 39
@@ -8528,7 +6328,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 14,
"content_type": 16,
"object_id": 40
@@ -8539,7 +6339,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 15,
"content_type": 16,
"object_id": 39
@@ -8550,7 +6350,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 15,
"content_type": 16,
"object_id": 40
@@ -8561,7 +6361,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 16,
"content_type": 16,
"object_id": 39
@@ -8572,7 +6372,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 16,
"content_type": 16,
"object_id": 40
@@ -8583,7 +6383,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 17,
"content_type": 16,
"object_id": 39
@@ -8594,7 +6394,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 17,
"content_type": 16,
"object_id": 40
@@ -8605,7 +6405,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 18,
"content_type": 16,
"object_id": 39
@@ -8616,7 +6416,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 18,
"content_type": 16,
"object_id": 40
@@ -8627,7 +6427,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 19,
"content_type": 16,
"object_id": 39
@@ -8638,7 +6438,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-28 15:09:31",
+ "voted_at": "2011-11-29 11:22:44",
"user": 19,
"content_type": 16,
"object_id": 40
@@ -8648,12 +6448,12 @@
"pk": 40,
"model": "askbot.comment",
"fields": {
- "comment": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "comment": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"score": 19,
"object_id": 20,
- "added_at": "2011-11-28 15:09:31",
+ "added_at": "2011-11-29 11:22:43",
"offensive_flag_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"user": 20,
"content_type": 21
}
@@ -8662,12 +6462,12 @@
"pk": 39,
"model": "askbot.comment",
"fields": {
- "comment": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "comment": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"score": 19,
"object_id": 40,
- "added_at": "2011-11-28 15:09:30",
+ "added_at": "2011-11-29 11:22:42",
"offensive_flag_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"user": 20,
"content_type": 17
}
@@ -8676,12 +6476,12 @@
"pk": 38,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:30",
+ "added_at": "2011-11-29 11:22:42",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 19,
"content_type": 21
}
@@ -8690,12 +6490,12 @@
"pk": 37,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:30",
+ "added_at": "2011-11-29 11:22:41",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 19,
"content_type": 17
}
@@ -8704,12 +6504,12 @@
"pk": 36,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:29",
+ "added_at": "2011-11-29 11:22:41",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 18,
"content_type": 21
}
@@ -8718,12 +6518,12 @@
"pk": 35,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:29",
+ "added_at": "2011-11-29 11:22:40",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 18,
"content_type": 17
}
@@ -8732,12 +6532,12 @@
"pk": 34,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:28",
+ "added_at": "2011-11-29 11:22:39",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 17,
"content_type": 21
}
@@ -8746,12 +6546,12 @@
"pk": 33,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:28",
+ "added_at": "2011-11-29 11:22:39",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 17,
"content_type": 17
}
@@ -8760,12 +6560,12 @@
"pk": 32,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:28",
+ "added_at": "2011-11-29 11:22:38",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 16,
"content_type": 21
}
@@ -8774,12 +6574,12 @@
"pk": 31,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:28",
+ "added_at": "2011-11-29 11:22:38",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 16,
"content_type": 17
}
@@ -8788,12 +6588,12 @@
"pk": 30,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:27",
+ "added_at": "2011-11-29 11:22:37",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 15,
"content_type": 21
}
@@ -8802,12 +6602,12 @@
"pk": 29,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:27",
+ "added_at": "2011-11-29 11:22:37",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 15,
"content_type": 17
}
@@ -8816,12 +6616,12 @@
"pk": 28,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:27",
+ "added_at": "2011-11-29 11:22:36",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 14,
"content_type": 21
}
@@ -8830,12 +6630,12 @@
"pk": 27,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:26",
+ "added_at": "2011-11-29 11:22:36",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 14,
"content_type": 17
}
@@ -8844,12 +6644,12 @@
"pk": 26,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:26",
+ "added_at": "2011-11-29 11:22:35",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 13,
"content_type": 21
}
@@ -8858,12 +6658,12 @@
"pk": 25,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:26",
+ "added_at": "2011-11-29 11:22:35",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 13,
"content_type": 17
}
@@ -8872,12 +6672,12 @@
"pk": 24,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:26",
+ "added_at": "2011-11-29 11:22:34",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 12,
"content_type": 21
}
@@ -8886,12 +6686,12 @@
"pk": 23,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:25",
+ "added_at": "2011-11-29 11:22:34",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 12,
"content_type": 17
}
@@ -8900,12 +6700,12 @@
"pk": 22,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:25",
+ "added_at": "2011-11-29 11:22:33",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 11,
"content_type": 21
}
@@ -8914,12 +6714,12 @@
"pk": 21,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:25",
+ "added_at": "2011-11-29 11:22:33",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 11,
"content_type": 17
}
@@ -8928,12 +6728,12 @@
"pk": 20,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:25",
+ "added_at": "2011-11-29 11:22:33",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 10,
"content_type": 21
}
@@ -8942,12 +6742,12 @@
"pk": 19,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:24",
+ "added_at": "2011-11-29 11:22:32",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 10,
"content_type": 17
}
@@ -8956,12 +6756,12 @@
"pk": 18,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:24",
+ "added_at": "2011-11-29 11:22:32",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 9,
"content_type": 21
}
@@ -8970,12 +6770,12 @@
"pk": 17,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:24",
+ "added_at": "2011-11-29 11:22:32",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 9,
"content_type": 17
}
@@ -8984,12 +6784,12 @@
"pk": 16,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:24",
+ "added_at": "2011-11-29 11:22:31",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 8,
"content_type": 21
}
@@ -8998,12 +6798,12 @@
"pk": 15,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:24",
+ "added_at": "2011-11-29 11:22:31",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 8,
"content_type": 17
}
@@ -9012,12 +6812,12 @@
"pk": 14,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:24",
+ "added_at": "2011-11-29 11:22:31",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 7,
"content_type": 21
}
@@ -9026,12 +6826,12 @@
"pk": 13,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:30",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 7,
"content_type": 17
}
@@ -9040,12 +6840,12 @@
"pk": 12,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:30",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 6,
"content_type": 21
}
@@ -9054,12 +6854,12 @@
"pk": 11,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:30",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 6,
"content_type": 17
}
@@ -9068,12 +6868,12 @@
"pk": 10,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:30",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 5,
"content_type": 21
}
@@ -9082,12 +6882,12 @@
"pk": 9,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:29",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 5,
"content_type": 17
}
@@ -9096,12 +6896,12 @@
"pk": 8,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:29",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 4,
"content_type": 21
}
@@ -9110,12 +6910,12 @@
"pk": 7,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:23",
+ "added_at": "2011-11-29 11:22:29",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 4,
"content_type": 17
}
@@ -9124,12 +6924,12 @@
"pk": 6,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:22",
+ "added_at": "2011-11-29 11:22:29",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 3,
"content_type": 21
}
@@ -9138,12 +6938,12 @@
"pk": 5,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:22",
+ "added_at": "2011-11-29 11:22:29",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 3,
"content_type": 17
}
@@ -9152,12 +6952,12 @@
"pk": 4,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:22",
+ "added_at": "2011-11-29 11:22:28",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 2,
"content_type": 21
}
@@ -9166,12 +6966,12 @@
"pk": 3,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:22",
+ "added_at": "2011-11-29 11:22:28",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 2,
"content_type": 17
}
@@ -9180,12 +6980,12 @@
"pk": 2,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-28 15:09:22",
+ "added_at": "2011-11-29 11:22:28",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 1,
"content_type": 21
}
@@ -9194,12 +6994,12 @@
"pk": 1,
"model": "askbot.comment",
"fields": {
- "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-28 15:09:22",
+ "added_at": "2011-11-29 11:22:28",
"offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 1,
"content_type": 17
}
@@ -9210,7 +7010,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9220,7 +7020,7 @@
"score": 1,
"author": 1,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9232,16 +7032,16 @@
2
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:07",
+ "last_activity_at": "2011-11-29 11:22:02",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-1-0 tag-1-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:07",
+ "added_at": "2011-11-29 11:22:02",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.1",
@@ -9254,7 +7054,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9264,7 +7064,7 @@
"score": -1,
"author": 2,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9276,16 +7076,16 @@
3
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:09",
+ "last_activity_at": "2011-11-29 11:22:04",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-2-0 tag-2-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:09",
+ "added_at": "2011-11-29 11:22:04",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.2",
@@ -9298,7 +7098,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9308,7 +7108,7 @@
"score": 1,
"author": 3,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9320,16 +7120,16 @@
6
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:04",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-3-0 tag-3-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:04",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.3",
@@ -9342,7 +7142,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9352,7 +7152,7 @@
"score": -1,
"author": 4,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9364,16 +7164,16 @@
7
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:05",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-4-0 tag-4-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:05",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.4",
@@ -9386,7 +7186,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9396,7 +7196,7 @@
"score": 1,
"author": 5,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9408,16 +7208,16 @@
10
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:06",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-5-0 tag-5-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:06",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.5",
@@ -9430,7 +7230,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9440,7 +7240,7 @@
"score": -1,
"author": 6,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9452,16 +7252,16 @@
11
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:07",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-6-0 tag-6-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:07",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.6",
@@ -9474,7 +7274,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9484,7 +7284,7 @@
"score": 1,
"author": 7,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9496,16 +7296,16 @@
14
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:07",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-7-0 tag-7-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:07",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.7",
@@ -9518,7 +7318,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9528,7 +7328,7 @@
"score": -1,
"author": 8,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9540,16 +7340,16 @@
15
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:08",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-8-0 tag-8-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:08",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.8",
@@ -9562,7 +7362,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9572,7 +7372,7 @@
"score": 1,
"author": 9,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9584,16 +7384,16 @@
18
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:09",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-9-0 tag-9-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:09",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.9",
@@ -9606,7 +7406,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9616,7 +7416,7 @@
"score": -1,
"author": 10,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9628,16 +7428,16 @@
19
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:10",
+ "last_activity_at": "2011-11-29 11:22:09",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-10-0 tag-10-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:10",
+ "added_at": "2011-11-29 11:22:09",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.10",
@@ -9650,7 +7450,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9660,7 +7460,7 @@
"score": 1,
"author": 11,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9672,16 +7472,16 @@
22
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:09",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-11-0 tag-11-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:09",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.11",
@@ -9694,7 +7494,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9704,7 +7504,7 @@
"score": -1,
"author": 12,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9716,16 +7516,16 @@
23
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:09",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-12-0 tag-12-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:09",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.12",
@@ -9738,7 +7538,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9748,7 +7548,7 @@
"score": 1,
"author": 13,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9760,16 +7560,16 @@
26
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:10",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-13-0 tag-13-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:10",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.13",
@@ -9782,7 +7582,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9792,7 +7592,7 @@
"score": -1,
"author": 14,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9804,16 +7604,16 @@
27
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:10",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-14-0 tag-14-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:10",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.14",
@@ -9826,7 +7626,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9836,7 +7636,7 @@
"score": 1,
"author": 15,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9848,16 +7648,16 @@
30
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:10",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-15-0 tag-15-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:10",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.15",
@@ -9870,7 +7670,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9880,7 +7680,7 @@
"score": -1,
"author": 16,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9892,16 +7692,16 @@
31
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:10",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-16-0 tag-16-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:10",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.16",
@@ -9914,7 +7714,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9924,7 +7724,7 @@
"score": 1,
"author": 17,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -9936,16 +7736,16 @@
34
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:11",
+ "last_activity_at": "2011-11-29 11:22:10",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-17-0 tag-17-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:11",
+ "added_at": "2011-11-29 11:22:10",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.17",
@@ -9958,7 +7758,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -9968,7 +7768,7 @@
"score": -1,
"author": 18,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -9980,16 +7780,16 @@
35
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:11",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-18-0 tag-18-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:11",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.18",
@@ -10002,7 +7802,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10012,7 +7812,7 @@
"score": 1,
"author": 19,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10024,16 +7824,16 @@
38
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:11",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-19-0 tag-19-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:11",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.19",
@@ -10046,7 +7846,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10056,7 +7856,7 @@
"score": -1,
"author": 20,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10068,16 +7868,16 @@
40
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:11",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-20-0 tag-20-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:11",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.20",
@@ -10090,7 +7890,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10100,7 +7900,7 @@
"score": 1,
"author": 21,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10112,16 +7912,16 @@
41
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:11",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-21-0 tag-21-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:11",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.21",
@@ -10134,7 +7934,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10144,7 +7944,7 @@
"score": -1,
"author": 22,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10156,16 +7956,16 @@
44
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:12",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-22-0 tag-22-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:12",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.22",
@@ -10178,7 +7978,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10188,7 +7988,7 @@
"score": 1,
"author": 23,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10200,16 +8000,16 @@
45
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:12",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-23-0 tag-23-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:12",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.23",
@@ -10222,7 +8022,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10232,7 +8032,7 @@
"score": -1,
"author": 24,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10244,16 +8044,16 @@
48
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:12",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-24-0 tag-24-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:12",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.24",
@@ -10266,7 +8066,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10276,7 +8076,7 @@
"score": 1,
"author": 25,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10288,16 +8088,16 @@
49
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:12",
+ "last_activity_at": "2011-11-29 11:22:12",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-25-0 tag-25-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:12",
+ "added_at": "2011-11-29 11:22:12",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.25",
@@ -10310,7 +8110,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10320,7 +8120,7 @@
"score": -1,
"author": 26,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10332,16 +8132,16 @@
52
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:13",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-26-0 tag-26-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:13",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.26",
@@ -10354,7 +8154,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10364,7 +8164,7 @@
"score": 1,
"author": 27,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10376,16 +8176,16 @@
53
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:13",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-27-0 tag-27-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:13",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.27",
@@ -10398,7 +8198,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10408,7 +8208,7 @@
"score": -1,
"author": 28,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10420,16 +8220,16 @@
56
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:13",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-28-0 tag-28-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:13",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.28",
@@ -10442,7 +8242,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10452,7 +8252,7 @@
"score": 1,
"author": 29,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10464,16 +8264,16 @@
57
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:13",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-29-0 tag-29-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:13",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.29",
@@ -10486,7 +8286,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10496,7 +8296,7 @@
"score": -1,
"author": 30,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10508,16 +8308,16 @@
59
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:13",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-30-0 tag-30-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:13",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.30",
@@ -10530,7 +8330,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10540,7 +8340,7 @@
"score": 1,
"author": 31,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10552,16 +8352,16 @@
62
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:14",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-31-0 tag-31-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:14",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.31",
@@ -10574,7 +8374,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10584,7 +8384,7 @@
"score": -1,
"author": 32,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10596,16 +8396,16 @@
63
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:13",
+ "last_activity_at": "2011-11-29 11:22:14",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-32-0 tag-32-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:13",
+ "added_at": "2011-11-29 11:22:14",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.32",
@@ -10618,7 +8418,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10628,7 +8428,7 @@
"score": 1,
"author": 33,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10640,16 +8440,16 @@
66
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:14",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-33-0 tag-33-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:14",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.33",
@@ -10662,7 +8462,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10672,7 +8472,7 @@
"score": -1,
"author": 34,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10684,16 +8484,16 @@
67
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:14",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-34-0 tag-34-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:14",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.34",
@@ -10706,7 +8506,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10716,7 +8516,7 @@
"score": 1,
"author": 35,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10728,16 +8528,16 @@
70
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:15",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-35-0 tag-35-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:15",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.35",
@@ -10750,7 +8550,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10760,7 +8560,7 @@
"score": -1,
"author": 36,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10772,16 +8572,16 @@
71
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:15",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-36-0 tag-36-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:15",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.36",
@@ -10794,7 +8594,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10804,7 +8604,7 @@
"score": 1,
"author": 37,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10816,16 +8616,16 @@
74
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:15",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-37-0 tag-37-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:15",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.37",
@@ -10838,7 +8638,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10848,7 +8648,7 @@
"score": -1,
"author": 38,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
"closed": false,
"answer_accepted": false,
@@ -10860,16 +8660,16 @@
75
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:15",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-38-0 tag-38-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:15",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.38",
@@ -10882,7 +8682,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10892,7 +8692,7 @@
"score": 1,
"author": 39,
"comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": false,
@@ -10904,16 +8704,16 @@
78
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 0,
- "last_activity_at": "2011-11-28 15:09:14",
+ "last_activity_at": "2011-11-29 11:22:16",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-39-0 tag-39-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:16",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.39",
@@ -10926,7 +8726,7 @@
"fields": {
"wiki": false,
"vote_up_count": 20,
- "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
"closed_at": null,
"deleted_at": null,
@@ -10936,7 +8736,7 @@
"score": 20,
"author": 40,
"comment_count": 20,
- "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
"closed": false,
"answer_accepted": true,
@@ -10969,20 +8769,20 @@
80
],
"deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
"answer_count": 20,
- "last_activity_at": "2011-11-28 15:09:32",
+ "last_activity_at": "2011-11-29 11:22:45",
"closed_by": null,
"close_reason": null,
"locked": false,
"is_anonymous": false,
"tagnames": "tag-40-0 tag-40-1",
"locked_by": null,
- "added_at": "2011-11-28 15:09:14",
+ "added_at": "2011-11-29 11:22:16",
"deleted_by": null,
"wikified_at": null,
"title": "Test question title No.EDITED",
- "last_edited_at": "2011-11-28 15:09:31"
+ "last_edited_at": "2011-11-29 11:22:44"
}
},
{
@@ -10991,7 +8791,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -10999,7 +8799,7 @@
"author": 1,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11007,7 +8807,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:15",
+ "added_at": "2011-11-29 11:22:16",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11019,7 +8819,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11027,7 +8827,7 @@
"author": 2,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11035,7 +8835,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:15",
+ "added_at": "2011-11-29 11:22:16",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11047,7 +8847,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11055,7 +8855,7 @@
"author": 3,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11063,7 +8863,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:15",
+ "added_at": "2011-11-29 11:22:17",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11075,7 +8875,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11083,7 +8883,7 @@
"author": 4,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11091,7 +8891,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:15",
+ "added_at": "2011-11-29 11:22:17",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11103,7 +8903,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11111,7 +8911,7 @@
"author": 5,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11119,7 +8919,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:15",
+ "added_at": "2011-11-29 11:22:17",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11131,7 +8931,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11139,7 +8939,7 @@
"author": 6,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11147,7 +8947,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:16",
+ "added_at": "2011-11-29 11:22:18",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11159,7 +8959,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11167,7 +8967,7 @@
"author": 7,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11175,7 +8975,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:16",
+ "added_at": "2011-11-29 11:22:18",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11187,7 +8987,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11195,7 +8995,7 @@
"author": 8,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11203,7 +9003,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:16",
+ "added_at": "2011-11-29 11:22:19",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11215,7 +9015,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11223,7 +9023,7 @@
"author": 9,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11231,7 +9031,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:17",
+ "added_at": "2011-11-29 11:22:19",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11243,7 +9043,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11251,7 +9051,7 @@
"author": 10,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11259,7 +9059,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:17",
+ "added_at": "2011-11-29 11:22:20",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11271,7 +9071,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11279,7 +9079,7 @@
"author": 11,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11287,7 +9087,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:17",
+ "added_at": "2011-11-29 11:22:20",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11299,7 +9099,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11307,7 +9107,7 @@
"author": 12,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11315,7 +9115,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:18",
+ "added_at": "2011-11-29 11:22:21",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11327,7 +9127,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11335,7 +9135,7 @@
"author": 13,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11343,7 +9143,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:18",
+ "added_at": "2011-11-29 11:22:22",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11355,7 +9155,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11363,7 +9163,7 @@
"author": 14,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11371,7 +9171,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:18",
+ "added_at": "2011-11-29 11:22:22",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11383,7 +9183,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11391,7 +9191,7 @@
"author": 15,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11399,7 +9199,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:19",
+ "added_at": "2011-11-29 11:22:23",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11411,7 +9211,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11419,7 +9219,7 @@
"author": 16,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11427,7 +9227,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:19",
+ "added_at": "2011-11-29 11:22:24",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11439,7 +9239,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11447,7 +9247,7 @@
"author": 17,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11455,7 +9255,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:20",
+ "added_at": "2011-11-29 11:22:25",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11467,7 +9267,7 @@
"fields": {
"wiki": false,
"vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11475,7 +9275,7 @@
"author": 18,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
"accepted_at": null,
@@ -11483,7 +9283,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:20",
+ "added_at": "2011-11-29 11:22:25",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11495,7 +9295,7 @@
"fields": {
"wiki": false,
"vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11503,7 +9303,7 @@
"author": 19,
"question": 40,
"comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
"accepted_at": null,
@@ -11511,7 +9311,7 @@
"accepted": false,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:21",
+ "added_at": "2011-11-29 11:22:26",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -11523,7 +9323,7 @@
"fields": {
"wiki": false,
"vote_up_count": 20,
- "text": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "text": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"offensive_flag_count": 0,
"deleted_at": null,
"locked_at": null,
@@ -11531,25 +9331,25 @@
"author": 20,
"question": 40,
"comment_count": 20,
- "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"vote_down_count": 0,
"last_edited_by": 20,
- "accepted_at": "2011-11-28 15:09:33",
+ "accepted_at": "2011-11-29 11:22:47",
"deleted": false,
"accepted": true,
"locked": false,
"locked_by": null,
- "added_at": "2011-11-28 15:09:21",
+ "added_at": "2011-11-29 11:22:27",
"deleted_by": null,
"wikified_at": null,
- "last_edited_at": "2011-11-28 15:09:32"
+ "last_edited_at": "2011-11-29 11:22:45"
}
},
{
"pk": 1,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:08",
+ "awarded_at": "2011-11-29 11:22:03",
"notified": false,
"object_id": 1,
"user": 1,
@@ -11561,7 +9361,7 @@
"pk": 2,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:08",
+ "awarded_at": "2011-11-29 11:22:03",
"notified": false,
"object_id": 1,
"user": 2,
@@ -11573,7 +9373,7 @@
"pk": 3,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:04",
"notified": false,
"object_id": 2,
"user": 3,
@@ -11585,7 +9385,7 @@
"pk": 4,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:05",
"notified": false,
"object_id": 3,
"user": 3,
@@ -11597,7 +9397,7 @@
"pk": 5,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:05",
"notified": false,
"object_id": 3,
"user": 4,
@@ -11609,7 +9409,7 @@
"pk": 6,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:05",
"notified": false,
"object_id": 4,
"user": 5,
@@ -11621,7 +9421,7 @@
"pk": 7,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:06",
"notified": false,
"object_id": 5,
"user": 5,
@@ -11633,7 +9433,7 @@
"pk": 8,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:06",
"notified": false,
"object_id": 5,
"user": 6,
@@ -11645,7 +9445,7 @@
"pk": 9,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:07",
"notified": false,
"object_id": 6,
"user": 7,
@@ -11657,7 +9457,7 @@
"pk": 10,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:08",
"notified": false,
"object_id": 7,
"user": 7,
@@ -11669,7 +9469,7 @@
"pk": 11,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:08",
"notified": false,
"object_id": 7,
"user": 8,
@@ -11681,7 +9481,7 @@
"pk": 12,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:08",
"notified": false,
"object_id": 8,
"user": 9,
@@ -11693,7 +9493,7 @@
"pk": 13,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:09",
"notified": false,
"object_id": 9,
"user": 9,
@@ -11705,7 +9505,7 @@
"pk": 14,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:10",
+ "awarded_at": "2011-11-29 11:22:09",
"notified": false,
"object_id": 9,
"user": 10,
@@ -11717,7 +9517,7 @@
"pk": 15,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:09",
"notified": false,
"object_id": 10,
"user": 11,
@@ -11729,7 +9529,7 @@
"pk": 16,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:09",
"notified": false,
"object_id": 11,
"user": 11,
@@ -11741,7 +9541,7 @@
"pk": 17,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:09",
"notified": false,
"object_id": 11,
"user": 12,
@@ -11753,7 +9553,7 @@
"pk": 18,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:09",
"notified": false,
"object_id": 12,
"user": 13,
@@ -11765,7 +9565,7 @@
"pk": 19,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:10",
"notified": false,
"object_id": 13,
"user": 13,
@@ -11777,7 +9577,7 @@
"pk": 20,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:10",
"notified": false,
"object_id": 13,
"user": 14,
@@ -11789,7 +9589,7 @@
"pk": 21,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:10",
"notified": false,
"object_id": 14,
"user": 15,
@@ -11801,7 +9601,7 @@
"pk": 22,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:10",
"notified": false,
"object_id": 15,
"user": 15,
@@ -11813,7 +9613,7 @@
"pk": 23,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:10",
"notified": false,
"object_id": 15,
"user": 16,
@@ -11825,7 +9625,7 @@
"pk": 24,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:11",
+ "awarded_at": "2011-11-29 11:22:10",
"notified": false,
"object_id": 16,
"user": 17,
@@ -11837,7 +9637,7 @@
"pk": 25,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 17,
"user": 17,
@@ -11849,7 +9649,7 @@
"pk": 26,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 17,
"user": 18,
@@ -11861,7 +9661,7 @@
"pk": 27,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 18,
"user": 19,
@@ -11873,7 +9673,7 @@
"pk": 28,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 19,
"user": 19,
@@ -11885,7 +9685,7 @@
"pk": 29,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 19,
"user": 20,
@@ -11897,7 +9697,7 @@
"pk": 30,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 20,
"user": 21,
@@ -11909,7 +9709,7 @@
"pk": 31,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 21,
"user": 21,
@@ -11921,7 +9721,7 @@
"pk": 32,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:11",
"notified": false,
"object_id": 21,
"user": 22,
@@ -11933,7 +9733,7 @@
"pk": 33,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:12",
"notified": false,
"object_id": 22,
"user": 23,
@@ -11945,7 +9745,7 @@
"pk": 34,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:12",
"notified": false,
"object_id": 23,
"user": 23,
@@ -11957,7 +9757,7 @@
"pk": 35,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:12",
"notified": false,
"object_id": 23,
"user": 24,
@@ -11969,7 +9769,7 @@
"pk": 36,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:12",
+ "awarded_at": "2011-11-29 11:22:12",
"notified": false,
"object_id": 24,
"user": 25,
@@ -11981,7 +9781,7 @@
"pk": 37,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:12",
"notified": false,
"object_id": 25,
"user": 25,
@@ -11993,7 +9793,7 @@
"pk": 38,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:12",
"notified": false,
"object_id": 25,
"user": 26,
@@ -12005,7 +9805,7 @@
"pk": 39,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:13",
"notified": false,
"object_id": 26,
"user": 27,
@@ -12017,7 +9817,7 @@
"pk": 40,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:13",
"notified": false,
"object_id": 27,
"user": 27,
@@ -12029,7 +9829,7 @@
"pk": 41,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:13",
"notified": false,
"object_id": 27,
"user": 28,
@@ -12041,7 +9841,7 @@
"pk": 42,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:13",
"notified": false,
"object_id": 28,
"user": 29,
@@ -12053,7 +9853,7 @@
"pk": 43,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:13",
"notified": false,
"object_id": 29,
"user": 29,
@@ -12065,7 +9865,7 @@
"pk": 44,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:13",
"notified": false,
"object_id": 29,
"user": 30,
@@ -12077,7 +9877,7 @@
"pk": 45,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:14",
"notified": false,
"object_id": 30,
"user": 31,
@@ -12089,7 +9889,7 @@
"pk": 46,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:14",
"notified": false,
"object_id": 31,
"user": 31,
@@ -12101,7 +9901,7 @@
"pk": 47,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:14",
"notified": false,
"object_id": 31,
"user": 32,
@@ -12113,7 +9913,7 @@
"pk": 48,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:13",
+ "awarded_at": "2011-11-29 11:22:14",
"notified": false,
"object_id": 32,
"user": 33,
@@ -12125,7 +9925,7 @@
"pk": 49,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:14",
"notified": false,
"object_id": 33,
"user": 33,
@@ -12137,7 +9937,7 @@
"pk": 50,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:14",
"notified": false,
"object_id": 33,
"user": 34,
@@ -12149,7 +9949,7 @@
"pk": 51,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:15",
"notified": false,
"object_id": 34,
"user": 35,
@@ -12161,7 +9961,7 @@
"pk": 52,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:15",
"notified": false,
"object_id": 35,
"user": 35,
@@ -12173,7 +9973,7 @@
"pk": 53,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:15",
"notified": false,
"object_id": 35,
"user": 36,
@@ -12185,7 +9985,7 @@
"pk": 54,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:15",
"notified": false,
"object_id": 36,
"user": 37,
@@ -12197,7 +9997,7 @@
"pk": 55,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:15",
"notified": false,
"object_id": 37,
"user": 37,
@@ -12209,7 +10009,7 @@
"pk": 56,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:15",
"notified": false,
"object_id": 37,
"user": 38,
@@ -12221,7 +10021,7 @@
"pk": 57,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:16",
"notified": false,
"object_id": 38,
"user": 39,
@@ -12233,7 +10033,7 @@
"pk": 58,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:16",
"notified": false,
"object_id": 39,
"user": 39,
@@ -12245,7 +10045,7 @@
"pk": 59,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:14",
+ "awarded_at": "2011-11-29 11:22:16",
"notified": false,
"object_id": 39,
"user": 40,
@@ -12257,7 +10057,7 @@
"pk": 60,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:16",
"notified": false,
"object_id": 40,
"user": 40,
@@ -12269,7 +10069,7 @@
"pk": 61,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:16",
"notified": false,
"object_id": 40,
"user": 1,
@@ -12281,7 +10081,7 @@
"pk": 62,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:16",
"notified": false,
"object_id": 1,
"user": 1,
@@ -12293,7 +10093,7 @@
"pk": 63,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:17",
"notified": false,
"object_id": 40,
"user": 40,
@@ -12305,7 +10105,7 @@
"pk": 64,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:17",
"notified": false,
"object_id": 40,
"user": 40,
@@ -12317,7 +10117,7 @@
"pk": 65,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:17",
"notified": false,
"object_id": 40,
"user": 3,
@@ -12329,7 +10129,7 @@
"pk": 66,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:15",
+ "awarded_at": "2011-11-29 11:22:17",
"notified": false,
"object_id": 3,
"user": 3,
@@ -12341,7 +10141,7 @@
"pk": 67,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:16",
+ "awarded_at": "2011-11-29 11:22:18",
"notified": false,
"object_id": 40,
"user": 40,
@@ -12353,7 +10153,7 @@
"pk": 68,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:16",
+ "awarded_at": "2011-11-29 11:22:18",
"notified": false,
"object_id": 40,
"user": 5,
@@ -12365,7 +10165,7 @@
"pk": 69,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:16",
+ "awarded_at": "2011-11-29 11:22:18",
"notified": false,
"object_id": 5,
"user": 5,
@@ -12377,7 +10177,7 @@
"pk": 70,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:16",
+ "awarded_at": "2011-11-29 11:22:19",
"notified": false,
"object_id": 40,
"user": 7,
@@ -12389,7 +10189,7 @@
"pk": 71,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:16",
+ "awarded_at": "2011-11-29 11:22:19",
"notified": false,
"object_id": 7,
"user": 7,
@@ -12401,7 +10201,7 @@
"pk": 72,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:17",
+ "awarded_at": "2011-11-29 11:22:20",
"notified": false,
"object_id": 40,
"user": 9,
@@ -12413,7 +10213,7 @@
"pk": 73,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:17",
+ "awarded_at": "2011-11-29 11:22:20",
"notified": false,
"object_id": 9,
"user": 9,
@@ -12425,7 +10225,7 @@
"pk": 74,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:18",
+ "awarded_at": "2011-11-29 11:22:21",
"notified": false,
"object_id": 40,
"user": 11,
@@ -12437,7 +10237,7 @@
"pk": 75,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:18",
+ "awarded_at": "2011-11-29 11:22:21",
"notified": false,
"object_id": 11,
"user": 11,
@@ -12449,7 +10249,7 @@
"pk": 76,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:18",
+ "awarded_at": "2011-11-29 11:22:22",
"notified": false,
"object_id": 40,
"user": 13,
@@ -12461,7 +10261,7 @@
"pk": 77,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:18",
+ "awarded_at": "2011-11-29 11:22:22",
"notified": false,
"object_id": 13,
"user": 13,
@@ -12473,7 +10273,7 @@
"pk": 78,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:19",
+ "awarded_at": "2011-11-29 11:22:24",
"notified": false,
"object_id": 40,
"user": 15,
@@ -12485,7 +10285,7 @@
"pk": 79,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:19",
+ "awarded_at": "2011-11-29 11:22:24",
"notified": false,
"object_id": 15,
"user": 15,
@@ -12497,7 +10297,7 @@
"pk": 80,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:20",
+ "awarded_at": "2011-11-29 11:22:25",
"notified": false,
"object_id": 40,
"user": 17,
@@ -12509,7 +10309,7 @@
"pk": 81,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:20",
+ "awarded_at": "2011-11-29 11:22:25",
"notified": false,
"object_id": 17,
"user": 17,
@@ -12521,7 +10321,7 @@
"pk": 82,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:21",
+ "awarded_at": "2011-11-29 11:22:27",
"notified": false,
"object_id": 40,
"user": 19,
@@ -12533,7 +10333,7 @@
"pk": 83,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:21",
+ "awarded_at": "2011-11-29 11:22:27",
"notified": false,
"object_id": 19,
"user": 19,
@@ -12545,7 +10345,7 @@
"pk": 84,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:22",
+ "awarded_at": "2011-11-29 11:22:28",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12557,7 +10357,7 @@
"pk": 85,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:22",
+ "awarded_at": "2011-11-29 11:22:28",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12569,7 +10369,7 @@
"pk": 86,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:22",
+ "awarded_at": "2011-11-29 11:22:29",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12581,7 +10381,7 @@
"pk": 87,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:23",
+ "awarded_at": "2011-11-29 11:22:30",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12593,7 +10393,7 @@
"pk": 88,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:31",
+ "awarded_at": "2011-11-29 11:22:44",
"notified": false,
"object_id": 40,
"user": 40,
@@ -12605,7 +10405,7 @@
"pk": 89,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:32",
+ "awarded_at": "2011-11-29 11:22:45",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12617,7 +10417,7 @@
"pk": 90,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:33",
+ "awarded_at": "2011-11-29 11:22:47",
"notified": false,
"object_id": 20,
"user": 40,
@@ -12629,7 +10429,7 @@
"pk": 91,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:33",
+ "awarded_at": "2011-11-29 11:22:47",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12641,7 +10441,7 @@
"pk": 92,
"model": "askbot.award",
"fields": {
- "awarded_at": "2011-11-28 15:09:33",
+ "awarded_at": "2011-11-29 11:22:47",
"notified": false,
"object_id": 20,
"user": 20,
@@ -12659,7 +10459,7 @@
"negative": 0,
"reputation_type": 1,
"user": 1,
- "reputed_at": "2011-11-28 15:09:08",
+ "reputed_at": "2011-11-29 11:22:03",
"reputation": 510
}
},
@@ -12673,7 +10473,7 @@
"negative": -2,
"reputation_type": -3,
"user": 2,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:04",
"reputation": 498
}
},
@@ -12687,7 +10487,7 @@
"negative": -1,
"reputation_type": -5,
"user": 3,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:04",
"reputation": 499
}
},
@@ -12701,7 +10501,7 @@
"negative": 0,
"reputation_type": 1,
"user": 3,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:05",
"reputation": 509
}
},
@@ -12715,7 +10515,7 @@
"negative": -2,
"reputation_type": -3,
"user": 4,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:05",
"reputation": 498
}
},
@@ -12729,7 +10529,7 @@
"negative": -1,
"reputation_type": -5,
"user": 5,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:05",
"reputation": 499
}
},
@@ -12743,7 +10543,7 @@
"negative": 0,
"reputation_type": 1,
"user": 5,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:06",
"reputation": 509
}
},
@@ -12757,7 +10557,7 @@
"negative": -2,
"reputation_type": -3,
"user": 6,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:07",
"reputation": 498
}
},
@@ -12771,7 +10571,7 @@
"negative": -1,
"reputation_type": -5,
"user": 7,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:07",
"reputation": 499
}
},
@@ -12785,7 +10585,7 @@
"negative": 0,
"reputation_type": 1,
"user": 7,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:08",
"reputation": 509
}
},
@@ -12799,7 +10599,7 @@
"negative": -2,
"reputation_type": -3,
"user": 8,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:08",
"reputation": 498
}
},
@@ -12813,7 +10613,7 @@
"negative": -1,
"reputation_type": -5,
"user": 9,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:08",
"reputation": 499
}
},
@@ -12827,7 +10627,7 @@
"negative": 0,
"reputation_type": 1,
"user": 9,
- "reputed_at": "2011-11-28 15:09:10",
+ "reputed_at": "2011-11-29 11:22:09",
"reputation": 509
}
},
@@ -12841,7 +10641,7 @@
"negative": -2,
"reputation_type": -3,
"user": 10,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:09",
"reputation": 498
}
},
@@ -12855,7 +10655,7 @@
"negative": -1,
"reputation_type": -5,
"user": 11,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:09",
"reputation": 499
}
},
@@ -12869,7 +10669,7 @@
"negative": 0,
"reputation_type": 1,
"user": 11,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:09",
"reputation": 509
}
},
@@ -12883,7 +10683,7 @@
"negative": -2,
"reputation_type": -3,
"user": 12,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:09",
"reputation": 498
}
},
@@ -12897,7 +10697,7 @@
"negative": -1,
"reputation_type": -5,
"user": 13,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:09",
"reputation": 499
}
},
@@ -12911,7 +10711,7 @@
"negative": 0,
"reputation_type": 1,
"user": 13,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:10",
"reputation": 509
}
},
@@ -12925,7 +10725,7 @@
"negative": -2,
"reputation_type": -3,
"user": 14,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:10",
"reputation": 498
}
},
@@ -12939,7 +10739,7 @@
"negative": -1,
"reputation_type": -5,
"user": 15,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:10",
"reputation": 499
}
},
@@ -12953,7 +10753,7 @@
"negative": 0,
"reputation_type": 1,
"user": 15,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:10",
"reputation": 509
}
},
@@ -12967,7 +10767,7 @@
"negative": -2,
"reputation_type": -3,
"user": 16,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:10",
"reputation": 498
}
},
@@ -12981,7 +10781,7 @@
"negative": -1,
"reputation_type": -5,
"user": 17,
- "reputed_at": "2011-11-28 15:09:11",
+ "reputed_at": "2011-11-29 11:22:10",
"reputation": 499
}
},
@@ -12995,7 +10795,7 @@
"negative": 0,
"reputation_type": 1,
"user": 17,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 509
}
},
@@ -13009,7 +10809,7 @@
"negative": -2,
"reputation_type": -3,
"user": 18,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 498
}
},
@@ -13023,7 +10823,7 @@
"negative": -1,
"reputation_type": -5,
"user": 19,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 499
}
},
@@ -13037,7 +10837,7 @@
"negative": 0,
"reputation_type": 1,
"user": 19,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 509
}
},
@@ -13051,7 +10851,7 @@
"negative": -2,
"reputation_type": -3,
"user": 20,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 498
}
},
@@ -13065,7 +10865,7 @@
"negative": -1,
"reputation_type": -5,
"user": 21,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 499
}
},
@@ -13079,7 +10879,7 @@
"negative": 0,
"reputation_type": 1,
"user": 21,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:11",
"reputation": 509
}
},
@@ -13093,7 +10893,7 @@
"negative": -2,
"reputation_type": -3,
"user": 22,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:12",
"reputation": 498
}
},
@@ -13107,7 +10907,7 @@
"negative": -1,
"reputation_type": -5,
"user": 23,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:12",
"reputation": 499
}
},
@@ -13121,7 +10921,7 @@
"negative": 0,
"reputation_type": 1,
"user": 23,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:12",
"reputation": 509
}
},
@@ -13135,7 +10935,7 @@
"negative": -2,
"reputation_type": -3,
"user": 24,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:12",
"reputation": 498
}
},
@@ -13149,7 +10949,7 @@
"negative": -1,
"reputation_type": -5,
"user": 25,
- "reputed_at": "2011-11-28 15:09:12",
+ "reputed_at": "2011-11-29 11:22:12",
"reputation": 499
}
},
@@ -13163,7 +10963,7 @@
"negative": 0,
"reputation_type": 1,
"user": 25,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:12",
"reputation": 509
}
},
@@ -13177,7 +10977,7 @@
"negative": -2,
"reputation_type": -3,
"user": 26,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:13",
"reputation": 498
}
},
@@ -13191,7 +10991,7 @@
"negative": -1,
"reputation_type": -5,
"user": 27,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:13",
"reputation": 499
}
},
@@ -13205,7 +11005,7 @@
"negative": 0,
"reputation_type": 1,
"user": 27,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:13",
"reputation": 509
}
},
@@ -13219,7 +11019,7 @@
"negative": -2,
"reputation_type": -3,
"user": 28,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:13",
"reputation": 498
}
},
@@ -13233,7 +11033,7 @@
"negative": -1,
"reputation_type": -5,
"user": 29,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:13",
"reputation": 499
}
},
@@ -13247,7 +11047,7 @@
"negative": 0,
"reputation_type": 1,
"user": 29,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:13",
"reputation": 509
}
},
@@ -13261,7 +11061,7 @@
"negative": -2,
"reputation_type": -3,
"user": 30,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:14",
"reputation": 498
}
},
@@ -13275,7 +11075,7 @@
"negative": -1,
"reputation_type": -5,
"user": 31,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:14",
"reputation": 499
}
},
@@ -13289,7 +11089,7 @@
"negative": 0,
"reputation_type": 1,
"user": 31,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:14",
"reputation": 509
}
},
@@ -13303,7 +11103,7 @@
"negative": -2,
"reputation_type": -3,
"user": 32,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:14",
"reputation": 498
}
},
@@ -13317,7 +11117,7 @@
"negative": -1,
"reputation_type": -5,
"user": 33,
- "reputed_at": "2011-11-28 15:09:13",
+ "reputed_at": "2011-11-29 11:22:14",
"reputation": 499
}
},
@@ -13331,7 +11131,7 @@
"negative": 0,
"reputation_type": 1,
"user": 33,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:14",
"reputation": 509
}
},
@@ -13345,7 +11145,7 @@
"negative": -2,
"reputation_type": -3,
"user": 34,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:15",
"reputation": 498
}
},
@@ -13359,7 +11159,7 @@
"negative": -1,
"reputation_type": -5,
"user": 35,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:15",
"reputation": 499
}
},
@@ -13373,7 +11173,7 @@
"negative": 0,
"reputation_type": 1,
"user": 35,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:15",
"reputation": 509
}
},
@@ -13387,7 +11187,7 @@
"negative": -2,
"reputation_type": -3,
"user": 36,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:15",
"reputation": 498
}
},
@@ -13401,7 +11201,7 @@
"negative": -1,
"reputation_type": -5,
"user": 37,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:15",
"reputation": 499
}
},
@@ -13415,7 +11215,7 @@
"negative": 0,
"reputation_type": 1,
"user": 37,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:15",
"reputation": 509
}
},
@@ -13429,7 +11229,7 @@
"negative": -2,
"reputation_type": -3,
"user": 38,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:16",
"reputation": 498
}
},
@@ -13443,7 +11243,7 @@
"negative": -1,
"reputation_type": -5,
"user": 39,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:16",
"reputation": 499
}
},
@@ -13457,7 +11257,7 @@
"negative": 0,
"reputation_type": 1,
"user": 39,
- "reputed_at": "2011-11-28 15:09:14",
+ "reputed_at": "2011-11-29 11:22:16",
"reputation": 509
}
},
@@ -13471,7 +11271,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:16",
"reputation": 510
}
},
@@ -13485,7 +11285,7 @@
"negative": 0,
"reputation_type": 1,
"user": 1,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:16",
"reputation": 520
}
},
@@ -13499,7 +11299,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 520
}
},
@@ -13513,7 +11313,7 @@
"negative": -2,
"reputation_type": -3,
"user": 2,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 496
}
},
@@ -13527,7 +11327,7 @@
"negative": -1,
"reputation_type": -5,
"user": 3,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 508
}
},
@@ -13541,7 +11341,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 530
}
},
@@ -13555,7 +11355,7 @@
"negative": 0,
"reputation_type": 1,
"user": 3,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 518
}
},
@@ -13569,7 +11369,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 540
}
},
@@ -13583,7 +11383,7 @@
"negative": -2,
"reputation_type": -3,
"user": 4,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 496
}
},
@@ -13597,7 +11397,7 @@
"negative": -1,
"reputation_type": -5,
"user": 5,
- "reputed_at": "2011-11-28 15:09:15",
+ "reputed_at": "2011-11-29 11:22:17",
"reputation": 508
}
},
@@ -13611,7 +11411,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:18",
"reputation": 550
}
},
@@ -13625,7 +11425,7 @@
"negative": 0,
"reputation_type": 1,
"user": 5,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:18",
"reputation": 518
}
},
@@ -13639,7 +11439,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:18",
"reputation": 560
}
},
@@ -13653,7 +11453,7 @@
"negative": -2,
"reputation_type": -3,
"user": 6,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:18",
"reputation": 496
}
},
@@ -13667,7 +11467,7 @@
"negative": -1,
"reputation_type": -5,
"user": 7,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:18",
"reputation": 508
}
},
@@ -13681,7 +11481,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:19",
"reputation": 570
}
},
@@ -13695,7 +11495,7 @@
"negative": 0,
"reputation_type": 1,
"user": 7,
- "reputed_at": "2011-11-28 15:09:16",
+ "reputed_at": "2011-11-29 11:22:19",
"reputation": 518
}
},
@@ -13709,7 +11509,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:19",
"reputation": 580
}
},
@@ -13723,7 +11523,7 @@
"negative": -2,
"reputation_type": -3,
"user": 8,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:19",
"reputation": 496
}
},
@@ -13737,7 +11537,7 @@
"negative": -1,
"reputation_type": -5,
"user": 9,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:19",
"reputation": 508
}
},
@@ -13751,7 +11551,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:20",
"reputation": 590
}
},
@@ -13765,7 +11565,7 @@
"negative": 0,
"reputation_type": 1,
"user": 9,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:20",
"reputation": 518
}
},
@@ -13779,7 +11579,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:20",
"reputation": 600
}
},
@@ -13793,7 +11593,7 @@
"negative": -2,
"reputation_type": -3,
"user": 10,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:20",
"reputation": 496
}
},
@@ -13807,7 +11607,7 @@
"negative": -1,
"reputation_type": -5,
"user": 11,
- "reputed_at": "2011-11-28 15:09:17",
+ "reputed_at": "2011-11-29 11:22:20",
"reputation": 508
}
},
@@ -13821,7 +11621,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:21",
"reputation": 610
}
},
@@ -13835,7 +11635,7 @@
"negative": 0,
"reputation_type": 1,
"user": 11,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:21",
"reputation": 518
}
},
@@ -13849,7 +11649,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:22",
"reputation": 620
}
},
@@ -13863,7 +11663,7 @@
"negative": -2,
"reputation_type": -3,
"user": 12,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:22",
"reputation": 496
}
},
@@ -13877,7 +11677,7 @@
"negative": -1,
"reputation_type": -5,
"user": 13,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:22",
"reputation": 508
}
},
@@ -13891,7 +11691,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:22",
"reputation": 630
}
},
@@ -13905,7 +11705,7 @@
"negative": 0,
"reputation_type": 1,
"user": 13,
- "reputed_at": "2011-11-28 15:09:18",
+ "reputed_at": "2011-11-29 11:22:22",
"reputation": 518
}
},
@@ -13919,7 +11719,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:19",
+ "reputed_at": "2011-11-29 11:22:23",
"reputation": 640
}
},
@@ -13933,7 +11733,7 @@
"negative": -2,
"reputation_type": -3,
"user": 14,
- "reputed_at": "2011-11-28 15:09:19",
+ "reputed_at": "2011-11-29 11:22:23",
"reputation": 496
}
},
@@ -13947,7 +11747,7 @@
"negative": -1,
"reputation_type": -5,
"user": 15,
- "reputed_at": "2011-11-28 15:09:19",
+ "reputed_at": "2011-11-29 11:22:23",
"reputation": 508
}
},
@@ -13961,7 +11761,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:19",
+ "reputed_at": "2011-11-29 11:22:24",
"reputation": 650
}
},
@@ -13975,7 +11775,7 @@
"negative": 0,
"reputation_type": 1,
"user": 15,
- "reputed_at": "2011-11-28 15:09:19",
+ "reputed_at": "2011-11-29 11:22:24",
"reputation": 518
}
},
@@ -13989,7 +11789,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:20",
+ "reputed_at": "2011-11-29 11:22:24",
"reputation": 660
}
},
@@ -14003,7 +11803,7 @@
"negative": -2,
"reputation_type": -3,
"user": 16,
- "reputed_at": "2011-11-28 15:09:20",
+ "reputed_at": "2011-11-29 11:22:24",
"reputation": 496
}
},
@@ -14017,7 +11817,7 @@
"negative": -1,
"reputation_type": -5,
"user": 17,
- "reputed_at": "2011-11-28 15:09:20",
+ "reputed_at": "2011-11-29 11:22:24",
"reputation": 508
}
},
@@ -14031,7 +11831,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:20",
+ "reputed_at": "2011-11-29 11:22:25",
"reputation": 670
}
},
@@ -14045,7 +11845,7 @@
"negative": 0,
"reputation_type": 1,
"user": 17,
- "reputed_at": "2011-11-28 15:09:20",
+ "reputed_at": "2011-11-29 11:22:25",
"reputation": 518
}
},
@@ -14059,7 +11859,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:21",
+ "reputed_at": "2011-11-29 11:22:26",
"reputation": 680
}
},
@@ -14073,7 +11873,7 @@
"negative": -2,
"reputation_type": -3,
"user": 18,
- "reputed_at": "2011-11-28 15:09:21",
+ "reputed_at": "2011-11-29 11:22:26",
"reputation": 496
}
},
@@ -14087,7 +11887,7 @@
"negative": -1,
"reputation_type": -5,
"user": 19,
- "reputed_at": "2011-11-28 15:09:21",
+ "reputed_at": "2011-11-29 11:22:26",
"reputation": 508
}
},
@@ -14101,7 +11901,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:21",
+ "reputed_at": "2011-11-29 11:22:27",
"reputation": 690
}
},
@@ -14115,7 +11915,7 @@
"negative": 0,
"reputation_type": 1,
"user": 19,
- "reputed_at": "2011-11-28 15:09:21",
+ "reputed_at": "2011-11-29 11:22:27",
"reputation": 518
}
},
@@ -14129,7 +11929,7 @@
"negative": 0,
"reputation_type": 1,
"user": 40,
- "reputed_at": "2011-11-28 15:09:22",
+ "reputed_at": "2011-11-29 11:22:28",
"reputation": 700
}
},
@@ -14143,7 +11943,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:22",
+ "reputed_at": "2011-11-29 11:22:28",
"reputation": 508
}
},
@@ -14157,7 +11957,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:22",
+ "reputed_at": "2011-11-29 11:22:28",
"reputation": 518
}
},
@@ -14171,7 +11971,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:22",
+ "reputed_at": "2011-11-29 11:22:29",
"reputation": 528
}
},
@@ -14185,7 +11985,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:23",
+ "reputed_at": "2011-11-29 11:22:29",
"reputation": 538
}
},
@@ -14199,7 +11999,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:23",
+ "reputed_at": "2011-11-29 11:22:30",
"reputation": 548
}
},
@@ -14213,7 +12013,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:23",
+ "reputed_at": "2011-11-29 11:22:30",
"reputation": 558
}
},
@@ -14227,7 +12027,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:24",
+ "reputed_at": "2011-11-29 11:22:31",
"reputation": 568
}
},
@@ -14241,7 +12041,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:24",
+ "reputed_at": "2011-11-29 11:22:32",
"reputation": 578
}
},
@@ -14255,7 +12055,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:24",
+ "reputed_at": "2011-11-29 11:22:32",
"reputation": 588
}
},
@@ -14269,7 +12069,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:25",
+ "reputed_at": "2011-11-29 11:22:33",
"reputation": 598
}
},
@@ -14283,7 +12083,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:25",
+ "reputed_at": "2011-11-29 11:22:34",
"reputation": 608
}
},
@@ -14297,7 +12097,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:26",
+ "reputed_at": "2011-11-29 11:22:35",
"reputation": 618
}
},
@@ -14311,7 +12111,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:26",
+ "reputed_at": "2011-11-29 11:22:36",
"reputation": 628
}
},
@@ -14325,7 +12125,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:27",
+ "reputed_at": "2011-11-29 11:22:37",
"reputation": 638
}
},
@@ -14339,7 +12139,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:28",
+ "reputed_at": "2011-11-29 11:22:38",
"reputation": 648
}
},
@@ -14353,7 +12153,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:28",
+ "reputed_at": "2011-11-29 11:22:39",
"reputation": 658
}
},
@@ -14367,7 +12167,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:29",
+ "reputed_at": "2011-11-29 11:22:40",
"reputation": 668
}
},
@@ -14381,7 +12181,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:30",
+ "reputed_at": "2011-11-29 11:22:41",
"reputation": 678
}
},
@@ -14395,7 +12195,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:30",
+ "reputed_at": "2011-11-29 11:22:42",
"reputation": 688
}
},
@@ -14409,7 +12209,7 @@
"negative": 0,
"reputation_type": 1,
"user": 20,
- "reputed_at": "2011-11-28 15:09:31",
+ "reputed_at": "2011-11-29 11:22:44",
"reputation": 698
}
},
@@ -14423,7 +12223,7 @@
"negative": 0,
"reputation_type": 2,
"user": 20,
- "reputed_at": "2011-11-28 15:09:33",
+ "reputed_at": "2011-11-29 11:22:47",
"reputation": 713
}
},
@@ -14437,28 +12237,28 @@
"negative": 0,
"reputation_type": 3,
"user": 40,
- "reputed_at": "2011-11-28 15:09:33",
+ "reputed_at": "2011-11-29 11:22:47",
"reputation": 702
}
},
{
- "pk": 1,
+ "pk": 2,
"model": "livesettings.setting",
"fields": {
- "value": "2",
+ "value": "f28a19ac302bc15c53c184d4db56e814afb16285",
"group": "GENERAL_SKIN_SETTINGS",
"site": 1,
- "key": "MEDIA_RESOURCE_REVISION"
+ "key": "MEDIA_RESOURCE_REVISION_HASH"
}
},
{
- "pk": 2,
+ "pk": 1,
"model": "livesettings.setting",
"fields": {
- "value": "93fa4f4e926585223d63f85755ed39ad9f62c05b",
+ "value": "2",
"group": "GENERAL_SKIN_SETTINGS",
"site": 1,
- "key": "MEDIA_RESOURCE_REVISION_HASH"
+ "key": "MEDIA_RESOURCE_REVISION"
}
}
] \ No newline at end of file