SlideShare a Scribd company logo
Open Source Technologies
What is Open Source ?
Simple: You can read the code.
           You can see how it's made
Two main characteristics 
     First, Its FREE
Second (much more important &  
interesting),it’s free as in freedom.
Four Freedoms
* The freedom to run the program for any

      Purpose


* The freedom to study how the program   
  works, and adapt it to your needs


* The freedom to redistribute copies


* The freedom to improve the program
Why this is cool ?
Anyone can do whatever they like with it.
Nobody owns it, Everyone can use it, Anyone 
can improve it
Improved in terms of quantity of code 
(functionality)
People add layers on top of other people’s code
As the code base grows, the potential grows
Improves chances of it being used for something 
not intended by the originator
What does it take to be a 
      Web Developer?
HTML
 &
PHP
Let's take a brief look on what is a 
       “Web Developer”
And that was just the Ruby stack
Now back to the question
What does it take to be a Web Developer?
A Passion for Learning
LAMP
L

    Linux
 * Very reliable OS

 * Extremely powerful

 * Performs great even in less 
   resources

 * Compelling Graphics

 * Powerful Programming supports

 * Scalable

 * No piracy Issues
L

    Apache
Web server can refer to either the hardware (the 
computer)  or  the  software  (the  computer 
application)  that  helps  to  deliver  Web  content 
that can be accessed through the Internet.

The  most  common  use  of  web  servers  is  to  host 
websites,  but  there  are  other  uses  such  as 
gaming,  data  storage  or  running  enterprise 
applications.

Apache
 * Only web­server to run on all major platforms 
   (*NIX, WINDOZ, MAC, FREEBSD and any other you 
   name it)

 * Largest Market share holder for web servers 
   since 1996 and still growing.
L

    MySQL
 * Relational Database 

 * World’s Fastest growing open 
   source database servers.

 * Fast performance, high reliability 
   and ease of use. 

 * It's used on every continent ­­ 
   Yes, even Antarctica 

 * Work on more than 20 platforms 
   including Linux, Windoz, OS/X, HP­
   UX, AIX, Netware to name a few

 * Supports various Engines
L

    PHP
 * Open Source server­side scripting  
   language designed specifically for the 
   web. 

 * Most widely uses language on the web

 * Outputs not only HTML but can output XML,
   images (JPG & PNG), PDF files and even 
   Flash movies (using libswf and Ming) all 
   generated on the fly. Can write these 
   files to the filesystem.

 * Supports a wide­range of databases 
   (20 + ODBC).

 * Perl­ and C­like syntax. Relatively easy 
   to learn.
L

    LAMP Overview
Let's CODE :)
Memcache
What is Caching ?
A Copy of real data with faster (and/or 
cheaper) access.




From  Wikipedia  :  "A  cache  is  a 
collection  of  data  duplicating  original 
stored  elsewhere  or  computed  earlier, 
where the original data is expensive to 
fetch(owing  to  longer  access  time)  or 
to  compute,  compared  to  the  cost  of 
reading the cache."
MySQL query Cache   : Cache in the DB

Disk                : File Cache

In Memory           : Memached
What is Memcache ?
Free  &  open  source,  high­performance,  distributed 
memory  object  caching  system,  generic  in  nature, 
but  intended  for  use  in  speeding  up  dynamic  web 
applications by alleviating database load.

Memcached  is  an  in­memory  key­value  store  for 
small  chunks  of  arbitrary  data  (strings,  objects) 
from results of database calls, API calls, or page 
rendering.

Memcached  is  simple  yet  powerful.  Its  simple 
design  promotes  quick  deployment,  ease  of 
development, and solves many problems facing large 
data caches. Its API is available for most popular 
languages.
Memcache Users

       Faebook
        Naukri
    LiveJournal
      Wikipedia
        Flickr
         Bebo
       Twitter
       Typepad
      Yellowbot
       Youtube
         Digg
   WordPress.com
     Craigslist
         Mixi
Pattern


­ Fetch from cache

­ If there, return

