Always safe, Always fun
If you’re not paying for the product, you are the product.
Durex - Always safe, Always fun.
心流 / 心流れ / Flow
A feeling of complete absorption when you’re engaged in something you love to do without being disrupted by anxiety or boredom.
References
- Flow (psychology), https://en.wikipedia.org/wiki/Flow_(psychology)
The longest official place name in Australia
Mamungkukumpurangkuntjunya Hill, is a hill in South Australia. The name means “where the devil urinates” in the regional Pitjantjatjara language. The name is the longest official place name in Australia. The hill is located approximately 108.8 km west north-west of Marla.
House Prices Down Under
A look at historical house prices in Sydney and Melbourne from 1880 to 2010.
Melbourne Median vs Average Wage 1965 - 2010.
It must be remembered that house prices are determined by the demand and supply of credit, not the demand for and supply of housing.
房价不与国民收入,社会福利放在一起进行讨论,无异于光天化日里耍流氓。
AlphaGo movie
AlphaGo is an intriguing movie, full of striking imagery.
Proud of witnessing DeepMind and Google are making history …
The A.I. Revolution Will Not Be Supervised
“The A.I. Revolution Will Not Be Supervised.”
- Yann LeCun
RESTful calls to create Index and Mappings in ElasticSearch
There is a simple way, using RESTful client to create Index and Mappings in ElasticSearch, for example, with ElasticSearch Head plugin.
Create Index in ElasticSearch with Settings JSON file. URL: http://localhost:9200/orders/, Method: PUT
1 | { |
Create Mappings in ElasticSearch with Mappings JSON file. URL: http://localhost:9200/orders/_mapping/order, Method: PUT
1 | { |
To add a new fields to ElasticSearch, while dynamic mapping is off:
1 | { |
Run with additional fields JSON file, with URL: http://localhost:9200/orders/_mapping/order, Method: PUT
1 | { |
An ElasticSearch query example, with URL: http://localhost:9200/orders/_search, Method: POST
1 | { |
An example query with date/time type in a range:
1 | { |