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 | I think you might be getting Python regex syntax confused with Perl, with the `/ ... /i` enclosing slashes? | 2019-03-26T00:06:52.714400 | Sasha | pythondev_help_Sasha_2019-03-26T00:06:52.714400 | 1,553,558,812.7144 | 15,021 |
pythondev | help | Let me lookup the substitution then | 2019-03-26T00:07:08.714700 | Candra | pythondev_help_Candra_2019-03-26T00:07:08.714700 | 1,553,558,828.7147 | 15,022 |
pythondev | help | Thanks <@Sasha> that seems to be working | 2019-03-26T00:08:55.715000 | Candra | pythondev_help_Candra_2019-03-26T00:08:55.715000 | 1,553,558,935.715 | 15,023 |
pythondev | help | It is however cutting off 3 characters at the end | 2019-03-26T00:09:04.715400 | Candra | pythondev_help_Candra_2019-03-26T00:09:04.715400 | 1,553,558,944.7154 | 15,024 |
pythondev | help | Due to the space? | 2019-03-26T00:09:24.715600 | Sasha | pythondev_help_Sasha_2019-03-26T00:09:24.715600 | 1,553,558,964.7156 | 15,025 |
pythondev | help | I'm unsure let me see | 2019-03-26T00:10:02.715800 | Candra | pythondev_help_Candra_2019-03-26T00:10:02.715800 | 1,553,559,002.7158 | 15,026 |
pythondev | help | Yeah so the space is messing it up | 2019-03-26T00:10:19.716000 | Candra | pythondev_help_Candra_2019-03-26T00:10:19.716000 | 1,553,559,019.716 | 15,027 |
pythondev | help | The `\S` means a non-space character, I think. If you want to capture anything, use a period. | 2019-03-26T00:10:55.716900 | Sasha | pythondev_help_Sasha_2019-03-26T00:10:55.716900 | 1,553,559,055.7169 | 15,028 |
pythondev | help | Oaky | 2019-03-26T00:11:02.717100 | Candra | pythondev_help_Candra_2019-03-26T00:11:02.717100 | 1,553,559,062.7171 | 15,029 |
pythondev | help | Though normally a URL would have spaces encoded anyway, depending on its origin. | 2019-03-26T00:11:47.717800 | Sasha | pythondev_help_Sasha_2019-03-26T00:11:47.717800 | 1,553,559,107.7178 | 15,030 |
pythondev | help | So basically I just wanna say if this link is located anywhere in another string, match it | 2019-03-26T00:12:23.718500 | Candra | pythondev_help_Candra_2019-03-26T00:12:23.718500 | 1,553,559,143.7185 | 15,031 |
pythondev | help | Ah, then maybe you do want to truncate on spaces. | 2019-03-26T00:12:47.718800 | Sasha | pythondev_help_Sasha_2019-03-26T00:12:47.718800 | 1,553,559,167.7188 | 15,032 |
pythondev | help | Note that `match()` implies a match at the start of the string, too. `search()` will look everywhere for it. | 2019-03-26T00:13:42.719400 | Sasha | pythondev_help_Sasha_2019-03-26T00:13:42.719400 | 1,553,559,222.7194 | 15,033 |
pythondev | help | Okay thank you for the tip. | 2019-03-26T00:14:59.719600 | Candra | pythondev_help_Candra_2019-03-26T00:14:59.719600 | 1,553,559,299.7196 | 15,034 |
pythondev | help | Does it have a max length that it will match by default? | 2019-03-26T00:16:37.720100 | Candra | pythondev_help_Candra_2019-03-26T00:16:37.720100 | 1,553,559,397.7201 | 15,035 |
pythondev | help | Not to my knowledge. | 2019-03-26T00:17:46.720700 | Sasha | pythondev_help_Sasha_2019-03-26T00:17:46.720700 | 1,553,559,466.7207 | 15,036 |
pythondev | help | Because it basically just seems to spit out the same length no matter what characters I add a spots before where it stops | 2019-03-26T00:17:51.720900 | Candra | pythondev_help_Candra_2019-03-26T00:17:51.720900 | 1,553,559,471.7209 | 15,037 |
pythondev | help | That's weird. Can you give some examples, and the regex you're using? | 2019-03-26T00:18:39.721500 | Sasha | pythondev_help_Sasha_2019-03-26T00:18:39.721500 | 1,553,559,519.7215 | 15,038 |
pythondev | help | So this is what I have (this with and without the `\b` at the front and back both seem to give the same result | 2019-03-26T00:19:52.722200 | Candra | pythondev_help_Candra_2019-03-26T00:19:52.722200 | 1,553,559,592.7222 | 15,039 |
pythondev | help | `clip_regex = re.compile(r'\b(?:https://)?clips\.twitch\.tv/(.+)\b')` | 2019-03-26T00:19:55.722400 | Candra | pythondev_help_Candra_2019-03-26T00:19:55.722400 | 1,553,559,595.7224 | 15,040 |
pythondev | help | `r = clip_regex.search('<https://clips.twitch.tv/IcyZealousLapwingBlosdssssssssssssssssfsdfsadfdsdfsdfsdafdsfdsfsdfsafdTrail> lolololsadfasdfdsafdsafadsfdsafsaol')` | 2019-03-26T00:20:10.722600 | Candra | pythondev_help_Candra_2019-03-26T00:20:10.722600 | 1,553,559,610.7226 | 15,041 |
pythondev | help | `<_sre.SRE_Match object; span=(0, 135), match='<https://clips.twitch.tv/IcyZealousLapwingBlosdsss>>` | 2019-03-26T00:20:18.722800 | Candra | pythondev_help_Candra_2019-03-26T00:20:18.722800 | 1,553,559,618.7228 | 15,042 |
pythondev | help | ```
r = clip_regex.search('<https://clips.twitch.tv/IcyZealousLapwingBlosdzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz> okay')
<_sre.SRE_Match object; span=(0, 81), match='<https://clips.twitch.tv/IcyZealousLapwingBlosdzzz>>
``` | 2019-03-26T00:20:57.723100 | Candra | pythondev_help_Candra_2019-03-26T00:20:57.723100 | 1,553,559,657.7231 | 15,043 |
pythondev | help | Unless that's not the whole result | 2019-03-26T00:21:54.723500 | Candra | pythondev_help_Candra_2019-03-26T00:21:54.723500 | 1,553,559,714.7235 | 15,044 |
pythondev | help | But in the debugger I can't see more than that | 2019-03-26T00:22:03.723900 | Candra | pythondev_help_Candra_2019-03-26T00:22:03.723900 | 1,553,559,723.7239 | 15,045 |
pythondev | help | Ah, I think the debug printout is just truncating the data, yeah. You should try printing the matching string. | 2019-03-26T00:22:34.724600 | Sasha | pythondev_help_Sasha_2019-03-26T00:22:34.724600 | 1,553,559,754.7246 | 15,046 |
pythondev | help | I might have figured it out | 2019-03-26T00:22:36.724800 | Candra | pythondev_help_Candra_2019-03-26T00:22:36.724800 | 1,553,559,756.7248 | 15,047 |
pythondev | help | The `span` numbers indicate it matched a longer length. | 2019-03-26T00:23:00.725200 | Sasha | pythondev_help_Sasha_2019-03-26T00:23:00.725200 | 1,553,559,780.7252 | 15,048 |
pythondev | help | It doesn't seem to be matching the whole link. hmmm | 2019-03-26T00:26:32.725700 | Candra | pythondev_help_Candra_2019-03-26T00:26:32.725700 | 1,553,559,992.7257 | 15,049 |
pythondev | help | looking at the groups, all the iterations of the regex I've tried only match after the `.tv/` | 2019-03-26T00:27:06.726500 | Candra | pythondev_help_Candra_2019-03-26T00:27:06.726500 | 1,553,560,026.7265 | 15,050 |
pythondev | help | And up to the end of the link | 2019-03-26T00:27:16.726800 | Candra | pythondev_help_Candra_2019-03-26T00:27:16.726800 | 1,553,560,036.7268 | 15,051 |
pythondev | help | I've tried with `\b` at beginning and end, with `.+`, `\S+`, removing escape characters before the `/` in the link | 2019-03-26T00:28:03.727800 | Candra | pythondev_help_Candra_2019-03-26T00:28:03.727800 | 1,553,560,083.7278 | 15,052 |
pythondev | help | I'm probably missing something simple | 2019-03-26T00:28:34.728800 | Candra | pythondev_help_Candra_2019-03-26T00:28:34.728800 | 1,553,560,114.7288 | 15,053 |
pythondev | help | I'm unfortunately a noob when it comes to regex | 2019-03-26T00:28:50.729400 | Candra | pythondev_help_Candra_2019-03-26T00:28:50.729400 | 1,553,560,130.7294 | 15,054 |
pythondev | help | Well, you're only capturing the parenthesized group after the domain. I think the whole match would be available in `group(0)`, though. | 2019-03-26T00:29:20.729600 | Sasha | pythondev_help_Sasha_2019-03-26T00:29:20.729600 | 1,553,560,160.7296 | 15,055 |
pythondev | help | Similar result, but I only want to capture the link itself, looking for the character to stop matching on whitespace | 2019-03-26T00:30:39.730500 | Candra | pythondev_help_Candra_2019-03-26T00:30:39.730500 | 1,553,560,239.7305 | 15,056 |
pythondev | help | Can you give an example where it's not working with `\b`? | 2019-03-26T00:31:49.731200 | Sasha | pythondev_help_Sasha_2019-03-26T00:31:49.731200 | 1,553,560,309.7312 | 15,057 |
pythondev | help | Yeah let me run it through | 2019-03-26T00:32:08.731400 | Candra | pythondev_help_Candra_2019-03-26T00:32:08.731400 | 1,553,560,328.7314 | 15,058 |
pythondev | help | ```
>>> clip_regex = re.compile(r'\b(?:https://)?clips\.twitch\.tv/(.+)\b')
>>> r = clip_regex.search('<https://clips.twitch.tv/IcyZealousLapwingBlosdzokaythenzzzzsdfsdfsdfsdfsdfzzzzzzz> okay')
>>> r.group(0)
'<https://clips.twitch.tv/IcyZealousLapwingBlosdzokaythenzzzzsdfsdfsdfsdfsdfzzzzzzz> okay'
``` | 2019-03-26T00:32:26.731700 | Candra | pythondev_help_Candra_2019-03-26T00:32:26.731700 | 1,553,560,346.7317 | 15,059 |
pythondev | help | Obviously my regex has an issue | 2019-03-26T00:33:02.732800 | Candra | pythondev_help_Candra_2019-03-26T00:33:02.732800 | 1,553,560,382.7328 | 15,060 |
pythondev | help | Somewhere | 2019-03-26T00:33:06.733100 | Candra | pythondev_help_Candra_2019-03-26T00:33:06.733100 | 1,553,560,386.7331 | 15,061 |
pythondev | help | Oh, my bad. You want either `\S` or a non-greedy `.+`. | 2019-03-26T00:33:15.733300 | Sasha | pythondev_help_Sasha_2019-03-26T00:33:15.733300 | 1,553,560,395.7333 | 15,062 |
pythondev | help | So remove parentheses? | 2019-03-26T00:33:27.733500 | Candra | pythondev_help_Candra_2019-03-26T00:33:27.733500 | 1,553,560,407.7335 | 15,063 |
pythondev | help | Sorry, let me explain. The `(.+)` is going to match as many characters as possible, including spaces, and THEN will try to match the `\b`, which would be at the end of the string. So you either want to use `(\S+)`, which only matches non-space characters, or `(.+?)`, which matches as few unrestricted characters as possible before the next `\b`. | 2019-03-26T00:36:07.735700 | Sasha | pythondev_help_Sasha_2019-03-26T00:36:07.735700 | 1,553,560,567.7357 | 15,064 |
pythondev | help | Yep actually just read the docs and saw that. | 2019-03-26T00:36:34.736000 | Candra | pythondev_help_Candra_2019-03-26T00:36:34.736000 | 1,553,560,594.736 | 15,065 |
pythondev | help | So the ? basically says as soon as we hit \b we stop | 2019-03-26T00:37:05.736700 | Candra | pythondev_help_Candra_2019-03-26T00:37:05.736700 | 1,553,560,625.7367 | 15,066 |
pythondev | help | Yay it works! | 2019-03-26T00:37:18.736900 | Candra | pythondev_help_Candra_2019-03-26T00:37:18.736900 | 1,553,560,638.7369 | 15,067 |
pythondev | help | Thanks <@Sasha> :taco: :taco: | 2019-03-26T00:37:43.737300 | Candra | pythondev_help_Candra_2019-03-26T00:37:43.737300 | 1,553,560,663.7373 | 15,068 |
pythondev | help | One last question for you, if I want to use `re.findall()` with this, it seems to essentially return a list containing only the end portion of the links in the list, is that the proper behavior? | 2019-03-26T00:41:22.738400 | Candra | pythondev_help_Candra_2019-03-26T00:41:22.738400 | 1,553,560,882.7384 | 15,069 |
pythondev | help | ```
>>> r = clip_regex.findall('sadfsdfdsf <https://clips.twitch.tv/IcyZealousLapwingBlosdzokaythenzzzzsdfsdfsdfsdfsdfzzzzzzz> <https://clips.twitch.tv/IcyZealousLapwing> okay')
>>> r
['IcyZealousLapwingBlosdzokaythenzzzzsdfsdfsdfsdfsdfzzzzzzz', 'IcyZealousLapwing']
``` | 2019-03-26T00:41:40.738700 | Candra | pythondev_help_Candra_2019-03-26T00:41:40.738700 | 1,553,560,900.7387 | 15,070 |
pythondev | help | Yeah, it returns the captured groups if there are any in the regex. To get it to return a list of whole matches instead, remove the parentheses or turn it into a non-capturing group `(?:.+?)` like you did with the http prefix. | 2019-03-26T00:45:24.740200 | Sasha | pythondev_help_Sasha_2019-03-26T00:45:24.740200 | 1,553,561,124.7402 | 15,071 |
pythondev | help | Please help on this
<https://stackoverflow.com/questions/55344613/how-to-capture-screenshot-in-pytest-when-running-tests-using-xdist?noredirect=1#comment97413953_55344613> | 2019-03-26T04:27:22.741000 | Merlyn | pythondev_help_Merlyn_2019-03-26T04:27:22.741000 | 1,553,574,442.741 | 15,072 |
pythondev | help | Hey can someone help me how to convert a normal text data into CSV ? | 2019-03-26T05:43:58.742200 | Lady | pythondev_help_Lady_2019-03-26T05:43:58.742200 | 1,553,579,038.7422 | 15,073 |
pythondev | help | What exactly do you need to do and what type of data is there ? | 2019-03-26T06:01:01.742500 | Kina | pythondev_help_Kina_2019-03-26T06:01:01.742500 | 1,553,580,061.7425 | 15,074 |
pythondev | help | <@Lady> it very much depends on how your text data is structured | 2019-03-26T07:23:52.743000 | Silvia | pythondev_help_Silvia_2019-03-26T07:23:52.743000 | 1,553,585,032.743 | 15,075 |
pythondev | help | Knowing how to ask a good question is a highly invaluable skill that will benefit you greatly in any career. Two good resources for suggestions and strategies to help you structure and phrase your question to make it easier for those here to understand your problem and help you work to a solution are:
• <https://www.mikeash.com/getting_answers.html>
• <https://stackoverflow.com/help/how-to-ask>
| 2019-03-26T07:32:25.743200 | Leana | pythondev_help_Leana_2019-03-26T07:32:25.743200 | 1,553,585,545.7432 | 15,076 |
pythondev | help | :point_up: | 2019-03-26T07:38:50.743600 | Rosalie | pythondev_help_Rosalie_2019-03-26T07:38:50.743600 | 1,553,585,930.7436 | 15,077 |
pythondev | help | Anyone on this ?
Please help on this
<https://stackoverflow.com/questions/55344613/how-to-capture-screenshot-in-pytest-when-running-tests-using-xdist?noredirect=1#comment97413953_55344613> | 2019-03-26T08:04:29.744200 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:04:29.744200 | 1,553,587,469.7442 | 15,078 |
pythondev | help | Knowing how to ask a good question is a highly invaluable skill that will benefit you greatly in any career. Two good resources for suggestions and strategies to help you structure and phrase your question to make it easier for those here to understand your problem and help you work to a solution are:
• <https://www.mikeash.com/getting_answers.html>
• <https://stackoverflow.com/help/how-to-ask>
| 2019-03-26T08:05:29.744400 | Leana | pythondev_help_Leana_2019-03-26T08:05:29.744400 | 1,553,587,529.7444 | 15,079 |
pythondev | help | why not just use a fixture <@Merlyn>? | 2019-03-26T08:06:15.744800 | Jonas | pythondev_help_Jonas_2019-03-26T08:06:15.744800 | 1,553,587,575.7448 | 15,080 |
pythondev | help | ```@pytest.fixture(autouse=True)
def screenshot(driver):
yield
driver.take_a_screenshot()``` | 2019-03-26T08:06:37.745400 | Jonas | pythondev_help_Jonas_2019-03-26T08:06:37.745400 | 1,553,587,597.7454 | 15,081 |
pythondev | help | it likely does not work because it looks hacky as hell, and xdist does things differently. | 2019-03-26T08:07:38.746400 | Jonas | pythondev_help_Jonas_2019-03-26T08:07:38.746400 | 1,553,587,658.7464 | 15,082 |
pythondev | help | the reason nobody is really helping you is because you say "t's not working with when running tests using xdist" | 2019-03-26T08:08:13.747400 | Jonas | pythondev_help_Jonas_2019-03-26T08:08:13.747400 | 1,553,587,693.7474 | 15,083 |
pythondev | help | Where do i need to use this fixture to capture screenshot on failure | 2019-03-26T08:08:22.748000 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:08:22.748000 | 1,553,587,702.748 | 15,084 |
pythondev | help | what does that mean. The function is "not working". Never say this. | 2019-03-26T08:08:24.748100 | Jonas | pythondev_help_Jonas_2019-03-26T08:08:24.748100 | 1,553,587,704.7481 | 15,085 |
pythondev | help | ? | 2019-03-26T08:08:24.748200 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:08:24.748200 | 1,553,587,704.7482 | 15,086 |
pythondev | help | Does the function run? Does it error? What have you done to debug it? | 2019-03-26T08:08:41.748600 | Jonas | pythondev_help_Jonas_2019-03-26T08:08:41.748600 | 1,553,587,721.7486 | 15,087 |
pythondev | help | The hook don't get called via xdist | 2019-03-26T08:09:16.749600 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:09:16.749600 | 1,553,587,756.7496 | 15,088 |
pythondev | help | <https://stackoverflow.com/questions/13364868/in-pytest-how-can-i-figure-out-if-a-test-failed-from-request> - the second answer | 2019-03-26T08:09:18.749700 | Jonas | pythondev_help_Jonas_2019-03-26T08:09:18.749700 | 1,553,587,758.7497 | 15,089 |
pythondev | help | But when running without xdist hook get called | 2019-03-26T08:09:40.750500 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:09:40.750500 | 1,553,587,780.7505 | 15,090 |
pythondev | help | <https://github.com/pytest-dev/pytest-xdist/issues/79> | 2019-03-26T08:09:45.750700 | Jonas | pythondev_help_Jonas_2019-03-26T08:09:45.750700 | 1,553,587,785.7507 | 15,091 |
pythondev | help | just google "pytest_runtest_makereport xdist" | 2019-03-26T08:09:56.751100 | Jonas | pythondev_help_Jonas_2019-03-26T08:09:56.751100 | 1,553,587,796.7511 | 15,092 |
pythondev | help | use a fixture for this though. | 2019-03-26T08:10:16.751500 | Jonas | pythondev_help_Jonas_2019-03-26T08:10:16.751500 | 1,553,587,816.7515 | 15,093 |
pythondev | help | <@Jonas> still the fixture not getting called
Is there any way this can be achieved via xdist hooks | 2019-03-26T08:36:05.753400 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:36:05.753400 | 1,553,589,365.7534 | 15,094 |
pythondev | help | Ensure the fixture is being called | 2019-03-26T08:36:53.754200 | Jonas | pythondev_help_Jonas_2019-03-26T08:36:53.754200 | 1,553,589,413.7542 | 15,095 |
pythondev | help | Because xdist hooks are getting called | 2019-03-26T08:36:55.754300 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:36:55.754300 | 1,553,589,415.7543 | 15,096 |
pythondev | help | add it as an explicit dependency to one test | 2019-03-26T08:37:01.754600 | Jonas | pythondev_help_Jonas_2019-03-26T08:37:01.754600 | 1,553,589,421.7546 | 15,097 |
pythondev | help | likely you are not using `autouse=True`, or the fixture is not defined in your `conftest.py` | 2019-03-26T08:37:23.755100 | Jonas | pythondev_help_Jonas_2019-03-26T08:37:23.755100 | 1,553,589,443.7551 | 15,098 |
pythondev | help | or you're using unittest's and not pytest tests | 2019-03-26T08:37:37.755700 | Jonas | pythondev_help_Jonas_2019-03-26T08:37:37.755700 | 1,553,589,457.7557 | 15,099 |
pythondev | help | I'm using pytest | 2019-03-26T08:37:50.756000 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:37:50.756000 | 1,553,589,470.756 | 15,100 |
pythondev | help | I tried autouse=True | 2019-03-26T08:38:04.756500 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:38:04.756500 | 1,553,589,484.7565 | 15,101 |
pythondev | help | And I'm using this module as pytest.main(cmd, plugin=['myhooksfile']) | 2019-03-26T08:39:07.758200 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:39:07.758200 | 1,553,589,547.7582 | 15,102 |
pythondev | help | stop with the hooks | 2019-03-26T08:39:24.758400 | Jonas | pythondev_help_Jonas_2019-03-26T08:39:24.758400 | 1,553,589,564.7584 | 15,103 |
pythondev | help | define your fixture in `conftest.py` | 2019-03-26T08:39:32.758700 | Jonas | pythondev_help_Jonas_2019-03-26T08:39:32.758700 | 1,553,589,572.7587 | 15,104 |
pythondev | help | run `pytest` | 2019-03-26T08:39:35.758900 | Jonas | pythondev_help_Jonas_2019-03-26T08:39:35.758900 | 1,553,589,575.7589 | 15,105 |
pythondev | help | your fixtures will now be active, and you can take a screenshot on every test failure. | 2019-03-26T08:39:54.759300 | Jonas | pythondev_help_Jonas_2019-03-26T08:39:54.759300 | 1,553,589,594.7593 | 15,106 |
pythondev | help | pytest makes it really easy to do this kind of thing, what you are struggling with is doing it _the wrong way_ | 2019-03-26T08:40:17.759800 | Jonas | pythondev_help_Jonas_2019-03-26T08:40:17.759800 | 1,553,589,617.7598 | 15,107 |
pythondev | help | Ok | 2019-03-26T08:40:29.760000 | Merlyn | pythondev_help_Merlyn_2019-03-26T08:40:29.760000 | 1,553,589,629.76 | 15,108 |
pythondev | help | you very rarely, if ever, need to use hooks. | 2019-03-26T08:40:45.760300 | Jonas | pythondev_help_Jonas_2019-03-26T08:40:45.760300 | 1,553,589,645.7603 | 15,109 |
pythondev | help | especially not for this case. | 2019-03-26T08:40:50.760500 | Jonas | pythondev_help_Jonas_2019-03-26T08:40:50.760500 | 1,553,589,650.7605 | 15,110 |
pythondev | help | so many regex notifications from yesterday i missed :disappointed: | 2019-03-26T09:08:09.761000 | Claudine | pythondev_help_Claudine_2019-03-26T09:08:09.761000 | 1,553,591,289.761 | 15,111 |
pythondev | help | looks like someone was having fun | 2019-03-26T09:08:14.761200 | Claudine | pythondev_help_Claudine_2019-03-26T09:08:14.761200 | 1,553,591,294.7612 | 15,112 |
pythondev | help | "name", "id", "{id:1, is_deleted:2,"fgf":"hi"}, "find" - this is the input format
name,id,pattern,operator - these the output csv headers | 2019-03-26T09:27:44.761300 | Lady | pythondev_help_Lady_2019-03-26T09:27:44.761300 | 1,553,592,464.7613 | 15,113 |
pythondev | help | <@Claudine> ah I see you like regexes too? | 2019-03-26T10:02:39.761900 | Carlo | pythondev_help_Carlo_2019-03-26T10:02:39.761900 | 1,553,594,559.7619 | 15,114 |
pythondev | help | I've been known to dabble :smile: | 2019-03-26T10:03:46.762600 | Claudine | pythondev_help_Claudine_2019-03-26T10:03:46.762600 | 1,553,594,626.7626 | 15,115 |
pythondev | help | that's an understatement. the <#CC4NKARK6|regex> channel was created so we wouldn't have to deal with all his crazy stuff | 2019-03-26T10:03:57.762900 | Jimmy | pythondev_help_Jimmy_2019-03-26T10:03:57.762900 | 1,553,594,637.7629 | 15,116 |
pythondev | help | lol | 2019-03-26T10:04:02.763100 | Claudine | pythondev_help_Claudine_2019-03-26T10:04:02.763100 | 1,553,594,642.7631 | 15,117 |
pythondev | help | one of the proudest moments of my life | 2019-03-26T10:04:08.763400 | Claudine | pythondev_help_Claudine_2019-03-26T10:04:08.763400 | 1,553,594,648.7634 | 15,118 |
pythondev | help | hahahaha | 2019-03-26T10:04:11.763600 | Carlo | pythondev_help_Carlo_2019-03-26T10:04:11.763600 | 1,553,594,651.7636 | 15,119 |
pythondev | help | > :beer: waiting for someone to type 'regex' | 2019-03-26T10:06:09.765300 | Carlo | pythondev_help_Carlo_2019-03-26T10:06:09.765300 | 1,553,594,769.7653 | 15,120 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.