Forum: PCI and Add-In Cards Mar 16th, 2009 |
| Replies: 4 Views: 1,414 Infact with businesses going global video conferencing technologies have picked up steam and Video over IP has emerged as a good option
LINK SNIPPED |
Forum: Growing an Online Community Mar 16th, 2009 |
| Replies: 5 Views: 1,206 yes skype and google talk primarily |
Forum: Search Engine Optimization Feb 26th, 2009 |
| Replies: 10 Views: 940 Grey hat techniques are those where there is no clear definition of right or wrong. Paid links for example can be considered grey hat. So can be duplicate content. |
Forum: RSS, Web Services and SOAP Feb 24th, 2009 |
| Replies: 4 Views: 1,805 Feedburner provides you widgets to embed RSS feed content on your website as well.
Goodluck |
Forum: RSS, Web Services and SOAP Feb 24th, 2009 |
| Replies: 3 Views: 1,178 You can feed your RSS feed to Yahoo Pipes (pipes.yahoo.com), manipulate then using the operators available and then create filtered output feed.
Burn the output feed on feedburner.com and then... |
Forum: HTML and CSS Feb 21st, 2009 |
| Replies: 3 Views: 440 There are several ways to do it. Here are a few:
#1. Take the word generated html and use the tool available at http://wordoff.org/ to strip all the dirty html
#2. Use this site... |
Forum: JavaScript / DHTML / AJAX Feb 20th, 2009 |
| Replies: 2 Views: 857 You can achieve that easily using window.open() javascript function.
If you want to use a modal dialog you can use window.showModalDialog("calc.php");
but I think it only works in IE. You can... |
Forum: Search Engine Optimization Feb 20th, 2009 |
| Replies: 10 Views: 940 White Hat SEO is doing SEO which adheres to the guideliens published by search engines. For example creating doorway pages, keyword stuffing, invisible text is not white hat and goes into black hat... |
Forum: Perl Feb 20th, 2009 |
| Replies: 3 Views: 2,078 If you execute your script at ~>Parse.pl a b c
you get the command line values in the @ARGV array which you can run through in a loop. |
Forum: Perl Feb 20th, 2009 |
| Replies: 2 Views: 704 $cmd = 'df -h';
exec { $cmd };
You can also use the system() function in perl. |