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 tried replicating what you have in isolation and it produced the proper result with select_related, but i guess you resolved it, good job. <https://dryorm.com/f3f5cb0b-2d99-4561-acf9-cfb289573c3c> | 2019-04-18T05:26:47.232800 | Cindy | pythondev_help_Cindy_2019-04-18T05:26:47.232800 | 1,555,565,207.2328 | 19,221 |
pythondev | help | Yeah, weird things works out sometimes :smile: | 2019-04-18T05:32:57.233100 | Faustina | pythondev_help_Faustina_2019-04-18T05:32:57.233100 | 1,555,565,577.2331 | 19,222 |
pythondev | help | Please how could I plot this points: ``` (0, 0) 0.0
(0, 6445) 0.0030635138729896466
(1, 1) 0.0
(1, 10491) 0.008235802962674618
(2, 2) 0.0
(2, 17263) 0.006739783600687774
(3, 3) 0.0
(3, 4294) 0.004569730977858582
(4, 4) 0.0
(4, 3388) 0.006180502325863049
(5, 5) 0.0
(5, 18895) 0.004176228202577096
(6, 6) 0.0
(6, 19849) 0.008935955888431858
(7, 7) 0.0
(7, 2994) 0.003989090748529011
(8, 8) 0.0
(8, 1015) 0.004706653375807463
(9, 9) 0.0
(9, 1811) 0.00696124770712836
(10, 10) 0.0
(10, 2194) 0.004942429969154842
(11, 11) 0.0
(11, 2368) 0.004325787331804448
(12, 12) 0.0
: :
(20858, 307) 0.00455643580553923
(20859, 20859) 0.0
(20859, 20854) 0.004348672096169105
(20860, 20860) 0.0
``` | 2019-04-18T06:12:33.233700 | Tanja | pythondev_help_Tanja_2019-04-18T06:12:33.233700 | 1,555,567,953.2337 | 19,223 |
pythondev | help | it's the nodes and the distance between them | 2019-04-18T06:12:57.234100 | Tanja | pythondev_help_Tanja_2019-04-18T06:12:57.234100 | 1,555,567,977.2341 | 19,224 |
pythondev | help | How can i validate the cron expression in python3? | 2019-04-18T06:34:39.234600 | Darcie | pythondev_help_Darcie_2019-04-18T06:34:39.234600 | 1,555,569,279.2346 | 19,225 |
pythondev | help | <@Tanja> if you are plotting the nodes, why do you need the distances between them? | 2019-04-18T06:38:36.234900 | Mildred | pythondev_help_Mildred_2019-04-18T06:38:36.234900 | 1,555,569,516.2349 | 19,226 |
pythondev | help | this one should help | 2019-04-18T06:40:24.236700 | Kam | pythondev_help_Kam_2019-04-18T06:40:24.236700 | 1,555,569,624.2367 | 19,227 |
pythondev | help | <https://pypi.org/project/croniter/> | 2019-04-18T06:40:25.236900 | Kam | pythondev_help_Kam_2019-04-18T06:40:25.236900 | 1,555,569,625.2369 | 19,228 |
pythondev | help | <@Darcie>
there are 6 whitespace-separated entries in each cron expression
5 of them define the time, and the last one is a path to a script | 2019-04-18T06:40:31.237200 | Jettie | pythondev_help_Jettie_2019-04-18T06:40:31.237200 | 1,555,569,631.2372 | 19,229 |
pythondev | help | Ok thank you. | 2019-04-18T06:42:31.238200 | Darcie | pythondev_help_Darcie_2019-04-18T06:42:31.238200 | 1,555,569,751.2382 | 19,230 |
pythondev | help | time format is not the most straightforward, but still not very hard
`*` or N entries in a form of `TIME/DIVISOR` or just `TIME`, separated by a comma | 2019-04-18T06:43:21.239600 | Jettie | pythondev_help_Jettie_2019-04-18T06:43:21.239600 | 1,555,569,801.2396 | 19,231 |
pythondev | help | Hello | 2019-04-18T09:21:17.240500 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:21:17.240500 | 1,555,579,277.2405 | 19,232 |
pythondev | help | given:
```
a = [ a1, a2, a3, a4]
```
can I build the following lists in one shot using comprehension:
```
b = [a1+c1, a2+c2, a3+c3, a4+c4]
c = [ 0, b1, b2, b3]
``` | 2019-04-18T09:21:40.241000 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:21:40.241000 | 1,555,579,300.241 | 19,233 |
pythondev | help | This is 90% correct. The final entry isn't just a path to a script, but a full-on shell command to run. We normally have it run a script, but just saying it's a path to a script ignores that you can redirect the outputs as with any other command, which is highly useful.
Also, if the cron entry is an entry in `/etc/crontab`, there are 7 entries. Immediately after the first 5 time entries is a parameter specifying the user to run the final command as. If it's an entry in the user crontab, then the 6-entry description is accurate. | 2019-04-18T09:22:27.241700 | Carmen | pythondev_help_Carmen_2019-04-18T09:22:27.241700 | 1,555,579,347.2417 | 19,234 |
pythondev | help | returning a tuple. the trick here is c takes the b value from the previous iteration | 2019-04-18T09:22:32.241900 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:22:32.241900 | 1,555,579,352.2419 | 19,235 |
pythondev | help | It's not immediately clear what you're trying to produce inside each list. Are those strings, or variables defined elsewhere and expressions to calculate with them? | 2019-04-18T09:25:32.243200 | Carmen | pythondev_help_Carmen_2019-04-18T09:25:32.243200 | 1,555,579,532.2432 | 19,236 |
pythondev | help | just numbers | 2019-04-18T09:25:51.243500 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:25:51.243500 | 1,555,579,551.2435 | 19,237 |
pythondev | help | So `a1-c1` is literally subtracting the value of `c1` from the value of `a1`? | 2019-04-18T09:26:44.244700 | Carmen | pythondev_help_Carmen_2019-04-18T09:26:44.244700 | 1,555,579,604.2447 | 19,238 |
pythondev | help | a1, a2, a3 just mean first, second, third numeric elements in a | 2019-04-18T09:27:02.245200 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:27:02.245200 | 1,555,579,622.2452 | 19,239 |
pythondev | help | yes | 2019-04-18T09:27:10.245400 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:27:10.245400 | 1,555,579,630.2454 | 19,240 |
pythondev | help | let me try with some real values | 2019-04-18T09:27:24.245800 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:27:24.245800 | 1,555,579,644.2458 | 19,241 |
pythondev | help | If you're using those as placeholders for the lists, not just variables defined elsewhere, then the main issue I'm seeing with that is that you're defining a circular relationship between lists `b` and `c`. There's no way to calculate those values in plain Python. You'd need to use an equation solver module. | 2019-04-18T09:29:14.248900 | Carmen | pythondev_help_Carmen_2019-04-18T09:29:14.248900 | 1,555,579,754.2489 | 19,242 |
pythondev | help | ```
a = [2530, -23299, 2143, 2331]
b = [2530, -20769, -18626, -16294]
c = [0, 2530, -20769, -18626]
``` | 2019-04-18T09:30:32.250300 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:30:32.250300 | 1,555,579,832.2503 | 19,243 |
pythondev | help | Ah. I see what you're aiming for now. | 2019-04-18T09:31:55.251100 | Carmen | pythondev_help_Carmen_2019-04-18T09:31:55.251100 | 1,555,579,915.2511 | 19,244 |
pythondev | help | yeah, just a substruction and a carry on of the previous element | 2019-04-18T09:32:30.251800 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:32:30.251800 | 1,555,579,950.2518 | 19,245 |
pythondev | help | I think you might be able to build something using generators, rather than a straight up list comprehension, but I think you'd be better off defining a function that builds the lists for you. Inside that function you'd just iterate as many times as you want to, appending the calculation results to each list as you go. | 2019-04-18T09:33:54.253300 | Carmen | pythondev_help_Carmen_2019-04-18T09:33:54.253300 | 1,555,580,034.2533 | 19,246 |
pythondev | help | Hello guys, how can you make a docker container to have a active status....? | 2019-04-18T09:35:20.255400 | Elmira | pythondev_help_Elmira_2019-04-18T09:35:20.255400 | 1,555,580,120.2554 | 19,247 |
pythondev | help | thanks <@Carmen>, I'll give generators a shot | 2019-04-18T09:35:58.256000 | Deangelo | pythondev_help_Deangelo_2019-04-18T09:35:58.256000 | 1,555,580,158.256 | 19,248 |
pythondev | help | `docker container start {CONTAINER NAME]` | 2019-04-18T09:36:07.256300 | Carmen | pythondev_help_Carmen_2019-04-18T09:36:07.256300 | 1,555,580,167.2563 | 19,249 |
pythondev | help | Okay <@Carmen>. I will check it out | 2019-04-18T09:37:26.256900 | Elmira | pythondev_help_Elmira_2019-04-18T09:37:26.256900 | 1,555,580,246.2569 | 19,250 |
pythondev | help | ```c = [i-b[e] for e, i in enumerate(a)]``` | 2019-04-18T10:19:57.259000 | Johna | pythondev_help_Johna_2019-04-18T10:19:57.259000 | 1,555,582,797.259 | 19,251 |
pythondev | help | might be slow | 2019-04-18T10:19:59.259200 | Johna | pythondev_help_Johna_2019-04-18T10:19:59.259200 | 1,555,582,799.2592 | 19,252 |
pythondev | help | and i might have it backwards…. | 2019-04-18T10:20:29.259400 | Johna | pythondev_help_Johna_2019-04-18T10:20:29.259400 | 1,555,582,829.2594 | 19,253 |
pythondev | help | ```c = [b[e]-i for e, i in enumerate(a)]``` | 2019-04-18T10:20:52.259600 | Johna | pythondev_help_Johna_2019-04-18T10:20:52.259600 | 1,555,582,852.2596 | 19,254 |
pythondev | help | not sure what you were trying to do with the two values… if it’s add, you could do that too… sorry :slightly_smiling_face: | 2019-04-18T10:22:51.260000 | Johna | pythondev_help_Johna_2019-04-18T10:22:51.260000 | 1,555,582,971.26 | 19,255 |
pythondev | help | anyone got a good suggestion on sharing a db over a vm? I was thinking about placing the db in a vm shared folder, but not sure if this is the best idea? | 2019-04-18T11:11:52.261000 | Nenita | pythondev_help_Nenita_2019-04-18T11:11:52.261000 | 1,555,585,912.261 | 19,256 |
pythondev | help | > sharing a db over a vm
What do you mean by that ? sqlite ? | 2019-04-18T11:14:21.261300 | Jimmy | pythondev_help_Jimmy_2019-04-18T11:14:21.261300 | 1,555,586,061.2613 | 19,257 |
pythondev | help | that was one idea - sqlite | 2019-04-18T11:16:34.261700 | Nenita | pythondev_help_Nenita_2019-04-18T11:16:34.261700 | 1,555,586,194.2617 | 19,258 |
pythondev | help | but i was also trying to find a way to use odbc over vm, but i always come back to just sticking the db in a shared folder | 2019-04-18T11:16:57.262300 | Nenita | pythondev_help_Nenita_2019-04-18T11:16:57.262300 | 1,555,586,217.2623 | 19,259 |
pythondev | help | what is your overarching goal? By that description things sound a little confused | 2019-04-18T11:17:46.263100 | Clemmie | pythondev_help_Clemmie_2019-04-18T11:17:46.263100 | 1,555,586,266.2631 | 19,260 |
pythondev | help | :point_up: | 2019-04-18T11:17:52.263300 | Jimmy | pythondev_help_Jimmy_2019-04-18T11:17:52.263300 | 1,555,586,272.2633 | 19,261 |
pythondev | help | long story short, im comparing two tables from two db's. One of the db's is on a vm. one db is firebird and the other is mariadb | 2019-04-18T11:19:09.264400 | Nenita | pythondev_help_Nenita_2019-04-18T11:19:09.264400 | 1,555,586,349.2644 | 19,262 |
pythondev | help | As a one off, or as a continuing process? | 2019-04-18T11:19:40.265400 | Clemmie | pythondev_help_Clemmie_2019-04-18T11:19:40.265400 | 1,555,586,380.2654 | 19,263 |
pythondev | help | reoccuring | 2019-04-18T11:19:50.265700 | Nenita | pythondev_help_Nenita_2019-04-18T11:19:50.265700 | 1,555,586,390.2657 | 19,264 |
pythondev | help | im planning on writing a simple program with a ui | 2019-04-18T11:20:07.266100 | Nenita | pythondev_help_Nenita_2019-04-18T11:20:07.266100 | 1,555,586,407.2661 | 19,265 |
pythondev | help | using python, ill do all the backend stuff, i just need to know the best way to access my db on my vm | 2019-04-18T11:20:28.266900 | Nenita | pythondev_help_Nenita_2019-04-18T11:20:28.266900 | 1,555,586,428.2669 | 19,266 |
pythondev | help | usually for remote db access you provide a host/port/user/pass to the client, and the remote db is open for remote connections | 2019-04-18T11:21:35.268800 | Clemmie | pythondev_help_Clemmie_2019-04-18T11:21:35.268800 | 1,555,586,495.2688 | 19,267 |
pythondev | help | best way would have to have the db listening on the network and bridge the vms on your local network | 2019-04-18T11:21:48.269400 | Jimmy | pythondev_help_Jimmy_2019-04-18T11:21:48.269400 | 1,555,586,508.2694 | 19,268 |
pythondev | help | being on a vm is no different, you just need to get the networking set up correctly | 2019-04-18T11:21:56.269700 | Clemmie | pythondev_help_Clemmie_2019-04-18T11:21:56.269700 | 1,555,586,516.2697 | 19,269 |
pythondev | help | <@Carmen> I came up with this solution using generators. Is this good enough or is there a faster alternative?
```
# given a, calculate b and c as follows
# b = [a[0]+c[0], a[1]+c[1], a[2]+c[2], a[3]+c[3]]
# c = [0,b[0],b[1],b[2]]
----
# solution:
def cycle(alist):
b = 0
for i, a in enumerate(alist):
c = b
b = a + c
yield b, c
alist = [2530, -23299, 2143, 2331]
blist, clist = map(list, zip(*[(t[0], t[1]) for t in cycle(alist)]))
# blist = [t[0] for t in tup]
# clist = [t[1] for t in tup]
print(alist) # [2530, -23299, 2143, 2331]
print(blist) # [2530, -20769, -18626, -16295]
print(clist) # [0, 2530, -20769, -18626]
``` | 2019-04-18T11:22:08.269900 | Deangelo | pythondev_help_Deangelo_2019-04-18T11:22:08.269900 | 1,555,586,528.2699 | 19,270 |
pythondev | help | well thats good to know. never had to work with a db on vm, but really nice to know its just a simple (or should be) | 2019-04-18T11:22:55.270400 | Nenita | pythondev_help_Nenita_2019-04-18T11:22:55.270400 | 1,555,586,575.2704 | 19,271 |
pythondev | help | thanks ill look into the networking side of it | 2019-04-18T11:23:02.270800 | Nenita | pythondev_help_Nenita_2019-04-18T11:23:02.270800 | 1,555,586,582.2708 | 19,272 |
pythondev | help | vm networking can be a bit of a hassle, but networking in general can be …. interesting | 2019-04-18T11:23:32.271400 | Clemmie | pythondev_help_Clemmie_2019-04-18T11:23:32.271400 | 1,555,586,612.2714 | 19,273 |
pythondev | help | is that on a laptop ? server ? | 2019-04-18T11:28:04.271700 | Jimmy | pythondev_help_Jimmy_2019-04-18T11:28:04.271700 | 1,555,586,884.2717 | 19,274 |
pythondev | help | its ubuntu server 18.0.4 and it will be on a desktop in the future. currently run on a desktop now. | 2019-04-18T11:28:32.272300 | Nenita | pythondev_help_Nenita_2019-04-18T11:28:32.272300 | 1,555,586,912.2723 | 19,275 |
pythondev | help | networking shouldn't be too complicated :slightly_smiling_face: | 2019-04-18T11:29:07.272800 | Jimmy | pythondev_help_Jimmy_2019-04-18T11:29:07.272800 | 1,555,586,947.2728 | 19,276 |
pythondev | help | na, for what im trying to do it should be fairly simple. | 2019-04-18T11:30:41.273500 | Nenita | pythondev_help_Nenita_2019-04-18T11:30:41.273500 | 1,555,587,041.2735 | 19,277 |
pythondev | help | <@Deangelo> That seems like a reasonable solution. | 2019-04-18T12:24:27.275300 | Carmen | pythondev_help_Carmen_2019-04-18T12:24:27.275300 | 1,555,590,267.2753 | 19,278 |
pythondev | help | Hi all. I install `python3.7` on Ubuntu 18.04 alongside the system Python. Is it possible to use `venv` with it or I should just use `virtualenv`? | 2019-04-18T12:24:55.275800 | Jamey | pythondev_help_Jamey_2019-04-18T12:24:55.275800 | 1,555,590,295.2758 | 19,279 |
pythondev | help | either should work | 2019-04-18T12:26:56.276100 | Kam | pythondev_help_Kam_2019-04-18T12:26:56.276100 | 1,555,590,416.2761 | 19,280 |
pythondev | help | `venv` isn't working :cry: | 2019-04-18T12:28:01.276400 | Jamey | pythondev_help_Jamey_2019-04-18T12:28:01.276400 | 1,555,590,481.2764 | 19,281 |
pythondev | help | `Error: Command '['/home/board-tutorial/venv/bin/python3.7', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.` | 2019-04-18T12:28:43.276700 | Jamey | pythondev_help_Jamey_2019-04-18T12:28:43.276700 | 1,555,590,523.2767 | 19,282 |
pythondev | help | The above is output from `python3.7 -m venv venv` | 2019-04-18T12:29:56.277200 | Jamey | pythondev_help_Jamey_2019-04-18T12:29:56.277200 | 1,555,590,596.2772 | 19,283 |
pythondev | help | what does this do `python3.7 -m venv /tmp/my_python37` | 2019-04-18T12:33:17.278300 | Kam | pythondev_help_Kam_2019-04-18T12:33:17.278300 | 1,555,590,797.2783 | 19,284 |
pythondev | help | :point_up: `python -m venv` is the documented way now | 2019-04-18T12:33:50.278800 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:33:50.278800 | 1,555,590,830.2788 | 19,285 |
pythondev | help | but looks like there is a problem in installing pip :thinking_face: | 2019-04-18T12:34:16.279100 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:34:16.279100 | 1,555,590,856.2791 | 19,286 |
pythondev | help | I installed pip like this `wget <https://bootstrap.pypa.io/get-pip.py>` and `sudo -H python3.7 get-pip.py`. | 2019-04-18T12:36:51.279800 | Jamey | pythondev_help_Jamey_2019-04-18T12:36:51.279800 | 1,555,591,011.2798 | 19,287 |
pythondev | help | looks wrong | 2019-04-18T12:38:39.280700 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:38:39.280700 | 1,555,591,119.2807 | 19,288 |
pythondev | help | how did you install python ? | 2019-04-18T12:38:44.281000 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:38:44.281000 | 1,555,591,124.281 | 19,289 |
pythondev | help | So the system `pip`... I may have upgraded the system `pip`. Maybe that's the problem? Since Ubuntu installs `python-pip` as a package and not in the way I've done | 2019-04-18T12:39:09.281400 | Jamey | pythondev_help_Jamey_2019-04-18T12:39:09.281400 | 1,555,591,149.2814 | 19,290 |
pythondev | help | I don't know | 2019-04-18T12:39:35.281900 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:39:35.281900 | 1,555,591,175.2819 | 19,291 |
pythondev | help | what I would do is remove the python3.7 you installed and reinstall `python-pip` | 2019-04-18T12:39:54.282400 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:39:54.282400 | 1,555,591,194.2824 | 19,292 |
pythondev | help | then reinstall python3.7 (preferably with pyenv) | 2019-04-18T12:40:13.282800 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:40:13.282800 | 1,555,591,213.2828 | 19,293 |
pythondev | help | afaik `pip` should be included in standard python now | 2019-04-18T12:40:35.283200 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:40:35.283200 | 1,555,591,235.2832 | 19,294 |
pythondev | help | I installed `python3.7` like this: `sudo add-apt-repository ppa:deadsnakes/ppa` > `sudo apt update` > `sudo apt install python3.7` | 2019-04-18T12:41:48.284100 | Jamey | pythondev_help_Jamey_2019-04-18T12:41:48.284100 | 1,555,591,308.2841 | 19,295 |
pythondev | help | hmm I'm not familiar with that ppa but I don't use ubuntu | 2019-04-18T12:42:46.284600 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:42:46.284600 | 1,555,591,366.2846 | 19,296 |
pythondev | help | you may want to look into pyenv or maybe there is a `python3.7-pip` packages to install ? | 2019-04-18T12:43:11.285200 | Jimmy | pythondev_help_Jimmy_2019-04-18T12:43:11.285200 | 1,555,591,391.2852 | 19,297 |
pythondev | help | <@Jimmy> it's alright. I removed 3.7. It is causing too much conflict. | 2019-04-18T13:09:40.286000 | Jamey | pythondev_help_Jamey_2019-04-18T13:09:40.286000 | 1,555,592,980.286 | 19,298 |
pythondev | help | ¯\_(ツ)_/¯ | 2019-04-18T13:09:43.286100 | Jamey | pythondev_help_Jamey_2019-04-18T13:09:43.286100 | 1,555,592,983.2861 | 19,299 |
pythondev | help | <@Jimmy> :taco: for the help | 2019-04-18T13:10:13.286600 | Jamey | pythondev_help_Jamey_2019-04-18T13:10:13.286600 | 1,555,593,013.2866 | 19,300 |
pythondev | help | <@Jamey> I use <https://github.com/pyenv/pyenv> for managing different pythons on my systems | 2019-04-18T13:11:16.287000 | Chester | pythondev_help_Chester_2019-04-18T13:11:16.287000 | 1,555,593,076.287 | 19,301 |
pythondev | help | Works perfectly | 2019-04-18T13:11:20.287400 | Chester | pythondev_help_Chester_2019-04-18T13:11:20.287400 | 1,555,593,080.2874 | 19,302 |
pythondev | help | Thanks for checking! | 2019-04-18T13:13:46.287500 | Deangelo | pythondev_help_Deangelo_2019-04-18T13:13:46.287500 | 1,555,593,226.2875 | 19,303 |
pythondev | help | <@Chester> have seen this around a couple of times. Will try it out. Thanks. | 2019-04-18T13:36:29.288100 | Jamey | pythondev_help_Jamey_2019-04-18T13:36:29.288100 | 1,555,594,589.2881 | 19,304 |
pythondev | help | Hi, does anyone know how to reduce the time taken to upload the file to a server in python? | 2019-04-18T13:40:30.288300 | Angle | pythondev_help_Angle_2019-04-18T13:40:30.288300 | 1,555,594,830.2883 | 19,305 |
pythondev | help | make the file smaller or the bandwidth larger | 2019-04-18T13:44:24.288600 | Clemmie | pythondev_help_Clemmie_2019-04-18T13:44:24.288600 | 1,555,595,064.2886 | 19,306 |
pythondev | help | :rolling_on_the_floor_laughing: | 2019-04-18T13:49:10.288800 | Claudine | pythondev_help_Claudine_2019-04-18T13:49:10.288800 | 1,555,595,350.2888 | 19,307 |
pythondev | help | <@Angle> I don't think Python will be the bottle neck in that situation if you are transferring a single file via some network protocol | 2019-04-18T13:52:46.289700 | Lawrence | pythondev_help_Lawrence_2019-04-18T13:52:46.289700 | 1,555,595,566.2897 | 19,308 |
pythondev | help | Any suggestions if you have come across similar situation? | 2019-04-18T13:54:26.290300 | Angle | pythondev_help_Angle_2019-04-18T13:54:26.290300 | 1,555,595,666.2903 | 19,309 |
pythondev | help | you could potentially compress it | 2019-04-18T13:56:11.290700 | Karoline | pythondev_help_Karoline_2019-04-18T13:56:11.290700 | 1,555,595,771.2907 | 19,310 |
pythondev | help | <@Karoline>'s suggestion sounds like a good approach | 2019-04-18T13:57:22.290900 | Lawrence | pythondev_help_Lawrence_2019-04-18T13:57:22.290900 | 1,555,595,842.2909 | 19,311 |
pythondev | help | I wont have it unless its uploaded by the user. I am handling only the backend part | 2019-04-18T14:04:03.291300 | Angle | pythondev_help_Angle_2019-04-18T14:04:03.291300 | 1,555,596,243.2913 | 19,312 |
pythondev | help | So I wont be able to zip it | 2019-04-18T14:04:13.291500 | Angle | pythondev_help_Angle_2019-04-18T14:04:13.291500 | 1,555,596,253.2915 | 19,313 |
pythondev | help | How ,btw? | 2019-04-18T14:05:20.291900 | Angle | pythondev_help_Angle_2019-04-18T14:05:20.291900 | 1,555,596,320.2919 | 19,314 |
pythondev | help | then there's not a whole lot you can do aside from potentially deploying endpoints closer to the user | 2019-04-18T14:05:31.292300 | Karoline | pythondev_help_Karoline_2019-04-18T14:05:31.292300 | 1,555,596,331.2923 | 19,315 |
pythondev | help | <@Angle> is the problem user-end or your bandwidth | 2019-04-18T14:05:59.293300 | Hiroko | pythondev_help_Hiroko_2019-04-18T14:05:59.293300 | 1,555,596,359.2933 | 19,316 |
pythondev | help | if user-end, not much you can do | 2019-04-18T14:06:04.293500 | Hiroko | pythondev_help_Hiroko_2019-04-18T14:06:04.293500 | 1,555,596,364.2935 | 19,317 |
pythondev | help | <@Conchita> -__- I've been conditioned to use this with only 4 lines of code or less (I blame ps1 slack), completely forgot it has a spoiler.. thanks! | 2019-04-18T14:09:29.296500 | Terrilyn | pythondev_help_Terrilyn_2019-04-18T14:09:29.296500 | 1,555,596,569.2965 | 19,318 |
pythondev | help | Any recommendations for a simple websocket server for Python2? | 2019-04-18T14:52:44.297800 | Al | pythondev_help_Al_2019-04-18T14:52:44.297800 | 1,555,599,164.2978 | 19,319 |
pythondev | help | Is this okay to do this to have function to implement logging and then return logger object to use in main() | 2019-04-18T14:53:10.297900 | Kam | pythondev_help_Kam_2019-04-18T14:53:10.297900 | 1,555,599,190.2979 | 19,320 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.