This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected function bulk_actions( $which ) { | |
if( $which == 'top' || 'bottom' == $which ) { | |
?> | |
<div class="alignleft actions bulkactions"> | |
<label class="screen-reader-text" for="bulk-action-selector-top">Select bulk action</label> | |
<select id="bulk-action-selector-top" name="action"> | |
<option value="-1">Default option</option> | |
<option value="1">Option 1</option> | |
<option value="2">Option 2</option> | |
</select> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uname -m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3083_i386.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3083_amd64.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install sublime-text_bulid-3083_amd64.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UserName <br /> | |
<input type="text" id="username" name="username" class="multiple-attr-remove" /> | |
<br /><br /> | |
UserEmail <br /> | |
<input type="text" class="multiple-attr-add" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( document ).ready(function() { | |
// Remove multiple attributes | |
$( 'input.multiple-attr-remove' ).removeAttr( 'id name' ); | |
// Add multiple attributes | |
$( 'input.multiple-attr-add' ).attr( {'id': 'useremail', 'name': 'useremail' } ); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check for Brew related problems | |
mariadanieldeepak@Marias-MacBook-Pro ~ $ brew doctor | |
# Update Homebrew and all new forumulae | |
mariadanieldeepak@Marias-MacBook-Pro ~ $ brew update | |
# Install MySQL | |
mariadanieldeepak@Marias-MacBook-Pro ~ $ brew install mysql | |
# Secure MySQL installation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( document ).ready(function() { | |
$( document ).on("OptinMonsterBeforeShow", function(a, b, c) { | |
// Remove all optins whose ID begins with 'om-' | |
$( "[id^='om-']" ).remove(); | |
}); | |
}); |
OlderNewer