Singapore AI Technology Meetup


Singapore AI technology Monthly meetup –

Unleash the power of ChatGPT

Tech 101 at Bluechip Technologies Asia


tech101

2022 Event

Bluechip Technologies Asia Singapore


sg

Expanding its horizons, the revolutionary software development solution provider, Bluechip Technologies Asia opened its newest branch in Singapore. Located in no 265 Joo Chiat Road, Singapore, the branch was opened under the name BLUECHIP TECHNOLOGIES ASIA PTE. LTD offering a range of products and services.

The company believes that this Singapore office will help the company manage their operations in the Southeast Asia region more smoothly. Singapore is the business hub of South East Asia. Thus, having a branch in Singapore enables the company to access its clientele more effectively and deliver an improved service experience with better coordination. The opening of the new branch marks the 3 operational locations of Bluechip Technologies Asia, where its other offices are based in Sri Lanka and Hong Kong. This is another major milestone in the company’s history that offer many strategic advantages for the company to take their business to the next level.

Bluechip Technologies Asia is known for their bespoke solutions in AI, blockchain, mobile app, e-commerce, games and 3D solutions. The company has been empowering businesses with the latest technologies to operate smart and effectively and deliver an optimized service experience for their clients. Offering tailor-made solutions in development to fit unique challenges businesses are facing, Bluechip Technologies Asia ensures user-friendly, flexible and scalable solutions to help businesses grow and expand.

Python Online Training Singapore.


Recently I had conducted online Python training for IT staff at Singapore.
Following topics covered at the training.

http://www.bluechiptraining.biz/python-programming-course-sri-lanka/

For Training Requirement Contact-

udithait@gmail.com

training@bluechiptraining.biz

Sri Lanka

+94 0716092918

Singapore-
+65 86738158

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/

Introduction to F# Programming.


Introduction to F# Programming.

F# (pronounced “F Sharp”) is a strongly-typed, functional-first programming language for writing simple code to solve complex problems. From the business perspective, the primary role of F# is to reduce the time-to-deployment for analytical software components in the modern enterprise. Its interoperability with all .NET languages and libraries and its ability to tackle the complexity of components such as calculation engines and data-rich analytical services offer a compelling story for businesses.

Introduction to F# Programming.

Hello World

let helloWorld = "Hello" + " " + "world"

helloWorld

Random Numbers

let number = (new System.Random()).Next()

number

Simple function

/// A function to compute a sample curve

let sampleFunction (x:int) =

2*x*x – 5*x + 3

sampleFunction (7 + 4)

If-else condition

if 98.0 < 100.0 then 10 else 20

not false && (true || false)

Class

Introduction to F# Programming.

Basic I/O

Introduction to F# Programming.