Writing

Tech WriteUps

TechWriteUps

Weekly DIY and Workshops

Weekly DIY sessions and hands-on workshops accelerate learning through practical experience. Whether electronics, woodworking, or software, maker communities pr…

2 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
TechWriteUps

WordPress Security

WordPress powers nearly a third of the web, making it an attractive target for attackers. Security begins with keeping WordPress core, themes, and plugins updat…

3 min read
Writeups

Starting a Start Up

Starting a startup is choosing uncertainty over security, vision over comfort. It’s the exhilaration of building something from nothing, the terror of potential…

2 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
TechWriteUps

My Interaction with Pi and Arduino

Raspberry Pi and Arduino democratized hardware prototyping for software developers. Arduino’s simplicity lowered barriers to electronics, while Pi’s full operat…

2 min read
TechWriteUps

Tricks to Prevent Behavioural Tracking

Featured in MyRepublica, this guide explores practical techniques for preventing ISP tracking and behavioral advertising. Topics include VPN usage, DNS privacy,…

1 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