Thomas Smith
Thomas Smith
Just a thought. You could encrypt messages inside the database, each with its own random key. The encryption key could become part of the URL; the server would throw it...
In my organization, `/lib64/libstdc++.so` is quite old. More recent compilers are available, in particular gcc 7.3. That's new enough to compile cppyy since it supports `-std=c++1z`. This is set up...
Make `_to_timedelta` public check that datetime.datetime.combine() works with nptime `to_time`? Is that useful, even though `nptime` inherits from `time`? If it makes sense to subtract times, does it make sense...
``` File "/home/smithtg/src/w/asn2fsa/ppenv/site-packages/django/template/debug.py", line 88, in render output = self.filter_expression.resolve(context) File "/home/smithtg/src/w/asn2fsa/ppenv/site-packages/django/template/base.py", line 613, in resolve new_obj = func(obj, *arg_vals) File "/home/smithtg/src/w/asn2fsa/ppenv/site-packages/sp/templatetags/xslt.py", line 91, in xslt transform = get_xslt(xslt_path[0]) File...
Pint has special string formatting support. For example, from [the docs](https://pint.readthedocs.io/en/latest/tutorial.html#string-formatting): ``` >>> accel = 1.3 * ureg['meter/second**2'] >>> 'The HTML representation is {:H}'.format(accel) 'The HTML representation is 1.3 meter/second2'...
Hiya, This is a very rough first stab at dealing with #2 . It only makes sense if all the parts of the email are plain text, but that happens...
Hello, thank you for this project! It's a big help as we try to migrate to hatch. I'm running hatch in a CI environment, where multiple teams share a user....
**Input data** Which SQL and options did you provide as input? ```sql SELECT some_events.*, sum(some_events.size) OVER ( ORDER BY time_stamp ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW ) AS running_size...