SlideShare uma empresa Scribd logo
1 de 83
Baixar para ler offline
Now Loading. Please Wait ...




                              Android
        Android


                  #yochiand
                                 Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
eXtensible   Markup Language




                                         Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
<?xml version="1.0" encoding="utf-8"?>
  <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/hello" />

  </LinearLayout>




                                                                   Re:Kayo-System Co.,Ltd.

2011   11   15
<poem>
       <pno>8</pno>
       <mkana>                                      </mkana>
       <poet>        (          )</poet>
       <yomi>

       	     	   	       	     (        )   (   )              (   )   (   )


       </yomi>
       <image>image/m0008.jpg</image>
       <mean>     (       )


       	     	   	       	


       </mean>
       </poem>




                                                                               Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
package jp.co.kayo.android.sample.activity;

            import android.app.Activity;
            import android.os.Bundle;

            public class MainActivity extends Activity {
                /** Called when the activity is first created. */
                @Override
                public void onCreate(Bundle savedInstanceState) {
                    super.onCreate(savedInstanceState);
                    setContentView(R.layout.main);
                }
            }



                                                           Re:Kayo-System Co.,Ltd.

2011   11   15
<?xml version="1.0" encoding="utf-8"?>
                 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/
                 android"
                     android:layout_width="fill_parent"
                     android:layout_height="fill_parent"
                     android:orientation="vertical" >

                     <TextView
                         android:layout_width="fill_parent"
                         android:layout_height="wrap_content"
                         android:text="@string/hello" />

                 </LinearLayout>




                                                         Re:Kayo-System Co.,Ltd.

2011   11   15
<?xml version="1.0" encoding="utf-8"?>
       <manifest xmlns:android="http://schemas.android.com/apk/res/android"
           package="jp.co.kayo.android.sample.activity"
           android:versionCode="1"
           android:versionName="1.0" >

            <uses-sdk android:minSdkVersion="14" />

            <application
                android:icon="@drawable/ic_launcher"
                android:label="@string/app_name" >
                <activity
                    android:label="@string/app_name"
                    android:name=".MainActivity" >
                    <intent-filter >
                         <action android:name="android.intent.action.MAIN" />

                        <category android:name="android.intent.category.LAUNCHER" />
                    </intent-filter>
                </activity>
            </application>

       </manifest>




                                                                                       Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Button button = (Button)findViewById(R.id.button1);
       button.setOnClickListener(new OnClickListener() {
           public void onClick(View v) {
               //
                 }
       });




                                                       Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Fragment fr = new MyFragment();
                 FragmentTransaction tr =
                      getSupportFragmentManager().beginTransaction();
                 tr.add(fr, "MyFragment");
                 tr.commit();




                                                           Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
public Fragment createFragment(int n){
                     MyFragment f = new MyFragment();
                     Bundle bundle = new Bundle();
                     bundle.putInt("num", n);
                     f.setArguments(bundle);
                     return f;
                 }

                 @Override
                 public void onCreate(Bundle savedInstanceState) {
                     super.onCreate(savedInstanceState);
                     if(savedInstanceState!=null){
                         n = savedInstanceState.getInt("num");
                     }
                     else{
                         Bundle bundle = getArguments();
                         if(bundle!=null){
                             n = bundle.getInt("num");
                         }
                     }
                 }

                                                                     Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Fragment fr = new MyFragment(n++);
                 FragmentTransaction tr =
                      getSupportFragmentManager().beginTransaction();
                 tr.replace(R.id.frameLayout1, fr);
                 tr.addToBackStack("task");
                 tr.commit();




                                                            Re:Kayo-System Co.,Ltd.

2011   11   15
Fragment f =
                    getSupportFragmentManager().
                       findFragmentByTag("tag");




                                Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
class MyAsyncTask extends AsyncTask<Void, Void, Void>{
                     Handler handler;
                     Context context;

                     @Override
                     protected Void doInBackground(Void... params) {
                         Cursor cur =
                             context.getContentResolver().query(
                                      Media.EXTERNAL_CONTENT_URI,
                                      null, null, null, null);
                         handler.sendMessage(handler.obtainMessage(0, cur));
                         return null;
                     }
                 }




                                                                  Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
