I hereby claim:
- I am redsquare on github.
- I am redsquare (https://keybase.io/redsquare) on keybase.
- I have a public key ASBXSLaKvqYBgD34X1I2FSTC5hTdJqkr6lKhzu4__ZYE8Qo
To claim this, I am signing this object:
| // | |
| // Module pattern: | |
| // http://yuiblog.com/blog/2007/06/12/module-pattern | |
| // | |
| var APP = (function($, window, document, undefined) { | |
| // For use only inside APP. | |
| var PRIVATE_CONSTANT_1 = 'foo'; | |
| var PRIVATE_CONSTANT_2 = 'bar'; | |
| // Expose contents of APP. |
| /* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011 | |
| * http://benalman.com/ | |
| * Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */ | |
| (function($) { | |
| var o = $({}); | |
| $.subscribe = function() { | |
| o.on.apply(o, arguments); |
| (function() { | |
| var Events = { | |
| dropMenu: function(evt) { | |
| alert("Handle the click"); | |
| }, | |
| events: { | |
| "click .drop-menu": "dropMenu", | |
| }, | |
| } | |
| return Events; |
| public static class Wait | |
| { | |
| public static bool ForExpectedValue<T>(T expectation, Func<T> source, int millisecondPolling = 500, int timeoutInMilliseconds = 5000) | |
| { | |
| var matched = Wait.Until(() => expectation.Equals(source()), millisecondPolling, timeoutInMilliseconds).WasSatisfied; | |
| StoryTellerAssert.Fail(!matched, () => "Expected {0}, but was {1}".ToFormat(expectation, source())); | |
| return true; | |
| } |
| //r = require('rethinkdb') | |
| var MongoClient = require('mongodb').MongoClient, | |
| format = require('util').format; | |
| var querystring = require('querystring'); | |
| var https = require('https'); | |
| var Inserter = function (collection) { | |
| this.collection = collection; |
| $scope.updateview = function (iteration, $event) { | |
| var _this = $("#" + $event.target.id); | |
| $http.get('../issues?size=25&iteration=' + iteration).success(function (data) { | |
| $scope.issueList = data; | |
| _this.addClass("tab-selected"); | |
| }); | |
| }; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>t1</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
| <script src="./suite.js"></script> | |
| </head> | |
| <body> | |
| <h1>Open the console to view the results</h1> |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Security; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using StackExchange.Redis; |
I hereby claim:
To claim this, I am signing this object:
| name: Register & Deploy Prefect flows | |
| on: | |
| push: | |
| workflow_dispatch: | |
| inputs: | |
| pattern: | |
| description: "Project Name or prohect name Pattern? (defaults to all)" | |
| required: false | |
| default: ".*" |