­ Else caclculate, place in cache, return
Program
function get_foo(foo_id)

    foo = memcached_get("foo:" . foo_id)

    return foo if defined foo

    foo = fetch_foo_from_database(foo_id)

    memcached_set("foo:" . foo_id, foo)

    return foo

end
Let's add Memcache to the CODE
GEARMAN ?
MANAGER
Gearmend
­ Daemon that manages the work.

­ Does not do any work.

­ Accetps a job id and a binay payload from 
  Clients

­ Workers keep connections open at all 
  times.
Client

­ Clients connect to Gearmand and ask for 
  work to be done

­ The client can fire and forget or wait on 
  a responses

­ Multiple jobs can be done asynchronously 
  by workers for one client.
Workers


­ A single worker can do just one job or 
  can do many jobs.

­ Does not have to be written using the 
  same language as the workers.
An Example Client
# Create our client object.
$client= new GearmanClient();
 
# Add default server (localhost).
$client­>addServer();
 
echo "Sending jobn";
 
# Send reverse job
$result = $client­>do("reverse", "Hello!");
if ($result) {
  echo "Success: $resultn";
}
An Example Worker
# Create our worker object.
$worker= new GearmanWorker();
 
# Add default server (localhost).
$worker­>addServer();
 
# Register function "reverse" with the server.
$worker­>addFunction("reverse", "reverse_fn");
 
while (1)
{
  print "Waiting for job...n";
  $ret= $worker­>work();
  if ($worker­>returnCode() != GEARMAN_SUCCESS)
    break;
}
 
# A much simple reverse function
function reverse_fn($job)
{
  $workload= $job­>workload();
  echo "Received job: " . $job­>handle() . "n";
  echo "Workload: $workloadn"; 
  $result= strrev($workload);
  echo "Result: $resultn";
  return $result;
}
NOSQL
Database paradigms

* Relational (RDBMS)

* NoSQL
  * Key­value stores
  * Document databases
  * Graph Database

* Others
Relational Databases
* ACID 
   Automicity
   Consistency
   Isolation
   Durability

* SQL

* Mature
NoSQL
* No relational tables

* No fixed tables schemas

* No joins

* No risk, no fun !

* Massive data stores

* Scaling is easy

* Simpler to implement 
Goodbye rows and tables, hello documents and collections
Lots of pretty pictures to fool you.
Noise
Introduction

MongoDB bridges the gap between key-value stores (which are fast and highly scalable) and
traditional RDBMS systems (which provide rich queries and deep functionality).

MongoDB is document-oriented, schema-free, scalable, high-performance, open source. Written in C++

Mongo is not a relational database like MySQL

Goodbye rows and tables, hello documents and collections

Features
Document-oriented


    
      Documents (objects) map nicely to programming language data types
    
      Embedded documents and arrays reduce need for joins
    
      No joins and no multi-document transactions for high performance and easy scalability

 High performance
     
         No joins and embedding makes reads and writes fast
     
         Indexes including indexing of keys from embedded documents and arrays

 High availability
     
         Replicated servers with automatic master failover

 Easy scalability
     
         Automatic sharding (auto-partitioning of data across servers)
           
               Reads and writes are distributed over shards
           
               No joins or multi-document transactions make distributed queries easy and fast
     
         Eventually-consistent reads can be distributed over replicated servers
Why ?

    Cost - MongoDB is free
    MongoDb is easily installable.
    MongoDb supports various programming languages like C, C++, Java,Javascript, PHP.
    MongoDB is blazingly fast
    MongoDB is schemaless
    Ease of scale-out
  If load increases it can be distributed to other nodes across computer networks.
    It's trivially easy to add more fields -- even complex fields -- to your objects.
  So as requirements change, you can adapt code quickly.
    Background Indexing
    MongoDB is a stand-alone server
    Development time is faster, too, since there are no schemas to manage.
    It supports Server-side JavaScript execution.
 Which allows a developer to use a single programming language for both client and server
  side code
