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

Block or report teknikqa

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. Bulk delete Last.FM scrobbles & love... Bulk delete Last.FM scrobbles & loved tracks
    1
    // On the Last.FM website go to the page which lists the tracks that you have loved.
    2
    // Open Chrome DevTools (or Firefox or any modern browser that has a built in Javacript Console)
    3
    // and run the following command.
    4
    // This basically clicks on all the delete buttons on the page and reloads the page.
    5
    jQuery('.love-button--loved').each(function(_, b) {
  2. Convert a WordPress plugin from a ne... Convert a WordPress plugin from a network activated state to a site activated one.
    1
    <?php
    2
    /**
    3
     * Convert a plugin from a network activated state to a site activated one.
    4
     *
    5
     * On a multisite WordPress installation, there is no simple way to deactivate a
  3. Disable the default post type on sit... Disable the default post type on sites that do not need it.
    1
    <?php
    2
    /**
    3
     * WordPress Theme constants and setup functions
    4
     *
    5
     * @package WPCustomTheme