SlideShare a Scribd company logo
BP203 Limitless Languages In The
                    IBM Social Stack
                    Mark Myers | London Developer Coop




© 2013 IBM Corporation
Agenda

Overview

The JVM

Programming paradigms

JVM Alternative Languages

Scala

Existing Code

Working With Domino

  © 2013 IBM Corporation
This presentation skims over the hard work and dedication of
 thousands of developers passions, any generalizations or
   sweeping statements are not intended to give offense,
             corrections are gratefully received.

                             But most of all please interrupt!

                           Don't wait till the end of the session




  © 2013 IBM Corporation
Who Am I?

 Mark
    Member of the London Developer Co-op (londc.com)
    Developer from a support background
    12+ years on Domino, 15+ years in IT
    Speaker at 2x Lotuspheres, 3x UKLUGs, 1x ILUG
    Twitter: @stickfight, Skype: Stickfight, Blog: stickfight.co.uk




    © 2013 IBM Corporation
Tools We Used

 IBM® Lotus® Notes® version 8.5.3

 IBM Lotus Domino® version 8.5.3

 Eclipse 3.7 (indigo)

 Scala plug-in 29

 Various other software tools mentioned
  throughout this presentation
 Most code and techniques we talk about should be applicable to other versions of
  Notes/Domino/Windows too




    © 2013 IBM Corporation
Limitless Languages?


                                Limitless Languages
                                          =
                            Alternative JVM Languages



                      Alternative JVM Languages
                                   =
              Any Language that Compiles to Java ByteCode




   © 2013 IBM Corporation
Why this Session?

 Existing and Traditional IT cant keep up with the speed of green field and start-up
 development

 You need little or no Investment to get started and you don’t have to throw your
 existing Java stuff away

 Its not all up to IBM to keep us up to date.                 Nearly all of you are
                                                              already using an
 Never get left behind again
                                                              IBM alternative JVM
 Its simple and helps your CV                                 Language (sort of)

 Its Cool




    © 2013 IBM Corporation
The JVM

The JVM (Java Virtual Machine) runs Java ByteCode

It’s Increased in reliability and performance since 1996

All variations of the JVM guarantees binary compatibility

Java ByteCode does NOT have to have been generated from Java, any Language
that compiles down to ByteCode can run on the JVM


                            We will take a look at the Pack Leaders

                                    After some boring stuff




   © 2013 IBM Corporation
Dynamic Vs Static typed: Dynamic
 In a dynamically typed language, every variable name is (unless it is null) bound
 only to an object.

 Names are bound to objects at execution time by means of assignment
 statements, and it is possible to bind a name to objects of different types during
 the execution of the program.

                                           This does not cause an error,
                                           unless you for get which type
  LotusNotes = 8.5.4                       the variable currently is
  LotusNotes = “Awesome”




    © 2013 IBM Corporation
Dynamic Vs Static typed: Static

 In a statically typed language, every variable name is bound both to a type (at
 compile time) and to an object.

 Once a variable name has been bound to a type (that is, declared) it can be bound
 (via an assignment statement) only to objects of that type; it cannot ever be bound
 to an object of a different type. An attempt to bind the name to an object of the
 wrong type will raise a type exception.




   © 2013 IBM Corporation
Functional Programming                          A method of
                                                 coding like
                                                 Object Oriented
                                                 Programming


“functional programming is a programming paradigm that treats computations as the
evaluation of mathematical functions and avoids state and mutable data.”
                                                                         -Wikipedia

                         Think of the states         An object which
                         a document goes             can be modified
                         through                     after it is
                                                     created




     © 2013 IBM Corporation
Functional Programming

Why?
 Grants us greater modularity

 Means code reuse and maintenance is easier

 Immutable objects allows data to be accessed concurrently from multiple threads
 without locking




   © 2013 IBM Corporation
JVM Alternative Languages
 An agile and dynamic language

 A Core of Java with lots of features inspired by languages like Python, Ruby and
 Smalltalk

 Very small-zero learning curve

 provides the ability to statically type check and statically compile your code ( good
 for speed)

 Seamlessly integrates with all existing Java classes and libraries i.e. unlike a lot of
 other Alternative JVM languages you can include Java code in the same file as
 Groovy

 One of Groovy's top companions is Grails, a high-productivity web development
 environment inspired by Ruby on Rails. not much use for domino designers but fab
 if you are having to build your own UI (used by sky)



   © 2013 IBM Corporation
