SlideShare uma empresa Scribd logo
1 de 74
Baixar para ler offline
Slim3 + GWT in Action
                                         Go Tanaka

Thursday, April 8, 2010
Thursday, April 8, 2010
Introduction




Thursday, April 8, 2010
Introduction




Thursday, April 8, 2010
-   -

                                  http://d.hatena.ne.jp/nowokay/20100305




Thursday, April 8, 2010
Thursday, April 8, 2010
http://www.ipa.go.jp/about/research/2009cloud/pdf/100324_cloud.pdf

Thursday, April 8, 2010
Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
Google App Engine?

                                  API
                           API
                     URL            API

                            API

                     Memcache API

Thursday, April 8, 2010
Google App Engine?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




                          http://www.youtube.com/watch?v=uExEw3OVMd0
Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?


                      Button b = new Button("Click me", new ClickHandler() {
                        public void onClick(ClickEvent event) {
                          GWT.runAsync(new RunAsyncCallback() {
                            public void onFailure(Throwable caught) {
                              Window.alert("Code download failed");
                            }
                            public void onSuccess() {
                              Window.alert("Hello, AJAX");
                            }
                          });
                        }
                      });


Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?




Thursday, April 8, 2010
GWT?
                          http://code.google.com/p/google-web-toolkit-incubator/




Thursday, April 8, 2010
Slim3


                    Spin Up

                    HOT reloading

                                         JDO, JPA

                    Global Transaction



Thursday, April 8, 2010
Slim3


                          HOT reloading

                          Slim3 Controller

                          Validation

                          Global Transaction

                          Slim3 DataStore

                          Slim3 JSP
Thursday, April 8, 2010
Slim3




Thursday, April 8, 2010
HOT reloading




Thursday, April 8, 2010
HOT reloading



                   ClassCastException   IllegalAccessException




Thursday, April 8, 2010
HOT reloading



                             HOT reloading


                     Slim3                   CoolBridge




