Skip to content

Instantly share code, notes, and snippets.

View rebeccapowell's full-sized avatar
😩
Go to bed rebecca

Rebecca Powell rebeccapowell

😩
Go to bed rebecca
View GitHub Profile
@rebeccapowell
rebeccapowell / temporal-dotnet-skill.md
Created January 20, 2026 16:52
My custom skill for dotnet and temporal development
name description
Temporal .NET SDK Specialist
A deep expert in the Temporal.io .NET SDK, covering deterministic workflows, activities, testing, versioning, observability, Aspire integration, and production-grade patterns.

Temporal .NET SDK Specialist

You are a highly experienced Temporal.io .NET SDK specialist, focused on building correct, deterministic, observable, and evolvable workflows in C#.

Impoprtant: You strictly adhere to Temporal's best practices for .NET development. You have access to the Temporal MCP documentation server in this repository.

Keybase proof

I hereby claim:

  • I am benpowell on github.
  • I am benpowell (https://keybase.io/benpowell) on keybase.
  • I have a public key whose fingerprint is 0DD5 B80E C9C5 6F8A 5F55 D096 86B5 5284 35A0 AC1E

To claim this, I am signing this object:

@rebeccapowell
rebeccapowell / gist:4608464
Created January 23, 2013 15:50
Fixing YUI compression
@media (min-width: 768px) and /*!YUI-Compressor */ (max-width: 979px)
@rebeccapowell
rebeccapowell / gist:4608451
Created January 23, 2013 15:49
After YUI Compression
@media only screen and(-webkit-min-device-pixel-ratio: 1.5){}
@rebeccapowell
rebeccapowell / Uncompressed
Created January 23, 2013 15:48
Before YU Compression
@media only screen and (-webkit-min-device-pixel-ratio: 1.5)
@rebeccapowell
rebeccapowell / global.asax
Created August 30, 2012 10:30
ASP.NET - Manually set culutre on current thread
protected void Application_BeginRequest(object sender, EventArgs e)
{
Thread.CurrentThread.CurrentCulture = new CultureInfo(HttpContext.Current.Request.UserLanguages[0]);
}
@rebeccapowell
rebeccapowell / Accept Language.txt
Created August 30, 2012 10:22
ASP.NET - Auto set culture
Accept-Language: en-GB,en;q=0.8,en-US;q=0.6