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 | Groovy. One sec, I can probably whip up something helpful as a rough template. | 2019-04-30T19:20:12.313600 | Carmen | pythondev_help_Carmen_2019-04-30T19:20:12.313600 | 1,556,652,012.3136 | 21,721 |
pythondev | help | <@Sasha> we are on to something!! | 2019-04-30T19:27:43.314600 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:27:43.314600 | 1,556,652,463.3146 | 21,722 |
pythondev | help | IT WORKS! | 2019-04-30T19:29:34.314800 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:29:34.314800 | 1,556,652,574.3148 | 21,723 |
pythondev | help | ```
class Tool(object):
'''Encapsulates data about a tool being tested.'''
def __init__(self, serial_number, num_tests=3):
self.serial_number = serial_number
self.num_tests = num_tests
self.test_data = []
def gather_single_test_data(self):
current_test_num = len(self.test_data) + 1
prompt = "Test #{}: ".format(current_test_num)
test_result = input(prompt)
self.test_data.append(test_result)
def gather_all_test_data(self):
for _ in range(self.num_tests):
self.gather_single_test_data()
def print_final_data(self):
test_data_string = " ".join(self.test_data)
output_str = "{} {}".format(self.serial_number, test_data_string)
print(output_str)
tools = []
for i in range(1):
serial = input("Input a serial number: ")
t = Tool(serial)
tools.append(t)
for t in tools:
prompt = "Tests for tool #{}".format(t.serial_number)
print(prompt)
t.gather_all_test_data()
t.print_final_data()
``` | 2019-04-30T19:45:00.315100 | Carmen | pythondev_help_Carmen_2019-04-30T19:45:00.315100 | 1,556,653,500.3151 | 21,724 |
pythondev | help | ```jciskey@fursnek:/tmp$ python3 tool-testing.py
Input a serial number: sn12345
Tests for tool #sn12345
Test #1: abcd
Test #2: efgh
Test #3: ijkl
sn12345 abcd efgh ijkl
``` | 2019-04-30T19:45:18.315300 | Carmen | pythondev_help_Carmen_2019-04-30T19:45:18.315300 | 1,556,653,518.3153 | 21,725 |
pythondev | help | oh shit! thats great | 2019-04-30T19:46:13.315800 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:46:13.315800 | 1,556,653,573.3158 | 21,726 |
pythondev | help | this will be good to learn from, i appreciate you making this available, thanks! | 2019-04-30T19:47:22.316700 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:47:22.316700 | 1,556,653,642.3167 | 21,727 |
pythondev | help | Yep! | 2019-04-30T19:47:33.316900 | Carmen | pythondev_help_Carmen_2019-04-30T19:47:33.316900 | 1,556,653,653.3169 | 21,728 |
pythondev | help | The one thing I'd want to change here is using f-strings instead of `format`. Unfortunately, my system python3 is 3.5, so I don't have f-strings available. | 2019-04-30T19:48:03.317500 | Carmen | pythondev_help_Carmen_2019-04-30T19:48:03.317500 | 1,556,653,683.3175 | 21,729 |
pythondev | help | (Which, incidentally, was a learning experience. I originally wrote it with f-strings, and then went, "Why the frak is it giving me syntax errors?") | 2019-04-30T19:48:34.318100 | Carmen | pythondev_help_Carmen_2019-04-30T19:48:34.318100 | 1,556,653,714.3181 | 21,730 |
pythondev | help | is there a reason you went backwards in version to implement it? | 2019-04-30T19:49:53.318600 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:49:53.318600 | 1,556,653,793.3186 | 21,731 |
pythondev | help | Because my system python is 3.5, and I wasn't aware that f-strings aren't available in 3.5 until I went to test it. | 2019-04-30T19:50:16.319000 | Carmen | pythondev_help_Carmen_2019-04-30T19:50:16.319000 | 1,556,653,816.319 | 21,732 |
pythondev | help | oh lol | 2019-04-30T19:52:23.320600 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:52:23.320600 | 1,556,653,943.3206 | 21,733 |
pythondev | help | Nicely done, <@Carmen>. This is what I was talking about earlier, <@Priscilla>... you can see how the `Tool` class stores its own serial number and test results, and knows how to run its own tests and print out its results, etc. | 2019-04-30T19:52:27.320700 | Sasha | pythondev_help_Sasha_2019-04-30T19:52:27.320700 | 1,556,653,947.3207 | 21,734 |
pythondev | help | it does make a lot of sense, i see what you were talking about | 2019-04-30T19:52:53.321200 | Priscilla | pythondev_help_Priscilla_2019-04-30T19:52:53.321200 | 1,556,653,973.3212 | 21,735 |
pythondev | help | I'd really appreciate if someone can help me figure out how to insert variable into Python complex dic. I need to replace 'password' with var1.
var1='password123'
update_client=client.update('test_client', 'update.run', ['username', 'password']) | 2019-04-30T20:38:01.325600 | Dorotha | pythondev_help_Dorotha_2019-04-30T20:38:01.325600 | 1,556,656,681.3256 | 21,736 |
pythondev | help | It's not completely obvious what you're asking... it sounds like you just want to do:
```update_client=client.update('test_client', 'update.run', ['username', var1])```
but that seems too simple. | 2019-04-30T20:41:50.326400 | Sasha | pythondev_help_Sasha_2019-04-30T20:41:50.326400 | 1,556,656,910.3264 | 21,737 |
pythondev | help | AttributeError: `str` object has no attribute `test_2` | 2019-04-30T20:48:43.326500 | Priscilla | pythondev_help_Priscilla_2019-04-30T20:48:43.326500 | 1,556,657,323.3265 | 21,738 |
pythondev | help | We need to see where you're defining oct_list. | 2019-04-30T20:56:18.327100 | Carmen | pythondev_help_Carmen_2019-04-30T20:56:18.327100 | 1,556,657,778.3271 | 21,739 |
pythondev | help | Because based on that error message, you're not creating a list of objects, you're creating a list of strings. | 2019-04-30T20:56:36.327500 | Carmen | pythondev_help_Carmen_2019-04-30T20:56:36.327500 | 1,556,657,796.3275 | 21,740 |
pythondev | help | its outside of everything like your wrote it | 2019-04-30T20:57:37.327900 | Priscilla | pythondev_help_Priscilla_2019-04-30T20:57:37.327900 | 1,556,657,857.3279 | 21,741 |
pythondev | help | oh hangon, i am retruning strings in my fucntions | 2019-04-30T20:59:16.328200 | Priscilla | pythondev_help_Priscilla_2019-04-30T20:59:16.328200 | 1,556,657,956.3282 | 21,742 |
pythondev | help | i bet thats it | 2019-04-30T20:59:19.328400 | Priscilla | pythondev_help_Priscilla_2019-04-30T20:59:19.328400 | 1,556,657,959.3284 | 21,743 |
pythondev | help | yep | 2019-04-30T21:01:32.328600 | Priscilla | pythondev_help_Priscilla_2019-04-30T21:01:32.328600 | 1,556,658,092.3286 | 21,744 |
pythondev | help | :+1: | 2019-04-30T21:02:52.328800 | Carmen | pythondev_help_Carmen_2019-04-30T21:02:52.328800 | 1,556,658,172.3288 | 21,745 |
pythondev | help | oh my god... i just over wrote so much work for the past 30 mins :scream: | 2019-04-30T21:09:52.329400 | Priscilla | pythondev_help_Priscilla_2019-04-30T21:09:52.329400 | 1,556,658,592.3294 | 21,746 |
pythondev | help | lol | 2019-04-30T21:09:54.329600 | Priscilla | pythondev_help_Priscilla_2019-04-30T21:09:54.329600 | 1,556,658,594.3296 | 21,747 |
pythondev | help | *Locating string patterns in multiple file formats and setting constraints*
I want to set a condition on files that aren´t created by user, but by system or programs(windows). My first approach is to filter it by files metadavta, but a module that can do that on a wide range of file formats? I don´t think so. So another approach could be to filter with common dirs used by the OS and where user by default don´t have write or access rights? What you think? | 2019-05-01T09:50:09.332400 | Emerita | pythondev_help_Emerita_2019-05-01T09:50:09.332400 | 1,556,704,209.3324 | 21,748 |
pythondev | help | import pandas as pd
header = ["value","name"]
values = ["kajsdls","sdfds"]
out = []
out.append(dict(zip(header, values)))
df = pd.DataFrame(out)
OutPut:
name value
0 sdfds kajsdls
How to ignore header sorting in ascending order | 2019-05-01T09:52:07.332800 | Bao | pythondev_help_Bao_2019-05-01T09:52:07.332800 | 1,556,704,327.3328 | 21,749 |
pythondev | help | Please use the snippet feature, or backticks, when sharing code. You can do so by clicking on the :heavy_plus_sign: on the left of the input box for a snippet.
For more information on snippets click <https://get.slack.help/hc/en-us/articles/204145658-Create-a-snippet|here>.
For more information on inline code formatting with backticks click <https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#inline-code|here>. | 2019-05-01T09:52:35.332900 | Leana | pythondev_help_Leana_2019-05-01T09:52:35.332900 | 1,556,704,355.3329 | 21,750 |
pythondev | help | <@Emerita> In general, what you're wanting to do isn't possible. Windows doesn't have the capability of tracking who created a file. The best you can get is the owner, but that's not quite the same thing. Your stated OS directories and read-write access plan seems like a reasonable first-shot. | 2019-05-01T09:57:26.336200 | Carmen | pythondev_help_Carmen_2019-05-01T09:57:26.336200 | 1,556,704,646.3362 | 21,751 |
pythondev | help | OutPut:
name value
0 sdfds kajsdls
how to ignore sorting header in ascending order | 2019-05-01T09:58:14.336300 | Bao | pythondev_help_Bao_2019-05-01T09:58:14.336300 | 1,556,704,694.3363 | 21,752 |
pythondev | help | <@Bao> i think you need to phrase your questions more indepth and less like a google query. it can be hard to help you with what is shown here | 2019-05-01T10:30:16.337300 | Christina | pythondev_help_Christina_2019-05-01T10:30:16.337300 | 1,556,706,616.3373 | 21,753 |
pythondev | help | why does black and pylint disagree with indents :disappointed: super annoying - here i am trying to get a perfect score | 2019-05-01T10:37:27.338900 | Christina | pythondev_help_Christina_2019-05-01T10:37:27.338900 | 1,556,707,047.3389 | 21,754 |
pythondev | help | I’m guessing it is for the indentation of wrapped lines on lines subsequent to the first. Black is _much_ more opinionated there than pylint is | 2019-05-01T10:45:00.340100 | Clemmie | pythondev_help_Clemmie_2019-05-01T10:45:00.340100 | 1,556,707,500.3401 | 21,755 |
pythondev | help | yep. | 2019-05-01T10:47:44.340300 | Christina | pythondev_help_Christina_2019-05-01T10:47:44.340300 | 1,556,707,664.3403 | 21,756 |
pythondev | help | well pylint complains about the amount of indents. i'm probably just going to edit my pylint config :stuck_out_tongue: | 2019-05-01T10:48:06.340800 | Christina | pythondev_help_Christina_2019-05-01T10:48:06.340800 | 1,556,707,686.3408 | 21,757 |
pythondev | help | Do any plotly experts know why this code is only plotting the line graph (trace2) and not the bar chart? If I remove the second the second trace then I do get a bar chart. I’m sure I’m making a silly mistake but I cannot find it. | 2019-05-01T10:54:21.341100 | Kori | pythondev_help_Kori_2019-05-01T10:54:21.341100 | 1,556,708,061.3411 | 21,758 |
pythondev | help | is this site giving anyone else a Potential Security Warning(SSL_ERROR_BAD_CERT_DOMAIN)?
<https://docs.celeryproject.org/en/latest/reference/celery.schedules.html> | 2019-05-01T11:09:47.342300 | Jorge | pythondev_help_Jorge_2019-05-01T11:09:47.342300 | 1,556,708,987.3423 | 21,759 |
pythondev | help | yep, looks like the cert expired | 2019-05-01T11:11:40.342500 | Hiroko | pythondev_help_Hiroko_2019-05-01T11:11:40.342500 | 1,556,709,100.3425 | 21,760 |
pythondev | help | <https://github.com/celery/celery/issues/5477> | 2019-05-01T11:12:22.343200 | Hiroko | pythondev_help_Hiroko_2019-05-01T11:12:22.343200 | 1,556,709,142.3432 | 21,761 |
pythondev | help | <https://github.com/celery/celeryproject/issues/24> | 2019-05-01T11:25:08.343500 | Carlo | pythondev_help_Carlo_2019-05-01T11:25:08.343500 | 1,556,709,908.3435 | 21,762 |
pythondev | help | <@Hiroko> seems like this issue is a dup of #24, only one guy has access to the DNS control panel and doesnt seem like he's responding | 2019-05-01T11:26:01.344300 | Carlo | pythondev_help_Carlo_2019-05-01T11:26:01.344300 | 1,556,709,961.3443 | 21,763 |
pythondev | help | I forgot to add “overlaying=‘y’” to the second axis. Oops. It all works when I do that | 2019-05-01T11:42:37.344700 | Kori | pythondev_help_Kori_2019-05-01T11:42:37.344700 | 1,556,710,957.3447 | 21,764 |
pythondev | help | gotcha, makes sense | 2019-05-01T11:56:38.345200 | Hiroko | pythondev_help_Hiroko_2019-05-01T11:56:38.345200 | 1,556,711,798.3452 | 21,765 |
pythondev | help | Class contains the functions
_init_ is the parameters of the class
Self applies _init_ parameters to the function within the class.
Is this a correct understanding? | 2019-05-01T11:57:20.346000 | Priscilla | pythondev_help_Priscilla_2019-05-01T11:57:20.346000 | 1,556,711,840.346 | 21,766 |
pythondev | help | not really | 2019-05-01T11:57:41.346200 | Hiroko | pythondev_help_Hiroko_2019-05-01T11:57:41.346200 | 1,556,711,861.3462 | 21,767 |
pythondev | help | `self` is an explicit identefier to the instance of the class that’s being worked on | 2019-05-01T11:58:08.346800 | Hiroko | pythondev_help_Hiroko_2019-05-01T11:58:08.346800 | 1,556,711,888.3468 | 21,768 |
pythondev | help | in java/javascript, C#, they have an implicit `this` for class methods | 2019-05-01T11:58:28.347400 | Hiroko | pythondev_help_Hiroko_2019-05-01T11:58:28.347400 | 1,556,711,908.3474 | 21,769 |
pythondev | help | How would you define instance? | 2019-05-01T12:00:48.348500 | Priscilla | pythondev_help_Priscilla_2019-05-01T12:00:48.348500 | 1,556,712,048.3485 | 21,770 |
pythondev | help | when you do
```
a = A()
b = A()
```
`a` and `b` are instances of class `A()` | 2019-05-01T12:01:38.348900 | Clemmie | pythondev_help_Clemmie_2019-05-01T12:01:38.348900 | 1,556,712,098.3489 | 21,771 |
pythondev | help | each having (potentially) different data in the `A()` structures | 2019-05-01T12:02:33.350100 | Clemmie | pythondev_help_Clemmie_2019-05-01T12:02:33.350100 | 1,556,712,153.3501 | 21,772 |
pythondev | help | Oh man. I think I just got it. So if I needed one function to do two different things with different data. I would use two instances of that one function? | 2019-05-01T12:03:15.351400 | Priscilla | pythondev_help_Priscilla_2019-05-01T12:03:15.351400 | 1,556,712,195.3514 | 21,773 |
pythondev | help | I’m trying to understand it on a less abstract level. | 2019-05-01T12:03:35.352200 | Priscilla | pythondev_help_Priscilla_2019-05-01T12:03:35.352200 | 1,556,712,215.3522 | 21,774 |
pythondev | help | no, function don’t have instances, only classes do | 2019-05-01T12:03:36.352300 | Clemmie | pythondev_help_Clemmie_2019-05-01T12:03:36.352300 | 1,556,712,216.3523 | 21,775 |
pythondev | help | Oh | 2019-05-01T12:03:44.352700 | Priscilla | pythondev_help_Priscilla_2019-05-01T12:03:44.352700 | 1,556,712,224.3527 | 21,776 |
pythondev | help | if you needed a function to work on two different bits of data you would pass different params | 2019-05-01T12:04:03.353100 | Clemmie | pythondev_help_Clemmie_2019-05-01T12:04:03.353100 | 1,556,712,243.3531 | 21,777 |
pythondev | help | None | 2019-05-01T12:04:57.353200 | Clemmie | pythondev_help_Clemmie_2019-05-01T12:04:57.353200 | 1,556,712,297.3532 | 21,778 |
pythondev | help | that is because a function doesn’t store anything, class instances do | 2019-05-01T12:05:45.354400 | Clemmie | pythondev_help_Clemmie_2019-05-01T12:05:45.354400 | 1,556,712,345.3544 | 21,779 |
pythondev | help | basically, think of a class as a recipe | 2019-05-01T12:07:31.354700 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:07:31.354700 | 1,556,712,451.3547 | 21,780 |
pythondev | help | if you know how to do a recipe, you can use it to create a part of a meal | 2019-05-01T12:07:45.355200 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:07:45.355200 | 1,556,712,465.3552 | 21,781 |
pythondev | help | but each recipe is different, isn’t it? | 2019-05-01T12:07:53.355500 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:07:53.355500 | 1,556,712,473.3555 | 21,782 |
pythondev | help | that’s where classes have internal _state_, which can means instance A and B can have different results when you call `a.some_function()` vs `b.some_function()` | 2019-05-01T12:08:56.356800 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:08:56.356800 | 1,556,712,536.3568 | 21,783 |
pythondev | help | That makes a lot of sense. Thanks guys. Is there a way to save a convo in slack? | 2019-05-01T12:16:12.357700 | Priscilla | pythondev_help_Priscilla_2019-05-01T12:16:12.357700 | 1,556,712,972.3577 | 21,784 |
pythondev | help | You can star a message | 2019-05-01T12:16:22.357900 | Porsha | pythondev_help_Porsha_2019-05-01T12:16:22.357900 | 1,556,712,982.3579 | 21,785 |
pythondev | help | but its not persistent | 2019-05-01T12:16:41.358100 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:16:41.358100 | 1,556,713,001.3581 | 21,786 |
pythondev | help | slack free groups have a 10k message history limit | 2019-05-01T12:16:52.358500 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:16:52.358500 | 1,556,713,012.3585 | 21,787 |
pythondev | help | with the volume here, that means it exists only for about 6-8 days before they become inacessible | 2019-05-01T12:17:21.359100 | Hiroko | pythondev_help_Hiroko_2019-05-01T12:17:21.359100 | 1,556,713,041.3591 | 21,788 |
pythondev | help | Perfect. Only needs to exist till I get off work. | 2019-05-01T12:18:52.359700 | Priscilla | pythondev_help_Priscilla_2019-05-01T12:18:52.359700 | 1,556,713,132.3597 | 21,789 |
pythondev | help | Noted. And thx. | 2019-05-01T12:59:29.360000 | Emerita | pythondev_help_Emerita_2019-05-01T12:59:29.360000 | 1,556,715,569.36 | 21,790 |
pythondev | help | You could also screenshot it. But :star2: is probably best | 2019-05-01T13:20:46.361000 | Christina | pythondev_help_Christina_2019-05-01T13:20:46.361000 | 1,556,716,846.361 | 21,791 |
pythondev | help | Hi everyone: I have an ID that looks like: 8A8E06A4 in a log file but I'm pretty confident it needs to map to an integer. Anyone recognise the data format or has any clue how I can figure it out? | 2019-05-01T13:22:40.362100 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:22:40.362100 | 1,556,716,960.3621 | 21,792 |
pythondev | help | It could be a HEX.? | 2019-05-01T13:22:57.362400 | Christina | pythondev_help_Christina_2019-05-01T13:22:57.362400 | 1,556,716,977.3624 | 21,793 |
pythondev | help | `Int('8A8E06A4', 16)` will convert it to base10 | 2019-05-01T13:23:46.363700 | Christina | pythondev_help_Christina_2019-05-01T13:23:46.363700 | 1,556,717,026.3637 | 21,794 |
pythondev | help | what's the 16 parameter? | 2019-05-01T13:24:10.364000 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:24:10.364000 | 1,556,717,050.364 | 21,795 |
pythondev | help | make an int from base 16 | 2019-05-01T13:25:26.366300 | Clemmie | pythondev_help_Clemmie_2019-05-01T13:25:26.366300 | 1,556,717,126.3663 | 21,796 |
pythondev | help | So hexadecimal is another numbering system (basically) binary is base2. (0, 1). Decimal (what you know) is base10 (0,1,2,3,4,5,6,7,8,9) and hexadecimal is base16 (1,2,3,4,5,6,7,8,9,A,B,C,D,E,F) | 2019-05-01T13:26:03.367500 | Christina | pythondev_help_Christina_2019-05-01T13:26:03.367500 | 1,556,717,163.3675 | 21,797 |
pythondev | help | awesome, it gave me a number indeed, I'll try and see if it matches anything in my output file | 2019-05-01T13:26:52.368300 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:26:52.368300 | 1,556,717,212.3683 | 21,798 |
pythondev | help | A number like that beginning with 8 or above could also be negative signed integer, so keep an eye out for that possibility. | 2019-05-01T13:28:31.369200 | Sasha | pythondev_help_Sasha_2019-05-01T13:28:31.369200 | 1,556,717,311.3692 | 21,799 |
pythondev | help | they all start with 8 | 2019-05-01T13:29:45.369400 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:29:45.369400 | 1,556,717,385.3694 | 21,800 |
pythondev | help | googling negative signed int :slightly_smiling_face: | 2019-05-01T13:30:01.369700 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:30:01.369700 | 1,556,717,401.3697 | 21,801 |
pythondev | help | in fact they all look like 8A8F8F54 0000002E | 2019-05-01T13:30:27.370100 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:30:27.370100 | 1,556,717,427.3701 | 21,802 |
pythondev | help | the last part is always identical | 2019-05-01T13:30:32.370400 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:30:32.370400 | 1,556,717,432.3704 | 21,803 |
pythondev | help | the 0..2E | 2019-05-01T13:30:39.370700 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:30:39.370700 | 1,556,717,439.3707 | 21,804 |
pythondev | help | It would be -1970403676 in that format. But unlikely if they're all like that. | 2019-05-01T13:30:40.370800 | Sasha | pythondev_help_Sasha_2019-05-01T13:30:40.370800 | 1,556,717,440.3708 | 21,805 |
pythondev | help | well the positive version of that actually makes sense from what I can see in the output | 2019-05-01T13:31:18.371400 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:31:18.371400 | 1,556,717,478.3714 | 21,806 |
pythondev | help | nope, also not it | 2019-05-01T13:31:59.371800 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:31:59.371800 | 1,556,717,519.3718 | 21,807 |
pythondev | help | it should somehow map to a number in the neighbourhood of | 2019-05-01T13:33:47.372600 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:33:47.372600 | 1,556,717,627.3726 | 21,808 |
pythondev | help | #199894184063 | 2019-05-01T13:33:48.372800 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:33:48.372800 | 1,556,717,628.3728 | 21,809 |
pythondev | help | minus the hashtag | 2019-05-01T13:33:54.373200 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:33:54.373200 | 1,556,717,634.3732 | 21,810 |
pythondev | help | anywhere within a a few hundred below or above that number | 2019-05-01T13:34:25.373700 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:34:25.373700 | 1,556,717,665.3737 | 21,811 |
pythondev | help | The `2E` is the most significant byte there. Try `int('0000002E8A8F8F54', 16)` | 2019-05-01T13:35:15.374400 | Sasha | pythondev_help_Sasha_2019-05-01T13:35:15.374400 | 1,556,717,715.3744 | 21,812 |
pythondev | help | gets me 199893059156 | 2019-05-01T13:35:49.374700 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:35:49.374700 | 1,556,717,749.3747 | 21,813 |
pythondev | help | that looks seriously promising! | 2019-05-01T13:35:59.374900 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:35:59.374900 | 1,556,717,759.3749 | 21,814 |
pythondev | help | that might be it but I still can't find that exact number in there | 2019-05-01T13:37:17.375300 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:37:17.375300 | 1,556,717,837.3753 | 21,815 |
pythondev | help | they might be trying to obfuscate the number | 2019-05-01T13:37:30.375700 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:37:30.375700 | 1,556,717,850.3757 | 21,816 |
pythondev | help | there purposely isn't any documentation on this available | 2019-05-01T13:37:40.376000 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:37:40.376000 | 1,556,717,860.376 | 21,817 |
pythondev | help | so I'm flying blind here | 2019-05-01T13:37:53.376300 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:37:53.376300 | 1,556,717,873.3763 | 21,818 |
pythondev | help | 199894184063 would be 8A9F307F 0000002E in that format if that helps. | 2019-05-01T13:38:22.376600 | Sasha | pythondev_help_Sasha_2019-05-01T13:38:22.376600 | 1,556,717,902.3766 | 21,819 |
pythondev | help | looking that up in the log file but no hits | 2019-05-01T13:38:56.377000 | Arcelia | pythondev_help_Arcelia_2019-05-01T13:38:56.377000 | 1,556,717,936.377 | 21,820 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.