Limitations

    Mongo is limited to a total data size of 2GB for all databases in 32-bit mode.

    No referential integrity

    Data size in MongoDB is typically higher.

    At the moment Map/Reduce (e.g. to do aggregations/data analysis) is OK,
 but not blisteringly fast.

    Group By : less than 10,000 keys.
 For larger grouping operations without limits, please use map/reduce .

    Lack of predefined schema is a double-edged sword

    No support for Joins & transactions
Mongo data model

      
       A Mongo system (see deployment above) holds a set of databases
      
       A database holds a set of collections
      
       A collection holds a set of documents
      
       A document is a set of fields
      
       A field is a key-value pair
      
       A key is a name (string)
      
       A value is a
           
              basic type like string, integer, float, timestamp, binary, etc.,
           
              a document, or
           
              an array of values


                                             MySQL Term                Mongo Term


                                             database                  database


                                             table                     collection


                                             index                     index
SQL to Mongo Mapping Chart
Continued ...
       SQL Statement   Mongo Statement
Debugging & Profiling
Debugging & Profiling
Debugging & Profiling
Why & How ?


* Bugs are bad

* Locate issues during runtime

* Speed up issue resolution

* Breakpoints

* Xdebug
Xdebug
  Xdebug  is  a  PHP  extension  that  aims  to 
lend  a  helping  hand  in  the  process  of 
debugging  your  applications.  Xdebug 
offers features like:

    * Automatic stack trace upon error
    * Function call logging
    * Display features such as enhanced 
      var_dump() output and code 
      coverage information
  
  ­ Open Source
  ­ Free
Enabling Xdebug in php.ini


 zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"
 xdebug.remote_enable=1
 xdebug.remote_host="127.0.0.1"
 xdebug.remote_port=9000
 xdebug.profiler_enable=1
 xdebug.show_local_vars=On
 xdebug.trace_output_dir="/tmp/xprofile/"
 xdebug.trace_output_name= %t.trace
 xdebug.profiler_output_name = %s.%t.profile
 xdebug.profiler_output_dir="/tmp/xprofile/"
Enabling Xdebug in php.ini


 zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"
 xdebug.remote_enable=1
 xdebug.remote_host="127.0.0.1"
 xdebug.remote_port=9000
 xdebug.profiler_enable=1
 xdebug.show_local_vars=On
 xdebug.trace_output_dir="/tmp/xprofile/"
 xdebug.trace_output_name= %t.trace
 xdebug.profiler_output_name = %s.%t.profile
 xdebug.profiler_output_dir="/tmp/xprofile/"
Enabling Xdebug in php.ini


 zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"
 xdebug.remote_enable=1
 xdebug.remote_host="127.0.0.1"
 xdebug.remote_port=9000
 xdebug.profiler_enable=1
 xdebug.show_local_vars=On
 xdebug.trace_output_dir="/tmp/xprofile/"
 xdebug.trace_output_name= %t.trace
 xdebug.profiler_output_name = %s.%t.profile
 xdebug.profiler_output_dir="/tmp/xprofile/"
Lucene
Apache  Lucene  is  a  free/open  source 
information  retrieval  software  library, 
originally  created  in  Java  by  Doug 
Cutting.
Scalable, High­Performance Indexing

   * small RAM requirements
   * incremental indexing as fast as batch indexing
   * index size roughly 20­30% the size of text indexed

Powerful, Accurate and Efficient Search Algorithms

   * ranked searching ­­ best results returned first
   * many powerful query types: phrase queries, wildcard 
     queries, proximity queries, range queries and more
   * fielded searching (e.g., title, author, contents)
   * date­range searching
   * sorting by any field
   * multiple­index searching with merged results
   * allows simultaneous update and searching

Cross­Platform Solution

   *  Available  as  Open  Source  software  under  the  Apache 
     License which lets you use Lucene in both commercial   
     and Open Source programs
   * 100%­pure Java
   * Implementations in other programming languages 
     available that are index­compatible
Scalable, High­Performance Indexing

   * small RAM requirements
   * incremental indexing as fast as batch indexing
   * index size roughly 20­30% the size of text indexed

