Please help me choose a logo for our startup Levoma. Vote, rate, comment on the following Logo Designs.

Big Corps losing high executive to Google and Startups

— By

Very recently, Venture Beat carried an article – Chief Architect Brad Fitzpatrick left Six Apart – a Silicon Valley start-up that offers several blogging software platforms, including Movable Type, Typepad, LiveJournal etc.

It is believed that Fitzpatrick, after selling his company – Danga Interactive to Six Apart, got bored with his team members and misses the excitement of a fast-paced, innovative environment. Speculations are high that he will join Google. Recently, LiveJournal faced quite a backlash after the mass deletion of several journals with sex-themed groups.
Read the full article →

Google Mashup Editor

— By

Google Mashup EditorThe Google Mashup Editor (GME) allows developers to quickly build and deploy compelling web applications. Besides being able to host your mashups on a sub-domain at googlemashups.com, mashups created with GME can also be published to a hosted environment. GME provides simple tools and features that allow you to create mashups in minutes.

Familiarity with XML, Javascript, CSS, HTML is all that you need to start some cool mashups. Of course, the are Javascript API for the advanced developers.

Read the full article →

US outsourcing implodes, India looking for pastures overseas even though it ain’t that green

— By

OutsourcingIt wasn’t a total surprise but I felt a little awkward when I read the news about a big Indian Outsourcing giant setting up a customer-service call center in Reno, Ohio (US). This is at a juncture when the western and the european world feels India and China like itches that you can’t really scratch; and when a tangent of love-hate relationship is growing organically on its own.

The Indian conglomerate Tata Group has setup a 250 seater call center to serve the online travel agency Expedia across the street from an Army Reserve center and next to a farm in Reno, Ohio. It definitely looks like ‘Outsourcing’ is imploding back to the US.

Read the full article →

TemplateBrowser is pirating your WordPress Themes

— By

Few days back, I read 5thirtyOne reporting about TemplateBrowser re-distributing WordPress Themes (and Joomla Templates) and adding malware links. Templates Browser have modified the public blog themes in such a way as to exploit the end user by inserting hidden spam or malware links and removing the Author credits.

Read the full article →

Spam and how it all started

— By

“We invite you to come see the 2020 and hear about the DECSystem-20 family”, wrote Gary Thuerk of the Digital Equipment Corporation in an effort to let people in the technology field to know about his company. That email written in 1978 marked the beginning of the unsolicited junk emails which is notoriously known in the internet term as SPAM.

After selecting six hundred West Coast addresses, Thuerk realized that he would never have time to call each one of them, or even to send out hundreds of individual messages. Then another idea occurred to him: what if he simply used the network to dispatch a single e-mail to all of them?

The next moment he finished writing the message and hit the “Send” button, he became the father of SPAM.

Read the full article →

Get your invites to 8Apps, FlowChart, iMedix and I’m in like with you

— By

Download FREE Adobe AIR Book

— By

Where do Adobe® AIR™ fits in a Web ApplicationAuthored by Mike Chambers, Danny Dura, Kevin Hoyt and published by O’ReillyAdobe Integrated Runtime for JavaScript Developers Pocketguide – is for HTML and JavaScript developers who wishes to get started with Adobe® AIR. Before it was named Adobe® AIR™, it was popularly known as Adobe Apollo.

Adobe® AIR

Adobe® AIR™, erstwhile code-named Apollo, is a cross-operating system runtime that allows developers to use their existing web development skills to build and deploy rich Internet applications to the desktop.

The book Adobe Integrated Runtime for JavaScript Developers has the following chapters:

  1. Introduction to the Adobe Integrated Runtime (AIR)
  2. Getting Started with AIR Development
  3. Working with JavaScript and HTML Within AIR
  4. AIR Mini Cookbook
  • Command line tools (Appendix A)
  • AIR JavaScript Aliases (Appendix B)

This book gives a general overview of Adobe AIR, shows how to set up your development environment to start building applications, provides an overview of the HTML and JavaScript engines within AIR, and shows how to perform a number of common programming tasks within AIR. This book can be best used as an introduction to and overview of Adobe® AIR™, as well as a step by step guide to getting started with AIR Application development. The book, including all text and code samples, is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.

Download the book for FREE

REFERENCES

Note: Just in case the above download link goes off or do not work, here is a secondary back-up copy on my server.

Adobe’s ColdFusion 8 released

— By

ColdFusion 8Adobe ColdFusion 8, popular among beta testers as the “Scorpio” was released today.

