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
| Precious Jesus - Sinach | |
| Precious Jesus, | |
| I thank You for the blood | |
| Precious Jesus, | |
| I thank You for Your body broken for me | |
| I remember all You've done for me | |
| Your perfect sacrifice and victory |
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
| A simple script to streamline the process of adding changes, committing them with a message and pushing to your Git repository. | |
| Here's a basic script in Bash that accomplishes this: | |
| ### Bash Script | |
| 1. Create a new file named `git-commit-push.sh`. | |
| 2. Add the following content to the file: | |
| ``` |
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
| ### Hard Refresh | |
| ## End Service (If it is running) | |
| sudo systemctl stop bluetooth.service | |
| ## Removes Hardware Emulation | |
| sudo systemctl unmask bluetooth.service | |
| ## Start Service | |
| sudo systemctl start bluetooth.service |
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
| Create an account on GitHub. | |
| Step 1 - Create a Personal Access Token on Github | |
| To have access to your repositories and authenticate yourself, you need to create a Personal Access Token on Github. | |
| Step 2 - Clone using personal token | |
| git clone https://{YOUR_PERSONAL_TOKEN}@github.com/{YOUR_USERNAME}/repo.git | |
| Step 3 - Update your git identity | |
| git config --global user.email "lawrence@ikhidero.com" |
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' => '', |