Powerful, Accurate and Efficient Search Algorithms

   * ranked searching ­­ best results returned first
   * many powerful query types: phrase queries, wildcard 
     queries, proximity queries, range queries and more
   * fielded searching (e.g., title, author, contents)
   * date­range searching
   * sorting by any field
   * multiple­index searching with merged results
   * allows simultaneous update and searching

Cross­Platform Solution

   *  Available  as  Open  Source  software  under  the  Apache 
     License which lets you use Lucene in both commercial   
     and Open Source programs
   * 100%­pure Java
   * Implementations in other programming languages 
     available that are index­compatible
Scalable, High­Performance Indexing

   * small RAM requirements
   * incremental indexing as fast as batch indexing
   * index size roughly 20­30% the size of text indexed

Powerful, Accurate and Efficient Search Algorithms

   * ranked searching ­­ best results returned first
   * many powerful query types: phrase queries, wildcard 
     queries, proximity queries, range queries and more
   * fielded searching (e.g., title, author, contents)
   * date­range searching
   * sorting by any field
   * multiple­index searching with merged results
   * allows simultaneous update and searching

Cross­Platform Solution

   *  Available  as  Open  Source  software  under  the  Apache 
     License which lets you use Lucene in both commercial   
     and Open Source programs
   * 100%­pure Java
   * Implementations in other programming languages 
     available that are index­compatible
Scalable, High­Performance Indexing

   * small RAM requirements
   * incremental indexing as fast as batch indexing
   * index size roughly 20­30% the size of text indexed

Powerful, Accurate and Efficient Search Algorithms

   * ranked searching ­­ best results returned first
   * many powerful query types: phrase queries, wildcard 
     queries, proximity queries, range queries and more
   * fielded searching (e.g., title, author, contents)
   * date­range searching
   * sorting by any field
   * multiple­index searching with merged results
   * allows simultaneous update and searching

Cross­Platform Solution

   *  Available  as  Open  Source  software  under  the  Apache 
     License which lets you use Lucene in both commercial   
     and Open Source programs
   * 100%­pure Java
   * Implementations in other programming languages 
     available that are index­compatible
Scalable, High­Performance Indexing

                          Pitfalls
   * small RAM requirements
   * incremental indexing as fast as batch indexing
   * index size roughly 20­30% the size of text indexed

Powerful, Accurate and Efficient Search Algorithms
    * Update = Delete + Add
   * ranked searching ­­ best results returned first
   * many powerful query types: phrase queries, wildcard 
    * No Partial document update
     queries, proximity queries, range queries and more
   * fielded searching (e.g., title, author, contents)
   * date­range searching
    * No Joins
   * sorting by any field
   * multiple­index searching with merged results
   * allows simultaneous update and searching

Cross­Platform Solution

   *  Available  as  Open  Source  software  under  the  Apache 
     License which lets you use Lucene in both commercial   
     and Open Source programs
   * 100%­pure Java
   * Implementations in other programming languages 
     available that are index­compatible
Scalable, High­Performance Indexing

   * small RAM requirementsCode: FS Indexer
   * incremental indexing as fast as batch indexing
   * index size roughly 20­30% the size of text indexed
    private IndexWriter writer;
Powerful, Accurate and Efficient Search Algorithms
   public Indexer(String indexDir) throws IOException {
      Directory dir = FSDirectory.open(new File(indexDir));
    * ranked searching ­­ best results returned first
      writer = new IndexWriter(dir, new StandardAnalyzer(Version.LUCENE_CURRENT), true,
       IndexWriter.MaxFieldLength.UNLIMITED);
    * many powerful query types: phrase queries, wildcard 
    }
     queries, proximity queries, range queries and more
   * fielded searching (e.g., title, author, contents)
   public void close() throws IOException {
   * date­range searching
     writer.close();
   }
   * sorting by any field
   * multiple­index searching with merged results
   public void index(String dataDir, FileFilter filter) throws Exception {
   * allows simultaneous update and searching
     File[] files = new File(dataDir).listFiles();
      for (File f: files) {
        Document doc = new Document();
Cross­Platform Solution
        doc.add(new Field("contents", new FileReader(f)));
        doc.add(new Field("filename", f.getName(),
    *  Available  as  Open  Source  software  under  the  Apache 
                   Field.Store.YES, Field.Index.NOT_ANALYZED));
     License which lets you use Lucene in both commercial   
        writer.addDocument(doc);
    }
     and Open Source programs
  }
   * 100%­pure Java
   * Implementations in other programming languages 
     available that are index­compatible
