{
"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
| 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 |
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
| var hex = "d8a7"; | |
| var utf8 = Enumerable.Range(0, hex.Length) | |
| .Where(x => x % 2 == 0) | |
| .Select(x => Convert.ToByte(hex.Substring(x, 2), 16)) | |
| .ToArray(); | |
| var s = Encoding.UTF8.GetString(utf8); | |
| var uni = Encoding.Unicode.GetBytes(s); | |
| Console.WriteLine("0x" + string.Join("", uni.Reverse().Select(x => x.ToString("X")))); |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <startup> | |
| <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> | |
| </startup> | |
| <runtime> | |
| <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
| <dependentAssembly> | |
| <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | |
| <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> |
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
| The Beatles | |
| Bob Dylan | |
| Black Sabbath | |
| U2 | |
| Led Zeppelin | |
| Nirvana (band) | |
| Metallica | |
| Pink Floyd | |
| Neil Young | |
| The Rolling Stones |
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
| Top 100 Most Influential Rock figures (according to SNA Betweenness) | |
| ==================================================================== | |
| U2 | |
| Led Zeppelin | |
| Nirvana (band) | |
| Kiss (band) | |
| Emmylou Harris | |
| The Beatles | |
| Beck |
OlderNewer