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
| <html> | |
| <head> | |
| <title>XAMPP Home</title> | |
| </head> | |
| <style type="text/css"> | |
| body { | |
| background: #fcfcfc; | |
| color: #111; |
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
| #!/bin/sh | |
| #Check the Drive Space Used by Cached Files | |
| du -sh /var/cache/apt/archives | |
| #Clean all the log file | |
| #for logs in `find /var/log -type f`; do > $logs; done | |
| logs=`find /var/log -type f` | |
| for i in $logs |
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
| /** | |
| * Returns a user meta value | |
| * Usage [um_user user_id="" meta_key="" ] // leave user_id empty if you want to retrive the current user's meta value. | |
| * meta_key is the field name that you've set in the UM form builder | |
| * You can modify the return meta_value with filter hook 'um_user_shortcode_filter__{$meta_key}' | |
| */ | |
| function um_user_shortcode( $atts ) { | |
| $atts = extract( shortcode_atts( array( | |
| 'user_id' => get_current_user_id(), | |
| 'meta_key' => '', |