Skip to content

Instantly share code, notes, and snippets.

@mikeyoon
mikeyoon / index.html
Created May 2, 2018 00:00
Naive Collection Selectors Naive Selector Example // source https://jsbin.com/jujamuc
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Naive Selector Example">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Naive Collection Selectors</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.8/Rx.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/reselect/3.0.1/reselect.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.2/immutable.min.js"></script>
@mikeyoon
mikeyoon / index.html
Created May 1, 2018 23:58
Selector Creators Selector Creators Example // source https://jsbin.com/fifoyeg
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Selector Creators Example">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Selector Creators</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.8/Rx.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/reselect/3.0.1/reselect.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.2/immutable.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Bad Cold Example">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.8/Rx.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
@mikeyoon
mikeyoon / index.html
Last active April 5, 2018 00:25
JS BinSwitchmap Example// source http://jsbin.com/dowuyi/edit?html,js,output
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Switchmap Example">
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/q.js/1.0.1/q.js"></script>
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.8/Rx.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Hot/Cold Example">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.8/Rx.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Simple rxjs example">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.8/Rx.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
</head>
@mikeyoon
mikeyoon / es-synonyms.json
Created October 2, 2012 19:17
ElasticSearch Synonym Repro
synonyms.txt
test => Washington Nationals, New England Patriots
curl -XGET "http://172.16.10.244:9200/dev-events/_analyze?analyzer=sb_analyzer&pretty=true" -d "test"
{
"tokens" : [ {
"token" : "washington",
"start_offset" : 0,
"end_offset" : 4,
"type" : "SYNONYM",