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

Block or report theonlydaleking

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. cf7-prevent-multi-submit.php cf7-prevent-multi-submit.php
    1
    // Prevent Multi Submit on WPCF7 forms
    2
    add_action( 'wp_footer', 'mycustom_wp_footer' );
    3
    
                  
    4
    function mycustom_wp_footer() {
    5
    ?>
  2. Using git submodules to version-cont... Using git submodules to version-control Vim plugins
    1
    # Using git-submodules to version-control Vim plugins
    2
    If you work across many computers (and even otherwise!), it's a good idea to keep a copy of your setup on the cloud, preferably in a git repository, and clone it on another machine when you need.
    3
    Thus, you should keep the `.vim` directory along with your `.vimrc` version-controlled.
    4
    
                  
    5
    But when you have plugins installed inside `.vim/bundle` (if you use [pathogen](https://github.com/tpope/vim-pathogen)), or inside `.vim/pack` (if you use Vim 8's packages), keeping a copy where you want to be able to update the plugins (individual git repositories), as well as your vim-configuration as a whole, requires you to use git submodules.
  3. goCrack goCrack Public

    A password cracker POC in gaoling

    Go

  4. rustyCracker rustyCracker Public

    A brute Forcer POC in Rust

    Rust