{
"query": {"match_all" :{}}
,
"size": 10,
"sort": { "PubDate":{ "order": "desc" }}
}
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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Security.Claims; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Web.Http; |
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
function ViewModel(price, discountPercentage){ | |
this.price = price; | |
this.discountPercentage = discountPercentage; | |
} | |
ViewModel.prototype.getRealPrice = function(){ | |
return this.price * this.discountPercentage; | |
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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Func<string> getStuff = () => | |
{ | |
Console.WriteLine("Called!"); | |
return Guid.NewGuid().ToString(); |
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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
for (int i = 0; i < 1000000000; i++) | |
{ | |
var memoryCache = new MemoryCache("sdf"); // leads to memory leak!!! | |
// WHILE THIS ONE DOES NOT | |
// var memoryStream = new MemoryStream(new byte[100000]); |
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
Date/Time: 2014-02-13 01:55:04 +0000 | |
OS Version: 10.9 (Build 13A3028) | |
Architecture: x86_64 | |
Report Version: 18 | |
Event: Sleep Wake Failure | |
Steps: 44 | |
Hardware model: MacBookPro11,1 | |
Active cpus: 4 |
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
public static class CircuitBreakerExtensions | |
{ | |
/// <summary> | |
/// | |
/// </summary> | |
/// <param name="circuit">async work</param> | |
/// <param name="timeout">it abandons the work if not finished until this timeout</param> | |
/// <param name="finalTimeout">timeout for when the task runs for final time</param> | |
/// <param name="tries">number of times to try the work</param> | |
/// <param name="retryRemedy">after each unscuccessful retry, this will be called and the index will be passed</param> |
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
public interface IConnectionProvider | |
{ | |
IConnection GetConnection(); | |
} | |
public class ConnectionProvider : IConnectionProvider | |
{ | |
private IConnection _connection; | |
private SortedDictionary<FactoryWrapperScore, IConnectionFactoryWrapper> _stats = | |
new SortedDictionary<FactoryWrapperScore, IConnectionFactoryWrapper>(); |
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 System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Microsoft.WindowsAzure.Storage; | |
using Microsoft.WindowsAzure.Storage.Table; | |
namespace TableStorageDumper |
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
from __future__ import unicode_literals | |
import requests | |
import json | |
from io import StringIO | |
from requests.auth import HTTPBasicAuth | |
import datetime, pytz | |
def copy_indexes(sourceSearchUrl, destinationBulkUrl, newIndexName=None, newTypeName=None, auth=None): | |
BatchSize = 40 |