workspace
stringclasses 1
value | channel
stringclasses 1
value | sentences
stringlengths 1
3.93k
| ts
stringlengths 26
26
| user
stringlengths 2
11
| sentence_id
stringlengths 44
53
| timestamp
float64 1.5B
1.56B
| __index_level_0__
int64 0
106k
|
---|---|---|---|---|---|---|---|
pythondev | help | getting this error in the logs | 2017-08-01T01:56:50.570780 | Beverley | pythondev_help_Beverley_2017-08-01T01:56:50.570780 | 1,501,552,610.57078 | 88,303 |
pythondev | help | ^[[A^[[BInternal Server Error: /api-user-create/
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/views/decorators/csrf.py", line 58, in wrapped_view
return view_func(*args, **kwargs)
File "/home/samuel/Documents/code/binabikers/delivery/views.py", line 14, in create_user
data = json.loads(request.body)
File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
return _default_decoder.decode(s)
File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python2.7/json/decoder.py", line 380, in raw_decode
obj, end = self.scan_once(s, idx)
ValueError: Expecting property name: line 1 column 2 (char 1)
[01/Aug/2017 05:55:01] "POST /api-user-create/ HTTP/1.1" 500 85788 | 2017-08-01T01:56:52.571197 | Beverley | pythondev_help_Beverley_2017-08-01T01:56:52.571197 | 1,501,552,612.571197 | 88,304 |
pythondev | help | input: curl -X POST -d "{'user-type': 'user', 'username':'john', 'password':'john2', 'email': '<mailto:[email protected]|[email protected]>', 'first-name':'john', 'last-name':'smith'}" <http://localhost:8000/api-user-create/> | 2017-08-01T01:57:19.576489 | Beverley | pythondev_help_Beverley_2017-08-01T01:57:19.576489 | 1,501,552,639.576489 | 88,305 |
pythondev | help | Please use code formatting (either triple ticks on both sides ` ``` `, or the snippet feature which is available with the little plus to the left of the code input box)! | 2017-08-01T02:03:43.653143 | Beula | pythondev_help_Beula_2017-08-01T02:03:43.653143 | 1,501,553,023.653143 | 88,306 |
pythondev | help | But `"{'user-type': 'user', 'username':'john', 'password':'john2', 'email': '<mailto:[email protected]|[email protected]>', 'first-name':'john', 'last-name':'smith'}"` is invalid json | 2017-08-01T02:03:53.655049 | Beula | pythondev_help_Beula_2017-08-01T02:03:53.655049 | 1,501,553,033.655049 | 88,307 |
pythondev | help | You need to swap the quotes you use | 2017-08-01T02:04:01.656733 | Beula | pythondev_help_Beula_2017-08-01T02:04:01.656733 | 1,501,553,041.656733 | 88,308 |
pythondev | help | `'{"user-type": "user", "username": "john", ...}'` | 2017-08-01T02:04:16.659629 | Beula | pythondev_help_Beula_2017-08-01T02:04:16.659629 | 1,501,553,056.659629 | 88,309 |
pythondev | help | awesome it worked | 2017-08-01T02:13:52.776753 | Beverley | pythondev_help_Beverley_2017-08-01T02:13:52.776753 | 1,501,553,632.776753 | 88,310 |
pythondev | help | thanks <@Beula> | 2017-08-01T02:14:07.779824 | Beverley | pythondev_help_Beverley_2017-08-01T02:14:07.779824 | 1,501,553,647.779824 | 88,311 |
pythondev | help | sure thing | 2017-08-01T02:14:23.783116 | Beula | pythondev_help_Beula_2017-08-01T02:14:23.783116 | 1,501,553,663.783116 | 88,312 |
pythondev | help | So, I've been using `__all__` for some time now to quickly declare to the programmer which functions of a module is to be used by other modules (more or less, when you open a file, the "entry point(s)" that other files that import this file uses can be found by reading `__all__`). It's quite helpful, but the problem is that e.g. sphinx by default won't add the docstrings of private functions. This makes sense if I'm writing API docs, but not so much if I want to cover all functions.
How would you handle this issue? | 2017-08-01T04:54:59.732191 | Lanita | pythondev_help_Lanita_2017-08-01T04:54:59.732191 | 1,501,563,299.732191 | 88,313 |
pythondev | help | `sphinx by default won't add the docstrings of private functions` there should be an option to activate it for all functions | 2017-08-01T04:56:18.763161 | Ciera | pythondev_help_Ciera_2017-08-01T04:56:18.763161 | 1,501,563,378.763161 | 88,314 |
pythondev | help | Is that reasonable though? Maybe it's me who should rethink what the documentation should be used for. | 2017-08-01T04:57:28.791161 | Lanita | pythondev_help_Lanita_2017-08-01T04:57:28.791161 | 1,501,563,448.791161 | 88,315 |
pythondev | help | <@Lanita> it's unusual to write a non-api documentation in the source code | 2017-08-01T04:58:23.812615 | Collette | pythondev_help_Collette_2017-08-01T04:58:23.812615 | 1,501,563,503.812615 | 88,316 |
pythondev | help | <@Collette> Why? If I write valid rst docstrings for private functions they can be used by other tools | 2017-08-01T05:00:08.855122 | Lanita | pythondev_help_Lanita_2017-08-01T05:00:08.855122 | 1,501,563,608.855122 | 88,317 |
pythondev | help | I suppose that one of the reasons I care about this is that sphinx won't pass over my private functions by default, and thus I won't get any indication of rst syntax warnings/errors in my private functions, so they'll likely be broken and not noticed | 2017-08-01T05:03:35.937960 | Lanita | pythondev_help_Lanita_2017-08-01T05:03:35.937960 | 1,501,563,815.93796 | 88,318 |
pythondev | help | well in this case they shouldn't be private | 2017-08-01T05:03:37.938602 | Ciera | pythondev_help_Ciera_2017-08-01T05:03:37.938602 | 1,501,563,817.938602 | 88,319 |
pythondev | help | But sometimes the gritty details needs an explanation/overview, and that might as well be in rst, right? That doesn't mean that they shouldn't be private. Equating private with "doesn't need docstring" seems weird to me | 2017-08-01T05:04:32.959714 | Lanita | pythondev_help_Lanita_2017-08-01T05:04:32.959714 | 1,501,563,872.959714 | 88,320 |
pythondev | help | I agree with <@Lanita> . Documentation isn't just for end-users; it's for coworkers. Or myself, in future. | 2017-08-01T05:05:03.971881 | Gabriele | pythondev_help_Gabriele_2017-08-01T05:05:03.971881 | 1,501,563,903.971881 | 88,321 |
pythondev | help | In my case, my sphinx documentation is 100% for co-workers that can code, and that will probably continue to be the case for some time. | 2017-08-01T05:06:09.997720 | Lanita | pythondev_help_Lanita_2017-08-01T05:06:09.997720 | 1,501,563,969.99772 | 88,322 |
pythondev | help | But the thing is, my coworker might as well read the code to begin with, so maybe it makes sense to only declare the interfaces, given how readable raw rst is and python's readability in general... | 2017-08-01T05:07:09.020549 | Lanita | pythondev_help_Lanita_2017-08-01T05:07:09.020549 | 1,501,564,029.020549 | 88,323 |
pythondev | help | I disagree; "read the source" is a poor substitute for good documentation | 2017-08-01T05:07:46.034474 | Gabriele | pythondev_help_Gabriele_2017-08-01T05:07:46.034474 | 1,501,564,066.034474 | 88,324 |
pythondev | help | I don't understand what do you want <@Lanita> ? sphinx to generate doc for private method that have docstrings ? | 2017-08-01T05:08:21.047436 | Ciera | pythondev_help_Ciera_2017-08-01T05:08:21.047436 | 1,501,564,101.047436 | 88,325 |
pythondev | help | That is what people *say*, but in reality, do people work like that? It's one thing to use a library, but when you're adding functionality to a codebase? | 2017-08-01T05:08:50.058450 | Lanita | pythondev_help_Lanita_2017-08-01T05:08:50.058450 | 1,501,564,130.05845 | 88,326 |
pythondev | help | The reason I'm saying this is that my coworkers seem to be the people that prefers to read the source code directly, but maybe they're just used to an environment without documentation... sigh. | 2017-08-01T05:09:55.082381 | Lanita | pythondev_help_Lanita_2017-08-01T05:09:55.082381 | 1,501,564,195.082381 | 88,327 |
pythondev | help | <@Ciera> I suppose I want a general discussion on how documentation is to be used, which I suppose would fit better in random. Oh well. | 2017-08-01T05:10:47.102691 | Lanita | pythondev_help_Lanita_2017-08-01T05:10:47.102691 | 1,501,564,247.102691 | 88,328 |
pythondev | help | <@Lanita> because api changes, but general ideas and core functionality often doesn't change | 2017-08-01T05:11:17.114038 | Collette | pythondev_help_Collette_2017-08-01T05:11:17.114038 | 1,501,564,277.114038 | 88,329 |
pythondev | help | Source code and documentation go hand in hand. If I have documentation, I'll go there first. It also helps to communicate intent _far_ quicker than reading code does. | 2017-08-01T05:11:23.116270 | Gabriele | pythondev_help_Gabriele_2017-08-01T05:11:23.116270 | 1,501,564,283.11627 | 88,330 |
pythondev | help | Because when you try to express everything in __doc__, `help(obj)` becomes unreadable | 2017-08-01T05:11:39.122142 | Collette | pythondev_help_Collette_2017-08-01T05:11:39.122142 | 1,501,564,299.122142 | 88,331 |
pythondev | help | <@Collette> , so you leave off private functions entirely in your fancy-looking documentation? (e.g. sphinx) | 2017-08-01T05:12:19.137319 | Lanita | pythondev_help_Lanita_2017-08-01T05:12:19.137319 | 1,501,564,339.137319 | 88,332 |
pythondev | help | Yes. That's why they're private | 2017-08-01T05:12:30.141558 | Collette | pythondev_help_Collette_2017-08-01T05:12:30.141558 | 1,501,564,350.141558 | 88,333 |
pythondev | help | I can include them into a "how to read the source code" guide though | 2017-08-01T05:13:04.154210 | Collette | pythondev_help_Collette_2017-08-01T05:13:04.154210 | 1,501,564,384.15421 | 88,334 |
pythondev | help | <@Collette> that certainly seems like a sensible approach, and probably the most applicable to my use case. But it does push other developers towards "read the source" fairly quickly. Which I suppose is what is happening in my organization anyways. | 2017-08-01T05:15:54.218304 | Lanita | pythondev_help_Lanita_2017-08-01T05:15:54.218304 | 1,501,564,554.218304 | 88,335 |
pythondev | help | So, defining __all__ in every python file is a reasonable idea, I presume? Any places where I shouldn't be doing that? | 2017-08-01T05:16:38.235540 | Lanita | pythondev_help_Lanita_2017-08-01T05:16:38.235540 | 1,501,564,598.23554 | 88,336 |
pythondev | help | Well, you can't cover everything with docs. Sometimes you have to hijack the library and do dirty stuff. That's why I often write "how to read the source code" guides | 2017-08-01T05:17:13.248800 | Collette | pythondev_help_Collette_2017-08-01T05:17:13.248800 | 1,501,564,633.2488 | 88,337 |
pythondev | help | But still, `__all__` is a must | 2017-08-01T05:17:21.251913 | Collette | pythondev_help_Collette_2017-08-01T05:17:21.251913 | 1,501,564,641.251913 | 88,338 |
pythondev | help | Seems reasonable. Any pointers (blog posts, whatever) on how to write such guides? At what level should they be? | 2017-08-01T05:18:00.266512 | Lanita | pythondev_help_Lanita_2017-08-01T05:18:00.266512 | 1,501,564,680.266512 | 88,339 |
pythondev | help | I usually use the top-level docstring to explain intent, and that usually includes mentions of both public and private functions. Though should I consider the top-level docstring to be public or private? | 2017-08-01T05:22:08.361466 | Lanita | pythondev_help_Lanita_2017-08-01T05:22:08.361466 | 1,501,564,928.361466 | 88,340 |
pythondev | help | I put them in docs, not in `__doc__`. I try to explain the flow of a single successful request, how it goes from the entry point to the handler. And how you can hijack various parts of the handler if they aren't specified as the public api | 2017-08-01T05:25:52.448023 | Collette | pythondev_help_Collette_2017-08-01T05:25:52.448023 | 1,501,565,152.448023 | 88,341 |
pythondev | help | If the intent of the library isn't clear, or the module names aren't obvious for a novice reader, I often document where's the entry point and if there is some private stuff that gets overridden by children classes | 2017-08-01T05:27:07.476349 | Collette | pythondev_help_Collette_2017-08-01T05:27:07.476349 | 1,501,565,227.476349 | 88,342 |
pythondev | help | Hi | 2017-08-01T06:16:46.571186 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:16:46.571186 | 1,501,568,206.571186 | 88,343 |
pythondev | help | Could anyone advise me how to scrape the data from the Javascript Webpages? | 2017-08-01T06:17:17.581476 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:17:17.581476 | 1,501,568,237.581476 | 88,344 |
pythondev | help | I'm trying to scrape the data from from this website but im unable to scrape any field:unamused: | 2017-08-01T06:17:58.595316 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:17:58.595316 | 1,501,568,278.595316 | 88,345 |
pythondev | help | The website i'm trying to scrape the data is <https://munchery.com/menus/sf/#/0/dinner> | 2017-08-01T06:18:36.607706 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:18:36.607706 | 1,501,568,316.607706 | 88,346 |
pythondev | help | Thanks for the advise:slightly_smiling_face: | 2017-08-01T06:19:14.620350 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:19:14.620350 | 1,501,568,354.62035 | 88,347 |
pythondev | help | <#C5PHT9EGK|webscraping> | 2017-08-01T06:19:45.630365 | Suellen | pythondev_help_Suellen_2017-08-01T06:19:45.630365 | 1,501,568,385.630365 | 88,348 |
pythondev | help | <@Cassaundra> also, can you show a page you're scraping? | 2017-08-01T06:20:00.635124 | Suellen | pythondev_help_Suellen_2017-08-01T06:20:00.635124 | 1,501,568,400.635124 | 88,349 |
pythondev | help | <@Suellen> The Website i'm trying to scrape is <https://munchery.com/menus/sf/#/0/dinner> | 2017-08-01T06:24:23.720392 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:24:23.720392 | 1,501,568,663.720392 | 88,350 |
pythondev | help | Not the website, but a page. | 2017-08-01T06:24:39.725138 | Suellen | pythondev_help_Suellen_2017-08-01T06:24:39.725138 | 1,501,568,679.725138 | 88,351 |
pythondev | help | Sorry couldn't get you | 2017-08-01T06:29:42.820669 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:29:42.820669 | 1,501,568,982.820669 | 88,352 |
pythondev | help | i have no idea about JS | 2017-08-01T06:29:52.823911 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T06:29:52.823911 | 1,501,568,992.823911 | 88,353 |
pythondev | help | If the data is all being served up by Javascript then you can't scrape it. You'll want to watch which calls are being made to get the JSON data (or equivalent), and replicate those to get the data | 2017-08-01T06:31:10.849889 | Gabriele | pythondev_help_Gabriele_2017-08-01T06:31:10.849889 | 1,501,569,070.849889 | 88,354 |
pythondev | help | Or ask Munchery if they have an API you can use | 2017-08-01T06:31:29.856155 | Gabriele | pythondev_help_Gabriele_2017-08-01T06:31:29.856155 | 1,501,569,089.856155 | 88,355 |
pythondev | help | <@Cassaundra> also please check the terms of service of a site before asking questions about things that could violate TOS like scraping. The sites TOS is pretty clear on that, so your questions are better in <#C68GBADG8|etc_greyhat> | 2017-08-01T07:32:57.991037 | Patty | pythondev_help_Patty_2017-08-01T07:32:57.991037 | 1,501,572,777.991037 | 88,356 |
pythondev | help | <@Patty> Ok:+1: | 2017-08-01T07:36:20.054096 | Cassaundra | pythondev_help_Cassaundra_2017-08-01T07:36:20.054096 | 1,501,572,980.054096 | 88,357 |
pythondev | help | Simple one off question that I’ve thought too much about:
I made a website in Django that does a whole bunch of different things for me as a teacher, like gradebooks, assigning math problems to specific students, doling out digital awards, scraping the sites we use, sending parent letters, etc. When I describe it quickly to actual developers/programmers, what’s the easiest way to describe something like that?
Website? App? Program? What’s the usual term for a django site? | 2017-08-01T09:55:10.747442 | Zaida | pythondev_help_Zaida_2017-08-01T09:55:10.747442 | 1,501,581,310.747442 | 88,358 |
pythondev | help | You're bordering on a "LMS" (Learning Management System) - but I usually just say "site".
In my anecdotal experience:
1. site/website -> normal web application
2. webapp -> borders on 1, but usually this gets more into more client side stuff, or an SPA type setup with an API and more functionality than the standard forms of a site
3. program -> pretty vague, could be website, desktop app, etc.
4. app -> often mobile specific
But given a little context anyone will catch your drift | 2017-08-01T09:57:59.856427 | Beula | pythondev_help_Beula_2017-08-01T09:57:59.856427 | 1,501,581,479.856427 | 88,359 |
pythondev | help | Interesting, so teaching websites like mine have their own acronym? Good to know | 2017-08-01T09:58:38.881913 | Zaida | pythondev_help_Zaida_2017-08-01T09:58:38.881913 | 1,501,581,518.881913 | 88,360 |
pythondev | help | Webapp is what I’ve been shooting for. Thanks! After making it for a year, I’ve only just started talking about it with people who know any coding and quickly realized I don’t know how to describe it to anyone who knows their stuff. | 2017-08-01T10:00:09.942196 | Zaida | pythondev_help_Zaida_2017-08-01T10:00:09.942196 | 1,501,581,609.942196 | 88,361 |
pythondev | help | LMS is a bit more, but sounds like you have a lot of one. Blackboard, Desire2Learn, Instructure Canvas, Moodle, all examples of LMS related sites | 2017-08-01T10:06:55.209746 | Beula | pythondev_help_Beula_2017-08-01T10:06:55.209746 | 1,501,582,015.209746 | 88,362 |
pythondev | help | Yeah, I checked out a few and it’s definitely not at the level of most of those, but seems to have some overlap. :taco: to you, <@Beula> | 2017-08-01T10:39:46.499653 | Zaida | pythondev_help_Zaida_2017-08-01T10:39:46.499653 | 1,501,583,986.499653 | 88,363 |
pythondev | help | Well I screwed that up. | 2017-08-01T10:40:05.511807 | Zaida | pythondev_help_Zaida_2017-08-01T10:40:05.511807 | 1,501,584,005.511807 | 88,364 |
pythondev | help | <@Zaida> :taco: for solving a need for your work! Do you come from programming or pick it up for this project? | 2017-08-01T10:54:44.104145 | Beula | pythondev_help_Beula_2017-08-01T10:54:44.104145 | 1,501,584,884.104145 | 88,365 |
pythondev | help | <@Beula> Picked it up last summer to make my teaching more efficient/effective. But now I’m looking to learn enough to become a professional developer and hopefully work for an education based company, ala Khan Academy or the like. | 2017-08-01T11:56:24.620243 | Zaida | pythondev_help_Zaida_2017-08-01T11:56:24.620243 | 1,501,588,584.620243 | 88,366 |
pythondev | help | Spent 4 years in the classroom, and a few in Graphic design before that, so the tech/design + education is something that I’m really interested in. | 2017-08-01T11:57:03.646898 | Zaida | pythondev_help_Zaida_2017-08-01T11:57:03.646898 | 1,501,588,623.646898 | 88,367 |
pythondev | help | that’s a cool space to work in <@Zaida>. i work for an education based start-up. <http://openstax.org|openstax.org> | 2017-08-01T12:20:52.562843 | Johana | pythondev_help_Johana_2017-08-01T12:20:52.562843 | 1,501,590,052.562843 | 88,368 |
pythondev | help | That's really cool! | 2017-08-01T12:21:32.587452 | Beula | pythondev_help_Beula_2017-08-01T12:21:32.587452 | 1,501,590,092.587452 | 88,369 |
pythondev | help | Whoa, Mike, openstax looks awesome. | 2017-08-01T12:23:05.644242 | Zaida | pythondev_help_Zaida_2017-08-01T12:23:05.644242 | 1,501,590,185.644242 | 88,370 |
pythondev | help | <@Zaida> i would def. try to integrate with some LMS. for some reason it’s something that comes up last i don’t know why. we are currently making an integration with canvas. | 2017-08-01T12:23:08.646278 | Johana | pythondev_help_Johana_2017-08-01T12:23:08.646278 | 1,501,590,188.646278 | 88,371 |
pythondev | help | yea we’re pretty cool. especially the fact that we make free textbooks. | 2017-08-01T12:23:28.658300 | Johana | pythondev_help_Johana_2017-08-01T12:23:28.658300 | 1,501,590,208.6583 | 88,372 |
pythondev | help | we’ll be launching our first paid product this fall. <https://tutor.openstax.org/> | 2017-08-01T12:23:52.673165 | Johana | pythondev_help_Johana_2017-08-01T12:23:52.673165 | 1,501,590,232.673165 | 88,373 |
pythondev | help | we’re a bit different than khan academy. i’ve met with those folks before :wink:. we actually publish research vs khan academy who doesn’t. | 2017-08-01T12:24:55.710814 | Johana | pythondev_help_Johana_2017-08-01T12:24:55.710814 | 1,501,590,295.710814 | 88,374 |
pythondev | help | I love the entire concept of you guys. | 2017-08-01T12:25:06.717612 | Zaida | pythondev_help_Zaida_2017-08-01T12:25:06.717612 | 1,501,590,306.717612 | 88,375 |
pythondev | help | Is that the flask app mike? | 2017-08-01T12:25:15.722834 | Beula | pythondev_help_Beula_2017-08-01T12:25:15.722834 | 1,501,590,315.722834 | 88,376 |
pythondev | help | well i’ve blown up the flask app now but yea it was the personalized learning part <@Beula> | 2017-08-01T12:25:32.733528 | Johana | pythondev_help_Johana_2017-08-01T12:25:32.733528 | 1,501,590,332.733528 | 88,377 |
pythondev | help | What is it now? | 2017-08-01T12:25:50.744511 | Beula | pythondev_help_Beula_2017-08-01T12:25:50.744511 | 1,501,590,350.744511 | 88,378 |
pythondev | help | Do you see yourself as a ‘disruptive’ service? I know the price of textbooks has been a massive issue for years now. | 2017-08-01T12:25:55.747366 | Zaida | pythondev_help_Zaida_2017-08-01T12:25:55.747366 | 1,501,590,355.747366 | 88,379 |
pythondev | help | and Canvas is the best LMS from what I hear, but moodle is FOSS | 2017-08-01T12:26:00.750393 | Beula | pythondev_help_Beula_2017-08-01T12:26:00.750393 | 1,501,590,360.750393 | 88,380 |
pythondev | help | just pure python and api post requests. | 2017-08-01T12:26:02.751542 | Johana | pythondev_help_Johana_2017-08-01T12:26:02.751542 | 1,501,590,362.751542 | 88,381 |
pythondev | help | yea we have been disrupted the market really good lately. | 2017-08-01T12:26:14.759211 | Johana | pythondev_help_Johana_2017-08-01T12:26:14.759211 | 1,501,590,374.759211 | 88,382 |
pythondev | help | Way to go, man. | 2017-08-01T12:26:20.762816 | Zaida | pythondev_help_Zaida_2017-08-01T12:26:20.762816 | 1,501,590,380.762816 | 88,383 |
pythondev | help | several big book publishers have partnered with us. | 2017-08-01T12:26:24.765105 | Johana | pythondev_help_Johana_2017-08-01T12:26:24.765105 | 1,501,590,384.765105 | 88,384 |
pythondev | help | which is basically saying, “since they can’t beat us they’ve joined us.” lol | 2017-08-01T12:26:43.777425 | Johana | pythondev_help_Johana_2017-08-01T12:26:43.777425 | 1,501,590,403.777425 | 88,385 |
pythondev | help | I teach 2nd Grade, so it’s a bit of a different world here, but still we have to shell out untold amounts of $ to pearson every year. | 2017-08-01T12:26:59.786639 | Zaida | pythondev_help_Zaida_2017-08-01T12:26:59.786639 | 1,501,590,419.786639 | 88,386 |
pythondev | help | yea we tried to do k-12 | 2017-08-01T12:27:24.802557 | Johana | pythondev_help_Johana_2017-08-01T12:27:24.802557 | 1,501,590,444.802557 | 88,387 |
pythondev | help | And the user interface I make for Kindergarten-4th grade (that’s all my school covers at the moment) can’t be as complicated as a blackboard or a canvas. | 2017-08-01T12:27:31.806687 | Zaida | pythondev_help_Zaida_2017-08-01T12:27:31.806687 | 1,501,590,451.806687 | 88,388 |
pythondev | help | we had another product called concept coach but the grant money didn’t come in | 2017-08-01T12:27:35.809314 | Johana | pythondev_help_Johana_2017-08-01T12:27:35.809314 | 1,501,590,455.809314 | 88,389 |
pythondev | help | we had to pivot to college students. | 2017-08-01T12:27:40.812434 | Johana | pythondev_help_Johana_2017-08-01T12:27:40.812434 | 1,501,590,460.812434 | 88,390 |
pythondev | help | Great demo to start with. | 2017-08-01T12:27:50.818949 | Zaida | pythondev_help_Zaida_2017-08-01T12:27:50.818949 | 1,501,590,470.818949 | 88,391 |
pythondev | help | spaced practice is where its at. | 2017-08-01T12:28:10.831083 | Johana | pythondev_help_Johana_2017-08-01T12:28:10.831083 | 1,501,590,490.831083 | 88,392 |
pythondev | help | and of course we have our own algorithms with academic papers written to compute the topic mastery of students. | 2017-08-01T12:28:48.854747 | Johana | pythondev_help_Johana_2017-08-01T12:28:48.854747 | 1,501,590,528.854747 | 88,393 |
pythondev | help | Oh! Do you know of any open-source algorithms for spaced practice? I’d love to incorporate something like what Anki uses into my app, but couldn’t find anything that I thought I could use. | 2017-08-01T12:29:25.877908 | Zaida | pythondev_help_Zaida_2017-08-01T12:29:25.877908 | 1,501,590,565.877908 | 88,394 |
pythondev | help | i only know of anki. | 2017-08-01T12:29:36.885111 | Johana | pythondev_help_Johana_2017-08-01T12:29:36.885111 | 1,501,590,576.885111 | 88,395 |
pythondev | help | i love it | 2017-08-01T12:29:37.885837 | Johana | pythondev_help_Johana_2017-08-01T12:29:37.885837 | 1,501,590,577.885837 | 88,396 |
pythondev | help | especially since it is python | 2017-08-01T12:29:42.889126 | Johana | pythondev_help_Johana_2017-08-01T12:29:42.889126 | 1,501,590,582.889126 | 88,397 |
pythondev | help | It’s fantastic. Is it open source? | 2017-08-01T12:29:45.890985 | Zaida | pythondev_help_Zaida_2017-08-01T12:29:45.890985 | 1,501,590,585.890985 | 88,398 |
pythondev | help | ya | 2017-08-01T12:29:52.895014 | Johana | pythondev_help_Johana_2017-08-01T12:29:52.895014 | 1,501,590,592.895014 | 88,399 |
pythondev | help | it uses a modified supermemo algorithm which is really good. | 2017-08-01T12:30:11.906969 | Johana | pythondev_help_Johana_2017-08-01T12:30:11.906969 | 1,501,590,611.906969 | 88,400 |
pythondev | help | Interesting… I doubt I can crack it open and make sense of it, but I’ll give it a shot. | 2017-08-01T12:30:18.911634 | Zaida | pythondev_help_Zaida_2017-08-01T12:30:18.911634 | 1,501,590,618.911634 | 88,401 |
pythondev | help | Never heard of supermemo before. | 2017-08-01T12:30:28.917391 | Zaida | pythondev_help_Zaida_2017-08-01T12:30:28.917391 | 1,501,590,628.917391 | 88,402 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.