Daniel Speed

Results 7 issues of Daniel Speed

I'm trying to reconcile this: ``` python class PrimaryKey(AWSProperty): props = { 'HashKeyElement': (Element, True), 'RangeKeyElement': (Element, False), } class Table(AWSObject): type = "AWS::DynamoDB::Table" props = { 'KeySchema': (PrimaryKey, True),...

examples

I believe that I read that Cadence can schedule activities based on many potential ways using task lists, but there´s not much information that expands on this idea and how...

I have a solution to the Forth exercise (https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=489be0f116db94aa85f2ff56dcd05b11) that I can't submit. `error: test failed, to rerun pass '--test alloc-attack' Caused by: process didn't exit successfully: `/mnt/exercism-iteration/target/debug/deps/alloc_attack-15d39a8ca4ebef4b -Z unstable-options...

``` if duration and time.time() - time.time() - start: break ``` I'm pretty sure that you want a comparison with the duration in there ;)

``` mySub1 = c.subscribe('foo', ) mySub2 = c.subscribe('foo', ) c.publish("foo", "1") c.unsubscribe(mySub1) c.publish("foo", "2") c.wait(count=3) ``` Running this code will cause an exception in pynats, I'm guessing because of a...

pynats currently shadows a number of python builtin names, like: - id - type - max

I'd like to suggest splitting up wait(). It's not very nice to have 2 optional arguments and no clear behavior when called without any arguments. I would suggest: - wait_message_count...