AI and Machine Learning Bootcamp at Shangri-La Colombo


a

  • Introduction to Machine Learning
  • Data Cleaning & Feature Engineering
  • Computer Vision
  • Natural Language Processing
  • Time Series Analysis
  • Recommender Systems
  • Use-Cases

We have recently completed our AI and machine learning bootcamp atShangri-La Colombo

b

https://www.meetup.com/colombo-ai-technology-meetup/events/298298206/

Unleash the power of ChatGPT – Masterclass


ChatGPT is a chatbot launched by the OpenAI project in November 2022. A chatbot is a software used to conduct an on-line chat conversation via text or text-to-speech, in lieu of providing direct contact with a live human agent. ChatGPT is trained using reinforcement learning and NLP (natural language processing) to assist with generating human-like text based on the input prompt provided by the user. This session will go though chatGPT and its use-cases

  • Introduction to ChatGPT
  • Using ChatGPT
  • Applications of ChatGPT
  • Building Applications

Bluechip Technologies Asia Year end Monthly meeting


year end meeting

Year end meetup at Bluechip Technologies Asia. With team of 45 members joining and discussing 2022 achievements.

Microsoft Highway to a 100 Unicorns Program.


We are happy to be selected for Microsoft Highway to a 100 Unicorns Program.

MS

https://news.microsoft.com/apac/2020/10/12/microsoft-expands-highway-to-a-100-unicorns-initiative-to-support-startups-in-asia-pacific/

Bluechip Technologies Asia–Our Team


Our team at Bluechip Technologies Asia Colombo office.

team

https://bluechiptech.asia/

Online IT Academy.


logo

New way of learning for IT.

#AI #Mobile #Blockchain #Cloud #DevOps #BI #ICT #Games
#Office #Networking #Linux #Web #Infrastructure #Programming
#CyberSecurity #UX #VR

http://www.itacademy.biz/

Data Science and Machine Learning Workshop at Microsoft Sri Lanka.


Data Science and Machine Learning course

Register Now –

https://goo.gl/rJWCrp

Event Page-

https://www.facebook.com/events/281797495839662/

React Native Mobile Application Development for Android & IOS Training at Singapore.


React Native

Recently I did React Native Mobile Application Development training at Singapore.

I covered following topics at the training.

  • Introduction
  • Back to JavaScript
  • Core components
  • Styling
  • Navigation
  • Lists
  • Cross Platform APIs
  • IOS specific APIs
  • Android specific APIs
  • Persistence
  • Animations
  • Working with HTTP, network requests
  • Data Architecture using Redux
  • Application Deployment

React Native

React Native

React Native

Five Software developers from CPF attended 3 Days React Native training.

CPF

Central Provident Fund, Singapore

https://www.cpf.gov.sg/

 

For Training Requirement Contact-

udithamail@yahoo.com

udithait@gmail.com

training@bluechiptraining.biz

Mobile +94 0716092918

React Native Navigation for Android and IOS.


React Native Navigation 

In React Native there are lot of npm libraries for navigation. Some are only for IOS or Android.

In this we build simple navigation using react navigation.

npm

import packages

 

home page

details page

setting up root page

clip_image002clip_image004

More details about the package-

https://reactnavigation.org/

React Native Mobile Application Development Training Course for Android & IOS.


react-native

 

Introduction

In this section, we make a brief introduction to React Native. We set up machines for all the people that haven’t done that yet. By the end, attendees can create a new project, run it and understand tools available.

– Describe React Native: – Philosophy

– Available platforms

– Available APIs

– Available components

– Bridge

– Prerequisites

– Installation review (show installation instructions)

– Create an app with `react-native init` (mention Expo and Create React Native App command)

– Use `react-native run-ios/android` to run the app

– Describe `react-native-packager`

– Demonstrate `Developer Menu`

– Small exercises to get people familiar

 

Back to JavaScript

In this section, we go through latest ES6/ES7 features that were added, like import / export syntax or fat arrow functions. We also cover basics of React (or just refresh them for people already experienced), like component lifecycle and/or JSX. All these are run and live tested on an app set up in the previous section.

– List all `ES6` and `ES7` features (one per slide, w/o going into details)

– Explain how the code is transpiled

– Explain JSX

– React Component lifecycle

– Open discussion about other features

– A couple of exercises to make everyone comfortable with React / JavaScript

 

Core components

In this section, we cover the basic components, like `<View />` & `<Touchable />`.

– Describe all core components and their `props`

– A couple of exercises based on default `init` template:

– Add few buttons and test out handlers (with `bind` preferably)

– Add a bunch of different `<View />`s

 

Styling

In this section, we, describe `StyleSheet` API, how it implements flexbox and how’s that different from CSS.

– Describe StyleSheet, what are available values, how it works

– Demonstrate `Flexbox`

– Mention that there are UI kits, but we are not going to use them as it’s too advanced for now

– Mention that there are cross-platform styling techniques, like styled-components one can use

– A bunch of exercises to get attendees more familiar with the styling, esp.:

– Flexbox and its properties – implement column/grid layout as presented on a slide

– <Text /> number of lines

 

Navigation

In this section, we demonstrate basic concepts of navigation. We also brief attendees into how’s JS navigation different from fully native one. We list available alternatives as well what we will use throughout today.

– List available navigation solutions

– Brief readers into the one that was selected

– Make them aware of the API and how to think of the route hierarchy

– A couple of exercises working on current `init` template, e.g convert app to a stack, so we can push a new route

 

Lists

In this section, we describe lists and why they are so important in React Native. We describe available alternatives and list how’s `<ScrollView />` different than `<FlatList /> (and <SectionList />)` and when to use each.

– List available scroll solutions

– Explain when to use each

– Describe performance optimizations

– Warn about common pitfalls / issues

– As a demo task, one can create a view that has a list of contacts and each of them can be tapped to move to a new screen (with details)

Cross Platform APIs

We will discuss and implement the most used React Native APIs that work cross platform

IOS specific APIs

We will discuss and implement the most used iOS specific React Native APIs

Android specific APIs

We will discuss and implement the most used Android specific React Native APIs

 

Persistence

In this section, we describe how persistence is done with React Native and how it can be achieved using other technologies.

– Demonstrate persistence using AsyncStorage

– Exercise attendees to persist stuff (literal, more advanced JSON)

– Demonstrate available APIs, like `multiSet` and when it’s better to use what – Mention other tools like `realm`

 

Animations

In this section, we will examine different approaches to animating elements within the app. Specifically, we will check `LayoutAnimation` API and the better – `Animated`. We will briefly talk about performance concerns as well.

– Introduce LayoutAnimation

– Challenge attendees with simple animations – Ask if they feel happy with it?

– Introduce `Animated` as a general solution to the problem

– Encourage them to animate few things on screen

– Perf. wise – mention native driver

 

Working with HTTP, network requests, and accessing restful services

 

Here we look at using both the fetch API as well as Axios for fetching and sending data, and using the returned data to update our application UI.

 

Data Architecture

In this section, we cover both MobX and Redux and talk about how and why they are useful in a React Native app

– Introduce Redux

– Set up a basic redux implementation

– Fetching data and updating our redux store

– Discuss other asynchronous libraries such as Saga and Redux Promise Middleware

 

Application Deployment

In this section, we discuss various settings and configurations that the developer must use and understand to deploy the app to both the Google Play store as well as the Apple App store.

 

For Training Requirement Contact-

udithamail@yahoo.com

udithait@gmail.com

training@bluechiptraining.biz

Mobile +94 0716092918