LoaderCallbacks<T>


                 Bundle bundle = new Bundle();
                 getSupportLoaderManager().initLoader(
                      R.layout.main, bundle, this);




                                                         Re:Kayo-System Co.,Ltd.

2011   11   15
Bundle bundle = new Bundle();
                 getSupportLoaderManager().restartLoader(
                      R.layout.main, bundle, this);




                                                      Re:Kayo-System Co.,Ltd.

2011   11   15
@Override
                 public void onDestroy() {
                     super.onDestroy();
                     getLoaderManager().destroyLoader(R.layout.main);
                 }




                                                          Re:Kayo-System Co.,Ltd.

2011   11   15
LoaderCallbacks<T>
                 public static class MyLoaderFragment extends Fragment implements
                 LoaderCallbacks<Cursor>{
                     CursorAdapter adapter;

                     public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) {
                         return new CursorLoader(getActivity(),
                                 Media.EXTERNAL_CONTENT_URI,
                                 null, null, null, null);
                     }

                     public void onLoadFinished(Loader<Cursor> arg0, Cursor arg1) {
                         Cursor cur = adapter.swapCursor(arg1);
                     }

                     public void onLoaderReset(Loader<Cursor> arg0) {

                     }

                 }


                                                                            Re:Kayo-System Co.,Ltd.

2011   11   15
class ValueItem {
                     String name;
                     int age;
                 }




                                     Re:Kayo-System Co.,Ltd.

2011   11   15
public static class MyLoaderFragment2 extends Fragment implements
                 LoaderCallbacks<List<ValueItem>>{

                     public Loader<List<ValueItem>> onCreateLoader(int arg0, Bundle arg1) {
                         // TODO Auto-generated method stub
                         return null;
                     }

                     public void onLoadFinished(Loader<List<ValueItem>> arg0,
                             List<ValueItem> arg1) {
                         // TODO Auto-generated method stub

                     }

                     public void onLoaderReset(Loader<List<ValueItem>> arg0) {
                         // TODO Auto-generated method stub

                     }

                 }


                                                                                Re:Kayo-System Co.,Ltd.

2011   11   15
static class MyAsyncTaskLoader extends AsyncTaskLoader<List<ValueItem>>{

                       public MyAsyncTaskLoader(Context context) {
                           super(context);
                       }

                       @Override
                       public List<ValueItem> loadInBackground() {
                           List<ValueItem> list = new ArrayList<ValueItem>();
                           return list;
                       }
                 }




                     public Loader<List<ValueItem>> onCreateLoader(int arg0, Bundle arg1) {
                         MyAsyncTaskLoader l = new MyAsyncTaskLoader(getActivity());
                         l.forceLoad();
                         return l;
                     }

                                                                             Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15
Re:Kayo-System Co.,Ltd.

2011   11   15

Mais conteúdo relacionado

Semelhante a Now Loading Android Document

Apache Camel
Apache CamelApache Camel
Apache CamelGenevaJUG
 
Coherence 12.1.2 Live Events
Coherence 12.1.2 Live EventsCoherence 12.1.2 Live Events
Coherence 12.1.2 Live Eventsharvraja
 
Java EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e MudançasJava EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e MudançasBruno Borges
 
What's coming in Java EE 8
What's coming in Java EE 8What's coming in Java EE 8
What's coming in Java EE 8David Delabassee
 
What Riding the Camel can do to make integration easier for you
What Riding the Camel can do to make integration easier for youWhat Riding the Camel can do to make integration easier for you
What Riding the Camel can do to make integration easier for youClaus Ibsen
 
Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...
Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...
Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...CA Technologies
 
Automated Java Deployments With Rpm
Automated Java Deployments With RpmAutomated Java Deployments With Rpm
Automated Java Deployments With RpmMartin Jackson
 
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017Big Data Spain
 
Step by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts ApplicationStep by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts Applicationelliando dias
 
