Roy Sharon
A highly experienced freelance programmer and consultant, specializing in rescue projects with mobile related technologies, including Objective-C (iPhone), Java (Android), Javascript and HTML 5.A keen skipper and a master diver. Sailing around the world, programming on course.-
Recent Posts
Archives
Categories
Meta
Tag Archives: Unix
Unix Tidbit: Most Requested Web Resources
This is a quick and dirty way to find the most requested static resources of your site (e.g., images or javascript files), using Unix shell commands: grep -oE “GET /[^ \t]+\.(gif|png|js|css)” /var/log/httpd/access_log \ | sort | uniq -c | sort … Continue reading
Unix Tidbit: Color Coded Directory Listing
Each time I move onto a new Unix machine (I recently bought a new iMac!), I change the look of the terminal directory listings, from this: to this: It’s quite simple — I edit one of the bash config files … Continue reading