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 Emacs Restclient Mode to explore the Elasticsearch REST API | |
# http://www.elasticsearch.org/guide/en/elasticsearch/reference/ | |
:es = http://127.0.0.1:9200 | |
# Cluster Health | |
GET :es/_cat/health?v | |
# List of nodes |
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
#include <stdio.h> | |
/** | |
This only works if the block in question is called synchronously. | |
*/ | |
void try0() { | |
typedef void(^RecursiveBlock)(); | |
__block int i = 5; |