Author Archives: Ahmed Tawfik

Unknown's avatar

About Ahmed Tawfik

Cybersecurity Professional, Systems Engineer, OSS & Linux Geek

Some useful Google Chrome extensions that I use – Part 2

SmoothScroll: As the name indicates, it allows smooth scrolling of the web page, makes chrome more elegant 🙂 MiddleButtonScroll: A feature that I really wanted and couldn’t find at first on Chrome is the ability to click the middle mouse button and … Continue reading

Tagged , , , , | Leave a comment

Some useful Google Chrome extensions that I use – Part 1

AdThwart: Blocks ads based on Firefox Adblock plus filter engine. I prefer this one to the others as it works exactly the same as Adblock plus on Firefox, and other seem buggy, up till now. Google Mail Checker Plus: Checks your Gmail, … Continue reading

Tagged , , , , | Leave a comment

$@ is not "$@"

when you want to pass multiple parameters through you shell script, you use $@ex: #! /bin/shecho $@ and then execute this file: ./script1 hello world the script will prints “Hello world” But be ware, $@ is not “$@” !! The … Continue reading

Tagged | Leave a comment

Restarting USB Storage Modules in Ubuntu

“sudo modprobe -r usb_storage““sudo modprobe usb_storage“It’s only because I had a problem in mounting any USB storage, it happened with me onceand I had to restart my machine, and I hate having to do so 🙂Source

Tagged , , | 1 Comment