LxS 4 powered by Vidphone | FluxGen & AirProbe

Powered by vidphone.me – In this League of Extraordinary Startups(LxS) video, TiE Bangalore Executive Director Vijetha Shashtry is in conversation with Ganesh from FluxGen and Aditya from AirProbe.

Categories LxS

LxS 3.0 powered by Vidphone | Minion Labs & OCEO Water

Powered by vidphone.me – In this League of Extraordinary Startups(LxS) video, TiE Bangalore Executive Director Vijetha Shashtry is in conversation with Gokul Shrinivas of Minion Labs and Vikram Gulecha of OCEO Water.

Categories LxS

LxS 2.0 powered by Vidphone | Aerologiks & KOTUMB

Powered by vidphone.me – In this League of Extraordinary (LxS) Startups video, TiE Bangalore Executive Director Vijetha Shashtry is in conversation with Parul Aghi of Aerologiks and Hemanth Mathad of KOTUMB.

Categories LxS

Vidphon – A Secure Video Communications Platform

India and the world are facing a crisis like never before, worse than World War 2. While the world war was fought by armies on two sides (Allied and Axis powers) engaged in war , the coronavirus pandemic has put each and every person in the world on the front lines, left to fend for … Read more

Introduction to JSON

JSON (JavaScript Object Notation) is a format to represent data, even though it has JavaScript in its name, it is language independent. 

JSON is simply a collection of name/value pairs, In this blog post, we will focus on JSON in JavaScript.

Read more

Promise – finally

The finally method of a Promise  allows you to execute code after a promise has been settled. If the promise succeeds or fails the finally method is called. This is useful if you want to run some code regardless of the outcome of the promise. The promise finally method is similar to the finally method in a try catch finally block.

Read more

Introduction to CSS Variables

CSS Variables lets you use variables in your CSS rules, which results in less repetition, more flexibility and easier theming of your site. Unlike SASS and LESS, CSS Variables are part of the DOM, so you can use them directly in the browser. Recent versions of most browsers support CSS Variables, IE does not support … Read more

Introduction to Django

Django is a python framework that lets you quickly and easily build secure data driven websites. Django uses the Model-View-Template (MVT) architecture, which has three components: Models are used for managing the data. View handle the application logic , they fetch data from the models and display the results in the templates. Template handles the presentation of … Read more