This file contains 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
scp someFile someUser@someServer:/somePath/someFile |
This file contains 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
# Remove all files and directories (recursive removal) | |
rm -rf path/to/folder | |
# Remove / Delete directory called /tmp/foo | |
rmdir /tmp/foo |
This file contains 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
//http://wp.tutsplus.com/tutorials/theme-development/creating-a-wordpress-post-text-size-changer-using-jquery/ | |
// This prevents the execution of the code before the document is finished loading. | |
jQuery(document).ready(function() { | |
// The 'A+' element in the page is associated with the jQuery click() event. | |
jQuery('#increase-font').click(function(event) { | |
// This prevents the default action of the click() event from being triggered. | |
event.preventDefault(); | |
// The jQuery each() event interates over each elements belonging to the 'resize' class | |
jQuery('.resize').each(function() { | |
// Call to a custom function to increase the text size |
This file contains 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
function nc_opt_list_communes() { | |
$options = array( | |
'98812' => 'Boulouparis', | |
'98870' => 'Bourail', | |
'98813' => 'Canala', | |
'98830' => 'Dumbéa', | |
'98881' => 'Farino', | |
'98815' => 'Hienghène', | |
'98816' => 'Houaïlou', | |
'98811' => 'îles Belep', |
OlderNewer