Writing

Tech WriteUps

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
Writeups

I Wish I Could Think Simple

The curse of an overactive mind is the inability to simply be. Everything becomes a problem to solve, a system to understand, a pattern to analyze. Simplicity i…

1 min read
Tutorials

Protect Your Apache Directory

Use .htaccess with basic auth: create .htpasswd file with htpasswd command. Configure .htaccess: AuthType Basic, AuthName, AuthUserFile path, Require valid-user…

1 min read
Tutorials

Mount LVM Partition in Ubuntu

First, list LVM volumes: lvdisplay. If not activated, run: lvchange -ay /dev/volume_group/logical_volume. Create mount point: mkdir -p /mnt/lvm_mount. Mount par…

1 min read
TechWriteUps

Steve Jobs — An Icon

Steve Jobs demonstrated that technology could be beautiful, personal, and accessible. His obsession with design details influenced an entire industry. Jobs show…

2 min read
Tutorials

Installing Git on your server

Install git-core on server. Create bare repository: git init –bare /path/to/repo.git. Set proper permissions: chown -R git:git /path/to/repo.git. On client, cl…

2 min read