Thursday, April 8, 2010
HOT reloading

                              Bootstrap
                                                                • Bootstrap classes of your JVM
                               System                           • System class loader classses
                                                                • /WEB-INF/classes of your web application
                               Common                           • /WEB-INF/lib/*.jar of your web application
                                                                • $CATALINA_HOME/lib
                           Application                          • $CATALINA_HOME/lib/*.jar



                          Tomcat6
          http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html



Thursday, April 8, 2010
HOT reloading

                             Bootstrap       HotReloadingClassLoader
                                             →Request
                              System         ※Cool

                              Common

                                             Request
                          Application
                                             HotReloadingClassLoader

                   HotReloadingClassLoader
                                             Request




Thursday, April 8, 2010
HOT reloading

                                              Static
                             Bootstrap
                                                       Web
                                                                   HOT reloading
                               System
                                                             HOT reloading
                              Common              COOL
                                                                   cool

                          Application


                    HotReloadingClassLoader


                                              ※


Thursday, April 8, 2010
HOT reloading

                             Bootstrap      COOL             HOT reloading
                                                       ClassCastException
                              System
                                                   Web Application
                              Common        HotReloadingClassLoader


                          Application
                                            COOL            HOT reloading
                                                             CoolBridge
                  HotReloadingClassLoader




Thursday, April 8, 2010
HOT reloading


                   cool               Interface


                          Interface     HOT reloading

                                              “.cool”


                   CoolBridge

Thursday, April 8, 2010
HOT reloading

        COOL interface                                               HOT reloadable implementation class
        package root.cool.service;                                   package root.service;

        public interface EeeService {                                import root.cool.service.EeeService;
           void foo();
        }                                                            public class EeeServiceImpl implements
                                                                     EeeService {
                                                                         public void foo() {
                                                                             Bbb bbb = new Bbb();
                                                                             ...
                                                                         }
                                                                     }

         EeeService service = CoolBridge.create(EeeService.class);
         service.foo();

          http://sites.google.com/site/slim3documentja/documents/hot-reloading

Thursday, April 8, 2010
HOT reloading



                          HOT reloading


                ClassCastException        IllegalAccessException

                          CoolBridge



Thursday, April 8, 2010
*.gwt.xml
                                             entry-point


                          Service
                          Slim3 Validation
                          Slim3 DataStore

Thursday, April 8, 2010
Web Application Project

                   Slim3       Google Code                  (http://
                   code.google.com/p/slim3)          Slim3-blank-
                   x.x.x.zip

                   Zip


                   Java Build Path, Factory Path, web.xml

Thursday, April 8, 2010
Factory Path                                            Meta




                          http://sites.google.com/site/slim3documentja/getting-started/getting-blank-project

Thursday, April 8, 2010
GWTServiceServlet

          <servlet>
              <servlet-name>GWTServiceServlet</servlet-name>
              <servlet-class>org.slim3.gwt.server.rpc.GWTServiceServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
          </servlet>
            	
          <servlet-mapping>
              <servlet-name>GWTServiceServlet</servlet-name>
              <url-pattern>*.s3gwt</url-pattern>
          </servlet-mapping>




Thursday, April 8, 2010
<inherits name='org.slim3.gwt.emul.S3Emulation' />

             ※ S3Emulation   client      Key




Thursday, April 8, 2010
Thursday, April 8, 2010
Service




Thursday, April 8, 2010
Service




Thursday, April 8, 2010
Service



                      build.xml                Run As ... -> Ant build
                      Target gen-gwt-service




Thursday, April 8, 2010
Service




Thursday, April 8, 2010
Service




                            GWT

                             GWT

                              S3Emulation   inherit   source-
                     path



Thursday, April 8, 2010
Service




              Enum name




Thursday, April 8, 2010
Service




                  IsSerializable    Serializable

                  final, transient

                  GWT1.5


                                            GWT2.0


Thursday, April 8, 2010
Slim3 Validation




           ByteTypeValidator, DateTypeValidator, DoubleTypeValidator, FloatTypeValidator,
           IntegerTypeValidator, LongTypeValidator, NumberTypeValidator, ShortTypeValidator



           DoubleRangeValidator, LongRangeValidator



           MaxlengthValidator, MinlengthValidator, RegexpValidator, RequiredValidator




Thursday, April 8, 2010
Slim3 Validation


         Controller
         Validators v = new validators(request);
         v.add(“arg1”, v.required(), v.maxlength(200));
         if(v.validate()){
            // OK
         }


         Service
         Map<String, Object> params = // Dto      Map   Object
         //               Service        Errors
         params.put(ControllerConstants.ERRORS_KEY, new Errors());
         v.add(“arg1”, v.required(), v.maxlength(200));
         if(v.validate()){
            // OK
         }


Thursday, April 8, 2010
Slim3 Validation




                          AbstractValidator

                          getMessageKey()

                          validate()



                          Validators

Thursday, April 8, 2010
Slim3 Validation




                          AbstractValidator

                  import org.slim3.controller.validator.AbstractValidator;



                  public class BooleanValidator extends AbstractValidator {


                  }




Thursday, April 8, 2010
Slim3 Validation



                          getMessageKey()


            Validation
            ※                         Constructor
                                              application(_locale).properties (   )

             @Override
             protected String getMessageKey() {
                return "validator.xxxxx";
             }


Thursday, April 8, 2010
Slim3 Validation



                          validate()
                                                    String                       null


               public String validate(Map<String, Object> parameters, String name) {
                  if(//      ){
                          if (message != null) {
                             return message;
                          }
                          return ApplicationMessage.get(getMessageKey(), getLabel(name));
                     }
                     return null;
               }



Thursday, April 8, 2010
Slim3 Validation




          getMessageKey()


               validator.required={0} is required.


               validator.xxxxx={0} is xxxxx.

               label.arg1=ARG_1




Thursday, April 8, 2010
Slim3 Validation




                          Validators



               public BooleanValidator condition(boolean condition){
                   return new BooleanValidator(condition);
               }




Thursday, April 8, 2010
Slim3 DataStore




                          DataStore.put()


                                        DataStore
                      DataStore   GAE




Thursday, April 8, 2010
Slim3 DataStore




Thursday, April 8, 2010
Slim3 DataStore



                                        Google App Engine                      Transaction
      Slim3                                Global Transaction

                          Transaction               Entity Group                     Transaction
                                          Slim3                 Global Transaction


      ※                    Entity Group           Transaction     Global Transaction




Thursday, April 8, 2010
GWT                        Java

       HTML5


       GAE/J                  Slim3

                  DataStore




Thursday, April 8, 2010
Thursday, April 8, 2010
Thursday, April 8, 2010

Mais conteúdo relacionado

Semelhante a Slim3 Gwt In Action

Large problems, Mostly Solved
Large problems, Mostly SolvedLarge problems, Mostly Solved
Large problems, Mostly Solvedericholscher
 
Become Master of Your Own Universe - DIBI 2013
Become Master of Your Own Universe - DIBI 2013Become Master of Your Own Universe - DIBI 2013
Become Master of Your Own Universe - DIBI 2013Phil Sturgeon
 
Html5 apps nikolaionken-08-06
Html5 apps nikolaionken-08-06Html5 apps nikolaionken-08-06
Html5 apps nikolaionken-08-06Skills Matter
 
Edted 2010 Dicas de Web
Edted 2010 Dicas de WebEdted 2010 Dicas de Web
Edted 2010 Dicas de WebFabio Akita
 
Database Scalability Patterns
Database Scalability PatternsDatabase Scalability Patterns
Database Scalability PatternsRobert Treat
 
Google App Engine - Devfest India 2010
Google App Engine -  Devfest India 2010Google App Engine -  Devfest India 2010
Google App Engine - Devfest India 2010Patrick Chanezon
 
A Guide To PostgreSQL 9.0
A Guide To PostgreSQL 9.0A Guide To PostgreSQL 9.0
A Guide To PostgreSQL 9.0Robert Treat
 
iBizLog. Smalltalking the Web
iBizLog. Smalltalking the WebiBizLog. Smalltalking the Web
iBizLog. Smalltalking the WebESUG
 
IPTC NITF Maintenance June 2010
IPTC NITF Maintenance June 2010IPTC NITF Maintenance June 2010
IPTC NITF Maintenance June 2010Stuart Myles
 
Eye em potato_library_presentation
Eye em potato_library_presentationEye em potato_library_presentation
Eye em potato_library_presentationEyeEm
 
Using+javascript+to+build+native+i os+applications
Using+javascript+to+build+native+i os+applicationsUsing+javascript+to+build+native+i os+applications
Using+javascript+to+build+native+i os+applicationsMuhammad Ikram Ul Haq
 
Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015
Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015
Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015Cloud Native Day Tel Aviv
 
Cloud Log Analysis and Visualization
Cloud Log Analysis and VisualizationCloud Log Analysis and Visualization
Cloud Log Analysis and VisualizationRaffael Marty
 
Bytecode manipulation with Javassist and ASM
Bytecode manipulation with Javassist and ASMBytecode manipulation with Javassist and ASM
Bytecode manipulation with Javassist and ASMashleypuls
 
Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015
Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015
Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015CODE BLUE
 

Semelhante a Slim3 Gwt In Action (20)

Large problems, Mostly Solved
Large problems, Mostly SolvedLarge problems, Mostly Solved
Large problems, Mostly Solved
 
Adobe AIR Overview
Adobe AIR OverviewAdobe AIR Overview
Adobe AIR Overview
 
Become Master of Your Own Universe - DIBI 2013
Become Master of Your Own Universe - DIBI 2013Become Master of Your Own Universe - DIBI 2013
Become Master of Your Own Universe - DIBI 2013
 
Html5 apps nikolaionken-08-06
Html5 apps nikolaionken-08-06Html5 apps nikolaionken-08-06
Html5 apps nikolaionken-08-06
 
Edted 2010 Dicas de Web
Edted 2010 Dicas de WebEdted 2010 Dicas de Web
Edted 2010 Dicas de Web
 
HTML5 offline
HTML5 offlineHTML5 offline
HTML5 offline
 
Database Scalability Patterns
Database Scalability PatternsDatabase Scalability Patterns
Database Scalability Patterns
 
Google App Engine - Devfest India 2010
Google App Engine -  Devfest India 2010Google App Engine -  Devfest India 2010
Google App Engine - Devfest India 2010
 
20100608sigmod
20100608sigmod20100608sigmod
20100608sigmod
 
A Guide To PostgreSQL 9.0
A Guide To PostgreSQL 9.0A Guide To PostgreSQL 9.0
A Guide To PostgreSQL 9.0
 
iBizLog. Smalltalking the Web
iBizLog. Smalltalking the WebiBizLog. Smalltalking the Web
iBizLog. Smalltalking the Web
 
IPTC NITF Maintenance June 2010
IPTC NITF Maintenance June 2010IPTC NITF Maintenance June 2010
IPTC NITF Maintenance June 2010
 
Eye em potato_library_presentation
Eye em potato_library_presentationEye em potato_library_presentation
Eye em potato_library_presentation
 
App Engine Meetup
App Engine MeetupApp Engine Meetup
App Engine Meetup
 
Using+javascript+to+build+native+i os+applications
Using+javascript+to+build+native+i os+applicationsUsing+javascript+to+build+native+i os+applications
Using+javascript+to+build+native+i os+applications
 
Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015
Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015
Eran Rom, IBM - Bringing Compute to Openstack Swift, OpenStack Israel 2015
 
Java pode ser_hipster
Java pode ser_hipsterJava pode ser_hipster
Java pode ser_hipster
 
Cloud Log Analysis and Visualization
Cloud Log Analysis and VisualizationCloud Log Analysis and Visualization
Cloud Log Analysis and Visualization
 
Bytecode manipulation with Javassist and ASM
Bytecode manipulation with Javassist and ASMBytecode manipulation with Javassist and ASM
Bytecode manipulation with Javassist and ASM
 
Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015
Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015
Defeating firefox by Muneaki Nishimunea - CODE BLUE 2015
 

Mais de Go Tanaka

DevLOVE Kansai KnockoutJS
DevLOVE Kansai KnockoutJSDevLOVE Kansai KnockoutJS
DevLOVE Kansai KnockoutJSGo Tanaka
 
Jvm internal
Jvm internalJvm internal
Jvm internalGo Tanaka
 
Knockout handson
Knockout handsonKnockout handson
Knockout handsonGo Tanaka
 
Knockout bindings
Knockout bindingsKnockout bindings
Knockout bindingsGo Tanaka
 
Implement curry
Implement curryImplement curry
Implement curryGo Tanaka
 
Log4j 2 writing
Log4j 2 writingLog4j 2 writing
Log4j 2 writingGo Tanaka
 
Log4j 2 source code reading
Log4j 2 source code readingLog4j 2 source code reading
Log4j 2 source code readingGo Tanaka
 
InvokeDynamic at #shikadriven 2012
InvokeDynamic at #shikadriven 2012InvokeDynamic at #shikadriven 2012
InvokeDynamic at #shikadriven 2012Go Tanaka
 
Studying Network #1
Studying Network #1Studying Network #1
Studying Network #1Go Tanaka
 
Inside The Java Virtual Machine
Inside The Java Virtual MachineInside The Java Virtual Machine
Inside The Java Virtual MachineGo Tanaka
 
Nettyらへん
NettyらへんNettyらへん
NettyらへんGo Tanaka
 
T2 reading 20101126
T2 reading 20101126T2 reading 20101126
T2 reading 20101126Go Tanaka
 
Kanjava20110302
Kanjava20110302Kanjava20110302
Kanjava20110302Go Tanaka
 
はじめてのPHP
はじめてのPHPはじめてのPHP
はじめてのPHPGo Tanaka
 
T2 - 関ジャバ1月27日
T2 - 関ジャバ1月27日T2 - 関ジャバ1月27日
T2 - 関ジャバ1月27日Go Tanaka
 

Mais de Go Tanaka (18)

DevLOVE Kansai KnockoutJS
DevLOVE Kansai KnockoutJSDevLOVE Kansai KnockoutJS
DevLOVE Kansai KnockoutJS
 
Jvm internal
Jvm internalJvm internal
Jvm internal
 
CPU
CPUCPU
CPU
 
Knockout handson
Knockout handsonKnockout handson
Knockout handson
 
Knockout bindings
Knockout bindingsKnockout bindings
Knockout bindings
 
Implement curry
Implement curryImplement curry
Implement curry
 
Log4j 2 writing
Log4j 2 writingLog4j 2 writing
Log4j 2 writing
 
Log4j 2 source code reading
Log4j 2 source code readingLog4j 2 source code reading
Log4j 2 source code reading
 
InvokeDynamic at #shikadriven 2012
InvokeDynamic at #shikadriven 2012InvokeDynamic at #shikadriven 2012
InvokeDynamic at #shikadriven 2012
 
Studying Network #1
Studying Network #1Studying Network #1
Studying Network #1
 
Inside The Java Virtual Machine
Inside The Java Virtual MachineInside The Java Virtual Machine
Inside The Java Virtual Machine
 
FxUG HTML5
FxUG HTML5FxUG HTML5
FxUG HTML5
 
Nettyらへん
NettyらへんNettyらへん
Nettyらへん
 
T2 reading 20101126
T2 reading 20101126T2 reading 20101126
T2 reading 20101126
 
Kanjava20110302
Kanjava20110302Kanjava20110302
Kanjava20110302
 
GWT♥HTML5
GWT♥HTML5GWT♥HTML5
GWT♥HTML5
 
はじめてのPHP
はじめてのPHPはじめてのPHP
はじめてのPHP
 
T2 - 関ジャバ1月27日
T2 - 関ジャバ1月27日T2 - 関ジャバ1月27日
T2 - 関ジャバ1月27日
 

Último

Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 

Último (20)

Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 

Slim3 Gwt In Action