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 | pass in the list there | 2017-09-06T09:55:11.000451 | Meg | pythondev_help_Meg_2017-09-06T09:55:11.000451 | 1,504,691,711.000451 | 92,203 |
pythondev | help | but you'd have to do it with a division and comparison | 2017-09-06T09:55:26.000244 | Meg | pythondev_help_Meg_2017-09-06T09:55:26.000244 | 1,504,691,726.000244 | 92,204 |
pythondev | help | I know. I just did that to make more red fill, so I can know if it works or not | 2017-09-06T09:55:47.000041 | Jon | pythondev_help_Jon_2017-09-06T09:55:47.000041 | 1,504,691,747.000041 | 92,205 |
pythondev | help | I want to chart to be shaded between 7am and 10am | 2017-09-06T09:55:57.000549 | Jon | pythondev_help_Jon_2017-09-06T09:55:57.000549 | 1,504,691,757.000549 | 92,206 |
pythondev | help | Oh I misread what you said. nvm | 2017-09-06T09:56:10.000173 | Jon | pythondev_help_Jon_2017-09-06T09:56:10.000173 | 1,504,691,770.000173 | 92,207 |
pythondev | help | eg `where = [x for x in x2 if x > numeric_timestamp/2 ]` | 2017-09-06T09:56:36.000306 | Meg | pythondev_help_Meg_2017-09-06T09:56:36.000306 | 1,504,691,796.000306 | 92,208 |
pythondev | help | Where numeric_timestamp is my chosen value | 2017-09-06T09:57:29.000631 | Jon | pythondev_help_Jon_2017-09-06T09:57:29.000631 | 1,504,691,849.000631 | 92,209 |
pythondev | help | Hey everyone! Bit stuck on something. I'm using a nested list comprehension to retrieve data from a generator returned by a method in a tool I'm building. It seems a bit wasteful to do so - would using ```next()``` be more suitable for working with generators? | 2017-09-06T09:58:20.000485 | Davida | pythondev_help_Davida_2017-09-06T09:58:20.000485 | 1,504,691,900.000485 | 92,210 |
pythondev | help | <@Jon> correct. In your code example, `numeric_timestamp = 990014340000000000` | 2017-09-06T09:58:55.000412 | Meg | pythondev_help_Meg_2017-09-06T09:58:55.000412 | 1,504,691,935.000412 | 92,211 |
pythondev | help | <@Meg>, I dont know if I'm missing something now...
I did `(x2[0] + x2[-1])/2` and got `9.9001434e+17`
So then I did `ax1.fill_between(x2, 0, 100, where = [x for x in x2 if x > 9.9001434e+17/2 ], facecolor='red', alpha=0.5)`
It's plotting, but there is no shading
If I remove the `/2`, I get `ValueError: Argument dimensions are incompatible` | 2017-09-06T10:01:24.000030 | Jon | pythondev_help_Jon_2017-09-06T10:01:24.000030 | 1,504,692,084.00003 | 92,212 |
pythondev | help | Hello there, I'm learning Kivy and, I just got this error:
```[INFO ] [Logger ] Record log in /Users/alfonsoima/.kivy/logs/kivy_17-09-06_1.txt
[INFO ] [Kivy ] v1.10.0
[INFO ] [Python ] v3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]
[INFO ] [Factory ] 194 symbols loaded
[INFO ] [Image ] Providers: img_tex, img_imageio, img_dds, img_pygame, img_gif (img_pil, img_ffpyplayer ignored)
Traceback (most recent call last):
File "main.py", line 2, in <module>
from kivy.uix.Widget import Widget
ModuleNotFoundError: No module named 'kivy.uix.Widget'```
The problem is that I tried `pip3 install kivy && pip3 install pygame` and It just doesn't work | 2017-09-06T10:01:38.000596 | Lana | pythondev_help_Lana_2017-09-06T10:01:38.000596 | 1,504,692,098.000596 | 92,213 |
pythondev | help | <@Davida> could you share some code ? :slightly_smiling_face: | 2017-09-06T10:02:10.000236 | Ciera | pythondev_help_Ciera_2017-09-06T10:02:10.000236 | 1,504,692,130.000236 | 92,214 |
pythondev | help | <@Jon> is there a way you can check the list values outside of the `fill_between`? | 2017-09-06T10:02:22.000044 | Meg | pythondev_help_Meg_2017-09-06T10:02:22.000044 | 1,504,692,142.000044 | 92,215 |
pythondev | help | eg, `[x for x in x2 if x > 9.9001434e+17/2 ]` in the shell | 2017-09-06T10:02:38.000615 | Meg | pythondev_help_Meg_2017-09-06T10:02:38.000615 | 1,504,692,158.000615 | 92,216 |
pythondev | help | <@Ciera> will do - I need to genericise it first though :stuck_out_tongue: (work project) | 2017-09-06T10:02:40.000124 | Davida | pythondev_help_Davida_2017-09-06T10:02:40.000124 | 1,504,692,160.000124 | 92,217 |
pythondev | help | what values are there | 2017-09-06T10:02:41.000317 | Meg | pythondev_help_Meg_2017-09-06T10:02:41.000317 | 1,504,692,161.000317 | 92,218 |
pythondev | help | I'm using jupyter, but I can do that in a new cell | 2017-09-06T10:02:58.000368 | Jon | pythondev_help_Jon_2017-09-06T10:02:58.000368 | 1,504,692,178.000368 | 92,219 |
pythondev | help | <@Davida> when you're asking for help, code always makes things easier | 2017-09-06T10:03:05.000210 | Meg | pythondev_help_Meg_2017-09-06T10:03:05.000210 | 1,504,692,185.00021 | 92,220 |
pythondev | help | since we don't know what you're doing | 2017-09-06T10:03:25.000079 | Meg | pythondev_help_Meg_2017-09-06T10:03:25.000079 | 1,504,692,205.000079 | 92,221 |
pythondev | help | <@Lana> is it maybe an additional thing to install ? I suppose `import kivy` is working ? | 2017-09-06T10:03:27.000159 | Ciera | pythondev_help_Ciera_2017-09-06T10:03:27.000159 | 1,504,692,207.000159 | 92,222 |
pythondev | help | <@Ciera> I'm an idiot, just pressed enter to this channel with my question and realized `kivy.uix.Widget ≠ kivy.uix.widget` | 2017-09-06T10:04:27.000668 | Lana | pythondev_help_Lana_2017-09-06T10:04:27.000668 | 1,504,692,267.000668 | 92,223 |
pythondev | help | <@Meg> I am getting a long list of values. Too many to post here (my dataset is quite large)
`x2.shape` = `(720,)`
`len([x for x in x2 if x > 9.9001434e+17/2 ])` = 720 | 2017-09-06T10:04:43.000500 | Jon | pythondev_help_Jon_2017-09-06T10:04:43.000500 | 1,504,692,283.0005 | 92,224 |
pythondev | help | I think I need a masked boolean array
Or what do you call it | 2017-09-06T10:05:27.000185 | Jon | pythondev_help_Jon_2017-09-06T10:05:27.000185 | 1,504,692,327.000185 | 92,225 |
pythondev | help | <@Meg> noted. I need to be wary of being too specific, but I'll do what I can | 2017-09-06T10:05:39.000586 | Davida | pythondev_help_Davida_2017-09-06T10:05:39.000586 | 1,504,692,339.000586 | 92,226 |
pythondev | help | <@Ciera> see below
```
#!/usr/bin/python
from logs import LogRetriever
l = LogRetriever()
# l.list_logs() output looks like this:
# [cruft, cruft, cruft, log_ID, cruft, cruft, log_ID]
groups = [i.log_group for i in [
x for x in l.list_logs(
param1,
param2, param3
)
]]
``` | 2017-09-06T10:05:48.000707 | Davida | pythondev_help_Davida_2017-09-06T10:05:48.000707 | 1,504,692,348.000707 | 92,227 |
pythondev | help | Because `len([x for x in x2 if x > 990002640000000000 ])` = 457
So then it complains that the dimensions differ. I guess it expects 720 values
<@Meg> | 2017-09-06T10:06:03.000176 | Jon | pythondev_help_Jon_2017-09-06T10:06:03.000176 | 1,504,692,363.000176 | 92,228 |
pythondev | help | That gives me a set of values as such:
```
[log_ID, log_ID, log_ID, log_ID}
``` | 2017-09-06T10:06:39.000430 | Davida | pythondev_help_Davida_2017-09-06T10:06:39.000430 | 1,504,692,399.00043 | 92,229 |
pythondev | help | :taco: Anyway, thanks <@Ciera> | 2017-09-06T10:07:23.000246 | Lana | pythondev_help_Lana_2017-09-06T10:07:23.000246 | 1,504,692,443.000246 | 92,230 |
pythondev | help | Again, I'm starting to practice everyday so, still kinda new :S | 2017-09-06T10:07:52.000546 | Lana | pythondev_help_Lana_2017-09-06T10:07:52.000546 | 1,504,692,472.000546 | 92,231 |
pythondev | help | <@Ciera> I was thinking of simplifying that giant list comp by using ``` next(groups)``` instead but not sure if that'd work | 2017-09-06T10:09:34.000334 | Davida | pythondev_help_Davida_2017-09-06T10:09:34.000334 | 1,504,692,574.000334 | 92,232 |
pythondev | help | <@Lana> we have all been there :wink: | 2017-09-06T10:10:20.000310 | Ciera | pythondev_help_Ciera_2017-09-06T10:10:20.000310 | 1,504,692,620.00031 | 92,233 |
pythondev | help | Thanks again | 2017-09-06T10:11:24.000067 | Lana | pythondev_help_Lana_2017-09-06T10:11:24.000067 | 1,504,692,684.000067 | 92,234 |
pythondev | help | <@Davida> I don't know but, is not the `next()`method callable when you use `yield`instead of `return`? | 2017-09-06T10:12:02.000549 | Lana | pythondev_help_Lana_2017-09-06T10:12:02.000549 | 1,504,692,722.000549 | 92,235 |
pythondev | help | there is definitively a better way <@Davida> jsut need to find it :smile: | 2017-09-06T10:12:46.000730 | Ciera | pythondev_help_Ciera_2017-09-06T10:12:46.000730 | 1,504,692,766.00073 | 92,236 |
pythondev | help | Oh, I just scrolled up, you know that, sorry | 2017-09-06T10:13:28.000194 | Lana | pythondev_help_Lana_2017-09-06T10:13:28.000194 | 1,504,692,808.000194 | 92,237 |
pythondev | help | <@Lana> not necessarily, according to the docs (<https://docs.python.org/3.4/library/functions.html#next>) it's callable on any iterator. I am unsure whether a generator is different to an iterator, though - that's where I'm kind of :scream: ing
e: Gah, no markdown support in Slack, I geddit | 2017-09-06T10:14:09.000691 | Davida | pythondev_help_Davida_2017-09-06T10:14:09.000691 | 1,504,692,849.000691 | 92,238 |
pythondev | help | <https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#code-blocks> | 2017-09-06T10:15:17.000224 | Meg | pythondev_help_Meg_2017-09-06T10:15:17.000224 | 1,504,692,917.000224 | 92,239 |
pythondev | help | but yeah, no MD formatting is a bit of a PITA | 2017-09-06T10:15:32.000055 | Meg | pythondev_help_Meg_2017-09-06T10:15:32.000055 | 1,504,692,932.000055 | 92,240 |
pythondev | help | <@Davida> basically, a generator is an iterator, but an iterator is not a generator | 2017-09-06T10:16:14.000515 | Meg | pythondev_help_Meg_2017-09-06T10:16:14.000515 | 1,504,692,974.000515 | 92,241 |
pythondev | help | <@Meg> gotcha, thank you. Just found that help page and am disappointed that Slack hasn't implemented MD, but it is what it is. | 2017-09-06T10:16:50.000079 | Davida | pythondev_help_Davida_2017-09-06T10:16:50.000079 | 1,504,693,010.000079 | 92,242 |
pythondev | help | I'm not really sure of what this does `[i.log_group for i in [
x for x in l.list_logs(
param1,
param2, param3
)
]` | 2017-09-06T10:16:53.000669 | Ciera | pythondev_help_Ciera_2017-09-06T10:16:53.000669 | 1,504,693,013.000669 | 92,243 |
pythondev | help | you don't do anythin g on x or i | 2017-09-06T10:17:09.000240 | Ciera | pythondev_help_Ciera_2017-09-06T10:17:09.000240 | 1,504,693,029.00024 | 92,244 |
pythondev | help | l.list_logs() returns a list of lists. Each nested list contains a field named "log_identifier". I'm trying to extract that field, and only that field. | 2017-09-06T10:17:47.000026 | Davida | pythondev_help_Davida_2017-09-06T10:17:47.000026 | 1,504,693,067.000026 | 92,245 |
pythondev | help | would somehting like that work `[x[2] for x in list_logs(...)]` | 2017-09-06T10:20:24.000666 | Ciera | pythondev_help_Ciera_2017-09-06T10:20:24.000666 | 1,504,693,224.000666 | 92,246 |
pythondev | help | that would work, yes! | 2017-09-06T10:20:35.000380 | Davida | pythondev_help_Davida_2017-09-06T10:20:35.000380 | 1,504,693,235.00038 | 92,247 |
pythondev | help | fyi you can also put `if` statements inside a list comprehension | 2017-09-06T10:22:08.000712 | Ciera | pythondev_help_Ciera_2017-09-06T10:22:08.000712 | 1,504,693,328.000712 | 92,248 |
pythondev | help | o.O | 2017-09-06T10:22:59.000386 | Davida | pythondev_help_Davida_2017-09-06T10:22:59.000386 | 1,504,693,379.000386 | 92,249 |
pythondev | help | so glad I'm here | 2017-09-06T10:23:08.000005 | Davida | pythondev_help_Davida_2017-09-06T10:23:08.000005 | 1,504,693,388.000005 | 92,250 |
pythondev | help | like `[x * 2 for x in [1,2,3,4] if x % 2 == 0]` will give you `[4,8]` | 2017-09-06T10:25:08.000056 | Ciera | pythondev_help_Ciera_2017-09-06T10:25:08.000056 | 1,504,693,508.000056 | 92,251 |
pythondev | help | <@Meg>
I tried doing it differently now:
```
x2 = pd.to_numeric(x)
x2_mask = np.ma.masked_greater_equal(x2, 990002640000000000).mask
ax1.fill_between(x2, 0, 100, where=x2_mask, facecolor='red')
```
I'm not getting any errors, but also, no shading is happening,... | 2017-09-06T10:49:58.000241 | Jon | pythondev_help_Jon_2017-09-06T10:49:58.000241 | 1,504,694,998.000241 | 92,252 |
pythondev | help | sorry :confused: maybe ask on stackoverflow or the matplotlib github issue tracker | 2017-09-06T10:53:55.000177 | Meg | pythondev_help_Meg_2017-09-06T10:53:55.000177 | 1,504,695,235.000177 | 92,253 |
pythondev | help | <https://github.com/matplotlib/matplotlib> | 2017-09-06T10:53:55.000475 | Meg | pythondev_help_Meg_2017-09-06T10:53:55.000475 | 1,504,695,235.000475 | 92,254 |
pythondev | help | Thanks | 2017-09-06T10:54:21.000191 | Jon | pythondev_help_Jon_2017-09-06T10:54:21.000191 | 1,504,695,261.000191 | 92,255 |
pythondev | help | Addtionally, I have a bar chart question...
```
score_sim = (70, 80, 90)
score_feat = (10, 20, 30)
ind = np.arange(len(score_sim)) # the x locations for the groups
width = 0.35 # the width of the bars: can also be len(x) sequence
p1 = plt.bar(ind, score_sim, width)
p2 = plt.bar(ind, score_feat, width)
plt.ylabel('Scores')
plt.xticks(ind, ('1-factor', '2-factor', 'n-factor'))
plt.yticks(np.arange(0, 101, 10))
plt.legend((p1[0], p2[0]), ('Simulation score', 'Feature score'), loc='best')
```
I want to change the order - i.e. have the simulation score be below the feature score.
When I swap and 'rename' the p1 and p2 rows, only one series shows up in my plot | 2017-09-06T10:55:19.000688 | Jon | pythondev_help_Jon_2017-09-06T10:55:19.000688 | 1,504,695,319.000688 | 92,256 |
pythondev | help | <@Meg> FYI, SO helped me - I ended up using `ax.axvspan` | 2017-09-06T12:05:23.000029 | Jon | pythondev_help_Jon_2017-09-06T12:05:23.000029 | 1,504,699,523.000029 | 92,257 |
pythondev | help | Hello everyone! I am building a desktop application that will be uploading images to amazon S3 using `boto3`. However I haven’t figured out the best way to store the credentials to access the bucket.
I have created a IAM User with only the PutObject policy, but how can I request the credentials for this user without having to store it in a file or hardcode it? Any ideas? | 2017-09-06T12:07:53.000593 | Cecelia | pythondev_help_Cecelia_2017-09-06T12:07:53.000593 | 1,504,699,673.000593 | 92,258 |
pythondev | help | <@Cecelia> Is the app being distributed to end users, or just for yourself? | 2017-09-06T12:10:42.000169 | Beula | pythondev_help_Beula_2017-09-06T12:10:42.000169 | 1,504,699,842.000169 | 92,259 |
pythondev | help | You can store them in env variables in os as far as i remember | 2017-09-06T12:10:50.000135 | Liberty | pythondev_help_Liberty_2017-09-06T12:10:50.000135 | 1,504,699,850.000135 | 92,260 |
pythondev | help | It is being distributed | 2017-09-06T12:11:00.000565 | Cecelia | pythondev_help_Cecelia_2017-09-06T12:11:00.000565 | 1,504,699,860.000565 | 92,261 |
pythondev | help | The problem with distributing them is that then any user can generate signed requests for uploads to the bucket (if your policy is set well, that may be okay - but I don't think the policy allows you to control sizes). But most cases of boto3 usage I see are webdev (vs desktop) - so I am not sure on the "best practice" other than to maybe have a web-service that generates the presigned urls | 2017-09-06T12:12:37.000417 | Beula | pythondev_help_Beula_2017-09-06T12:12:37.000417 | 1,504,699,957.000417 | 92,262 |
pythondev | help | that would probably be best, IMO | 2017-09-06T12:16:17.000168 | Meg | pythondev_help_Meg_2017-09-06T12:16:17.000168 | 1,504,700,177.000168 | 92,263 |
pythondev | help | have the web service as a middleman | 2017-09-06T12:16:54.000219 | Meg | pythondev_help_Meg_2017-09-06T12:16:54.000219 | 1,504,700,214.000219 | 92,264 |
pythondev | help | upload the file(s) to the server, which then would put directly to S3 | 2017-09-06T12:17:10.000417 | Meg | pythondev_help_Meg_2017-09-06T12:17:10.000417 | 1,504,700,230.000417 | 92,265 |
pythondev | help | Would then only asking the server for a session token be sufficient? | 2017-09-06T12:18:07.000124 | Cecelia | pythondev_help_Cecelia_2017-09-06T12:18:07.000124 | 1,504,700,287.000124 | 92,266 |
pythondev | help | The files are specific and generated, being around 100KB, so size won’t be a problem. | 2017-09-06T12:18:34.000451 | Cecelia | pythondev_help_Cecelia_2017-09-06T12:18:34.000451 | 1,504,700,314.000451 | 92,267 |
pythondev | help | This way I can store the credentials in env variables | 2017-09-06T12:19:03.000532 | Cecelia | pythondev_help_Cecelia_2017-09-06T12:19:03.000532 | 1,504,700,343.000532 | 92,268 |
pythondev | help | I don't see how asking for a session token is different than the pre-signed URL, which would be the route I would go (that way the load is between the client computer and AWS, not your web service) | 2017-09-06T12:39:47.000300 | Beula | pythondev_help_Beula_2017-09-06T12:39:47.000300 | 1,504,701,587.0003 | 92,269 |
pythondev | help | I'm plotting data like this:
```
lines1 = ax1.plot(x, df[[col for col in df.columns if 'level' in col]])
ax2 = ax1.twinx()
lines2 = ax2.plot(x, df[[col for col in df.columns if 'status' in col]])
```
I added a legend like this:
```
plt.legend(lines1, ('a','b'), loc='best')
```
Gives | 2017-09-06T13:00:58.000604 | Jon | pythondev_help_Jon_2017-09-06T13:00:58.000604 | 1,504,702,858.000604 | 92,270 |
pythondev | help | How do I add lines2's legend entries into that same legend box? | 2017-09-06T13:01:42.000783 | Jon | pythondev_help_Jon_2017-09-06T13:01:42.000783 | 1,504,702,902.000783 | 92,271 |
pythondev | help | <@Beula> got it! thanks for the advice! | 2017-09-06T13:14:46.000697 | Cecelia | pythondev_help_Cecelia_2017-09-06T13:14:46.000697 | 1,504,703,686.000697 | 92,272 |
pythondev | help | Hello everybody, I am going to start a new project soon and I've decided to settle for Django. However, I have absolutely no experience in Python, Django & any kind of hosting beside fully-managed VPS or shared. Now, since the beginning of my "learning" journey, I've stumbled across many tutorials that were for Linux & I also read about some Python libraries that were not compatible with Windows at all... So I would like to know if I should install a Linux partition to start my project (which would add another layer of complexity since I haven't touched Linux since ~10 years). Would it be worth it to take the time to install Ubuntu, learn how it works and how to set up the hosting or would I be perfectly fine just staying on Windows with PyCharm (here though, I am quite scared about the moment where we will have to deploy in production xD) Thanks! | 2017-09-06T17:15:00.000623 | Forrest | pythondev_help_Forrest_2017-09-06T17:15:00.000623 | 1,504,718,100.000623 | 92,273 |
pythondev | help | You’ll definitely want to get a bit of a sense for how it’ll be hosted and learn some of the ins and outs of it. | 2017-09-06T17:52:32.000275 | Junita | pythondev_help_Junita_2017-09-06T17:52:32.000275 | 1,504,720,352.000275 | 92,274 |
pythondev | help | But I don’t know that you need to go as far as installing Ubuntu - I’d recommend Docker. It has its own learning curve (although personally I don’t find it to be that steep) | 2017-09-06T17:53:04.000430 | Junita | pythondev_help_Junita_2017-09-06T17:53:04.000430 | 1,504,720,384.00043 | 92,275 |
pythondev | help | But it’ll allow you to work in Windows, but run the application in the same Linux environment it will run in on the server | 2017-09-06T17:53:38.000061 | Junita | pythondev_help_Junita_2017-09-06T17:53:38.000061 | 1,504,720,418.000061 | 92,276 |
pythondev | help | So you would recommend Docker and not Vagrant? | 2017-09-06T17:53:49.000246 | Forrest | pythondev_help_Forrest_2017-09-06T17:53:49.000246 | 1,504,720,429.000246 | 92,277 |
pythondev | help | and it allows you to pull in things easily like Postgres or Redis | 2017-09-06T17:53:53.000331 | Junita | pythondev_help_Junita_2017-09-06T17:53:53.000331 | 1,504,720,433.000331 | 92,278 |
pythondev | help | definitely | 2017-09-06T17:54:08.000387 | Junita | pythondev_help_Junita_2017-09-06T17:54:08.000387 | 1,504,720,448.000387 | 92,279 |
pythondev | help | if you were experienced with Linux and this was going to be something else to pile on then I might say it’s not worth it | 2017-09-06T17:54:31.000305 | Junita | pythondev_help_Junita_2017-09-06T17:54:31.000305 | 1,504,720,471.000305 | 92,280 |
pythondev | help | lol ok, I don't know anything about these tools, but I'd like to not waste my time learning something useless haha | 2017-09-06T17:54:35.000165 | Forrest | pythondev_help_Forrest_2017-09-06T17:54:35.000165 | 1,504,720,475.000165 | 92,281 |
pythondev | help | But you’ll need to learn how it’s going to be hosted, and in my opinion investing the time learning docker rather than running linux and how to put all the rest of it together that way will take you a lot further | 2017-09-06T17:55:12.000288 | Junita | pythondev_help_Junita_2017-09-06T17:55:12.000288 | 1,504,720,512.000288 | 92,282 |
pythondev | help | cool | 2017-09-06T17:55:30.000256 | Forrest | pythondev_help_Forrest_2017-09-06T17:55:30.000256 | 1,504,720,530.000256 | 92,283 |
pythondev | help | there are plenty of docker lovers here and in <#C22DMH61M|devops> too, so if you get stuck and need help, just ask | 2017-09-06T17:55:56.000079 | Junita | pythondev_help_Junita_2017-09-06T17:55:56.000079 | 1,504,720,556.000079 | 92,284 |
pythondev | help | do you know if hosts can usually help with this? | 2017-09-06T17:56:01.000108 | Forrest | pythondev_help_Forrest_2017-09-06T17:56:01.000108 | 1,504,720,561.000108 | 92,285 |
pythondev | help | it's free? | 2017-09-06T17:56:28.000483 | Forrest | pythondev_help_Forrest_2017-09-06T17:56:28.000483 | 1,504,720,588.000483 | 92,286 |
pythondev | help | Docker itself is free (the community edition at least, but that’s all you need) | 2017-09-06T17:57:07.000026 | Junita | pythondev_help_Junita_2017-09-06T17:57:07.000026 | 1,504,720,627.000026 | 92,287 |
pythondev | help | Hosting it of course will require you to pay somebody, but docker has some nice tools to get you running with that on AWS or other cloud providers | 2017-09-06T17:57:34.000053 | Junita | pythondev_help_Junita_2017-09-06T17:57:34.000053 | 1,504,720,654.000053 | 92,288 |
pythondev | help | We're on a VPS | 2017-09-06T17:58:09.000061 | Forrest | pythondev_help_Forrest_2017-09-06T17:58:09.000061 | 1,504,720,689.000061 | 92,289 |
pythondev | help | Are you tied to this VPS? | 2017-09-06T17:59:30.000271 | Junita | pythondev_help_Junita_2017-09-06T17:59:30.000271 | 1,504,720,770.000271 | 92,290 |
pythondev | help | Hmmm, I wouldn't say so, but to start the project we'll be using it since my friend is already paying it for his (small) WP site | 2017-09-06T18:00:12.000236 | Forrest | pythondev_help_Forrest_2017-09-06T18:00:12.000236 | 1,504,720,812.000236 | 92,291 |
pythondev | help | If you sign up for AWS you get a decent amount of free tier credit. | 2017-09-06T18:00:45.000325 | Junita | pythondev_help_Junita_2017-09-06T18:00:45.000325 | 1,504,720,845.000325 | 92,292 |
pythondev | help | I’d recommend against sharing the hosting with other things, especially WordPress. | 2017-09-06T18:01:03.000040 | Junita | pythondev_help_Junita_2017-09-06T18:01:03.000040 | 1,504,720,863.00004 | 92,293 |
pythondev | help | For security? | 2017-09-06T18:01:39.000358 | Forrest | pythondev_help_Forrest_2017-09-06T18:01:39.000358 | 1,504,720,899.000358 | 92,294 |
pythondev | help | yeah security, ease of management, etc. | 2017-09-06T18:02:18.000450 | Junita | pythondev_help_Junita_2017-09-06T18:02:18.000450 | 1,504,720,938.00045 | 92,295 |
pythondev | help | The issue I ran into when I was checking hosts like Heroku, AWS was that it seems like people ends up paying a ton... So I checked DO, which looked nice but it's not managed. After, I found WebFaction and my friend already had a managed VPS on HostWinds so we thought it would be a good start lol | 2017-09-06T18:03:05.000137 | Forrest | pythondev_help_Forrest_2017-09-06T18:03:05.000137 | 1,504,720,985.000137 | 92,296 |
pythondev | help | A lot can be done on Heroku on the free tier actually | 2017-09-06T18:03:57.000297 | Junita | pythondev_help_Junita_2017-09-06T18:03:57.000297 | 1,504,721,037.000297 | 92,297 |
pythondev | help | And I mean yeah you can end up paying a ton on AWS as you scale up, but honestly at the kind of scale that becomes an issue it’s not really feasible to be doing this sort of stuff on managed VPS boxes | 2017-09-06T18:04:58.000305 | Junita | pythondev_help_Junita_2017-09-06T18:04:58.000305 | 1,504,721,098.000305 | 92,298 |
pythondev | help | Oh | 2017-09-06T18:05:13.000181 | Forrest | pythondev_help_Forrest_2017-09-06T18:05:13.000181 | 1,504,721,113.000181 | 92,299 |
pythondev | help | So it might be possible for me to make the project on free Heroku to showcase it, then move it or scale up | 2017-09-06T18:05:45.000222 | Forrest | pythondev_help_Forrest_2017-09-06T18:05:45.000222 | 1,504,721,145.000222 | 92,300 |
pythondev | help | yup | 2017-09-06T18:05:52.000060 | Junita | pythondev_help_Junita_2017-09-06T18:05:52.000060 | 1,504,721,152.00006 | 92,301 |
pythondev | help | I will look into this | 2017-09-06T18:06:11.000423 | Forrest | pythondev_help_Forrest_2017-09-06T18:06:11.000423 | 1,504,721,171.000423 | 92,302 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.