This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const texasCountyNames = [ | |
"anderson", | |
"andrews", | |
"angelina", | |
"aransas", | |
"archer", | |
"armstrong", | |
"atascosa", | |
"austin", | |
"bailey", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Used in VS Code's Find and Replace | |
// Note that this will add JS extension to any import that already has .js | |
// You may want to search for .js.js after running this | |
// Find in folder(s) | |
(^import[\s{\w,?}]*[from]?\s)(['\.\/a-z\/\-]*)';? | |
// Replace | |
$1$2.js'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
powershell -file "C:\{{file}}.ps1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
syntax: glob | |
# User-specific files | |
*.rsuser | |
*.suo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
body{font-family: sans-serif} | |
.mt-move--table { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<label for="js-file-fed">File to import</label><input type="file" id="js-file-fed" accept="text/plain"> | |
<p /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<label for="js-file-fed">File to import</label><input type="file" id="js-file-fed" accept="text/plain"> | |
<p /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** https://stackoverflow.com/questions/219434/query-to-list-all-stored-procedures **/ | |
select * | |
from DatabaseName.information_schema.routines | |
where routine_type = 'PROCEDURE' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using SAIF.Common.Extensions | |
@model ClaimSnapshot.ViewModels.SnapshotViewModel | |
@{ | |
ViewBag.Title = Model.Header; | |
} | |
@Html.AntiForgeryToken() | |
<div id="SnapshotKeys"> | |
<input id="ActiveClaimId" value="@Model.ActiveClaimId" type="hidden" /> | |
<input id="js-active-cards" value="@Model.ActiveCards" type="hidden" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Uses AMD or browser globals to create a jQuery plugin. | |
// It does not try to register in a CommonJS environment since | |
// jQuery is not likely to run in those environments. | |
// See jqueryPluginCommonJs.js for that version. | |
(function (factory) { | |
if (typeof define === 'function' && define.amd) { | |
// AMD. Register as an anonymous module. | |
define(['jquery'], factory); |
NewerOlder