Skip to content

Instantly share code, notes, and snippets.

View moeloubani's full-sized avatar

Moe Loubani moeloubani

View GitHub Profile
@moeloubani
moeloubani / playwright.mdc
Last active April 27, 2025 01:50
Cursor (and others) Rule for Working with the official Microsoft Playwright MCP
---
PLAYWRIGHT_MCP_GUIDELINES
---
description: Playwright MCP Usage Guidelines (Comprehensive)
globs: **/*
filesToApplyRule: **/*
alwaysApply: true
---
These guidelines detail the usage and parameters for Playwright MCP tools, based on the official documentation, to ensure effective browser interaction.
@moeloubani
moeloubani / gist:0bc74a2bd3feb40414bb
Created March 21, 2016 08:15
Settings ranges as checkboxes in FacetWP
function hijrt_facetwp_index_row( $params, $class ) {
if ( 'average_workout_length' == $params['facet_name'] ) {
$raw_value = (int) $params['facet_value'];
if ($raw_value > 30) {
$params['facet_value'] = 'over-30';
$params['facet_display_value'] = 'More than 30 minutes';
}
elseif ( $raw_value >= 20 ) {
$params['facet_value'] = '20-30';