Code: Searcher
public void search(String indexDir, String q) throws IOException,
  ParseException {
 Directory dir = FSDirectory.open(new File(indexDir));
 IndexSearcher is = new IndexSearcher(dir, true);

    QueryParser parser = new QueryParser("contents",
                                new
    StandardAnalyzer(Version.LUCENE_CURRENT));
    Query query = parser.parse(q);
    TopDocs hits = is.search(query, 10);
    System.err.println("Found " + hits.totalHits + " document(s)");

    for (int i=0; i<hits.scoreDocs.length; i++) {
      ScoreDoc scoreDoc = hits.scoreDocs[i];
      Document doc = is.doc(scoreDoc.doc);
      System.out.println(doc.get("filename"));
    }

    is.close();
}
Open source Technology

More Related Content

What's hot

Mongo db report
Mongo db reportMongo db report
Mongo db report
Hyphen Call
 
Mongodb introduction and_internal(simple)
Mongodb introduction and_internal(simple)Mongodb introduction and_internal(simple)
Mongodb introduction and_internal(simple)Kai Zhao
 
Mongo db basics
Mongo db basicsMongo db basics
Mongo db basics
Claudio Montoya
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Ravi Teja
 
Mongodb intro
Mongodb introMongodb intro
Mongodb intro
christkv
 
Top 10 frameworks of node js
Top 10 frameworks of node jsTop 10 frameworks of node js
Top 10 frameworks of node js
Habilelabs
 
An introduction to MongoDB
An introduction to MongoDBAn introduction to MongoDB
An introduction to MongoDB
César Trigo
 
Mango Database - Web Development
Mango Database - Web DevelopmentMango Database - Web Development
Mango Database - Web Development
mssaman
 
MongoDB - An Introduction
MongoDB - An IntroductionMongoDB - An Introduction
MongoDB - An Introduction
sethfloydjr
 
MongoDB Pros and Cons
MongoDB Pros and ConsMongoDB Pros and Cons
MongoDB Pros and Cons
johnrjenson
 
Mongo db dhruba
Mongo db dhrubaMongo db dhruba
Mongo db dhruba
Dhrubaji Mandal ♛
 
Mongo db
Mongo dbMongo db
Mongo db
Raghu nath
 
Mongo db workshop # 01
Mongo db workshop # 01Mongo db workshop # 01
Mongo db workshop # 01
FarhatParveen10
 
Introduction To MongoDB
Introduction To MongoDBIntroduction To MongoDB
Introduction To MongoDB
ElieHannouch
 
Basics of MongoDB
Basics of MongoDB Basics of MongoDB
Basics of MongoDB
Habilelabs
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Mike Dirolf
 

What's hot (20)

MongoDB
MongoDBMongoDB
MongoDB
 
Mongo db report
Mongo db reportMongo db report
Mongo db report
 
MongoDB
MongoDBMongoDB
MongoDB
 
Mongodb introduction and_internal(simple)
Mongodb introduction and_internal(simple)Mongodb introduction and_internal(simple)
Mongodb introduction and_internal(simple)
 
Mongo db basics
Mongo db basicsMongo db basics
Mongo db basics
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Mongodb intro
Mongodb introMongodb intro
Mongodb intro
 
Top 10 frameworks of node js
Top 10 frameworks of node jsTop 10 frameworks of node js
Top 10 frameworks of node js
 
Mongo DB
Mongo DBMongo DB
Mongo DB
 
An introduction to MongoDB
An introduction to MongoDBAn introduction to MongoDB
An introduction to MongoDB
 
Mango Database - Web Development
Mango Database - Web DevelopmentMango Database - Web Development
Mango Database - Web Development
 
MongoDB - An Introduction
MongoDB - An IntroductionMongoDB - An Introduction
MongoDB - An Introduction
 
