Skip to main content

Posts

Showing posts from October, 2019

Machine Learning with Microsoft Azure ML Studio

Event- Machine Learning with Microsoft Azure ML Studio Event Date: October 30, 2019 Event Venue: College of Vocational Studies, Triveni, J Pocket, Phase II, Sheikh Sarai, New Delhi, Delhi 110017 Requirements: Laptop Optional but recommended: Internet Connection (may be Mobile- Hotspot or WiFi- Dongle) To register, Click here FREE Subway Meal to first 100 Registered Students...
Xamarin- Adding Controls   If you're new to Xamarin.Forms then I would recommend you to head over to my previous post on Getting started with Cross-Platform Mobile App Development Adding Buttons to a Xamarin Forms Application After creating a New Xamarin.Forms App, follow along the below steps to get started with adding Buttons in your Application: Open MainPage.xml, in Xamarin.Forms App, where the Shared Code resides, under [YourAppName]-> MainPage.xaml. Now add the below line of Code right under the Label created... Code: <Button Text="Click Here"  Clicked="myButton_Clicked"/> Now let's jump right into adding an Event Handler for the Button. Open the MainPage.xaml.cs file (where the backend logic resides) by expanding the current .xaml file from the Solution Explorer. Now write the below code in the MainPage Class, after the MainPage Function. Code: int count = 0; void myButton_Clicked(object sender, System.EventArgs e) {     count

Getting started with Cross-Platform Mobile App Development

My First Xamarin Mobile Application Software Pr-requisite: Visual Studio Community Edition, ( Refer to my previous post for Visual Studio) Download Here: [for Windows] [for Mac] Xamarin Workload in Visual Studio [For Steps Refer this]  Recently After my First Hackathon Experience, I made an application using Microsoft Xamarin and really wanna share it out to everyone via this blog. So Stay tuned... Let's get the Real Work Done! Start Visual Studio (in my case present build: vs2019) Click on Create New Project Search for " Xamarin " in the Search box on top and then select " Mobile App (Xamarin.Forms) " Give your App a Name Select a Blank App Template. In Xamarin.Forms App, the Shared Code resides under, [ YourAppName ]-> MainPage.xaml . Currently I'll be running a UWP (Universal Windows Platform) run to test the App, though in the End there are some Android Screenshots too... Let's make a little change in the MainPage.xaml

Get yourself a Development Environment

Which Development Environment to go for... Below are two Development tools which you'll find definitely useful for your further Projects... Many people got a little when they hear about VS Code, It is a really powerful Text Editor with Ad-On supports to actually make help the developer work in variety of different workloads, like: Dot Net Core, Python development, NodeJs development, etc... On the Other hand there is a Giant so called Fully Featured IDE called Visual Studio 2019 (current version). It supports out of the Box workloads. Let's talk about them separately... Visual Studio Code (VS Code) According to Microsoft: "Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as .N
Post-Event Resources- Ai Gaming with Microsoft Azure Heya  Folks hope you enjoyed the Event, do let us know in the comment section about your experience. As said, Here are the Post Event Resources for your continual Learning... Basic Concept of Ai (Theory) AI in Video Games: Toward a More Intelligent Game What is an API Open-Ai 5 Article Microsoft Cognitive- Getting started with Azure Cognitive Services Bundled Playlist on Youtube Microsoft Cognitive Vision Service- Try for Free online Some Videos by Siraj:  OpenAI Five vs Dota 2 Explained How to Install OpenAI's Universe and Make a Game Bot    How to Make an Amazing Video Game Bot Easily Hope you find the Resources resources... For folks interested in Microsoft Azure ML, Click Here

Ai Gaming with Microsoft Azure

Ai Gaming with Microsoft Azure To register, Click here (by Oct 13, 2019) Free SWAGS by MLH & Subway Meal to early birds
Counter Widget