Skip to content
View fanksin's full-sized avatar
Block or Report

Block or report fanksin

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

  1. deck deck Public

    Forked from sfx101/deck

    DECK is a powerful and high performant local web development studio unlike any other.

    Svelte 2

  2. MacOS Desktop Icons on Left. It rear... MacOS Desktop Icons on Left. It rearranges your desktop icons, keeps it aligned to the left side of screen.
    1
    -- https://gist.github.com/mrienstra/8330528
    2
    -- Based on http://www.tuaw.com/2012/12/24/applescript-desktop-icon-race/
    3
    -- Inspired by http://namesakecomic.com/comic/happy-new-year-from-namesake/#comment-1182035013
    4
    
    
    5
    -- Rearranges Desktop icons to flow from left to right, top to bottom.
  3. 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"
  4. 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 || {
  5. Git top 10 files in repo Git top 10 files in repo
    1
    git rev-list --objects --all | grep -f <(git verify-pack -v .git/objects/pack/*.idx| sort -k 3 -n | cut -f 1 -d " " | tail -10)