MongoDB Pros and Cons
MongoDB Pros and ConsMongoDB Pros and Cons
MongoDB Pros and Cons
 
Mongo db dhruba
Mongo db dhrubaMongo db dhruba
Mongo db dhruba
 
Mongo db
Mongo dbMongo db
Mongo db
 
Mongo db workshop # 01
Mongo db workshop # 01Mongo db workshop # 01
Mongo db workshop # 01
 
Introduction To MongoDB
Introduction To MongoDBIntroduction To MongoDB
Introduction To MongoDB
 
Basics of MongoDB
Basics of MongoDB Basics of MongoDB
Basics of MongoDB
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
MongoDB DOC v1.5
MongoDB DOC v1.5MongoDB DOC v1.5
MongoDB DOC v1.5
 

Viewers also liked

Open source technology
Open source technologyOpen source technology
Open source technologyRohit Kumar
 
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
cresco
 
BDPA Open Source 2012
BDPA  Open Source  2012BDPA  Open Source  2012
BDPA Open Source 2012
Cliff Samuels Jr.
 
Open source technology software
Open source technology softwareOpen source technology software
Open source technology software
neelagandan
 
Open source technology, freeware drone (by Joris Krüse)
Open source technology, freeware drone (by Joris Krüse)Open source technology, freeware drone (by Joris Krüse)
Open source technology, freeware drone (by Joris Krüse)
Verhaert Masters in Innovation
 
Open Source Vs Proprietary Software
Open Source Vs  Proprietary SoftwareOpen Source Vs  Proprietary Software
Open Source Vs Proprietary Software
Ann Yoders
 
Open source Software: pros and cons
Open source Software: pros and consOpen source Software: pros and cons
Open source Software: pros and consygpriya
 
Open source software vs proprietary software
Open source software vs proprietary softwareOpen source software vs proprietary software
Open source software vs proprietary softwareLavan1997
 
Power Point Presentation on Open Source Software
Power Point Presentation on Open Source Software Power Point Presentation on Open Source Software
Power Point Presentation on Open Source Software
opensourceacademy
 
Open Source Software Presentation
Open Source Software PresentationOpen Source Software Presentation
Open Source Software Presentation
Henry Briggs
 
Open source technology
Open source technologyOpen source technology
Open source technologyaparnaz1
 
Opensource Powerpoint Review.Ppt
Opensource Powerpoint Review.PptOpensource Powerpoint Review.Ppt
Opensource Powerpoint Review.PptViet NguyenHoang
 
OPEN SOURCE SEMINAR PRESENTATION
OPEN SOURCE SEMINAR PRESENTATIONOPEN SOURCE SEMINAR PRESENTATION
OPEN SOURCE SEMINAR PRESENTATION
Ritwick Halder
 
Open Source Technology
Open Source TechnologyOpen Source Technology
Open Source Technology
priyadharshini murugan
 

Viewers also liked (14)

Open source technology
Open source technologyOpen source technology
Open source technology
 
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
 
BDPA Open Source 2012
BDPA  Open Source  2012BDPA  Open Source  2012
BDPA Open Source 2012
 
Open source technology software
Open source technology softwareOpen source technology software
Open source technology software
 
Open source technology, freeware drone (by Joris Krüse)
Open source technology, freeware drone (by Joris Krüse)Open source technology, freeware drone (by Joris Krüse)
Open source technology, freeware drone (by Joris Krüse)
 
Open Source Vs Proprietary Software
Open Source Vs  Proprietary SoftwareOpen Source Vs  Proprietary Software
Open Source Vs Proprietary Software
 
Open source Software: pros and cons
Open source Software: pros and consOpen source Software: pros and cons
Open source Software: pros and cons
 
Open source software vs proprietary software
Open source software vs proprietary softwareOpen source software vs proprietary software
Open source software vs proprietary software
 
Power Point Presentation on Open Source Software
Power Point Presentation on Open Source Software Power Point Presentation on Open Source Software
Power Point Presentation on Open Source Software
 
Open Source Software Presentation
Open Source Software PresentationOpen Source Software Presentation
Open Source Software Presentation
 
