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
/* | |
Youtube playback rate hotkeys: | |
Ctrl + UP | |
Ctrl + DONW | |
*/ | |
function createPlaybackRateDisplay() { | |
var elem = document.createElement('span'); | |
elem.style = 'position: fixed; left: 0; top: 0; z-index: 10000; background: #000; color: #fff; font-size: 32px;' | |
elem.setAttribute('id', 'paylbackRateDisplay') |
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
# curl -XDELETE 'http://localhost:9200/test' | |
curl -XPUT 'http://localhost:9200/test' -d ' | |
{ | |
"analysis": { | |
"char_filter": { | |
"my_charfilter": { | |
"type": "mapping", | |
"mappings": ["Ё=>Е", "ё=>е"] | |
} |
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
curl -XPUT 'http://localhost:9200/_bulk?pretty' -d ' | |
{ "index" : { "_index" : "test", "_type" : "publication", "_id" : "1" } } | |
{ "title" : "The NoSQL database glut", "journal" : "2", "author": [{"title": "August S"}, {"title": "Weiss P L"}] } | |
{ "index" : { "_index" : "test", "_type" : "publication", "_id" : "2" } } | |
{ "title" : "Graph Databases Seen Connecting the Dots", "journal" : "1", "author": [{"title": "Weiss S"}] } | |
' | |
curl -XGET 'http://localhost:9200/test/_search?pretty' -d '{"query": {"match": {"author.title": {"query": "weiss s", "operator": "and"}}}}' |
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
#include <string.h> | |
#include <stdio.h> | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include "rapidxml-1.13/rapidxml.hpp" | |
using namespace rapidxml; | |
using namespace std; |
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
curl -XPUT 'http://localhost:9200/_bulk?pretty' -d ' | |
{ "index" : { "_index" : "test", "_type" : "publication", "_id" : "1" } } | |
{ "title" : "The NoSQL database glut", "journal" : "2", "author": "1" } | |
{ "index" : { "_index" : "test", "_type" : "publication", "_id" : "2" } } | |
{ "title" : "Graph Databases Seen Connecting the Dots", "journal" : "1", "author": "2"} | |
{ "index" : { "_index" : "test", "_type" : "publication", "_id" : "3" } } | |
{ "title" : "How to determine which NoSQL DBMS best fits your needs", "journal" : "2", "author": "3" } | |
{ "index" : { "_index" : "test", "_type" : "publication", "_id" : "4" } } | |
{ "title" : "MapR ships Apache Drill", "journal" : "4", "author": "4" } | |
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
from django import forms | |
from django.db import models | |
class BitFieldWrapper: | |
def __init__(self, instance, field, value): | |
self.instance = instance | |
self.field = field | |
self.value = value |
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
import gc | |
from more_itertools import chunked | |
from collections import defaultdict | |
def fetch_fk(fk_field, fields, objects): | |
assert 'id' in fields | |
if not objects: | |
return |
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
LOGGING = { | |
'version': 1, | |
'disable_existing_loggers': True, | |
'formatters': { | |
'verbose': { | |
'format': '%(levelname)s %(asctime)s %(process)d %(module)s %(message)s' | |
}, | |
'simple': { | |
'format': '%(levelname)s %(message)s' | |
}, |
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
cluster.name: mycluster | |
node.name: node-1 | |
node.master: true | |
node.data: true | |
network.host: 0.0.0.0 | |
transport.tcp.port: 9300 | |
http.port: 9200 |
NewerOlder