Antonio Zaitoun
Antonio Zaitoun
Hi - please update the pull request description and introduce a motivation for the change. Also please remove non-code changes.
I don’t think this has anything to do with the tab bar. What library are you using for that segment control?
Can you please share a screenshot? I don’t own an iPad and I have never tested this on an iPad
@frank61003 to retrieve the data back from the controller you have two options. - using Notification Center - delegation pattern I personally recommend the delegation pattern as it is more...
Hi, can you show me the code?
Double quotes is the right way to go about this, however this seems like an issue with the AWS cli rather than the JMESPath libraries. This works just fine: ```...
The `*` is what you are looking for. Assuming your object looks like this: ```json { "A": 1, "B": 2, "C": 3 } ``` You can simply use ``` @.*...
Assuming you are using Python it should be something like this: ```python import jmespath my_data = { "products": { "1": { "sku": "a", "attributes": { "location": "there", "time": 500, "planet":...
@qwordy Hi, You can just use double quotes to wrap the key. ``` [? a."b c" == `value`].a ``` should work fine
What I posted in here is indeed case-specific. But perhaps what I wanted to suggest is in addition to the classes there could also be decorators. Consider: ```python @http_sampler(url='http://helloworld') @thread_group(threads=10,...