Open source technology
Open source technologyOpen source technology
Open source technology
 
Opensource Powerpoint Review.Ppt
Opensource Powerpoint Review.PptOpensource Powerpoint Review.Ppt
Opensource Powerpoint Review.Ppt
 
OPEN SOURCE SEMINAR PRESENTATION
OPEN SOURCE SEMINAR PRESENTATIONOPEN SOURCE SEMINAR PRESENTATION
OPEN SOURCE SEMINAR PRESENTATION
 
Open Source Technology
Open Source TechnologyOpen Source Technology
Open Source Technology
 

Similar to Open source Technology

MongoATL: How Sourceforge is Using MongoDB
MongoATL: How Sourceforge is Using MongoDBMongoATL: How Sourceforge is Using MongoDB
MongoATL: How Sourceforge is Using MongoDB
Rick Copeland
 
Mongo db
Mongo dbMongo db
Mongo db
Gyanendra Yadav
 
Mongodb
MongodbMongodb
Mongodb
Thiago Veiga
 
MongoDB Schema Design by Examples
MongoDB Schema Design by ExamplesMongoDB Schema Design by Examples
MongoDB Schema Design by Examples
Hadi Ariawan
 
Building scalable and language independent java services using apache thrift
Building scalable and language independent java services using apache thriftBuilding scalable and language independent java services using apache thrift
Building scalable and language independent java services using apache thrift
Talentica Software
 
Introduction to mean and mern || Event by DSC UNIDEB
Introduction to mean and mern || Event by DSC UNIDEBIntroduction to mean and mern || Event by DSC UNIDEB
Introduction to mean and mern || Event by DSC UNIDEB
Muhammad Raza
 
Building scalable and language-independent Java services using Apache Thrift ...
Building scalable and language-independent Java services using Apache Thrift ...Building scalable and language-independent Java services using Apache Thrift ...
Building scalable and language-independent Java services using Apache Thrift ...
IndicThreads
 
Node Js, AngularJs and Express Js Tutorial
Node Js, AngularJs and Express Js TutorialNode Js, AngularJs and Express Js Tutorial
Node Js, AngularJs and Express Js Tutorial
PHP Support
 
MongoDB for the SQL Server
MongoDB for the SQL ServerMongoDB for the SQL Server
MongoDB for the SQL Server
Paulo Fagundes
 
MySQL And Search At Craigslist
MySQL And Search At CraigslistMySQL And Search At Craigslist
MySQL And Search At Craigslist
Jeremy Zawodny
 
Introduction to MongoDB and its best practices
Introduction to MongoDB and its best practicesIntroduction to MongoDB and its best practices
Introduction to MongoDB and its best practices
AshishRathore72
 
Building and deploying LLM applications with Apache Airflow
Building and deploying LLM applications with Apache AirflowBuilding and deploying LLM applications with Apache Airflow
Building and deploying LLM applications with Apache Airflow
Kaxil Naik
 
Top MongoDB interview Questions and Answers
Top MongoDB interview Questions and AnswersTop MongoDB interview Questions and Answers
Top MongoDB interview Questions and Answers
jeetendra mandal
 
MongoDB vs Mysql. A devops point of view
MongoDB vs Mysql. A devops point of viewMongoDB vs Mysql. A devops point of view
MongoDB vs Mysql. A devops point of view
Pierre Baillet
 
MongoDB World 2019: Fast Machine Learning Development with MongoDB
MongoDB World 2019: Fast Machine Learning Development with MongoDBMongoDB World 2019: Fast Machine Learning Development with MongoDB
MongoDB World 2019: Fast Machine Learning Development with MongoDB
MongoDB
 
Introduction to meteor
Introduction to meteorIntroduction to meteor
Introduction to meteor
NodeXperts
 
Migrating from MySQL to MongoDB at Wordnik
Migrating from MySQL to MongoDB at WordnikMigrating from MySQL to MongoDB at Wordnik
Migrating from MySQL to MongoDB at Wordnik
Tony Tam
 
