Skip to content

Instantly share code, notes, and snippets.

View yashuvit89's full-sized avatar
🎯
Focusing

P S L Yaswanth yashuvit89

🎯
Focusing
View GitHub Profile
@yashuvit89
yashuvit89 / index.html
Created May 16, 2019 11:51
JS Bin [Komprise] // source https://jsbin.com/futarak
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[Komprise]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h2>Komprise Telephonic</h2>
@yashuvit89
yashuvit89 / index.html
Created November 7, 2016 14:24 — forked from anonymous/index.html
Document // source http://jsbin.com/senitor
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style id="jsbin-css">
.grid{
width: 100%;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS Bin</title>
<style id="jsbin-css">
.topnav{
list-style-type: none;
margin: 0;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS Bin</title>
<style id="jsbin-css">
.topnav{
list-style-type: none;
margin: 0;
@yashuvit89
yashuvit89 / index.html
Created August 17, 2016 08:24 — forked from anonymous/index.html
Google Maps API v3 : Hardcoded Polygon [V2 PESSIMISTIC ALL POLYGONS - KUNDANHALLI] // source http://jsbin.com/bexeki
<html>
<head>
<meta name="description" content="[V2 PESSIMISTIC ALL POLYGONS - KUNDANHALLI]">
<title>Google Maps API v3 : Hardcoded Polygon</title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&libraries=geometry"></script>
<script type="text/javascript">
</script>
</head>
<body onload="initialize()">
<div id="map" style="width: 600px; height: 500px">
var Q = require('Q');
// this.mapConfigs.forEach(function(config){
// promise = promise.then(function(data){
// console.log("Inside computeMapPolygons ------> 1", travelMode, config.timeToDrive);
// if(data) {
// travelMode === "best_guess" ? self.bestGuessPolygons.push(data) : self.pessimisticPolygons.push(data);
// // self.allPolygonData.push(data);
// }
// // traffic_model
@yashuvit89
yashuvit89 / SelectionSort
Created April 2, 2014 15:24
Selection Sort
var arr = [7, 10, 5, 3, 8, 4, 2, 9, 6];
var selectionSort = function(arr){
var i,
j,
min;
for (i = 0; i < arr.length; i++){
min = i;