|
Ruby Programming Language Directory @ eIT.in
eIT.in – everything IT is in Here eIT Directory
|
|
Hot & Cool
Serkai – The Web Cooperative
AntiSE – The Anti Search Engine
GeoDig – Businesses by Geography
Quali5 – Own a Keyword Forever
Follars – Making Money from Open Source
Billion Dollar Questions – and answers @ Billdoll.com
The Anti Bush Register – sign the register now! Advt |
|
eIT.in – 100’s of categories, 1000’s of IT resources
|
|
Operating Systems, Programming & Development, Databases, Legacy & Mainframe, Internet |
|
Computer hardware and accessories, performance & maintenance, storage… |
|
Networking architecture, infrastructure, administration, standards & protocols…
|
|
ITIL, IT infrastructure management…
|
|
Information technology & software support, administration, software testing, data centers…
|
|
Information technology & software across industries
|
|
Information technology & software across functional domains
|
|
IT Organizations & Industry Network
IT associations & organizations, IT related directories and trade networks…(Software Links Exchange)
|
|
Information technology & software architecture and design, IT strategy
|
|
IT news, updates, events & trade shows |
|
|
|
Related Links
Mainframes (Mainframe), AML, Analytics, Databases, EAI, BPO, CRM, Legacy, Legacy 2 Web, Middleware, IT Software Outsourcing & Offshoring Directory, Follars
|
|
Ruby Programming Directory @ eIT.in
This section of eIT.in provides web resources for Ruby programming language.
Add Links: If you have a web site that you wish to include in this database, do let us know the details by sending a note about your URL to narsi@esource.in. We’ll quickly review the web site, and if found relevant, add it to the database. We look forward to web site owners and link exchange partners to submit URL. Thanks!
..
..
Other IT Web Sites from eIT.in
Content derived from Wikipedia article on Ruby Programming Language
Ruby (programming language) From Wikipedia, the free encyclopedia
Ruby Paradigm: multi-paradigm Appeared in: 1995 Designed by: Yukihiro Matsumoto Developer: Yukihiro Matsumoto (among others) Latest release: 1.8.5 / August 25, 2006 Typing discipline: strong, dynamic ("duck") Major implementations: Ruby, JRuby Influenced by: Smalltalk, Perl, Lisp, Python, CLU, Dylan Influenced: Groovy OS: Cross-platform License: Ruby License and GPL Website: www.ruby-lang.org
Ruby is a reflective, object-oriented programming language. It combines syntax inspired by Perl with Smalltalk-like object-oriented features, and also shares some features with Python, Lisp, Dylan and CLU. Ruby is a single-pass interpreted language. Its main implementation is free software distributed under an open-source license.
Contents
1 History 2 Philosophy 3 Semantics 4 Features 4.1 Interaction 5 Syntax 6 Gotchas and possible surprises 7 Examples 7.1 Collections 7.2 Blocks and iterators 7.3 Classes 7.4 Exceptions 7.5 More examples 8 Implementations 8.1 Operating systems 8.2 Licensing terms 9 Repositories and libraries 10 Sample scripts 11 See also 12 Notes 13 External links
History The language was created by Yukihiro "Matz" Matsumoto, who started working on Ruby on February 24, 1993, and released it to the public in 1995. "Ruby" was named after a colleague's birthstone. As of October 2006, the latest stable version is 1.8.5. Ruby 1.9 (with some major changes) is also in development.
Philosophy Matz's primary design consideration is to make programmers happy by reducing the menial work they must do, following the principles of good user interface design.[1] He stresses that systems design needs to emphasize human, rather than computer, needs [2]:
Often people, especially computer engineers, focus on the machines. They think, "By doing this, the machine will run faster. By doing this, the machine will run more effectively. By doing this, the machine will something something something." They are focusing on machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines. We are the masters. They are the slaves.
Ruby is said to follow the principle of least surprise (POLS), meaning that the language typically behaves intuitively or as the programmer assumes it should. The phrase did not originate with Matz and, generally speaking, Ruby may more closely follow a paradigm best termed as "Matz's Least Surprise", though many programmers have found it to be close to their own mental model as well.
Matz defined it this way in an interview:
Everyone has an individual background. Someone may come from Python, someone else may come from Perl, and they may be surprised by different aspects of the language. Then they come up to me and say, 'I was surprised by this feature of the language, so Ruby violates the principle of least surprise.' Wait. Wait. The principle of least surprise is not for you only. The principle of least surprise means principle of least my surprise. And it means the principle of least surprise after you learn Ruby very well. For example, I was a C++ programmer before I started designing Ruby. I programmed in C++ exclusively for two or three years. And after two years of C++ programming, it still surprised me.
Semantics Ruby is object-oriented: every bit of data is an object, even classes and types that many other languages designate as primitives (such as integers, booleans, and "nil"). Every function is a method. Named values (variables) always designate references to objects, not the objects themselves. Ruby supports inheritance with dynamic dispatch, mixins and singleton methods (belonging to, and defined for, a single instance rather than being defined on the class). Though Ruby does not support multiple inheritance, classes can import modules as mixins. Procedural syntax is supported, but everything done in Ruby procedurally (that is, outside of the scope of a particular object) is actually done to an Object instance named 'main'. Since this class is parent to every other class, the changes become visible to all classes and objects.
Ruby has been described as a multi-paradigm programming language: it allows you to program procedurally (defining functions/variables outside classes makes them part of the root, 'self' Object), with object orientation (everything is an object) or functionally (it has anonymous functions, closures, and continuations; statements all have values, and functions return the last evaluation). It has support for introspection, reflection and meta-programming, as well as support for threads. Ruby features dynamic typing, and supports parametric polymorphism.
According to the Ruby FAQ, "If you like Perl, you will like Ruby and be right at home with its syntax. If you like Smalltalk, you will like Ruby and be right at home with its semantics. If you like Python, you may or may not be put off by the huge difference in design philosophy between Python and Ruby/Perl." [3]
Features object-oriented four levels of variable scope: global, class, instance, and local exception handling iterators and closures (based on passing blocks of code) native, Perl-like regular expressions at the language level operator overloading automatic garbage collecting highly portable cooperative multi-threading on all platforms using green threads DLL/shared library dynamic loading on most platforms introspection, reflection and meta-programming large standard library supports dependency injection continuations and generators (examples in RubyGarden: continuations and generators) Ruby currently lacks full support for Unicode, though it has partial support for UTF-8.
Interaction The Ruby official distribution also includes "irb", an interactive command-line interpreter which can be used to test code quickly. A session with this interactive program might be:
$ irb irb(main):001:0> puts "Hello, World" Hello, World => nil irb(main):002:0> 1+2 => 3 There also exist readline bindings (module Readline), easily allowing the user for custom shells with history support.
Readline.readline(, true) # param true means ~ "enable history"
Syntax The syntax of Ruby is broadly similar to Perl and Python. Class and method definitions are signaled by keywords. In contrast to Perl, variables are not obligatorily prefixed with a sigil. (When used, the sigil changes the semantics of scope of the variable.) The most striking difference from C and Perl is that keywords are typically used to define logical code blocks, without brackets. Line breaks are significant and taken as the end of a statement; a semicolon may be equivalently used. Indentation is not significant (unlike Python).
See the Examples section for samples of code demonstrating Ruby syntax.
Gotchas and possible surprises Although Ruby's design is guided by the principle of least surprise, naturally, some features differ from languages such as C or Perl:
Names that begin with a capital letter are treated as constants, so local variables should begin with a lowercase letter. To denote floating point numbers, one must follow with a zero digit (99.0) or an explicit conversion (99.to_f). It is insufficient to append a dot (99.) because numbers are susceptible to method syntax. Boolean evaluation of non-boolean data is strict: 0, "" and [] are all evaluated to true. In C, the expression 0 ? 1 : 0 evaluates to 0 (i.e. false). In Ruby, however, it yields 1, as all numbers evaluate to true; only nil and false evaluate to false. A corollary to this rule is that Ruby methods by convention — for example, regular-expression searches — return numbers, strings, lists, or other non-false values on success, but nil on failure (e.g., mismatch). This convention is also used in Smalltalk, where however only the special objects true and false can be used in a boolean expression. Versions prior to 1.9 lack a character data type (compare to C, which provides type char for characters). This may cause surprises when slicing strings: "abc"[0] yields 97 (an integer, representing the ASCII code of the first character in the string); to obtain "a" use "abc"[0,1] (a substring of length 1) or "abc"[0].chr. In addition, some issues with the language itself are commonly raised:
In terms of speed, Ruby's performance is inferior to that of many compiled languages (as is any interpreted language) and other major scripting languages such as Python and Perl[4]. However, in future releases (current revision: 1.9), Ruby will be bytecode compiled to be executed on the YARV (Yet Another Ruby VM). Currently, Ruby's memory footprint for the same operations is better than Perl's and Python's.[4] Omission of parentheses around method arguments may lead to unexpected results if the methods take multiple parameters. Note that the Ruby developers have stated that omission of parentheses on multi-parameter methods may be disallowed in future Ruby versions. Much existing literature, however, encourages parenthesis omission for single-argument methods. Ruby differs from Python in how it treats named arguments in function invocation: in Ruby, C, and many other languages, calling a function by some_function(x=4, 5) binds x to 4, and passes 4 and 5 to some_function. In Python, however, this would behave differently; the argument named x in the function definition for some_function would have 4 passed to it, and 5 would be passed into the remaining argument, this all being regardless of the order of arguments.
A good list of "gotchas" may be found in Hal Fulton's book The Ruby Way, pages 48-64 (ISBN 0672328844). However, since the list in the book pertains to an older version of Ruby (version 1.6), some items have been fixed since the book's publication. For example, retry now works with while, until and for, as well as iterators.
Examples Some basic Ruby code:
# Everything, including a literal, is an object, so this works: -199.abs # 199 "ruby is cool".length # 12 "Rick".index("c") # 2 "Nice Day Isn't It?".split(//).uniq.sort.join # " '?DINaceinsty"
Collections Constructing and using an array:
a = [1, 'hi', 3.14, 1, 2, [4, 5]]
a[2] # 3.14 a.reverse # [[4, 5], 2, 1, 3.14, 'hi', 1] a.flatten.uniq # [1, 'hi', 3.14, 2, 4, 5] Constructing and using a hash:
hash = {:water => 'wet', :fire => 'hot'} puts hash[:fire] # Prints: hot
hash.each_pair do |key, value| # Or: hash.each do |key, value| puts "#{key} is #{value}" end
# Prints: water is wet # fire is hot
hash.delete_if {|key, value| key == :water} # Deletes :water => 'wet'
Blocks and iterators The two syntaxes for creating a code block:
{ puts "Hello, World!" }
do puts "Hello, World!" end Parameter-passing a block to be a closure:
# In an object instance variable, remember a block. def remember(&b) @block = b end
# Invoke the above method, giving it a block that takes a name. remember {|name| puts "Hello, #{name}!"}
# When the time is right (for the object) -- call the closure! @block.call("John") # Prints "Hello, John!" Returning closures from a method:
def foo(initial_value=0) var = initial_value return Proc.new {|x| var = x}, Proc.new { var } end
setter, getter = foo setter.call(21) getter.call # => 21 Yielding the flow of program control to a block which was provided at calling time:
def a( &block ) yield block( "hello") end
# Invoke the above method, passing it a block. a {|s| puts s} # Prints: "hello" # Perhaps the following needs cleaning up.
# Breadth-first search def bfs(e) # 'e' should be a block. q = [] # Make an array. e.mark # 'mark' is a user-defined method. (??) yield e # Yield to the block. q.push e # Add the block to the array. while not q.empty? # This could be made much more Ruby-like. u = q.shift u.edge_iterator do |v| if not v.marked? # 'marked?' is a user-defined method. v.mark yield v q.push v end end end end bfs(e) {|v| puts v} Iterating over enumerations and arrays using blocks:
a = [1, 'hi', 3.14] a.each {|item| puts item} # Prints each element (3..6).each {|num| puts num} # Prints the numbers 3 through 6 [1,3,5].inject(0) {|sum, element| sum + element} # Prints 9 (you can pass both a parameter and a block) Blocks work with many built-in methods:
File.open('file.txt', 'w+b') do |file| file.puts 'Wrote some text.' end # File is automatically closed here Or:
File.readlines('file.txt').each do |line| # Process each line, here. end Using an enumeration and a block to square the numbers 1 to 10:
(1..10).collect {|x| x*x} => [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
Classes The following code defines a class named Person. In addition to 'initialize', the usual constructor to create new objects, it has two methods: one to override the <=> comparison operator (so Array#sort can sort by age) and the other to override the to_s method (so Kernel#puts can format its output). Here, "attr_reader" is an example of meta-programming in Ruby: "attr" defines getter and setter methods of instance variables; "attr_reader": only getter methods. Also, the last evaluated statement in a method is its return value, allowing the omission of an explicit 'return'.
class Person def initialize(name, age) @name, @age = name, age end
def <=>(person) @age <=> person.age end
def to_s "#{@name} (#{@age})" end
attr_reader :name, :age end
group = [ Person.new("John", 20), Person.new("Markus", 63), Person.new("Ash", 16) ]
puts group.sort.reverse The above prints three names in reverse age order:
Markus (63) John (20) Ash (16)
Exceptions An exception is raised with a raise call:
raise An optional message can be added to the exception:
raise "This is a message" You can also specify which type of exception you want to raise:
raise ArgumentError, "Illegal arguments!" Exceptions are handled by the rescue clause. Such a clause can catch exceptions that inherit from StandardError:
begin # Do something rescue # Handle exception end Note that it is a common mistake to attempt to catch all exceptions with a simple rescue clause. To catch all exceptions one must write:
begin # Do something rescue Exception # Handle exception end Or particular exceptions:
begin # ... rescue RuntimeError # handling end Finally, it is possible to specify that the exception object be made available to the handler clause:
begin # ... rescue RuntimeError => e # handling, possibly involving e end Alternatively, the most recent exception is stored in the magic global $!.
More examples More sample Ruby code is available as algorithms in the following articles:
Exponentiating by squaring Ruby associative arrays
Implementations Ruby has two main implementations: the official Ruby interpreter, which is the most widely used, and JRuby, a Java-based implementation.
Operating systems Ruby is available for the following operating systems:
Most flavors of Unix, including Linux DOS Microsoft Windows 95/98/XP/NT/2000/2003 Mac OS X BeOS Amiga Acorn RISC OS OS/2 Syllable Other ports may also exist.
Licensing terms The Ruby interpreter and libraries are distributed disjointedly (dual licensed) under the free and open source licenses GPL and Ruby License [5].
Repositories and libraries The Ruby Application Archive (RAA), as well as RubyForge, serve as repositories for a wide range of Ruby applications and libraries, containing more than two thousand items. Although the number of applications available does not match the volume of material available in the Perl or Python community, there is a wide range of tools and utilities which serve to foster further development in the language.
RubyGems has become the standard package manager for Ruby libraries. It is very similar in purpose to Perl's CPAN, although its usage is more like apt-get.
Sample scripts For sample ruby scripts, use the Google Code Search:
Start here: Google Code Search lang:ruby and if you need so, add additional parameters to the address. For example to find scripts which use Win32API use: Google Code Search lang:ruby sketchup Win32API
The Google Code Search will let you locate and preview ruby code which is stored on the Internet, including code stored in ZIP files.
See also Free software Portal Duck typing RubyGems (a Ruby package manager) Ruby on Rails (a Ruby web application framework) Ruby Application Archive Interactive Ruby Shell Comparison of programming languages Watir JRuby is pure Java implementation of the Ruby interpreter
Notes ^ The Ruby Programming Language by Yukihiro Matsumoto on 2000-06-12 (informit.com) ^ The Philosophy of Ruby, A Conversation with Yukihiro Matsumoto, Part I by Bill Venners on 2003-09-29 (Artima Developer) ^ How Does Ruby Compare With Python (rubygarden.org) ^ a b The Computer Language Shootout Benchmarks ^ Ruby License (ruby-lang.org)
External links Wikibooks has more on the topic of Ruby (programming language)Ruby homepage
Ruby language home page Ruby libraries
RubyForge Ruby Application Archive (RAA) JRuby - a pure Java implementation of the Ruby interpreter Ruby news
The Ruby Edge—Community driven Ruby/Rails news site with voting, comments, and tag cloud RedHanded—Daily Ruby news and more Ruby Inside - Daily Ruby news, tips, and tutorials RubyCorner - A Ruby related Blogs Directory Ruby Garden Ruby community
PuneRuby - Ruby Community in Pune, India Ruby Forum Ruby Jobs - A place to find and post Ruby jobs. RubyOnBr - Brazilian Ruby Virtual Community Ruby Mailing List Ruby Wizards - Ruby Programming Forum Ruby learning
Programming Ruby—Full text of first edition of the book by David Thomas & Andrew Hunt, ISBN 0-201-71089-7 Try Ruby!—An interactive tutorial in Ruby, within your browser Why's (Poignant) Guide to Ruby Learn to Program A tutorial for the future programmer, with live code examples Ruby in Twenty Minutes Learning Ruby A free, web-based course on Ruby Programming with a live instructor to answer your queries. Zamplized Ruby User's Guide—A version of the Ruby User's Guide with live code examples Ruby Tutorials for SketchUp Installing Ruby on Rails Ruby Design Principles talk by Matz from IT Conversations Examples of Ruby code - "PLEAC - Programming Language Examples Alike Cookbook" Ruby references
Ruby FAQ Primary Ruby documentation site Ruby API docs, references, and tutorials Ruby From Other Languages Quick Reference Ruby Cheatsheet RubyGems Documentation—Documentation for a common facility for publishing and managing third party libraries Only Ruby Related Information Search Engine for Developers Ruby applications
Ruby on Rails, a Ruby web framework SketchUp 3D modelling Software with embedded Ruby interpreter Retrieved from http://en.wikipedia.org/wiki/Ruby_%28programming_language%29
End of Wikipedia content, http://en.wikipedia.org/wiki/Ruby_programming_language
Web Resources for Ruby Programming Language
|
|
More eIT.in References
§ The A-Z of Programming Languages § A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z § R · R · REBOL · RPG · RPL/2 · Ruby
Main Sections @ eIT.in
o Mainframe & Legacy Operating Systems · Midrange · Programming & Development Directory § The A-Z of Programming Languages § A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z
|
|
About eIT.in
eIT.in is a comprehensive directory for everything IT & Software. It contains over 500 categories, and well over 10,000 web resources
eIT.in provides directory and web links resources for the IT, software, programming & software development domains. It is intended to be useful for application, applications programmers & developers, software technology programmer & developer, databases software development, administrators & DBAs, application developers, strategy architect, design specialists and architects, migration, integration, customization consultants and customisation analysts, administration, maintenance & support professionals, outsourcing consultant, bespoke solutions programming developers & coders, project management & functional analyst, and for system administrators, testing & quality control engineers. It will make an effort to provide resources on tutorial/tutorials, guide, guides, tips, faq, faqs on these topics.
eIT.in content is available under GPL: All directory content at mainframe.in is under the General Public License (GPL). Under this license, anyone is free to copy & use any amount of directory content @ eIT.in, make changes to it and use it in any way they wish, as long as they also allow the same rights to anyone else for this content. The concept of GPL has been adapted from the GNU GPL of the Free Software Movement. To those who wish to use content from eIT.in, our only request is that they acknowledge the source and provide a link back to eIT.in. This is only a request!
Countries & Cities Where eIT.in Provides Assistance
eIT Cities: Bangalore, Chennai, Mumbai, Bhubaneswar, Mysore, Kolkaka, Delhi, Pune, Trivandrum, Hyderabad
You are the $$$ Section of eIT.in
Reference
GeoDig – Get Local!
Have you checked out the GeoDig directories for over 30 countries? GeoDig provides useful local and regional web resources for over 200 cities around the world. See the list of cities and countries for which GeoDig provides locality-specific web resources.
North America USA - Alabama (AL) > Birmingham; Alaska; Arkansas (AR) > Little Rock; Arizona (AZ) > Phoenix, Las Vegas, Tucson; California (CA) > Los Angeles, San Francisco, Sacramento, Fresno, Bakersfield; Colorado, CO > Denver; Connecticut, CT > Hartford; District of Columbia, DC > Washington DC; Delaware (DE) > Wilmington; Florida > Miami, Orlando, Tampa, Orlando, Sarasota, West Palm Beach, Jacksonville; Georgia > Atlanta; Hawaii > Honolulu; Idaho; Illinois > Chicago; Indiana > Indianapolis; Iowa; Kansas (KS); Kentucky (KY) > Louisville; Louisiana (LA) > New Orleans, Baton Rouge; Maine; Maryland (MD) > Baltimore; Massachusetts > Boston, Springfield; Michigan > Detroit, Grand Rapids; Minnesota > Minneapolis-St. Paul; Mississippi (MS); Missouri (MO) > Kansas City, St. Louis; Montana; Nebraska (NE) > Omaha; Nevada (NV) > Las Vegas; New Hampshire; New Jersey (NJ) > Jersey City, Newark; New Mexico (NM) > Albuquerque; New York > New York, Buffalo, Rochester, Albany, Syracuse; North Carolina (NC) > Raleigh-Durham, Charlotte, Greensboro; North Dakota; Ohio> Columbus, Cincinnati, Cleveland, Toledo, Youngstown, Dayton; Oklahoma (OK) > Oklahoma City, Tulsa; Oregon > Portland; Pennsylvania > Philadelphia, Allentown, Pittsburgh, Harrisburg, Scranton, ; Rhode Island (RI) > Providence; South Carolina (SC) > Greenville; South Dakota; Tennessee (TN) > Knoxville, Memphis, Nashville; Texas > Austin, Dallas, Houston, San Antonio, El Paso, Austin, McAllen; Utah (UT) > Salt Lake City; Vermont; Virginia (VA) > Norfolk, Richmond; Washington > Seattle; West Virginia; Wisconsin (WI) > Milwaukee; Wyoming Canada - Vancouver, Montreal, Toronto, Calgary, Ottawa-Gatineau, Edmonton, Quebec City, Winnipeg, Hamilton, London
You are the $$$ Section of eIT.in
Europe - UK - London, Glasgow, Manchester, Birmingham, Liverpool, Sheffield, Leeds, Bristol, Edinburgh, Leicester; France - Paris, Marseille, Lyon, Toulouse, Nice, Nantes, Strasbourg, Montpellier, Bordeaux; Germany - Frankfurt (Frankfurt am Main), Munich (München), Berlin, Düsseldorf, Hamburg, Cologne (Köln), Essen, Dortmund, Stuttgart, Bremen, Duisburg, Hannover, Nürnberg (Nuremberg), Dresden, Leipzig; Italy - Milan (Milano), Rome (Roma), Napoli (Naples), Torino (Turin), Palermo, Bologna, Firenze (Florence), Genova (Genoa); Spain - Madrid, Barcelona, Valencia, Sevilla, Zaragoza, Malaga, Murcia, Las Palmas, Bilbao; Scandinavia - Finland - Helsinki (Helsingin), Espoo, Tampere (Tampereen), Vantaa, Turku, Oulu, Sweden - Stockholm, Goteborg (Göteborg), Malmo (Malmö), Uppsala, Vasteras (Västerås), Denmark - Copenhagen (Københavns), Aarhus (Århus), Odense, Aalborg (Ålborg), Norway - Oslo, Bergen, Stavanger, Trondheim; Benelux - Belgium - Brussels (Brussel), Antwerp (Antwerpen), Ghent (Gent, Gand), Charleroi, Liège (Liege), Netherlands - Amsterdam, Rotterdam, Utrecht, Eindhoven, Tilburg, ‘s-Gravenhage (sGravenhage), Groningen, Luxembourg - Luxembourg City; Portugal – Lisbon; Greece – Athens; Hungary – Budapest; Poland – Warsaw; Switzerland - Zürich (Zurich), Geneva (Geneve, Genève), Basel, Bern (Berne), Lausanne; Austria - Linz, Vienna (Wien), Graz, Linz, Salzburg, Innsbruck; Ireland – Dublin
Asia - India - Mumbai, New Delhi, Bangalore; China & Hong Kong - Hong Kong, Beijing, Shanghai, Tianjin, Wuhan, Shenyang, Guangzhou, Harbin, Xian; Japan - Tokyo, Osaka, Yokohama, Nagoya, Sapporo, Kyoto, Kobe, Fukuoka, Kawasaki, Hiroshima; South Korea - Seoul, Pusa, Taegu, Incheon, Taejeon, Taiwan - Taipei; Malaysia - Kuala Lumpur; Singapore; Russia - Moscow, St Petersburg
You are the $$$ Section of eIT.in
Middle East - Turkey - Istanbul, Israel - Tel Aviv
Oceania - Australia - Sydney, Melbourne, Brisbane, Perth, Adelaide
Africa - South Africa - Johannesburg, Cape Town, Durban
|
|
© 2006, From eIT.in – everything IT is in Here
eIT.in is a product of eSource India & Sourcing India
Other eSource & Sourcing sites: IT & Software (Dir, SAP), BPO, Chemicals, Textiles, Plant Oils, dotMobi, Billion Dollar Questions, Biodiesel Encyclopedia, Linens, ideOS, Follars – Free, Open-source Dollars, Quali5.com – Own A Keyword Forever, AntiSE, Serkai, Leather & Hide, GeoDig
|