This file contains 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
window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; | |
window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction; | |
window.IDBCursor = window.IDBCursor || window.webkitIDBCursor; |
This file contains 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. | |
# ========================= | |
# User-specific files | |
# ========================= | |
*.suo | |
*.user | |
*.sln.docstates | |
# ========================= | |
# Visual Studio files |
This file contains 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
var x = { | |
a: String, | |
b: [String], | |
c: Number, | |
d: Boolean, | |
e: Object | |
}; | |
if (!Array.isArray) { |
This file contains 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
## Construct 2 ## | |
#Construct 2 User Interface | |
*.uistate.xml | |
#Temporary files | |
*.capx.backup* | |
*.capx.autosave* |
This file contains 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
namespace BanksySan.Logging.Tests.Helpers | |
{ | |
using System.Collections.Generic; | |
using Moq.Language.Flow; | |
public static class MoqExtensions | |
{ | |
public static void ReturnsInOrder<T, TResult>( | |
this ISetup<T, TResult> setup, | |
params TResult[] results) where T : class |
This file contains 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
[user] | |
email = [email protected] | |
name = David Banks | |
[push] | |
default = simple | |
[diff] | |
tool = bc4 | |
[difftool] | |
prompt = false | |
[difftool "bc4"] |
This file contains 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
var net = require('net'); | |
var server = net.createServer(function (socket) { | |
socket.write('Echo server\r\n'); | |
socket.pipe(socket); | |
}); | |
server.listen(1337, '127.0.0.1'); |
This file contains 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
[alias] | |
qlog = log --pretty=oneline --decorate --abbrev-commit | |
qgraph = log --pretty=oneline --decorate --abbrev-commit --graph --all | |
adda = add . --all |
This file contains 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
DECLARE @searchString varchar(max) = 'text to search' | |
SELECT DISTINCT | |
o.name AS Object_Name, | |
o.type_desc | |
FROM sys.sql_modules m | |
INNER JOIN sys.objects o | |
ON m.object_id = o.object_id | |
WHERE m.definition Like '%' + @searchString + '%'; |
This file contains 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
*.1drv.com:443; | |
*.1drv.com; | |
*.2mdn.net:443; | |
*.2mdn.net; | |
*.adlooxtracking.com:443; | |
*.adlooxtracking.com; | |
*.adnxs.com:443; | |
*.adnxs.com; | |
*.adobe.com:443; | |
*.adobe.com; |
OlderNewer