Besides many other new features, ColdFusion 8 also introduces an Eclipse plug-in debugger. You can use it to set breakpoints, watch variables, and step through code, making it easier to debug application code.
Read the full article →

Robots.txt, meta tags; Blogger’s Ninja Tool to control how search engines index your site

— By

Robots

I’ve been doing some bit of my own research on how to weed out non-usable contents and show just the good contents to search engines. I began to use robots.txt sometime back but they are limited to just disallow of some folders (like my wordpress installation folder – “wp”). The other day, I was reading the Robots Exclusion Protocol (REP) on Google’s own Blog, and learnt a lot that was missing from my understanding of how you can take control of Search Engines indexing your site’s content.

Meta Tags

Google have recently introduced a new META tag that will allow us to set when we want the page to be removed from the main Google Web Search results. For instance, if you want to remove a particular page after end of this year, then add the following Meta tag to your page (the date format is RFC 850);

META NAME="GOOGLEBOT" CONTENT="unavailable_after: 31-Dec-2007 24:00:00 GMT

However, the REP Meta tags works only for HTML Pages. Nonetheless, Google gave us an option to control access to other documents – Adobe PDF Files, Video and Audio file and many other types. This thus extends the same flexibility for specifying per-URL tags to all other file type. You’ve to simply add any supported Meta tag to a new X-Robots-Tag directive in the HTTP Header used to serve the file.

Here are some examples;

→ Don’t display a cache link or snippet for this item in the Google search results
X-Robots-Tag: noarchive, nosnippet

→ Don’t include this document in the Google search results
X-Robots-Tag: noindex

→ Tell us that a document will be unavailable after 31st Dec 2007, 12:00 pm GMT
X-Robots-Tag: unavailable_after: 31 Dec 2007 24:00:00 GMT

You can combine multiple directives in the same document.

→ Do not show a cached link for this document, and remove it from the index after 31st Dec 2007, 12:00 pm GMT
X-Robots-Tag: noarchive
X-Robots-Tag: unavailable_after: 31 Dec 2007 24:00:00 GMT

Robots.txt

Robots.txt allows you to control how search engines access your web site. It allows us to control access at multiple levels — the entire site, through individual directories, pages of a specific type, down to individual pages.

Googlebot specific robots.txt

Google Robots, unlike other bots, allow the use of wildcards – * – to match a sequence of characters. This way, we can do complex Allow and Disallow directive to the Googlebots.

To block all wordpress files from being crawled by Googlebots, we can have

User-Agent: Googlebot Disallow: /wp-*.php

It can be even in the form of a folder patten – here, a pattern of myimages_xyz can be blocked (where xyz represents your numbers folders or something similar)

User-Agent: Googlebot Disallow: /myimages_*/ Disallow: /porn/*.jpg (see, I can block google from looking at my porn images ;-) )

The Googlebot also has an allow tag to allow your files, folders to be crawled by it. This is particularly useful when used in combination with the Wildcard pattern matching scheme to create more complex robots.txt. Here, let’s block a sub-folder on a site but allow some specific folders or files within that sub-folder. Let’s assume that we have installed WordPress inside a folder called “wp” at the root of the website. So, let’s block the wp folder but allow the /wp/wp-content/uploads/ to be crawled.

User-Agent: Googlebot Disallow: /wp/ Allow: /wp/wp-content/uploads/

You can do a even more complex Disallow/Allow pattern matching. Let say, if “?” indicates a session ID, we might like to exclude all URLs that contain them to avoid duplicate pages for the Googlebot. However, URLs that ends with a “?” may be the page that we want to include. In this scenario, we can block any URL that includes a “?” but not the one that specifically ends in “?”

User-Agent: Googlebot Allow: /*?$ Disallow: /*?

A combination and permutation of robots.txt and Meta Tags can help you fine-grain control over your site’s content. Together, robots.txt and META tags give you the flexibility to express complex access policies.

REFERENCES

[poll=26]

Jajah, the low cost global phone utility, comes to India

— By

Jajah comes to IndiaThe low-cost global phone call utility – Jajah – have landed in India. They’re curring running a special promotion for Indian users. You can use either your landline or your mobile phone to connect to the person you wish to call.

Register for an account today and you’ll be credited Rs. 4.44 just for the registration and if you can invite 5 friends, you get another 30 Free Minutes. Get more friends and you might be lucky enough to get Free Call until 2008. They have allocated a total of 500,000 Free Minutes for the India Promotion. Read the Jajah India Press Release.

Teknopoint Multimedia - Adobe Training, Design and Development, RIA Consulting. Teknopoint Multimedia - Adobe Training, Design and Development, RIA Consulting.

Themes