Guides

Tutorials

Step-by-step technical guides on Linux, WordPress, Git, Apache, and the rest of the open-source toolkit.

Tutorials

OSX / Mac OS Empty Trash

To empty trash on Mac OS from terminal: rm -rf ~/.Trash/* clears all files. Use Shift+Command+Delete to permanently delete files without moving to trash. For iC…

1 min read
Tutorials

WordPress Create Jump Menu

Create select dropdown navigation in WordPress by registering a menu location and using wp_nav_menu with fallback. Add JavaScript to detect select change: docum…

3 min read
Tutorials

WordPress Get and Set Page Visit Count

Store page views in post meta: add_post_meta(post_id, ‘views’, 1, true) or update_post_meta. Increment on page load: $views = get_post_meta($post->ID, ‘views’,…

3 min read
Tutorials

The Git Auto Pull Push Script

Bash script for automatic git operations: watch ‘git pull && git add -A && git commit -m “Auto commit” && git push’. Or use cron: */5 * * * * cd /repo && git pu…

4 min read
TechWriteUps Tutorials

Black Arch Linux

Black Arch Linux is a penetration testing distribution built on Arch Linux, providing security professionals and researchers with hundreds of tools. Its rolling…

3 min read
Tutorials

Fedora Fix Multilib Version Problems

Multilib conflicts occur when 32-bit and 64-bit library versions mismatch. Run: yum install yum-plugin-priorities to enable priority plugin. Edit /etc/yum/plugi…

4 min read