Text
Free video tutorials on fundamentals and advanced concepts of React
Egghead.io is so generous to give away two and a half hours of React course which covers how to kick start with React and Advanced Patterns for FREE. I would strongly suggest every UI Developer to go through the course and get benefited. By the way, here is the link for React Course – https://egghead.io/courses/the-beginner-s-guide-to-reactjs Happy Learning!
View On WordPress
0 notes
Text
Block-Level Scoping in ES 2015
Block-Level Scoping in ES 2015
Introduction: Scoping in JavaScript works little different compared to other languages. Without knowing this, many new and experienced developers have fallen prey to Scoping System in JavaScript. This is because of our coding habits in C#, Java or C++. The Problem: We usually create variables in for loop or if condition in a function and think that it will not be accessible outside that loop or…
View On WordPress
0 notes
Photo
Facebook Messenger Channel added to Bot Connector Microsoft has recently added Facebook messaging channel on Bot Connector. For connecting your Bot to Facebook via Page.
0 notes
Photo
Automated Testing & Auto Scaling Apps with Microsoft & Open Source Technologies Session presented at DevOps on Azure - Community Roadshow at Hyderabad, organized by MVPs and MUGH.
0 notes
Text
DevOps Community Roadshow 2016
DevOps Community Roadshow 2016
Join us at DevOps Community Roadshow at Westin, Hitec City, Hyderabad on 7th May, 2016. I am going to speak on Automated Testing and the benefits of running load, integration and unit tests automatically attached to Continuous Integration or other means. Register at https://www.microsoftevents.com/profile/form/index.cfm?PKformID=0x2049354b9c
View On WordPress
0 notes
Text
Unable to call scope method from UI-Grid Cell Button Click
Unable to call scope method from UI-Grid Cell Button Click
Problem: When you try to call a scope method when clicked on a button or link which is in UI-Grid cell, you will get an error saying – it couldn’t find that method. This is because – Grid will have a different scope. Solution: There are a couple of solutions. Using external scope: ui-grid="gridOptions" class="grid" external-scopes="gridScope"> and defining the functions in that scope (literal) as…
View On WordPress
1 note
·
View note
Text
Building a Conversational Bot using Bot Framework and Microsoft Azure
Building a Conversational Bot using Bot Framework and Microsoft Azure
Have presented a session on “Building a Conversational Bot using Bot Framework and Microsoft Azure” at Global Azure Bootcamp hosted by Microsoft User Group Hyderabad (MUGH) at Microsoft IDC, Hyderabad. This session covers framework overview and step by step process for developing a conversational bot by adding features one after the other making the bot intelligent. Here is the presentation deck…
View On WordPress
0 notes
Text
Kick starting with Bot Development
Kick starting with Bot Development
Introduction Bots don’t need any introduction. They aren’t new and definitely are not unique to Microsoft. Bots are conversational agents. They’re meant to help users achieve and/or complete a particular task. Bots can help users interact with a particular service or application without having to download a separate app or go to a specific Web site. Personal digital assistants like Cortana, Siri…
View On WordPress
0 notes
Text
Why should we add “shim” for AngularJS when using Require.js?
Why should we add “shim” for AngularJS when using Require.js?
sadf In computer programming, a shim is a small library that transparently intercepts API calls and changes the arguments passed, handles the operation itself, or redirects the operation elsewhere.Shims typically come about when the behavior of an API changes, thereby causing compatibility issues for older applications that still rely on the older functionality. In these cases, the older API can…
View On WordPress
0 notes
Text
Resetting sorting in ng-grid
Applying sorting to an ng-grid is like a cake walk in Angular JS. But it is little tricky if you want to show the ng-grid with default data (the order in which it loaded first). Here is a solution for it. Here I am taking a dropdown to change the sort order of the grid. So, I will be using ng-change of the dropdown to update the sort order in ng-grid. Default Order Name Age Division Here is the…
View On WordPress
0 notes
Text
The Internet of Things with Azure Service Bus
The Internet of Things with #Azure Service Bus #GlobalAzureBootcamp #MUGH #Hyderabad
Presented at Global Azure Bootcamp 2015 Hyderabad
View On WordPress
3 notes
·
View notes
Text
Permissions API for Web
Permissions API for Web - #HTML5
Till now, when you land on a site that needs your location, Chrome immediately pops up a little request at the top of the browser window, even though you may not even really know what the site is all about. Now, as a developer, if you’ve worked with the Geolocation API before, chances are you’ve wanted to check if you had permission to use Geolocation without causing a prompt. This simply wasn’t…
View On WordPress
0 notes
Text
DevOps - a simple definition
DevOps – a simple definition
Just came across this simple and funny definition for DevOps on web and thought to share it here.
The core of DevOps is not a difficult or complex concept. More or less, it’s the idea that developers and operations should collaborate more closely than they traditionally have, so neither side is caught with their pants down when something blows up.
That’s it! Of course, there are additional ideas…
View On WordPress
0 notes
Text
Inference and Learning - BigData
#Inference and #Learning - #BigData
Given a statistical model and data, inference allow you to “infer” useful generalization (hypothesis). Probabilistic inference typically means calculating posterior distribution given the data. For example, presence of spider web (data/evidence) may increase the likelihood that no one has used that door for sometime (hypothesis).
Learning, on the other hand, implies learning the connection…
View On WordPress
0 notes
Text
WebSockets and WebRTC - A quick intro
#WebSockets and #WebRTC - A quick intro
There is some misconception around WebSockets and WebRTC – like when and where to use, which one is better etc. If we know the reason behind developing these technologies, opting apt one for our use will be pretty easy.
So, let us understand why they are developed first.
WebRTC is designed for high-performance, high quality communication of video, audio and arbitrary data. In other words, for…
View On WordPress
0 notes
Text
Typing effect mimicking human behavior using TheatreJS
Typing effect mimicking human behavior with TheatreJS
TheaterJS is a typing effect mimicking human behavior. This is an open source project and hosted on GitHub. Everything that is in this is demonstrated and explained in this codepen. The demo is also available on the TheaterJS page.
Usage:
var theater = new TheaterJS(); theater .describe("Vader", .8, "#vader") .describe("Luke", .6, "#luke"); theater .write("Vader:Luke.", 600) .write("Luke:What?",…
View On WordPress
0 notes
Text
Using Array.prototype.filter() with arguments
Using Array.prototype.filter() with arguments
In JavaScript, the filter() method is used to search for array items which satisfy the condition that is passed to it. Technically this method creates a new array with all elements that pass the test implemented by the provided function. But there is a confusion around how to use it with arguments. For example, we want to search for an employee with id = 101 in an array of employee objects.
Let…
View On WordPress
0 notes