10 Websites to Compare Google vs Bing Results Side By Side

2009-10-17 5 min read Uncategorized

10 Websites to Compare Google vs Bing Results Side By Side Thankfully, the web doesn’t make us take sides. We can have the best of every world. With the launch of Bing, we had another search engine to crawl the web with. A few months and millions of searches down the line, Bing has also built up its legion of users (and fans). It’s Google vs Bing now. The former is still The search engine while the latter calls itself a decision engine.

Continue reading

Twitter is overcapacity.

2009-10-15 1 min read Uncategorized

Just now got this on twitter. Nice image to display when overcapacity.

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2009/10/Over_capacity_1255572830327.jpg"><img class="size-thumbnail wp-image-1326" title="Over_capacity" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Over_capacity_1255572830327-150x150.jpg" alt="Over_capacity" width="150" height="150" />

Adding dates to your photos.

2009-10-12 1 min read Linux Photo
Add date in the photograph with a perl script.

#!/usr/bin/perl

if ($#ARGV < 0 )
{
print &#8221;$#ARGV \n&#8221;;
print &#8221;Usage $ARGV[0] filename/dir\n&#8221;;
exit -1;
}

@files = `find &#8221;$ARGV[0]&#8221; -iname &#8221;*jpg&#8221; -print`;

if ($#ARGV > 3 ) { $cmd = 1;}
$count = 1;
foreach $file (@files) {
chomp ($file);

Continue reading

Stop long commands wrapping around and over-writing itself in the Bash shell

2009-10-12 1 min read Bash

Stop long commands wrapping around and over-writing itself in the Bash shell

shopt -s checkwinsize

add the command either in /etc/profile or ~/.bash_profile so that this is available to your shell.

* View this command to comment, vote or add to favourites * View all commands by settermjd

commandlinefu.com

by David Winterbottom (codeinthehole.com)

URL: <a href="http://feedproxy.google.com/~r/Command-line-fu/~3/_0MaJbX9Jvo/stop-long-commands-wrapping-around-and-over-writing-itself-in-the-bash-shell">http://feedproxy.google.com/~r/Command-line-fu/~3/_0MaJbX9Jvo/stop-long-commands-wrapping-around-and-over-writing-itself-in-the-bash-shell<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta <ul class="zemanta-article-ul"> <li class="zemanta-article-ul-li"><a href="http://www.slumpedoverkeyboarddead.com/2009/08/22/reading-multiple-files-with-bash/">Reading Multiple Files with Bash (slumpedoverkeyboarddead.com) <div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/75f993fa-150b-4fdb-9cf5-d69437b87521/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/reblog_e13.png" alt="Reblog this post [with Zemanta]" /><span class="zem-script more-related pretty-attribution">

Continue reading

Diwali lighiying with cheap ping-pong balls.

2009-10-11 2 min read Uncategorized

If you need some cheap and novel ambient lighting for your next party, you&#8217;re only a box of ping-pong balls and a string of lights away from solving your lighting worries.

Instructables user AdvancedMischief needed some novel lighting and was impressed with the diffusing power of the simple ping-pong ball:

At some point last semester I realized that ping pong balls make great diffusers and look really cool when they are glowing. Next we concluded that a hundred glowing ping pong balls would look even cooler. It was at about this point I decided that my apartment was in dire need of some ping pong ball lights.

Continue reading

Using column to format a directory listing

2009-10-09 1 min read Linux

<span style="color: #000000;">Using column to format a directory listing
<span style="color: #000000;">$ (printf "PERMISSIONS LINKS OWNER GROUP SIZE MONTH DAY HH:MM PROG-NAME
<span style="color: #000000;">\n" \ ; ls -l | sed 1d) | column -t
<span style="color: #000000;">Using column to format a directory listing

<span style="color: #000000;"> * View this command to comment, vote or add to favourites
<span style="color: #000000;"> * View all commands by unixmonkey1299

<span style="color: #000000;">commandlinefu.com

Continue reading
Older posts Newer posts