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 | REGEX?!!??! | 2019-04-29T09:37:51.062500 | Claudine | pythondev_help_Claudine_2019-04-29T09:37:51.062500 | 1,556,530,671.0625 | 21,321 |
pythondev | help | any good libraries to access VMWare? I need to download data from some tools which can only be accessed through VMWare | 2019-04-29T09:39:58.063300 | Alvina | pythondev_help_Alvina_2019-04-29T09:39:58.063300 | 1,556,530,798.0633 | 21,322 |
pythondev | help | have you found anything via google? ¯\_(ツ)_/¯ | 2019-04-29T09:40:46.063400 | Hiroko | pythondev_help_Hiroko_2019-04-29T09:40:46.063400 | 1,556,530,846.0634 | 21,323 |
pythondev | help | Hello :slightly_smiling_face: I use Spider to run Python. I am running some scripts take a really longe time to process and there's no much room for optimisation in the script itself. I was wondering, does anyone know if it is possible to make Spider run faster ( like allocating more RAM to it, etc)? | 2019-04-29T09:48:53.065300 | Ming | pythondev_help_Ming_2019-04-29T09:48:53.065300 | 1,556,531,333.0653 | 21,324 |
pythondev | help | a couple results - but it seems to be geared towards automating starting a VMWare, powering it off etc | 2019-04-29T09:49:42.065700 | Alvina | pythondev_help_Alvina_2019-04-29T09:49:42.065700 | 1,556,531,382.0657 | 21,325 |
pythondev | help | <@Ming> spyder is an IDE, and doesn’t have anything to do with the execution of your program | 2019-04-29T09:51:35.066500 | Hiroko | pythondev_help_Hiroko_2019-04-29T09:51:35.066500 | 1,556,531,495.0665 | 21,326 |
pythondev | help | that’s passed off to the python interpreter you’re using | 2019-04-29T09:51:46.066800 | Hiroko | pythondev_help_Hiroko_2019-04-29T09:51:46.066800 | 1,556,531,506.0668 | 21,327 |
pythondev | help | and profiling programs is definitely a bit of a black art | 2019-04-29T09:52:07.067200 | Hiroko | pythondev_help_Hiroko_2019-04-29T09:52:07.067200 | 1,556,531,527.0672 | 21,328 |
pythondev | help | one thing you can try to do is ensure you have the C/C++ dependencies for python libs installed | 2019-04-29T09:52:53.067800 | Hiroko | pythondev_help_Hiroko_2019-04-29T09:52:53.067800 | 1,556,531,573.0678 | 21,329 |
pythondev | help | for example, if you’re running numpy and doing linalg, having BLAS installed locally will have a major speedup vs having numpy run all those calcs in pure python | 2019-04-29T09:53:25.068600 | Hiroko | pythondev_help_Hiroko_2019-04-29T09:53:25.068600 | 1,556,531,605.0686 | 21,330 |
pythondev | help | Okay. I know which bit is significantly slowing down the running of the script. Maybe someone can help me see whether there would be a more efficient way of doing this? | 2019-04-29T09:57:34.069800 | Ming | pythondev_help_Ming_2019-04-29T09:57:34.069800 | 1,556,531,854.0698 | 21,331 |
pythondev | help | `list_indexes_master_dataframe = master_dataframe.index.values.tolist()`
`master_dataframe['nans CH'] = ''`
`for each in NAN_indexes:`
` if each < master_dataframe.index[-1] and each > 180000:`
` if each in list_indexes_master_dataframe:`
` master_dataframe.loc[each, 'nans CH'] = 'nan'` | 2019-04-29T09:57:37.070100 | Ming | pythondev_help_Ming_2019-04-29T09:57:37.070100 | 1,556,531,857.0701 | 21,332 |
pythondev | help | Basically I have a dataframe with data that has been downsampled -> master_dataframe
And I have a list of indexes where the data point was a nan (before applying interpolation)
On a different column (called 'nans CH') I want to write 'nan' next to the new interpolated value | 2019-04-29T10:01:35.072900 | Ming | pythondev_help_Ming_2019-04-29T10:01:35.072900 | 1,556,532,095.0729 | 21,333 |
pythondev | help | So if a value in the dataframe with the data was nan before, I want to write a 'nan' next to it (on the same row, thus using the same index) | 2019-04-29T10:02:31.073900 | Ming | pythondev_help_Ming_2019-04-29T10:02:31.073900 | 1,556,532,151.0739 | 21,334 |
pythondev | help | I’m guessing that iterating through `list_index_ master_dataframe` to look up if `each` is in it is slowing you down a bunch. If the values in `list_index_ master_dataframe` are unique you can speed up your work by making that a dict, with all the values the keys, and an empty value. This will speed it up because you are going from O(n) for the list evaluation to amortized O(1) dict key lookup | 2019-04-29T10:05:48.076600 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:05:48.076600 | 1,556,532,348.0766 | 21,335 |
pythondev | help | also - I don’t know dataframes so well - but to me `master_dataframe.loc[each, 'nans CH'] = 'nan'` sure looks like it is doing a lookup. You can probably get rid of `if each in list_indexes_master_dataframe:` and just wrap `master_dataframe.loc[each, 'nans CH'] = 'nan'` in a try/except | 2019-04-29T10:07:12.077800 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:07:12.077800 | 1,556,532,432.0778 | 21,336 |
pythondev | help | Yep. The second part makes sense. I implemented a try/except now | 2019-04-29T10:08:47.078500 | Ming | pythondev_help_Ming_2019-04-29T10:08:47.078500 | 1,556,532,527.0785 | 21,337 |
pythondev | help | But I didn't understand well making the list of indexes into a dictionary | 2019-04-29T10:09:13.079100 | Ming | pythondev_help_Ming_2019-04-29T10:09:13.079100 | 1,556,532,553.0791 | 21,338 |
pythondev | help | The values in `list_index_ master_dataframe` are unique | 2019-04-29T10:10:07.079700 | Ming | pythondev_help_Ming_2019-04-29T10:10:07.079700 | 1,556,532,607.0797 | 21,339 |
pythondev | help | good morning everyone. here for another day of geekery. | 2019-04-29T10:10:18.079900 | Frankie | pythondev_help_Frankie_2019-04-29T10:10:18.079900 | 1,556,532,618.0799 | 21,340 |
pythondev | help | <@Ming> the difference is in the lookup | 2019-04-29T10:12:02.080700 | Hiroko | pythondev_help_Hiroko_2019-04-29T10:12:02.080700 | 1,556,532,722.0807 | 21,341 |
pythondev | help | with a list, you have to iterate through each and every index | 2019-04-29T10:12:15.081200 | Hiroko | pythondev_help_Hiroko_2019-04-29T10:12:15.081200 | 1,556,532,735.0812 | 21,342 |
pythondev | help | with a dict, you just need the key for a lookup | 2019-04-29T10:12:25.081800 | Hiroko | pythondev_help_Hiroko_2019-04-29T10:12:25.081800 | 1,556,532,745.0818 | 21,343 |
pythondev | help | but if you wrapped the try except it doesn’t look like you even need `list_index_ master_dataframe` anymore | 2019-04-29T10:12:34.082000 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:12:34.082000 | 1,556,532,754.082 | 21,344 |
pythondev | help | Yes. You are right | 2019-04-29T10:13:24.082400 | Ming | pythondev_help_Ming_2019-04-29T10:13:24.082400 | 1,556,532,804.0824 | 21,345 |
pythondev | help | trying to make a loop or function that takes all churns from data_2, and puts them into data_1? | 2019-04-29T10:14:43.083000 | Nola | pythondev_help_Nola_2019-04-29T10:14:43.083000 | 1,556,532,883.083 | 21,346 |
pythondev | help | Actually the try doesn't quite work because it will always work. Even if the index doesn't exist yet in the dataframe. It will create a new one. I will try using the dictionary | 2019-04-29T10:17:18.084400 | Ming | pythondev_help_Ming_2019-04-29T10:17:18.084400 | 1,556,533,038.0844 | 21,347 |
pythondev | help | was this to my question or another question? | 2019-04-29T10:18:15.084600 | Nola | pythondev_help_Nola_2019-04-29T10:18:15.084600 | 1,556,533,095.0846 | 21,348 |
pythondev | help | Sorry, another question | 2019-04-29T10:18:37.085100 | Ming | pythondev_help_Ming_2019-04-29T10:18:37.085100 | 1,556,533,117.0851 | 21,349 |
pythondev | help | np | 2019-04-29T10:18:44.085200 | Nola | pythondev_help_Nola_2019-04-29T10:18:44.085200 | 1,556,533,124.0852 | 21,350 |
pythondev | help | <@Nola> what about a merge? `df = data_1.merge(data_2)` or if you want to replace data_1 `data_1 = data_1.merge(data_2)` | 2019-04-29T10:22:55.086400 | Marth | pythondev_help_Marth_2019-04-29T10:22:55.086400 | 1,556,533,375.0864 | 21,351 |
pythondev | help | merge also has options if your data is more complex than your sample | 2019-04-29T10:23:16.086800 | Marth | pythondev_help_Marth_2019-04-29T10:23:16.086800 | 1,556,533,396.0868 | 21,352 |
pythondev | help | like this example | 2019-04-29T10:26:50.087900 | Nola | pythondev_help_Nola_2019-04-29T10:26:50.087900 | 1,556,533,610.0879 | 21,353 |
pythondev | help | Everytime I use merge, it removes values not found | 2019-04-29T10:27:47.089300 | Nola | pythondev_help_Nola_2019-04-29T10:27:47.089300 | 1,556,533,667.0893 | 21,354 |
pythondev | help | Using the dict worked very well. I hadn't thought about it. Thanks a lot <@Clemmie> and <@Hiroko>!! :smiley: | 2019-04-29T10:29:08.089400 | Ming | pythondev_help_Ming_2019-04-29T10:29:08.089400 | 1,556,533,748.0894 | 21,355 |
pythondev | help | I think what you might be looking for is the "how" parameter? So something like like `df = data_1.merge(data_2, how='left')` | 2019-04-29T10:33:44.091500 | Marth | pythondev_help_Marth_2019-04-29T10:33:44.091500 | 1,556,534,024.0915 | 21,356 |
pythondev | help | though the missing values won't be blank, they'll be NaN | 2019-04-29T10:34:11.092300 | Marth | pythondev_help_Marth_2019-04-29T10:34:11.092300 | 1,556,534,051.0923 | 21,357 |
pythondev | help | Hi all, I'm new here I was wondering how can I make a python script to disable the shortcut key Alt + F4 | 2019-04-29T10:35:37.092900 | Blythe | pythondev_help_Blythe_2019-04-29T10:35:37.092900 | 1,556,534,137.0929 | 21,358 |
pythondev | help | Alt F4 is implemented at the OS level.Disabling it across the board with python will be difficult, at a minimum | 2019-04-29T10:43:32.094600 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:43:32.094600 | 1,556,534,612.0946 | 21,359 |
pythondev | help | But there is a way | 2019-04-29T10:50:09.094700 | Blythe | pythondev_help_Blythe_2019-04-29T10:50:09.094700 | 1,556,535,009.0947 | 21,360 |
pythondev | help | maybe? You would have to hook into the OS via it’s calls - certainly more than anything I have ever done | 2019-04-29T10:51:12.094900 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:51:12.094900 | 1,556,535,072.0949 | 21,361 |
pythondev | help | why do you wan to disable alt/f4? perhaps there is an easier way to achieve what you want | 2019-04-29T10:51:53.095800 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:51:53.095800 | 1,556,535,113.0958 | 21,362 |
pythondev | help | look I do not want to type in that shortcut key without wanting because it closes the programs | 2019-04-29T10:54:54.095900 | Blythe | pythondev_help_Blythe_2019-04-29T10:54:54.095900 | 1,556,535,294.0959 | 21,363 |
pythondev | help | guys, would someone take a look at <https://www.reddit.com/r/Python/comments/bip1aq/synchronizing_file_access_between_2_indep/> ?
I'm doing it for the first time and I don't know if there are other better alternatives than a `lock` file | 2019-04-29T10:56:56.097700 | Delcie | pythondev_help_Delcie_2019-04-29T10:56:56.097700 | 1,556,535,416.0977 | 21,364 |
pythondev | help | It is hard to fat-finger, but ok. What os are you on? in OS X you should just get Better Touch Tool to override Alt F4 - better than reinventing the wheel | 2019-04-29T10:59:01.097900 | Clemmie | pythondev_help_Clemmie_2019-04-29T10:59:01.097900 | 1,556,535,541.0979 | 21,365 |
pythondev | help | is there a way to merge by "right_index=True," and by a date column? | 2019-04-29T11:01:02.098500 | Nola | pythondev_help_Nola_2019-04-29T11:01:02.098500 | 1,556,535,662.0985 | 21,366 |
pythondev | help | My operating system is Windows | 2019-04-29T11:05:50.098800 | Blythe | pythondev_help_Blythe_2019-04-29T11:05:50.098800 | 1,556,535,950.0988 | 21,367 |
pythondev | help | there is `how='right'` (instead of left) but I'm not sure if that's what you're looking for? I'm also not sure where/how you want to use the date col? Can you provide some sample data? | 2019-04-29T11:06:02.099000 | Marth | pythondev_help_Marth_2019-04-29T11:06:02.099000 | 1,556,535,962.099 | 21,368 |
pythondev | help | I don’t know windows very well, but you can ask in <#C5XHHMXHB|os_windows> if anyone knows of a program to override it | 2019-04-29T11:06:40.099200 | Clemmie | pythondev_help_Clemmie_2019-04-29T11:06:40.099200 | 1,556,536,000.0992 | 21,369 |
pythondev | help | <@Nola> you may want to also look at: <https://pandas.pydata.org/pandas-docs/stable/reference/frame.html#combining-joining-merging> | 2019-04-29T11:08:31.099500 | Marth | pythondev_help_Marth_2019-04-29T11:08:31.099500 | 1,556,536,111.0995 | 21,370 |
pythondev | help | yes, the issue I'm having is I have two DF's and they Both have ['ID'] and ['Date'] and i want to join them but having trouble | 2019-04-29T11:10:11.099700 | Nola | pythondev_help_Nola_2019-04-29T11:10:11.099700 | 1,556,536,211.0997 | 21,371 |
pythondev | help | I'm guessing the pandas `merge` function is what you're probably looking for. It's hard to know for sure without knowing more of your data. You may want to have a look at merge (from the link I posted above). Keeping in mind you can provide a list to the `right_on` and `left_on` options. | 2019-04-29T11:21:30.099900 | Marth | pythondev_help_Marth_2019-04-29T11:21:30.099900 | 1,556,536,890.0999 | 21,372 |
pythondev | help | you may look into this sort of syntax (untested, so it may not work or be the solution you're looking for): `right_on=[['ID', 'Date']]` I can't remember if that's correct syntax or if `right_on=['ID', 'Date']` is the right way, but I think you get the idea that you can provide merge with a list | 2019-04-29T11:24:12.100100 | Marth | pythondev_help_Marth_2019-04-29T11:24:12.100100 | 1,556,537,052.1001 | 21,373 |
pythondev | help | Hi all - I am a bit new to python but hoping someone might be able to point me in the right direction with a python project I am interested in - <https://github.com/kenkeiter/lantern> is a project to control a specific bluetooth light - however, when I follow the steps to install this and run the sample code on the github page, it tells me “ImportError: cannot import name Light” - hoping someone much more experienced than me can tell me whats wrong with that page | 2019-04-29T11:59:05.100600 | Lorenzo | pythondev_help_Lorenzo_2019-04-29T11:59:05.100600 | 1,556,539,145.1006 | 21,374 |
pythondev | help | soo - anyone wanna do some sleuthing for me? I'm a part time mentor for a software dev company and I suspect one of my students has copied his entire project from somewhere else. anyone know if there's a way to tell if a github repo was cloned/copied even if it's not forked? | 2019-04-29T12:12:59.101900 | Frankie | pythondev_help_Frankie_2019-04-29T12:12:59.101900 | 1,556,539,979.1019 | 21,375 |
pythondev | help | basically the entire project is 95% finished in the first commit, dude doesn't speak good english, yet his readme is perfect english, lol, and the whole project uses tons of concepts and tech not taught in the course he would have taken. | 2019-04-29T12:13:50.103000 | Frankie | pythondev_help_Frankie_2019-04-29T12:13:50.103000 | 1,556,540,030.103 | 21,376 |
pythondev | help | he didn't fork the repo from anywhere, that was the first thing I checked, but I suspect he cloned/copied it from somewhere and just uploaded it as his own which would be bad | 2019-04-29T12:14:51.104300 | Frankie | pythondev_help_Frankie_2019-04-29T12:14:51.104300 | 1,556,540,091.1043 | 21,377 |
pythondev | help | That sounds like picking a few whole sentences and doing a site-search via Google. | 2019-04-29T12:14:58.104500 | Carmen | pythondev_help_Carmen_2019-04-29T12:14:58.104500 | 1,556,540,098.1045 | 21,378 |
pythondev | help | Toss me the repo link and I'll poke at it. | 2019-04-29T12:15:21.105200 | Carmen | pythondev_help_Carmen_2019-04-29T12:15:21.105200 | 1,556,540,121.1052 | 21,379 |
pythondev | help | yeah I did that in the readme for one or two sentences but couldn't find anything - I'm still trying cause I really don't believe this dude did it himself. lol | 2019-04-29T12:15:31.105500 | Frankie | pythondev_help_Frankie_2019-04-29T12:15:31.105500 | 1,556,540,131.1055 | 21,380 |
pythondev | help | I'll PM the repo to anyone but want to keep it out of this chat just cause I don't wanna throw him under the bus if he did do it himself by some miracle :smile: | 2019-04-29T12:16:03.106300 | Frankie | pythondev_help_Frankie_2019-04-29T12:16:03.106300 | 1,556,540,163.1063 | 21,381 |
pythondev | help | sounds like fun - toss it my way too | 2019-04-29T12:16:43.106800 | Clemmie | pythondev_help_Clemmie_2019-04-29T12:16:43.106800 | 1,556,540,203.1068 | 21,382 |
pythondev | help | thanks guys, link sent! detective internet is on the case | 2019-04-29T12:17:55.107100 | Frankie | pythondev_help_Frankie_2019-04-29T12:17:55.107100 | 1,556,540,275.1071 | 21,383 |
pythondev | help | to be fair his other readmes are also good, so it's possible he outsourced the work and just paid someone to do it for him, lol | 2019-04-29T12:18:26.107700 | Frankie | pythondev_help_Frankie_2019-04-29T12:18:26.107700 | 1,556,540,306.1077 | 21,384 |
pythondev | help | that's also a reasonable suspicion | 2019-04-29T12:21:26.109500 | Elanor | pythondev_help_Elanor_2019-04-29T12:21:26.109500 | 1,556,540,486.1095 | 21,385 |
pythondev | help | there are definitely a lot of services out there that help people with interviews including coding problems | 2019-04-29T12:21:49.110300 | Elanor | pythondev_help_Elanor_2019-04-29T12:21:49.110300 | 1,556,540,509.1103 | 21,386 |
pythondev | help | so he could have just tossed some cash to one of those services | 2019-04-29T12:21:58.110800 | Elanor | pythondev_help_Elanor_2019-04-29T12:21:58.110800 | 1,556,540,518.1108 | 21,387 |
pythondev | help | afaik you can kill the fork relationships on github | 2019-04-29T12:22:54.111800 | Jimmy | pythondev_help_Jimmy_2019-04-29T12:22:54.111800 | 1,556,540,574.1118 | 21,388 |
pythondev | help | or just fork and upload elsewhere | 2019-04-29T12:23:02.112200 | Jimmy | pythondev_help_Jimmy_2019-04-29T12:23:02.112200 | 1,556,540,582.1122 | 21,389 |
pythondev | help | other facts that make me feel this is not his work: first time he sent me the repo it was awful ... env files everywhere, literal command line commands somehow in the repo (e.g. there was a file called `python app.py` as if he'd tried to type it into the command line, lol) lib/site-packages in the repo, files all out of order ... just looked like he tried to clone it and it didn't work right away so he started trying to make it work and broke it even worse. He then came to me asking for help, I told him the project was basically all over the place and he needed to start over and go back to the course materials, he assured me it was all his work after I questioned it that time and said he would redo it...3 days later, this giant project all in one commit again like he did it all in three days? this guy is a student, not a seasoned developer so it makes me question this a lot. | 2019-04-29T12:23:07.112400 | Frankie | pythondev_help_Frankie_2019-04-29T12:23:07.112400 | 1,556,540,587.1124 | 21,390 |
pythondev | help | you could start asking questions regarding why he made the decisions he did | 2019-04-29T12:23:56.112800 | Elanor | pythondev_help_Elanor_2019-04-29T12:23:56.112800 | 1,556,540,636.1128 | 21,391 |
pythondev | help | ask him to explain certain parts of the code to you in detail | 2019-04-29T12:24:09.113200 | Elanor | pythondev_help_Elanor_2019-04-29T12:24:09.113200 | 1,556,540,649.1132 | 21,392 |
pythondev | help | treat it like an interview | 2019-04-29T12:24:27.113600 | Elanor | pythondev_help_Elanor_2019-04-29T12:24:27.113600 | 1,556,540,667.1136 | 21,393 |
pythondev | help | he should be able to explain the decisions that were made and the structure of the code | 2019-04-29T12:24:43.114100 | Elanor | pythondev_help_Elanor_2019-04-29T12:24:43.114100 | 1,556,540,683.1141 | 21,394 |
pythondev | help | that's exactly what I plan to do today when I meet w/ him. Just going to tell him to take me through his code and explain what it does. | 2019-04-29T12:25:32.115600 | Frankie | pythondev_help_Frankie_2019-04-29T12:25:32.115600 | 1,556,540,732.1156 | 21,395 |
pythondev | help | Even if he did hire someone to write it - oof that `Quantity` model | 2019-04-29T12:25:33.115700 | Clemmie | pythondev_help_Clemmie_2019-04-29T12:25:33.115700 | 1,556,540,733.1157 | 21,396 |
pythondev | help | but I'm pretty sure <@Sasha> just nailed it - sent me another repo that looks pretty much identical and it's a past submission from another student that took the same course. yikes. | 2019-04-29T12:26:26.116500 | Frankie | pythondev_help_Frankie_2019-04-29T12:26:26.116500 | 1,556,540,786.1165 | 21,397 |
pythondev | help | show us!!! | 2019-04-29T12:26:41.116700 | Clemmie | pythondev_help_Clemmie_2019-04-29T12:26:41.116700 | 1,556,540,801.1167 | 21,398 |
pythondev | help | Ooooh | 2019-04-29T12:27:14.117000 | Elanor | pythondev_help_Elanor_2019-04-29T12:27:14.117000 | 1,556,540,834.117 | 21,399 |
pythondev | help | oh wow | 2019-04-29T12:27:15.117100 | Carlo | pythondev_help_Carlo_2019-04-29T12:27:15.117100 | 1,556,540,835.1171 | 21,400 |
pythondev | help | ok so here's what you need to do | 2019-04-29T12:27:26.117700 | Elanor | pythondev_help_Elanor_2019-04-29T12:27:26.117700 | 1,556,540,846.1177 | 21,401 |
pythondev | help | put up a <http://twitch.tv|twitch.tv> link | 2019-04-29T12:27:29.118100 | Elanor | pythondev_help_Elanor_2019-04-29T12:27:29.118100 | 1,556,540,849.1181 | 21,402 |
pythondev | help | livestream this shit | 2019-04-29T12:27:31.118300 | Elanor | pythondev_help_Elanor_2019-04-29T12:27:31.118300 | 1,556,540,851.1183 | 21,403 |
pythondev | help | this is def a copied project. all he did is change the CSS lol | 2019-04-29T12:27:32.118500 | Frankie | pythondev_help_Frankie_2019-04-29T12:27:32.118500 | 1,556,540,852.1185 | 21,404 |
pythondev | help | lol | 2019-04-29T12:27:33.118600 | Claudine | pythondev_help_Claudine_2019-04-29T12:27:33.118600 | 1,556,540,853.1186 | 21,405 |
pythondev | help | jesus christ... I mean | 2019-04-29T12:27:40.118900 | Carlo | pythondev_help_Carlo_2019-04-29T12:27:40.118900 | 1,556,540,860.1189 | 21,406 |
pythondev | help | man that pisses me off. I knew it | 2019-04-29T12:27:42.119100 | Frankie | pythondev_help_Frankie_2019-04-29T12:27:42.119100 | 1,556,540,862.1191 | 21,407 |
pythondev | help | <@Sasha> :taco: | 2019-04-29T12:28:05.119400 | Clemmie | pythondev_help_Clemmie_2019-04-29T12:28:05.119400 | 1,556,540,885.1194 | 21,408 |
pythondev | help | that's unfortunate :disappointed: | 2019-04-29T12:28:18.119800 | Claudine | pythondev_help_Claudine_2019-04-29T12:28:18.119800 | 1,556,540,898.1198 | 21,409 |
pythondev | help | None | 2019-04-29T12:28:37.120100 | Leana | pythondev_help_Leana_2019-04-29T12:28:37.120100 | 1,556,540,917.1201 | 21,410 |
pythondev | help | why take courses to cheat :disappointed: | 2019-04-29T12:28:40.120300 | Claudine | pythondev_help_Claudine_2019-04-29T12:28:40.120300 | 1,556,540,920.1203 | 21,411 |
pythondev | help | because you're forced to? Because you don't actually care? | 2019-04-29T12:28:55.120800 | Elanor | pythondev_help_Elanor_2019-04-29T12:28:55.120800 | 1,556,540,935.1208 | 21,412 |
pythondev | help | <@Sasha> you now get credit for making this guy fail the course. lol | 2019-04-29T12:29:07.121500 | Frankie | pythondev_help_Frankie_2019-04-29T12:29:07.121500 | 1,556,540,947.1215 | 21,413 |
pythondev | help | I blame you. | 2019-04-29T12:29:10.121900 | Frankie | pythondev_help_Frankie_2019-04-29T12:29:10.121900 | 1,556,540,950.1219 | 21,414 |
pythondev | help | let's be honest though, htat guy is probably not the sharpest tool in the shed | 2019-04-29T12:29:11.122000 | Carlo | pythondev_help_Carlo_2019-04-29T12:29:11.122000 | 1,556,540,951.122 | 21,415 |
pythondev | help | I mean I don't do that but I get that some people just don't give a shit and are forced to for whatever reason | 2019-04-29T12:29:11.122100 | Elanor | pythondev_help_Elanor_2019-04-29T12:29:11.122100 | 1,556,540,951.1221 | 21,416 |
pythondev | help | but I mean really if you're gonna cheat WHY take the code from someone who took the same course and submitted it to the same assessors...like they weren't going to notice?!!? | 2019-04-29T12:29:49.123900 | Frankie | pythondev_help_Frankie_2019-04-29T12:29:49.123900 | 1,556,540,989.1239 | 21,417 |
pythondev | help | after the first suspicion, he still submits a plagiarized project | 2019-04-29T12:29:52.124100 | Carlo | pythondev_help_Carlo_2019-04-29T12:29:52.124100 | 1,556,540,992.1241 | 21,418 |
pythondev | help | that doesnt show a lot of foresight lol | 2019-04-29T12:30:16.125100 | Carlo | pythondev_help_Carlo_2019-04-29T12:30:16.125100 | 1,556,541,016.1251 | 21,419 |
pythondev | help | well the thing is I'm not actually an assessor ... he hasn't actually submitted it yet. | 2019-04-29T12:30:17.125200 | Frankie | pythondev_help_Frankie_2019-04-29T12:30:17.125200 | 1,556,541,017.1252 | 21,420 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.