From MySQL to MongoDB at Wordnik (Tony Tam)
From MySQL to MongoDB at Wordnik (Tony Tam)From MySQL to MongoDB at Wordnik (Tony Tam)
From MySQL to MongoDB at Wordnik (Tony Tam)MongoSF
 
Klevis Mino: MongoDB
Klevis Mino: MongoDBKlevis Mino: MongoDB
Klevis Mino: MongoDB
Carlo Vaccari
 

Similar to Open source Technology (20)

MongoATL: How Sourceforge is Using MongoDB
MongoATL: How Sourceforge is Using MongoDBMongoATL: How Sourceforge is Using MongoDB
MongoATL: How Sourceforge is Using MongoDB
 
Mongo db
Mongo dbMongo db
Mongo db
 
Mongodb
MongodbMongodb
Mongodb
 
MongoDB Schema Design by Examples
MongoDB Schema Design by ExamplesMongoDB Schema Design by Examples
MongoDB Schema Design by Examples
 
Building scalable and language independent java services using apache thrift
Building scalable and language independent java services using apache thriftBuilding scalable and language independent java services using apache thrift
Building scalable and language independent java services using apache thrift
 
Introduction to mean and mern || Event by DSC UNIDEB
Introduction to mean and mern || Event by DSC UNIDEBIntroduction to mean and mern || Event by DSC UNIDEB
Introduction to mean and mern || Event by DSC UNIDEB
 
Building scalable and language-independent Java services using Apache Thrift ...
Building scalable and language-independent Java services using Apache Thrift ...Building scalable and language-independent Java services using Apache Thrift ...
Building scalable and language-independent Java services using Apache Thrift ...
 
Node Js, AngularJs and Express Js Tutorial
Node Js, AngularJs and Express Js TutorialNode Js, AngularJs and Express Js Tutorial
Node Js, AngularJs and Express Js Tutorial
 
MongoDB for the SQL Server
MongoDB for the SQL ServerMongoDB for the SQL Server
MongoDB for the SQL Server
 
NoSql Databases
NoSql DatabasesNoSql Databases
NoSql Databases
 
MySQL And Search At Craigslist
MySQL And Search At CraigslistMySQL And Search At Craigslist
MySQL And Search At Craigslist
 
Introduction to MongoDB and its best practices
Introduction to MongoDB and its best practicesIntroduction to MongoDB and its best practices
Introduction to MongoDB and its best practices
 
Building and deploying LLM applications with Apache Airflow
Building and deploying LLM applications with Apache AirflowBuilding and deploying LLM applications with Apache Airflow
Building and deploying LLM applications with Apache Airflow
 
Top MongoDB interview Questions and Answers
Top MongoDB interview Questions and AnswersTop MongoDB interview Questions and Answers
Top MongoDB interview Questions and Answers
 
MongoDB vs Mysql. A devops point of view
MongoDB vs Mysql. A devops point of viewMongoDB vs Mysql. A devops point of view
MongoDB vs Mysql. A devops point of view
 
MongoDB World 2019: Fast Machine Learning Development with MongoDB
MongoDB World 2019: Fast Machine Learning Development with MongoDBMongoDB World 2019: Fast Machine Learning Development with MongoDB
MongoDB World 2019: Fast Machine Learning Development with MongoDB
 
Introduction to meteor
Introduction to meteorIntroduction to meteor
Introduction to meteor
 
Migrating from MySQL to MongoDB at Wordnik
Migrating from MySQL to MongoDB at WordnikMigrating from MySQL to MongoDB at Wordnik
Migrating from MySQL to MongoDB at Wordnik
 
From MySQL to MongoDB at Wordnik (Tony Tam)
From MySQL to MongoDB at Wordnik (Tony Tam)From MySQL to MongoDB at Wordnik (Tony Tam)
From MySQL to MongoDB at Wordnik (Tony Tam)
 
Klevis Mino: MongoDB
Klevis Mino: MongoDBKlevis Mino: MongoDB
Klevis Mino: MongoDB
 

Recently uploaded

National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
SOFTTECHHUB
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 

Recently uploaded (20)

National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 

Open source Technology