JVM Alternative Languages




 A general-purpose dynamic programming language

 Is a dialect of Lisp

 Also runs on Microsoft's Common Language Runtime and JavaScript engines.

 Used by Citigroup, Typewire, Tianya (largest forum in china), AltLaw.org (one of
 the first production websites to use it)




    © 2013 IBM Corporation
JVM Alternative Languages




 JRuby is an implementation of the Ruby programming language

 JRuby is held to be faster than Ruby for most implementations (once loading the
 JVM is taken into consideration)

 Jruby is called from Java using either the JSR 223 Scripting for Java 6 or the
 Apache Bean Scripting framework

 LinkedIn uses JRuby for its front end




   © 2013 IBM Corporation
JVM Alternative Languages




 Jython the successor of JPython is an implementation of Python

 Supports nearly all of the Core Python standard library modules and all Java Libs

 Jython programs cannot currently use CPython extension modules written in C
 (although this is supposedly coming)

 Wsadmin (webSphere Server command shell) and Bea WebLogic use Jython as
 their scripting language




   © 2013 IBM Corporation
JVM Alternative Languages




                 Kotlin




 Rhino




                            This is the Actual Logo

   © 2013 IBM Corporation
Scala




 Stands for “scalable language.” named for its ability to grow with user needs

 Designed by Martin Odersky, creator of Pizza (the forerunner of Java generics),
 author of GJ compiler



"... if someone had shown me the Programming in Scala book ... back in 2003, I'd
probably have never created Groovy."
                                      - James Strachan, July 2009




   © 2013 IBM Corporation
Scala



Under active development at Ecole Polytechnique Fédérale
de Lausanne (EPFL) and in the open source community,
also nicely funded by none corporations.


 Programming in Scala second edition by Martin Odersky,
 Lex Spoon and Bill Venners

 http://www.artima.com/shop/programming_in_scala_2ed




   © 2013 IBM Corporation
Who Uses Scala?

                LinkedIn                        Siemens

                Twitter                         Électricité de France (EDF)

                FourSquare                      The Guardian

                Sony                            Xerox



       IBM knows about it too, see Adrian Spender excellent
       presentation at
       http://www.slideshare.net/aspender/scala-introduction-6963846

       And from IBM them selves
       http://www.ibm.com/developerworks/training/kp/j-kp-altlang/index.html



  © 2013 IBM Corporation
Why?: Shorter / Less Boiler
 // this is Java
 class MyClass {
       private int index;
       private String name;

        public MyClass(int index, String name) {
        this.index = index;
        this.name = name;
        }
 }

 // this is Scala
 class MyClass(index: Int, name: String)

 http://stackoverflow.com/questions/2952732/samples-of-scala-and-java-code-
 where-scala-code-looks-simpler-has-fewer-lines for an extreme example


     © 2013 IBM Corporation
Why?: Type Inference
     Java – Static Type
            Good – Catch type errors BEFORE you run
            BAD – Verbose, bulky



     Scripting Languages
            Good – Short , easy to code
            BAD – You get to catch your errors in test/production



     Scala (with Type Inference)
            Good – Catch Type Errors BEFORE you run
            Good – Short , easy to code




   © 2013 IBM Corporation
Why?: Type Inference
                             You don’t have to assign a type
                              here, it infers this from type of
                               data you try and put in the
                                           variable


                      val cost = new BigInteger("99999999")
                      var stringcost = List("nine", "nine")
                      Stringcost += cost


                                           But Compiler still says no, when
                                             you assign the wrong type




   © 2013 IBM Corporation
Why?: Unified types
 All types are objects. (Int, Boolean,Double etc etc)

 No more primitives ( no more double and Double)

 All Mapped Automatically for integration with Java

 All functions get the nice add-ons like toInt and toFloat for String




   © 2013 IBM Corporation
Why?: Pattern matching




         Not Limited to primitives

         You can even call Class and Functions :-)




   © 2013 IBM Corporation
Why?: Actors


 Concurrency Made simple

 Designed to get over the fundamental problems with Javas shared data and locks
 model

 It is a share-nothing model all communication is doing by messaging

 An actor is a bit like a thread with a mailbox for receiving messages




   © 2013 IBM Corporation
