Skip to content
View plasticmind's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report plasticmind

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. S3-Site-Backups S3-Site-Backups Public

    Archive and backup a website/database using Amazon S3

    PHP 28 11

  2. bulk-screenshot-capture bulk-screenshot-capture Public

    Python script for capturing screenshots of web pages from a bulk list of urls.

    Python

  3. melody melody Public

    Forked from openmelody/melody

    Melody is an open source content management and publishing system derived from the popular blogging tool Movable Type. Melody is for those who find value in belonging to, supporting and contributin…

    Perl 1 1

  4. site-practicaldesignsystems.com site-practicaldesignsystems.com Public

    Consulting practice focused on reducing friction between engineering and design.

    Nunjucks 2

  5. Adds a confirmation dialogue to the ... Adds a confirmation dialogue to the WordPress publish button.
    1
    /* = Add a "molly guard" to the publish button */
    2
    
                  
    3
    add_action( 'admin_print_footer_scripts', 'sr_publish_molly_guard' );
    4
    function sr_publish_molly_guard() {
    5
    echo <<<EOT
  6. Hash Cache Hash Cache
    1
    function my_load_meta() {
    2
      $script = '/js/script.js';
    3
      wp_enqueue_script( 'my-tools', get_template_directory_uri().$script, null, my_version_hash($script) );
    4
      $stylesheet = '/style.css';
    5
      wp_enqueue_style( 'my-style', get_template_directory_uri().$stylesheet, null, my_version_hash($stylesheet) );