SlideShare a Scribd company logo
1 of 74
Download to read 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

More Related Content

Similar to 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
 

Similar to 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
 

More from 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
 

More from 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日
 

Recently uploaded

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 

Recently uploaded (20)

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 

Slim3 Gwt In Action