Almenon
Almenon
Hi there, I noticed that [the regex gpt](https://github.com/Decron/Whitebox-Code-GPT/blob/main/regex/Conversation%20Starters) is not up to date with the conversations starters in the chatgpt website. I was also wondering how does the gpt know...
The readme has no examples of how to use it, so I'm curious how it functions.
MWAA has `"eks:*"` access, but it does not need EKS access by default. It does not need S3 delete permissions by default either. Finally, I don't think it needs `batch`...
See https://github.com/aws-ia/terraform-aws-mwaa/pull/23. There is a need for MWAA to have access to certain secrets so it can connect to various API's. Granting MWAA access to _all_ secrets would be a...
When following https://github.com/aws-samples/aws-iam-identity-center-extensions/blob/main/docs/documentation/Region-Switch.md I ran into the following error when deploying the discovery stack: ``` 11:55:33 AM | CREATE_FAILED | Custom::DynamoDBReplica | awsssoextensionsre...icauseast1D10E0F6F Received response status [FAILED] from custom resource....
VSCode defaults to the codeserver_py39. However, that kernel is unable to even run notebook cells. ``` Running cells with 'Python 3.9.15 ('codeserver_py39': conda)' requires ipykernel package. Run the following command...
At work I have waaayyyy too many old branches locally, the majority of which can be deleted. It would be cool if gitlens offered a command to delete all the...
### 是否已有关于该错误的issue或讨论? | Is there an existing issue / discussion for this? - [x] 我已经搜索过已有的issues和讨论 | I have searched the existing issues / discussions ### 该问题是否在FAQ中有解答? | Is there an...
Take this sample code from https://docs.python.org/3/library/unittest.html ```python import unittest class TestStringMethods(unittest.TestCase): def test_upper(self): self.assertEqual('foo'.upper(), 'FOO') def test_isupper(self): self.assertTrue('FOO'.isupper()) self.assertFalse('Foo'.isupper()) def test_split(self): s = 'hello world' self.assertEqual(s.split(), ['hello', 'world']) # check...
```python import numpy as np arr = np.array([str(i) for i in range(3)], dtype=np.object) dtype = arr.dtype shape = arr.shape buf = arr.tobytes() del arr arr = np.ndarray(buffer=buf, dtype=dtype, shape=shape).copy() ```...