Hosting Your Own OTA Update Service
Hosting Your Own OTA Update ServiceHosting Your Own OTA Update Service
Hosting Your Own OTA Update ServiceQuinlan Jung
 
Apache Camel - JEEConf May 2011
Apache Camel - JEEConf May 2011Apache Camel - JEEConf May 2011
Apache Camel - JEEConf May 2011Claus Ibsen
 
Achievement Unlocked: Drive development, increase velocity, and write blissfu...
Achievement Unlocked: Drive development, increase velocity, and write blissfu...Achievement Unlocked: Drive development, increase velocity, and write blissfu...
Achievement Unlocked: Drive development, increase velocity, and write blissfu...All Things Open
 
Web Performance Monitoring Tales
Web Performance Monitoring TalesWeb Performance Monitoring Tales
Web Performance Monitoring TalesCatchpoint Systems
 
Piece Framework 2.0 Background
Piece Framework 2.0 BackgroundPiece Framework 2.0 Background
Piece Framework 2.0 BackgroundAtsuhiro Kubo
 
AngularJS in practice
AngularJS in practiceAngularJS in practice
AngularJS in practicejhoguet
 
Functional Reactive with Core Java - Workshop - Slides
Functional Reactive with Core Java - Workshop - SlidesFunctional Reactive with Core Java - Workshop - Slides
Functional Reactive with Core Java - Workshop - SlidesSven Ruppert
 
Java EE 8 - What’s new on the Web front
Java EE 8 - What’s new on the Web frontJava EE 8 - What’s new on the Web front
Java EE 8 - What’s new on the Web frontDavid Delabassee
 

Semelhante a Now Loading Android Document (20)

京都Gtugコンパチapi
京都Gtugコンパチapi京都Gtugコンパチapi
京都Gtugコンパチapi
 
Apache Camel
Apache CamelApache Camel
Apache Camel
 
Coherence 12.1.2 Live Events
Coherence 12.1.2 Live EventsCoherence 12.1.2 Live Events
Coherence 12.1.2 Live Events
 
Java EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e MudançasJava EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e Mudanças
 
What's coming in Java EE 8
What's coming in Java EE 8What's coming in Java EE 8
What's coming in Java EE 8
 
What Riding the Camel can do to make integration easier for you
What Riding the Camel can do to make integration easier for youWhat Riding the Camel can do to make integration easier for you
What Riding the Camel can do to make integration easier for you
 
Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...
Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...
Case Study: VF Corporation Takes a Practical Approach to Improving its MOJO w...
 
Automated Java Deployments With Rpm
Automated Java Deployments With RpmAutomated Java Deployments With Rpm
Automated Java Deployments With Rpm
 
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
Causal Consistency For Large Neo4j Clusters by Jim Webber at Big Data Spain 2017
 
Step by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts ApplicationStep by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts Application
 
Hosting Your Own OTA Update Service
Hosting Your Own OTA Update ServiceHosting Your Own OTA Update Service
Hosting Your Own OTA Update Service
 
React advance
React advanceReact advance
React advance
 
Apache Camel - JEEConf May 2011
Apache Camel - JEEConf May 2011Apache Camel - JEEConf May 2011
Apache Camel - JEEConf May 2011
 
Achievement Unlocked: Drive development, increase velocity, and write blissfu...
Achievement Unlocked: Drive development, increase velocity, and write blissfu...Achievement Unlocked: Drive development, increase velocity, and write blissfu...
Achievement Unlocked: Drive development, increase velocity, and write blissfu...
 
Web Performance Monitoring Tales
Web Performance Monitoring TalesWeb Performance Monitoring Tales
Web Performance Monitoring Tales
 
Piece Framework 2.0 Background
Piece Framework 2.0 BackgroundPiece Framework 2.0 Background
Piece Framework 2.0 Background
 
AngularJS in practice
AngularJS in practiceAngularJS in practice
AngularJS in practice
 
