Advertisement Β· 728 Γ— 90

Posts by Mark Wolfe

Keen to read your AI tool use policy, seems like a challenge for a lot of opensource projects.

1 month ago 0 0 0 0
memory usage graph showing a big drop in memory use after fixing a leak.

memory usage graph showing a big drop in memory use after fixing a leak.

Gotta love fixing a memory leak in Go using pprof and Julia Evans fantastic post to as a refresher. Owned by the EncodeAll method in klauspost/compress πŸ˜…πŸ€¦ #golang #Development jvns.ca/blog/2017/09...

1 month ago 4 0 1 0
Post image

I really like some of these inlay hints which can be enabled in gopls github.com/golang/tools...

This is especially handy when reviewing code written by a robot, which I am doing a lot of at the moment. πŸ˜… Found it reading the zed editor docs... #golang

1 month ago 0 0 0 0

Love the simplicity of the service BTW, using esbuild in the app removes a whole layer of complexity. πŸ‘πŸ˜

1 month ago 1 0 0 0

Is the code open? I would love to see how it works, and mess around with it.

1 month ago 0 0 1 0

Totally agree, learning how to use them effectively takes practise though.

4 months ago 2 0 0 0
Preview
GitHub - anthropic-experimental/sandbox-runtime: A lightweight sandboxing tool for enforcing filesystem and network restrictions on arbitrary processes at the OS level, without requiring a container. A lightweight sandboxing tool for enforcing filesystem and network restrictions on arbitrary processes at the OS level, without requiring a container. - anthropic-experimental/sandbox-runtime

It is interesting to see forward proxies making a comeback in agent infrastructure github.com/anthropic-ex... I used claude to describe how this works, is quite interesting pulling this project apart. The structure highlights where security concerns with agents are. #ai #agents

5 months ago 2 0 0 0
Advertisement
Preview
GitHub - wolfeidau/go-mcp-evals: A Go library and CLI for evaluating Model Context Protocol (MCP) servers using Claude. A Go library and CLI for evaluating Model Context Protocol (MCP) servers using Claude. - wolfeidau/go-mcp-evals

Been working on my own evals tool, for learning, as well as to have some control over how things work. LLMs really are a "unique" system to work with. Still new so lots to improve github.com/wolfeidau/go... #golang #evals #mcp

6 months ago 0 0 0 0

Can you change the expiration of an object yet? Needing to copy the object to extend it's expiration is a pain.

9 months ago 0 0 0 0
Preview
Amp Everything will change.

Just found out about ampcode.com new coding agent?! from @sourcegraph.com super keen to try it πŸ™ for invite. Also love the site design πŸ€– #agents #ai

11 months ago 2 0 1 0
Preview
Hardening GitHub Actions: Lessons from Recent Attacks | Wiz Blog Build resilient GitHub Actions workflows with insights from real attacks, missteps to avoid, and security tips GitHub’s docs don’t fully cover.

In light of recent GitHub Actions incidents (Ultralytics, tj-actions...), I wrote up a practical guide to hardening for @wizsecurity.bsky.social

Covers permissions, secrets, 3rd-party Actions, ++

Use it to avoid learning these lessons the hard way:
www.wiz.io/blog/github-...

11 months ago 7 4 0 0
Post image

Breakfast of champions and voting is done βœ… Great morning for a walk! #auspol

11 months ago 0 0 0 0
Post image

What we are seeing is stricter enforcement.

So expect fewer software engineers (who can an often log on and do some remote while being a tourist!) to visit the US

In the past, this was not enforced: now it clearly is. And neither ESTA nor other tourist visas allow working remote, yes

11 months ago 54 14 7 6

Been really enjoying using MCP servers, it is interesting how they extend the capabilities of LLMs. That said, like anything you need to be careful and only MCP servers from trusted sources and ensure you review/vet code and docs they produce. πŸ€–

Overall I think they are positive. #MCP #AI #llms

11 months ago 1 0 0 0

Yeah I also encountered this recently, I think what was most frustrating and concerning was how it rejected the credentials...

1 year ago 0 0 0 0

