Adrian Hesketh

Results 48 issues of Adrian Hesketh

When using a bag of words to feed to a KMeans clustering algorithm, the memory consumption can be quite large. Using a sparse vector can significantly reduce the amount of...

I tried out migrating, and the Lambda layer appears to add a significant amount to cold start time. Of course, it probably only matters to people that use Lambda, but...

When I run this code on my local machine, I don't expect a panic. ```go package main import ( "fmt" "io" "os" "github.com/aws/aws-xray-sdk-go/xray" ) func main() { c := xray.Client(nil)...

enhancement
question

While mocks are working great for me, I'm having some trouble with spies. I created this code. ```typescript import { moduleDependency } from "./dependency"; export const internalDependency = () =>...

* Package names in Go should be lowercase (https://go.dev/blog/package-names) * Variable and function names should use mixed caps instead of snake case (https://go.dev/doc/effective_go#mixed-caps)

I tried out migrating away from AWS's X-Ray SDK for Lambda, but the Open Telemetry Lambda layer appears to add a significant amount to cold start time, which I didn't...

**Community Note** * Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request * Please do not...

I was missing this layout, since it's one I use a lot: In slidev, it looks like this:

When you're building Lambda functions with CDK, you can't always guess the log prefix, and even if you can, it's a bit unweildy. For example, with a CDK stack with...