Functional Reactive with Core Java - Workshop - Slides
Functional Reactive with Core Java - Workshop - SlidesFunctional Reactive with Core Java - Workshop - Slides
Functional Reactive with Core Java - Workshop - Slides
 
Java EE 8 - What’s new on the Web front
Java EE 8 - What’s new on the Web frontJava EE 8 - What’s new on the Web front
Java EE 8 - What’s new on the Web front
 
Inversion Of Control: Spring.Net Overview
Inversion Of Control: Spring.Net OverviewInversion Of Control: Spring.Net Overview
Inversion Of Control: Spring.Net Overview
 

Mais de Masafumi Terazono

Kobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライドKobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライドMasafumi Terazono
 
Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話Masafumi Terazono
 
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)Masafumi Terazono
 
夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料Masafumi Terazono
 
セーラーソン振り返り
セーラーソン振り返りセーラーソン振り返り
セーラーソン振り返りMasafumi Terazono
 
関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝Masafumi Terazono
 
関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 Masafumi Terazono
 
日本Androidの会 中国支部資料
日本Androidの会 中国支部資料日本Androidの会 中国支部資料
日本Androidの会 中国支部資料Masafumi Terazono
 
Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会Masafumi Terazono
 
関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)Masafumi Terazono
 
夜子まま塾講義12(broadcast reciever)
夜子まま塾講義12(broadcast reciever)夜子まま塾講義12(broadcast reciever)
夜子まま塾講義12(broadcast reciever)Masafumi Terazono
 
夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)Masafumi Terazono
 

Mais de Masafumi Terazono (20)

初心者向けSpigot開発
初心者向けSpigot開発初心者向けSpigot開発
初心者向けSpigot開発
 
Minecraft dayの報告
Minecraft dayの報告Minecraft dayの報告
Minecraft dayの報告
 
BungeeCordeについて
BungeeCordeについてBungeeCordeについて
BungeeCordeについて
 
Spongeについて
SpongeについてSpongeについて
Spongeについて
 
Kobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライドKobe.py 勉強会 minecraft piスライド
Kobe.py 勉強会 minecraft piスライド
 
Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話Minecraftと連携するSlackちゃんという会話Botを作った話
Minecraftと連携するSlackちゃんという会話Botを作った話
 
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
初心者〜中級者 Android StudioによるAndroid勉強会資料(スライド)
 
夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料夜子まま塾 2015年1月23日 進行用資料
夜子まま塾 2015年1月23日 進行用資料
 
Thetalaps
ThetalapsThetalaps
Thetalaps
 
Android wear勉強会2
Android wear勉強会2Android wear勉強会2
Android wear勉強会2
 
夜子まま塾@鹿児島
夜子まま塾@鹿児島夜子まま塾@鹿児島
夜子まま塾@鹿児島
 
セーラーソン振り返り
セーラーソン振り返りセーラーソン振り返り
セーラーソン振り返り
 
関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝関西Nfc lab勉強会 宣伝
関西Nfc lab勉強会 宣伝
 
関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 関西支部 第二回 NFCLab勉強会 
関西支部 第二回 NFCLab勉強会 
 
日本Androidの会 中国支部資料
日本Androidの会 中国支部資料日本Androidの会 中国支部資料
日本Androidの会 中国支部資料
 
Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会Android+NFC 日本Androidの会神戸支部 勉強会
Android+NFC 日本Androidの会神戸支部 勉強会
 
関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)関西支部Android勉強会(ロボットxnfc)
関西支部Android勉強会(ロボットxnfc)
 
関西Unity勉強会
関西Unity勉強会関西Unity勉強会
関西Unity勉強会
 
夜子まま塾講義12(broadcast reciever)
夜子まま塾講義12(broadcast reciever)夜子まま塾講義12(broadcast reciever)
夜子まま塾講義12(broadcast reciever)
 
夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)夜子まま塾講義11(暗黙的intent)
夜子まま塾講義11(暗黙的intent)
 

Último

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
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
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
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
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
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
 
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
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
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
 

Último (20)

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
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
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
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
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
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
 
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
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
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
 

Now Loading Android Document