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
not a string in a general sense, so comparison to `'y'` fails
2017-11-27T12:20:05.000524
Suellen
pythondev_help_Suellen_2017-11-27T12:20:05.000524
1,511,785,205.000524
101,303
pythondev
help
try to compare with `b'y'`
2017-11-27T12:20:10.000456
Suellen
pythondev_help_Suellen_2017-11-27T12:20:10.000456
1,511,785,210.000456
101,304
pythondev
help
Ah!
2017-11-27T12:20:54.000369
Sheridan
pythondev_help_Sheridan_2017-11-27T12:20:54.000369
1,511,785,254.000369
101,305
pythondev
help
Success!
2017-11-27T12:20:58.000585
Sheridan
pythondev_help_Sheridan_2017-11-27T12:20:58.000585
1,511,785,258.000585
101,306
pythondev
help
:tada:
2017-11-27T12:21:05.000193
Suellen
pythondev_help_Suellen_2017-11-27T12:21:05.000193
1,511,785,265.000193
101,307
pythondev
help
That actually did come up in an error but I didn't think to check it (well I did but I thought it would cause an error because I thought b was just a regular char outside of ''). Should have checked in retrospect.
2017-11-27T12:22:23.000518
Sheridan
pythondev_help_Sheridan_2017-11-27T12:22:23.000518
1,511,785,343.000518
101,308
pythondev
help
Thank you for the help.
2017-11-27T12:31:22.000632
Sheridan
pythondev_help_Sheridan_2017-11-27T12:31:22.000632
1,511,785,882.000632
101,309
pythondev
help
Guys, need your help. I am trying to find Python library for 3D graphing/plotting. Matplotlib seems to be 2D, any recommendations?
2017-11-27T13:15:21.000299
Roy
pythondev_help_Roy_2017-11-27T13:15:21.000299
1,511,788,521.000299
101,310
pythondev
help
uhm
2017-11-27T13:20:50.000331
Meg
pythondev_help_Meg_2017-11-27T13:20:50.000331
1,511,788,850.000331
101,311
pythondev
help
<https://jakevdp.github.io/PythonDataScienceHandbook/04.12-three-dimensional-plotting.html>
2017-11-27T13:20:51.000032
Meg
pythondev_help_Meg_2017-11-27T13:20:51.000032
1,511,788,851.000032
101,312
pythondev
help
you can do 3d plots with matplotlib
2017-11-27T13:21:01.000413
Meg
pythondev_help_Meg_2017-11-27T13:21:01.000413
1,511,788,861.000413
101,313
pythondev
help
Hi, quick question. I have a python3 script that iterates through the Meraki API but the connection or API isnt very stable and I get these errors… ``` File "/usr/lib/python3.5/http/client.py", line 266, in _read_status raise RemoteDisconnected("Remote end closed connection without" http.client.RemoteDisconnecte...
2017-11-27T13:21:36.000290
Season
pythondev_help_Season_2017-11-27T13:21:36.000290
1,511,788,896.00029
101,314
pythondev
help
<@Roy> <https://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html> more reading
2017-11-27T13:21:53.000314
Meg
pythondev_help_Meg_2017-11-27T13:21:53.000314
1,511,788,913.000314
101,315
pythondev
help
<@Season> correct
2017-11-27T13:22:10.000053
Meg
pythondev_help_Meg_2017-11-27T13:22:10.000053
1,511,788,930.000053
101,316
pythondev
help
import that exception in your script
2017-11-27T13:22:22.000606
Meg
pythondev_help_Meg_2017-11-27T13:22:22.000606
1,511,788,942.000606
101,317
pythondev
help
use that for the except part of try-except
2017-11-27T13:22:36.000258
Meg
pythondev_help_Meg_2017-11-27T13:22:36.000258
1,511,788,956.000258
101,318
pythondev
help
import http.client.RemoteDisconnected?
2017-11-27T13:22:37.000128
Season
pythondev_help_Season_2017-11-27T13:22:37.000128
1,511,788,957.000128
101,319
pythondev
help
no
2017-11-27T13:22:42.000552
Meg
pythondev_help_Meg_2017-11-27T13:22:42.000552
1,511,788,962.000552
101,320
pythondev
help
`from http.client import RemoteDisconnected`
2017-11-27T13:23:38.000184
Meg
pythondev_help_Meg_2017-11-27T13:23:38.000184
1,511,789,018.000184
101,321
pythondev
help
ah…. gotcha
2017-11-27T13:23:50.000242
Season
pythondev_help_Season_2017-11-27T13:23:50.000242
1,511,789,030.000242
101,322
pythondev
help
though, I would suggest you migrate to using requests
2017-11-27T13:23:58.000196
Meg
pythondev_help_Meg_2017-11-27T13:23:58.000196
1,511,789,038.000196
101,323
pythondev
help
its pretty much the defacto lib for making http calls with python
2017-11-27T13:24:17.000525
Meg
pythondev_help_Meg_2017-11-27T13:24:17.000525
1,511,789,057.000525
101,324
pythondev
help
<http://docs.python-requests.org/en/master/>
2017-11-27T13:24:28.000014
Meg
pythondev_help_Meg_2017-11-27T13:24:28.000014
1,511,789,068.000014
101,325
pythondev
help
I thought I was using requests… newbie
2017-11-27T13:25:23.000107
Season
pythondev_help_Season_2017-11-27T13:25:23.000107
1,511,789,123.000107
101,326
pythondev
help
you may be
2017-11-27T13:25:40.000315
Meg
pythondev_help_Meg_2017-11-27T13:25:40.000315
1,511,789,140.000315
101,327
pythondev
help
but from the error snippet you have above, I can’t tell
2017-11-27T13:25:49.000601
Meg
pythondev_help_Meg_2017-11-27T13:25:49.000601
1,511,789,149.000601
101,328
pythondev
help
<@Meg> <https://docs.python.org/3/library/http.html>
2017-11-27T13:26:30.000372
Ciera
pythondev_help_Ciera_2017-11-27T13:26:30.000372
1,511,789,190.000372
101,329
pythondev
help
Example ``` session = requests.session() headers = {'X-Cisco-Meraki-API-Key': API_KEY, 'Content-Type': 'application/json'} try: name = json.loads(session.get('<https://dashboard.meraki.com/api/v0/organizations/>' + ORG_ID, headers=headers).text)['name'] except: sys.exit('Incorrect API key or...
2017-11-27T13:26:30.000383
Season
pythondev_help_Season_2017-11-27T13:26:30.000383
1,511,789,190.000383
101,330
pythondev
help
based on the http name
2017-11-27T13:26:53.000244
Ciera
pythondev_help_Ciera_2017-11-27T13:26:53.000244
1,511,789,213.000244
101,331
pythondev
help
ok, then with that, you’d want to catch a RequestException
2017-11-27T13:26:55.000754
Meg
pythondev_help_Meg_2017-11-27T13:26:55.000754
1,511,789,215.000754
101,332
pythondev
help
but the new example seems to be requests
2017-11-27T13:27:14.000074
Ciera
pythondev_help_Ciera_2017-11-27T13:27:14.000074
1,511,789,234.000074
101,333
pythondev
help
`from requests.exceptions import RequestException`
2017-11-27T13:27:25.000337
Meg
pythondev_help_Meg_2017-11-27T13:27:25.000337
1,511,789,245.000337
101,334
pythondev
help
<@Meg> I don’t know how I missed it. Thank you guys!
2017-11-27T13:34:58.000545
Roy
pythondev_help_Roy_2017-11-27T13:34:58.000545
1,511,789,698.000545
101,335
pythondev
help
My manager just walked up and asked if I can write scripts for windows machines. I told him I havent in many years but I can learn anything… My first though was powershell, and my second was, wait, why not python…. I think its just a matter of moving files around on the network but I don’t have project details yet.. ...
2017-11-27T15:31:46.000073
Season
pythondev_help_Season_2017-11-27T15:31:46.000073
1,511,796,706.000073
101,336
pythondev
help
it depends who is going to run the script
2017-11-27T15:32:23.000472
Ciera
pythondev_help_Ciera_2017-11-27T15:32:23.000472
1,511,796,743.000472
101,337
pythondev
help
python you need to install it so it might be a bit more complex if random users needs to use it
2017-11-27T15:33:03.000576
Ciera
pythondev_help_Ciera_2017-11-27T15:33:03.000576
1,511,796,783.000576
101,338
pythondev
help
Python is not installed by default on Windows, that's one thing
2017-11-27T15:33:07.000094
Mallie
pythondev_help_Mallie_2017-11-27T15:33:07.000094
1,511,796,787.000094
101,339
pythondev
help
I wouldn’t imagine I’d get push back on installing python but I have no issues with learning powershell either.
2017-11-27T15:35:21.000561
Season
pythondev_help_Season_2017-11-27T15:35:21.000561
1,511,796,921.000561
101,340
pythondev
help
I'd recommend PowerShell if you're on a Windows DC, else whatever floats your boat
2017-11-27T15:36:14.000342
Seema
pythondev_help_Seema_2017-11-27T15:36:14.000342
1,511,796,974.000342
101,341
pythondev
help
and if you have the time to learn PowerShell might as well do it ¯\_(ツ)_/¯
2017-11-27T15:37:14.000213
Ciera
pythondev_help_Ciera_2017-11-27T15:37:14.000213
1,511,797,034.000213
101,342
pythondev
help
DC = Domain Controller
2017-11-27T15:38:13.000402
Seema
pythondev_help_Seema_2017-11-27T15:38:13.000402
1,511,797,093.000402
101,343
pythondev
help
yeah active directory is in place here
2017-11-27T15:39:38.000506
Season
pythondev_help_Season_2017-11-27T15:39:38.000506
1,511,797,178.000506
101,344
pythondev
help
I'm going to assert (from past experience) that it's much easier to ask the domain admin to create an account in order to authenticate with AD. Python can connect to the LDAP directory, query, and authenticate though you're asking python to "be" a windows user and depending on how the AD is setup, you/domain admin mig...
2017-11-27T15:42:04.000164
Seema
pythondev_help_Seema_2017-11-27T15:42:04.000164
1,511,797,324.000164
101,345
pythondev
help
and to troubleshoot you'll have to dig through event viewer logs on the server to figure out why you can X but not Y
2017-11-27T15:43:02.000028
Seema
pythondev_help_Seema_2017-11-27T15:43:02.000028
1,511,797,382.000028
101,346
pythondev
help
PowerShell has 20+ years (from mmc console) of getting passed the TGT (more fun Windows trivia). You'll learn a lot trying it with Python though you may or may not want to have a new respect for Windows. YMMV :wink:
2017-11-27T15:44:18.000140
Seema
pythondev_help_Seema_2017-11-27T15:44:18.000140
1,511,797,458.00014
101,347
pythondev
help
If you want to read more about it <https://msdn.microsoft.com/en-us/library/windows/desktop/aa380510(v=vs.85).aspx>
2017-11-27T15:46:41.000052
Seema
pythondev_help_Seema_2017-11-27T15:46:41.000052
1,511,797,601.000052
101,348
pythondev
help
I fully admit I haven't waded into this in 3ish years and might be harder or easier at this point.
2017-11-27T15:47:01.000210
Seema
pythondev_help_Seema_2017-11-27T15:47:01.000210
1,511,797,621.00021
101,349
pythondev
help
lol Powershell it is…
2017-11-27T15:47:43.000568
Season
pythondev_help_Season_2017-11-27T15:47:43.000568
1,511,797,663.000568
101,350
pythondev
help
It's quite mature at this point
2017-11-27T15:48:27.000532
Seema
pythondev_help_Seema_2017-11-27T15:48:27.000532
1,511,797,707.000532
101,351
pythondev
help
you can use python and subprocess to execute powershell scripts
2017-11-27T15:51:19.000007
Johana
pythondev_help_Johana_2017-11-27T15:51:19.000007
1,511,797,879.000007
101,352
pythondev
help
<@Johana> way to square the circle!
2017-11-27T15:51:59.000293
Seema
pythondev_help_Seema_2017-11-27T15:51:59.000293
1,511,797,919.000293
101,353
pythondev
help
that’s what we did to setup employee on-boarding.
2017-11-27T15:53:23.000386
Johana
pythondev_help_Johana_2017-11-27T15:53:23.000386
1,511,798,003.000386
101,354
pythondev
help
if you want to learn powershell, Learn Powershell in a Month Full of Lunches is a good book.
2017-11-27T15:53:43.000416
Johana
pythondev_help_Johana_2017-11-27T15:53:43.000416
1,511,798,023.000416
101,355
pythondev
help
thanks <@Johana> I’ll check it out
2017-11-27T16:07:29.000042
Season
pythondev_help_Season_2017-11-27T16:07:29.000042
1,511,798,849.000042
101,356
pythondev
help
Hey guys! I'm trying to write tests to mock a object in a method like this: ``` def something(): a = method1() b = a.method2() ``` How can I stub `method1` to return a mock object where this mock object has a `method2` defined that returns a value?
2017-11-27T17:20:07.000086
Micheline
pythondev_help_Micheline_2017-11-27T17:20:07.000086
1,511,803,207.000086
101,357
pythondev
help
When you mock method1, you should able to set it on the mocked object like so, ``` mockedMethod1.method2.return_value = 'foo' ```
2017-11-27T17:23:31.000178
Junita
pythondev_help_Junita_2017-11-27T17:23:31.000178
1,511,803,411.000178
101,358
pythondev
help
I'm currently using a patch decorator, the mock object passed into the test method seems to be different than the one used to replace `method1`. I've tried that and it doesn't work.
2017-11-27T17:25:14.000234
Micheline
pythondev_help_Micheline_2017-11-27T17:25:14.000234
1,511,803,514.000234
101,359
pythondev
help
Something like this ``` @patch('method1') def test_something(self, m1): ```
2017-11-27T17:25:55.000265
Micheline
pythondev_help_Micheline_2017-11-27T17:25:55.000265
1,511,803,555.000265
101,360
pythondev
help
oh sorry - try `m1.return_value.method2.return_value`
2017-11-27T17:26:50.000585
Junita
pythondev_help_Junita_2017-11-27T17:26:50.000585
1,511,803,610.000585
101,361
pythondev
help
Oh that worked. Thanks so much!
2017-11-27T17:29:20.000242
Micheline
pythondev_help_Micheline_2017-11-27T17:29:20.000242
1,511,803,760.000242
101,362
pythondev
help
np
2017-11-27T17:29:29.000101
Junita
pythondev_help_Junita_2017-11-27T17:29:29.000101
1,511,803,769.000101
101,363
pythondev
help
does anyone know a free vpn that i can use so that my friends can access my cloud so that i can stop port forwarding it
2017-11-27T19:04:31.000025
Lilliam
pythondev_help_Lilliam_2017-11-27T19:04:31.000025
1,511,809,471.000025
101,364
pythondev
help
<@Lilliam> Maybe something like Hamachi: <https://www.vpn.net/>
2017-11-27T19:32:42.000071
Micheline
pythondev_help_Micheline_2017-11-27T19:32:42.000071
1,511,811,162.000071
101,365
pythondev
help
ngrok is also decent
2017-11-27T19:55:47.000065
Temika
pythondev_help_Temika_2017-11-27T19:55:47.000065
1,511,812,547.000065
101,366
pythondev
help
Hello, I'm attempting to do this problem for my class. It's asking me to add up each row of a 2d list and then out put the grand total of each row. When I test the code within pyscripter is works, however when I put it in codio, it errors out. TypeError: unsupported operand type(s) for +: 'int' and 'str' - ``` total=0 ...
2017-11-27T22:15:26.000071
Devorah
pythondev_help_Devorah_2017-11-27T22:15:26.000071
1,511,820,926.000071
101,367
pythondev
help
Hey <@Devorah>, that error means that Python doesn’t know what it means to add (+) an integer and a string, which means that somewhere in your program, you’re trying to do that. One thing that will help here is to make sure that all your numbers are actually integers or floats first by casting them using `int(some_numb...
2017-11-27T22:19:09.000063
Lulu
pythondev_help_Lulu_2017-11-27T22:19:09.000063
1,511,821,149.000063
101,368
pythondev
help
excellent wrapping the list worked
2017-11-27T22:22:52.000002
Devorah
pythondev_help_Devorah_2017-11-27T22:22:52.000002
1,511,821,372.000002
101,369
pythondev
help
Glad I could help
2017-11-27T22:26:35.000150
Lulu
pythondev_help_Lulu_2017-11-27T22:26:35.000150
1,511,821,595.00015
101,370
pythondev
help
One thing you might want to look into is the `sum()` builtin which might speed things up as well <https://docs.python.org/3/library/functions.html#sum>
2017-11-27T22:27:19.000139
Lulu
pythondev_help_Lulu_2017-11-27T22:27:19.000139
1,511,821,639.000139
101,371
pythondev
help
Any reason why that above would work on my machine , but it's not returning the correct response within codio?
2017-11-27T22:37:01.000045
Devorah
pythondev_help_Devorah_2017-11-27T22:37:01.000045
1,511,822,221.000045
101,372
pythondev
help
the last two outputs on it are off and not seeing why.
2017-11-27T22:37:32.000045
Devorah
pythondev_help_Devorah_2017-11-27T22:37:32.000045
1,511,822,252.000045
101,373
pythondev
help
Program Failed for Input: 1,1,-2 -1,-2,-3 1,1,1 Expected Output: 0 -6 3 -3 Your Program Output: 0 -6 -3 -19 Your output was incorrect. Try again.
2017-11-27T22:37:46.000029
Devorah
pythondev_help_Devorah_2017-11-27T22:37:46.000029
1,511,822,266.000029
101,374
pythondev
help
Could you reformat your code snippet so it has the proper indentation please? It might be a matter of where you’re incrementing `tTotal`
2017-11-27T22:42:54.000023
Lulu
pythondev_help_Lulu_2017-11-27T22:42:54.000023
1,511,822,574.000023
101,375
pythondev
help
``` total=0 tTotal=0 for row in range (len(numbers)): for col in range(len(numbers[0])): total += int(numbers[row][col]) tTotal += total print(total) print(tTotal) ```
2017-11-27T22:43:33.000150
Devorah
pythondev_help_Devorah_2017-11-27T22:43:33.000150
1,511,822,613.00015
101,376
pythondev
help
<@Devorah> I see nine numbers, with three commas, space, three commas, space, three commas, is this supposed to be a matrix? I can see the sum of -1,-2,-3 being -6 and the sum of 1,1,1 being 3, but I don't see how 1,1,-2 is -3. And the order...
2017-11-27T23:14:04.000007
Seema
pythondev_help_Seema_2017-11-27T23:14:04.000007
1,511,824,444.000007
101,377
pythondev
help
and how do you have columns or rows in that group
2017-11-27T23:15:15.000154
Seema
pythondev_help_Seema_2017-11-27T23:15:15.000154
1,511,824,515.000154
101,378
pythondev
help
<@Seema> I think the 1, 1, -2 result is the 0 after “Output” in their message
2017-11-27T23:36:22.000064
Lulu
pythondev_help_Lulu_2017-11-27T23:36:22.000064
1,511,825,782.000064
101,379
pythondev
help
Also, <@Devorah> you would want `tTotal += total` to be outdented 1 level so you aren’t double adding which is giving you -19
2017-11-27T23:37:26.000032
Lulu
pythondev_help_Lulu_2017-11-27T23:37:26.000032
1,511,825,846.000032
101,380
pythondev
help
so
2017-11-27T23:37:33.000150
Lulu
pythondev_help_Lulu_2017-11-27T23:37:33.000150
1,511,825,853.00015
101,381
pythondev
help
``` total=0 tTotal=0 for row in range (len(numbers)): for col in range(len(numbers[0])): total += int(numbers[row][col]) tTotal += total print(total) print(tTotal) ```
2017-11-27T23:37:40.000013
Lulu
pythondev_help_Lulu_2017-11-27T23:37:40.000013
1,511,825,860.000013
101,382
pythondev
help
Going further, you should get rid of `range(len(` pattern and iterate over the elements directly
2017-11-27T23:41:40.000221
Collette
pythondev_help_Collette_2017-11-27T23:41:40.000221
1,511,826,100.000221
101,383
pythondev
help
even better yet `print(sum([sum(row) for row in numbers]))`
2017-11-27T23:43:15.000022
Lulu
pythondev_help_Lulu_2017-11-27T23:43:15.000022
1,511,826,195.000022
101,384
pythondev
help
oh but that doesn’t do the intermediate prints
2017-11-27T23:43:29.000126
Lulu
pythondev_help_Lulu_2017-11-27T23:43:29.000126
1,511,826,209.000126
101,385
pythondev
help
yeah its just iteration through rows really
2017-11-27T23:47:13.000080
Marcie
pythondev_help_Marcie_2017-11-27T23:47:13.000080
1,511,826,433.00008
101,386
pythondev
help
```for row in numbers: subTotal = sum([int(col) for col in row]) print(subTotal) total += subTotal```
2017-11-27T23:49:08.000073
Marcie
pythondev_help_Marcie_2017-11-27T23:49:08.000073
1,511,826,548.000073
101,387
pythondev
help
Just going over some legacy code written by a long gone employee, is there a reason why when using an `OptionParser` you'd define uppercase &amp; lowercase options?
2017-11-28T08:22:38.000206
Edda
pythondev_help_Edda_2017-11-28T08:22:38.000206
1,511,857,358.000206
101,388
pythondev
help
Is there a best practice reason?
2017-11-28T08:23:01.000431
Edda
pythondev_help_Edda_2017-11-28T08:23:01.000431
1,511,857,381.000431
101,389
pythondev
help
like, uppercase and lowercase variants of the same option?
2017-11-28T08:25:18.000074
Suellen
pythondev_help_Suellen_2017-11-28T08:25:18.000074
1,511,857,518.000074
101,390
pythondev
help
i.e. `-s` and `-S`
2017-11-28T08:25:25.000073
Suellen
pythondev_help_Suellen_2017-11-28T08:25:25.000073
1,511,857,525.000073
101,391
pythondev
help
Not quite. Like, 90% of the options are lowercase, and the other 10% are uppercase
2017-11-28T08:26:03.000401
Edda
pythondev_help_Edda_2017-11-28T08:26:03.000401
1,511,857,563.000401
101,392
pythondev
help
But they're all separate
2017-11-28T08:26:13.000500
Edda
pythondev_help_Edda_2017-11-28T08:26:13.000500
1,511,857,573.0005
101,393
pythondev
help
No lower and upper duplicates
2017-11-28T08:26:21.000042
Edda
pythondev_help_Edda_2017-11-28T08:26:21.000042
1,511,857,581.000042
101,394
pythondev
help
:confused:
2017-11-28T08:26:36.000237
Suellen
pythondev_help_Suellen_2017-11-28T08:26:36.000237
1,511,857,596.000237
101,395
pythondev
help
Can't think of a reason for this
2017-11-28T08:26:46.000320
Suellen
pythondev_help_Suellen_2017-11-28T08:26:46.000320
1,511,857,606.00032
101,396
pythondev
help
I'm tempted to just make them all lowercase, but don't want to if there's a decent reason for them
2017-11-28T08:26:51.000494
Edda
pythondev_help_Edda_2017-11-28T08:26:51.000494
1,511,857,611.000494
101,397
pythondev
help
me either… only reason I can think of is lowercase options were set at a different time than the uppercase
2017-11-28T08:27:50.000006
Meg
pythondev_help_Meg_2017-11-28T08:27:50.000006
1,511,857,670.000006
101,398
pythondev
help
The rest of the code is REALLY untidy, so I'm guessing it wasn't a conscious decision to do it this way.
2017-11-28T08:29:16.000380
Edda
pythondev_help_Edda_2017-11-28T08:29:16.000380
1,511,857,756.00038
101,399
pythondev
help
I'm just gonna standardise it :slightly_smiling_face:
2017-11-28T08:29:36.000572
Edda
pythondev_help_Edda_2017-11-28T08:29:36.000572
1,511,857,776.000572
101,400
pythondev
help
Guys, I have a question about L-systems, particularly Dragon Curve.
2017-11-28T08:39:50.000447
Roy
pythondev_help_Roy_2017-11-28T08:39:50.000447
1,511,858,390.000447
101,401
pythondev
help
Guys, I have a question about L-systems, particularly Dragon Curve. This is my code, but I don’t get exactly what I wanted. It looks like the dragon curve but is not quite the same. Any suggestions? The Rules for a Dragon Curve are as follows: FX X -&gt; X+YF+ Y -&gt; -FX-Y ``` import turtle def system(iterations, ...
2017-11-28T08:43:40.000216
Roy
pythondev_help_Roy_2017-11-28T08:43:40.000216
1,511,858,620.000216
101,402