Working in an office in the city for a few days certainly is a change of pace. Great being able to chat with colleagues without a box around everyone πŸ§‘β€πŸ’»

1 year ago 0 0 0 0
Advertisement
Preview
Go 1.24 interactive tour Weak pointers, faster maps, directory-scoped access, and more.

This interactive tour is fantastic way to learn about the new features in Go 1.24 antonz.org/go-1-24/ #golang

1 year ago 1 0 0 0

We can only hope. #aws #ipv6

1 year ago 3 0 0 0

AWS just released RCP examples to prevent OIDC misconfigurations from many third-party vendors. 😍 github.com/aws-samples/...

This prevents the problem I wrote about here: www.wiz.io/blog/avoidin...

1 year ago 25 6 0 1

Can't help but thank @anthropic.com Claude some times, using it to rubber duck an idea and it provides some options, writes some tests and benchmarks so I can tweak things further without writing whole lot of boilerplate. #golang #llms

1 year ago 1 0 0 0
Preview
GitHub - deepseek-ai/DeepSeek-R1 Contribute to deepseek-ai/DeepSeek-R1 development by creating an account on GitHub.

This deepseek r1 one thing really has blown up, props to the team behind the model. Publishing this paper, and releasing the model with open weights is really cool. Well worth a read over the GitHub repo github.com/deepseek-ai/... #deepseek #llms

1 year ago 3 0 0 0
GitHub - wolfeidau/lambda-otel-container: AWS Lambda deployed in a container with the OTEL extension. AWS Lambda deployed in a container with the OTEL extension. - wolfeidau/lambda-otel-container

Spent a couple of hours hacking on open telemetry for AWS lambda functions, what a fun journey, so much out of date information.

I am surprised I got it working, I had to go back to an old revision as things take a while to propagate. πŸ˜…πŸ”πŸͺ“ #AWS #OpenTelemetry #golang github.com/wolfeidau/la...

1 year ago 2 0 0 0

β€œhow do i become more technical?” fuck something up & fix it. repeat

1 year ago 353 48 25 16
Post image

I definitely need to play with Zig now to decide how I feel about it.
I understand Mitchell Hashimoto's verdict of "it's funner than Rust" somewhat now, and I suspect I'll agree (not a high bar!).
I wonder how big those binaries will end up.

1 year ago 3 1 2 0
benchcmp command - golang.org/x/tools/cmd/benchcmp - Go Packages

I tend to do a manual comparison of two tags, or revisions using pkg.go.dev/golang.org/x... but you can go as far as using git bisect. You can take it even further like medium.com/@fzambia/bis... lots of options around git bisect. πŸ˜…

1 year ago 1 0 0 0

When ever I start looking at performance of the code I am working on, I always find a few bugs. Adding a quick benchmark validates the codes behavior under load, and measures it's performance. As a bonus it also leaves a baseline for future changes. πŸ˜…πŸŽοΈπŸ” #golang

1 year ago 1 0 1 0
Advertisement

Gemini is now pinned on the top of my gmail app, do you need it? Nope... Well your getting it anyway... Can you turn it off? Nope... Forcing #AI on your users is all the rage... #gmail #google This video is so on point it hurts.

1 year ago 1 0 0 0

I am surprised just how useful @anthropic.com claude is when building out a GRPC / connectrpc.com service. It is a pretty steep learning curve, even for those with lots of backend experience, however the LLM helps you to navigate the new terminology and get things working quickly. πŸ˜… #golang #grpc

1 year ago 1 0 0 0

It has been interesting how clueless @sourcegraph.com Cody is when editing cedar policies, and schema files. I need to figure out how to disable it for this file type as it is really annoying. Mostly of the time it is super helpful lol. #ai #coding

1 year ago 1 0 1 0
Cedar Language Playground

Currently catching up on the cedar policy language, which after the initial hype seems to have stalled a bit. That said with the help of some community resources, GitHub searches and the playground I managed to get it working. www.cedarpolicy.com/en/playground is really handy. #AWS #cedar #golang

1 year ago 2 0 0 0