Skip to content
View onwp's full-sized avatar
🚀
saas
🚀
saas

Block or report onwp

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. jump-to-sass-definition jump-to-sass-definition Public

    A Visual Studio Code extension that enables quick navigation to SASS/SCSS definitions through keyboard shortcuts (Cmd/Ctrl+click). Enhances development workflow by providing instant jumps to variab…

    TypeScript

  2. jump-to-php-definition jump-to-php-definition Public

    A lightweight VS Code extension that provides Go to Definition functionality for PHP files.

    TypeScript

  3. keyword-finder keyword-finder Public

    Keyword finder web app

    TypeScript

  4. image-compressor image-compressor Public

    Cross-platform image compression tool

    JavaScript

  5. Bash script to find unused SCSS vari... Bash script to find unused SCSS variables
    1
    #!/usr/bin/env bash
    2
    # HOW TO USE
    3
    # Save code to file
    4
    # Run as "SCRIPT_FILE_NAME SASS_DIRECTORY"
    5
    # e.g "./find_unused_scss_variables.sh ./sass"
  6. Find unused CSS classes in html,php,... Find unused CSS classes in html,php,js files for multiple themes. Run this script in "themes" directory of Wordpress
    1
    #!/bin/bash
    2
    for dir in $(ls -d */ | grep -v cache | grep -v node_modules | cut -f1 -d'/'); do
    3
        (
    4
            echo "checking $dir :";
    5
            pushd "$dir" &>/dev/null || {