Syed Faheel Ahmad
Syed Faheel Ahmad
@alxmjo Having a common unit test for linear and binary search and a separate one for ternary search would be best.
@abdulwahab-alobaid-2191115290 The unit tests for searching algorithms have already been added. You can pick up something else if you like.
@FerroO2000 The way it's implemented here... https://github.com/threadheap/serverless-ide-vscode/blob/845ca587608a0833d73f5059b4b37f4140dcb007/packages/serverless-framework-schema/json/aws/common/authorizer.json#L47-L56 .. I think we can just add all possible values for `type`, regardless of whether `authorizerId` is present or not. So you can...
@FerroO2000 I was able to find the following values for `type` in the [AWS documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type): * `TOKEN` * `REQUEST` * `COGNITO_USER_POOLS` Could you also provide sources for the other values...
The documentation for the `Pool` class can be found here: https://billiard.readthedocs.io/en/latest/library/multiprocessing.html#module-multiprocessing.pool
The following code in the frontend can also be updated now: https://github.com/riskprofiler/CloudFrontier/blob/490b2c0dc22f42dd0b10b0acf3e3e21e09dacb9c/frontend/src/components/internetAssets.vue#L653-L666 If I'm not wrong, then all of the above can be replaced with just: ```js this.vulnerabilities = vulnerabilities.data.data.vulnerabilities;...
@shankar-lucideus Are you using Windows? If that's the case please take a look at https://stackoverflow.com/questions/51508150/standard-init-linux-go190-exec-user-process-caused-no-such-file-or-directory for possible fixes.
I was facing the same `No file matches include / exclude patterns` issue with layers with the following: ```yaml package: exclude: - "**" include: - "!**" - functions/functionA/** - functions/functionB/**...
@lovjs Sorry for not seeing this PR for 5 years 😅 It would be great if someone could include these in the [existing GitHub action](https://github.com/faheel/BigInt/blob/master/.github/workflows/ci.yml) and see if it passes...
Sorry for the late reply. #63 is a high-quality PR by @arenbecl that adds almost all bitwise operators, but is missing test cases. If anyone is interested in contributing they...