AI Summit – Nuwaraeliya


It’s a wrap. Bluechip Technologies Asia has successfully organized an outstanding AI Summit in Nuwaraeliya, Sri Lanka! It was an extraordinary opportunity to delve into the transformative power of AI across three vital sectors: Tea, Tourism, and Real Estate.

☕ Tea Industry: The summit explored groundbreaking AI applications revolutionizing every aspect of tea production, from cultivation techniques to supply chain optimization. Sri Lanka’s rich tea heritage is set to thrive with these innovative advancements.

️ Tourism Sector: We delved into how AI is reshaping the tourism landscape, from personalized experiences to sustainable practices. Nuwaraeliya’s stunning attractions will become even more accessible and enriching with AI-driven insights.

Real Estate Market: Attendees gained invaluable insights into AI’s impact on property valuation, market trends, and customer engagement strategies. With AI at the helm, Nuwaraeliya’s real estate sector is poised for unprecedented growth and innovation.

Hats off to the incredible team at Bluechip Technologies Asia and Navodya Jayasundara for spearheading this monumental event and bringing together industry leaders, innovators, and visionaries. Together, we’re paving the way for a brighter future in Nuwaraeliya and beyond. Let’s continue harnessing the power of AI to drive positive change and innovation!

1243

5

Reinforcement Learning session at Smart Data Forum


Reinforcement Learning is transforming industries and reshaping how machines learn from their environment. Join me as we delve into key concepts, real-world applications, and the future of this cutting-edge technology.

401570411_10161595158946842_6393573803790073674_n

DSC_4576

DSC_4661

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 Year end Monthly meeting


year end meeting

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

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.

Machine Learning and Game Development Workshops.


Machine Learning and Game Development Workshops sri lanka

Machine Learning and Game Development Workshops sri lanka

Recently I did 2 workshop on Game Development and Machine Learning at Sabaragamuwa University and SLIIT.

Machine Learning and Game Development Workshops sri lanka

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.