Skip to content

Instantly share code, notes, and snippets.

View QVMaster's full-sized avatar

Ali QVMaster

  • canada
View GitHub Profile
@QVMaster
QVMaster / DbGeographyTryOut.cs
Created July 24, 2018 14:12 — forked from tugberkugurlu/DbGeographyTryOut.cs
System.Data.Spatial.DbGeography sample (Latitude and Longitude).
class Program {
public class Db {
public static Dictionary<string, DbGeography> Locations = new Dictionary<string, DbGeography>() {
//instert the place locations here...
};
}
@QVMaster
QVMaster / index.html
Created July 8, 2018 13:59
JS Bin [add your bin description] // source https://jsbin.com/tilahog
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[add your bin description]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="timer"></div>
@runspired
runspired / form.html
Created May 23, 2016 13:46
How to turn off password and email/username autocomplete.
<!--
<form autocomplete="off"> will turn off autocomplete for the form in most browsers
except for username/email/password fields
-->
<form autocomplete="off">
<!-- fake fields are a workaround for chrome/opera autofill getting the wrong fields -->
<input id="username" style="display:none" type="text" name="fakeusernameremembered">
<input id="password" style="display:none" type="password" name="fakepasswordremembered">