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
Even though I dont have anything to do with this question, could you explain the logic behind the answer? The formatting sentence seem so random
2017-07-22T16:42:52.072651
Claudia
pythondev_help_Claudia_2017-07-22T16:42:52.072651
1,500,741,772.072651
86,903
pythondev
help
`sed -r` is an extended mode, so that `+` is enabled (matches one or more characters, unlike `*` that matches zero or more)
2017-07-22T16:44:00.077574
Suellen
pythondev_help_Suellen_2017-07-22T16:44:00.077574
1,500,741,840.077574
86,904
pythondev
help
`s///g` or `s|||g` or any symbol instead of `|` is how a basic replacing expression is constructed. The first field is what to match, the second is what to replace it with.
2017-07-22T16:44:58.081641
Suellen
pythondev_help_Suellen_2017-07-22T16:44:58.081641
1,500,741,898.081641
86,905
pythondev
help
`(.+)/[^/]+/([^/]+)/.+` `(.+)/` matches anything from the start until the first `/` and puts found characters in the first group (`\1`)
2017-07-22T16:45:54.085533
Suellen
pythondev_help_Suellen_2017-07-22T16:45:54.085533
1,500,741,954.085533
86,906
pythondev
help
`[^/]+/` matches anything that is not a slash, and then a slash (`vag/` or `home/`)
2017-07-22T16:46:45.089260
Suellen
pythondev_help_Suellen_2017-07-22T16:46:45.089260
1,500,742,005.08926
86,907
pythondev
help
`([^/]+)/` matches the same thing, but puts the stuff found in-between slashes in the second group `\2`
2017-07-22T16:47:20.091793
Suellen
pythondev_help_Suellen_2017-07-22T16:47:20.091793
1,500,742,040.091793
86,908
pythondev
help
and then `.+` matches whatever comes next to the end of line
2017-07-22T16:47:44.093440
Suellen
pythondev_help_Suellen_2017-07-22T16:47:44.093440
1,500,742,064.09344
86,909
pythondev
help
and the second field tells sed to replace the line with `\1\2`, so our saved groups side-by-side: the first group was everything before the first slash, and the second group was the stuff between 2nd and 3rd slashes
2017-07-22T16:48:38.097378
Suellen
pythondev_help_Suellen_2017-07-22T16:48:38.097378
1,500,742,118.097378
86,910
pythondev
help
Ah ok, thanks a lot for the explanation!
2017-07-22T16:58:41.139799
Claudia
pythondev_help_Claudia_2017-07-22T16:58:41.139799
1,500,742,721.139799
86,911
pythondev
help
I just whizzed through some boto3 S3 scripts. Now I’m working on a boto3 route53 script, and I can’t for the life of me figure out what’s going wrong. On top of that I’m not finding much good documentation. Can someone point me to some good example scripts or documentation? I just want to start by figuring out how to get it to list my Zones, and I think from there it will click.
2017-07-23T03:23:10.214263
Pamella
pythondev_help_Pamella_2017-07-23T03:23:10.214263
1,500,780,190.214263
86,912
pythondev
help
<@Pamella> s3 works globally. It doesn't even have the concept of regions, not mentioning availability zones.
2017-07-23T03:57:14.314036
Collette
pythondev_help_Collette_2017-07-23T03:57:14.314036
1,500,782,234.314036
86,913
pythondev
help
What exactly you're trying to do and what exactly fails?
2017-07-23T03:57:24.314526
Collette
pythondev_help_Collette_2017-07-23T03:57:24.314526
1,500,782,244.314526
86,914
pythondev
help
<@Jessie> This little program does that: ``` inputdata = """ &gt; 1234 alphabet /vag/one/arun &gt; 1454 bigdata /home/two/ogra &gt; 5684 apple /vinay/three/dire """ for line in inputdata.splitlines(): parts = line.strip().rsplit(" ", 1) if len(parts) &lt; 2: continue subparts = parts[1].split("/") print parts[0] + " " + subparts[2] # Output is: &gt; 1234 alphabet one &gt; 1454 bigdata two &gt; 5684 apple three ```
2017-07-23T04:00:21.324092
Ruben
pythondev_help_Ruben_2017-07-23T04:00:21.324092
1,500,782,421.324092
86,915
pythondev
help
<@Suellen> <@Ruben> thanks guys
2017-07-23T04:02:52.333256
Jessie
pythondev_help_Jessie_2017-07-23T04:02:52.333256
1,500,782,572.333256
86,916
pythondev
help
But wait! I can squeeze in a regular expression: :stuck_out_tongue_winking_eye: ``` import re inputdata = """ &gt; 1234 alphabet /vag/one/arun &gt; 1454 bigdata /home/two/ogra &gt; 5684 apple /vinay/three/dire """ transform = re.compile("(.*)/.*/(.*)/.*") for line in inputdata.splitlines(): m = transform.match(line) if not m: continue print "".join(m.groups()) ```
2017-07-23T04:07:11.347182
Ruben
pythondev_help_Ruben_2017-07-23T04:07:11.347182
1,500,782,831.347182
86,917
pythondev
help
``` echo '&gt; 1234 alphabet /vag/one/arun &gt; 1454 bigdata /home/two/ogra &gt; 5684 apple /vinay/three/dire' | awk '{ split($4, var, /\//); $4=""; print $0 var[3];}' &gt; 1234 alphabet one &gt; 1454 bigdata two &gt; 5684 apple three ```
2017-07-23T04:08:24.351262
Collette
pythondev_help_Collette_2017-07-23T04:08:24.351262
1,500,782,904.351262
86,918
pythondev
help
Do not underestimate `awk`!
2017-07-23T04:09:06.353288
Collette
pythondev_help_Collette_2017-07-23T04:09:06.353288
1,500,782,946.353288
86,919
pythondev
help
awk is cool
2017-07-23T04:09:12.353556
Suellen
pythondev_help_Suellen_2017-07-23T04:09:12.353556
1,500,782,952.353556
86,920
pythondev
help
And its much more readable than `sed` version :wink:
2017-07-23T04:09:28.354448
Collette
pythondev_help_Collette_2017-07-23T04:09:28.354448
1,500,782,968.354448
86,921
pythondev
help
Yeah, but if you want to build this into an already existing Python program, a few lines of code will do.
2017-07-23T04:09:51.355459
Ruben
pythondev_help_Ruben_2017-07-23T04:09:51.355459
1,500,782,991.355459
86,922
pythondev
help
Oh wait OP mentioned two text files on his file system... :stuck_out_tongue_winking_eye:
2017-07-23T04:10:16.356810
Ruben
pythondev_help_Ruben_2017-07-23T04:10:16.356810
1,500,783,016.35681
86,923
pythondev
help
<@Collette> I figured it out … I was doing everything right, but there was a missing _ in main … can’t believe I missed that and can’t believe it didn’t give me an error on that
2017-07-23T04:16:29.375094
Pamella
pythondev_help_Pamella_2017-07-23T04:16:29.375094
1,500,783,389.375094
86,924
pythondev
help
"Missing _"?
2017-07-23T04:17:03.376811
Collette
pythondev_help_Collette_2017-07-23T04:17:03.376811
1,500,783,423.376811
86,925
pythondev
help
I’m just building up a set up scripts to do everything in AWS as practice, as well as to help create a more automated envirnment for my partner (they do dev, I do ops)
2017-07-23T04:17:13.377344
Pamella
pythondev_help_Pamella_2017-07-23T04:17:13.377344
1,500,783,433.377344
86,926
pythondev
help
as in ``if __name__ == ‘__main__‘:``` was ```if __name__ == 'main':``` very embarassing error
2017-07-23T04:18:04.379869
Pamella
pythondev_help_Pamella_2017-07-23T04:18:04.379869
1,500,783,484.379869
86,927
pythondev
help
<@Pamella> what kind of scripts? what do they do?
2017-07-23T04:19:34.384246
Collette
pythondev_help_Collette_2017-07-23T04:19:34.384246
1,500,783,574.384246
86,928
pythondev
help
i just started tonight, the first one creates an S3 bucket, the second sets an S3 bucket to do static web hosting. Now I’m paying with route53. Just got it to spit out all my hosted records. Next step is to get it to set DNS for the S3 bucket website hosting, then put it all together. That’s just the first step … but pretty much trying to do everything I can.
2017-07-23T04:22:04.391807
Pamella
pythondev_help_Pamella_2017-07-23T04:22:04.391807
1,500,783,724.391807
86,929
pythondev
help
Learn more AWS/Kubernettes/Terraform and get a better workflow on AWS or my partner’s web dev
2017-07-23T04:22:26.392813
Pamella
pythondev_help_Pamella_2017-07-23T04:22:26.392813
1,500,783,746.392813
86,930
pythondev
help
So this is table
2017-07-23T06:05:40.712729
Jenice
pythondev_help_Jenice_2017-07-23T06:05:40.712729
1,500,789,940.712729
86,931
pythondev
help
But what do you call this?
2017-07-23T06:05:52.713335
Jenice
pythondev_help_Jenice_2017-07-23T06:05:52.713335
1,500,789,952.713335
86,932
pythondev
help
The second one wouldn't be called a table too would it? It doesn't contain multiple lines of info, only direct information matching a description of the info
2017-07-23T06:07:39.719421
Jenice
pythondev_help_Jenice_2017-07-23T06:07:39.719421
1,500,790,059.719421
86,933
pythondev
help
I just want to know how to differentiate between the two when describing it to someone else.
2017-07-23T06:08:01.720529
Jenice
pythondev_help_Jenice_2017-07-23T06:08:01.720529
1,500,790,081.720529
86,934
pythondev
help
an entry? a row?
2017-07-23T06:09:12.724153
Suellen
pythondev_help_Suellen_2017-07-23T06:09:12.724153
1,500,790,152.724153
86,935
pythondev
help
Well it's a list of entries
2017-07-23T06:11:29.731477
Jenice
pythondev_help_Jenice_2017-07-23T06:11:29.731477
1,500,790,289.731477
86,936
pythondev
help
What would you call a list of entries
2017-07-23T06:11:39.731989
Jenice
pythondev_help_Jenice_2017-07-23T06:11:39.731989
1,500,790,299.731989
86,937
pythondev
help
a list of entries?
2017-07-23T06:17:26.750342
Meg
pythondev_help_Meg_2017-07-23T06:17:26.750342
1,500,790,646.750342
86,938
pythondev
help
broken up into sections
2017-07-23T06:17:31.750556
Meg
pythondev_help_Meg_2017-07-23T06:17:31.750556
1,500,790,651.750556
86,939
pythondev
help
via nesting and other block syntax rules
2017-07-23T06:17:45.751305
Meg
pythondev_help_Meg_2017-07-23T06:17:45.751305
1,500,790,665.751305
86,940
pythondev
help
your second example would work with json, with some property name changes
2017-07-23T06:18:15.752881
Meg
pythondev_help_Meg_2017-07-23T06:18:15.752881
1,500,790,695.752881
86,941
pythondev
help
<@Jenice> I'd call it a list of attributes and their values.
2017-07-23T06:20:58.761875
Ruben
pythondev_help_Ruben_2017-07-23T06:20:58.761875
1,500,790,858.761875
86,942
pythondev
help
Does anyone here have any experience using prompt_toolkit library? <https://github.com/jonathanslenders/python-prompt-toolkit>
2017-07-23T16:34:10.427524
Claudia
pythondev_help_Claudia_2017-07-23T16:34:10.427524
1,500,827,650.427524
86,943
pythondev
help
<@Claudia> Looks interesting. Why are you looking for someone with experience with this module?
2017-07-23T16:55:52.529525
Ruben
pythondev_help_Ruben_2017-07-23T16:55:52.529525
1,500,828,952.529525
86,944
pythondev
help
I would love to see what others have built using that library just for inspiration <@Ruben>. Found it while exploring "Haxor-News" source code on github but that source code is a bit too complicated for me to understand since I dont have several years of experience in Python.
2017-07-23T17:05:46.578098
Claudia
pythondev_help_Claudia_2017-07-23T17:05:46.578098
1,500,829,546.578098
86,945
pythondev
help
I am currently building myself a cli password manager just to learn more python and I would love to utilize prompt_toolkit for this project.
2017-07-23T17:07:49.588130
Claudia
pythondev_help_Claudia_2017-07-23T17:07:49.588130
1,500,829,669.58813
86,946
pythondev
help
I'm not sure why I'm getting this error. Do I need to manually import geoalchemy2 in the auto-generated migration script?
2017-07-23T20:54:31.796486
Thomasina
pythondev_help_Thomasina_2017-07-23T20:54:31.796486
1,500,843,271.796486
86,947
pythondev
help
<@Thomasina> yes
2017-07-23T21:16:50.978512
Signe
pythondev_help_Signe_2017-07-23T21:16:50.978512
1,500,844,610.978512
86,948
pythondev
help
<@Signe> Thanks! Did the trick :smile:
2017-07-23T22:17:22.506168
Thomasina
pythondev_help_Thomasina_2017-07-23T22:17:22.506168
1,500,848,242.506168
86,949
pythondev
help
I still can't get PostGIS's `ST_DWithin` to work. I followed this tutorial <https://www.compose.com/articles/geofile-everything-in-the-radius-with-postgis/> step by step and my query still returns no results. I don't see any difference between what I'm doing and what's going on in the tutorial...
2017-07-23T22:18:05.512724
Thomasina
pythondev_help_Thomasina_2017-07-23T22:18:05.512724
1,500,848,285.512724
86,950
pythondev
help
Hey guys. Just posted this: <https://github.com/khdc-me/citi-bikes/tree/master/01-num_bikes_to_purchase> and was wondering if you guys had any suggestions on how to speed up this part of it ``` def get_num_mf(fn, kt): """ Get gender of riders who are between the ages of 50 (inclusive) and 90 (exclusive), and whose 'tripduration' is longer than 60 seconds. - Don't trust that data provider has eliminated all &lt;1min rides. return string """ now = datetime.datetime.now() with open(DATA_FOLDER + fn) as csvfile: reader = csv.DictReader(csvfile) if kt: csv_keys = ['Trip Duration', 'Birth Year', 'Gender'] else: csv_keys = ['tripduration', 'birth year', 'gender'] num_m = 0 num_f = 0 for row in reader: if (row[csv_keys[0]] and row[csv_keys[0]].isnumeric() and int(row[csv_keys[0]]) &gt; 60 and row[csv_keys[1]] and row[csv_keys[1]].isnumeric() and now.year - float(row[csv_keys[1]]) &gt;= 50 and now.year - float(row[csv_keys[1]]) &lt; 90 and row[csv_keys[2]] and row[csv_keys[2]].isnumeric() and (int(row[csv_keys[2]]) == 1 or int(row[csv_keys[2]]) == 2)): # from citi bike web site: Gender (Zero=unknown; 1=male; 2=female) if int(row[csv_keys[2]]) == 1: num_m += 1 else: num_f += 1 return num_m, num_f ```
2017-07-24T03:17:09.471987
Deedee
pythondev_help_Deedee_2017-07-24T03:17:09.471987
1,500,866,229.471987
86,951
pythondev
help
csv file that it looks through has between 500K and 600K records. There are 12 files, roughly same size that it gets fed one at a time. Takes anywhere from 5 to 7 seconds per file.
2017-07-24T03:19:43.513830
Deedee
pythondev_help_Deedee_2017-07-24T03:19:43.513830
1,500,866,383.51383
86,952
pythondev
help
<@Deedee> try this one: ``` for row in reader: try: duration, birth_year, gender = [int(row[key]) for key in csv_keys] except ValueError: continue if duration &gt; 60 and 50 &lt;= now.year - birth_year &lt; 90: if gender == 1: num_m += 1 elif gender == 2: num_f += 1 ```
2017-07-24T03:26:29.625593
Collette
pythondev_help_Collette_2017-07-24T03:26:29.625593
1,500,866,789.625593
86,953
pythondev
help
So simple.. so elegant.
2017-07-24T03:30:52.700260
Deedee
pythondev_help_Deedee_2017-07-24T03:30:52.700260
1,500,867,052.70026
86,954
pythondev
help
Gonna give it a shot.
2017-07-24T03:30:56.701479
Deedee
pythondev_help_Deedee_2017-07-24T03:30:56.701479
1,500,867,056.701479
86,955
pythondev
help
<@Collette> :taco:
2017-07-24T03:35:34.782161
Deedee
pythondev_help_Deedee_2017-07-24T03:35:34.782161
1,500,867,334.782161
86,956
pythondev
help
Looks really nice and condensed... Runs at about the same speed though. But am definitely subbing this into my repo. :smile:
2017-07-24T03:36:12.793808
Deedee
pythondev_help_Deedee_2017-07-24T03:36:12.793808
1,500,867,372.793808
86,957
pythondev
help
<@Deedee> then it's time to <https://docs.python.org/3/library/profile.html> your code
2017-07-24T03:55:09.142696
Collette
pythondev_help_Collette_2017-07-24T03:55:09.142696
1,500,868,509.142696
86,958
pythondev
help
Good morning. I am working with Socket for the first time. I have hit on an error and it is so generic google is not very useful this morning. I was hoping to get some direction I get error 54 connection reset. I am going to supply the full script as a snip right after this message. This is a super basic thing to download some RFC as a test of learning Sockets a bit.
2017-07-24T09:26:03.129703
Ressie
pythondev_help_Ressie_2017-07-24T09:26:03.129703
1,500,888,363.129703
86,959
pythondev
help
"socket" is lower-case, by the way... it's not a package, it's just a low-level networking concept. Error 54 / "connection reset" is just an obscure way of the operating system telling you that the connection was closed.
2017-07-24T09:27:25.173078
Gabriele
pythondev_help_Gabriele_2017-07-24T09:27:25.173078
1,500,888,445.173078
86,960
pythondev
help
It is usually helpful to know which line the error came from (it'll be in the traceback). It also looks like your HTTP request is missing a blank line after the header, but maybe I've misremembered that part
2017-07-24T09:29:58.253576
Gabriele
pythondev_help_Gabriele_2017-07-24T09:29:58.253576
1,500,888,598.253576
86,961
pythondev
help
True
2017-07-24T09:30:15.263432
Suellen
pythondev_help_Suellen_2017-07-24T09:30:15.263432
1,500,888,615.263432
86,962
pythondev
help
<@Ressie> any reason for sockets over just making HTTP requests?
2017-07-24T09:40:03.583055
Patty
pythondev_help_Patty_2017-07-24T09:40:03.583055
1,500,889,203.583055
86,963
pythondev
help
Additionally, that site is served over HTTPS. so you’ll need to use SSL to make the requests then via sockets
2017-07-24T09:42:28.663283
Patty
pythondev_help_Patty_2017-07-24T09:42:28.663283
1,500,889,348.663283
86,964
pythondev
help
<@Patty> simple exercise. I would normaly work up the stack. I am just trying to get a deep understanding of said lower stacks.
2017-07-24T09:48:08.854373
Ressie
pythondev_help_Ressie_2017-07-24T09:48:08.854373
1,500,889,688.854373
86,965
pythondev
help
okay, well you’ll have to use SSL since <http://ietf.org|ietf.org> forces https. there may be some better exercises for playing with sockets, like some real-time communication for instance
2017-07-24T09:49:40.907482
Patty
pythondev_help_Patty_2017-07-24T09:49:40.907482
1,500,889,780.907482
86,966
pythondev
help
if you have a good excersie shoot it my way
2017-07-24T09:50:06.921689
Ressie
pythondev_help_Ressie_2017-07-24T09:50:06.921689
1,500,889,806.921689
86,967
pythondev
help
maybe if you can run an echo server locally then you can test connecting to that
2017-07-24T09:50:25.932699
Gabriele
pythondev_help_Gabriele_2017-07-24T09:50:25.932699
1,500,889,825.932699
86,968
pythondev
help
(e.g. <https://gist.github.com/solusipse/6419144> looks okay - and you can modify that code too)
2017-07-24T09:50:48.945992
Gabriele
pythondev_help_Gabriele_2017-07-24T09:50:48.945992
1,500,889,848.945992
86,969
pythondev
help
thanks i will check that out
2017-07-24T09:51:17.962425
Ressie
pythondev_help_Ressie_2017-07-24T09:51:17.962425
1,500,889,877.962425
86,970
pythondev
help
sorry, dont have anything on hand
2017-07-24T09:51:21.965115
Patty
pythondev_help_Patty_2017-07-24T09:51:21.965115
1,500,889,881.965115
86,971
pythondev
help
I am working with the networking python book
2017-07-24T09:51:23.966503
Ressie
pythondev_help_Ressie_2017-07-24T09:51:23.966503
1,500,889,883.966503
86,972
pythondev
help
see i took for granted what URLIB was doing for me
2017-07-24T09:52:07.991568
Ressie
pythondev_help_Ressie_2017-07-24T09:52:07.991568
1,500,889,927.991568
86,973
pythondev
help
it was even handling SSL
2017-07-24T09:52:13.995030
Ressie
pythondev_help_Ressie_2017-07-24T09:52:13.995030
1,500,889,933.99503
86,974
pythondev
help
`requests` does a lot for you as well
2017-07-24T09:53:24.036613
Patty
pythondev_help_Patty_2017-07-24T09:53:24.036613
1,500,890,004.036613
86,975
pythondev
help
indeed i was just looking behind the curtain a bit this morning
2017-07-24T09:54:12.064457
Ressie
pythondev_help_Ressie_2017-07-24T09:54:12.064457
1,500,890,052.064457
86,976
pythondev
help
<@Patty> :taco:
2017-07-24T09:57:26.180513
Ressie
pythondev_help_Ressie_2017-07-24T09:57:26.180513
1,500,890,246.180513
86,977
pythondev
help
hey guys I’m using flask + bootstrap template adding simple sticky footer with the block of code below - but it doesn’t stick to the bottom of the page {% block footer %} &lt;footer class=“footer”&gt; &lt;div class=“container”&gt; &lt;p class=“text-muted”&gt;Place sticky footer content here.&lt;/p&gt; &lt;/div&gt; &lt;/footer&gt; {% endblock %} what am i doing wrong? :neutral_face:
2017-07-24T10:00:41.302156
Corrine
pythondev_help_Corrine_2017-07-24T10:00:41.302156
1,500,890,441.302156
86,978
pythondev
help
that's a frontend question
2017-07-24T10:01:14.323270
Suellen
pythondev_help_Suellen_2017-07-24T10:01:14.323270
1,500,890,474.32327
86,979
pythondev
help
yeap <@Suellen>
2017-07-24T10:01:38.339266
Corrine
pythondev_help_Corrine_2017-07-24T10:01:38.339266
1,500,890,498.339266
86,980
pythondev
help
when you inspect an element in your browser, what rules do you see applied?
2017-07-24T10:01:59.352015
Suellen
pythondev_help_Suellen_2017-07-24T10:01:59.352015
1,500,890,519.352015
86,981
pythondev
help
in css: `.footer {position: absolute; bottom: 0}` - probably the most important part
2017-07-24T10:03:00.390577
Suellen
pythondev_help_Suellen_2017-07-24T10:03:00.390577
1,500,890,580.390577
86,982
pythondev
help
checking
2017-07-24T10:04:10.433651
Corrine
pythondev_help_Corrine_2017-07-24T10:04:10.433651
1,500,890,650.433651
86,983
pythondev
help
strange
2017-07-24T10:06:09.506601
Corrine
pythondev_help_Corrine_2017-07-24T10:06:09.506601
1,500,890,769.506601
86,984
pythondev
help
what is?
2017-07-24T10:06:33.521833
Suellen
pythondev_help_Suellen_2017-07-24T10:06:33.521833
1,500,890,793.521833
86,985
pythondev
help
but still nothing
2017-07-24T10:06:39.524898
Corrine
pythondev_help_Corrine_2017-07-24T10:06:39.524898
1,500,890,799.524898
86,986
pythondev
help
???
2017-07-24T10:06:54.534015
Suellen
pythondev_help_Suellen_2017-07-24T10:06:54.534015
1,500,890,814.534015
86,987
pythondev
help
what do you see there?
2017-07-24T10:07:06.541561
Suellen
pythondev_help_Suellen_2017-07-24T10:07:06.541561
1,500,890,826.541561
86,988
pythondev
help
does .footer have these two properties?
2017-07-24T10:07:24.552148
Suellen
pythondev_help_Suellen_2017-07-24T10:07:24.552148
1,500,890,844.552148
86,989
pythondev
help
Is this because the html and/or body element doesn't fill the whole viewport?
2017-07-24T10:08:37.598226
Gabriele
pythondev_help_Gabriele_2017-07-24T10:08:37.598226
1,500,890,917.598226
86,990
pythondev
help
should work regardless
2017-07-24T10:09:14.619907
Suellen
pythondev_help_Suellen_2017-07-24T10:09:14.619907
1,500,890,954.619907
86,991
pythondev
help
There's an example on Bootstrap's homepage: <https://getbootstrap.com/examples/sticky-footer/>
2017-07-24T10:09:29.629090
Suellen
pythondev_help_Suellen_2017-07-24T10:09:29.629090
1,500,890,969.62909
86,992
pythondev
help
all good now! thnx a lot <@Suellen>
2017-07-24T10:10:28.664771
Corrine
pythondev_help_Corrine_2017-07-24T10:10:28.664771
1,500,891,028.664771
86,993
pythondev
help
:slightly_smiling_face:
2017-07-24T10:10:33.667502
Suellen
pythondev_help_Suellen_2017-07-24T10:10:33.667502
1,500,891,033.667502
86,994
pythondev
help
:sparkles:
2017-07-24T10:10:36.669624
Corrine
pythondev_help_Corrine_2017-07-24T10:10:36.669624
1,500,891,036.669624
86,995
pythondev
help
is it possible to automate graphql tests with pytest? i want to send requests and verify changes done in the database
2017-07-24T10:32:17.482982
Kathey
pythondev_help_Kathey_2017-07-24T10:32:17.482982
1,500,892,337.482982
86,996
pythondev
help
Are there any good communities for Tornado? I'm thinking about starting a project in Tornado, and I may have questions :slightly_smiling_face:
2017-07-24T14:03:13.078252
Rolland
pythondev_help_Rolland_2017-07-24T14:03:13.078252
1,500,904,993.078252
86,997
pythondev
help
Just read through that doc twice and I think I understand it less than when I didn't even know about it... At least, I know that I understood it less the second time around, than the 1st. Heading to YouTube to see how to apply it. :slightly_smiling_face: Thanks! I'll be back when I figure this out.
2017-07-24T14:17:45.575576
Deedee
pythondev_help_Deedee_2017-07-24T14:17:45.575576
1,500,905,865.575576
86,998
pythondev
help
given that if statement, is there a way to grab the item which didn't pass the statement
2017-07-24T15:58:02.860130
Myong
pythondev_help_Myong_2017-07-24T15:58:02.860130
1,500,911,882.86013
86,999
pythondev
help
`!` -&gt; `not`
2017-07-24T15:58:23.871994
Beula
pythondev_help_Beula_2017-07-24T15:58:23.871994
1,500,911,903.871994
87,000
pythondev
help
Yeah stuck in c#
2017-07-24T15:58:35.878397
Myong
pythondev_help_Myong_2017-07-24T15:58:35.878397
1,500,911,915.878397
87,001
pythondev
help
happens to me
2017-07-24T15:58:50.885811
Meg
pythondev_help_Meg_2017-07-24T15:58:50.885811
1,500,911,930.885811
87,002