Why?: Actor example




   © 2013 IBM Corporation
Why?: Parallel Processing
                            How do you make this run in parallel?




   © 2013 IBM Corporation
Why?: Parallel Processing




     Now running in parallel

     Calling thread WAITS for completion of computation

     2 CPU Machine = 2 items running in parallel
   © 2013 IBM Corporation
Sanity Warning! : Scalaz
                                       Danger Will
                                        Robinson

 A Plug in Library for Scala

  An implementation of pure functional programming with very high-level
 abstractions represented by symbols

  Awesomely powerful and concise but a steep learning curve unless you are
 familiar with the complexity and are dealing with things like Trading platforms

 http://code.google.com/p/scalaz/




   © 2013 IBM Corporation
Sanity Warning! : Scalaz




           :'-(

   © 2013 IBM Corporation
Cross Language Dependency



                           Existing Code




  © 2013 IBM Corporation
Cross Language Dependency
                           After Inclusion of a new Scala Class




  © 2013 IBM Corporation
Installing


 Scala has plug-ins for Eclipse, IntelliJIDEA and NetBeans ( http://www.scala-
 lang.org/node/91 )

 I use http://scala-ide.org/ for the eclipse plug-in

 Install Eclipse 3.6 (Helios) or Eclipse 3.7 (Indigo) and install as a standard plug-in
 site (http://download.scala-ide.org/releases-29/stable/site )

 Restart and you’re done




   © 2013 IBM Corporation
Nice and Simple in Eclipse




   © 2013 IBM Corporation
Nice and Simple in Eclipse




   © 2013 IBM Corporation
Working in Domino




Copy these 3 files to your ..jvmlibext directory (they are about 9meg in total and
cause a noticeable pause if in the agent)

Restart and you’re done




   © 2013 IBM Corporation
Working in Domino
                            Normal Java
                            Class doing
                            Stuff in Domino




   © 2013 IBM Corporation
Working in Domino
                            Scala Class, containing an Scala Object, calling that Java Class




   © 2013 IBM Corporation
Working in Domino




                            Export Class files to a Jar


   © 2013 IBM Corporation
Working in Domino




Import Jar file into
  normal Agent




    © 2013 IBM Corporation
Working in Domino



Calling the Scala
Object from Within
  a Java Agent




     © 2013 IBM Corporation
Working in Domino




Be Still my beating
      heart!!!




      © 2013 IBM Corporation
Questions?
                         Mark Myers
                         London Developer Coop
                         mark@energywins.co.uk
                         Twitter: @stickfight




© 2013 IBM Corporation
Legal disclaimer
      •   © IBM Corporation 2013. All Rights Reserved.
      •   The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is
          provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not
          be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any
          warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software.
      •   References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this
          presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing
          contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results.
      •   Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon
          many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can
          be given that an individual user will achieve results similar to those stated here.
      •   Adobe, the Adobe logo, PostScript, and the PostScript logo are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States, and/or other countries.
      •   Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.
      •   Microsoft and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both.
      •   Intel, Intel Centrino, Celeron, Intel Xeon, Intel SpeedStep, Itanium, and Pentium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries.
      •   UNIX is a registered trademark of The Open Group in the United States and other countries.
      •   Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Other company, product, or service names may be trademarks or service marks of others.
      •   All references to [insert fictitious company name] refer to a fictitious company and are used for illustration purposes only.




 45           © 2013 IBM Corporation
THANK YOU!
                         Mark Myers
                         London Developer Coop
                         mark@energywins.co.uk
                         Twitter: @stickfight




© 2013 IBM Corporation

More Related Content

PPTX
Programming in java ppt
PDF
JavaOne 2012 CON3978 Scripting Languages on the JVM
PDF
JavaOne 2012 CON 3961 Innovative Testing Techniques Using Bytecode Instrument...
ODP
3978 Why is Java so different... A Session for Cobol/PLI/Assembler Developers
PDF
130700548484460000
PPTX
Java v/s .NET - Which is Better?
PDF
Chong Comparing Four E Learning Applications
PDF
Introduction to Java Programming Language
Programming in java ppt
JavaOne 2012 CON3978 Scripting Languages on the JVM
JavaOne 2012 CON 3961 Innovative Testing Techniques Using Bytecode Instrument...
3978 Why is Java so different... A Session for Cobol/PLI/Assembler Developers
130700548484460000
Java v/s .NET - Which is Better?
Chong Comparing Four E Learning Applications
Introduction to Java Programming Language

What's hot (19)

PDF
Bn1005 demo ppt core java
PPTX
HTML for beginners
PPTX
Java seminar
PDF
Java Programming
PPTX
Java training in bangalore
PPTX
Java Programming
PDF
Odessa .NET User Group - 10.11.2011 - Applied Code Generation
PPS
Cr java concept by vikas jagtap
DOC
Java questions and answers jan bask.net
PDF
Ruby vs Java: Comparing Two Popular Programming Languages For Developing Ente...
PPTX
02 java programming basic
PDF
Overview of Java
PPTX
Java vs python
PPTX
Java presentation
PPTX
Summer training presentation on "CORE JAVA".
PPTX
core java
PPTX
A Comparison of .NET Framework vs. Java Virtual Machine
PPTX
Presentation on Core java
PPTX
Core Java
 
Bn1005 demo ppt core java
HTML for beginners
Java seminar
Java Programming
Java training in bangalore
Java Programming
Odessa .NET User Group - 10.11.2011 - Applied Code Generation
Cr java concept by vikas jagtap
Java questions and answers jan bask.net
Ruby vs Java: Comparing Two Popular Programming Languages For Developing Ente...
02 java programming basic
Overview of Java
Java vs python
Java presentation
Summer training presentation on "CORE JAVA".
core java
A Comparison of .NET Framework vs. Java Virtual Machine
Presentation on Core java
Core Java
 
Ad

Viewers also liked (6)

PPTX
How to build a computer
PPT
Show104 buried treasure
PPSX
Hassan 2
PPT
Proper Connections Development for Proper Domino Developers
PPT
SHOW104: Practical Java
DOC
Final JAVA Practical of BCA SEM-5.
How to build a computer
Show104 buried treasure
Hassan 2
Proper Connections Development for Proper Domino Developers
SHOW104: Practical Java
Final JAVA Practical of BCA SEM-5.
Ad

Similar to BP203 limitless languages (20)

KEY
Scala Introduction
PDF
Scala - from "Hello, World" to "Heroku Scale"
PDF
Scala and jvm_languages_praveen_technologist
PDF
Software Engineering Thailand: Programming with Scala
KEY
Intro to java
PDF
Scala, Akka, and Play: An Introduction on Heroku
PPT
Indic threads pune12-polyglot & functional programming on jvm
PDF
ACCU 2013 Taking Scala into the Enterpise
KEY
Scala clojure techday_2011
PPTX
Scala adoption by enterprises
PPT
JAVA object oriented programming (oop).ppt
PDF
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
PPTX
All about scala
PDF
Languages used by web app development services remotestac x
PPT
Comp102 lec 3
PPT
JavaClassPresentation
PDF
Java The Complete Reference Ninth Edition Herbert Schildt
PDF
BCS SPA 2010 - An Introduction to Scala for Java Developers
PDF
An Introduction to Scala for Java Developers
PPTX
Java Starting
Scala Introduction
Scala - from "Hello, World" to "Heroku Scale"
Scala and jvm_languages_praveen_technologist
Software Engineering Thailand: Programming with Scala
Intro to java
Scala, Akka, and Play: An Introduction on Heroku
Indic threads pune12-polyglot & functional programming on jvm
ACCU 2013 Taking Scala into the Enterpise
Scala clojure techday_2011
Scala adoption by enterprises
JAVA object oriented programming (oop).ppt
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
All about scala
Languages used by web app development services remotestac x
Comp102 lec 3
JavaClassPresentation
Java The Complete Reference Ninth Edition Herbert Schildt
BCS SPA 2010 - An Introduction to Scala for Java Developers
An Introduction to Scala for Java Developers
Java Starting

More from Mark Myers (9)

PPTX
Engage 2017 - Choose your own adventure
PPTX
LDC Via building a new app
PPTX
Saleforce For Domino Dogs
PPTX
1 app 2 developers 3 servers
PPT
Uklug 2014 connections dev faq
PPT
Vertical vs Horizontal Scaling
PPTX
The Dev-Admin Chimera: Customising Connections (with Gab Davis)
PPT
Ar*@!+$es to this. getting IBM connections to do what you want
PDF
Blug2013 frameworks
Engage 2017 - Choose your own adventure
LDC Via building a new app
Saleforce For Domino Dogs
1 app 2 developers 3 servers
Uklug 2014 connections dev faq
Vertical vs Horizontal Scaling
The Dev-Admin Chimera: Customising Connections (with Gab Davis)
Ar*@!+$es to this. getting IBM connections to do what you want
Blug2013 frameworks

Recently uploaded (20)

PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PPT
Module 1.ppt Iot fundamentals and Architecture
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
WOOl fibre morphology and structure.pdf for textiles
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
Getting Started with Data Integration: FME Form 101
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PDF
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
PPTX
The various Industrial Revolutions .pptx
PDF
DP Operators-handbook-extract for the Mautical Institute
PDF
project resource management chapter-09.pdf
PDF
August Patch Tuesday
PDF
Hybrid model detection and classification of lung cancer
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
1. Introduction to Computer Programming.pptx
A contest of sentiment analysis: k-nearest neighbor versus neural network
Module 1.ppt Iot fundamentals and Architecture
O2C Customer Invoices to Receipt V15A.pptx
Getting started with AI Agents and Multi-Agent Systems
WOOl fibre morphology and structure.pdf for textiles
cloud_computing_Infrastucture_as_cloud_p
Getting Started with Data Integration: FME Form 101
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
The various Industrial Revolutions .pptx
DP Operators-handbook-extract for the Mautical Institute
project resource management chapter-09.pdf
August Patch Tuesday
Hybrid model detection and classification of lung cancer
Hindi spoken digit analysis for native and non-native speakers
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
Univ-Connecticut-ChatGPT-Presentaion.pdf
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Zenith AI: Advanced Artificial Intelligence
1. Introduction to Computer Programming.pptx

BP203 limitless languages

  • 1. BP203 Limitless Languages In The IBM Social Stack Mark Myers | London Developer Coop © 2013 IBM Corporation
  • 2. Agenda Overview The JVM Programming paradigms JVM Alternative Languages Scala Existing Code Working With Domino © 2013 IBM Corporation
  • 3. This presentation skims over the hard work and dedication of thousands of developers passions, any generalizations or sweeping statements are not intended to give offense, corrections are gratefully received. But most of all please interrupt! Don't wait till the end of the session © 2013 IBM Corporation
  • 4. Who Am I?  Mark Member of the London Developer Co-op (londc.com) Developer from a support background 12+ years on Domino, 15+ years in IT Speaker at 2x Lotuspheres, 3x UKLUGs, 1x ILUG Twitter: @stickfight, Skype: Stickfight, Blog: stickfight.co.uk © 2013 IBM Corporation
  • 5. Tools We Used  IBM® Lotus® Notes® version 8.5.3  IBM Lotus Domino® version 8.5.3  Eclipse 3.7 (indigo)  Scala plug-in 29  Various other software tools mentioned throughout this presentation  Most code and techniques we talk about should be applicable to other versions of Notes/Domino/Windows too © 2013 IBM Corporation
  • 6. Limitless Languages? Limitless Languages = Alternative JVM Languages Alternative JVM Languages = Any Language that Compiles to Java ByteCode © 2013 IBM Corporation
  • 7. Why this Session? Existing and Traditional IT cant keep up with the speed of green field and start-up development You need little or no Investment to get started and you don’t have to throw your existing Java stuff away Its not all up to IBM to keep us up to date. Nearly all of you are already using an Never get left behind again IBM alternative JVM Its simple and helps your CV Language (sort of) Its Cool © 2013 IBM Corporation
  • 8. The JVM The JVM (Java Virtual Machine) runs Java ByteCode It’s Increased in reliability and performance since 1996 All variations of the JVM guarantees binary compatibility Java ByteCode does NOT have to have been generated from Java, any Language that compiles down to ByteCode can run on the JVM We will take a look at the Pack Leaders After some boring stuff © 2013 IBM Corporation
  • 9. Dynamic Vs Static typed: Dynamic In a dynamically typed language, every variable name is (unless it is null) bound only to an object. Names are bound to objects at execution time by means of assignment statements, and it is possible to bind a name to objects of different types during the execution of the program. This does not cause an error, unless you for get which type LotusNotes = 8.5.4 the variable currently is LotusNotes = “Awesome” © 2013 IBM Corporation
  • 10. Dynamic Vs Static typed: Static In a statically typed language, every variable name is bound both to a type (at compile time) and to an object. Once a variable name has been bound to a type (that is, declared) it can be bound (via an assignment statement) only to objects of that type; it cannot ever be bound to an object of a different type. An attempt to bind the name to an object of the wrong type will raise a type exception. © 2013 IBM Corporation
  • 11. Functional Programming A method of coding like Object Oriented Programming “functional programming is a programming paradigm that treats computations as the evaluation of mathematical functions and avoids state and mutable data.” -Wikipedia Think of the states An object which a document goes can be modified through after it is created © 2013 IBM Corporation
  • 12. Functional Programming Why? Grants us greater modularity Means code reuse and maintenance is easier Immutable objects allows data to be accessed concurrently from multiple threads without locking © 2013 IBM Corporation
  • 13. JVM Alternative Languages An agile and dynamic language A Core of Java with lots of features inspired by languages like Python, Ruby and Smalltalk Very small-zero learning curve provides the ability to statically type check and statically compile your code ( good for speed) Seamlessly integrates with all existing Java classes and libraries i.e. unlike a lot of other Alternative JVM languages you can include Java code in the same file as Groovy One of Groovy's top companions is Grails, a high-productivity web development environment inspired by Ruby on Rails. not much use for domino designers but fab if you are having to build your own UI (used by sky) © 2013 IBM Corporation
  • 14. JVM Alternative Languages A general-purpose dynamic programming language Is a dialect of Lisp Also runs on Microsoft's Common Language Runtime and JavaScript engines. Used by Citigroup, Typewire, Tianya (largest forum in china), AltLaw.org (one of the first production websites to use it) © 2013 IBM Corporation
  • 15. JVM Alternative Languages JRuby is an implementation of the Ruby programming language JRuby is held to be faster than Ruby for most implementations (once loading the JVM is taken into consideration) Jruby is called from Java using either the JSR 223 Scripting for Java 6 or the Apache Bean Scripting framework LinkedIn uses JRuby for its front end © 2013 IBM Corporation
  • 16. JVM Alternative Languages Jython the successor of JPython is an implementation of Python Supports nearly all of the Core Python standard library modules and all Java Libs Jython programs cannot currently use CPython extension modules written in C (although this is supposedly coming) Wsadmin (webSphere Server command shell) and Bea WebLogic use Jython as their scripting language © 2013 IBM Corporation
  • 17. JVM Alternative Languages Kotlin Rhino This is the Actual Logo © 2013 IBM Corporation
  • 18. Scala Stands for “scalable language.” named for its ability to grow with user needs Designed by Martin Odersky, creator of Pizza (the forerunner of Java generics), author of GJ compiler "... if someone had shown me the Programming in Scala book ... back in 2003, I'd probably have never created Groovy." - James Strachan, July 2009 © 2013 IBM Corporation
  • 19. Scala Under active development at Ecole Polytechnique Fédérale de Lausanne (EPFL) and in the open source community, also nicely funded by none corporations. Programming in Scala second edition by Martin Odersky, Lex Spoon and Bill Venners http://www.artima.com/shop/programming_in_scala_2ed © 2013 IBM Corporation
  • 20. Who Uses Scala? LinkedIn Siemens Twitter Électricité de France (EDF) FourSquare The Guardian Sony Xerox IBM knows about it too, see Adrian Spender excellent presentation at http://www.slideshare.net/aspender/scala-introduction-6963846 And from IBM them selves http://www.ibm.com/developerworks/training/kp/j-kp-altlang/index.html © 2013 IBM Corporation
  • 21. Why?: Shorter / Less Boiler // this is Java class MyClass { private int index; private String name; public MyClass(int index, String name) { this.index = index; this.name = name; } } // this is Scala class MyClass(index: Int, name: String) http://stackoverflow.com/questions/2952732/samples-of-scala-and-java-code- where-scala-code-looks-simpler-has-fewer-lines for an extreme example © 2013 IBM Corporation
  • 22. Why?: Type Inference Java – Static Type Good – Catch type errors BEFORE you run BAD – Verbose, bulky Scripting Languages Good – Short , easy to code BAD – You get to catch your errors in test/production Scala (with Type Inference) Good – Catch Type Errors BEFORE you run Good – Short , easy to code © 2013 IBM Corporation
  • 23. Why?: Type Inference You don’t have to assign a type here, it infers this from type of data you try and put in the variable val cost = new BigInteger("99999999") var stringcost = List("nine", "nine") Stringcost += cost But Compiler still says no, when you assign the wrong type © 2013 IBM Corporation
  • 24. Why?: Unified types All types are objects. (Int, Boolean,Double etc etc) No more primitives ( no more double and Double) All Mapped Automatically for integration with Java All functions get the nice add-ons like toInt and toFloat for String © 2013 IBM Corporation
  • 25. Why?: Pattern matching Not Limited to primitives You can even call Class and Functions :-) © 2013 IBM Corporation
  • 26. Why?: Actors Concurrency Made simple Designed to get over the fundamental problems with Javas shared data and locks model It is a share-nothing model all communication is doing by messaging An actor is a bit like a thread with a mailbox for receiving messages © 2013 IBM Corporation
  • 27. Why?: Actor example © 2013 IBM Corporation
  • 28. Why?: Parallel Processing How do you make this run in parallel? © 2013 IBM Corporation
  • 29. Why?: Parallel Processing Now running in parallel Calling thread WAITS for completion of computation 2 CPU Machine = 2 items running in parallel © 2013 IBM Corporation
  • 30. Sanity Warning! : Scalaz Danger Will Robinson A Plug in Library for Scala An implementation of pure functional programming with very high-level abstractions represented by symbols Awesomely powerful and concise but a steep learning curve unless you are familiar with the complexity and are dealing with things like Trading platforms http://code.google.com/p/scalaz/ © 2013 IBM Corporation
  • 31. Sanity Warning! : Scalaz :'-( © 2013 IBM Corporation
  • 32. Cross Language Dependency Existing Code © 2013 IBM Corporation
  • 33. Cross Language Dependency After Inclusion of a new Scala Class © 2013 IBM Corporation
  • 34. Installing Scala has plug-ins for Eclipse, IntelliJIDEA and NetBeans ( http://www.scala- lang.org/node/91 ) I use http://scala-ide.org/ for the eclipse plug-in Install Eclipse 3.6 (Helios) or Eclipse 3.7 (Indigo) and install as a standard plug-in site (http://download.scala-ide.org/releases-29/stable/site ) Restart and you’re done © 2013 IBM Corporation
  • 35. Nice and Simple in Eclipse © 2013 IBM Corporation
  • 36. Nice and Simple in Eclipse © 2013 IBM Corporation
  • 37. Working in Domino Copy these 3 files to your ..jvmlibext directory (they are about 9meg in total and cause a noticeable pause if in the agent) Restart and you’re done © 2013 IBM Corporation
  • 38. Working in Domino Normal Java Class doing Stuff in Domino © 2013 IBM Corporation
  • 39. Working in Domino Scala Class, containing an Scala Object, calling that Java Class © 2013 IBM Corporation
  • 40. Working in Domino Export Class files to a Jar © 2013 IBM Corporation
  • 41. Working in Domino Import Jar file into normal Agent © 2013 IBM Corporation
  • 42. Working in Domino Calling the Scala Object from Within a Java Agent © 2013 IBM Corporation
  • 43. Working in Domino Be Still my beating heart!!! © 2013 IBM Corporation
  • 44. Questions? Mark Myers London Developer Coop mark@energywins.co.uk Twitter: @stickfight © 2013 IBM Corporation
  • 45. Legal disclaimer • © IBM Corporation 2013. All Rights Reserved. • The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. • References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. • Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here. • Adobe, the Adobe logo, PostScript, and the PostScript logo are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States, and/or other countries. • Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. • Microsoft and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both. • Intel, Intel Centrino, Celeron, Intel Xeon, Intel SpeedStep, Itanium, and Pentium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. • UNIX is a registered trademark of The Open Group in the United States and other countries. • Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Other company, product, or service names may be trademarks or service marks of others. • All references to [insert fictitious company name] refer to a fictitious company and are used for illustration purposes only. 45 © 2013 IBM Corporation
  • 46. THANK YOU! Mark Myers London Developer Coop mark@energywins.co.uk Twitter: @stickfight © 2013 IBM Corporation