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 | The private part is `id_rsa` | 2019-02-26T15:13:14.858400 | Carmen | pythondev_help_Carmen_2019-02-26T15:13:14.858400 | 1,551,193,994.8584 | 10,921 |
pythondev | help | You upload `id_rsa.pub` to any servers you want to SSH into. | 2019-02-26T15:13:35.858800 | Carmen | pythondev_help_Carmen_2019-02-26T15:13:35.858800 | 1,551,194,015.8588 | 10,922 |
pythondev | help | You keep `id_rsa` on your machine only and never share it with anyone. | 2019-02-26T15:13:45.859200 | Carmen | pythondev_help_Carmen_2019-02-26T15:13:45.859200 | 1,551,194,025.8592 | 10,923 |
pythondev | help | Then when you want to SSH to the other machine, you pass the filename into SSH. | 2019-02-26T15:14:06.859700 | Carmen | pythondev_help_Carmen_2019-02-26T15:14:06.859700 | 1,551,194,046.8597 | 10,924 |
pythondev | help | Yea I added the content of id_rsa.pub into github | 2019-02-26T15:14:41.860200 | Nikki | pythondev_help_Nikki_2019-02-26T15:14:41.860200 | 1,551,194,081.8602 | 10,925 |
pythondev | help | so how do I do `git pull origin master` | 2019-02-26T15:15:14.860600 | Nikki | pythondev_help_Nikki_2019-02-26T15:15:14.860600 | 1,551,194,114.8606 | 10,926 |
pythondev | help | <https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent> | 2019-02-26T15:15:43.861100 | Carmen | pythondev_help_Carmen_2019-02-26T15:15:43.861100 | 1,551,194,143.8611 | 10,927 |
pythondev | help | Those 2 steps. | 2019-02-26T15:15:46.861300 | Carmen | pythondev_help_Carmen_2019-02-26T15:15:46.861300 | 1,551,194,146.8613 | 10,928 |
pythondev | help | Make sure the ssh agent is running, and then ssh-add your private key to it. | 2019-02-26T15:15:58.861700 | Carmen | pythondev_help_Carmen_2019-02-26T15:15:58.861700 | 1,551,194,158.8617 | 10,929 |
pythondev | help | did those too | 2019-02-26T15:16:14.862200 | Nikki | pythondev_help_Nikki_2019-02-26T15:16:14.862200 | 1,551,194,174.8622 | 10,930 |
pythondev | help | Then, assuming you've added the remote to your repo as `origin`, you should be able to `git pull origin` and so on. | 2019-02-26T15:16:33.862700 | Carmen | pythondev_help_Carmen_2019-02-26T15:16:33.862700 | 1,551,194,193.8627 | 10,931 |
pythondev | help | is that the part I'm missing added the report to repo | 2019-02-26T15:17:10.863100 | Nikki | pythondev_help_Nikki_2019-02-26T15:17:10.863100 | 1,551,194,230.8631 | 10,932 |
pythondev | help | How might I do that | 2019-02-26T15:17:15.863300 | Nikki | pythondev_help_Nikki_2019-02-26T15:17:15.863300 | 1,551,194,235.8633 | 10,933 |
pythondev | help | (seems like eveytime I think I'm getting 'good' someone schools me lol) | 2019-02-26T15:17:38.863800 | Nikki | pythondev_help_Nikki_2019-02-26T15:17:38.863800 | 1,551,194,258.8638 | 10,934 |
pythondev | help | `git remote` will show all of your remotes for the repo. | 2019-02-26T15:18:04.864100 | Carmen | pythondev_help_Carmen_2019-02-26T15:18:04.864100 | 1,551,194,284.8641 | 10,935 |
pythondev | help | You should have one listed as `origin` | 2019-02-26T15:18:10.864300 | Carmen | pythondev_help_Carmen_2019-02-26T15:18:10.864300 | 1,551,194,290.8643 | 10,936 |
pythondev | help | `git remote show origin` will give you the details of how it's configured. | 2019-02-26T15:18:25.864800 | Carmen | pythondev_help_Carmen_2019-02-26T15:18:25.864800 | 1,551,194,305.8648 | 10,937 |
pythondev | help | shows nothing | 2019-02-26T15:18:30.864900 | Nikki | pythondev_help_Nikki_2019-02-26T15:18:30.864900 | 1,551,194,310.8649 | 10,938 |
pythondev | help | fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists. | 2019-02-26T15:18:48.865500 | Nikki | pythondev_help_Nikki_2019-02-26T15:18:48.865500 | 1,551,194,328.8655 | 10,939 |
pythondev | help | Then yes, you need to add the remote. Github has a help doc on that. | 2019-02-26T15:18:50.865600 | Carmen | pythondev_help_Carmen_2019-02-26T15:18:50.865600 | 1,551,194,330.8656 | 10,940 |
pythondev | help | <https://help.github.com/en/articles/adding-a-remote> | 2019-02-26T15:19:13.865800 | Carmen | pythondev_help_Carmen_2019-02-26T15:19:13.865800 | 1,551,194,353.8658 | 10,941 |
pythondev | help | IT'S ALIVE | 2019-02-26T15:21:07.866100 | Nikki | pythondev_help_Nikki_2019-02-26T15:21:07.866100 | 1,551,194,467.8661 | 10,942 |
pythondev | help | I think it was just the last bit I needed | 2019-02-26T15:21:25.866400 | Nikki | pythondev_help_Nikki_2019-02-26T15:21:25.866400 | 1,551,194,485.8664 | 10,943 |
pythondev | help | I may have gone over old keys which I forgot I did for years back IDK | 2019-02-26T15:21:43.866900 | Nikki | pythondev_help_Nikki_2019-02-26T15:21:43.866900 | 1,551,194,503.8669 | 10,944 |
pythondev | help | how to work with time series data (in seconds) and naive bayes classifier | 2019-02-26T17:36:57.869500 | China | pythondev_help_China_2019-02-26T17:36:57.869500 | 1,551,202,617.8695 | 10,945 |
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-02-26T17:40:37.869600 | Leana | pythondev_help_Leana_2019-02-26T17:40:37.869600 | 1,551,202,837.8696 | 10,946 |
pythondev | help | Hello, everyone. | 2019-02-26T19:12:47.870800 | Marquita | pythondev_help_Marquita_2019-02-26T19:12:47.870800 | 1,551,208,367.8708 | 10,947 |
pythondev | help | ```
host_addr = '127.0.0.1'
host_port = 8082
server_sni_hostname = '<http://example.com|example.com>'
ca_cert = './certs/ca.crt'
context = ssl.SSLContext()
context.verify_mode = ssl.CERT_REQUIRED
context.check_hostname = True
context.load_verify_locations(ca_cert)
conn = context.wrap_socket(socket.socket(socket.AF_INET),
server_hostname=server_sni_hostname)
conn.connect((host_addr, host_port))
# NOTE: Get server's certificate
server_cert = conn.getpeercert()
``` | 2019-02-26T19:12:53.871000 | Marquita | pythondev_help_Marquita_2019-02-26T19:12:53.871000 | 1,551,208,373.871 | 10,948 |
pythondev | help | how can i get public key from `server_cert`? | 2019-02-26T19:13:28.871500 | Marquita | pythondev_help_Marquita_2019-02-26T19:13:28.871500 | 1,551,208,408.8715 | 10,949 |
pythondev | help | could you help me on this stuff?
```
The goal of mine was to get public key from server's certificate and do some work with this key and send this data back to the server and then the server decodes data using its private key of the certificate.
``` | 2019-02-26T19:13:44.871900 | Marquita | pythondev_help_Marquita_2019-02-26T19:13:44.871900 | 1,551,208,424.8719 | 10,950 |
pythondev | help | It looks like one way to do it is to request the binary form of the certificate from `getpeercert()` and then decode with a separate crypto library. <https://stackoverflow.com/questions/5789193/extracting-public-key-from-certificate-and-encrypting-data> Before going down that path I would inspect the certificate dict you already have and make sure it doesn't happen to have a public-key field already... the documentation is not clear what exactly it's supposed to have. | 2019-02-26T19:25:30.876900 | Sasha | pythondev_help_Sasha_2019-02-26T19:25:30.876900 | 1,551,209,130.8769 | 10,951 |
pythondev | help | <@Sasha> Thanks. the format of certificate i got is...
```
{"subject": [[["countryName", "AU"]], [["stateOrProvinceName", "Some-State"]], [["organizationName", "Internet Widgits Pty Ltd"]], [["commonName", "<http://example.com|example.com>"]]], "issuer": [[["countryName", "AU"]], [["stateOrProvinceName", "Some-State"]], [["organizationName", "Internet Widgits Pty Ltd"]]], "version": 1, "serialNumber": "892A2683431F27CC", "notBefore": "Feb 26 21:13:24 2019 GMT", "notAfter": "Mar 28 21:13:24 2019 GMT"}
``` | 2019-02-26T19:34:46.879100 | Marquita | pythondev_help_Marquita_2019-02-26T19:34:46.879100 | 1,551,209,686.8791 | 10,952 |
pythondev | help | This is different from the result with `ssl.get_server_certificate`.. | 2019-02-26T19:35:58.879700 | Marquita | pythondev_help_Marquita_2019-02-26T19:35:58.879700 | 1,551,209,758.8797 | 10,953 |
pythondev | help | when using `ssl.get_server_certificate()` I have got this format
----BEGIN CERTIFICATE----
MIID4ZCCAsugAwIBA.....
..................................
-----END CERTIFICATE--- | 2019-02-26T19:37:09.881100 | Marquita | pythondev_help_Marquita_2019-02-26T19:37:09.881100 | 1,551,209,829.8811 | 10,954 |
pythondev | help | ```
I want to do rsa encryption using server's certificate:
so the client will encrypt data by means of public key in the server's certificate
and the server will decrypt data by means of private key in the server's certificate
``` | 2019-02-26T19:39:26.882400 | Marquita | pythondev_help_Marquita_2019-02-26T19:39:26.882400 | 1,551,209,966.8824 | 10,955 |
pythondev | help | But but now i can't get public key of the certificate on the client side | 2019-02-26T19:39:46.883000 | Marquita | pythondev_help_Marquita_2019-02-26T19:39:46.883000 | 1,551,209,986.883 | 10,956 |
pythondev | help | Note that `getpeercert(binary_form=True)` will give you the binary form, from which you should be able to extract the public key. | 2019-02-26T19:41:38.884000 | Sasha | pythondev_help_Sasha_2019-02-26T19:41:38.884000 | 1,551,210,098.884 | 10,957 |
pythondev | help | do you prefer to use `M2Crypto`? | 2019-02-26T19:42:22.884600 | Marquita | pythondev_help_Marquita_2019-02-26T19:42:22.884600 | 1,551,210,142.8846 | 10,958 |
pythondev | help | None | 2019-02-26T19:44:34.885100 | Marquita | pythondev_help_Marquita_2019-02-26T19:44:34.885100 | 1,551,210,274.8851 | 10,959 |
pythondev | help | I have no experience with it myself... I'm just going by the Stack Overflow answer. | 2019-02-26T19:44:39.885400 | Sasha | pythondev_help_Sasha_2019-02-26T19:44:39.885400 | 1,551,210,279.8854 | 10,960 |
pythondev | help | Ah, got you. much appreciate it. Thanks. | 2019-02-26T19:45:03.885800 | Marquita | pythondev_help_Marquita_2019-02-26T19:45:03.885800 | 1,551,210,303.8858 | 10,961 |
pythondev | help | while installing M2Crypto, i have got this result. | 2019-02-26T19:45:59.885900 | Marquita | pythondev_help_Marquita_2019-02-26T19:45:59.885900 | 1,551,210,359.8859 | 10,962 |
pythondev | help | do you have any idea? | 2019-02-26T19:46:03.886100 | Marquita | pythondev_help_Marquita_2019-02-26T19:46:03.886100 | 1,551,210,363.8861 | 10,963 |
pythondev | help | Hello everyone.
How it
```
f = open("file.csv", "w")
for i in our_list:
f.write(i + "\n")
f.close()
```
to replace with Python Context Managers? | 2019-02-27T02:49:39.889500 | Jung | pythondev_help_Jung_2019-02-27T02:49:39.889500 | 1,551,235,779.8895 | 10,964 |
pythondev | help | ```
with open('file.csv', 'w') as f:
for i in our_list:
f.write(i + "\n")
```
Is this what you mean? | 2019-02-27T02:59:25.889600 | Ingeborg | pythondev_help_Ingeborg_2019-02-27T02:59:25.889600 | 1,551,236,365.8896 | 10,965 |
pythondev | help | yes, thanks | 2019-02-27T03:29:30.890100 | Jung | pythondev_help_Jung_2019-02-27T03:29:30.890100 | 1,551,238,170.8901 | 10,966 |
pythondev | help | Anyone here use django managment commands? I used to synchronize some data in database, but its stuck | 2019-02-27T06:20:36.891700 | Lourie | pythondev_help_Lourie_2019-02-27T06:20:36.891700 | 1,551,248,436.8917 | 10,967 |
pythondev | help | any idea how can debug it? smth else? | 2019-02-27T06:20:50.892100 | Lourie | pythondev_help_Lourie_2019-02-27T06:20:50.892100 | 1,551,248,450.8921 | 10,968 |
pythondev | help | Hi,
i'm new with django, and i'm trying to use channels 2, bit when i run runserver i get that error:
`Cannot import ASGI_APPLICATION module 'channels_test.routing'` | 2019-02-27T06:28:59.892800 | Jennefer | pythondev_help_Jennefer_2019-02-27T06:28:59.892800 | 1,551,248,939.8928 | 10,969 |
pythondev | help | Can someone recommend best practice (or provide a link) to how to organise a project? At the moment I just have loads of modules and import into one of them and call them from there. | 2019-02-27T06:37:09.893900 | Arturo | pythondev_help_Arturo_2019-02-27T06:37:09.893900 | 1,551,249,429.8939 | 10,970 |
pythondev | help | <@Arturo> it really depends on what type of project that is | 2019-02-27T06:58:35.894600 | Shawana | pythondev_help_Shawana_2019-02-27T06:58:35.894600 | 1,551,250,715.8946 | 10,971 |
pythondev | help | yeah was just thinking that | 2019-02-27T07:01:32.894800 | Arturo | pythondev_help_Arturo_2019-02-27T07:01:32.894800 | 1,551,250,892.8948 | 10,972 |
pythondev | help | was reading this (<https://realpython.com/python-application-layouts/>) which then lead to this (<https://blog.ionelmc.ro/2014/05/25/python-packaging/#the-structure>) | 2019-02-27T07:03:19.895300 | Arturo | pythondev_help_Arturo_2019-02-27T07:03:19.895300 | 1,551,250,999.8953 | 10,973 |
pythondev | help | The project is a `pyautogui` project | 2019-02-27T07:03:43.895800 | Arturo | pythondev_help_Arturo_2019-02-27T07:03:43.895800 | 1,551,251,023.8958 | 10,974 |
pythondev | help | so each module handles doing some automation, on one page. | 2019-02-27T07:06:25.896300 | Arturo | pythondev_help_Arturo_2019-02-27T07:06:25.896300 | 1,551,251,185.8963 | 10,975 |
pythondev | help | and then there is another module handling email input | 2019-02-27T07:06:56.897000 | Arturo | pythondev_help_Arturo_2019-02-27T07:06:56.897000 | 1,551,251,216.897 | 10,976 |
pythondev | help | Need help with Elasticsearch.
My data looks like: | 2019-02-27T07:51:19.897600 | Valeri | pythondev_help_Valeri_2019-02-27T07:51:19.897600 | 1,551,253,879.8976 | 10,977 |
pythondev | help | None | 2019-02-27T07:51:48.897800 | Valeri | pythondev_help_Valeri_2019-02-27T07:51:48.897800 | 1,551,253,908.8978 | 10,978 |
pythondev | help | I need to look for all records that have `created` in a given range | 2019-02-27T07:52:16.898600 | Valeri | pythondev_help_Valeri_2019-02-27T07:52:16.898600 | 1,551,253,936.8986 | 10,979 |
pythondev | help | Following this: <https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-query.html#_date_format_in_range_queries> | 2019-02-27T07:52:36.898800 | Valeri | pythondev_help_Valeri_2019-02-27T07:52:36.898800 | 1,551,253,956.8988 | 10,980 |
pythondev | help | I tried:
```
GET _search
{
"query": {
"range" : {
"created" : {
"gte": "2012-01-01",
"lte": "2018-01-01",
"format": "yyyy-mm-dd"
}
}
}
}
``` | 2019-02-27T07:53:07.899300 | Valeri | pythondev_help_Valeri_2019-02-27T07:53:07.899300 | 1,551,253,987.8993 | 10,981 |
pythondev | help | What am I doing wrong here? | 2019-02-27T07:53:42.899600 | Valeri | pythondev_help_Valeri_2019-02-27T07:53:42.899600 | 1,551,254,022.8996 | 10,982 |
pythondev | help | I expected a couple of hits.
I got:
```
{
"took" : 6,
"timed_out" : false,
"_shards" : {
"total" : 13,
"successful" : 13,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 0,
"max_score" : null,
"hits" : [ ]
}
}
``` | 2019-02-27T07:54:11.900100 | Valeri | pythondev_help_Valeri_2019-02-27T07:54:11.900100 | 1,551,254,051.9001 | 10,983 |
pythondev | help | could be goofing on the time part of the date? | 2019-02-27T07:58:39.900400 | Hiroko | pythondev_help_Hiroko_2019-02-27T07:58:39.900400 | 1,551,254,319.9004 | 10,984 |
pythondev | help | What's the use of `format` then? | 2019-02-27T07:59:07.900800 | Valeri | pythondev_help_Valeri_2019-02-27T07:59:07.900800 | 1,551,254,347.9008 | 10,985 |
pythondev | help | ahh, ok | 2019-02-27T07:59:43.901000 | Hiroko | pythondev_help_Hiroko_2019-02-27T07:59:43.901000 | 1,551,254,383.901 | 10,986 |
pythondev | help | >>>Note that if the date misses some of the year, month and day coordinates, the missing parts are filled with the start of unix time, which is January 1st, 1970. | 2019-02-27T07:59:54.901200 | Hiroko | pythondev_help_Hiroko_2019-02-27T07:59:54.901200 | 1,551,254,394.9012 | 10,987 |
pythondev | help | oh | 2019-02-27T08:00:18.901500 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:00:18.901500 | 1,551,254,418.9015 | 10,988 |
pythondev | help | `MM` for months | 2019-02-27T08:00:23.901700 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:00:23.901700 | 1,551,254,423.9017 | 10,989 |
pythondev | help | you have lowercase | 2019-02-27T08:00:28.901900 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:00:28.901900 | 1,551,254,428.9019 | 10,990 |
pythondev | help | >>>year_month_day or strict_year_month_day
A formatter for a four digit year, two digit month of year, and two digit day of month: yyyy-MM-dd | 2019-02-27T08:01:03.902100 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:01:03.902100 | 1,551,254,463.9021 | 10,991 |
pythondev | help | you have `yyyy-mm-dd`, where you need the `mm` to be uppercased | 2019-02-27T08:01:34.902600 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:01:34.902600 | 1,551,254,494.9026 | 10,992 |
pythondev | help | <@Hiroko> Didn't help | 2019-02-27T08:10:36.902900 | Valeri | pythondev_help_Valeri_2019-02-27T08:10:36.902900 | 1,551,255,036.9029 | 10,993 |
pythondev | help | does ES have a debug query param? | 2019-02-27T08:12:31.903500 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:12:31.903500 | 1,551,255,151.9035 | 10,994 |
pythondev | help | ah, <https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-explain.html> | 2019-02-27T08:12:56.903900 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:12:56.903900 | 1,551,255,176.9039 | 10,995 |
pythondev | help | put `"explain": true` in your query | 2019-02-27T08:13:06.904300 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:13:06.904300 | 1,551,255,186.9043 | 10,996 |
pythondev | help | need help for this error while using channels
`Cannot import ASGI_APPLICATION module 'channels_test.routing'` | 2019-02-27T08:13:20.904700 | Jennefer | pythondev_help_Jennefer_2019-02-27T08:13:20.904700 | 1,551,255,200.9047 | 10,997 |
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-02-27T08:13:57.904800 | Leana | pythondev_help_Leana_2019-02-27T08:13:57.904800 | 1,551,255,237.9048 | 10,998 |
pythondev | help | <@Jennefer> just posting that doesn’t mean anything. please provide a question with your traceback and how the error is happening | 2019-02-27T08:14:29.905700 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:14:29.905700 | 1,551,255,269.9057 | 10,999 |
pythondev | help | ```
GET _search
{
"explain": true,
"query": {
"range" : {
"created" : {
"gte": "2012-01-01",
"lte": "2018-01-01",
"format": "yyyy-MM-dd"
}
}
}
}
```
Resp:
```
{
"took" : 2,
"timed_out" : false,
"_shards" : {
"total" : 13,
"successful" : 13,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 0,
"max_score" : null,
"hits" : [ ]
}
}
``` | 2019-02-27T08:17:58.906900 | Valeri | pythondev_help_Valeri_2019-02-27T08:17:58.906900 | 1,551,255,478.9069 | 11,000 |
pythondev | help | what happens when you do a select all? | 2019-02-27T08:18:32.907400 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:18:32.907400 | 1,551,255,512.9074 | 11,001 |
pythondev | help | wondering if something happened on insert? | 2019-02-27T08:18:40.907800 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:18:40.907800 | 1,551,255,520.9078 | 11,002 |
pythondev | help | I have followed the channels tutorial but while running these error throw
what I missed ? in settings.py
`INSTALLED_APPS = [
"channels"
....
]
ROOT_URLCONF = 'myapp.urls'
ASGI_APPLICATION = "channels_test.routing.application"`
added file channels_test/routing.py
`from channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
from django.conf.urls import url
from chat import consumers
application = ProtocolTypeRouter({
# WebSocket chat handler
"websocket": AuthMiddlewareStack(
URLRouter([
url(r'^ws/chat/(?P<room_name>[^/]+)/$', consumers.ChatConsumer),
])
),
})`
added file channels_test/chat/routing.py
`from django.conf.urls import url
from . import consumers
websocket_urlpatterns = [
url(r'^ws/chat/(?P<room_name>[^/]+)/$', consumers.ChatConsumer),
]`
this is the error log:
`
...
File "C:\Users\Mach2\AppData\Local\Programs\Python\Python37-32\lib\site-packages\channels\routing.py", line 35, in get_default_application
raise ImproperlyConfigured("Cannot import ASGI_APPLICATION module %r" % path)
django.core.exceptions.ImproperlyConfigured: Cannot import ASGI_APPLICATION module 'channels_test.routing'` | 2019-02-27T08:21:09.908700 | Jennefer | pythondev_help_Jennefer_2019-02-27T08:21:09.908700 | 1,551,255,669.9087 | 11,003 |
pythondev | help | you’re using django 3.0 dev, so I’m not surprised there are a few things breaking between that and channels ¯\_(ツ)_/¯ | 2019-02-27T08:22:42.908800 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:22:42.908800 | 1,551,255,762.9088 | 11,004 |
pythondev | help | do you get the same thing when you roll back to 2.1? | 2019-02-27T08:22:53.909100 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:22:53.909100 | 1,551,255,773.9091 | 11,005 |
pythondev | help | >Django version 3.0.dev20190127224143 | 2019-02-27T08:23:08.909600 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:23:08.909600 | 1,551,255,788.9096 | 11,006 |
pythondev | help | in your traceback | 2019-02-27T08:23:15.909800 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:23:15.909800 | 1,551,255,795.9098 | 11,007 |
pythondev | help | also, you can format multiple line messages in code format with triple backticks | 2019-02-27T08:25:23.910200 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:25:23.910200 | 1,551,255,923.9102 | 11,008 |
pythondev | help | <@Hiroko> I've verified data insertion in my ES | 2019-02-27T08:26:03.911000 | Valeri | pythondev_help_Valeri_2019-02-27T08:26:03.911000 | 1,551,255,963.911 | 11,009 |
pythondev | help | It's only the query that I'm messing up | 2019-02-27T08:26:13.911400 | Valeri | pythondev_help_Valeri_2019-02-27T08:26:13.911400 | 1,551,255,973.9114 | 11,010 |
pythondev | help | AFAIK | 2019-02-27T08:26:18.911800 | Valeri | pythondev_help_Valeri_2019-02-27T08:26:18.911800 | 1,551,255,978.9118 | 11,011 |
pythondev | help | <@Jennefer> <https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#inline-code>
:point_up: slack’s way of inline code for readability | 2019-02-27T08:26:30.912100 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:26:30.912100 | 1,551,255,990.9121 | 11,012 |
pythondev | help | ```
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
green open .kibana_1 P6Wih4xnQBy_Cd7ULZV72g 1 0 6 0 146.9kb 146.9kb
green open .monitoring-kibana-6-2019.02.27 ujU3DgQETyq_iihyd3ZLjQ 1 0 250 0 190.3kb 190.3kb
yellow open haystack HlqB36BHTCCR_DQMeZNvgQ 5 1 412 0 768.1kb 768.1kb
yellow open arxivdb bdBragB7Q5OSf-_S04Aahg 5 1 496 0 3.9mb 3.9mb
green open .monitoring-es-6-2019.02.27 fmYWGWf0RuyeNpeOlLDPVA 1 0 2317 115 1.4mb 1.4mb
``` | 2019-02-27T08:27:00.912500 | Valeri | pythondev_help_Valeri_2019-02-27T08:27:00.912500 | 1,551,256,020.9125 | 11,013 |
pythondev | help | So my db is 3.9mb having 496 docs | 2019-02-27T08:27:23.913300 | Valeri | pythondev_help_Valeri_2019-02-27T08:27:23.913300 | 1,551,256,043.9133 | 11,014 |
pythondev | help | <@Hiroko> ok, sorry i'm new on slack.
So i have to try a roll back to 2.1? | 2019-02-27T08:28:08.914000 | Jennefer | pythondev_help_Jennefer_2019-02-27T08:28:08.914000 | 1,551,256,088.914 | 11,015 |
pythondev | help | no worries! | 2019-02-27T08:28:50.914800 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:28:50.914800 | 1,551,256,130.9148 | 11,016 |
pythondev | help | I would roll back | 2019-02-27T08:28:53.915100 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:28:53.915100 | 1,551,256,133.9151 | 11,017 |
pythondev | help | <@Hiroko> `<http://localhost:9200/arxivdb/_search?pretty=true&q=*:*>` | 2019-02-27T08:29:00.915400 | Valeri | pythondev_help_Valeri_2019-02-27T08:29:00.915400 | 1,551,256,140.9154 | 11,018 |
pythondev | help | That's basically a select all on ES | 2019-02-27T08:29:13.915900 | Valeri | pythondev_help_Valeri_2019-02-27T08:29:13.915900 | 1,551,256,153.9159 | 11,019 |
pythondev | help | and FYI, when using third party libs, check the documentation on their requirements | 2019-02-27T08:29:15.916000 | Hiroko | pythondev_help_Hiroko_2019-02-27T08:29:15.916000 | 1,551,256,155.916 | 11,020 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.