Skip to content

Instantly share code, notes, and snippets.

View MJomaa's full-sized avatar

Mahmut Jomaa MJomaa

View GitHub Profile
@MJomaa
MJomaa / generated-logo.svg
Created June 18, 2026 08:50
PR 4823 DFY website fulfillment QA artifacts
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MJomaa
MJomaa / 01-local-funnels-list.svg
Created June 8, 2026 10:51
PR 4525 local browser QA screenshots 2026-06-08T10:51:31Z
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MJomaa
MJomaa / 02-credentials-filled.svg
Created June 8, 2026 10:19
PR 4525 blocked auth QA screenshots
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MJomaa
MJomaa / BadBotMiddleWare.cs
Last active April 25, 2025 02:35
Middleware to block bad bots in ASP.NET 5
public class BadBotMiddleWare
{
private readonly RequestDelegate _next;
public ImmutableHashSet<string> List { get; set; }
public BadBotMiddleWare(RequestDelegate next)
{
_next = next;
List = new[]
{