Skip to content

Instantly share code, notes, and snippets.

@usametov
Last active February 23, 2024 19:35
Show Gist options
  • Save usametov/09628cba321406b3619e9024bc4a496f to your computer and use it in GitHub Desktop.
Save usametov/09628cba321406b3619e9024bc4a496f to your computer and use it in GitHub Desktop.
gitmarks_rag.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/usametov/09628cba321406b3619e9024bc4a496f/advanced_rag.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "hUCaGdAj9-9F"
},
"source": [
"# Advanced RAG\n",
"_Authored by: [Aymeric Roucher](https://huggingface.co/m-ric)_"
]
},
{
"cell_type": "code",
"source": [
"from google.colab import drive\n",
"drive.mount('/content/drive')"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "2bwysstS4Nn2",
"outputId": "f93042e9-8d24-47d6-8e49-adb323f50581"
},
"execution_count": 1,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Mounted at /content/drive\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"cd /content/drive/MyDrive/RAG-store\n"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "mWrManKH472-",
"outputId": "17838ed9-7ef6-46b2-9446-25c4161692a6"
},
"execution_count": 2,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"/content/drive/MyDrive/RAG-store\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"\n",
" !git clone https://github.com/usametov/gitmarks.git"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "D1e22I8f5LPY",
"outputId": "eed35233-102f-4da0-c5d4-72f18ef1a608"
},
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"fatal: destination path 'gitmarks' already exists and is not an empty directory.\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"cd \"gitmarks/bookmarks/\"\n"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "j8FXUvbi9JvM",
"outputId": "d73a9749-bfd3-4dd9-cb6d-fb69bd8b9f01"
},
"execution_count": 4,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"/content/drive/MyDrive/RAG-store/gitmarks/bookmarks\n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "DKv51c_h9-9H"
},
"source": [
"This notebook demonstrates how you can build an advanced RAG (Retrieval Augmented Generation) for answering a user's question about a specific knowledge base (here, the HuggingFace documentation), using LangChain.\n",
"\n",
"For an introduction to RAG, you can check [this other cookbook](https://github.com/huggingface/cookbook/blob/main/notebooks/RAG_zephyr_langchain.ipynb)!\n",
"\n",
"RAG systems are complex, with many moving parts: here a RAG diagram, where we noted in blue all possibilities for system enhancement:\n",
"\n",
"<img src=\"https://huggingface.co/datasets/huggingface/cookbook-images/resolve/main/RAG_workflow.png\" height=\"700\">\n",
"\n",
"> 💡 As you can see, there are many steps to tune in this architecture: tuning the system properly will yield significant performance gains.\n",
"\n",
"In this notebook, we will take a look into many of these blue notes to see how to tune your RAG system and get the best performance.\n",
"\n",
"__Let's dig into the model building!__ First, we install the required model dependancies."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"id": "NSX0p0rV9-9I",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "d3cfe6e7-b773-453c-cc44-124358a45cd3"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m280.0/280.0 kB\u001b[0m \u001b[31m2.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m105.0/105.0 MB\u001b[0m \u001b[31m9.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m817.0/817.0 kB\u001b[0m \u001b[31m44.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m149.5/149.5 kB\u001b[0m \u001b[31m16.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m85.5/85.5 MB\u001b[0m \u001b[31m8.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.7/1.7 MB\u001b[0m \u001b[31m76.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m246.4/246.4 kB\u001b[0m \u001b[31m29.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m61.9/61.9 kB\u001b[0m \u001b[31m7.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m647.5/647.5 kB\u001b[0m \u001b[31m50.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25h Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m49.4/49.4 kB\u001b[0m \u001b[31m6.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m138.5/138.5 kB\u001b[0m \u001b[31m16.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25h Building wheel for annoy (setup.py) ... \u001b[?25l\u001b[?25hdone\n"
]
}
],
"source": [
"!pip install -q torch transformers transformers accelerate bitsandbytes langchain sentence-transformers faiss-gpu openpyxl pacmap"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"id": "8_Uyukt39-9J",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "1ada1372-bd58-45fa-9b15-e4d3f5b82997"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting python-dotenv\n",
" Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB)\n",
"Installing collected packages: python-dotenv\n",
"Successfully installed python-dotenv-1.0.1\n"
]
}
],
"source": [
"#%reload_ext dotenv\n",
"#%dotenv\n",
"!pip install python-dotenv\n",
"\n",
"import dotenv\n"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"id": "eoujYMwW9-9J"
},
"outputs": [],
"source": [
"from tqdm.notebook import tqdm\n",
"import pandas as pd\n",
"from typing import Optional, List, Tuple\n",
"\n",
"#we will use our docs\n",
"#from datasets import Dataset\n",
"import matplotlib.pyplot as plt\n",
"\n",
"pd.set_option(\n",
" \"display.max_colwidth\", None\n",
") # this will be helpful when visualizing retriever outputs"
]
},
{
"cell_type": "code",
"source": [
"cat \"./7D8F5F0640960DEFDA3827AF2908FCBA\""
],
"metadata": {
"id": "H3JNNLLm9nUE",
"outputId": "d01f1ca1-c337-4ad3-85cd-3303d969499d",
"colab": {
"base_uri": "https://localhost:8080/"
}
},
"execution_count": 8,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"{\"hash\":\"7D8F5F0640960DEFDA3827AF2908FCBA\",\"rights\":\"CC BY\",\"creator\":\"batch\",\"uri\":\"http://www.askedu.net/course.asp?CourseNo=237077\",\"time\":\"2017-05-12\",\"title\":\"Allen-Bradley Automation, SCADA and DCS Maintainer Certificate Training Course in Toronto, Ontario, Canada - Continuing Education at George Brown College (Ref.237077)\"}"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "Kr6rN10U9-9J"
},
"source": [
"### Load your knowledge base"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"id": "qZLVIEVW9-9J"
},
"outputs": [],
"source": [
"#import datasets\n",
"\n",
"#ds = datasets.load_dataset(\"m-ric/huggingface_doc\", split=\"train\")\n",
"\n",
"import os\n",
"import json\n",
"import pandas as pd\n",
"\n",
"# Specify the path to your JSON files directory\n",
"path_to_json = '.'\n",
"\n",
"# List all files in the directory that end with '.json'\n",
"json_files = [pos_json for pos_json in os.listdir(path_to_json)]\n",
"\n",
"# Create an empty pandas DataFrame to store the data\n",
"jsons_data = pd.DataFrame(columns=['uri', 'title', 'time'])\n",
"\n",
"# Iterate through each JSON file\n",
"for index, js in enumerate(json_files):\n",
" with open(os.path.join(path_to_json, js)) as json_file:\n",
" json_text = json.load(json_file)\n",
" # Extract relevant data from the JSON (modify this based on your JSON structure)\n",
" uri = json_text['uri']\n",
" title = json_text['title']\n",
" time = json_text['time']\n",
" # Append data to the DataFrame\n",
" jsons_data.loc[index] = [uri, title, time]\n",
"\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"source": [
"# Print the loaded data\n",
"print(jsons_data.head())\n",
"\n",
"print(\"data shape:\")\n",
"print(jsons_data.shape)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "60MZxdD6AX_q",
"outputId": "a1ba80e3-9517-4238-ea56-47c5169d534d"
},
"execution_count": 10,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" uri \\\n",
"0 https://www.kismetwireless.net/ \n",
"1 http://docs.mbunit.com/ \n",
"2 http://www.ehow.com/how_2284756_obtain-solar-panels-free.html \n",
"3 http://www-03.ibm.com/certify/tests/test_index.shtml \n",
"4 https://code.google.com/p/androidscreencast/ \n",
"\n",
" title \\\n",
"0 Kismet :: 802.11 layer2 wireless network detector, sniffer, IDS \n",
"1 MbUnit.Documentation - Introduction \n",
"2 How to obtain solar panels for free \n",
"3 IBM: Professional Certification Program from IBM - Test information \n",
"4 androidscreencast - Desktop app to control an android device remotely - Google Project Hosting \n",
"\n",
" time \n",
"0 2017-05-12 \n",
"1 2017-05-12 \n",
"2 2017-05-12 \n",
"3 2017-05-12 \n",
"4 2017-05-12 \n",
"data shape:\n",
"(12270, 3)\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"jsons_data['concatenated_text'] = jsons_data['uri'] + ' --- ' + jsons_data['title'] + ' --- ' + jsons_data['time']\n",
"print(jsons_data.head())"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "AgjJ36utCibg",
"outputId": "4869bfa5-813e-4b60-831a-41fbbe9b7943"
},
"execution_count": 11,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" uri \\\n",
"0 https://www.kismetwireless.net/ \n",
"1 http://docs.mbunit.com/ \n",
"2 http://www.ehow.com/how_2284756_obtain-solar-panels-free.html \n",
"3 http://www-03.ibm.com/certify/tests/test_index.shtml \n",
"4 https://code.google.com/p/androidscreencast/ \n",
"\n",
" title \\\n",
"0 Kismet :: 802.11 layer2 wireless network detector, sniffer, IDS \n",
"1 MbUnit.Documentation - Introduction \n",
"2 How to obtain solar panels for free \n",
"3 IBM: Professional Certification Program from IBM - Test information \n",
"4 androidscreencast - Desktop app to control an android device remotely - Google Project Hosting \n",
"\n",
" time \\\n",
"0 2017-05-12 \n",
"1 2017-05-12 \n",
"2 2017-05-12 \n",
"3 2017-05-12 \n",
"4 2017-05-12 \n",
"\n",
" concatenated_text \n",
"0 https://www.kismetwireless.net/ --- Kismet :: 802.11 layer2 wireless network detector, sniffer, IDS --- 2017-05-12 \n",
"1 http://docs.mbunit.com/ --- MbUnit.Documentation - Introduction --- 2017-05-12 \n",
"2 http://www.ehow.com/how_2284756_obtain-solar-panels-free.html --- How to obtain solar panels for free --- 2017-05-12 \n",
"3 http://www-03.ibm.com/certify/tests/test_index.shtml --- IBM: Professional Certification Program from IBM - Test information --- 2017-05-12 \n",
"4 https://code.google.com/p/androidscreencast/ --- androidscreencast - Desktop app to control an android device remotely - Google Project Hosting --- 2017-05-12 \n"
]
}
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"id": "836Q7vF49-9K"
},
"outputs": [],
"source": [
"from langchain.docstore.document import Document as LangchainDocument\n",
"\n",
"RAW_KNOWLEDGE_BASE = [\n",
" LangchainDocument(page_content=doc)\n",
" for doc in jsons_data['concatenated_text']\n",
"]"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "0_LxjD5h9-9K"
},
"source": [
"# 1. Retriever - embeddings 🗂️\n",
"The __retriever acts like an internal search engine__: given the user query, it returns a few relevant snippets from your knowledge base.\n",
"\n",
"These snippets will then be fed to the Reader Model to help it generate its answer.\n",
"\n",
"So __our objective here is, given a user question, to find the most snippets from our knowledge base to answer that question.__\n",
"\n",
"This is a wide objective, it leaves open some questions. How many snippets should we retrieve? This parameter will be named `top_k`.\n",
"\n",
"How long should these snippets be? This is called the `chunk size`. There's no one-size-fits-all answers, but here are a few elements:\n",
"- 🔀 Your `chunk size` is allowed to vary from one snippet to the other.\n",
"- Since there will always be some noise in your retrieval, increasing the `top_k` increases the chance to get relevant elements in your retrieved snippets. 🎯 Shooting more arrows increases your probability to hit your target.\n",
"- Meanwhile, the summed length of your retrieved documents should not be too high: for instance, for most current models 16k tokens will probably drown your Reader model in information due to [Lost-in-the-middle phenomenon](https://huggingface.co/papers/2307.03172). 🎯 Give your reader model only the most relevant insights, not a huge pile of books!\n",
"\n",
"\n",
"> In this notebook, we use Langchain library since __it offers a huge variety of options for vector databases and allows us to keep document metadata throughout the processing__."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "-uS6Mv8O9-9L"
},
"source": [
"### 1.1 Split the documents into chunks\n",
"\n",
"- In this part, __we split the documents from our knowledge base into smaller chunks__ which will be the snippets on which the reader LLM will base its answer.\n",
"- The goal is to prepare a collection of **semantically relevant snippets**. So their size should be adapted to precise ideas: too small will truncate ideas, too large will dilute them.\n",
"\n",
"💡 _Many options exist for text splitting: splitting on words, on sentence boundaries, recursive chunking that processes documents in a tree-like way to preserve structure information... To learn more about chunking, I recommend you read [this great notebook](https://github.com/FullStackRetrieval-com/RetrievalTutorials/blob/main/5_Levels_Of_Text_Splitting.ipynb) by Greg Kamradt._\n",
"\n",
"\n",
"- **Recursive chunking** breaks down the text into smaller parts step by step using a given list of separators sorted from the most important to the least important separator. If the first split doesn't give the right size or shape chunks, the method repeats itself on the new chunks using a different separator. For instance with the list of separators `[\"\\n\\n\", \"\\n\", \".\", \"\"]`:\n",
" - The method will first break down the document wherever there is a double line break `\"\\n\\n\"`.\n",
" - Resulting documents will be split again on simple line breaks `\"\\n\"`, then on sentence ends `\".\"`.\n",
" - And finally, if some chunks are still too big, they will be split whenever they overflow the maximum size.\n",
"\n",
"- With this method, the global structure is well preserved, at the expense of getting slight variations in chunk size.\n",
"\n",
"> [This space](https://huggingface.co/spaces/A-Roucher/chunk_visualizer) lets you visualize how different splitting options affect the chunks you get.\n",
"\n",
"🔬 Let's experiment a bit with chunk sizes, beginning with an arbitrary size, and see how splits work. We use Langchain's implementation of recursive chunking with `RecursiveCharacterTextSplitter`.\n",
"- Parameter `chunk_size` controls the length of individual chunks: this length is counted by default as the number of characters in the chunk.\n",
"- Parameter `chunk_overlap` lets adjacent chunks get a bit of overlap on each other. This reduces the probability that an idea could be cut in half by the split between two adjacent chunks. We ~arbitrarily set this to 1/10th of the chunk size, you could try different values!"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"id": "M4m6TwDJ9-9L"
},
"outputs": [],
"source": [
"from langchain.text_splitter import RecursiveCharacterTextSplitter\n",
"\n",
"# We use a hierarchical list of separators specifically tailored for splitting Markdown documents\n",
"# This list is taken from LangChain's MarkdownTextSplitter class.\n",
"MARKDOWN_SEPARATORS = [\n",
" \" --- \",\n",
" \"\\n#{1,6} \",\n",
" \"```\\n\",\n",
" \"\\n\\\\*\\\\*\\\\*+\\n\",\n",
" \"\\n---+\\n\",\n",
" \"\\n___+\\n\",\n",
" \"\\n\\n\",\n",
" \"\\n\",\n",
" \" \",\n",
" \"\",\n",
"]\n",
"\n",
"text_splitter = RecursiveCharacterTextSplitter(\n",
" chunk_size=1000, # the maximum number of characters in a chunk: we selected this value arbitrarily\n",
" chunk_overlap=100, # the number of characters to overlap between chunks\n",
" add_start_index=True, # If `True`, includes chunk's start index in metadata\n",
" strip_whitespace=True, # If `True`, strips whitespace from the start and end of every document\n",
" separators=MARKDOWN_SEPARATORS,\n",
")\n",
"\n",
"docs_processed = []\n",
"for doc in RAW_KNOWLEDGE_BASE:\n",
" docs_processed += text_splitter.split_documents([doc])"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "d5jJUMgb9-9M"
},
"source": [
"We also have to keep in mind that when embedding documents, we will use an embedding model that has accepts a certain maximum sequence length `max_seq_length`.\n",
"\n",
"So we should make sure that our chunk sizes are below this limit, because any longer chunk will be truncated before processing, thus losing relevancy."
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"colab": {
"referenced_widgets": [
"06a0ce74dc894353a9d3952a38a43451",
"b6bb62e391fa442aa1bfda07c67ec093",
"13498730e0464305b3ccbfe13db88962",
"604c39b73d0c425baa03e14e51784627",
"1576d349fa3948c08e62e309abd8b43f",
"9746ce2a0dd34fb2b9e00179527d9cb5",
"de1999a0b1fd4b05803602a570d983b3",
"616567bcffda43faa6f8a4ec20b553e1",
"86ac738b31734f4bb6fda7e33f6eb0d4",
"8221c3ad94c7437a8a718ea2692ca9a0",
"2c12b76afd1b465dafc4f604598b066e",
"fbea8dea39e64ec78f22932e4c68a101",
"db54cf49e91b4a7d95c7f4fe96bf7ab4",
"3c01324a56ae480b95ff7c7cffc0d5d4",
"284c2d2169944dbe9eb21adbf3962eb6",
"91bda1c3e8f24192ab01c8d3c4658149",
"1ff795ec2c344a18863c2007334f999d",
"1777cdf3480040f6a08af002e85f3757",
"59fd7ffb08344609879972ae14897d5d",
"741e19806b204022ab1422c2450bbc6f",
"9d0669f40ceb46e1a6d026804105319e",
"4274917624c6457f931996be5486818a",
"73a45569f850403da2a75753711e4db9",
"6a3baf90ccb242cfb7c09033f5a9cb08",
"9ab4832d6a7d47c98c6e61177b8341c6",
"93e7605f34ea4f84bd5b107833a0accd",
"5d40bb1f512e4e73af8697e03cd9a74e",
"595c044cf14949f8b01ddfeaec974ae9",
"7ba85d2200d64266aa7c46a23d66205a",
"c126b9aa374947d5843771bb14a4b153",
"ff10e38d497b4086b6d64d6240d01d34",
"d62d31e7921b4fe4b7ebbcd669255a8d",
"b36a46b7a68c491698f2c7e61f111070",
"d6acae62de35454691f1a069371fd2bd",
"8a9db9f984d049b1bc95c9acaffc4e17",
"52742361ceba4273a4526ec2e164ca9d",
"78335a230e8e4fda811bc81642770f89",
"acf8a53d35544a0ea7cf09219d738560",
"273b3a894c794e679b36e5a7bc28009a",
"89f17d440f3c42409ed197da2dda7cc1",
"7e9c4dbaa8164634a1683fe53606f26c",
"a08314a7b428430bb91e3be31c718080",
"79d1ae1dccab4034b020ad874d51d920",
"429952ecb4ed4f23965851d2be97665c",
"87bab0bcc6f447d89b6c354f177b8d70",
"a7bf1c9fc4f54c25ab3eb7a27b7fa50d",
"080908a2558248248ea4825a44a9910f",
"cfbfad50ed1c4763b1e3f87df384d22e",
"8af1764e875245859eb7910a747db808",
"bcfab2fd92ae48dba1fe7d37ecef373c",
"a46bc3d56cd546d492c70535170170ae",
"542275d0e30b4e31b0ab64bf71e27f5b",
"b3482c53525a4359abc5448d21952c92",
"cb0ba03a4cd74401a30af63cf304db25",
"9096cdc425d14bc2afe7a72f352a3558",
"d1604e0014d84423a1d874ebe0718dec",
"61563b46450b46f8b519f06d897a6aa6",
"96af0e88bf61427ca3571ed20760f2ec",
"0c9193d412a142be81f837dae41a7656",
"90e5c4b5fda249ada905e0bad10b4fba",
"3e1e38889c0844bebd5e8f0a64da3917",
"8cd71fdf6d3f428e8b14e9f87339af60",
"a6e91941838743f0acb52c48baa893f9",
"a6229c1bf8eb4d588ea8c818e5c7a170",
"148aa0abaaea49efa6f74b0d2291b681",
"440a5c59c2cf452eb6421dc3aac3d6ea",
"bc85d9ebe2254098b9a9c0024aef11c9",
"576cc4a41c114e40b22d1f79972a1f9b",
"68d4a1d93f2a47e58f6062ef5fab3bc3",
"208f131c1203498f826b3a228c194258",
"26b9917884684bb293f14ec13eec1f36",
"439a6c102a27421ba5479c41facd2690",
"55163b30486947ffbe091a16fa402265",
"d5fba5470ecb49c39478f868f2df9e7d",
"e01386b4b7694c4c800dc3fe0586f437",
"020380b76e534492889b66b33891d599",
"7dd893aa82e34628b88b1063f2f3e8cb",
"485acbb848424951bc41def46a8b1720",
"bf7884eb2acd41ce9b2d1b1ece2a86d4",
"f0f5d88aeca8428799dfed4870503271",
"2dfb999cd7234101a2ab2c8227c9c24f",
"cd48447c9a944084977d62e84ec916dd",
"a0ddc46f5bb64e5b85a1713dcdedd9ad",
"5db79963cf944e8d8a8ad8382a2f0e35",
"f397f8bec7254512a87bbe5e87d875be",
"d9dcef5383f149e0a15a91959d13b139",
"763c8bfcea2d49568dffcaec595e6c10",
"df8ef35db2734a42981251c1365eabf1",
"216162bc30424846ac7f23372a67a0f3",
"8707e28612674cc48f62827c130f0327",
"b2118f1f411242bdafebc27994dc0607",
"b812b7a2a8b6482f82919858edd37618",
"c31467b5a298425b9f61a2cf7aed95ed",
"3d3ed088d5664d969eda10480e1f23e4",
"8458538c9df94a9d99464fa8078720b8",
"ca2341858034494ca5648e1e14af886d",
"88de5e54da8e4400a804866542187045",
"0da1b88072d8439f95ecb9aa8636a53a",
"a58d1266624c420a843e5b7388211828",
"32da6a9fa79e4ad3b06f5bc506f2bcd7",
"1a68ec65927645958a7e5544b7322ec8",
"21d3be5ed70846c7b19be53f1625fe36",
"fb81538ca3aa487b8ab3e27704453eed",
"b08c578daff748869f42704eda00168d",
"67535ddb1a0b4dfba25b898703e1e5de",
"7e4e9abc13e44c708c317c40b152c0b7",
"7b13c9705c74471e92b59a49e841d1c9",
"b5757e295e894ea29c599d80efb7b620",
"3d6cf335ca97450ab0a16bc9b9102ac8",
"b4767327136b4ebea833537c04431fbc",
"04a651272a034eedb26e8a3848356005",
"195e1e3e7afa4dbca563a94dd983d442",
"42598251c5a348db9ef8e6989988e779",
"537c6f8c55a74b4f90aec97c0b8fe150",
"57bb9959fa5b46d79cf95dceae92a449",
"8878f2dbb1a24648b221f3b11f61ef65",
"c493aef7d3fe4665905d23af92fe86a7",
"725b059fe0474fc685c860bb95bf9028",
"cea175ab307a4dc5b52e9afb82a5221c",
"2536dccf4164471dbc2f4eb6342e54a1",
"bc9992713c924462a7080e1e896e6b52"
],
"base_uri": "https://localhost:8080/",
"height": 1000
},
"id": "B4hoki349-9M",
"outputId": "fce7fc7a-cb71-4483-c7c7-88b7d57eb4b5"
},
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"modules.json: 0%| | 0.00/385 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "06a0ce74dc894353a9d3952a38a43451"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"README.md: 0%| | 0.00/68.1k [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "fbea8dea39e64ec78f22932e4c68a101"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"sentence_bert_config.json: 0%| | 0.00/57.0 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "73a45569f850403da2a75753711e4db9"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"config.json: 0%| | 0.00/583 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "d6acae62de35454691f1a069371fd2bd"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"model.safetensors: 0%| | 0.00/66.7M [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "87bab0bcc6f447d89b6c354f177b8d70"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"tokenizer_config.json: 0%| | 0.00/394 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "d1604e0014d84423a1d874ebe0718dec"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"vocab.txt: 0%| | 0.00/232k [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "bc85d9ebe2254098b9a9c0024aef11c9"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"tokenizer.json: 0%| | 0.00/712k [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "485acbb848424951bc41def46a8b1720"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"special_tokens_map.json: 0%| | 0.00/125 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "216162bc30424846ac7f23372a67a0f3"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"1_Pooling/config.json: 0%| | 0.00/190 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "32da6a9fa79e4ad3b06f5bc506f2bcd7"
}
},
"metadata": {}
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"Model's maximum sequence length: 512\n"
]
},
{
"output_type": "display_data",
"data": {
"text/plain": [
" 0%| | 0/12281 [00:00<?, ?it/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "04a651272a034eedb26e8a3848356005"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"<Figure size 640x480 with 1 Axes>"
],
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAo4AAAGzCAYAAAChApYOAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAABUfUlEQVR4nO3deVwVZf//8TfIrgKiAuKC3FruW1hKaloiuJWWS6alueRtammWlpXmUrmVuZXm3Z226G1pZZal4JKakluSS1pWLmUBJSKuiHD9/vB35usR0AEXEF7Px8PHw3PNdWauz5lzZt7MzJnjYowxAgAAAK7ANb8HAAAAgJsDwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgy3UPjmPGjJGLi8v1XowkqUWLFmrRooX1+JtvvpGLi4uWLFlyQ5b/6KOPqnLlyjdkWXl18uRJ9evXT8HBwXJxcdHQoUNzPQ8XFxeNGTPmmo+tKKpcubIeffTR/B7GFT366KMqUaLEdV3GjXpf3ajtwo3e/lytgwcPysXFRfPnz79m85w/f75cXFx08ODBazZPuypXrqz27dvf8OVerZMnTyowMFALFiyw2m7kfrSwuxb7QLsc7/9t27Zdt2XkVbdu3dS1a9c8PTdXwdHxIjj+eXl5KSQkRNHR0ZoxY4ZOnDiRp0Fc6s8//9SYMWMUHx9/TeZ3LRXksdnx6quvav78+Xr88cf1wQcf6JFHHsnvIRUqCxcu1LRp0/J7GHly+vRpjRkzRt98801+D+WauJnXBYqu6dOnq2TJkurWrVt+DyVfvfrqq1q6dOl1ma/dfeD1GkNB8Oyzz+qTTz7RDz/8kOvn5umI47hx4/TBBx9o9uzZeuKJJyRJQ4cOVZ06dbRz506nvi+++KLOnDmTq/n/+eefGjt2bK7DWUxMjGJiYnL1nNy63Nj+85//6Keffrquy79aa9asUePGjfXSSy/p4YcfVnh4eH4PqVC5mcPK6dOnNXbs2HwLjmfOnNGLL754zeZ3M68LFE3p6emaPn26+vXrp2LFilntedmP3uyuV2jLzT6wMAfHBg0aqGHDhnr99ddz/dw8Bcc2bdro4YcfVu/evTVy5EitXLlSq1atUlJSku677z6nN7ibm5u8vLzyshjbTp8+LUny8PCQh4fHdV3W5bi7u8vT0zPflm9HUlKS/P3983sYQBZeXl5yc3PL72EA+ebLL7/U33//neUU4o3YjxYV7AP/T9euXfXpp5/q5MmTuXreNbvG8Z577tGoUaN06NAhffjhh1Z7dtdmxMbGqmnTpvL391eJEiVUrVo1Pf/885IuXBd0++23S5J69+5tnRZ3XHfTokUL1a5dW9u3b9ddd90lHx8f67mXXuPokJGRoeeff17BwcEqXry47rvvPv3+++9OfXK61uzieV5pbNld43jq1Ck9/fTTqlixojw9PVWtWjW99tprMsY49XNxcdHgwYO1dOlS1a5dW56enqpVq5ZWrFiR/Qt+iaSkJPXt21dBQUHy8vJSvXr19N5771nTHddbHThwQMuXL7fGfrlrj9LS0vTUU0+pbNmyKlmypO677z798ccf2fbdsWOH2rRpI19fX5UoUUItW7bUd999l6VfSkqKnnrqKVWuXFmenp6qUKGCevbsqX/++UdSztdEOcZ/8dEwx3th586dat68uXx8fFS1alXrmrJ169apUaNG8vb2VrVq1bRq1aos4zly5Ij69OmjoKAg6zV/9913s132xx9/rFdeeUUVKlSQl5eXWrZsqV9++cVpPMuXL9ehQ4es1zcv17ympKRo6NCh1numatWqmjRpkjIzM60+juvRXnvtNc2dO1dVqlSRp6enbr/9dm3dujXLPBcvXqyaNWvKy8tLtWvX1meffeb0fj148KDKli0rSRo7dqw1/kuvOTxy5Ig6duyoEiVKqGzZsnrmmWeUkZHh1GfRokUKDw9XyZIl5evrqzp16mj69OlXrPvS5Tm2Hb/88oseffRR+fv7y8/PT71797b+WMyJnXWRmZl52fXpsHnzZrVu3Vp+fn7y8fFR8+bNtXHjxivWk520tDS1b99efn5+2rRpU67rPH/+vMaPH2+t78qVK+v5559XWlqa1WfYsGEqXbq00zbmiSeekIuLi2bMmGG1JSYmysXFRbNnz77smPft26fOnTsrICBAXl5eatiwoZYtW5al3549e3TPPffI29tbFSpU0Msvv+z0nnXIzMzUmDFjFBISIh8fH91999368ccfs90G2/ksXElMTIzq168vLy8v1axZU59++qnT9OTkZD3zzDOqU6eOSpQoIV9fX7Vp0ybbU3gzZ85UrVq15OPjo1KlSqlhw4ZauHChUx8725ScLF26VJUrV1aVKlWc2rPbj17tPuPs2bMaM2aMbr31Vnl5ealcuXJ64IEH9Ouvv1p97Oy/LndtbF4/0y4uLjp16pTee+896/N7pWvBr/U+8EpjsLvPu9SxY8d0xx13qEKFCtYZyrS0NL300kuqWrWqPD09VbFiRY0YMcLpc+0Yk511fuLECQ0dOtTazwYGBqpVq1b6/vvvnfq1atVKp06dUmxs7BXHfbFr+uf9I488oueff14xMTF67LHHsu2zZ88etW/fXnXr1tW4cePk6empX375xdoQ16hRQ+PGjdPo0aPVv39/NWvWTJJ05513WvM4evSo2rRpo27duunhhx9WUFDQZcf1yiuvyMXFRc8++6ySkpI0bdo0RUZGKj4+Xt7e3rbrszO2ixljdN9992nt2rXq27ev6tevr5UrV2r48OE6cuSI3njjDaf+3377rT799FMNHDhQJUuW1IwZM9SpUycdPnxYpUuXznFcZ86cUYsWLfTLL79o8ODBCgsL0+LFi/Xoo48qJSVFQ4YMUY0aNfTBBx/oqaeeUoUKFfT0009LkhUWstOvXz99+OGH6t69u+68806tWbNG7dq1y9Jvz549atasmXx9fTVixAi5u7vr7bffVosWLazwJl24KLlZs2bau3ev+vTpo9tuu03//POPli1bpj/++ENlypS5/ArIxrFjx9S+fXt169ZNXbp00ezZs9WtWzctWLBAQ4cO1YABA9S9e3dNmTJFnTt31u+//66SJUtKurDjbNy4sfVhLFu2rL7++mv17dtXqampWS6anjhxolxdXfXMM8/o+PHjmjx5snr06KHNmzdLkl544QUdP35cf/zxh7Vuc/uFktOnT6t58+Y6cuSI/v3vf6tSpUratGmTRo4cqb/++ivLqdeFCxfqxIkT+ve//y0XFxdNnjxZDzzwgH777Te5u7tLkpYvX64HH3xQderU0YQJE3Ts2DH17dtX5cuXt+ZTtmxZzZ49W48//rjuv/9+PfDAA5KkunXrWn0yMjIUHR2tRo0a6bXXXtOqVav0+uuvq0qVKnr88cclXfij8KGHHlLLli01adIkSdLevXu1ceNGDRkyJFevhUPXrl0VFhamCRMm6Pvvv9c777yjwMBAa/7ZsbMurrQ+pQuntdq0aaPw8HC99NJLcnV11bx583TPPfdow4YNuuOOO2zXcebMGXXo0EHbtm3TqlWrrD9Cc1Nnv3799N5776lz5856+umntXnzZk2YMEF79+7VZ599Jklq1qyZ3njjDe3Zs0e1a9eWJG3YsEGurq7asGGDnnzySatNku66664cx7xnzx41adJE5cuX13PPPafixYvr448/VseOHfXJJ5/o/vvvlyQlJCTo7rvv1vnz561+c+fOzXb7OnLkSE2ePFn33nuvoqOj9cMPPyg6Olpnz5516pfbz0J29u/frwcffFADBgxQr169NG/ePHXp0kUrVqxQq1atJEm//fabli5dqi5duigsLEyJiYl6++231bx5c/34448KCQmRdOFSpCeffFKdO3fWkCFDdPbsWe3cuVObN29W9+7dJeV+m3KpTZs26bbbbrtiXQ553WdkZGSoffv2Wr16tbp166YhQ4boxIkTio2N1e7du1WlSpVc779y40rv9Q8++ED9+vXTHXfcof79+0tSljB9seuxD7zcGOzu8y71zz//qFWrVkpOTta6detUpUoVZWZm6r777tO3336r/v37q0aNGtq1a5feeOMN/fzzz1lOldtZ5wMGDNCSJUs0ePBg1axZU0ePHtW3336rvXv3Or2/atasKW9vb23cuNH6LNticmHevHlGktm6dWuOffz8/EyDBg2sxy+99JK5eDFvvPGGkWT+/vvvHOexdetWI8nMmzcvy7TmzZsbSWbOnDnZTmvevLn1eO3atUaSKV++vElNTbXaP/74YyPJTJ8+3WoLDQ01vXr1uuI8Lze2Xr16mdDQUOvx0qVLjSTz8ssvO/Xr3LmzcXFxMb/88ovVJsl4eHg4tf3www9Gkpk5c2aWZV1s2rRpRpL58MMPrbZz586ZiIgIU6JECafaQ0NDTbt27S47P2OMiY+PN5LMwIEDndq7d+9uJJmXXnrJauvYsaPx8PAwv/76q9X2559/mpIlS5q77rrLahs9erSRZD799NMsy8vMzDTG/N977MCBA07THety7dq1VpvjvbBw4UKrbd++fUaScXV1Nd99953VvnLlyizrrW/fvqZcuXLmn3/+cVpWt27djJ+fnzl9+rTTsmvUqGHS0tKsftOnTzeSzK5du6y2du3aOb0HruTS99348eNN8eLFzc8//+zU77nnnjPFihUzhw8fNsYYc+DAASPJlC5d2iQnJ1v9Pv/8cyPJfPHFF1ZbnTp1TIUKFcyJEyestm+++cZIchrr33//nWXdOvTq1ctIMuPGjXNqb9CggQkPD7ceDxkyxPj6+prz58/bfg0cLl22Y9vRp08fp37333+/KV269BXnl9O6sLs+MzMzzS233GKio6Ot96cxxpw+fdqEhYWZVq1aXXb5juUsXrzYnDhxwjRv3tyUKVPG7Nixw6mf3Todn8l+/fo59XvmmWeMJLNmzRpjjDFJSUlGknnrrbeMMcakpKQYV1dX06VLFxMUFGQ978knnzQBAQFWbY731MWfkZYtW5o6deqYs2fPWm2ZmZnmzjvvNLfccovVNnToUCPJbN682WpLSkoyfn5+Tp/nhIQE4+bmZjp27OhUw5gxY4ykPH0WchIaGmokmU8++cRqO378uClXrpzTPurs2bMmIyPD6bkHDhwwnp6eTu/3Dh06mFq1al12mXa3KdlJT083Li4u5umnn84y7dL9qDFXt8949913jSQzderULNMc7we7+6/s3jcXjzGvn+nixYtnu0/OzvXYB15uDHb3eRdnpr/++svUqlXL/Otf/zIHDx60+nzwwQfG1dXVbNiwwWkZc+bMMZLMxo0brTa769zPz88MGjTIVo233nqradOmja2+Dtf8djwlSpS47LerHdcWfP7557k63XAxT09P9e7d23b/nj17WkeZJKlz584qV66cvvrqqzwt366vvvpKxYoVs/7Cd3j66adljNHXX3/t1B4ZGen0V1XdunXl6+ur33777YrLCQ4O1kMPPWS1ubu768knn9TJkye1bt26PI1dUpaxX/oXc0ZGhmJiYtSxY0f961//strLlSun7t2769tvv1Vqaqok6ZNPPlG9evWy/csmr7eaKFGihNO3D6tVqyZ/f3/VqFHD6a8+x/8dr6UxRp988onuvfdeGWP0zz//WP+io6N1/PjxLIf1e/fu7XQNreOI85XWT24sXrxYzZo1U6lSpZzGFBkZqYyMDK1fv96p/4MPPqhSpUrlOKY///xTu3btUs+ePZ2OuDVv3lx16tTJ9fgGDBjg9LhZs2ZO9fv7++fp1Edul3n06FHrfZVXV1qf8fHx2r9/v7p3766jR49a6+LUqVNq2bKl1q9fb2sbdvz4cUVFRWnfvn365ptvVL9+/Wz7XalOx2dy2LBhTv0cR06WL18u6cIRlOrVq1vvlY0bN6pYsWIaPny4EhMTtX//fkkXjjg2bdo0x89ecnKy1qxZo65du+rEiRNW/UePHlV0dLT279+vI0eOWGNr3Lix0xHYsmXLqkePHk7zXL16tc6fP6+BAwc6tTu+ZHmx3H4WshMSEuK0vfH19VXPnj21Y8cOJSQkSLqwP3F1vbArzMjI0NGjR61LqC7eBvj7++uPP/7I9lIQKW/blIslJyfLGOP0eb6SvO4zPvnkE5UpUybb193xfsjt/is3rvVn+nrsA3OSm32ewx9//KHmzZsrPT1d69evV2hoqDVt8eLFqlGjhqpXr+70nrnnnnskSWvXrnWal5117u/vr82bN+vPP/+8Yj2Oz1duXPMr0R33oMrJgw8+qHfeeUf9+vXTc889p5YtW+qBBx5Q586drQ/vlZQvXz5XX4K55ZZbnB67uLioatWq1/3eYocOHVJISIhTaJUunPJ2TL9YpUqVssyjVKlSOnbs2BWXc8stt2R5/XJajt2xu7q6Zjk9UK1aNafHf//9t06fPp2l3bH8zMxM/f7776pVq5Z+/fVXderUKddjuZwKFSpk2fH5+fmpYsWKWdokWa/l33//rZSUFM2dO1dz587Ndt5JSUlOjy9dP44N/JXWT27s379fO3fuzPH0SW7H5Fj3VatWzTKvqlWrXnZHdikvL68s47r0/Tlw4EB9/PHHatOmjcqXL6+oqCh17dpVrVu3tr2cS12uRl9f3+syX0lWwOrVq1eO8zh+/PgVd/RDhw7V2bNntWPHDtWqVStP4/H19bU+k5euy+DgYPn7+zt9zps1a2YFzQ0bNqhhw4Zq2LChAgICtGHDBgUFBemHH36wTrFm55dffpExRqNGjdKoUaOy7ZOUlKTy5cvr0KFD2Z6eu3S7kNP7MSAgIMvrmNvPQnaqVq2aZftw6623SrpwbV5wcLAyMzM1ffp0vfXWWzpw4IDTNbsXn+599tlntWrVKt1xxx2qWrWqoqKi1L17dzVp0kRS3rYp2TGXXP9+OXndZ/z666+qVq3aZb+Mltv9V25c68/09dgH5iQ3+zyHRx55RG5ubtq7d6+Cg4OdnrN//37t3bs3z9t8Kes6nzx5snr16qWKFSsqPDxcbdu2Vc+ePZ2CroMxJtcHbq5pcPzjjz90/PjxbHdSDt7e3lq/fr3Wrl2r5cuXa8WKFfroo490zz33KCYmxukWBJebx7WW0wuXkZFha0zXQk7Lyc2G5GZ3ufWQnZxesyu9lo4jRQ8//HCOweDi6/vszPNayMzMVKtWrTRixIhspzt2ejdyTFda1sUCAwMVHx+vlStX6uuvv9bXX3+tefPmqWfPnk4Xql+L5V5tjXbfI1OmTMnxKKGda1g7dOigRYsWaeLEiXr//fdz/APZbp12NvJNmzbVf/7zH/3222/asGGDmjVrJhcXFzVt2lQbNmxQSEiIMjMzraOs2XHU/8wzzyg6OjrbPpfb1l+t3H4W8urVV1/VqFGj1KdPH40fP14BAQFydXXV0KFDnY4o16hRQz/99JO+/PJLrVixQp988oneeustjR49WmPHjs3TNuViAQEBcnFxydUfogVhn5HbbbZUMMZ9Iz3wwAN6//33NX36dE2YMMFpWmZmpurUqaOpU6dm+9xLD4LYee26du2qZs2a6bPPPlNMTIymTJmiSZMm6dNPP1WbNm2cnnfs2LEsB9eu5JoGxw8++ECSctzIOLi6uqply5Zq2bKlpk6dqldffVUvvPCC1q5dq8jIyGt+h3zHkQMHY4x++eUXpw9xqVKllJKSkuW5hw4dckrpuRlbaGioVq1apRMnTjj91bZv3z5r+rUQGhqqnTt3KjMz02mndDXLCQ0NVWZmpvWXqcOl96ksW7asfHx8sr1/5b59++Tq6mq98atUqaLdu3dfdrmOvzwvXRfX8i9GSdY3xTMyMhQZGXnN5nu1790qVaro5MmT12xMjnWf3beFL227Vp87Dw8P3Xvvvbr33nuVmZmpgQMH6u2339aoUaOua9C41LVYF9KF05tXsz46duyoqKgoPfrooypZsuQVv8WcE8dncv/+/daRFOnCFzJSUlKcPueOQBgbG6utW7fqueeek3ThizCzZ89WSEiIihcvftl72Dm2e+7u7lesPzQ0NMt2Vsq6vbj4/RgWFma1Hz16NEtguhafBcdR04vfCz///LMkWd+yX7Jkie6++27997//dXpuSkpKli/sFS9eXA8++KAefPBBnTt3Tg888IBeeeUVjRw58qq3KW5ubqpSpYoOHDiQ6+fmVpUqVbR582alp6dbX6K7lN391/XaZud2X3ut94E5jSE3+zyHJ554QlWrVtXo0aPl5+dnfR6lC+vihx9+UMuWLa9p9ilXrpwGDhyogQMHKikpSbfddpteeeUVp+B4/vx5/f7777rvvvtyNe9rdo3jmjVrNH78eIWFhWW5ruViycnJWdocf807vnpevHhxSVnfiHn1/vvvO113uWTJEv31119OL2CVKlX03Xff6dy5c1bbl19+meW2PbkZW9u2bZWRkaFZs2Y5tb/xxhtycXHJkvzzqm3btkpISNBHH31ktZ0/f14zZ85UiRIl1Lx581zP0zG2i2/fISnLNxmLFSumqKgoff75506n/hMTE7Vw4UI1bdrUOvXQqVMn/fDDD9a3Py/m+GvJsbO++PqljIyMHE/95FWxYsXUqVMnffLJJ9mG2b///jtP8y1evLiOHz+e53F17dpVcXFxWrlyZZZpKSkpOn/+fK7mFxISotq1a+v99993ulfXunXrtGvXLqe+Pj4+1nLy6ujRo06PXV1drT/QLr21xPV2tesiPDxcVapU0WuvvZbtfc5y8x7p2bOnZsyYoTlz5ujZZ5/N03jatm0rKetn0HGk4uI7HoSFhal8+fJ64403lJ6ebp1ObdasmX799VctWbJEjRs3vuypysDAQLVo0UJvv/22/vrrryzTL66/bdu2+u6777Rlyxan6Rf/bJ4ktWzZUm5ublnC86XbSOnafBb+/PNPp+1Namqq3n//fdWvX986ZVisWLEsR7oWL15sXb/pcOl728PDQzVr1pQxRunp6ddkmxIREXFDfp6uU6dO+ueff7J93R2vhd39l6+vr8qUKZPlmtO33nrrqsZYvHhx29ui67EPzGkMudnnXWzUqFF65plnNHLkSKf3f9euXXXkyBH95z//yfKcM2fO6NSpU7kac0ZGRpbtXmBgoEJCQrJsg3/88UedPXs2xzvD5CRPRxy//vpr7du3T+fPn1diYqLWrFmj2NhYhYaGatmyZZe9Uem4ceO0fv16tWvXTqGhoUpKStJbb72lChUqqGnTppIuhAd/f3/NmTNHJUuWVPHixdWoUSOnv1BzIyAgQE2bNlXv3r2VmJioadOmqWrVqk63DOrXr5+WLFmi1q1bq2vXrvr111/14YcfZrnGLzdju/fee3X33XfrhRde0MGDB1WvXj3FxMTo888/19ChQy97e4Hc6N+/v95++209+uij2r59uypXrqwlS5Zo48aNmjZtWpZrVOyoX7++HnroIb311ls6fvy47rzzTq1evTrbI1cvv/yydW/OgQMHys3NTW+//bbS0tI0efJkq9/w4cO1ZMkSdenSRX369FF4eLiSk5O1bNkyzZkzR/Xq1VOtWrXUuHFjjRw5UsnJyQoICNCiRYtyHZjsmDhxotauXatGjRrpscceU82aNZWcnKzvv/9eq1atyvaPnCsJDw/XRx99pGHDhun2229XiRIldO+999p+/vDhw7Vs2TK1b99ejz76qMLDw3Xq1Cnt2rVLS5Ys0cGDB3N926JXX31VHTp0UJMmTdS7d28dO3ZMs2bNUu3atZ0Ckbe3t2rWrKmPPvpIt956qwICAlS7dm3rli529OvXT8nJybrnnntUoUIFHTp0SDNnzlT9+vWdjpLdCFe7LlxdXfXOO++oTZs2qlWrlnr37q3y5cvryJEjWrt2rXx9ffXFF1/Ynt/gwYOVmpqqF154QX5+ftb9Z+2qV6+eevXqpblz5yolJUXNmzfXli1b9N5776ljx466++67nfo3a9ZMixYtUp06dayjQrfddpuKFy+un3/++bLXNzq8+eabatq0qerUqaPHHntM//rXv5SYmKi4uDj98ccf1r0OR4wYoQ8++ECtW7fWkCFDrNvxOI4EOQQFBWnIkCF6/fXXdd9996l169b64Ycf9PXXX6tMmTJOR1yuxWfh1ltvVd++fbV161YFBQXp3XffVWJioubNm2f1ad++vcaNG6fevXvrzjvv1K5du7RgwYIs14NFRUUpODhYTZo0UVBQkPbu3atZs2apXbt21jb2arcpHTp00AcffKCff/75mp2Kz07Pnj31/vvva9iwYdqyZYuaNWumU6dOadWqVRo4cKA6dOiQq/1Xv379NHHiRPXr108NGzbU+vXrrSO7eRUeHq5Vq1Zp6tSpCgkJUVhYWI63ubke+8DLjcHuPu9SU6ZM0fHjxzVo0CCVLFlSDz/8sB555BF9/PHHGjBggNauXasmTZooIyND+/bt08cff6yVK1eqYcOGtsd84sQJVahQQZ07d1a9evVUokQJrVq1Slu3bs3yKzGxsbHy8fGxbk1lW26+gu34arnjn4eHhwkODjatWrUy06dPd/rKu8OltxFYvXq16dChgwkJCTEeHh4mJCTEPPTQQ1luufD555+bmjVrGjc3N6ev+jdv3jzHWyLkdDue//3vf2bkyJEmMDDQeHt7m3bt2plDhw5lef7rr79uypcvbzw9PU2TJk3Mtm3bsszzcmO79HY8xhhz4sQJ89RTT5mQkBDj7u5ubrnlFjNlyhSn23sYc+Fr9tl9fT6n2wRdKjEx0fTu3duUKVPGeHh4mDp16mR7e4Tc3IrgzJkz5sknnzSlS5c2xYsXN/fee6/5/fffs71ly/fff2+io6NNiRIljI+Pj7n77rvNpk2bsszz6NGjZvDgwaZ8+fLGw8PDVKhQwfTq1cvp9hW//vqriYyMNJ6eniYoKMg8//zzJjY2Ntvb8WT3Xsipxuxe48TERDNo0CBTsWJF4+7uboKDg03Lli3N3LlzrT4X31blYtndhuLkyZOme/fuxt/fP8vtbrKT3fo9ceKEGTlypKlatarx8PAwZcqUMXfeead57bXXzLlz55yWPWXKlGzrvHT9LFq0yFSvXt14enqa2rVrm2XLlplOnTqZ6tWrO/XbtGmTCQ8PNx4eHk7z6dWrlylevHiWZV36+V6yZImJiooygYGBxsPDw1SqVMn8+9//Nn/99ddlX4fsxu2Y96W37srplk2Xymld5GZ9GmPMjh07zAMPPGBKly5tPD09TWhoqOnatatZvXr1ZZef03JGjBhhJJlZs2blus709HQzduxYExYWZtzd3U3FihXNyJEjnW6X4/Dmm28aSebxxx93ao+MjDSSsow/p/p//fVX07NnTxMcHGzc3d1N+fLlTfv27c2SJUuc+u3cudM0b97ceHl5mfLly5vx48eb//73v1lqOH/+vBk1apQJDg423t7e5p577jF79+41pUuXNgMGDHCap53PQk4c24GVK1eaunXrGk9PT1O9evUs6+Ps2bPm6aefNuXKlTPe3t6mSZMmJi4uLsu2/+233zZ33XWX9T6oUqWKGT58uDl+/LjT/OxsU3KSlpZmypQpY8aPH+/UntPteK5mn3H69GnzwgsvWO+l4OBg07lzZ6dbzNjdf50+fdr07dvX+Pn5mZIlS5quXbtat4XK62d637595q677jLe3t5ZbtWUneuxD7zcGOzs87K7hWFGRoZ56KGHjJubm1m6dKkx5sKtgyZNmmRq1aplPD09TalSpUx4eLgZO3as0/vLzjpPS0szw4cPN/Xq1TMlS5Y0xYsXN/Xq1bNuz3WxRo0amYcfftjWa3Exl/8/GABFTP369VW2bNlreuscIC9SUlJUqlQpvfzyy3rhhRfyezj5avz48Zo3b572799/w76YiaInPj5et912m77//vscv/yXk2t+H0cABUt6enqWU/3ffPONfvjhh2x/ohO4ns6cOZOlzXHdJu9H6amnntLJkye1aNGi/B4KCrGJEyeqc+fOuQ6NksQRR6CQO3jwoCIjI/Xwww8rJCRE+/bt05w5c+Tn56fdu3df9qfJgGtt/vz5mj9/vtq2basSJUro22+/1f/+9z9FRUVl+0UYAAXLNb8BOICCpVSpUgoPD9c777yjv//+W8WLF1e7du00ceJEQiNuuLp168rNzU2TJ09Wamqq9YWZl19+Ob+HBsAGjjgCAADAFq5xBAAAgC0ERwAAANjCNY55lJmZqT///FMlS5a85j+RCAAArg9jjE6cOKGQkJAcfzseOSM45tGff/6Z5fcoAQDAzeH3339XhQoV8nsYN50bGhzXr1+vKVOmaPv27frrr7/02WefqWPHjpIu3GvuxRdf1FdffaXffvtNfn5+ioyM1MSJExUSEmLNIzk5WU888YS++OILubq6qlOnTpo+fbpKlChh9dm5c6cGDRqkrVu3qmzZsnriiSc0YsQIp7EsXrxYo0aN0sGDB3XLLbdo0qRJ1m/B2uH4CaPff/8929+ltCM9PV0xMTGKiorK8YfmCxtqpubCipqLRs1S0ay7MNWcmpqqihUr5vmnCIu6GxocT506pXr16qlPnz564IEHnKadPn1a33//vUaNGqV69erp2LFjGjJkiO677z6nH33v0aOH/vrrL8XGxio9PV29e/dW//79tXDhQkkX3hBRUVGKjIzUnDlztGvXLvXp00f+/v7q37+/JGnTpk166KGHNGHCBLVv314LFy5Ux44d9f3339v+XV7H6WlfX9+rCo4+Pj7y9fW96T+IdlEzNRdW1Fw0apaKZt2FsWYuM8ubGxoc27RpozZt2mQ7zc/PL8tPn82aNUt33HGHDh8+rEqVKmnv3r1asWKFtm7dav3o98yZM9W2bVu99tprCgkJ0YIFC3Tu3Dm9++678vDwUK1atRQfH6+pU6dawXH69Olq3bq1hg8fLunCTzzFxsZq1qxZmjNnznV8BQAAAG5eBfoax+PHj8vFxUX+/v6SpLi4OPn7+1uhUZIiIyPl6uqqzZs36/7771dcXJzuuusueXh4WH2io6M1adIkHTt2TKVKlVJcXJyGDRvmtKzo6GgtXbo0x7GkpaUpLS3Nepyamirpwl9h6enpearP8by8Pv9mRM1FAzUXDUWxZqlo1l2Yai4MNeSnAhscz549q2effVYPPfSQdSo4ISFBgYGBTv3c3NwUEBCghIQEq09YWJhTn6CgIGtaqVKllJCQYLVd3Mcxj+xMmDBBY8eOzdIeExMjHx+f3Bd4kUuPtBYF1Fw0UHPRUBRrlopm3YWh5tOnT+f3EG5qBTI4pqenq2vXrjLGaPbs2fk9HEnSyJEjnY5SOi6ujYqKuqprHGNjY9WqVatCc83IlVAzNRdW1Fw0apaKZt2FqWbHGUPkTYELjo7QeOjQIa1Zs8YplAUHByspKcmp//nz55WcnKzg4GCrT2JiolMfx+Mr9XFMz46np6c8PT2ztLu7u1/1h+hazONmQ81FAzUXDUWxZqlo1l0Yar7Zx5/fCtSdLx2hcf/+/Vq1apVKly7tND0iIkIpKSnavn271bZmzRplZmaqUaNGVp/169c7XcMQGxuratWqqVSpUlaf1atXO807NjZWERER16s0AACAm94NDY4nT55UfHy84uPjJUkHDhxQfHy8Dh8+rPT0dHXu3Fnbtm3TggULlJGRoYSEBCUkJOjcuXOSpBo1aqh169Z67LHHtGXLFm3cuFGDBw9Wt27drHs9du/eXR4eHurbt6/27Nmjjz76SNOnT3c6zTxkyBCtWLFCr7/+uvbt26cxY8Zo27ZtGjx48I18OQAAAG4qNzQ4btu2TQ0aNFCDBg0kScOGDVODBg00evRoHTlyRMuWLdMff/yh+vXrq1y5cta/TZs2WfNYsGCBqlevrpYtW6pt27Zq2rSp5s6da0338/NTTEyMDhw4oPDwcD399NMaPXq0dSseSbrzzju1cOFCzZ07V/Xq1dOSJUu0dOlS2/dwBAAAKIpu6DWOLVq0kDEmx+mXm+YQEBBg3ew7J3Xr1tWGDRsu26dLly7q0qXLFZcHAACACwrUNY4AAAAouAiOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCtwvx+CCys8tz+8h5NrBie3yewgAAOA64ogjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwJYbGhzXr1+ve++9VyEhIXJxcdHSpUudphtjNHr0aJUrV07e3t6KjIzU/v37nfokJyerR48e8vX1lb+/v/r27auTJ0869dm5c6eaNWsmLy8vVaxYUZMnT84ylsWLF6t69ery8vJSnTp19NVXX13zegEAAAqTGxocT506pXr16unNN9/MdvrkyZM1Y8YMzZkzR5s3b1bx4sUVHR2ts2fPWn169OihPXv2KDY2Vl9++aXWr1+v/v37W9NTU1MVFRWl0NBQbd++XVOmTNGYMWM0d+5cq8+mTZv00EMPqW/fvtqxY4c6duyojh07avfu3deveAAAgJuc241cWJs2bdSmTZtspxljNG3aNL344ovq0KGDJOn9999XUFCQli5dqm7dumnv3r1asWKFtm7dqoYNG0qSZs6cqbZt2+q1115TSEiIFixYoHPnzundd9+Vh4eHatWqpfj4eE2dOtUKmNOnT1fr1q01fPhwSdL48eMVGxurWbNmac6cOTfglQAAALj53NDgeDkHDhxQQkKCIiMjrTY/Pz81atRIcXFx6tatm+Li4uTv72+FRkmKjIyUq6urNm/erPvvv19xcXG666675OHhYfWJjo7WpEmTdOzYMZUqVUpxcXEaNmyY0/Kjo6OznDq/WFpamtLS0qzHqampkqT09HSlp6fnqWbH87J7vmcxk6d55ic7r8Plai6sqLlooOaioyjWXZhqLgw15KcCExwTEhIkSUFBQU7tQUFB1rSEhAQFBgY6TXdzc1NAQIBTn7CwsCzzcEwrVaqUEhISLruc7EyYMEFjx47N0h4TEyMfHx87JeYoNjY2S9vkO65qlvkiN9eJZldzYUfNRQM1Fx1Fse7CUPPp06fzewg3tQITHAu6kSNHOh2lTE1NVcWKFRUVFSVfX988zTM9PV2xsbFq1aqV3N3dnabVHrPyqsabH3aPib5in8vVXFhRMzUXVkWxZqlo1l2YanacMUTeFJjgGBwcLElKTExUuXLlrPbExETVr1/f6pOUlOT0vPPnzys5Odl6fnBwsBITE536OB5fqY9jenY8PT3l6emZpd3d3f2qP0TZzSMtw+Wq5pkfcvM6XIvX7WZDzUUDNRcdRbHuwlDzzT7+/FZg7uMYFham4OBgrV692mpLTU3V5s2bFRERIUmKiIhQSkqKtm/fbvVZs2aNMjMz1ahRI6vP+vXrna5hiI2NVbVq1VSqVCmrz8XLcfRxLAcAAABZ3dDgePLkScXHxys+Pl7ShS/ExMfH6/Dhw3JxcdHQoUP18ssva9myZdq1a5d69uypkJAQdezYUZJUo0YNtW7dWo899pi2bNmijRs3avDgwerWrZtCQkIkSd27d5eHh4f69u2rPXv26KOPPtL06dOdTjMPGTJEK1as0Ouvv659+/ZpzJgx2rZtmwYPHnwjXw4AAICbyg09Vb1t2zbdfffd1mNHmOvVq5fmz5+vESNG6NSpU+rfv79SUlLUtGlTrVixQl5eXtZzFixYoMGDB6tly5ZydXVVp06dNGPGDGu6n5+fYmJiNGjQIIWHh6tMmTIaPXq0070e77zzTi1cuFAvvviinn/+ed1yyy1aunSpateufQNeBQAAgJvTDQ2OLVq0kDE532bGxcVF48aN07hx43LsExAQoIULF152OXXr1tWGDRsu26dLly7q0qXL5QcMAAAAS4G5xhEAAAAFG8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthSo4JiRkaFRo0YpLCxM3t7eqlKlisaPHy9jjNXHGKPRo0erXLly8vb2VmRkpPbv3+80n+TkZPXo0UO+vr7y9/dX3759dfLkSac+O3fuVLNmzeTl5aWKFStq8uTJN6RGAACAm1WBCo6TJk3S7NmzNWvWLO3du1eTJk3S5MmTNXPmTKvP5MmTNWPGDM2ZM0ebN29W8eLFFR0drbNnz1p9evTooT179ig2NlZffvml1q9fr/79+1vTU1NTFRUVpdDQUG3fvl1TpkzRmDFjNHfu3BtaLwAAwM3ELb8HcLFNmzapQ4cOateunSSpcuXK+t///qctW7ZIunC0cdq0aXrxxRfVoUMHSdL777+voKAgLV26VN26ddPevXu1YsUKbd26VQ0bNpQkzZw5U23bttVrr72mkJAQLViwQOfOndO7774rDw8P1apVS/Hx8Zo6dapTwLxYWlqa0tLSrMepqamSpPT0dKWnp+epXsfzsnu+ZzGTpa2gs/M6XK7mwoqaiwZqLjqKYt2FqebCUEN+cjEXnwfOZ6+++qrmzp2rmJgY3Xrrrfrhhx8UFRWlqVOnqkePHvrtt99UpUoV7dixQ/Xr17ee17x5c9WvX1/Tp0/Xu+++q6efflrHjh2zpp8/f15eXl5avHix7r//fvXs2VOpqalaunSp1Wft2rW65557lJycrFKlSmUZ25gxYzR27Ngs7QsXLpSPj881fR0AAMD1cfr0aXXv3l3Hjx+Xr69vfg/nplOgjjg+99xzSk1NVfXq1VWsWDFlZGTolVdeUY8ePSRJCQkJkqSgoCCn5wUFBVnTEhISFBgY6DTdzc1NAQEBTn3CwsKyzMMxLbvgOHLkSA0bNsx6nJqaqooVKyoqKirPb7z09HTFxsaqVatWcnd3d5pWe8zKPM0zP+0eE33FPperubCiZmourIpizVLRrLsw1ew4Y4i8KVDB8eOPP9aCBQu0cOFC6/Tx0KFDFRISol69euXr2Dw9PeXp6Zml3d3d/ao/RNnNIy3D5armmR9y8zpci9ftZkPNRQM1Fx1Fse7CUPPNPv78VqCC4/Dhw/Xcc8+pW7dukqQ6dero0KFDmjBhgnr16qXg4GBJUmJiosqVK2c9LzEx0Tp1HRwcrKSkJKf5nj9/XsnJydbzg4ODlZiY6NTH8djRBwAAAM4K1LeqT58+LVdX5yEVK1ZMmZmZkqSwsDAFBwdr9erV1vTU1FRt3rxZERERkqSIiAilpKRo+/btVp81a9YoMzNTjRo1svqsX7/e6QLZ2NhYVatWLdvT1AAAAChgwfHee+/VK6+8ouXLl+vgwYP67LPPNHXqVN1///2SJBcXFw0dOlQvv/yyli1bpl27dqlnz54KCQlRx44dJUk1atRQ69at9dhjj2nLli3auHGjBg8erG7duikkJESS1L17d3l4eKhv377as2ePPvroI02fPt3pGkYAAAA4K1CnqmfOnKlRo0Zp4MCBSkpKUkhIiP79739r9OjRVp8RI0bo1KlT6t+/v1JSUtS0aVOtWLFCXl5eVp8FCxZo8ODBatmypVxdXdWpUyfNmDHDmu7n56eYmBgNGjRI4eHhKlOmjEaPHp3jrXgAAABQwIJjyZIlNW3aNE2bNi3HPi4uLho3bpzGjRuXY5+AgAAtXLjwssuqW7euNmzYkNehAgAAFDkF6lQ1AAAACi6CIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwJYCFxyPHDmihx9+WKVLl5a3t7fq1Kmjbdu2WdONMRo9erTKlSsnb29vRUZGav/+/U7zSE5OVo8ePeTr6yt/f3/17dtXJ0+edOqzc+dONWvWTF5eXqpYsaImT558Q+oDAAC4WRWo4Hjs2DE1adJE7u7u+vrrr/Xjjz/q9ddfV6lSpaw+kydP1owZMzRnzhxt3rxZxYsXV3R0tM6ePWv16dGjh/bs2aPY2Fh9+eWXWr9+vfr3729NT01NVVRUlEJDQ7V9+3ZNmTJFY8aM0dy5c29ovQAAADcTt/wewMUmTZqkihUrat68eVZbWFiY9X9jjKZNm6YXX3xRHTp0kCS9//77CgoK0tKlS9WtWzft3btXK1as0NatW9WwYUNJ0syZM9W2bVu99tprCgkJ0YIFC3Tu3Dm9++678vDwUK1atRQfH6+pU6c6BUwAAAD8nwIVHJctW6bo6Gh16dJF69atU/ny5TVw4EA99thjkqQDBw4oISFBkZGR1nP8/PzUqFEjxcXFqVu3boqLi5O/v78VGiUpMjJSrq6u2rx5s+6//37FxcXprrvukoeHh9UnOjpakyZN0rFjx5yOcDqkpaUpLS3NepyamipJSk9PV3p6ep7qdTwvu+d7FjN5mmd+svM6XK7mwoqaiwZqLjqKYt2FqebCUEN+KlDB8bffftPs2bM1bNgwPf/889q6dauefPJJeXh4qFevXkpISJAkBQUFOT0vKCjImpaQkKDAwECn6W5ubgoICHDqc/GRzIvnmZCQkG1wnDBhgsaOHZulPSYmRj4+Pnms+ILY2NgsbZPvuKpZ5ouvvvrKdt/sai7sqLlooOaioyjWXRhqPn36dH4P4aZWoIJjZmamGjZsqFdffVWS1KBBA+3evVtz5sxRr1698nVsI0eO1LBhw6zHqampqlixoqKiouTr65uneaanpys2NlatWrWSu7u707TaY1Ze1Xjzw+4x0Vfsc7maCytqpubCqijWLBXNugtTzY4zhsibAhUcy5Urp5o1azq11ahRQ5988okkKTg4WJKUmJiocuXKWX0SExNVv359q09SUpLTPM6fP6/k5GTr+cHBwUpMTHTq43js6HMpT09PeXp6Zml3d3e/6g9RdvNIy3C5qnnmh9y8DtfidbvZUHPRQM1FR1GsuzDUfLOPP78VqG9VN2nSRD/99JNT288//6zQ0FBJF74oExwcrNWrV1vTU1NTtXnzZkVEREiSIiIilJKSou3bt1t91qxZo8zMTDVq1Mjqs379eqfrHGJjY1WtWrVsT1MDAACggAXHp556St99951effVV/fLLL1q4cKHmzp2rQYMGSZJcXFw0dOhQvfzyy1q2bJl27dqlnj17KiQkRB07dpR04Qhl69at9dhjj2nLli3auHGjBg8erG7duikkJESS1L17d3l4eKhv377as2ePPvroI02fPt3pVDQAAACcFahT1bfffrs+++wzjRw5UuPGjVNYWJimTZumHj16WH1GjBihU6dOqX///kpJSVHTpk21YsUKeXl5WX0WLFigwYMHq2XLlnJ1dVWnTp00Y8YMa7qfn59iYmI0aNAghYeHq0yZMho9ejS34gEAALiMAhUcJal9+/Zq3759jtNdXFw0btw4jRs3Lsc+AQEBWrhw4WWXU7duXW3YsCHP4wQAAChqCtSpagAAABRcBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYUqCD48SJE+Xi4qKhQ4dabWfPntWgQYNUunRplShRQp06dVJiYqLT8w4fPqx27drJx8dHgYGBGj58uM6fP+/U55tvvtFtt90mT09PVa1aVfPnz78BFQEAANy8Cmxw3Lp1q95++23VrVvXqf2pp57SF198ocWLF2vdunX6888/9cADD1jTMzIy1K5dO507d06bNm3Se++9p/nz52v06NFWnwMHDqhdu3a6++67FR8fr6FDh6pfv35auXLlDasPAADgZlMgg+PJkyfVo0cP/ec//1GpUqWs9uPHj+u///2vpk6dqnvuuUfh4eGaN2+eNm3apO+++06SFBMTox9//FEffvih6tevrzZt2mj8+PF68803de7cOUnSnDlzFBYWptdff101atTQ4MGD1blzZ73xxhv5Ui8AAMDNwC2/B5CdQYMGqV27doqMjNTLL79stW/fvl3p6emKjIy02qpXr65KlSopLi5OjRs3VlxcnOrUqaOgoCCrT3R0tB5//HHt2bNHDRo0UFxcnNM8HH0uPiV+qbS0NKWlpVmPU1NTJUnp6elKT0/PU52O52X3fM9iJk/zzE92XofL1VxYUXPRQM1FR1GsuzDVXBhqyE8FLjguWrRI33//vbZu3ZplWkJCgjw8POTv7+/UHhQUpISEBKvPxaHRMd0x7XJ9UlNTdebMGXl7e2dZ9oQJEzR27Ngs7TExMfLx8bFfYDZiY2OztE2+46pmmS+++uor232zq7mwo+aigZqLjqJYd2Go+fTp0/k9hJtagQqOv//+u4YMGaLY2Fh5eXnl93CcjBw5UsOGDbMep6amqmLFioqKipKvr2+e5pmenq7Y2Fi1atVK7u7uTtNqj7n5rrfcPSb6in0uV3NhRc3UXFgVxZqloll3YarZccYQeVOgguP27duVlJSk2267zWrLyMjQ+vXrNWvWLK1cuVLnzp1TSkqK01HHxMREBQcHS5KCg4O1ZcsWp/k6vnV9cZ9Lv4mdmJgoX1/fbI82SpKnp6c8PT2ztLu7u1/1hyi7eaRluFzVPPNDbl6Ha/G63WyouWig5qKjKNZdGGq+2cef3wrUl2NatmypXbt2KT4+3vrXsGFD9ejRw/q/u7u7Vq9ebT3np59+0uHDhxURESFJioiI0K5du5SUlGT1iY2Nla+vr2rWrGn1uXgejj6OeQAAACCrAnXEsWTJkqpdu7ZTW/HixVW6dGmrvW/fvho2bJgCAgLk6+urJ554QhEREWrcuLEkKSoqSjVr1tQjjzyiyZMnKyEhQS+++KIGDRpkHTEcMGCAZs2apREjRqhPnz5as2aNPv74Yy1fvvzGFgwAAHATKVDB0Y433nhDrq6u6tSpk9LS0hQdHa233nrLml6sWDF9+eWXevzxxxUREaHixYurV69eGjdunNUnLCxMy5cv11NPPaXp06erQoUKeueddxQdfeVr9AAAAIqqAh8cv/nmG6fHXl5eevPNN/Xmm2/m+JzQ0NArfsO3RYsW2rFjx7UYIgAAQJFQoK5xBAAAQMFFcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBSo4TpgwQbfffrtKliypwMBAdezYUT/99JNTn7Nnz2rQoEEqXbq0SpQooU6dOikxMdGpz+HDh9WuXTv5+PgoMDBQw4cP1/nz5536fPPNN7rtttvk6empqlWrav78+de7PAAAgJtagQqO69at06BBg/Tdd98pNjZW6enpioqK0qlTp6w+Tz31lL744gstXrxY69at059//qkHHnjAmp6RkaF27drp3Llz2rRpk9577z3Nnz9fo0ePtvocOHBA7dq109133634+HgNHTpU/fr108qVK29ovQAAADcTt/wewMVWrFjh9Hj+/PkKDAzU9u3bddddd+n48eP673//q4ULF+qee+6RJM2bN081atTQd999p8aNGysmJkY//vijVq1apaCgINWvX1/jx4/Xs88+qzFjxsjDw0Nz5sxRWFiYXn/9dUlSjRo19O233+qNN95QdHT0Da8bAADgZlCgguOljh8/LkkKCAiQJG3fvl3p6emKjIy0+lSvXl2VKlVSXFycGjdurLi4ONWpU0dBQUFWn+joaD3++OPas2ePGjRooLi4OKd5OPoMHTo0x7GkpaUpLS3NepyamipJSk9PV3p6ep7qczwvu+d7FjN5mmd+svM6XK7mwoqaiwZqLjqKYt2FqebCUEN+KrDBMTMzU0OHDlWTJk1Uu3ZtSVJCQoI8PDzk7+/v1DcoKEgJCQlWn4tDo2O6Y9rl+qSmpurMmTPy9vbOMp4JEyZo7NixWdpjYmLk4+OTtyL/v9jY2Cxtk++4qlnmi6+++sp23+xqLuyouWig5qKjKNZdGGo+ffp0fg/hplZgg+OgQYO0e/duffvtt/k9FEnSyJEjNWzYMOtxamqqKlasqKioKPn6+uZpnunp6YqNjVWrVq3k7u7uNK32mJvvesvdY658mv9yNRdW1EzNhVVRrFkqmnUXppodZwyRNwUyOA4ePFhffvml1q9frwoVKljtwcHBOnfunFJSUpyOOiYmJio4ONjqs2XLFqf5Ob51fXGfS7+JnZiYKF9f32yPNkqSp6enPD09s7S7u7tf9Ycou3mkZbhc1TzzQ25eh2vxut1sqLlooOaioyjWXRhqvtnHn98K1LeqjTEaPHiwPvvsM61Zs0ZhYWFO08PDw+Xu7q7Vq1dbbT/99JMOHz6siIgISVJERIR27dqlpKQkq09sbKx8fX1Vs2ZNq8/F83D0ccwDAAAAWRWoI46DBg3SwoUL9fnnn6tkyZLWNYl+fn7y9vaWn5+f+vbtq2HDhikgIEC+vr564oknFBERocaNG0uSoqKiVLNmTT3yyCOaPHmyEhIS9OKLL2rQoEHWEcMBAwZo1qxZGjFihPr06aM1a9bo448/1vLly/OtdgAAgIKuQB1xnD17to4fP64WLVqoXLly1r+PPvrI6vPGG2+offv26tSpk+666y4FBwfr008/taYXK1ZMX375pYoVK6aIiAg9/PDD6tmzp8aNG2f1CQsL0/LlyxUbG6t69erp9ddf1zvvvMOteAAAAC6jQB1xNObKt6Dx8vLSm2++qTfffDPHPqGhoVf8hm+LFi20Y8eOXI8RAACgqCpQRxwBAABQcBEcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGCLW34PAIVH5eeWX7GPZzGjyXdItcesVFqGyw0Y1eUdnNguv4cAAMBNgyOOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACwheAIAAAAWwiOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACwheAIAAAAWwiOAAAAsIXgCAAAAFuKfHB88803VblyZXl5ealRo0basmVLfg8JAACgQCrSwfGjjz7SsGHD9NJLL+n7779XvXr1FB0draSkpPweGgAAQIFTpIPj1KlT9dhjj6l3796qWbOm5syZIx8fH7377rv5PTQAAIACxy2/B5Bfzp07p+3bt2vkyJFWm6urqyIjIxUXF5elf1pamtLS0qzHx48flyQlJycrPT09T2NIT0/X6dOndfToUbm7uztNczt/Kk/zLOjcMo1On86UW7qrMjJd8ns4qvrMx9d9GZ6uRi82yFT9Fz5V2jWoefPIltdgVNfX5d7bhRU1F42apaJZd2Gq+cSJE5IkY0w+j+TmVGSD4z///KOMjAwFBQU5tQcFBWnfvn1Z+k+YMEFjx47N0h4WFnbdxlhYdc/vAeSDa1lzmdev4cwAoIg6ceKE/Pz88nsYN50iGxxza+TIkRo2bJj1ODMzU8nJySpdurRcXPJ2FCk1NVUVK1bU77//Ll9f32s11AKNmqm5sKLmolGzVDTrLkw1G2N04sQJhYSE5PdQbkpFNjiWKVNGxYoVU2JiolN7YmKigoODs/T39PSUp6enU5u/v/81GYuvr+9N/0HMLWouGqi5aCiKNUtFs+7CUjNHGvOuyH45xsPDQ+Hh4Vq9erXVlpmZqdWrVysiIiIfRwYAAFAwFdkjjpI0bNgw9erVSw0bNtQdd9yhadOm6dSpU+rdu3d+Dw0AAKDAKdLB8cEHH9Tff/+t0aNHKyEhQfXr19eKFSuyfGHmevH09NRLL72U5RR4YUbNRQM1Fw1FsWapaNZdFGtG9lwM30cHAACADUX2GkcAAADkDsERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwTGfvPnmm6pcubK8vLzUqFEjbdmyJb+HlGfr16/Xvffeq5CQELm4uGjp0qVO040xGj16tMqVKydvb29FRkZq//79Tn2Sk5PVo0cP+fr6yt/fX3379tXJkydvYBW5M2HCBN1+++0qWbKkAgMD1bFjR/30009Ofc6ePatBgwapdOnSKlGihDp16pTll4oOHz6sdu3aycfHR4GBgRo+fLjOnz9/I0uxbfbs2apbt671yxERERH6+uuvremFrd7sTJw4US4uLho6dKjVVtjqHjNmjFxcXJz+Va9e3Zpe2Op1OHLkiB5++GGVLl1a3t7eqlOnjrZt22ZNL4zbscqVK2dZ1y4uLho0aJCkwruucZUMbrhFixYZDw8P8+6775o9e/aYxx57zPj7+5vExMT8HlqefPXVV+aFF14wn376qZFkPvvsM6fpEydONH5+fmbp0qXmhx9+MPfdd58JCwszZ86csfq0bt3a1KtXz3z33Xdmw4YNpmrVquahhx66wZXYFx0dbebNm2d2795t4uPjTdu2bU2lSpXMyZMnrT4DBgwwFStWNKtXrzbbtm0zjRs3Nnfeeac1/fz586Z27domMjLS7Nixw3z11VemTJkyZuTIkflR0hUtW7bMLF++3Pz888/mp59+Ms8//7xxd3c3u3fvNsYUvnovtWXLFlO5cmVTt25dM2TIEKu9sNX90ksvmVq1apm//vrL+vf3339b0wtbvcYYk5ycbEJDQ82jjz5qNm/ebH777TezcuVK88svv1h9CuN2LCkpyWk9x8bGGklm7dq1xpjCua5x9QiO+eCOO+4wgwYNsh5nZGSYkJAQM2HChHwc1bVxaXDMzMw0wcHBZsqUKVZbSkqK8fT0NP/73/+MMcb8+OOPRpLZunWr1efrr782Li4u5siRIzds7FcjKSnJSDLr1q0zxlyo0d3d3SxevNjqs3fvXiPJxMXFGWMuBG5XV1eTkJBg9Zk9e7bx9fU1aWlpN7aAPCpVqpR55513Cn29J06cMLfccouJjY01zZs3t4JjYaz7pZdeMvXq1ct2WmGs1xhjnn32WdO0adMcpxeV7diQIUNMlSpVTGZmZqFd17h6nKq+wc6dO6ft27crMjLSanN1dVVkZKTi4uLycWTXx4EDB5SQkOBUr5+fnxo1amTVGxcXJ39/fzVs2NDqExkZKVdXV23evPmGjzkvjh8/LkkKCAiQJG3fvl3p6elOdVevXl2VKlVyqrtOnTpOv1QUHR2t1NRU7dmz5waOPvcyMjK0aNEinTp1ShEREYW+3kGDBqldu3ZO9UmFdz3v379fISEh+te//qUePXro8OHDkgpvvcuWLVPDhg3VpUsXBQYGqkGDBvrPf/5jTS8K27Fz587pww8/VJ8+feTi4lJo1zWuHsHxBvvnn3+UkZGR5WcNg4KClJCQkE+jun4cNV2u3oSEBAUGBjpNd3NzU0BAwE3xmmRmZmro0KFq0qSJateuLelCTR4eHvL393fqe2nd2b0ujmkF0a5du1SiRAl5enpqwIAB+uyzz1SzZs1CW68kLVq0SN9//70mTJiQZVphrLtRo0aaP3++VqxYodmzZ+vAgQNq1qyZTpw4USjrlaTffvtNs2fP1i233KKVK1fq8ccf15NPPqn33ntPUtHYji1dulQpKSl69NFHJRXO9zaujSL9W9XAtTBo0CDt3r1b3377bX4P5bqrVq2a4uPjdfz4cS1ZskS9evXSunXr8ntY183vv/+uIUOGKDY2Vl5eXvk9nBuiTZs21v/r1q2rRo0aKTQ0VB9//LG8vb3zcWTXT2Zmpho2bKhXX31VktSgQQPt3r1bc+bMUa9evfJ5dDfGf//7X7Vp00YhISH5PRQUcBxxvMHKlCmjYsWKZflmWmJiooKDg/NpVNePo6bL1RscHKykpCSn6efPn1dycnKBf00GDx6sL7/8UmvXrlWFChWs9uDgYJ07d04pKSlO/S+tO7vXxTGtIPLw8FDVqlUVHh6uCRMmqF69epo+fXqhrXf79u1KSkrSbbfdJjc3N7m5uWndunWaMWOG3NzcFBQUVCjrvpi/v79uvfVW/fLLL4V2PZcrV041a9Z0aqtRo4Z1ir6wb8cOHTqkVatWqV+/flZbYV3XuHoExxvMw8ND4eHhWr16tdWWmZmp1atXKyIiIh9Hdn2EhYUpODjYqd7U1FRt3rzZqjciIkIpKSnavn271WfNmjXKzMxUo0aNbviY7TDGaPDgwfrss8+0Zs0ahYWFOU0PDw+Xu7u7U90//fSTDh8+7FT3rl27nHY2sbGx8vX1zbITK6gyMzOVlpZWaOtt2bKldu3apfj4eOtfw4YN1aNHD+v/hbHui508eVK//vqrypUrV2jXc5MmTbLcTuvnn39WaGiopMK7HXOYN2+eAgMD1a5dO6utsK5rXAP5/e2comjRokXG09PTzJ8/3/z444+mf//+xt/f3+mbaTeTEydOmB07dpgdO3YYSWbq1Klmx44d5tChQ8aYC7ex8Pf3N59//rnZuXOn6dChQ7a3sWjQoIHZvHmz+fbbb80tt9xSoG9j8fjjjxs/Pz/zzTffON3O4vTp01afAQMGmEqVKpk1a9aYbdu2mYiICBMREWFNd9zKIioqysTHx5sVK1aYsmXLFthbWTz33HNm3bp15sCBA2bnzp3mueeeMy4uLiYmJsYYU/jqzcnF36o2pvDV/fTTT5tvvvnGHDhwwGzcuNFERkaaMmXKmKSkJGNM4avXmAu3WnJzczOvvPKK2b9/v1mwYIHx8fExH374odWnMG7HjLlwV49KlSqZZ599Nsu0wriucfUIjvlk5syZplKlSsbDw8Pccccd5rvvvsvvIeXZ2rVrjaQs/3r16mWMuXAri1GjRpmgoCDj6elpWrZsaX766SeneRw9etQ89NBDpkSJEsbX19f07t3bnDhxIh+qsSe7eiWZefPmWX3OnDljBg4caEqVKmV8fHzM/fffb/766y+n+Rw8eNC0adPGeHt7mzJlypinn37apKen3+Bq7OnTp48JDQ01Hh4epmzZsqZly5ZWaDSm8NWbk0uDY2Gr+8EHHzTlypUzHh4epnz58ubBBx90up9hYavX4YsvvjC1a9c2np6epnr16mbu3LlO0wvjdswYY1auXGkkZanFmMK7rnF1XIwxJl8OdQIAAOCmwjWOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACwheAIAAAAWwiOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACw5f8BkI9PTD3trcUAAAAASUVORK5CYII=\n"
},
"metadata": {}
}
],
"source": [
"from sentence_transformers import SentenceTransformer\n",
"\n",
"# To get the value of the max sequence_length, we will query the underlying `SentenceTransformer` object used in the RecursiveCharacterTextSplitter.\n",
"print(\n",
" f\"Model's maximum sequence length: {SentenceTransformer('thenlper/gte-small').max_seq_length}\"\n",
")\n",
"\n",
"from transformers import AutoTokenizer\n",
"\n",
"tokenizer = AutoTokenizer.from_pretrained(\"thenlper/gte-small\")\n",
"lengths = [len(tokenizer.encode(doc.page_content)) for doc in tqdm(docs_processed)]\n",
"\n",
"# Plot the distrubution of document lengths, counted as the number of tokens\n",
"fig = pd.Series(lengths).hist()\n",
"plt.title(\"Distribution of document lengths in the knowledge base (in count of tokens)\")\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "L3teXczl9-9M"
},
"source": [
"👀 __the chunk lengths are displayed above__, all documents are within the limit, none will be lost in truncation.\n",
"\n",
" - Otherwise we would change the `RecursiveCharacterTextSplitter` class to count length in number of tokens instead of number of characters.\n",
" - Then we can choose a specific chunk size, here we would choose a lower threshold than 512:\n",
" - smaller documents could allow the split to focus more on specific ideas.\n",
" - But too small chunks would split sentences in half, thus losing meaning again: the proper tuning is a matter of balance."
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"colab": {
"referenced_widgets": [
"b7d783c7ba9e4999b7c762f10c95f21c",
"641bd5363a114ce3931ba0834b630b1c",
"9c7dcc3fc0574a2cb6c30c08eb6b5be9",
"66cb3129f4114b778041c56ee1948194",
"24308ae638184e95bd705d63e8f63721",
"30e79727502e4cbc9bd28042eaae5e4c",
"1db70b56d17e42bcba7629d2b91003b9",
"6f375dc8ac5341eaa8b4f30c68df93c0",
"663c980bdfb94f26a39d330fc535ccd3",
"7acb870a0a954751b52de63dace64603",
"4fd16e3fe60f46339444941cee2db80f"
],
"base_uri": "https://localhost:8080/",
"height": 495
},
"id": "9hvIL2jO9-9M",
"outputId": "9329f21d-0cfb-492e-c85a-b59eaf55d040"
},
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
" 0%| | 0/12281 [00:00<?, ?it/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "b7d783c7ba9e4999b7c762f10c95f21c"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"<Figure size 640x480 with 1 Axes>"
],
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAo4AAAGzCAYAAAChApYOAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAABUfUlEQVR4nO3deVwVZf//8TfIrgKiAuKC3FruW1hKaloiuJWWS6alueRtammWlpXmUrmVuZXm3Z226G1pZZal4JKakluSS1pWLmUBJSKuiHD9/vB35usR0AEXEF7Px8PHw3PNdWauz5lzZt7MzJnjYowxAgAAAK7ANb8HAAAAgJsDwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgy3UPjmPGjJGLi8v1XowkqUWLFmrRooX1+JtvvpGLi4uWLFlyQ5b/6KOPqnLlyjdkWXl18uRJ9evXT8HBwXJxcdHQoUNzPQ8XFxeNGTPmmo+tKKpcubIeffTR/B7GFT366KMqUaLEdV3GjXpf3ajtwo3e/lytgwcPysXFRfPnz79m85w/f75cXFx08ODBazZPuypXrqz27dvf8OVerZMnTyowMFALFiyw2m7kfrSwuxb7QLsc7/9t27Zdt2XkVbdu3dS1a9c8PTdXwdHxIjj+eXl5KSQkRNHR0ZoxY4ZOnDiRp0Fc6s8//9SYMWMUHx9/TeZ3LRXksdnx6quvav78+Xr88cf1wQcf6JFHHsnvIRUqCxcu1LRp0/J7GHly+vRpjRkzRt98801+D+WauJnXBYqu6dOnq2TJkurWrVt+DyVfvfrqq1q6dOl1ma/dfeD1GkNB8Oyzz+qTTz7RDz/8kOvn5umI47hx4/TBBx9o9uzZeuKJJyRJQ4cOVZ06dbRz506nvi+++KLOnDmTq/n/+eefGjt2bK7DWUxMjGJiYnL1nNy63Nj+85//6Keffrquy79aa9asUePGjfXSSy/p4YcfVnh4eH4PqVC5mcPK6dOnNXbs2HwLjmfOnNGLL754zeZ3M68LFE3p6emaPn26+vXrp2LFilntedmP3uyuV2jLzT6wMAfHBg0aqGHDhnr99ddz/dw8Bcc2bdro4YcfVu/evTVy5EitXLlSq1atUlJSku677z6nN7ibm5u8vLzyshjbTp8+LUny8PCQh4fHdV3W5bi7u8vT0zPflm9HUlKS/P3983sYQBZeXl5yc3PL72EA+ebLL7/U33//neUU4o3YjxYV7AP/T9euXfXpp5/q5MmTuXreNbvG8Z577tGoUaN06NAhffjhh1Z7dtdmxMbGqmnTpvL391eJEiVUrVo1Pf/885IuXBd0++23S5J69+5tnRZ3XHfTokUL1a5dW9u3b9ddd90lHx8f67mXXuPokJGRoeeff17BwcEqXry47rvvPv3+++9OfXK61uzieV5pbNld43jq1Ck9/fTTqlixojw9PVWtWjW99tprMsY49XNxcdHgwYO1dOlS1a5dW56enqpVq5ZWrFiR/Qt+iaSkJPXt21dBQUHy8vJSvXr19N5771nTHddbHThwQMuXL7fGfrlrj9LS0vTUU0+pbNmyKlmypO677z798ccf2fbdsWOH2rRpI19fX5UoUUItW7bUd999l6VfSkqKnnrqKVWuXFmenp6qUKGCevbsqX/++UdSztdEOcZ/8dEwx3th586dat68uXx8fFS1alXrmrJ169apUaNG8vb2VrVq1bRq1aos4zly5Ij69OmjoKAg6zV/9913s132xx9/rFdeeUUVKlSQl5eXWrZsqV9++cVpPMuXL9ehQ4es1zcv17ympKRo6NCh1numatWqmjRpkjIzM60+juvRXnvtNc2dO1dVqlSRp6enbr/9dm3dujXLPBcvXqyaNWvKy8tLtWvX1meffeb0fj148KDKli0rSRo7dqw1/kuvOTxy5Ig6duyoEiVKqGzZsnrmmWeUkZHh1GfRokUKDw9XyZIl5evrqzp16mj69OlXrPvS5Tm2Hb/88oseffRR+fv7y8/PT71797b+WMyJnXWRmZl52fXpsHnzZrVu3Vp+fn7y8fFR8+bNtXHjxivWk520tDS1b99efn5+2rRpU67rPH/+vMaPH2+t78qVK+v5559XWlqa1WfYsGEqXbq00zbmiSeekIuLi2bMmGG1JSYmysXFRbNnz77smPft26fOnTsrICBAXl5eatiwoZYtW5al3549e3TPPffI29tbFSpU0Msvv+z0nnXIzMzUmDFjFBISIh8fH91999368ccfs90G2/ksXElMTIzq168vLy8v1axZU59++qnT9OTkZD3zzDOqU6eOSpQoIV9fX7Vp0ybbU3gzZ85UrVq15OPjo1KlSqlhw4ZauHChUx8725ScLF26VJUrV1aVKlWc2rPbj17tPuPs2bMaM2aMbr31Vnl5ealcuXJ64IEH9Ouvv1p97Oy/LndtbF4/0y4uLjp16pTee+896/N7pWvBr/U+8EpjsLvPu9SxY8d0xx13qEKFCtYZyrS0NL300kuqWrWqPD09VbFiRY0YMcLpc+0Yk511fuLECQ0dOtTazwYGBqpVq1b6/vvvnfq1atVKp06dUmxs7BXHfbFr+uf9I488oueff14xMTF67LHHsu2zZ88etW/fXnXr1tW4cePk6empX375xdoQ16hRQ+PGjdPo0aPVv39/NWvWTJJ05513WvM4evSo2rRpo27duunhhx9WUFDQZcf1yiuvyMXFRc8++6ySkpI0bdo0RUZGKj4+Xt7e3rbrszO2ixljdN9992nt2rXq27ev6tevr5UrV2r48OE6cuSI3njjDaf+3377rT799FMNHDhQJUuW1IwZM9SpUycdPnxYpUuXznFcZ86cUYsWLfTLL79o8ODBCgsL0+LFi/Xoo48qJSVFQ4YMUY0aNfTBBx/oqaeeUoUKFfT0009LkhUWstOvXz99+OGH6t69u+68806tWbNG7dq1y9Jvz549atasmXx9fTVixAi5u7vr7bffVosWLazwJl24KLlZs2bau3ev+vTpo9tuu03//POPli1bpj/++ENlypS5/ArIxrFjx9S+fXt169ZNXbp00ezZs9WtWzctWLBAQ4cO1YABA9S9e3dNmTJFnTt31u+//66SJUtKurDjbNy4sfVhLFu2rL7++mv17dtXqampWS6anjhxolxdXfXMM8/o+PHjmjx5snr06KHNmzdLkl544QUdP35cf/zxh7Vuc/uFktOnT6t58+Y6cuSI/v3vf6tSpUratGmTRo4cqb/++ivLqdeFCxfqxIkT+ve//y0XFxdNnjxZDzzwgH777Te5u7tLkpYvX64HH3xQderU0YQJE3Ts2DH17dtX5cuXt+ZTtmxZzZ49W48//rjuv/9+PfDAA5KkunXrWn0yMjIUHR2tRo0a6bXXXtOqVav0+uuvq0qVKnr88cclXfij8KGHHlLLli01adIkSdLevXu1ceNGDRkyJFevhUPXrl0VFhamCRMm6Pvvv9c777yjwMBAa/7ZsbMurrQ+pQuntdq0aaPw8HC99NJLcnV11bx583TPPfdow4YNuuOOO2zXcebMGXXo0EHbtm3TqlWrrD9Cc1Nnv3799N5776lz5856+umntXnzZk2YMEF79+7VZ599Jklq1qyZ3njjDe3Zs0e1a9eWJG3YsEGurq7asGGDnnzySatNku66664cx7xnzx41adJE5cuX13PPPafixYvr448/VseOHfXJJ5/o/vvvlyQlJCTo7rvv1vnz561+c+fOzXb7OnLkSE2ePFn33nuvoqOj9cMPPyg6Olpnz5516pfbz0J29u/frwcffFADBgxQr169NG/ePHXp0kUrVqxQq1atJEm//fabli5dqi5duigsLEyJiYl6++231bx5c/34448KCQmRdOFSpCeffFKdO3fWkCFDdPbsWe3cuVObN29W9+7dJeV+m3KpTZs26bbbbrtiXQ553WdkZGSoffv2Wr16tbp166YhQ4boxIkTio2N1e7du1WlSpVc779y40rv9Q8++ED9+vXTHXfcof79+0tSljB9seuxD7zcGOzu8y71zz//qFWrVkpOTta6detUpUoVZWZm6r777tO3336r/v37q0aNGtq1a5feeOMN/fzzz1lOldtZ5wMGDNCSJUs0ePBg1axZU0ePHtW3336rvXv3Or2/atasKW9vb23cuNH6LNticmHevHlGktm6dWuOffz8/EyDBg2sxy+99JK5eDFvvPGGkWT+/vvvHOexdetWI8nMmzcvy7TmzZsbSWbOnDnZTmvevLn1eO3atUaSKV++vElNTbXaP/74YyPJTJ8+3WoLDQ01vXr1uuI8Lze2Xr16mdDQUOvx0qVLjSTz8ssvO/Xr3LmzcXFxMb/88ovVJsl4eHg4tf3www9Gkpk5c2aWZV1s2rRpRpL58MMPrbZz586ZiIgIU6JECafaQ0NDTbt27S47P2OMiY+PN5LMwIEDndq7d+9uJJmXXnrJauvYsaPx8PAwv/76q9X2559/mpIlS5q77rrLahs9erSRZD799NMsy8vMzDTG/N977MCBA07THety7dq1VpvjvbBw4UKrbd++fUaScXV1Nd99953VvnLlyizrrW/fvqZcuXLmn3/+cVpWt27djJ+fnzl9+rTTsmvUqGHS0tKsftOnTzeSzK5du6y2du3aOb0HruTS99348eNN8eLFzc8//+zU77nnnjPFihUzhw8fNsYYc+DAASPJlC5d2iQnJ1v9Pv/8cyPJfPHFF1ZbnTp1TIUKFcyJEyestm+++cZIchrr33//nWXdOvTq1ctIMuPGjXNqb9CggQkPD7ceDxkyxPj6+prz58/bfg0cLl22Y9vRp08fp37333+/KV269BXnl9O6sLs+MzMzzS233GKio6Ot96cxxpw+fdqEhYWZVq1aXXb5juUsXrzYnDhxwjRv3tyUKVPG7Nixw6mf3Todn8l+/fo59XvmmWeMJLNmzRpjjDFJSUlGknnrrbeMMcakpKQYV1dX06VLFxMUFGQ978knnzQBAQFWbY731MWfkZYtW5o6deqYs2fPWm2ZmZnmzjvvNLfccovVNnToUCPJbN682WpLSkoyfn5+Tp/nhIQE4+bmZjp27OhUw5gxY4ykPH0WchIaGmokmU8++cRqO378uClXrpzTPurs2bMmIyPD6bkHDhwwnp6eTu/3Dh06mFq1al12mXa3KdlJT083Li4u5umnn84y7dL9qDFXt8949913jSQzderULNMc7we7+6/s3jcXjzGvn+nixYtnu0/OzvXYB15uDHb3eRdnpr/++svUqlXL/Otf/zIHDx60+nzwwQfG1dXVbNiwwWkZc+bMMZLMxo0brTa769zPz88MGjTIVo233nqradOmja2+Dtf8djwlSpS47LerHdcWfP7557k63XAxT09P9e7d23b/nj17WkeZJKlz584qV66cvvrqqzwt366vvvpKxYoVs/7Cd3j66adljNHXX3/t1B4ZGen0V1XdunXl6+ur33777YrLCQ4O1kMPPWS1ubu768knn9TJkye1bt26PI1dUpaxX/oXc0ZGhmJiYtSxY0f961//strLlSun7t2769tvv1Vqaqok6ZNPPlG9evWy/csmr7eaKFGihNO3D6tVqyZ/f3/VqFHD6a8+x/8dr6UxRp988onuvfdeGWP0zz//WP+io6N1/PjxLIf1e/fu7XQNreOI85XWT24sXrxYzZo1U6lSpZzGFBkZqYyMDK1fv96p/4MPPqhSpUrlOKY///xTu3btUs+ePZ2OuDVv3lx16tTJ9fgGDBjg9LhZs2ZO9fv7++fp1Edul3n06FHrfZVXV1qf8fHx2r9/v7p3766jR49a6+LUqVNq2bKl1q9fb2sbdvz4cUVFRWnfvn365ptvVL9+/Wz7XalOx2dy2LBhTv0cR06WL18u6cIRlOrVq1vvlY0bN6pYsWIaPny4EhMTtX//fkkXjjg2bdo0x89ecnKy1qxZo65du+rEiRNW/UePHlV0dLT279+vI0eOWGNr3Lix0xHYsmXLqkePHk7zXL16tc6fP6+BAwc6tTu+ZHmx3H4WshMSEuK0vfH19VXPnj21Y8cOJSQkSLqwP3F1vbArzMjI0NGjR61LqC7eBvj7++uPP/7I9lIQKW/blIslJyfLGOP0eb6SvO4zPvnkE5UpUybb193xfsjt/is3rvVn+nrsA3OSm32ewx9//KHmzZsrPT1d69evV2hoqDVt8eLFqlGjhqpXr+70nrnnnnskSWvXrnWal5117u/vr82bN+vPP/+8Yj2Oz1duXPMr0R33oMrJgw8+qHfeeUf9+vXTc889p5YtW+qBBx5Q586drQ/vlZQvXz5XX4K55ZZbnB67uLioatWq1/3eYocOHVJISIhTaJUunPJ2TL9YpUqVssyjVKlSOnbs2BWXc8stt2R5/XJajt2xu7q6Zjk9UK1aNafHf//9t06fPp2l3bH8zMxM/f7776pVq5Z+/fVXderUKddjuZwKFSpk2fH5+fmpYsWKWdokWa/l33//rZSUFM2dO1dz587Ndt5JSUlOjy9dP44N/JXWT27s379fO3fuzPH0SW7H5Fj3VatWzTKvqlWrXnZHdikvL68s47r0/Tlw4EB9/PHHatOmjcqXL6+oqCh17dpVrVu3tr2cS12uRl9f3+syX0lWwOrVq1eO8zh+/PgVd/RDhw7V2bNntWPHDtWqVStP4/H19bU+k5euy+DgYPn7+zt9zps1a2YFzQ0bNqhhw4Zq2LChAgICtGHDBgUFBemHH36wTrFm55dffpExRqNGjdKoUaOy7ZOUlKTy5cvr0KFD2Z6eu3S7kNP7MSAgIMvrmNvPQnaqVq2aZftw6623SrpwbV5wcLAyMzM1ffp0vfXWWzpw4IDTNbsXn+599tlntWrVKt1xxx2qWrWqoqKi1L17dzVp0kRS3rYp2TGXXP9+OXndZ/z666+qVq3aZb+Mltv9V25c68/09dgH5iQ3+zyHRx55RG5ubtq7d6+Cg4OdnrN//37t3bs3z9t8Kes6nzx5snr16qWKFSsqPDxcbdu2Vc+ePZ2CroMxJtcHbq5pcPzjjz90/PjxbHdSDt7e3lq/fr3Wrl2r5cuXa8WKFfroo490zz33KCYmxukWBJebx7WW0wuXkZFha0zXQk7Lyc2G5GZ3ufWQnZxesyu9lo4jRQ8//HCOweDi6/vszPNayMzMVKtWrTRixIhspzt2ejdyTFda1sUCAwMVHx+vlStX6uuvv9bXX3+tefPmqWfPnk4Xql+L5V5tjXbfI1OmTMnxKKGda1g7dOigRYsWaeLEiXr//fdz/APZbp12NvJNmzbVf/7zH/3222/asGGDmjVrJhcXFzVt2lQbNmxQSEiIMjMzraOs2XHU/8wzzyg6OjrbPpfb1l+t3H4W8urVV1/VqFGj1KdPH40fP14BAQFydXXV0KFDnY4o16hRQz/99JO+/PJLrVixQp988oneeustjR49WmPHjs3TNuViAQEBcnFxydUfogVhn5HbbbZUMMZ9Iz3wwAN6//33NX36dE2YMMFpWmZmpurUqaOpU6dm+9xLD4LYee26du2qZs2a6bPPPlNMTIymTJmiSZMm6dNPP1WbNm2cnnfs2LEsB9eu5JoGxw8++ECSctzIOLi6uqply5Zq2bKlpk6dqldffVUvvPCC1q5dq8jIyGt+h3zHkQMHY4x++eUXpw9xqVKllJKSkuW5hw4dckrpuRlbaGioVq1apRMnTjj91bZv3z5r+rUQGhqqnTt3KjMz02mndDXLCQ0NVWZmpvWXqcOl96ksW7asfHx8sr1/5b59++Tq6mq98atUqaLdu3dfdrmOvzwvXRfX8i9GSdY3xTMyMhQZGXnN5nu1790qVaro5MmT12xMjnWf3beFL227Vp87Dw8P3Xvvvbr33nuVmZmpgQMH6u2339aoUaOua9C41LVYF9KF05tXsz46duyoqKgoPfrooypZsuQVv8WcE8dncv/+/daRFOnCFzJSUlKcPueOQBgbG6utW7fqueeek3ThizCzZ89WSEiIihcvftl72Dm2e+7u7lesPzQ0NMt2Vsq6vbj4/RgWFma1Hz16NEtguhafBcdR04vfCz///LMkWd+yX7Jkie6++27997//dXpuSkpKli/sFS9eXA8++KAefPBBnTt3Tg888IBeeeUVjRw58qq3KW5ubqpSpYoOHDiQ6+fmVpUqVbR582alp6dbX6K7lN391/XaZud2X3ut94E5jSE3+zyHJ554QlWrVtXo0aPl5+dnfR6lC+vihx9+UMuWLa9p9ilXrpwGDhyogQMHKikpSbfddpteeeUVp+B4/vx5/f7777rvvvtyNe9rdo3jmjVrNH78eIWFhWW5ruViycnJWdocf807vnpevHhxSVnfiHn1/vvvO113uWTJEv31119OL2CVKlX03Xff6dy5c1bbl19+meW2PbkZW9u2bZWRkaFZs2Y5tb/xxhtycXHJkvzzqm3btkpISNBHH31ktZ0/f14zZ85UiRIl1Lx581zP0zG2i2/fISnLNxmLFSumqKgoff75506n/hMTE7Vw4UI1bdrUOvXQqVMn/fDDD9a3Py/m+GvJsbO++PqljIyMHE/95FWxYsXUqVMnffLJJ9mG2b///jtP8y1evLiOHz+e53F17dpVcXFxWrlyZZZpKSkpOn/+fK7mFxISotq1a+v99993ulfXunXrtGvXLqe+Pj4+1nLy6ujRo06PXV1drT/QLr21xPV2tesiPDxcVapU0WuvvZbtfc5y8x7p2bOnZsyYoTlz5ujZZ5/N03jatm0rKetn0HGk4uI7HoSFhal8+fJ64403lJ6ebp1ObdasmX799VctWbJEjRs3vuypysDAQLVo0UJvv/22/vrrryzTL66/bdu2+u6777Rlyxan6Rf/bJ4ktWzZUm5ublnC86XbSOnafBb+/PNPp+1Namqq3n//fdWvX986ZVisWLEsR7oWL15sXb/pcOl728PDQzVr1pQxRunp6ddkmxIREXFDfp6uU6dO+ueff7J93R2vhd39l6+vr8qUKZPlmtO33nrrqsZYvHhx29ui67EPzGkMudnnXWzUqFF65plnNHLkSKf3f9euXXXkyBH95z//yfKcM2fO6NSpU7kac0ZGRpbtXmBgoEJCQrJsg3/88UedPXs2xzvD5CRPRxy//vpr7du3T+fPn1diYqLWrFmj2NhYhYaGatmyZZe9Uem4ceO0fv16tWvXTqGhoUpKStJbb72lChUqqGnTppIuhAd/f3/NmTNHJUuWVPHixdWoUSOnv1BzIyAgQE2bNlXv3r2VmJioadOmqWrVqk63DOrXr5+WLFmi1q1bq2vXrvr111/14YcfZrnGLzdju/fee3X33XfrhRde0MGDB1WvXj3FxMTo888/19ChQy97e4Hc6N+/v95++209+uij2r59uypXrqwlS5Zo48aNmjZtWpZrVOyoX7++HnroIb311ls6fvy47rzzTq1evTrbI1cvv/yydW/OgQMHys3NTW+//bbS0tI0efJkq9/w4cO1ZMkSdenSRX369FF4eLiSk5O1bNkyzZkzR/Xq1VOtWrXUuHFjjRw5UsnJyQoICNCiRYtyHZjsmDhxotauXatGjRrpscceU82aNZWcnKzvv/9eq1atyvaPnCsJDw/XRx99pGHDhun2229XiRIldO+999p+/vDhw7Vs2TK1b99ejz76qMLDw3Xq1Cnt2rVLS5Ys0cGDB3N926JXX31VHTp0UJMmTdS7d28dO3ZMs2bNUu3atZ0Ckbe3t2rWrKmPPvpIt956qwICAlS7dm3rli529OvXT8nJybrnnntUoUIFHTp0SDNnzlT9+vWdjpLdCFe7LlxdXfXOO++oTZs2qlWrlnr37q3y5cvryJEjWrt2rXx9ffXFF1/Ynt/gwYOVmpqqF154QX5+ftb9Z+2qV6+eevXqpblz5yolJUXNmzfXli1b9N5776ljx466++67nfo3a9ZMixYtUp06dayjQrfddpuKFy+un3/++bLXNzq8+eabatq0qerUqaPHHntM//rXv5SYmKi4uDj98ccf1r0OR4wYoQ8++ECtW7fWkCFDrNvxOI4EOQQFBWnIkCF6/fXXdd9996l169b64Ycf9PXXX6tMmTJOR1yuxWfh1ltvVd++fbV161YFBQXp3XffVWJioubNm2f1ad++vcaNG6fevXvrzjvv1K5du7RgwYIs14NFRUUpODhYTZo0UVBQkPbu3atZs2apXbt21jb2arcpHTp00AcffKCff/75mp2Kz07Pnj31/vvva9iwYdqyZYuaNWumU6dOadWqVRo4cKA6dOiQq/1Xv379NHHiRPXr108NGzbU+vXrrSO7eRUeHq5Vq1Zp6tSpCgkJUVhYWI63ubke+8DLjcHuPu9SU6ZM0fHjxzVo0CCVLFlSDz/8sB555BF9/PHHGjBggNauXasmTZooIyND+/bt08cff6yVK1eqYcOGtsd84sQJVahQQZ07d1a9evVUokQJrVq1Slu3bs3yKzGxsbHy8fGxbk1lW26+gu34arnjn4eHhwkODjatWrUy06dPd/rKu8OltxFYvXq16dChgwkJCTEeHh4mJCTEPPTQQ1luufD555+bmjVrGjc3N6ev+jdv3jzHWyLkdDue//3vf2bkyJEmMDDQeHt7m3bt2plDhw5lef7rr79uypcvbzw9PU2TJk3Mtm3bsszzcmO79HY8xhhz4sQJ89RTT5mQkBDj7u5ubrnlFjNlyhSn23sYc+Fr9tl9fT6n2wRdKjEx0fTu3duUKVPGeHh4mDp16mR7e4Tc3IrgzJkz5sknnzSlS5c2xYsXN/fee6/5/fffs71ly/fff2+io6NNiRIljI+Pj7n77rvNpk2bsszz6NGjZvDgwaZ8+fLGw8PDVKhQwfTq1cvp9hW//vqriYyMNJ6eniYoKMg8//zzJjY2Ntvb8WT3Xsipxuxe48TERDNo0CBTsWJF4+7uboKDg03Lli3N3LlzrT4X31blYtndhuLkyZOme/fuxt/fP8vtbrKT3fo9ceKEGTlypKlatarx8PAwZcqUMXfeead57bXXzLlz55yWPWXKlGzrvHT9LFq0yFSvXt14enqa2rVrm2XLlplOnTqZ6tWrO/XbtGmTCQ8PNx4eHk7z6dWrlylevHiWZV36+V6yZImJiooygYGBxsPDw1SqVMn8+9//Nn/99ddlX4fsxu2Y96W37srplk2Xymld5GZ9GmPMjh07zAMPPGBKly5tPD09TWhoqOnatatZvXr1ZZef03JGjBhhJJlZs2blus709HQzduxYExYWZtzd3U3FihXNyJEjnW6X4/Dmm28aSebxxx93ao+MjDSSsow/p/p//fVX07NnTxMcHGzc3d1N+fLlTfv27c2SJUuc+u3cudM0b97ceHl5mfLly5vx48eb//73v1lqOH/+vBk1apQJDg423t7e5p577jF79+41pUuXNgMGDHCap53PQk4c24GVK1eaunXrGk9PT1O9evUs6+Ps2bPm6aefNuXKlTPe3t6mSZMmJi4uLsu2/+233zZ33XWX9T6oUqWKGT58uDl+/LjT/OxsU3KSlpZmypQpY8aPH+/UntPteK5mn3H69GnzwgsvWO+l4OBg07lzZ6dbzNjdf50+fdr07dvX+Pn5mZIlS5quXbtat4XK62d637595q677jLe3t5ZbtWUneuxD7zcGOzs87K7hWFGRoZ56KGHjJubm1m6dKkx5sKtgyZNmmRq1aplPD09TalSpUx4eLgZO3as0/vLzjpPS0szw4cPN/Xq1TMlS5Y0xYsXN/Xq1bNuz3WxRo0amYcfftjWa3Exl/8/GABFTP369VW2bNlreuscIC9SUlJUqlQpvfzyy3rhhRfyezj5avz48Zo3b572799/w76YiaInPj5et912m77//vscv/yXk2t+H0cABUt6enqWU/3ffPONfvjhh2x/ohO4ns6cOZOlzXHdJu9H6amnntLJkye1aNGi/B4KCrGJEyeqc+fOuQ6NksQRR6CQO3jwoCIjI/Xwww8rJCRE+/bt05w5c+Tn56fdu3df9qfJgGtt/vz5mj9/vtq2basSJUro22+/1f/+9z9FRUVl+0UYAAXLNb8BOICCpVSpUgoPD9c777yjv//+W8WLF1e7du00ceJEQiNuuLp168rNzU2TJ09Wamqq9YWZl19+Ob+HBsAGjjgCAADAFq5xBAAAgC0ERwAAANjCNY55lJmZqT///FMlS5a85j+RCAAArg9jjE6cOKGQkJAcfzseOSM45tGff/6Z5fcoAQDAzeH3339XhQoV8nsYN50bGhzXr1+vKVOmaPv27frrr7/02WefqWPHjpIu3GvuxRdf1FdffaXffvtNfn5+ioyM1MSJExUSEmLNIzk5WU888YS++OILubq6qlOnTpo+fbpKlChh9dm5c6cGDRqkrVu3qmzZsnriiSc0YsQIp7EsXrxYo0aN0sGDB3XLLbdo0qRJ1m/B2uH4CaPff/8929+ltCM9PV0xMTGKiorK8YfmCxtqpubCipqLRs1S0ay7MNWcmpqqihUr5vmnCIu6GxocT506pXr16qlPnz564IEHnKadPn1a33//vUaNGqV69erp2LFjGjJkiO677z6nH33v0aOH/vrrL8XGxio9PV29e/dW//79tXDhQkkX3hBRUVGKjIzUnDlztGvXLvXp00f+/v7q37+/JGnTpk166KGHNGHCBLVv314LFy5Ux44d9f3339v+XV7H6WlfX9+rCo4+Pj7y9fW96T+IdlEzNRdW1Fw0apaKZt2FsWYuM8ubGxoc27RpozZt2mQ7zc/PL8tPn82aNUt33HGHDh8+rEqVKmnv3r1asWKFtm7dav3o98yZM9W2bVu99tprCgkJ0YIFC3Tu3Dm9++678vDwUK1atRQfH6+pU6dawXH69Olq3bq1hg8fLunCTzzFxsZq1qxZmjNnznV8BQAAAG5eBfoax+PHj8vFxUX+/v6SpLi4OPn7+1uhUZIiIyPl6uqqzZs36/7771dcXJzuuusueXh4WH2io6M1adIkHTt2TKVKlVJcXJyGDRvmtKzo6GgtXbo0x7GkpaUpLS3Nepyamirpwl9h6enpearP8by8Pv9mRM1FAzUXDUWxZqlo1l2Yai4MNeSnAhscz549q2effVYPPfSQdSo4ISFBgYGBTv3c3NwUEBCghIQEq09YWJhTn6CgIGtaqVKllJCQYLVd3Mcxj+xMmDBBY8eOzdIeExMjHx+f3Bd4kUuPtBYF1Fw0UHPRUBRrlopm3YWh5tOnT+f3EG5qBTI4pqenq2vXrjLGaPbs2fk9HEnSyJEjnY5SOi6ujYqKuqprHGNjY9WqVatCc83IlVAzNRdW1Fw0apaKZt2FqWbHGUPkTYELjo7QeOjQIa1Zs8YplAUHByspKcmp//nz55WcnKzg4GCrT2JiolMfx+Mr9XFMz46np6c8PT2ztLu7u1/1h+hazONmQ81FAzUXDUWxZqlo1l0Yar7Zx5/fCtSdLx2hcf/+/Vq1apVKly7tND0iIkIpKSnavn271bZmzRplZmaqUaNGVp/169c7XcMQGxuratWqqVSpUlaf1atXO807NjZWERER16s0AACAm94NDY4nT55UfHy84uPjJUkHDhxQfHy8Dh8+rPT0dHXu3Fnbtm3TggULlJGRoYSEBCUkJOjcuXOSpBo1aqh169Z67LHHtGXLFm3cuFGDBw9Wt27drHs9du/eXR4eHurbt6/27Nmjjz76SNOnT3c6zTxkyBCtWLFCr7/+uvbt26cxY8Zo27ZtGjx48I18OQAAAG4qNzQ4btu2TQ0aNFCDBg0kScOGDVODBg00evRoHTlyRMuWLdMff/yh+vXrq1y5cta/TZs2WfNYsGCBqlevrpYtW6pt27Zq2rSp5s6da0338/NTTEyMDhw4oPDwcD399NMaPXq0dSseSbrzzju1cOFCzZ07V/Xq1dOSJUu0dOlS2/dwBAAAKIpu6DWOLVq0kDEmx+mXm+YQEBBg3ew7J3Xr1tWGDRsu26dLly7q0qXLFZcHAACACwrUNY4AAAAouAiOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCtwvx+CCys8tz+8h5NrBie3yewgAAOA64ogjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwJYbGhzXr1+ve++9VyEhIXJxcdHSpUudphtjNHr0aJUrV07e3t6KjIzU/v37nfokJyerR48e8vX1lb+/v/r27auTJ0869dm5c6eaNWsmLy8vVaxYUZMnT84ylsWLF6t69ery8vJSnTp19NVXX13zegEAAAqTGxocT506pXr16unNN9/MdvrkyZM1Y8YMzZkzR5s3b1bx4sUVHR2ts2fPWn169OihPXv2KDY2Vl9++aXWr1+v/v37W9NTU1MVFRWl0NBQbd++XVOmTNGYMWM0d+5cq8+mTZv00EMPqW/fvtqxY4c6duyojh07avfu3deveAAAgJuc241cWJs2bdSmTZtspxljNG3aNL344ovq0KGDJOn9999XUFCQli5dqm7dumnv3r1asWKFtm7dqoYNG0qSZs6cqbZt2+q1115TSEiIFixYoHPnzundd9+Vh4eHatWqpfj4eE2dOtUKmNOnT1fr1q01fPhwSdL48eMVGxurWbNmac6cOTfglQAAALj53NDgeDkHDhxQQkKCIiMjrTY/Pz81atRIcXFx6tatm+Li4uTv72+FRkmKjIyUq6urNm/erPvvv19xcXG666675OHhYfWJjo7WpEmTdOzYMZUqVUpxcXEaNmyY0/Kjo6OznDq/WFpamtLS0qzHqampkqT09HSlp6fnqWbH87J7vmcxk6d55ic7r8Plai6sqLlooOaioyjWXZhqLgw15KcCExwTEhIkSUFBQU7tQUFB1rSEhAQFBgY6TXdzc1NAQIBTn7CwsCzzcEwrVaqUEhISLruc7EyYMEFjx47N0h4TEyMfHx87JeYoNjY2S9vkO65qlvkiN9eJZldzYUfNRQM1Fx1Fse7CUPPp06fzewg3tQITHAu6kSNHOh2lTE1NVcWKFRUVFSVfX988zTM9PV2xsbFq1aqV3N3dnabVHrPyqsabH3aPib5in8vVXFhRMzUXVkWxZqlo1l2YanacMUTeFJjgGBwcLElKTExUuXLlrPbExETVr1/f6pOUlOT0vPPnzys5Odl6fnBwsBITE536OB5fqY9jenY8PT3l6emZpd3d3f2qP0TZzSMtw+Wq5pkfcvM6XIvX7WZDzUUDNRcdRbHuwlDzzT7+/FZg7uMYFham4OBgrV692mpLTU3V5s2bFRERIUmKiIhQSkqKtm/fbvVZs2aNMjMz1ahRI6vP+vXrna5hiI2NVbVq1VSqVCmrz8XLcfRxLAcAAABZ3dDgePLkScXHxys+Pl7ShS/ExMfH6/Dhw3JxcdHQoUP18ssva9myZdq1a5d69uypkJAQdezYUZJUo0YNtW7dWo899pi2bNmijRs3avDgwerWrZtCQkIkSd27d5eHh4f69u2rPXv26KOPPtL06dOdTjMPGTJEK1as0Ouvv659+/ZpzJgx2rZtmwYPHnwjXw4AAICbyg09Vb1t2zbdfffd1mNHmOvVq5fmz5+vESNG6NSpU+rfv79SUlLUtGlTrVixQl5eXtZzFixYoMGDB6tly5ZydXVVp06dNGPGDGu6n5+fYmJiNGjQIIWHh6tMmTIaPXq0070e77zzTi1cuFAvvviinn/+ed1yyy1aunSpateufQNeBQAAgJvTDQ2OLVq0kDE532bGxcVF48aN07hx43LsExAQoIULF152OXXr1tWGDRsu26dLly7q0qXL5QcMAAAAS4G5xhEAAAAFG8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthSo4JiRkaFRo0YpLCxM3t7eqlKlisaPHy9jjNXHGKPRo0erXLly8vb2VmRkpPbv3+80n+TkZPXo0UO+vr7y9/dX3759dfLkSac+O3fuVLNmzeTl5aWKFStq8uTJN6RGAACAm1WBCo6TJk3S7NmzNWvWLO3du1eTJk3S5MmTNXPmTKvP5MmTNWPGDM2ZM0ebN29W8eLFFR0drbNnz1p9evTooT179ig2NlZffvml1q9fr/79+1vTU1NTFRUVpdDQUG3fvl1TpkzRmDFjNHfu3BtaLwAAwM3ELb8HcLFNmzapQ4cOateunSSpcuXK+t///qctW7ZIunC0cdq0aXrxxRfVoUMHSdL777+voKAgLV26VN26ddPevXu1YsUKbd26VQ0bNpQkzZw5U23bttVrr72mkJAQLViwQOfOndO7774rDw8P1apVS/Hx8Zo6dapTwLxYWlqa0tLSrMepqamSpPT0dKWnp+epXsfzsnu+ZzGTpa2gs/M6XK7mwoqaiwZqLjqKYt2FqebCUEN+cjEXnwfOZ6+++qrmzp2rmJgY3Xrrrfrhhx8UFRWlqVOnqkePHvrtt99UpUoV7dixQ/Xr17ee17x5c9WvX1/Tp0/Xu+++q6efflrHjh2zpp8/f15eXl5avHix7r//fvXs2VOpqalaunSp1Wft2rW65557lJycrFKlSmUZ25gxYzR27Ngs7QsXLpSPj881fR0AAMD1cfr0aXXv3l3Hjx+Xr69vfg/nplOgjjg+99xzSk1NVfXq1VWsWDFlZGTolVdeUY8ePSRJCQkJkqSgoCCn5wUFBVnTEhISFBgY6DTdzc1NAQEBTn3CwsKyzMMxLbvgOHLkSA0bNsx6nJqaqooVKyoqKirPb7z09HTFxsaqVatWcnd3d5pWe8zKPM0zP+0eE33FPperubCiZmourIpizVLRrLsw1ew4Y4i8KVDB8eOPP9aCBQu0cOFC6/Tx0KFDFRISol69euXr2Dw9PeXp6Zml3d3d/ao/RNnNIy3D5armmR9y8zpci9ftZkPNRQM1Fx1Fse7CUPPNPv78VqCC4/Dhw/Xcc8+pW7dukqQ6dero0KFDmjBhgnr16qXg4GBJUmJiosqVK2c9LzEx0Tp1HRwcrKSkJKf5nj9/XsnJydbzg4ODlZiY6NTH8djRBwAAAM4K1LeqT58+LVdX5yEVK1ZMmZmZkqSwsDAFBwdr9erV1vTU1FRt3rxZERERkqSIiAilpKRo+/btVp81a9YoMzNTjRo1svqsX7/e6QLZ2NhYVatWLdvT1AAAAChgwfHee+/VK6+8ouXLl+vgwYP67LPPNHXqVN1///2SJBcXFw0dOlQvv/yyli1bpl27dqlnz54KCQlRx44dJUk1atRQ69at9dhjj2nLli3auHGjBg8erG7duikkJESS1L17d3l4eKhv377as2ePPvroI02fPt3pGkYAAAA4K1CnqmfOnKlRo0Zp4MCBSkpKUkhIiP79739r9OjRVp8RI0bo1KlT6t+/v1JSUtS0aVOtWLFCXl5eVp8FCxZo8ODBatmypVxdXdWpUyfNmDHDmu7n56eYmBgNGjRI4eHhKlOmjEaPHp3jrXgAAABQwIJjyZIlNW3aNE2bNi3HPi4uLho3bpzGjRuXY5+AgAAtXLjwssuqW7euNmzYkNehAgAAFDkF6lQ1AAAACi6CIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwBaCIwAAAGwhOAIAAMAWgiMAAABsITgCAADAFoIjAAAAbCE4AgAAwJYCFxyPHDmihx9+WKVLl5a3t7fq1Kmjbdu2WdONMRo9erTKlSsnb29vRUZGav/+/U7zSE5OVo8ePeTr6yt/f3/17dtXJ0+edOqzc+dONWvWTF5eXqpYsaImT558Q+oDAAC4WRWo4Hjs2DE1adJE7u7u+vrrr/Xjjz/q9ddfV6lSpaw+kydP1owZMzRnzhxt3rxZxYsXV3R0tM6ePWv16dGjh/bs2aPY2Fh9+eWXWr9+vfr3729NT01NVVRUlEJDQ7V9+3ZNmTJFY8aM0dy5c29ovQAAADcTt/wewMUmTZqkihUrat68eVZbWFiY9X9jjKZNm6YXX3xRHTp0kCS9//77CgoK0tKlS9WtWzft3btXK1as0NatW9WwYUNJ0syZM9W2bVu99tprCgkJ0YIFC3Tu3Dm9++678vDwUK1atRQfH6+pU6c6BUwAAAD8nwIVHJctW6bo6Gh16dJF69atU/ny5TVw4EA99thjkqQDBw4oISFBkZGR1nP8/PzUqFEjxcXFqVu3boqLi5O/v78VGiUpMjJSrq6u2rx5s+6//37FxcXprrvukoeHh9UnOjpakyZN0rFjx5yOcDqkpaUpLS3NepyamipJSk9PV3p6ep7qdTwvu+d7FjN5mmd+svM6XK7mwoqaiwZqLjqKYt2FqebCUEN+KlDB8bffftPs2bM1bNgwPf/889q6dauefPJJeXh4qFevXkpISJAkBQUFOT0vKCjImpaQkKDAwECn6W5ubgoICHDqc/GRzIvnmZCQkG1wnDBhgsaOHZulPSYmRj4+Pnms+ILY2NgsbZPvuKpZ5ouvvvrKdt/sai7sqLlooOaioyjWXRhqPn36dH4P4aZWoIJjZmamGjZsqFdffVWS1KBBA+3evVtz5sxRr1698nVsI0eO1LBhw6zHqampqlixoqKiouTr65uneaanpys2NlatWrWSu7u707TaY1Ze1Xjzw+4x0Vfsc7maCytqpubCqijWLBXNugtTzY4zhsibAhUcy5Urp5o1azq11ahRQ5988okkKTg4WJKUmJiocuXKWX0SExNVv359q09SUpLTPM6fP6/k5GTr+cHBwUpMTHTq43js6HMpT09PeXp6Zml3d3e/6g9RdvNIy3C5qnnmh9y8DtfidbvZUHPRQM1FR1GsuzDUfLOPP78VqG9VN2nSRD/99JNT288//6zQ0FBJF74oExwcrNWrV1vTU1NTtXnzZkVEREiSIiIilJKSou3bt1t91qxZo8zMTDVq1Mjqs379eqfrHGJjY1WtWrVsT1MDAACggAXHp556St99951effVV/fLLL1q4cKHmzp2rQYMGSZJcXFw0dOhQvfzyy1q2bJl27dqlnj17KiQkRB07dpR04Qhl69at9dhjj2nLli3auHGjBg8erG7duikkJESS1L17d3l4eKhv377as2ePPvroI02fPt3pVDQAAACcFahT1bfffrs+++wzjRw5UuPGjVNYWJimTZumHj16WH1GjBihU6dOqX///kpJSVHTpk21YsUKeXl5WX0WLFigwYMHq2XLlnJ1dVWnTp00Y8YMa7qfn59iYmI0aNAghYeHq0yZMho9ejS34gEAALiMAhUcJal9+/Zq3759jtNdXFw0btw4jRs3Lsc+AQEBWrhw4WWXU7duXW3YsCHP4wQAAChqCtSpagAAABRcBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYUqCD48SJE+Xi4qKhQ4dabWfPntWgQYNUunRplShRQp06dVJiYqLT8w4fPqx27drJx8dHgYGBGj58uM6fP+/U55tvvtFtt90mT09PVa1aVfPnz78BFQEAANy8Cmxw3Lp1q95++23VrVvXqf2pp57SF198ocWLF2vdunX6888/9cADD1jTMzIy1K5dO507d06bNm3Se++9p/nz52v06NFWnwMHDqhdu3a6++67FR8fr6FDh6pfv35auXLlDasPAADgZlMgg+PJkyfVo0cP/ec//1GpUqWs9uPHj+u///2vpk6dqnvuuUfh4eGaN2+eNm3apO+++06SFBMTox9//FEffvih6tevrzZt2mj8+PF68803de7cOUnSnDlzFBYWptdff101atTQ4MGD1blzZ73xxhv5Ui8AAMDNwC2/B5CdQYMGqV27doqMjNTLL79stW/fvl3p6emKjIy02qpXr65KlSopLi5OjRs3VlxcnOrUqaOgoCCrT3R0tB5//HHt2bNHDRo0UFxcnNM8HH0uPiV+qbS0NKWlpVmPU1NTJUnp6elKT0/PU52O52X3fM9iJk/zzE92XofL1VxYUXPRQM1FR1GsuzDVXBhqyE8FLjguWrRI33//vbZu3ZplWkJCgjw8POTv7+/UHhQUpISEBKvPxaHRMd0x7XJ9UlNTdebMGXl7e2dZ9oQJEzR27Ngs7TExMfLx8bFfYDZiY2OztE2+46pmmS+++uor232zq7mwo+aigZqLjqJYd2Go+fTp0/k9hJtagQqOv//+u4YMGaLY2Fh5eXnl93CcjBw5UsOGDbMep6amqmLFioqKipKvr2+e5pmenq7Y2Fi1atVK7u7uTtNqj7n5rrfcPSb6in0uV3NhRc3UXFgVxZqloll3YarZccYQeVOgguP27duVlJSk2267zWrLyMjQ+vXrNWvWLK1cuVLnzp1TSkqK01HHxMREBQcHS5KCg4O1ZcsWp/k6vnV9cZ9Lv4mdmJgoX1/fbI82SpKnp6c8PT2ztLu7u1/1hyi7eaRluFzVPPNDbl6Ha/G63WyouWig5qKjKNZdGGq+2cef3wrUl2NatmypXbt2KT4+3vrXsGFD9ejRw/q/u7u7Vq9ebT3np59+0uHDhxURESFJioiI0K5du5SUlGT1iY2Nla+vr2rWrGn1uXgejj6OeQAAACCrAnXEsWTJkqpdu7ZTW/HixVW6dGmrvW/fvho2bJgCAgLk6+urJ554QhEREWrcuLEkKSoqSjVr1tQjjzyiyZMnKyEhQS+++KIGDRpkHTEcMGCAZs2apREjRqhPnz5as2aNPv74Yy1fvvzGFgwAAHATKVDB0Y433nhDrq6u6tSpk9LS0hQdHa233nrLml6sWDF9+eWXevzxxxUREaHixYurV69eGjdunNUnLCxMy5cv11NPPaXp06erQoUKeueddxQdfeVr9AAAAIqqAh8cv/nmG6fHXl5eevPNN/Xmm2/m+JzQ0NArfsO3RYsW2rFjx7UYIgAAQJFQoK5xBAAAQMFFcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBEcAAADYQnAEAACALQRHAAAA2EJwBAAAgC0ERwAAANhCcAQAAIAtBSo4TpgwQbfffrtKliypwMBAdezYUT/99JNTn7Nnz2rQoEEqXbq0SpQooU6dOikxMdGpz+HDh9WuXTv5+PgoMDBQw4cP1/nz5536fPPNN7rtttvk6empqlWrav78+de7PAAAgJtagQqO69at06BBg/Tdd98pNjZW6enpioqK0qlTp6w+Tz31lL744gstXrxY69at059//qkHHnjAmp6RkaF27drp3Llz2rRpk9577z3Nnz9fo0ePtvocOHBA7dq109133634+HgNHTpU/fr108qVK29ovQAAADcTt/wewMVWrFjh9Hj+/PkKDAzU9u3bddddd+n48eP673//q4ULF+qee+6RJM2bN081atTQd999p8aNGysmJkY//vijVq1apaCgINWvX1/jx4/Xs88+qzFjxsjDw0Nz5sxRWFiYXn/9dUlSjRo19O233+qNN95QdHT0Da8bAADgZlCgguOljh8/LkkKCAiQJG3fvl3p6emKjIy0+lSvXl2VKlVSXFycGjdurLi4ONWpU0dBQUFWn+joaD3++OPas2ePGjRooLi4OKd5OPoMHTo0x7GkpaUpLS3NepyamipJSk9PV3p6ep7qczwvu+d7FjN5mmd+svM6XK7mwoqaiwZqLjqKYt2FqebCUEN+KrDBMTMzU0OHDlWTJk1Uu3ZtSVJCQoI8PDzk7+/v1DcoKEgJCQlWn4tDo2O6Y9rl+qSmpurMmTPy9vbOMp4JEyZo7NixWdpjYmLk4+OTtyL/v9jY2Cxtk++4qlnmi6+++sp23+xqLuyouWig5qKjKNZdGGo+ffp0fg/hplZgg+OgQYO0e/duffvtt/k9FEnSyJEjNWzYMOtxamqqKlasqKioKPn6+uZpnunp6YqNjVWrVq3k7u7uNK32mJvvesvdY658mv9yNRdW1EzNhVVRrFkqmnUXppodZwyRNwUyOA4ePFhffvml1q9frwoVKljtwcHBOnfunFJSUpyOOiYmJio4ONjqs2XLFqf5Ob51fXGfS7+JnZiYKF9f32yPNkqSp6enPD09s7S7u7tf9Ycou3mkZbhc1TzzQ25eh2vxut1sqLlooOaioyjWXRhqvtnHn98K1LeqjTEaPHiwPvvsM61Zs0ZhYWFO08PDw+Xu7q7Vq1dbbT/99JMOHz6siIgISVJERIR27dqlpKQkq09sbKx8fX1Vs2ZNq8/F83D0ccwDAAAAWRWoI46DBg3SwoUL9fnnn6tkyZLWNYl+fn7y9vaWn5+f+vbtq2HDhikgIEC+vr564oknFBERocaNG0uSoqKiVLNmTT3yyCOaPHmyEhIS9OKLL2rQoEHWEcMBAwZo1qxZGjFihPr06aM1a9bo448/1vLly/OtdgAAgIKuQB1xnD17to4fP64WLVqoXLly1r+PPvrI6vPGG2+offv26tSpk+666y4FBwfr008/taYXK1ZMX375pYoVK6aIiAg9/PDD6tmzp8aNG2f1CQsL0/LlyxUbG6t69erp9ddf1zvvvMOteAAAAC6jQB1xNObKt6Dx8vLSm2++qTfffDPHPqGhoVf8hm+LFi20Y8eOXI8RAACgqCpQRxwBAABQcBEcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwREAAAC2EBwBAABgC8ERAAAAthAcAQAAYAvBEQAAALYQHAEAAGCLW34PAIVH5eeWX7GPZzGjyXdItcesVFqGyw0Y1eUdnNguv4cAAMBNgyOOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACwheAIAAAAWwiOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACwheAIAAAAWwiOAAAAsIXgCAAAAFuKfHB88803VblyZXl5ealRo0basmVLfg8JAACgQCrSwfGjjz7SsGHD9NJLL+n7779XvXr1FB0draSkpPweGgAAQIFTpIPj1KlT9dhjj6l3796qWbOm5syZIx8fH7377rv5PTQAAIACxy2/B5Bfzp07p+3bt2vkyJFWm6urqyIjIxUXF5elf1pamtLS0qzHx48flyQlJycrPT09T2NIT0/X6dOndfToUbm7uztNczt/Kk/zLOjcMo1On86UW7qrMjJd8ns4qvrMx9d9GZ6uRi82yFT9Fz5V2jWoefPIltdgVNfX5d7bhRU1F42apaJZd2Gq+cSJE5IkY0w+j+TmVGSD4z///KOMjAwFBQU5tQcFBWnfvn1Z+k+YMEFjx47N0h4WFnbdxlhYdc/vAeSDa1lzmdev4cwAoIg6ceKE/Pz88nsYN50iGxxza+TIkRo2bJj1ODMzU8nJySpdurRcXPJ2FCk1NVUVK1bU77//Ll9f32s11AKNmqm5sKLmolGzVDTrLkw1G2N04sQJhYSE5PdQbkpFNjiWKVNGxYoVU2JiolN7YmKigoODs/T39PSUp6enU5u/v/81GYuvr+9N/0HMLWouGqi5aCiKNUtFs+7CUjNHGvOuyH45xsPDQ+Hh4Vq9erXVlpmZqdWrVysiIiIfRwYAAFAwFdkjjpI0bNgw9erVSw0bNtQdd9yhadOm6dSpU+rdu3d+Dw0AAKDAKdLB8cEHH9Tff/+t0aNHKyEhQfXr19eKFSuyfGHmevH09NRLL72U5RR4YUbNRQM1Fw1FsWapaNZdFGtG9lwM30cHAACADUX2GkcAAADkDsERAAAAthAcAQAAYAvBEQAAALYQHAEAAGALwTGfvPnmm6pcubK8vLzUqFEjbdmyJb+HlGfr16/Xvffeq5CQELm4uGjp0qVO040xGj16tMqVKydvb29FRkZq//79Tn2Sk5PVo0cP+fr6yt/fX3379tXJkydvYBW5M2HCBN1+++0qWbKkAgMD1bFjR/30009Ofc6ePatBgwapdOnSKlGihDp16pTll4oOHz6sdu3aycfHR4GBgRo+fLjOnz9/I0uxbfbs2apbt671yxERERH6+uuvremFrd7sTJw4US4uLho6dKjVVtjqHjNmjFxcXJz+Va9e3Zpe2Op1OHLkiB5++GGVLl1a3t7eqlOnjrZt22ZNL4zbscqVK2dZ1y4uLho0aJCkwruucZUMbrhFixYZDw8P8+6775o9e/aYxx57zPj7+5vExMT8HlqefPXVV+aFF14wn376qZFkPvvsM6fpEydONH5+fmbp0qXmhx9+MPfdd58JCwszZ86csfq0bt3a1KtXz3z33Xdmw4YNpmrVquahhx66wZXYFx0dbebNm2d2795t4uPjTdu2bU2lSpXMyZMnrT4DBgwwFStWNKtXrzbbtm0zjRs3Nnfeeac1/fz586Z27domMjLS7Nixw3z11VemTJkyZuTIkflR0hUtW7bMLF++3Pz888/mp59+Ms8//7xxd3c3u3fvNsYUvnovtWXLFlO5cmVTt25dM2TIEKu9sNX90ksvmVq1apm//vrL+vf3339b0wtbvcYYk5ycbEJDQ82jjz5qNm/ebH777TezcuVK88svv1h9CuN2LCkpyWk9x8bGGklm7dq1xpjCua5x9QiO+eCOO+4wgwYNsh5nZGSYkJAQM2HChHwc1bVxaXDMzMw0wcHBZsqUKVZbSkqK8fT0NP/73/+MMcb8+OOPRpLZunWr1efrr782Li4u5siRIzds7FcjKSnJSDLr1q0zxlyo0d3d3SxevNjqs3fvXiPJxMXFGWMuBG5XV1eTkJBg9Zk9e7bx9fU1aWlpN7aAPCpVqpR55513Cn29J06cMLfccouJjY01zZs3t4JjYaz7pZdeMvXq1ct2WmGs1xhjnn32WdO0adMcpxeV7diQIUNMlSpVTGZmZqFd17h6nKq+wc6dO6ft27crMjLSanN1dVVkZKTi4uLycWTXx4EDB5SQkOBUr5+fnxo1amTVGxcXJ39/fzVs2NDqExkZKVdXV23evPmGjzkvjh8/LkkKCAiQJG3fvl3p6elOdVevXl2VKlVyqrtOnTpOv1QUHR2t1NRU7dmz5waOPvcyMjK0aNEinTp1ShEREYW+3kGDBqldu3ZO9UmFdz3v379fISEh+te//qUePXro8OHDkgpvvcuWLVPDhg3VpUsXBQYGqkGDBvrPf/5jTS8K27Fz587pww8/VJ8+feTi4lJo1zWuHsHxBvvnn3+UkZGR5WcNg4KClJCQkE+jun4cNV2u3oSEBAUGBjpNd3NzU0BAwE3xmmRmZmro0KFq0qSJateuLelCTR4eHvL393fqe2nd2b0ujmkF0a5du1SiRAl5enpqwIAB+uyzz1SzZs1CW68kLVq0SN9//70mTJiQZVphrLtRo0aaP3++VqxYodmzZ+vAgQNq1qyZTpw4USjrlaTffvtNs2fP1i233KKVK1fq8ccf15NPPqn33ntPUtHYji1dulQpKSl69NFHJRXO9zaujSL9W9XAtTBo0CDt3r1b3377bX4P5bqrVq2a4uPjdfz4cS1ZskS9evXSunXr8ntY183vv/+uIUOGKDY2Vl5eXvk9nBuiTZs21v/r1q2rRo0aKTQ0VB9//LG8vb3zcWTXT2Zmpho2bKhXX31VktSgQQPt3r1bc+bMUa9evfJ5dDfGf//7X7Vp00YhISH5PRQUcBxxvMHKlCmjYsWKZflmWmJiooKDg/NpVNePo6bL1RscHKykpCSn6efPn1dycnKBf00GDx6sL7/8UmvXrlWFChWs9uDgYJ07d04pKSlO/S+tO7vXxTGtIPLw8FDVqlUVHh6uCRMmqF69epo+fXqhrXf79u1KSkrSbbfdJjc3N7m5uWndunWaMWOG3NzcFBQUVCjrvpi/v79uvfVW/fLLL4V2PZcrV041a9Z0aqtRo4Z1ir6wb8cOHTqkVatWqV+/flZbYV3XuHoExxvMw8ND4eHhWr16tdWWmZmp1atXKyIiIh9Hdn2EhYUpODjYqd7U1FRt3rzZqjciIkIpKSnavn271WfNmjXKzMxUo0aNbviY7TDGaPDgwfrss8+0Zs0ahYWFOU0PDw+Xu7u7U90//fSTDh8+7FT3rl27nHY2sbGx8vX1zbITK6gyMzOVlpZWaOtt2bKldu3apfj4eOtfw4YN1aNHD+v/hbHui508eVK//vqrypUrV2jXc5MmTbLcTuvnn39WaGiopMK7HXOYN2+eAgMD1a5dO6utsK5rXAP5/e2comjRokXG09PTzJ8/3/z444+mf//+xt/f3+mbaTeTEydOmB07dpgdO3YYSWbq1Klmx44d5tChQ8aYC7ex8Pf3N59//rnZuXOn6dChQ7a3sWjQoIHZvHmz+fbbb80tt9xSoG9j8fjjjxs/Pz/zzTffON3O4vTp01afAQMGmEqVKpk1a9aYbdu2mYiICBMREWFNd9zKIioqysTHx5sVK1aYsmXLFthbWTz33HNm3bp15sCBA2bnzp3mueeeMy4uLiYmJsYYU/jqzcnF36o2pvDV/fTTT5tvvvnGHDhwwGzcuNFERkaaMmXKmKSkJGNM4avXmAu3WnJzczOvvPKK2b9/v1mwYIHx8fExH374odWnMG7HjLlwV49KlSqZZ599Nsu0wriucfUIjvlk5syZplKlSsbDw8Pccccd5rvvvsvvIeXZ2rVrjaQs/3r16mWMuXAri1GjRpmgoCDj6elpWrZsaX766SeneRw9etQ89NBDpkSJEsbX19f07t3bnDhxIh+qsSe7eiWZefPmWX3OnDljBg4caEqVKmV8fHzM/fffb/766y+n+Rw8eNC0adPGeHt7mzJlypinn37apKen3+Bq7OnTp48JDQ01Hh4epmzZsqZly5ZWaDSm8NWbk0uDY2Gr+8EHHzTlypUzHh4epnz58ubBBx90up9hYavX4YsvvjC1a9c2np6epnr16mbu3LlO0wvjdswYY1auXGkkZanFmMK7rnF1XIwxJl8OdQIAAOCmwjWOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACwheAIAAAAWwiOAAAAsIXgCAAAAFsIjgAAALCF4AgAAABbCI4AAACw5f8BkI9PTD3trcUAAAAASUVORK5CYII=\n"
},
"metadata": {}
}
],
"source": [
"#uncomment this is you need to split data into chunks\n",
"\n",
"EMBEDDING_MODEL_NAME = \"thenlper/gte-small\"\n",
"\n",
"\"\"\"\n",
"from langchain.text_splitter import RecursiveCharacterTextSplitter\n",
"from transformers import AutoTokenizer\n",
"\n",
"def split_documents(\n",
" chunk_size: int,\n",
" knowledge_base: List[LangchainDocument],\n",
" tokenizer_name: Optional[str] = EMBEDDING_MODEL_NAME,\n",
") -> List[LangchainDocument]:\n",
"\n",
" #Split documents into chunks of maximum size `chunk_size` tokens and return a list of documents.\n",
"\n",
" text_splitter = RecursiveCharacterTextSplitter.from_huggingface_tokenizer(\n",
" AutoTokenizer.from_pretrained(tokenizer_name),\n",
" chunk_size=chunk_size,\n",
" chunk_overlap=int(chunk_size / 10),\n",
" add_start_index=True,\n",
" strip_whitespace=True,\n",
" separators=MARKDOWN_SEPARATORS,\n",
" )\n",
"\n",
" docs_processed = []\n",
" for doc in knowledge_base:\n",
" docs_processed += text_splitter.split_documents([doc])\n",
"\n",
" # Remove duplicates\n",
" unique_texts = {}\n",
" docs_processed_unique = []\n",
" for doc in docs_processed:\n",
" if doc.page_content not in unique_texts:\n",
" unique_texts[doc.page_content] = True\n",
" docs_processed_unique.append(doc)\n",
"\n",
" return docs_processed_unique\n",
"\n",
"\n",
"\n",
"docs_processed = split_documents(\n",
" 512, # We choose a chunk size adapted to our model\n",
" RAW_KNOWLEDGE_BASE,\n",
" tokenizer_name=EMBEDDING_MODEL_NAME,\n",
")\n",
"\n",
"\"\"\"\n",
"\n",
"# Let's visualize the chunk sizes we would have in tokens from a common model\n",
"from transformers import AutoTokenizer\n",
"\n",
"tokenizer = AutoTokenizer.from_pretrained(EMBEDDING_MODEL_NAME)\n",
"lengths = [len(tokenizer.encode(doc.page_content)) for doc in tqdm(docs_processed)]\n",
"fig = pd.Series(lengths).hist()\n",
"plt.title(\"Distribution of document lengths in the knowledge base (in count of tokens)\")\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "Wc3riwX39-9M"
},
"source": [
"➡️ Now the chunk length distribution looks better!"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "J1ho-UKM9-9M"
},
"source": [
"### 1.2 Building the vector database\n",
"\n",
"We want to compute the embeddings for all the chunks of our knowledge base: to learn more on sentence embeddings, we recommend reading [this guide](https://osanseviero.github.io/hackerllama/blog/posts/sentence_embeddings/).\n",
"\n",
"#### How does retrieval work ?\n",
"\n",
"Once the chunks are all embedded, we store them into a vector database. When the user types in a query, it gets embedded by the same model previously used, and a similarity search returns the closest documents from the vector database.\n",
"\n",
"The technical challenge is thus, given a query vector, to quickly find the nearest neighbours of this vector in the vector database. To do this, we need to choose two things: a distance, and a search algorithm to find the nearest neighbors quickly within a database of thousands of records.\n",
"\n",
"##### Nearest Neighbor search algorithm\n",
"\n",
"There are plentiful choices for the nearest neighbor search algorithm: we go with Facebook's [FAISS](https://github.com/facebookresearch/faiss), since FAISS is performant enough for most use cases, and it is well known thus widely implemented.\n",
"\n",
"##### Distances\n",
"\n",
"Regarding distances, you can find a good guide [here](https://osanseviero.github.io/hackerllama/blog/posts/sentence_embeddings/#distance-between-embeddings). In short:\n",
"\n",
"- **Cosine similarity** computes similarity between two vectors as the cosinus of their relative angle: it allows us to compare vector directions are regardless of their magnitude. Using it requires to normalize all vectors, to rescale them into unit norm.\n",
"- **Dot product** takes into account magnitude, with the sometimes undesirable effect that increasing a vector's length will make it more similar to all others.\n",
"- **Euclidean distance** is the distance between the ends of vectors.\n",
"\n",
"You can try [this small exercise](https://developers.google.com/machine-learning/clustering/similarity/check-your-understanding) to check your understanding of these concepts. But once vectors are normalized, [the choice of a specific distance does not matter much](https://platform.openai.com/docs/guides/embeddings/which-distance-function-should-i-use).\n",
"\n",
"Our particular model works well with cosine similarity, so choose this distance, and we set it up both in the Embedding model, and in the `distance_strategy` argument of our FAISS index. With cosine similarity, we have to normalize our embeddings.\n",
"\n",
"🚨👇 The cell below takes a few minutes to run on A10G!"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"id": "dalledM99-9M"
},
"outputs": [],
"source": [
"from langchain.vectorstores import FAISS\n",
"from langchain_community.embeddings import HuggingFaceEmbeddings\n",
"from langchain_community.vectorstores.utils import DistanceStrategy\n",
"\n",
"embedding_model = HuggingFaceEmbeddings(\n",
" model_name=EMBEDDING_MODEL_NAME,\n",
" multi_process=True,\n",
" model_kwargs={\"device\": \"cuda\"},\n",
" encode_kwargs={\"normalize_embeddings\": True}, # set True for cosine similarity\n",
")\n",
"\n",
"KNOWLEDGE_VECTOR_DATABASE = FAISS.from_documents(\n",
" docs_processed, embedding_model, distance_strategy=DistanceStrategy.COSINE\n",
")"
]
},
{
"cell_type": "code",
"source": [
"# let's serialize our vector DB\n",
"\n",
"KNOWLEDGE_VECTOR_DATABASE.save_local('../gitmarks_index.bin')\n"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 70
},
"id": "N3lnrfWPM3KS",
"outputId": "1fc1771e-458d-4c64-8aaa-7d204247072d"
},
"execution_count": 20,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"\" \\n\\nwith open('../gitmarks_index.bin', 'rb') as f:\\n serialized_index_data = f.read()\\ndeserialized_index = faiss.deserialize_index(serialized_index_data)\\n\\n\""
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
}
},
"metadata": {},
"execution_count": 20
}
]
},
{
"cell_type": "code",
"source": [
"# now deserialize:\n",
"\"\"\"\n",
"\n",
"KNOWLEDGE_VECTOR_DATABASE = FAISS.load_local(\"../gitmarks_index.bin\", embedding_model)\n",
"\n",
"\"\"\"\n",
"\n"
],
"metadata": {
"id": "l3nwgocfPaI-"
},
"execution_count": 22,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "0zM-wfiJ9-9N"
},
"source": [
"👀 To visualize the search for the closest documents, let's project our embeddings from 384 dimensions down to 2 dimensions using PaCMAP.\n",
"\n",
"💡 _We chose PaCMAP rather than other techniques such as t-SNE or UMAP, since [it is efficient (preserves local and global structure), robust to initialization parameters and fast](https://www.nature.com/articles/s42003-022-03628-x#Abs1)._"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"id": "rhvcE3vH9-9N"
},
"outputs": [],
"source": [
"# embed a user query in the same space\n",
"user_query = \"List me popular open source tools written in java or some other JVM language which can be used for penetration testing.\"\n",
"query_vector = embedding_model.embed_query(user_query)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"id": "l8nz5FYC9-9N",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "33ab5a24-7c8b-4db4-b885-da715fa5ea72"
},
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"/usr/local/lib/python3.10/dist-packages/pacmap/pacmap.py:828: UserWarning: Warning: random state is set to 1\n",
" warnings.warn(f'Warning: random state is set to {_RANDOM_STATE}')\n"
]
}
],
"source": [
"import pacmap\n",
"import numpy as np\n",
"import plotly.express as px\n",
"\n",
"embedding_projector = pacmap.PaCMAP(\n",
" n_components=2, n_neighbors=None, MN_ratio=0.5, FP_ratio=2.0, random_state=1\n",
")\n",
"\n",
"embeddings_2d = [\n",
" list(KNOWLEDGE_VECTOR_DATABASE.index.reconstruct_n(idx, 1)[0])\n",
" for idx in range(len(docs_processed))\n",
"] + [query_vector]\n",
"\n",
"# fit the data (The index of transformed data corresponds to the index of the original data)\n",
"documents_projected = embedding_projector.fit_transform(np.array(embeddings_2d), init=\"pca\")"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"id": "7Cl9Fw2A9-9N",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 737
},
"outputId": "aba0eb87-1bd1-47cd-f9c5-1b74f113afa9"
},
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script charset=\"utf-8\" src=\"https://cdn.plot.ly/plotly-2.24.1.min.js\"></script> <div id=\"adb506fb-12e6-4a1f-9745-49f35b0947c6\" class=\"plotly-graph-div\" style=\"height:700px; width:1000px;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"adb506fb-12e6-4a1f-9745-49f35b0947c6\")) { Plotly.newPlot( \"adb506fb-12e6-4a1f-9745-49f35b0947c6\", [{\"customdata\":[[\"https:\\u002f\\u002fwww.kismetwireless.net\\u002f --- Kismet :: 802.11 layer2 wireless network detector, sniffer, IDS ...\"],[\"http:\\u002f\\u002fdocs.mbunit.com\\u002f --- MbUnit.Documentation - Introduction --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_2284756_obtain-solar-panels-free.html --- How to obtain solar panels for fre...\"],[\"http:\\u002f\\u002fwww-03.ibm.com\\u002fcertify\\u002ftests\\u002ftest_index.shtml --- IBM: Professional Certification Program fro...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fandroidscreencast\\u002f --- androidscreencast - Desktop app to control an andro...\"],[\"http:\\u002f\\u002fwww.phdays.ru\\u002f --- PHDays — Positive Hack Days. Главная --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.javatips.net\\u002fblog\\u002f2013\\u002f04\\u002feclipselink-jpa-with-sql-server --- EclipseLink JPA With SQL Se...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fguide\\u002fcomponents\\u002fservices.html --- Services | Android Developers --- 20...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%94%D0%B8%D1%84%D1%84%D0%B5%D1%80%D0%B5%D0%BD%D1%86%D0%B8%D0%B0%D0%B...\"],[\"http:\\u002f\\u002fnews.mit.edu\\u002f2017\\u002f3-d-printing-cellulose-0303 --- :3D-printing with cellulose :MIT News --- 2...\"],[\"http:\\u002f\\u002fblog.datomic.com\\u002f2017\\u002f03\\u002fnew-datomic-training-videos-and-getting.html --- :Datomic Training :...\"],[\"http:\\u002f\\u002fwww.virtualphoneline.com\\u002fasterisk\\u002f --- Virtual Phone Line - Sample Configurations for Asteris...\"],[\"https:\\u002f\\u002fwww.chargebee.com\\u002f --- :ecommerce Chargebee Subscription Billing &amp; Recurring Payments --...\"],[\"http:\\u002f\\u002fwww.wonderhowto.com\\u002fwonderment\\u002fhowto-hack-together-your-own-tsa-scanner-0122798\\u002f --- HowTo: H...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fSMS.aspx --- How To Send and Receive SMS using GSM Modem - CodeProj...\"],[\"http:\\u002f\\u002fwww.convexoptimization.com\\u002fwikimization\\u002findex.php\\u002fCandes.m --- Candes.m - Wikimization --- 20...\"],[\"http:\\u002f\\u002fwww.anddev.org\\u002fviewtopic.php?p=36463 --- anddev.org • View topic - file\\u002ffolder picker --- 2...\"],[\"http:\\u002f\\u002fwww.lunarpages.com\\u002f --- Affordable Web Hosting at Lunarpages --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fgoogle\\u002fauth\\u002fhttp-auth.html --- Authorizing with Google for REST APIs | ...\"],[\"http:\\u002f\\u002fwww.kernel-panic.it\\u002fsecurity\\u002fshellcode\\u002findex.html --- Writing shellcode for Linux and *BSD - ...\"],[\"http:\\u002f\\u002fwww.opendesigns.org\\u002fpreview\\u002f?template=1363 --- Free Website Design Template Preview - OpenDes...\"],[\"http:\\u002f\\u002fwiki.linuxquestions.org\\u002fwiki\\u002fSlackware-Links#.22.27.27.27Slackware_LQ_Suggestions_Links.21.27...\"],[\"http:\\u002f\\u002fwww.angelinvestor.ca\\u002f2010_Investment_Activity_Report.asp --- 2010 Investment Activity Report ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fpiter\\u002fblog\\u002f286826\\u002f --- :mathematics :group-theory math folklore --- 201...\"],[\"http:\\u002f\\u002fwww.core77.com\\u002fblog\\u002ftransportation\\u002farmored_luxury_suv_from_canada_probably_not_going_to_win_g...\"],[\"http:\\u002f\\u002fhandheld.softpedia.com\\u002fget\\u002fSystem-Utilities\\u002fEnhancements\\u002fSIP-Config-Tool-43588.shtml --- Down...\"],[\"http:\\u002f\\u002fbuildmagneticgeneratorplans.com\\u002f --- How to Build a Magnetic Generator --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.visualthesaurus.com\\u002fstore\\u002f --- Buy the Visual Thesaurus : Thinkmap Visual Thesaurus --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjashmenn\\u002fbitcoin-reading-list --- reading list for learning to program Bitcoin tr...\"],[\"http:\\u002f\\u002fwww.edmontondining.com\\u002fedmonton_sa_venue_bar_feature_hot_spot --- Edmonton Hot Spot Bars, Pub...\"],[\"http:\\u002f\\u002fvirtualboximages.tradepub.com\\u002ffree\\u002fw_opeb01\\u002f?p=w_opeb01 --- Securing & Optimizing Linux: The ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fsmarttools\\u002f --- SmartTools for SharePoint - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.curry-recipes.co.uk\\u002fcurry\\u002findex.php\\u002ftopic,3461.20.html --- Homemade Tandoori oven constru...\"],[\"http:\\u002f\\u002fretrodiyebaystore.blogspot.com\\u002f2016\\u002f08\\u002fbbq-meat-smoker-pizza-oven-tandoori.html?spref=pi --- ...\"],[\"http:\\u002f\\u002fthemetapicture.com\\u002ftechnology-from-the-future-is-here-to-stay\\u002f --- Technology From The Future...\"],[\"http:\\u002f\\u002fwww.glype.com\\u002f --- Glype® Proxy Script --- 2017-05-12...\"],[\"https:\\u002f\\u002fahmia.fi\\u002f --- tor hidden services search --- 2017-05-12...\"],[\"http:\\u002f\\u002fgardeningforlife.xyz\\u002fspray-your-weeds-with-diluted-vinegar-not-only-will-it-kill-them-but-the...\"],[\"http:\\u002f\\u002fcodeclimber.net.nz\\u002farchive\\u002f2009\\u002f04\\u002f08\\u002f13-asp.net-mvc-extensibility-points-you-have-to-know.as...\"],[\"https:\\u002f\\u002fwww.cloudamqp.com\\u002fplans.html --- Plans & Prices - CloudAMQP, RabbitMQ as a Service --- 2017-...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=1ebR37K8hDg --- How to stop an attacking dog assault from biting a vi...\"],[\"http:\\u002f\\u002fcaptaindanko.blogspot.com\\u002f2017\\u002f03\\u002fworking-on-startup-alone-time.html --- :productivity Workin...\"],[\"http:\\u002f\\u002fexpert.ru\\u002fexpert\\u002f2016\\u002f07\\u002frobotyi-dlya-agroproma\\u002f --- Роботы для агропрома Ð...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkorczis\\u002fsolr-core-minimal --- korczis\\u002fsolr-core-minimal · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002femea\\u002fmsdn\\u002fcommunitydistribution\\u002fcd_resources.aspx --- Community Distributio...\"],[\"http:\\u002f\\u002fwww.dotnettreats.com\\u002ftipstricks\\u002fadnet.aspx#s3 --- .NET TREATS & TRICKS :: ACTIVE DIRECTORY AN...\"],[\"http:\\u002f\\u002fweb.eecs.utk.edu\\u002fresearch\\u002flsi\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3045949&R=3045949 --- Algebraic curves in cryp...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285380\\u002f --- :games :kids best puzzles you never heard about --- 2017-05-12...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fkernlab\\u002findex.html --- CRAN - Package kernlab --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=xmpp --- xmpp : eBooks & Online Content : ...\"],[\"http:\\u002f\\u002fwww.bradfordcross.com\\u002fblog\\u002f2017\\u002f3\\u002f3\\u002ffive-ai-startup-predictions-for-2017 --- :deep-learning :...\"],[\"http:\\u002f\\u002fwww.myboatsgear.com\\u002fmbg\\u002fproduct.asp?prodID=1645 --- Solar Still - convert sea water to drinki...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fgoogle\\u002fgcm\\u002findex.html --- Google Cloud Messaging for Android | Android ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNancyFx\\u002fNancy\\u002fwiki\\u002fAuthentication-overview#what-did-you-say-your-name-was-again -...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002ffirebase-and-react --- Firebase and React --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aopensource.com\\u002f --- AOpenSource.com Android Open Source --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fLagging_indicator --- Economic indicator - Wikipedia, the free encyclop...\"],[\"http:\\u002f\\u002fwww.thegeekyglobe.com\\u002fhow-to-turn-your-old-android-device-into-security-camera.html --- How t...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fpbxinaflash\\u002ffiles\\u002fIncrediblePBX-Ubuntu14\\u002fVirtualBox\\u002f --- PBX for Vir...\"],[\"http:\\u002f\\u002fdeacon.daverea.com\\u002f --- The Deacon Project --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmmcgrana\\u002fservices-engineering --- mmcgrana\\u002fservices-engineering --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.absoluterights.com\\u002f29-reasons-to-use-coffee-filters-for-survival\\u002f --- 29 Reasons to Use C...\"],[\"http:\\u002f\\u002fwww.orfeo-toolbox.org\\u002fotb\\u002f --- Orfeo Toolbox --- 2017-05-12...\"],[\"http:\\u002f\\u002fcssglobe.com\\u002fpost\\u002f1695\\u002feasiest-tooltip-and-image-preview-using-jquery --- Easiest Tooltip and...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSoftware_package_metrics --- Software package metrics - Wikipedia, the ...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002fkalisk\\u002fCsharptips11092008174635PM\\u002fCsharptips.aspx --- C# IDE...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002fblogs\\u002fsql-server-blog-forum\\u002f2014\\u002f07\\u002f27\\u002flost-administrator-sa-passwor...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fvisualcodegrepp\\u002f --- VisualCodeGrepper V2.0.0 | SourceForge.net --- ...\"],[\"http:\\u002f\\u002fwebglplayground.net\\u002f --- WebGL playground [beta] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.hackster.io\\u002flaserbrain\\u002fwindows-iot-sense-hat-10cac2 --- :smartgarden :nuget :.net :Windo...\"],[\"https:\\u002f\\u002fwww.sunchlorellausa.com\\u002fblog\\u002fsecret-fitness-ingredient-rest --- Rest: The Secret Fitness Ing...\"],[\"http:\\u002f\\u002falxklive.com\\u002fguides-tutorials\\u002fflv_converter\\u002f --- FLV Converter - A Layman's Guide to Flash Vi...\"],[\"http:\\u002f\\u002fwww.allokazakhstan.com\\u002fmm5\\u002fmerchant.mvc?gclid=CMfv8_vdzp0CFeRL5QodPCcHrA --- AlloKazakhstan.c...\"],[\"http:\\u002f\\u002fresume.github.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fphantomjs.org\\u002fscreen-capture.html --- Screen Capture | PhantomJS --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2921547&R=2921547 --- Architecture of network ...\"],[\"http:\\u002f\\u002fmathworld.wolfram.com\\u002f --- Wolfram MathWorld: The Web's Most Extensive Mathematics Resource ....\"],[\"http:\\u002f\\u002fwww.legalaid.on.ca\\u002fen\\u002fgetting\\u002fcallus.asp --- Legal Aid Ontario: Getting Legal Help --- 2017-0...\"],[\"http:\\u002f\\u002fblog.slideshare.net\\u002f2013\\u002f12\\u002f30\\u002ftop-templates-to-create-presentations-that-shine\\u002f --- Presenta...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=MGqkJZERX5g --- Inside Defense against Punches, Part 1 | Krav Maga De...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=9042 --- Освоение Ajax: Часть 8. ИспользÐ...\"],[\"http:\\u002f\\u002flifeofjs.com\\u002f --- Life of JavaScript --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.utoronto.ca\\u002f~hinton\\u002fhelmholtz.html --- Geoffrey E. HInton's Publications: Helmholtz Ma...\"],[\"http:\\u002f\\u002fwww-bcf.usc.edu\\u002f~gareth\\u002fISL\\u002f --- Introduction to Statistical Learning with Applications in R ...\"],[\"http:\\u002f\\u002fmarkov.uc3m.es\\u002f2012\\u002f11\\u002ftemporal-networks-with-igraph-and-r-with-20-lines-of-code\\u002f --- Tempora...\"],[\"https:\\u002f\\u002fca.indeed.com\\u002fClojure-jobs-in-Toronto,-ON --- :job-search :Clojure Jobs in :Toronto ON --- 2...\"],[\"http:\\u002f\\u002fwww.co.palm-beach.fl.us\\u002fpapa\\u002faspx\\u002fweb\\u002fdetail_info.aspx?p_entity=74424315100112040&geonav=Y&st...\"],[\"http:\\u002f\\u002faopensource.com\\u002findex.php?more=33 --- AOpenSource.com Android Open Source Details: Audalyzer ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fmarcelolr\\u002farchive\\u002f2008\\u002f09\\u002f12\\u002fparameterized-sorting-in-xslt.aspx --- Marcelo's ...\"],[\"http:\\u002f\\u002fwww.kitploit.com\\u002f2014\\u002f02\\u002fcollection-of-free-computer-forensic.html?m=1 --- Collection Of Free...\"],[\"http:\\u002f\\u002fwww.eclipse.org\\u002fmat\\u002f --- Eclipse Memory Analyzer Open Source Project --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.lemurproject.org\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fhelp.ubuntu.com\\u002fcommunity\\u002fGrub2\\u002fPasswords --- Grub2\\u002fPasswords - Community Help Wiki --- 2017...\"],[\"http:\\u002f\\u002fsravi-kiran.blogspot.ca\\u002f2013\\u002f09\\u002fABetterWayOfUsingAspNetSignalRWithAngularJs.html --- My onlin...\"],[\"https:\\u002f\\u002fwww.assetstore.unity3d.com\\u002fen\\u002f#!\\u002fsearch\\u002fpage=1\\u002fsortby=relevance\\u002fquery=boxing --- :unity boxi...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSurrogate_key --- Surrogate key - Wikipedia, the free encyclopedia --- ...\"],[\"http:\\u002f\\u002fjheusser.github.io\\u002f2013\\u002f02\\u002f03\\u002fsatcoin.html --- SAT solving - An alternative to brute force bi...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fee787088.aspx --- Fundamentals of Garbage Collection --- 201...\"],[\"http:\\u002f\\u002fwww.drdobbs.com\\u002ftools\\u002fmultithreading-debugging-techniques\\u002f199200938 --- Multithreaded Debuggi...\"],[\"https:\\u002f\\u002fresearch.fb.com\\u002fprophet-forecasting-at-scale\\u002f? --- :tools :python :r-project Prophet forecas...\"],[\"http:\\u002f\\u002fww2.coastal.edu\\u002fkingw\\u002fstatistics\\u002fR-tutorials\\u002floglin.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fnexus4\\u002fcomments\\u002f1vz20w\\u002fi_wrote_a_guide_on_rooting_a_nexus_4_and\\u002f --- using X...\"],[\"http:\\u002f\\u002ffreedomprepper.com\\u002fwater-collection-filtration-storage\\u002fheres-how-to-build-your-very-own-whole...\"],[\"http:\\u002f\\u002fwww.wes.org\\u002f --- World Education Services --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.msdn.microsoft.com\\u002fParExtSamples --- Samples for Parallel Programming with the .NET Fra...\"],[\"https:\\u002f\\u002fgithub.com\\u002famitmerchant1990\\u002fpomolectron --- :electron :pomodoro :app in your menubar\\u002ftray --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fether-camp\\u002fethereumj.starter --- GitHub - ether-camp\\u002fethereumj.starter --- 2017-0...\"],[\"http:\\u002f\\u002fwpf.netfx3.com\\u002ffiles\\u002ffolders\\u002fapplications\\u002fdefault.aspx --- Files: Applications --- 2017-05-12...\"],[\"http:\\u002f\\u002fmakerzone.mathworks.com\\u002f?s_v1=61872768_1-NH77J1 --- MakerZone | Arduino, Raspberry Pi and Leg...\"],[\"http:\\u002f\\u002fspark.apache.org\\u002fdocs\\u002flatest\\u002fgraphx-programming-guide.html --- GraphX Programming Guide - Spa...\"],[\"http:\\u002f\\u002fatlas.arbor.net\\u002f --- Arbor Networks | ATLAS Dashboard: Global --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.programmableweb.com\\u002f --- ProgrammableWeb --- 2017-05-12...\"],[\"http:\\u002f\\u002f3dprint.com\\u002f23668\\u002f3d-print-homes-homeless\\u002f --- 3D Print Homes International Launches Crowdfun...\"],[\"https:\\u002f\\u002fwww.coursera.org\\u002fcourse\\u002ffunctionalanalysis --- An Introduction to Functional Analysis --- 20...\"],[\"http:\\u002f\\u002fsdu.ictp.it\\u002f3D\\u002fbook.html --- Open Book on \\\"Low-cost 3D Printing for Science, Education and Su...\"],[\"http:\\u002f\\u002fthemetapicture.com\\u002fgreat-idea-or-greatest-idea\\u002f --- Best idea ever. --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002finquisb\\u002fshellcodeexec --- inquisb\\u002fshellcodeexec · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002falgs4.cs.princeton.edu\\u002fhome\\u002f --- Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3045808&R=3045808 --- Cryptology classical and...\"],[\"http:\\u002f\\u002fwww.aspose.com\\u002fProducts\\u002fAspose.Flash\\u002fDefault.aspx --- Flash Component for .NET – Open, Pars...\"],[\"http:\\u002f\\u002fwww.zulily.com\\u002finvite\\u002fldutton743\\u002fp\\u002fwhite-three-in-one-fruit-saver-basket-178843-9512326.html?...\"],[\"http:\\u002f\\u002fwww.overstock.com\\u002fBooks-Movies-Music-Games\\u002fArtificial-Intelligence-and-Computational-Intellig...\"],[\"http:\\u002f\\u002fvelocitygraph.com\\u002f --- VelocityGraph - Graph Database --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fMake-A-Wi-fi-Webcam-From-An-Old-Android-Phone\\u002f --- Turning one of my...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fgoogle2srt\\u002f --- Google2SRT | Download Google2SRT software for free a...\"],[\"https:\\u002f\\u002fgithub.com\\u002fCoreSecurity\\u002fpcapy --- CoreSecurity\\u002fpcapy · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fkvant.mirror1.mccme.ru\\u002f1988\\u002f11\\u002fXXII_vsesoyuznaya_olimpiada_po.htm --- Журнал \\\"КванÑ...\"],[\"http:\\u002f\\u002foctave.sourceforge.net\\u002fpackages.php --- Octave Packages --- 2017-05-12...\"],[\"https:\\u002f\\u002frealm.io\\u002fnews\\u002frealm-javascript-node-js-windows\\u002f --- :mobile Realm Everywhere, with :JavaScri...\"],[\"https:\\u002f\\u002fgithub.com\\u002fiokto\\u002fcaptcha-breaking-library --- iokto\\u002fcaptcha-breaking-library · GitHub --- 2...\"],[\"http:\\u002f\\u002fclojure.org\\u002f --- Clojure - home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fteardemon\\u002fenjarify --- teardemon\\u002fenjarify · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.fullscalejs.com\\u002fissues\\u002f88-angular-4-is-out-ecmascript-2017-fate-of-webcomponents-and-more...\"],[\"http:\\u002f\\u002fpoormanguides.blogspot.de\\u002f2009\\u002f06\\u002fthermosiphon-solar-air-heater-with-heat.html --- Renewable ...\"],[\"http:\\u002f\\u002fpaperbot.ai\\u002f?utm_source=hacker_news --- :slack :aggregator :bookmarking :bot Paperbot --- 201...\"],[\"http:\\u002f\\u002fgo.linuxfoundation.org\\u002flinux-training-from-the-linux-foundation?pi_ad_id=6434460634&gclid=COi...\"],[\"https:\\u002f\\u002fwww.mobi-to-pdf.com\\u002f --- Mobi to PDF Converter --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.intellog.com\\u002fblog\\u002f?p=201 --- Setting up SOLR on EC2, Part IV - The Intellog Blog - It’s...\"],[\"http:\\u002f\\u002fscpd.stanford.edu\\u002fsearch\\u002fpublicCourseSearchDetails.do?method=load&courseId=12496 --- ME220 In...\"],[\"http:\\u002f\\u002fwww.moo.com\\u002fproducts\\u002fsample.php --- | moo.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww-personal.umich.edu\\u002f~huxin\\u002fpapers\\u002fxin_Hancock_raid.pdf --- Automatic generation of string ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fSharpMap --- SharpMap - Open Source Interactive Geospatial Application Frame...\"],[\"http:\\u002f\\u002fmsmvps.com\\u002fblogs\\u002fcoad\\u002farchive\\u002f2005\\u002f03\\u002f23\\u002fSerialPort-_2800_RS_2D00_232-Serial-COM-Port_2900_-i...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3053929&R=3053929 --- Mining the social web : ...\"],[\"http:\\u002f\\u002fsupport.microsoft.com\\u002f?id=911816 --- Unhandled exceptions cause ASP.NET-based applications to...\"],[\"http:\\u002f\\u002fwww.abet.org\\u002fthe_basics.shtml --- ABET --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3157504&R=3157504 --- CEH Certified Ethical Ha...\"],[\"http:\\u002f\\u002fgovernance.codeplex.com\\u002f --- Microsoft SharePoint Products and Technologies Governance and Ma...\"],[\"https:\\u002f\\u002fgeti2p.net\\u002fen\\u002fget-involved\\u002fdevelop\\u002fapplications --- Application Development - I2P --- 2017-0...\"],[\"https:\\u002f\\u002fmva.microsoft.com\\u002fproduct-training\\u002fmicrosoft-azure?prid=ch9_sessions --- Microsoft Azure Tra...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fList_of_Web_archiving_initiatives --- List of Web archiving initiative...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkristianmandrup\\u002fdatascript-tutorial --- datascript-tutorial -- Datascript :Datomi...\"],[\"http:\\u002f\\u002fwww.bodybuilding.com\\u002ffun\\u002fthe-ultimate-list-of-40-low-carb-foods.html --- bodybuilding.com :: ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3045388&R=3045388 --- C# for financial markets...\"],[\"http:\\u002f\\u002fwww.ravellosystems.com\\u002fpages\\u002fsave-up-to-50-percent-on-your-ec2-pricing?src=adwords&camp=USA-e...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdevttys0\\u002flittleblackbox --- devttys0\\u002flittleblackbox --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmobking33\\u002fdotdotpwn --- mobking33\\u002fdotdotpwn · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fsearch\\u002f?type_of_search=soft&words=nhibernate --- SourceForge.net: Software Se...\"],[\"http:\\u002f\\u002fwww.ciena.com\\u002fconnect\\u002fblog\\u002fHow-I-built-my-own-mobile-cell-tower.html --- Ciena - How I built ...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=wd-2CDWMetc --- :Functional-programming --- The Culture of :Scheme...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3146260&R=3146260 --- Bayesian programming : e...\"],[\"https:\\u002f\\u002fwww.firebase.com\\u002fblog\\u002f2015-12-07-udacity-course-firebase-essentials.html --- Udacity launche...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fyoutube\\u002fdevelopers_guide_java.html#DirectUpload --- Developer's Guide: J...\"],[\"http:\\u002f\\u002fforums.fast.ai\\u002f --- :moocs :DeepLearning Course Forums --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.neimagazine.com\\u002fhybrid.asp?typeCode=260&pubCode=1 --- nuclear industry --- 2017-05-12...\"],[\"http:\\u002f\\u002fboxesandarrows.com\\u002fbeyond-cardsorting-free-listing-methods-to-explore-user-categorizations\\u002f -...\"],[\"https:\\u002f\\u002fwww.coursera.org\\u002flearn\\u002fhow-to-create-a-website --- how to create a website --- 2017-05-12...\"],[\"http:\\u002f\\u002fjmlr.org\\u002f --- Journal of Machine Learning Research Homepage --- 2017-05-12...\"],[\"https:\\u002f\\u002fhackaday.io\\u002fproject\\u002f5921-grobots-opengrow --- GroBots - OpenGrow • Hackaday.io --- 2017-05...\"],[\"http:\\u002f\\u002fcseweb.ucsd.edu\\u002f~mihir\\u002fcse207\\u002f --- CSE 207: Modern Cryptography --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.blackpointoutdoor.com\\u002fbackcountry\\u002f2014\\u002f06\\u002fmake-water-drinkable\\u002f --- Make your water safe ...\"],[\"https:\\u002f\\u002fdocs.microsoft.com\\u002fen-us\\u002fdotnet\\u002fapi\\u002f?utm_source=csharpdigest&utm_medium=email&utm_campaign=f...\"],[\"http:\\u002f\\u002flist.moneysense.ca\\u002frankings\\u002fbest-places-to-live\\u002f2011\\u002fDefault.aspx?sp2=1&d1=a&sc1=0 --- where ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fninject\\u002fninject\\u002fwiki --- Ninject Wiki on GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpatriklindstrom\\u002fHelloWorld-Rhino-ETL --- patriklindstrom\\u002fHelloWorld-Rhino-ETL - C...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fcc422924.aspx --- 2.2.1.1.4 Password Encryption - group poli...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms139892.aspx --- Integration Services Tasks --- 2017-05-12...\"],[\"https:\\u002f\\u002fegghead.io\\u002f --- egghead.io: Learn AngularJS with Tutorial Videos & Training @eggheadio --- 2...\"],[\"http:\\u002f\\u002fwww.w00w00.org\\u002farticles.html --- w00w00 Articles --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.baystreetmotel.com\\u002f --- Bay Street Motel - Budget Hotel Toronto --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.lulzbot.com\\u002f --- LulzBot :3D-Printers Parts and Filament --- 2017-05-12...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f162353\\u002f --- Использование async и await в C# — лучшиÐ...\"],[\"http:\\u002f\\u002flowcost-robot.org\\u002f --- LowCost-Robot.org | Many Features & Low Cost Robot --- 2017-05-12...\"],[\"http:\\u002f\\u002fthestrategictrader.com\\u002f --- strategy trading --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurveywebpart.codeplex.com\\u002f --- Survey WebPart --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fruijun\\u002fAndroid-Dev-Favorites\\u002fblob\\u002fmaster\\u002fAndroid%206.0\\u002f%E6%9D%83%E9%99%90.md --- ...\"],[\"http:\\u002f\\u002fwaveaccounting.com\\u002f --- Free Online Accounting Software for Small Business - Wave ... --- 201...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2014\\u002f12\\u002f05\\u002foff-the-grid-life-hacks\\u002f --- 43 Off the Grid Survival Life Hacks ...\"],[\"http:\\u002f\\u002fgraphstream-project.org\\u002f --- GraphStream - A Dynamic Graph Library --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.juststrings.com\\u002fdaddarioelectricguitarxl.html --- XL Nickel Round Wound --- 2017-05-12...\"],[\"http:\\u002f\\u002fcollectionscanada.gc.ca\\u002fourl\\u002fres.php?url_ver=Z39.88-2004&url_tim=2013-04-10T18%3A46%3A33Z&url...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsophron\\u002fwifiphisher --- sophron\\u002fwifiphisher · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fzachholman.com\\u002fposts\\u002fstart-up-your-startup --- How to :StartUp --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcloudtracer\\u002fThreatPinchLookup --- :security ThreatPinchLookup Documentation and S...\"],[\"http:\\u002f\\u002fosmocom.org\\u002f --- Osmocom --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.oreilly.com\\u002fbiocoder\\u002findex.csp?submit=true --- BioCoder – A quarterly newsletter for DI...\"],[\"http:\\u002f\\u002fspic.kr\\u002f4GZg\\u002fm --- Personal helicopter --- 2017-05-12...\"],[\"http:\\u002f\\u002ftmuxp.git-pull.com\\u002fen\\u002flatest\\u002f --- :linux :tools tmuxp -- tmux session manager --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fabhishekkrthakur\\u002fclickbaits_revisited --- :text-mining clickbaits_revisited :Deep...\"],[\"http:\\u002f\\u002fwww.ikeahackers.net\\u002f2013\\u002f05\\u002fhelmer-air-renderfarm.html --- IKEA Hackers: Helmer-Air Renderfar...\"],[\"https:\\u002f\\u002fangular.io\\u002fdocs\\u002fts\\u002flatest\\u002ftutorial\\u002ftoh-pt1.html --- :angularjs :tutorial components --- 2017...\"],[\"http:\\u002f\\u002fwww.construction-robotics.com\\u002f --- Construction Robotics - Home of the Semi-Automated Mason -...\"],[\"http:\\u002f\\u002fwww.troyhunt.com\\u002f2012\\u002f01\\u002faspnet-session-hijacking-with-google.html --- Troy Hunt: ASP.NET ses...\"],[\"http:\\u002f\\u002fdanischnakenberg.com\\u002fbanana-split-protein-smoothie\\u002f --- Banana Split Protein Smoothie --- 201...\"],[\"http:\\u002f\\u002fwww.dotnetcurry.com\\u002fangularjs\\u002f1320\\u002fusing-webpack-bundling-with-angular-2 --- :tutorial :Angul...\"],[\"http:\\u002f\\u002fdiydrones.com\\u002fprofiles\\u002fblogs\\u002fground-control-station-how-to-diy?xg_source=activity --- How to ...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=vDofosaRUPc --- Kidnapping Bearhug Defense : Krav Maga Technique : K...\"],[\"https:\\u002f\\u002fhackernoon.com\\u002feffective-functional-javascript-first-class-and-higher-order-functions-713fde...\"],[\"https:\\u002f\\u002fgithub.com\\u002fantirez\\u002fkilo --- :c-code kilo text editor in less than 1000 LOC with syntax highl...\"],[\"http:\\u002f\\u002ffastcreditreportcalifornia.info\\u002freader-tips-12-tips-for-growing-perfect\\u002f --- growing tomato t...\"],[\"http:\\u002f\\u002fwww.darkoperator.com\\u002fblog\\u002f2012\\u002f1\\u002f29\\u002fmetasploit-pentest-plugin-part-2.html --- Security and Ne...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fvector-ni --- guangliang2014\\u002fvector-ni · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.kernel.org\\u002fdoc\\u002fDocumentation\\u002ffilesystems\\u002framfs-rootfs-initramfs.txt --- ramfs, rootfs an...\"],[\"http:\\u002f\\u002fusers.ece.utexas.edu\\u002f~valvano\\u002farm\\u002foutline.htm --- Embedded Systems: REAL-TIME INTERFACING TO ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmadmaze\\u002fpytesseract --- pytesseract :Python wrapper for Google :Tesseract --- 201...\"],[\"http:\\u002f\\u002fwww.davehunter.co.uk\\u002fdefault.aspx --- Home - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002faws.amazon.com\\u002fru\\u002fglacier\\u002f --- Amazon Glacier  – Облачный архив --- 2017-05-...\"],[\"http:\\u002f\\u002flibcello.org\\u002f --- Cello • High Level :C-code --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002frui314\\u002f8cc\\u002ftree\\u002f5fdb78be05917a511a1df44c5eb25419d8f6e9d3?files=1 --- :c-code :com...\"],[\"http:\\u002f\\u002fwww.computerhope.com\\u002fissues\\u002fch000444.htm --- Help with ping, winipcfg, and other network comm...\"],[\"http:\\u002f\\u002fwww.dogeparty.io\\u002f --- Dogeparty - counterparty --- 2017-05-12...\"],[\"http:\\u002f\\u002fseekingalpha.com\\u002farticle\\u002f300945-9-oversold-highly-shorted-stocks-being-bought-up-by-hedge-fun...\"],[\"https:\\u002f\\u002frealm.io\\u002f --- Realm: a mobile database that replaces Core Data & SQLite --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSvchost.exe --- Svchost.exe - Wikipedia, (activator pattern in windows...\"],[\"http:\\u002f\\u002fwww.businessinsider.com\\u002fbad-habits-you-should-break-to-be-more-productive-2016-1 --- 12 bad h...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fBrandingTool\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=11932 --- SharePoint Bra...\"],[\"http:\\u002f\\u002fwww.novell.com\\u002fcoolsolutions\\u002ffeature\\u002f11204.html --- Cool Solutions: Using .NET C# LDAP Librar...\"],[\"http:\\u002f\\u002fwww.templatesbox.com\\u002faffiliates\\u002findex.htm --- Web Templates - Flash Website Templates - Logo ...\"],[\"http:\\u002f\\u002fwww.linuxquestions.org\\u002fquestions\\u002flinux-screencasts-and-screenshots-114\\u002f --- Linux Screencasts...\"],[\"http:\\u002f\\u002fwww.ebrahma.com\\u002f2013\\u002f06\\u002fms-windows-run-command-shortcuts-list\\u002f --- MS Windows Run shortcuts -...\"],[\"http:\\u002f\\u002fwww.doornik.com\\u002fdownload\\u002foxmetrics6\\u002fOx_Console\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fARDUINO-by-Myself-Mini-CNC-Plotter\\u002f --- ARDUINO By Myself Mini-CNC (...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fgunnarpeipman\\u002farchive\\u002f2009\\u002f02\\u002f07\\u002flinks-2009-02-07.aspx --- Links 2009-02-07 -...\"],[\"https:\\u002f\\u002fgithub.com\\u002f0x90shell\\u002fUACME --- 0x90shell\\u002fUACME · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002ffaculty.cse.tamu.edu\\u002fguofei\\u002fpaper\\u002fVetDroid-CCS13.pdf --- Vetting undesirable behaviors in and...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=7YGJ-GE-46E&list=PLEA168E4487DC6AA3 --- Savate (playlist). martial ar...\"],[\"http:\\u002f\\u002fblog.carpcomm.com\\u002f2013\\u002f03\\u002fhow-to-build-satellite-receiving.html --- Carpcomm: How to build a ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fBrightstarDB\\u002fbrightstardb --- BrightstarDB\\u002fBrightstarDB: GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gutgames.com\\u002fpost\\u002fNaive-Bayes-Classifier-in-C.aspx --- Naive Bayes Classifier in C# --- 2...\"],[\"http:\\u002f\\u002farstechnica.com\\u002fsecurity\\u002f2015\\u002f08\\u002fnew-data-uncovers-the-surprising-predictability-of-android-l...\"],[\"https:\\u002f\\u002fwww.instagram.com\\u002fp\\u002fBB_H_5DlL1b\\u002f --- “Here is an intense one for the entire team at @roadste...\"],[\"http:\\u002f\\u002fwww.cs.cmu.edu\\u002fafs\\u002fcs\\u002fproject\\u002fjair\\u002fpub\\u002fvolume10\\u002fjaakkola99a-html\\u002fnode2.html --- The QMR-DT Ne...\"],[\"https:\\u002f\\u002fripple.com\\u002f --- Ripple | The World's Open Payment System --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAstonex\\u002fAntox --- GitHub - Astonex\\u002fAntox: Scala android client for Project Tox - ...\"],[\"http:\\u002f\\u002fblog.waynesheffield.com\\u002fwayne\\u002farchive\\u002f2012\\u002f06\\u002finterview-questions\\u002f --- :sqlserver :Interview ...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14025676 --- :python Django vs. Flask --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.canadasatellite.ca\\u002fFixed-Satellite-Internet-BGAN-Terminals-s\\u002f2545.htm --- Canada Satellit...\"],[\"http:\\u002f\\u002fwww.codeguru.com\\u002fcsharp\\u002fcsharp\\u002fcs_data\\u002fxml\\u002farticle.php\\u002fc15515 --- CodeGuru: Inferring an XML ...\"],[\"http:\\u002f\\u002finhfblog.org\\u002f2013\\u002f05\\u002f29\\u002fcomposting-chemistry-basics\\u002f#more-3195 --- Easy composting guide: wha...\"],[\"http:\\u002f\\u002fwww.facegigs.ca\\u002f --- canadian freelancers --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fee310108.aspx --- MSDN Magazine Issues --- 2017-05-12...\"],[\"http:\\u002f\\u002fslideme.org\\u002f --- SlideME | Android Community and Application Marketplace --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbegriffs\\u002fpostgrest --- :haskell postgrest :REST :API for any :Postgres db --- 201...\"],[\"http:\\u002f\\u002fwww.quora.com\\u002fHow-do-I-learn-Python-3\\u002fanswer\\u002fJames-Thornton --- Answer \\\"How do I learn Python...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=bFMbqKRjU84&list=PLo6puixMwuSO8eB2uBH5lZy5kjNtdhTfT --- :education :...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdharmeshkakadia\\u002fawesome-IoT --- dharmeshkakadia\\u002fawesome-IoT · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3095994&R=3095994 --- Python cookbook : Beazle...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd460693%28v=vs.110%29.aspx --- Parallel Programming in the...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002feisk --- Employee Info Starter Kit - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.activexperts.com\\u002fxmstoolkit\\u002f --- SMS Software to send and receive SMS Messages --- 2017-0...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fapplication-development\\u002fr-high-performance-programming --- R High Performan...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fCertified_Ethical_Hacker --- :certification :security Certified Ethica...\"],[\"http:\\u002f\\u002fwww.nasdaq.com\\u002fsymbol\\u002fbbry\\u002fshort-interest --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fguide\\u002ftopics\\u002fmanifest\\u002fservice-element.html --- element | Android Manife...\"],[\"http:\\u002f\\u002faspalliance.com\\u002f1990_Introducing_the_Crystal_Reports_Visual_Studio_2010_WPF_viewer.all --- In...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhopshadoop\\u002fhops-tensorflow --- :hadoop HopsYARN :Tensorflow Framework --- 2017-05...\"],[\"http:\\u002f\\u002fwww.smartmoney.com\\u002finvest\\u002fstrategies\\u002fhow-to-watch-the-market-1314639841121\\u002f --- How to Watch ...\"],[\"http:\\u002f\\u002fwww.telerik.com\\u002fhelp\\u002faspnet-ajax\\u002fmoss-install-aspnet-ajax-35.html --- Extending your MOSS sit...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002f13-ways-fake-news-problem\\u002f --- :business :news Here&#39;s 13 Ideas t...\"],[\"http:\\u002f\\u002fwww.easyoilpress.com\\u002f --- Want to make your own almond oil? Here is a Small Home Hand Operate...\"],[\"http:\\u002f\\u002fwww.emergingthreats.net\\u002fopen-source\\u002f --- Malware Research, Intrusion Detection, IDS Rules : E...\"],[\"http:\\u002f\\u002fwww.naturallivingideas.com\\u002f11-plants-that-repel-mosquitoes\\u002f --- 11 Plants That Repel Mosquito...\"],[\"http:\\u002f\\u002fwww.qualys.com\\u002fforms\\u002ftrials\\u002fpci_compliance\\u002f?lsid=6874 --- QualysGuard PCI Compliance - 14-Day...\"],[\"https:\\u002f\\u002fgithub.com\\u002flpenguin\\u002fgeek-bookmarks --- GitHub - lpenguin\\u002fgeek-bookmarks: scala backend --- 2...\"],[\"http:\\u002f\\u002ftdhopper.com\\u002fblog\\u002f2017\\u002fMar\\u002f06\\u002fsome-reflections-on-being-turned-down-for-a-lot-of-data-science...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002flamptest\\u002fblog\\u002f286626\\u002f --- :android :camera thermal vision FLIR ONE --- ...\"],[\"http:\\u002f\\u002feng.sysbas.com\\u002fe-Products\\u002fdefault3.asp?sNum=4 --- :::: SystemBase :::: - www.sysbas.com --- 2...\"],[\"http:\\u002f\\u002fow.ly\\u002f15Rh4s --- http:\\u002f\\u002fwww.mindtools.com\\u002fpages\\u002farticle\\u002fnewTMM_36.htm --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fRaspberry-Pi-CNC-Machine\\u002f --- Picture of Raspberry Pi CNC Machine --...\"],[\"http:\\u002f\\u002furbansurvivalsite.com\\u002fsurvival-uses-for-plastic-grocery-bags\\u002f --- Every time you go to the st...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2010\\u002f06\\u002f29\\u002fsilverlight-pivotviewer-now-available.aspx --- Sil...\"],[\"https:\\u002f\\u002fgumroad.com\\u002fl\\u002fAOaV --- Illuminating Clojure and ClojureScript Snippets --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.unixmen.com\\u002flinux-tutorials\\u002flinux-distributions\\u002fcentos --- Centos | Unixmen --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fironyx\\u002fdache --- ironyx\\u002fdache · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002frtc.io\\u002f --- collection of node.js modules that simplify WebRTC development. --- 2017-05-12...\"],[\"http:\\u002f\\u002feisabainyo.net\\u002fweblog\\u002f2011\\u002f01\\u002f31\\u002ftop-10-jquery-mobile-code-snippets-that-you-need-to-know\\u002f --...\"],[\"http:\\u002f\\u002flabs.twilio.com\\u002ftwimlets\\u002f --- twillio building blocks --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.corelan.be\\u002findex.php\\u002farticles\\u002f --- Exploit Writing Tutorials --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fTivaC-Stellaris-LP-Group --- TivaC\\u002fStellaris Launchpad Community Group · GitHub ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fspg\\u002f --- patterns & practices SharePoint Guidance - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.hishambinateya.com\\u002fintroducing-a-new-markdown-view-engine-for-asp.net-core --- :markdown ...\"],[\"https:\\u002f\\u002fcudafy.codeplex.com\\u002f --- CUDAfy.NET - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3087283&R=3087283 --- Computer security and cr...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002frosherove\\u002farchive\\u002f2006\\u002f07\\u002f18\\u002fGenericCollectionsInDotNet.aspx --- Understandin...\"],[\"https:\\u002f\\u002fnabla-c0d3.github.io\\u002fblog\\u002f2013\\u002f08\\u002f20\\u002fios-ssl-kill-switch-v0-dot-5-released\\u002f --- iOS SSL Kill...\"],[\"http:\\u002f\\u002fwww.ni.com\\u002fwhite-paper\\u002f5509\\u002fen\\u002f --- Sampling Theorem - National Instruments --- 2017-05-12...\"],[\"http:\\u002f\\u002ffgiasson.com\\u002fblog\\u002findex.php\\u002f2017\\u002f02\\u002f17\\u002fliterate-clojure-programming-publishing-documentation-...\"],[\"https:\\u002f\\u002fremoteok.io\\u002f --- :job-search Remote Jobs for Digital Nomads --- 2017-05-12...\"],[\"http:\\u002f\\u002fbuggedplanet.info\\u002findex.php?title=Main_Page --- Buggedplanet.info :: Vendors of SIGINT\\u002fCOMINT...\"],[\"https:\\u002f\\u002farchive.org\\u002fdetails\\u002fD4T204201301031400SimCardExploitationKarstenNohl --- SIM-card exploitati...\"],[\"http:\\u002f\\u002frealestate.yahoo.com\\u002fsearch\\u002fFlorida\\u002fClearwater\\u002fhomes-for-sale#m=b%3D51%26p%3DClearwater%252C%...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjeremylong\\u002fDependencyCheck --- jeremylong\\u002fDependencyCheck · GitHub --- 2017-05-1...\"],[\"https:\\u002f\\u002fclass.coursera.org\\u002fspatialcomputing-001\\u002flecture\\u002fpreview --- Video Listing | Coursera --- 201...\"],[\"http:\\u002f\\u002fwww.soa.org\\u002fEducation\\u002fExam-Req\\u002fedu-asa-req.aspx --- SOA - Society of Actuaries - Associate of...\"],[\"http:\\u002f\\u002fblog.heavybit.com\\u002fblog\\u002f2014\\u002f12\\u002f10\\u002fold-school-reading-list --- Old School Reading for New Foun...\"],[\"http:\\u002f\\u002farchive.is\\u002fJvz85 --- :blog :cpp Nominal C++ --- 2017-05-12...\"],[\"https:\\u002f\\u002fgraph.microsoft.io\\u002fdocs --- Microsoft Graph - Documentation - overview --- 2017-05-12...\"],[\"https:\\u002f\\u002fopenknit.org\\u002f --- :arduino :cnc :robotics OpenKnit :opensource digital knitting --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbrucetoo\\u002fPinterestView --- GitHub - brucetoo\\u002fPinterestView: Pinterest like awesom...\"],[\"https:\\u002f\\u002fgithub.com\\u002frosarior\\u002fdjango-must-watch --- rosarior\\u002fdjango-must-watch · GitHub --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.moondragon.org\\u002fhealth\\u002fdisorders\\u002fheadache.html --- Pressure points for headaches - just in...\"],[\"http:\\u002f\\u002fwww.theverge.com\\u002f2013\\u002f11\\u002f14\\u002f5103820\\u002fcoin-electronic-card-to-hold-all-your-credit-cards --- Wa...\"],[\"http:\\u002f\\u002fwww.roguelynn.com\\u002f2012\\u002f05\\u002f20\\u002fgold-nuggets-my-bookmarks-collection\\u002f --- Gold Nuggets: My Bookm...\"],[\"http:\\u002f\\u002fwww.visualstudiolaunch.com\\u002fvs2012vle\\u002fHome --- Visual Studio 2012 Launch --- 2017-05-12...\"],[\"http:\\u002f\\u002flearningandyearning.com\\u002fherb-infused-oil --- You use herbs everyday. They are wonderful for a...\"],[\"http:\\u002f\\u002fnow.avg.com\\u002fmalware-is-still-spying-on-you-after-your-mobile-is-off\\u002f --- Malware Is Still Spy...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f274992\\u002f --- :green-economy heating with CO2 --- 2017-05-12...\"],[\"http:\\u002f\\u002fmysemanticsearch.codeplex.com\\u002f --- semantic search sample --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.huffingtonpost.com\\u002fjustine-calma\\u002fmeet-the-guy-who-builds-d_b_8842034.html --- Meet the Gu...\"],[\"http:\\u002f\\u002ftheownerbuildernetwork.co\\u002f9d9u --- How To Build A Parabolic Solar Oven http:\\u002f\\u002ftheownerbuilde...\"],[\"http:\\u002f\\u002fweocr.ocrgrid.org\\u002f --- WeOCR Project Home --- 2017-05-12...\"],[\"http:\\u002f\\u002feudyptula-challenge.org\\u002f --- :tutorials Eudyptula Challenge :linux kernel exersises --- 2017-...\"],[\"http:\\u002f\\u002fdavdroid.bitfire.at\\u002fwhat-is-davdroid --- davdroid.bitfire.at --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.coinbase.com\\u002f2015\\u002f10\\u002f25\\u002fbitcoin-killer-apps\\u002f --- Brainstorming the Future of Bitcoin Ap...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fsqlitebrowser\\u002f --- SourceForge.net: SQLite Database Browser --- 2017...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsquare\\u002fDagger --- square\\u002fdagger --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.rexegg.com\\u002f --- Regex Tutorial—From Regex 101 to Advanced Regex --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.engadget.com\\u002f2016\\u002f05\\u002f16\\u002fraspberry-pi-zero-camera-module\\u002f?sr_source=Facebook --- Raspberry...\"],[\"http:\\u002f\\u002fwww.iptech.kz\\u002fbesprovodnye-marshrutizatory\\u002f65-rb951ui-2hnd.html --- Mikrotik RB951Ui-2HnD БÐ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286428\\u002f --- :arduino vending machine --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ncbi.nlm.nih.gov\\u002fpubmed\\u002f25045886 --- Whole-organ tissue engineering: decellularization an...\"],[\"http:\\u002f\\u002fdocs.openlinksw.com\\u002fvirtuoso\\u002fvirtwhydoi.html --- Why Do I Need Virtuoso --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.verbalplanet.com\\u002ftutorhome.asp --- Teach Foreign Languages | Work Teaching Modern Languag...\"],[\"http:\\u002f\\u002fwww.paulnoll.com\\u002fBooks\\u002fClear-Speech\\u002findex.html --- Clear English Sounds --- 2017-05-12...\"],[\"http:\\u002f\\u002fnull-byte.wonderhowto.com\\u002fhow-to\\u002fhack-like-pro-ultimate-command-cheat-sheet-for-metasploits-m...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffsprojects\\u002fCricket --- GitHub - fsprojects\\u002fCricket: An actor framework for F# ---...\"],[\"http:\\u002f\\u002fdevteev.blogspot.ru\\u002f2014\\u002f03\\u002fyep-another-backdoor-in-active.html --- Ð’ тему ИБ: Yep! An...\"],[\"http:\\u002f\\u002fphrack.org\\u002fissues\\u002f49\\u002f14.html#article --- .:: Phrack Magazine ::. --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.linkedin.com\\u002fpulse\\u002fyou-want-hire-experienced-data-scientist-prepared-pay-richard-downes ...\"],[\"https:\\u002f\\u002fpanopticlick.eff.org --- Panopticlick --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002framnes\\u002fawesome-mongodb --- GitHub - ramnes\\u002fawesome-mongodb: A curated list of awe...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAzure\\u002famqpnetlite --- GitHub - Azure\\u002famqpnetlite: AMQP 1.0 .NET Client Library --...\"],[\"http:\\u002f\\u002fclojure.org\\u002freference\\u002ftransducers --- Clojure - Transducers --- 2017-05-12...\"],[\"http:\\u002f\\u002frecharts.org\\u002f --- Access denied | recharts.org used CloudFlare to restrict access --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002fshimat\\u002fopencvsharp --- GitHub - shimat\\u002fopencvsharp: .NET Framework wrapper for Op...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd233248.aspx --- Active Patterns (F#) --- 2017-05-12...\"],[\"http:\\u002f\\u002falexkehayias.tumblr.com\\u002fpost\\u002f28783286946\\u002fa-simple-real-time-chat-server-using-clojure-and ---...\"],[\"https:\\u002f\\u002fbitnami.com\\u002fstack\\u002falfresco --- Alfresco Cloud Hosting, Installers and Virtual Machines. ... ...\"],[\"http:\\u002f\\u002fwww.deeplearning.net\\u002fsoftware\\u002ftheano\\u002f --- Welcome &mdash; Theano 0.8.2 documentation --- 2017...\"],[\"http:\\u002f\\u002fantonioleiva.com\\u002fkotlin-android-developers\\u002f --- Kotlin for Android Developers: The book - Ant...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactive-Extensions\\u002fRxJSKoans --- GitHub - Reactive-Extensions\\u002fRxJSKoans: RxJS Ko...\"],[\"http:\\u002f\\u002fjlongster.com\\u002fTransducers.js--A-JavaScript-Library-for-Transformation-of-Data --- Transducers...\"],[\"https:\\u002f\\u002fgithub.com\\u002frazum2um\\u002fawesome-clojure --- GitHub - razum2um\\u002fawesome-clojure: A curated list of...\"],[\"https:\\u002f\\u002fwww.quora.com\\u002fWhat-are-the-greatest-programming-tips-and-tricks-you-have-learned-on-your-own...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fcitizen428\\u002ff75c6620651c727d0051 --- learning-clojure.markdown · GitHub --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmars0i\\u002fnetlogo-clojure --- GitHub - mars0i\\u002fnetlogo-clojure: NetLogo extension tha...\"],[\"https:\\u002f\\u002fgithub.com\\u002factive-group\\u002freacl --- GitHub - active-group\\u002freacl: ClojureScript library for int...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsshnet\\u002fSSH.NET --- GitHub - sshnet\\u002fSSH.NET: SSH.NET is a Secure Shell (SSH) libra...\"],[\"https:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fCascalog-Hadoop --- Cascalog: Logic Programming over Hadoop --- ...\"],[\"http:\\u002f\\u002fjr0cket.co.uk\\u002fslides\\u002feven-developers-can-present.html#\\u002f --- (Even Developers can Present) ---...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fdp\\u002fB00BFXKMPO\\u002fref=cm_sw_r_pi_dp_OVvutb1MFKA6H --- Welding for Beginners in Fab...\"],[\"https:\\u002f\\u002fmy.visualstudio.com\\u002fDownloads?PId=1962 --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=XxVg_s8xAms --- Introduction to React.js - YouTube --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbegriffs\\u002fimmutube --- GitHub - begriffs\\u002fimmutube: Youtube + functors, a most unli...\"],[\"https:\\u002f\\u002fgithub.com\\u002fadam-s\\u002fjs-interview-review --- GitHub - adam-s\\u002fjs-interview-review: The JS interv...\"],[\"http:\\u002f\\u002fwww.datatau.com\\u002f --- DataTau --- 2017-05-12...\"],[\"http:\\u002f\\u002fmurilopereira.com\\u002fthe-case-for-reactjs-and-clojurescript\\u002f#\\u002f89 --- The Case for React.js and C...\"],[\"http:\\u002f\\u002fspecsfor.com\\u002f --- Welcome - SpecsFor - The Best BDD Framework for .NET Developers! --- 2017-0...\"],[\"https:\\u002f\\u002fwww.agwa.name\\u002fblog\\u002fpost\\u002fduplicate_signature_key_selection_attack_in_lets_encrypt --- Duplica...\"],[\"https:\\u002f\\u002fgithub.com\\u002fApp-vNext\\u002fPolly --- GitHub - App-vNext\\u002fPolly: Polly is a .NET 3.5 \\u002f 4.0 \\u002f 4.5 \\u002f P...\"],[\"https:\\u002f\\u002fgithub.com\\u002fedx\\u002f --- edX · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdanielsz\\u002fsystem --- GitHub - danielsz\\u002fsystem: Reloaded components à la carte ... ...\"],[\"http:\\u002f\\u002fstackexchange.github.io\\u002fdapper-dot-net\\u002f --- Dapper-dot-net by StackExchange --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthangchung\\u002fawesome-dotnet-core --- GitHub - thangchung\\u002fawesome-dotnet-core: A col...\"],[\"https:\\u002f\\u002fkeminglabs.com\\u002fc2\\u002f --- C2: Clojure(Script) data visualization --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faboekhoff\\u002fcongomongo --- GitHub - aboekhoff\\u002fcongomongo: Clojure wrapper for the m...\"],[\"https:\\u002f\\u002fquizlet.com\\u002f --- Learning tools &amp; flashcards, for free | Quizlet --- 2017-05-12...\"],[\"http:\\u002f\\u002fpeople.maths.ox.ac.uk\\u002fpetit\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fGonzih\\u002fcljs-electron --- GitHub - Gonzih\\u002fcljs-electron: ClojureScript + Electron ...\"],[\"http:\\u002f\\u002fdmlc.cs.washington.edu\\u002fxgboost.html --- XGBoost --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPollard%27s_rho_algorithm --- Pollard's rho algorithm - Wikipedia, the...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftulos\\u002fmanifail --- GitHub - tulos\\u002fmanifail: Failure handling with Manifold --- 20...\"],[\"https:\\u002f\\u002fwww.gnu.org\\u002fsoftware\\u002fgawk\\u002fmanual\\u002fgawk.html --- The GNU Awk User&rsquo;s Guide --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.git.taler.net --- www.git.taler.net Git --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fVertical-Hydroponic-Farm\\u002f?ALLSTEPS --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fjsfiddle.net\\u002fstaltz\\u002f8jFJH\\u002f48\\u002f --- Intro to Rx - JSFiddle --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.docker.com\\u002f2016\\u002f03\\u002fdocker-for-mac-windows-beta\\u002f --- Docker for Mac and Windows Beta: th...\"],[\"https:\\u002f\\u002fwww.simple-talk.com\\u002fdotnet\\u002fasp.net\\u002fa-real-world-react.js-setup-for-asp.net-core-and-mvc5\\u002f --...\"],[\"http:\\u002f\\u002fpschwarz.bicycle.io\\u002fblog\\u002f2014\\u002f01\\u002f28\\u002fserial_access_via_clojure.html --- Serial Access via Cloj...\"],[\"https:\\u002f\\u002fstuartsierra.com\\u002f2013\\u002f03\\u002f29\\u002fperils-of-dynamic-scope --- On the Perils of Dynamic Scope &#821...\"],[\"http:\\u002f\\u002fdev.stephendiehl.com\\u002fhask\\u002f --- What I Wish I Knew When Learning Haskell 2.3 ( Stephen Diehl )...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhaiwen\\u002fseafile --- GitHub - haiwen\\u002fseafile: Open source cloud storage with file e...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fclojurescript\\u002fwiki\\u002fException-Handling --- Exception Handling · clojure\\u002fcl...\"],[\"http:\\u002f\\u002fcallnote.net\\u002f --- Callnote - Video Call Recorder | for Skype, Facebook, Google+ Hangout and V...\"],[\"https:\\u002f\\u002fwww.schoolofhaskell.com\\u002fschool\\u002fto-infinity-and-beyond\\u002fpick-of-the-week\\u002fsum-types --- Sum Typ...\"],[\"http:\\u002f\\u002fdocs.opencv.org\\u002f2.4\\u002fdoc\\u002ftutorials\\u002fintroduction\\u002fclojure_dev_intro\\u002fclojure_dev_intro.html --- I...\"],[\"http:\\u002f\\u002fdropbox.nakkaya.com\\u002fbuilds\\u002fferret-manual.html --- Ferret User's Guide --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fedn-format\\u002fedn --- GitHub - edn-format\\u002fedn: Extensible Data Notation --- 2017-05-...\"],[\"http:\\u002f\\u002fhome.pipeline.com\\u002f~hbaker1\\u002fUse1Var.html --- 'Use-Once' Variables and Linear Objects --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure-cookbook\\u002fcascalog-samples --- GitHub - clojure-cookbook\\u002fcascalog-samples:...\"],[\"http:\\u002f\\u002fnbviewer.jupyter.org\\u002f --- Jupyter Notebook Viewer --- 2017-05-12...\"],[\"http:\\u002f\\u002finfolab.stanford.edu\\u002f~ullman\\u002ffocs.html --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fjobs\\u002f67791\\u002ftake-part-in-our-residential-sustainable-energy-the-sustainables...\"],[\"http:\\u002f\\u002fblog.armbruster-it.de\\u002f2014\\u002f10\\u002fdeep-dive-on-fulltext-indexing-with-neo4j\\u002f --- deep dive on ful...\"],[\"https:\\u002f\\u002fgithub.com\\u002fzerokarmaleft\\u002fsimilarity --- GitHub - zerokarmaleft\\u002fsimilarity: A Cascalog librar...\"],[\"https:\\u002f\\u002fgithub.com\\u002fedn-format\\u002fedn\\u002fwiki\\u002fImplementations --- Implementations · edn-format\\u002fedn Wiki · G...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2013\\u002f01\\u002f10\\u002fa-clojure-autopilot-for-parrot-ar-drone\\u002f --- A Clojure Autopilot for P...\"],[\"https:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002fiot\\u002fhome --- IoT - Home | Intel® Developer Zone --- 2017-05-12...\"],[\"http:\\u002f\\u002fjotasapiens.com --- Jotasapiens --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.brunobonacci.com\\u002f2014\\u002f06\\u002f01\\u002fcascalog-by-examples-part1\\u002f --- Cascalog by examples (part 1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdotliquid\\u002fdotliquid --- GitHub - dotliquid\\u002fdotliquid: .NET Port of Tobias Lütke&#...\"],[\"https:\\u002f\\u002fwww.niwi.nz\\u002fcljs-workshop\\u002f --- ClojureScript Tutorial --- 2017-05-12...\"],[\"https:\\u002f\\u002fleastprivilege.com\\u002f2012\\u002f06\\u002f25\\u002fimportant-setting-the-client-principal-in-asp-net-web-api\\u002f ---...\"],[\"http:\\u002f\\u002fclojurecassandra.info\\u002f --- Cassaforte, a modern Clojure client for Apache Cassandra --- 2017-...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2011\\u002f03\\u002f23\\u002fstreaming-opencv-video-over-the-network-using-mjpeg\\u002f --- Streaming Ope...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fclojurescript\\u002fwiki\\u002fDependencies --- Dependencies · clojure\\u002fclojurescript ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthejameskyle\\u002fthe-super-tiny-compiler\\u002fblob\\u002fmaster\\u002fsuper-tiny-compiler.js --- the-s...\"],[\"http:\\u002f\\u002fgarduino.dirtnail.com\\u002f --- Garduino --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.graylog.org\\u002f --- Graylog | Open Source Log Management --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpeterschwarz\\u002fclj-gpio --- GitHub - peterschwarz\\u002fclj-gpio: A basic library for rea...\"],[\"http:\\u002f\\u002fcascalog.org\\u002f --- Cascalog | Data processing on Hadoop without the hassle --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.myclojureadventure.com\\u002f2012\\u002f01\\u002fintro-to-clojure-clr-creating-ui-with.html --- My Clojure ...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002fgoogleanalytics --- Google Analytics - GeekBooks - Free Tech PDF e...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpi3ch\\u002fssh_anysoftkeyboard --- GitHub - pi3ch\\u002fssh_anysoftkeyboard: SSH keyboard fo...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fborgesleonardo\\u002fhigh-performance-web-apps-in-om-react-and-clojurescript ---...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd233226.aspx --- Discriminated Unions (F#) --- 2017-05-12...\"],[\"https:\\u002f\\u002fjuxt.pro\\u002fradar.html --- JUXT Radar ... JUXT clj(s) Radar --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsemperos\\u002fclj-webdriver --- GitHub - semperos\\u002fclj-webdriver: Clojure API for Selen...\"],[\"https:\\u002f\\u002fshipilev.net\\u002fblog\\u002f2014\\u002fjmm-pragmatics\\u002f --- Java Memory Model Pragmatics (transcript) --- 201...\"],[\"http:\\u002f\\u002faxiom-developer.org\\u002f --- Axiom Computer Algebra System --- 2017-05-12...\"],[\"https:\\u002f\\u002fwiki.haskell.org\\u002fFRP --- Functional Reactive Programming - HaskellWiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fpublish.uwo.ca\\u002f~jbell\\u002fcatlogprime.pdf --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fhomepages.inf.ed.ac.uk\\u002fwadler\\u002fpapers\\u002fexpression\\u002fexpression.txt --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2016\\u002f06\\u002f10\\u002fferret-a-hard-real-time-clojure-for-lisp-machines\\u002f --- Ferret - A Hard...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcircleci\\u002flein-jarbin --- GitHub - circleci\\u002flein-jarbin --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffantasyland\\u002ffantasy-land --- GitHub - fantasyland\\u002ffantasy-land: Specification for...\"],[\"http:\\u002f\\u002fodetocode.com\\u002fblogs\\u002fscott\\u002farchive\\u002f2016\\u002f02\\u002f16\\u002fback-in-time-with-windows-iot.aspx --- Back In T...\"],[\"https:\\u002f\\u002fwww.ted.com\\u002ftalks\\u002fshimon_schocken_the_self_organizing_computer_course --- Shimon Schocken: T...\"],[\"https:\\u002f\\u002fvimeo.com\\u002f49718712 --- Rob Pike - &#039;Concurrency Is Not Parallelism&#039; on Vimeo --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDaveWM\\u002freagent-material-ui --- GitHub - DaveWM\\u002freagent-material-ui: Material UI c...\"],[\"http:\\u002f\\u002fwww.tutorialspoint.com\\u002fmongodb\\u002fmongodb_overview.htm --- MongoDB Overview --- 2017-05-12...\"],[\"http:\\u002f\\u002feprint.iacr.org\\u002f2016\\u002f386 --- Cryptology ePrint Archive: Report 2016\\u002f386 --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002framda\\u002framda\\u002fwiki --- Home · ramda\\u002framda Wiki · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpkrumins\\u002fthe-little-schemer --- GitHub - pkrumins\\u002fthe-little-schemer: All the Sch...\"],[\"http:\\u002f\\u002fblog.erratasec.com\\u002f2015\\u002f07\\u002fhow-to-build-your-own-proxyham.html --- Errata Security: How to bu...\"],[\"https:\\u002f\\u002fsaucelabs.com\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fmagazine\\u002fjj991977 --- Async\\u002fAwait - Best Practices in Asynchronous Progra...\"],[\"https:\\u002f\\u002fvimeo.com\\u002fcognitect\\u002fvideos --- Cognitect&rsquo;s Videos on Vimeo --- 2017-05-12...\"],[\"http:\\u002f\\u002fignaciothayer.com\\u002fpost\\u002fTransducers-Are-Fundamental\\u002f --- Transducers are fundamental --- 2017-...\"],[\"https:\\u002f\\u002fpdfbox.apache.org\\u002f --- Apache PDFBox | A Java PDF Library --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstuartsierra\\u002fcomponent --- GitHub - stuartsierra\\u002fcomponent: Managed lifecycle of ...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002fgpu-computing-gems-emerald-edition --- GPU Computing Gems, Emeral...\"],[\"http:\\u002f\\u002fgardenbot.org\\u002f --- GardenBot - open source garden automation project --- 2017-05-12...\"],[\"http:\\u002f\\u002fjonase.github.io\\u002fkibit-demo\\u002f --- Kibit --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.john2x.com\\u002fblog\\u002fblogging-with-orgmode.html --- Blogging with Orgmode --- 2017-05-12...\"],[\"https:\\u002f\\u002flaverna.cc\\u002f --- Laverna - keep your notes private --- 2017-05-12...\"],[\"https:\\u002f\\u002fdrboolean.gitbooks.io\\u002fmostly-adequate-guide\\u002fcontent\\u002f --- Introduction | mostly-adequate-guid...\"],[\"https:\\u002f\\u002fgithub.com\\u002fazure\\u002fazure-webjobs-sdk-samples --- GitHub - Azure\\u002fazure-webjobs-sdk-samples: Mic...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002falgo.monads --- GitHub - clojure\\u002falgo.monads --- 2017-05-12...\"],[\"https:\\u002f\\u002fhashrocket.com\\u002fblog\\u002fposts\\u002fusing-datomic-as-a-graph-database --- Using Datomic as a Graph Dat...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f173071\\u002f --- Почему стоит изучить Clojure? \\u002f Хабрахабр --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojure.org\\u002fjava_interop#Java%20Interop-The%20Dot%20special%20form --- Clojure - Java Interop...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f32573823\\u002fhow-to-use-signalr-in-android --- Access denied | stacko...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fdata.csv --- GitHub - clojure\\u002fdata.csv --- 2017-05-12...\"],[\"http:\\u002f\\u002fthehackernews.com\\u002f2016\\u002f10\\u002fnsa-crack-encryption.html --- Researchers Demonstrated How NSA Brok...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstrangeloop\\u002fclojurewest2013 --- GitHub - strangeloop\\u002fclojurewest2013: Clojure Wes...\"],[\"http:\\u002f\\u002fwww.skorks.com\\u002f2009\\u002f09\\u002fbash-shortcuts-for-maximum-productivity\\u002f --- Bash Shortcuts For Maximu...\"],[\"https:\\u002f\\u002fgithub.com\\u002fctford\\u002fvim-fireplace-easy --- GitHub - ctford\\u002fvim-fireplace-easy: A simple setup ...\"],[\"https:\\u002f\\u002fthreatpost.com\\u002fandroid-keystore-encryption-scheme-broken-researchers-say\\u002f119092\\u002f --- 403 For...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fQuadratic_sieve --- Quadratic sieve - Wikipedia, the free encyclopedia...\"],[\"http:\\u002f\\u002flearnyouahaskell.com\\u002fchapters --- Learn You a Haskell for Great Good! - Chapters ... Chapters...\"],[\"medium.com\\u002f@benbjohnson\\u002fgo-walkthrough-strconv-7a24632a9e73 --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojurerabbitmq.info\\u002f --- Langohr, an idiomatic Clojure RabbitMQ client | Clojure AMQP 0.9.1 ...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002fquerying-graphs-neo4j --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgitlab.com\\u002fricardojmendez\\u002frelevance --- Ricardo J. Mendez \\u002f Relevance · GitLab --- 2017-05-1...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fthis-massive-vpn-comparison-spreadsheet-helps-you-choos-1764427219 --- This Ma...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSubstructural_type_system --- Substructural type system - Wikipedia, t...\"],[\"http:\\u002f\\u002fwww.math.stonybrook.edu\\u002f~kirillov\\u002ftensor\\u002ftensor.html --- Lectures on tensor categories and mo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fxgrommx\\u002fawesome-redux --- GitHub - xgrommx\\u002fawesome-redux: Awesome list of Redux e...\"],[\"https:\\u002f\\u002fwww.crowdsupply.com\\u002fdesign-shift\\u002forwl --- ORWL - The First Open Source, Physically Secure Co...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSauermann\\u002femacs-aes --- GitHub - Sauermann\\u002femacs-aes: Emacs Lisp implementation o...\"],[\"https:\\u002f\\u002fpetabridge.com\\u002fblog\\u002ftop-akkadotnet-design-patterns\\u002f --- Access denied | petabridge.com used ...\"],[\"https:\\u002f\\u002fdnsleaktest.com --- DNS leak test --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.danlew.net\\u002f2014\\u002f09\\u002f15\\u002fgrokking-rxjava-part-1\\u002f --- Access denied | blog.danlew.net used C...\"],[\"https:\\u002f\\u002fdocs.asp.net\\u002fen\\u002flatest\\u002fsecurity\\u002fauthentication\\u002fazure-active-directory\\u002findex.html --- Azure A...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fGeneral_number_field_sieve --- General number field sieve - Wikipedia,...\"],[\"http:\\u002f\\u002fgreenteapress.com\\u002fthinkstats2\\u002fhtml\\u002findex.html --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002f31-quotes-launch-startup\\u002f --- [No Title] --- 2017-05-12...\"],[\"Boost the Performance of an AngularJS Application Using Immutable Data --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002fgetting-started-with-mqtt --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fclojure.zeef.com\\u002fvlad.bokov --- Clojure by Vlad Bokov | ZEEF --- 2017-05-12...\"],[\"http:\\u002f\\u002fdocs.oracle.com\\u002fjavase\\u002f7\\u002fdocs\\u002fapi\\u002fjava\\u002futil\\u002fzip\\u002fGZIPInputStream.html --- GZIPInputStream (Jav...\"],[\"Full --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogle\\u002fwycheproof --- GitHub - google\\u002fwycheproof: Project Wycheproof tests crypto...\"],[\"https:\\u002f\\u002fwww.livecoding.tv\\u002fslightlycyborg\\u002fvideos\\u002f --- Access denied | www.livecoding.tv used CloudFla...\"],[\"https:\\u002f\\u002fgithub.com\\u002fricardojmendez\\u002ftropology --- GitHub - ricardojmendez\\u002ftropology: Tropology is a Cl...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDatomic\\u002fday-of-datomic --- GitHub - Datomic\\u002fday-of-datomic: Sample Code for Day o...\"],[\"https:\\u002f\\u002fbsideup.gitbooks.io\\u002frxconnect\\u002fcontent\\u002f --- Introduction · RxConnect --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=8uHfMltTbqs --- Expert to Expert: Erik Meijer and Rich Hickey - Cloj...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftensorflow\\u002fmodels\\u002ftree\\u002fmaster\\u002fsyntaxnet --- models\\u002fsyntaxnet at master · tensorfl...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fCognitive-face-windows --- GitHub - Microsoft\\u002fCognitive-Face-Windows: W...\"],[\"http:\\u002f\\u002fwww.syncfusion.com\\u002fresources\\u002ftechportal\\u002febooks\\u002ffsharp --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fdocs.datomic.com\\u002ftutorial.html --- Tutorial | Datomic --- 2017-05-12...\"],[\"http:\\u002f\\u002ftheory.caltech.edu\\u002fpeople\\u002fpreskill\\u002fph229\\u002f --- Physics 219 Course Information --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjagregory\\u002ffluent-nhibernate\\u002fwiki --- Home · jagregory\\u002ffluent-nhibernate Wiki · Gi...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fMonad_(functional_programming) --- Monad (functional programming) - Wik...\"],[\"https:\\u002f\\u002fsimplewebrtc.com\\u002f --- SimpleWebRTC.js from &amp;yet --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.syncfusion.com\\u002fresources\\u002ftechportal\\u002febooks --- E-books | Resources | Syncfusion ... [No T...\"],[\"http:\\u002f\\u002fpracticalcryptography.com\\u002fcryptanalysis\\u002ftext-characterisation\\u002fstatistics\\u002f --- Practical Crypt...\"],[\"https:\\u002f\\u002frawgit.com\\u002floop-recur\\u002flambdajs\\u002fmaster\\u002fdocs\\u002fdocs.html --- Lambdajs Documentation --- 2017-05-...\"],[\"http:\\u002f\\u002fmakezine.com\\u002ftag\\u002fhomemade-tools\\u002f --- Access denied | makezine.com used CloudFlare to restrict...\"],[\"https:\\u002f\\u002fgithub.com\\u002fweavejester\\u002fcompojure --- GitHub - weavejester\\u002fcompojure: A concise routing libra...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fScope_(computer_science) --- Scope (computer science) - Wikipedia, the ...\"],[\"https:\\u002f\\u002fgithub.com\\u002flodash\\u002flodash\\u002fwiki\\u002fFP-Guide --- FP Guide · lodash\\u002flodash Wiki · GitHub --- 2017-0...\"],[\"http:\\u002f\\u002ferl.nfshost.com\\u002fstatic\\u002feuler.uberdoc.html --- About SyntaxHighlighter --- 2017-05-12...\"],[\"http:\\u002f\\u002fhortonworks.com\\u002fsearch-results\\u002f?search=.net --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002fcljsjs.github.io\\u002f --- Javascript Libraries packaged for ClojureScript --- 2017-05-12...\"],[\"https:\\u002f\\u002fwebpack.js.org\\u002fget-started\\u002f --- Access denied | webpack.js.org used CloudFlare to restrict a...\"],[\"http:\\u002f\\u002frespo.site --- Respo: an MVC library in ClojureScript --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flauripiispanen\\u002fangular-bacon --- GitHub - lauripiispanen\\u002fangular-bacon: Angular-b...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhdjirdeh\\u002fangular2-hn --- GitHub - hdjirdeh\\u002fangular2-hn: Angular 2 and RxJS powere...\"],[\"http:\\u002f\\u002fthinkrelevance.com\\u002fblog\\u002f2013\\u002f06\\u002f04\\u002fclojure-workflow-reloaded --- Blog | My Clojure Workflow, ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fomcljs\\u002fom-cookbook --- GitHub - omcljs\\u002fom-cookbook: Home of Om recipes --- 2017-0...\"],[\"http:\\u002f\\u002fconal.net\\u002fpapers\\u002ficfp97\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002ftinyurl.com\\u002fAngularJSJumpStart --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fscsibug\\u002ffeedparser-clj --- GitHub - scsibug\\u002ffeedparser-clj: Atom\\u002fRSS Feed Parsing...\"],[\"http:\\u002f\\u002fwww.samritchie.io\\u002fdynamic-cascalog-queries\\u002f --- Access denied | www.samritchie.io used CloudF...\"],[\"http:\\u002f\\u002fwww.creativedeletion.com\\u002f2015\\u002f01\\u002f28\\u002ffalsehoods-programmers-date-time-zones.html --- Falsehood...\"],[\"https:\\u002f\\u002fgithub.com\\u002fholiman\\u002floclass --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fIntroducingWindowsAzureWebJobs.aspx --- Introducing Windows Azure WebJ...\"],[\"http:\\u002f\\u002fdocs.opencv.org\\u002f3.0-beta\\u002fdoc\\u002fpy_tutorials\\u002fpy_calib3d\\u002fpy_table_of_contents_calib3d\\u002fpy_table_of...\"],[\"http:\\u002f\\u002fhdmipi.com\\u002f --- HDMIPi.com | Official Raspberry Pi Screen Launched | Just another WordPress s...\"],[\"https:\\u002f\\u002fgithub.com\\u002flynaghk\\u002fzmq-async --- GitHub - lynaghk\\u002fzmq-async: Threadsafe Clojure core.async i...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdakrone\\u002fcheshire --- GitHub - dakrone\\u002fcheshire: Clojure JSON and JSON SMILE (bina...\"],[\"http:\\u002f\\u002fgreeniq.co\\u002fproduct_tech.htm --- GreenIQ Smart Garden Hub - The System Technology --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjonase\\u002fkibit --- GitHub - jonase\\u002fkibit: There&#39;s a function for that! --- 2017...\"],[\"https:\\u002f\\u002fgithub.com\\u002fztellman\\u002fvertigo --- GitHub - ztellman\\u002fvertigo: heterogeneous structs for clojure...\"],[\"https:\\u002f\\u002fdocs.mongodb.com\\u002fecosystem\\u002fuse-cases\\u002f --- Use Cases --- 2017-05-12...\"],[\"http:\\u002f\\u002fnutch.apache.org\\u002f --- Welcome to Apache Nutchâ„¢ ... Apache Nutch&trade; - --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002farcadia-unity --- Arcadia · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdakrone\\u002fcld --- GitHub - dakrone\\u002fcld: Language detection for Clojure --- 2017-05-...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fff524512%28v=vs.93%29.aspx --- Getting Started (Solver Foun...\"],[\"http:\\u002f\\u002fwww.nvidia.ru\\u002fobject\\u002fjetson-tx1-dev-kit-ru.html --- Платформа для разработки встраиваемых сис...\"],[\"https:\\u002f\\u002fblog.process-one.net\\u002fembedding-ejabberd-into-an-elixir-phoenix-web-application\\u002f --- Embeddin...\"],[\"http:\\u002f\\u002fclojure.org\\u002fapi\\u002fcheatsheet --- Clojure - Cheatsheet --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.captechconsulting.com\\u002fblogs\\u002fgetting-started-with-rxjava-and-android --- Getting Started w...\"],[\"http:\\u002f\\u002fthenewstack.io\\u002ftutorial-prototyping-a-sensor-node-and-iot-gateway-with-arduino-and-raspberry-...\"],[\"http:\\u002f\\u002fwww.openmanufacturing.net --- --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fKotlin\\u002fkotlin-koans --- GitHub - Kotlin\\u002fkotlin-koans: Kotlin workshop --- 2017-05...\"],[\"https:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fGoldbug --- Goldbug - Wikibooks, open books for an open world --- 2017...\"],[\"http:\\u002f\\u002fwww.gamedev.net\\u002fpage\\u002fresources\\u002f_\\u002ftechnical\\u002fgeneral-programming\\u002ffinite-state-machines-and-regu...\"],[\"http:\\u002f\\u002fwww.braveclojure.com\\u002f --- Learn to Program the World's Most Bodacious Language with Clojure f...\"],[\"https:\\u002f\\u002fwww.consul.io\\u002f --- Consul by HashiCorp --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fZ3Prover\\u002fz3 --- GitHub - Z3Prover\\u002fz3: The Z3 Theorem Prover --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fricardojmendez\\u002fKinect2Remote --- GitHub - ricardojmendez\\u002fKinect2Remote: Remote tr...\"],[\"http:\\u002f\\u002fjavascriptissexy.com\\u002fjavascript-apply-call-and-bind-methods-are-essential-for-javascript-prof...\"],[\"https:\\u002f\\u002fgithub.com\\u002fztellman\\u002fgloss --- GitHub - ztellman\\u002fgloss: speaks in bytes, so you don&#39;t hav...\"],[\"http:\\u002f\\u002feslint.org --- ESLint - Pluggable JavaScript linter --- 2017-05-12...\"],[\"http:\\u002f\\u002fmongodb.github.io\\u002fmongo-csharp-driver\\u002f2.2\\u002freference\\u002fdriver\\u002fdefinitions\\u002f#array-operators --- D...\"],[\"https:\\u002f\\u002fpilemd.com\\u002f --- PileMd: Think with you --- 2017-05-12...\"],[\"https:\\u002f\\u002fwiki.haskell.org\\u002fIntroduction_to_QuickCheck2 --- Introduction to QuickCheck2 - HaskellWiki -...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=MOSHBbSddz4 --- iRobot Roomba Battery Rebuild - YouTube --- 2017-05-...\"],[\"http:\\u002f\\u002fdatalog.sourceforge.net\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fchannel9.msdn.com\\u002fShows\\u002fVisual-Studio-Toolbox\\u002fBuilding-a-Windows-10-IOT-App --- Building a W...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmadvas\\u002fcljs-react-material-ui --- GitHub - madvas\\u002fcljs-react-material-ui: Clojure...\"],[\"https:\\u002f\\u002fprocessing.org\\u002ftutorials\\u002f --- Tutorials \\\\ Processing.org --- 2017-05-12...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002fclosure\\u002flibrary\\u002fdocs\\u002fintroduction --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojurewerkz.org\\u002f --- Clojure libraries for MongoDB, RabbitMQ, validations, Neo4J, ElasticSea...\"],[\"http:\\u002f\\u002fhangfire.io\\u002f --- Hangfire – Background jobs and workers for ASP.NET --- 2017-05-12...\"],[\"http:\\u002f\\u002ftromp.github.io\\u002fcl\\u002fcl.html --- John's Combinatory Logic Playground --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.hongkiat.com\\u002fblog\\u002ffree-android-spy-apps\\u002f --- 10 Best Free Spy Apps For Your Android Devic...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fdata.finger-tree --- GitHub - clojure\\u002fdata.finger-tree: Finger Tree data ...\"],[\"http:\\u002f\\u002forgmode.org\\u002f --- Org mode for Emacs &#x2013; Your Life in Plain Text --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsmuellerDD\\u002fchacha20_drng --- GitHub - smuellerDD\\u002fchacha20_drng: ChaCha20 DRNG ---...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002fapache-spark --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fptaoussanis\\u002fcarmine --- GitHub - ptaoussanis\\u002fcarmine: Redis client and message qu...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd233182.aspx --- Computation Expressions (F#) --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fPascalCoin\\u002fPascalCoin --- GitHub - PascalCoin\\u002fPascalCoin: P2P cryptocurrency with...\"],[\"https:\\u002f\\u002fwww.sentinelone.com\\u002fblogs\\u002fteaching-an-old-rat-new-tricks\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002freactjs.co\\u002f --- ReactJS Amazing Free Guide. React Redux Free Book, Blog and Tutorial --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fianrumford\\u002fclojure-transducer-examples\\u002fblob\\u002fmaster\\u002fdoc\\u002f2014-08-08-Some-trivial-ex...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fException_handling --- Exception handling - Wikipedia, the free encycl...\"],[\"https:\\u002f\\u002fwww.tagspaces.org\\u002f --- TagSpaces - Your Hackable File Organizer --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002fr --- R - GeekBooks - Free Tech PDF eBook Library --- 2017-05-12...\"],[\"http:\\u002f\\u002ffacebook.github.io\\u002freact\\u002fdocs\\u002freusable-components.html --- Reusable Components | React --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjtoy\\u002fawesome-tensorflow\\u002f --- GitHub - jtoy\\u002fawesome-tensorflow: TensorFlow - A cur...\"],[\"https:\\u002f\\u002fnakkaya.com\\u002f2010\\u002f06\\u002f15\\u002fclojure-io-cookbook\\u002f --- Clojure I\\u002fO Cookbook --- 2017-05-12...\"],[\"https:\\u002f\\u002fleanpub.com\\u002fjavascriptallongesix --- JavaScript… by Reg “raganwald” Braithwaite [PDF\\u002fiPad\\u002fK...\"],[\"http:\\u002f\\u002fminikanren.org\\u002f --- miniKanren.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fnorvig.com\\u002fsudoku.html --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjlongster\\u002ftransducers.js --- GitHub - jlongster\\u002ftransducers.js: A small library f...\"],[\"http:\\u002f\\u002fadit.io\\u002fposts\\u002f2013-04-17-functors,_applicatives,_and_monads_in_pictures.html --- Functors, Ap...\"],[\"http:\\u002f\\u002fblog.yhat.com\\u002fposts\\u002fautonomous-droning-with-python.html --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fpeople.eecs.berkeley.edu\\u002f~bh\\u002fss-toc2.html --- [No Title] ... :free :books :scheme :lisp Simp...\"],[\"http:\\u002f\\u002fwww.meetup.com\\u002fClojure-Toronto\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002freflux\\u002frefluxjs --- GitHub - reflux\\u002frefluxjs: A simple library for uni-directiona...\"],[\"http:\\u002f\\u002fclojure.org\\u002fabout\\u002fclojurescript --- Clojure - ClojureScript --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.linux.com\\u002fblog\\u002frise-deep-learning-tech-industry --- The Rise of Deep Learning in the Tec...\"],[\"https:\\u002f\\u002fegghead.io\\u002fseries\\u002fcycle-js-fundamentals --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2009\\u002f11\\u002f16\\u002fjava-native-access-from-clojure\\u002f --- Java Native Access from Clojure -...\"],[\"https:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fethereum\\u002fcomments\\u002f3vxvlx\\u002fstarter_guide_almost_all_the_links_youll_need_to\\u002f ...\"],[\"https:\\u002f\\u002fwww.udacity.com\\u002fcourse\\u002fdata-wrangling-with-mongodb--ud032 --- Data Wrangling with MongoDB | ...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f222737\\u002f --- Как я написал web-приложение, используя только clojure \\u002f Хабра...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure-android\\u002fneko --- GitHub - clojure-android\\u002fneko: The Clojure\\u002fAndroid Toolk...\"],[\"https:\\u002f\\u002fcylonjs.com\\u002f --- Access denied | cylonjs.com used CloudFlare to restrict access --- 2017-05-...\"],[\"http:\\u002f\\u002fbriancarper.net\\u002ftag\\u002f49.html --- briancarper.net (λ) - Tag Origami --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.reactboilerplate.com --- React.js Boilerplate --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.learnrxjs.io\\u002f --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fhome.pipeline.com\\u002f~hbaker1\\u002fLBoyer.html --- ACM Sigplan Lisp Pointers VI, 4 (Oct\\u002fDec 1993), 3-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthejameskyle\\u002fbabel-handbook --- GitHub - thejameskyle\\u002fbabel-handbook: A guided ha...\"],[\"http:\\u002f\\u002fteropa.info\\u002fblog\\u002f2015\\u002f09\\u002f10\\u002ffull-stack-redux-tutorial.html --- Full-Stack Redux Tutorial --- ...\"],[\"bacon.js bindings for angularJs --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactTraining\\u002freact-router --- GitHub - ReactTraining\\u002freact-router: Declarative r...\"],[\"https:\\u002f\\u002fmyfacedetection.codeplex.com\\u002f --- My Face Detection - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.babbel.com\\u002fen\\u002fmagazine\\u002flearn-any-language-in-your-hometown --- 7 Tricks To Learn Any Lan...\"],[\"https:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fClojure\\u002fcomments\\u002f4uvcp4\\u002fjust_got_my_first_clojure_job_any_tips_for\\u002f --- Too...\"],[\"http:\\u002f\\u002ffuncool.github.io\\u002fclojurescript-unraveled\\u002f --- ClojureScript Unraveled --- 2017-05-12...\"],[\"https:\\u002f\\u002fmyminutes.wordpress.com\\u002f2013\\u002f10\\u002f22\\u002fsimple-caldav4j-example-in-java-and-clojure\\u002f --- Simple c...\"],[\"http:\\u002f\\u002ftech.metail.com\\u002fthink-stats-in-clojure-i\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002fblogs.msdn.microsoft.com\\u002fdotnet\\u002f2016\\u002f06\\u002f27\\u002fannouncing-net-core-1-0\\u002f --- Announcing .NET Core...\"],[\"https:\\u002f\\u002fdevcenter.heroku.com\\u002farticles\\u002fclojure-web-application --- Building a Database-Backed Clojure...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAzure\\u002fazure-quickstart-templates\\u002ftree\\u002fmaster\\u002fblockchain --- azure-quickstart-temp...\"],[\"http:\\u002f\\u002fnode-ardx.org\\u002f --- Arduino Experimenter&#39;s Guide for NodeJS --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fcore.logic\\u002f --- GitHub - clojure\\u002fcore.logic --- 2017-05-12...\"],[\"https:\\u002f\\u002fsafecurves.cr.yp.to --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.langorigami.com\\u002fpublications\\u002fmy-books --- my-books | Robert J. Lang Origami --- 2017-05-1...\"],[\"http:\\u002f\\u002fdocs.datomic.com\\u002fquery.html --- Datomic Queries and Rules | Datomic --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSparkFund\\u002fspec-tacular --- GitHub - SparkFund\\u002fspec-tacular: Make the border betwe...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhugoduncan\\u002fcriterium --- GitHub - hugoduncan\\u002fcriterium: Benchmarking library for ...\"],[\"http:\\u002f\\u002fblog.screen6.io\\u002fpost\\u002f57428073723\\u002fintroduction-to-testing-cascalog-with-midje --- Screen6 — In...\"],[\"https:\\u002f\\u002fdocs.mongodb.org\\u002fmanual\\u002freference\\u002foperator\\u002fquery\\u002ftext\\u002f --- $text &mdash; MongoDB Manual 3.2 ...\"],[\"http:\\u002f\\u002focw.mit.edu\\u002fcourses\\u002felectrical-engineering-and-computer-science\\u002f6-849-geometric-folding-algor...\"],[\"https:\\u002f\\u002fgithub.com\\u002fibaydan\\u002fKeyLogger\\u002fblob\\u002fmaster\\u002fProgram.cs --- KeyLogger\\u002fProgram.cs at master · iba...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f20947191\\u002fusing-reactjs-with-angularjs --- Access denied | stackov...\"],[\"http:\\u002f\\u002flangintro.com\\u002ficljs\\u002findex.html --- Transforming Data with ClojureScript &mdash; Transforming ...\"],[\"http:\\u002f\\u002fdragan.rocks\\u002ftalks\\u002fEuroClojure2016\\u002fclojure-is-not-afraid-of-the-gpu.html --- Clojure is not a...\"],[\"https:\\u002f\\u002fgithub.com\\u002fibdknox\\u002fjayq --- GitHub - ibdknox\\u002fjayq: A ClojureScript wrapper for jQuery --- 20...\"],[\"https:\\u002f\\u002fccrma.stanford.edu\\u002f~jos\\u002fsasp\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenmymind.net\\u002fmongly\\u002f --- The MongoDB Collection --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.lispmachine.net\\u002f --- LISP Information and Resources --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fninya-io\\u002fninya.io --- GitHub - ninya-io\\u002fninya.io: Find StackOverflow users near y...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002ftools.trace --- GitHub - clojure\\u002ftools.trace: 1.3 update of clojure.contr...\"],[\"http:\\u002f\\u002freagent-project.github.io --- Reagent: Minimalistic React for ClojureScript --- 2017-05-12...\"],[\"https:\\u002f\\u002fangular-ui.github.io\\u002fbootstrap\\u002f#\\u002fgetting_started --- Angular directives for Bootstrap --- 20...\"],[\"http:\\u002f\\u002fwww.braveclojure.com\\u002fmultimethods-records-protocols\\u002f --- Creating and Extending Abstractions ...\"],[\"https:\\u002f\\u002fchristopherdbui.com\\u002fclojure-idioms\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgroups.google.com\\u002fforum\\u002fmessage\\u002fraw?msg=alt.privacy.anon-server\\u002f6Wi2iYiww4I\\u002fM99otqs0PwcJ ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure-android\\u002flein-droid\\u002fwiki\\u002fTutorial --- Tutorial · clojure-android\\u002flein-droi...\"],[\"https:\\u002f\\u002fwww.tensorflow.org\\u002fversions\\u002fr0.7\\u002ftutorials\\u002fword2vec\\u002findex.html --- Vector Representations of...\"],[\"http:\\u002f\\u002fwww.upgradingdave.com\\u002fblog\\u002findex.html --- Upgrading Dave --- 2017-05-12...\"],[\"http:\\u002f\\u002fcommons.apache.org\\u002fproper\\u002fcommons-daemon\\u002fprocrun.html --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002focw.mit.edu\\u002fcourses\\u002felectrical-engineering-and-computer-science\\u002f6-001-structure-and-interpret...\"],[\"http:\\u002f\\u002fprobabilistic-programming.org\\u002fwiki\\u002fHome --- Probabilistic Programming --- 2017-05-12...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002famqp-essentials --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fvvvvalvalval.github.io\\u002fposts\\u002f2016-07-24-datomic-web-app-a-practical-guide.html --- Val on Pro...\"],[\"https:\\u002f\\u002fgithub.com\\u002fxgrommx\\u002fawesome-functional-programming --- GitHub - xgrommx\\u002fawesome-functional-pr...\"],[\"https:\\u002f\\u002fgithub.com\\u002fplumatic\\u002fhiphip --- GitHub - plumatic\\u002fhiphip: hiphip (array)! simple, performant ...\"],[\"https:\\u002f\\u002fyada.juxt.pro\\u002findex.html --- yada --- 2017-05-12...\"],[\"blog.revolutionanalytics.com\\u002f2016\\u002f08\\u002ffive-great-charts-in-5-lines-of-r-code-each.html --- [No Title]...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftsgates\\u002fmbox --- GitHub - tsgates\\u002fmbox: A lightweight sandbox tool for non-root u...\"],[\"https:\\u002f\\u002fgithub.com\\u002flosttime\\u002fcooper --- GitHub - losttime\\u002fcooper: Lightweight client for simple remot...\"],[\"http:\\u002f\\u002fwww.sqlkorma.com\\u002f --- sqlkorma --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmalyn\\u002ffigwheel-node-template --- GitHub - malyn\\u002ffigwheel-node-template: Leiningen...\"],[\"http:\\u002f\\u002fjsfiddle.net\\u002fvjeux\\u002fkb3gN\\u002f --- Edit fiddle - JSFiddle --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.datomic.com\\u002f2015\\u002f01\\u002fdatalog-enhancements.html --- Datomic: More Power for Datomic Datalo...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fee370239.aspx --- List.reduce&lt;'T&gt; Function (F#) --- 20...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fvstudio\\u002fhh388569 --- Visual F# --- 2017-05-12...\"],[\"http:\\u002f\\u002fnorvig.com\\u002fdesign-patterns\\u002fdesign-patterns.pdf --- 403 Forbidden --- 2017-05-12...\"],[\"http:\\u002f\\u002fthefutureisbright.net\\u002fgame.php --- TFIB - The Game of Phishing --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fUltra-wideband --- Ultra-wideband - Wikipedia, the free encyclopedia -...\"],[\"http:\\u002f\\u002fdevelopers.gausstoys.com\\u002fapps\\u002fdesktop --- GaussSense Desktop - GaussToys Developers --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdrcode\\u002fclll --- GitHub - drcode\\u002fclll: Run Ethereum LLL contract code directly in ...\"],[\"http:\\u002f\\u002falexrobbins.github.io\\u002fcascalog-intro\\u002f#\\u002fstep-1 --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fnlp.stanford.edu\\u002fsoftware\\u002findex.shtml --- Software - The Stanford Natural Language Processing...\"],[\"https:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fhjt\\u002f --- HiJackThis | SourceForge.net --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fExploringServiceStacksSimpleAndFastWebServicesOnNETCore.aspx --- Explo...\"],[\"https:\\u002f\\u002fxakep.ru\\u002f2016\\u002f04\\u002f20\\u002fandroid-api\\u002f? --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002faudio --- Audio - GeekBooks - Free Tech PDF eBook Library --- 2017...\"],[\"http:\\u002f\\u002fwww.usingcsp.com\\u002f --- Index of \\u002f --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbreach\\u002fthrust --- GitHub - breach\\u002fthrust: Chromium-based cross-platform \\u002f cross-l...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpelle\\u002fcloth --- GitHub - pelle\\u002fcloth: Simple Ethereum library for Clojure(Script...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkhinsen\\u002fmonads-in-clojure --- GitHub - khinsen\\u002fmonads-in-clojure: Konrad Hinsen&#...\"],[\"https:\\u002f\\u002fgithub.com\\u002frileyteige\\u002flearn-react-js --- GitHub - rileyteige\\u002flearn-react-js: Learning ReactJ...\"],[\"https:\\u002f\\u002fegghead.io\\u002flessons\\u002fjavascript-redux-the-single-immutable-state-tree --- Redux: The Single Im...\"],[\"https:\\u002f\\u002flambdaisland.com\\u002fguides\\u002fclojure-repls\\u002f --- The Ultimate Guide To Clojure REPLs | The Ultimat...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMostlyAdequate\\u002fmostly-adequate-guide\\u002ftree\\u002fmaster\\u002fcode --- mostly-adequate-guide\\u002fc...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffogus\\u002fbacwn --- GitHub - fogus\\u002fbacwn: clojure + datalog = &lt;3 --- 2017-05-12...\"],[\"https:\\u002f\\u002fwebtorrent.io\\u002fdesktop\\u002f --- WebTorrent Desktop --- 2017-05-12...\"],[\"http:\\u002f\\u002fz.caudate.me\\u002fhara-security-making-sense-of-the-jca\\u002f --- hara.security - making sense of the J...\"],[\"https:\\u002f\\u002ffortawesome.github.io\\u002fFont-Awesome\\u002f --- Font Awesome, the iconic font and CSS toolkit --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fichpuchtli\\u002fawesome-rxjs --- GitHub - ichpuchtli\\u002fawesome-rxjs: A collection of awe...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcontinuumsecurity\\u002fbdd-security --- GitHub - continuumsecurity\\u002fbdd-security: BDD A...\"],[\"https:\\u002f\\u002flearngraphql.com\\u002fbasics\\u002fintroduction --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.oreilly.com\\u002flearning\\u002ftensorflow-for-poets --- TensorFlow for poets - O'Reilly Media ... ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fyieldbot\\u002fflambo --- GitHub - yieldbot\\u002fflambo: A Clojure DSL for Apache Spark --- ...\"],[\"http:\\u002f\\u002fwww.mase.io\\u002fcode\\u002fclojure\\u002fnode\\u002f2015\\u002f01\\u002f24\\u002fgetting-started-with-clojurecript-and-node\\u002f --- Gett...\"],[\"http:\\u002f\\u002fkotlin.link\\u002f --- Kotlin is Awesome! --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmichaelklishin\\u002fpantomime --- GitHub - michaelklishin\\u002fpantomime: A tiny Clojure li...\"],[\"https:\\u002f\\u002freactjs.net\\u002fgetting-started\\u002ftutorial.html --- Tutorial (ASP.NET Core) | ReactJS.NET --- 2017...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002fquant-ph\\u002f0402130 --- [quant-ph\\u002f0402130] A categorical semantics of quantum pro...\"],[\"http:\\u002f\\u002frobotframework.org --- Robot Framework --- 2017-05-12...\"],[\"https:\\u002f\\u002fdzone.com\\u002farticles\\u002fusing-lucene-and-cascalog-fast --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftldr-pages\\u002ftldr\\u002f --- GitHub - tldr-pages\\u002ftldr: Simplified and community-driven ma...\"],[\"https:\\u002f\\u002fgithub.com\\u002freactjs\\u002fredux\\u002f --- GitHub - reactjs\\u002fredux: Predictable state container for JavaSc...\"],[\"http:\\u002f\\u002fhoplon.io\\u002f --- Hoplon, a ClojureScript Web Framework ... :clojure :webdev Hoplon, a ClojureSc...\"],[\"http:\\u002f\\u002fwww.cs.ox.ac.uk\\u002fpeople\\u002fsamson.abramsky\\u002fcalco05.pdf --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fF_Sharp_Programming --- F# Programming - Wikibooks, open books for an o...\"],[\"http:\\u002f\\u002fgisgeography.com\\u002ftop-6-free-lidar-data-sources\\u002f --- Top 6 Free LiDAR Data Sources - GIS Geogr...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002fcreating-supercomputer --- Creating a Supercomputer | PACKT B...\"],[\"http:\\u002f\\u002fwww.myclojureadventure.com\\u002fp\\u002fclojureclr-ports-page-purpose-of-this.html --- My Clojure Advent...\"],[\"https:\\u002f\\u002fgithub.com\\u002fawkay\\u002fom-tutorial --- GitHub - awkay\\u002fom-tutorial: WORK IN PROGRESS --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.raspberrypi.org\\u002fforums\\u002fviewtopic.php?t=51574 --- Raspberry Pi &bull; View topic - iStoof...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fRational_sieve --- Rational sieve - Wikipedia, the free encyclopedia -...\"],[\"http:\\u002f\\u002fswagger.io\\u002fgetting-started\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftimgalebach\\u002fclj-workflow-template --- GitHub - timgalebach\\u002fclj-workflow-template:...\"],[\"https:\\u002f\\u002fwww.systemcodegeeks.com\\u002fshell-scripting\\u002fbash\\u002flinux-cut-examples\\u002f --- Access denied | www.sys...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fRandom_number_generation#Computational_methods --- Random number genera...\"],[\"https:\\u002f\\u002fdeals.sourceforge.net\\u002fsales\\u002fthe-ultimate-python-web-development-bundle --- [No Title] --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstaltz\\u002fawesome-react#react-and-haskell --- GitHub - staltz\\u002fawesome-react: A colle...\"],[\"http:\\u002f\\u002fclojuredocs.org --- Community-Powered Clojure Documentation and Examples | ClojureDocs --- 20...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fsearch?q=alfresco --- Search Results - GeekBooks - Free Tech PDF eBook Libr...\"],[\"http:\\u002f\\u002ffkettelhoit.github.io\\u002fbottom-up-datalog-js\\u002fdocs\\u002fdl.html --- Bottom Up Datalog --- 2017-05-12...\"],[\"https:\\u002f\\u002fblogs.windows.com\\u002fbuildingapps\\u002f2016\\u002f09\\u002f02\\u002fannouncing-intel-joule-support-in-windows-10-iot-c...\"],[\"http:\\u002f\\u002fhackingdistributed.com\\u002f2016\\u002f06\\u002f18\\u002fanalysis-of-the-dao-exploit\\u002f --- Analysis of the DAO exploi...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnetblue30\\u002ffirejail --- GitHub - netblue30\\u002ffirejail: Linux namespaces and seccomp-...\"],[\"https:\\u002f\\u002fdeveloper.xamarin.com\\u002fguides\\u002fxamarin-forms\\u002fcreating-mobile-apps-xamarin-forms\\u002f --- Creating ...\"],[\"https:\\u002f\\u002fcomponents.xamarin.com\\u002fgettingstarted\\u002frxforxamarin --- Getting Started with Reactive Extensi...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnathanmarz\\u002fstorm-deploy --- GitHub - nathanmarz\\u002fstorm-deploy: One click deploy fo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fantoniogarrote\\u002fclj-tesseract --- GitHub - antoniogarrote\\u002fclj-tesseract: Clojure w...\"],[\"https:\\u002f\\u002fgithub.com\\u002funcomplicate\\u002fbayadera --- GitHub - uncomplicate\\u002fbayadera --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojuremongodb.info\\u002f --- Monger, a MongoDB Clojure client for a more civilized age | MongoDB ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpcarrasco23\\u002fFootlooseFinancialServices --- GitHub - pcarrasco23\\u002fFootlooseFinancia...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?q=site:langorigami.com+filetype:pdf --- Error 403 (Forbidden)!!1 --- 20...\"],[\"http:\\u002f\\u002fwww.extremetech.com\\u002finternet\\u002f180485-the-ultimate-guide-to-staying-anonymous-and-protecting-yo...\"],[\"https:\\u002f\\u002fvc.ru\\u002fp\\u002fit-grants-usa --- ИТ-образование в США: стипендии и условия их получения --- 2017-05...\"],[\"https:\\u002f\\u002fwww.oreilly.com\\u002flearning\\u002fintro-to-react-and-effective-design-patterns --- Intro to React and...\"],[\"https:\\u002f\\u002fdocs.getexponent.com\\u002fversions\\u002fv11.0.0\\u002findex.html --- Learn Exponent &mdash; Exponent v11.0.0...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002fhacking-raspberry-pi-project-understand-electronics-first ---...\"],[\"http:\\u002f\\u002fwww.datomic.com\\u002ftraining.html --- Training - Datomic --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fLightTable\\u002fLightTable --- GitHub - LightTable\\u002fLightTable: The Light Table IDE ---...\"],[\"http:\\u002f\\u002fs13.zetaboards.com\\u002fCrypto\\u002ftopic\\u002f7234475\\u002f1\\u002f --- PROVABLEPRIME, Generation of provable primes w...\"],[\"https:\\u002f\\u002fgithub.com\\u002fweavejester\\u002fclout --- GitHub - weavejester\\u002fclout: HTTP route-matching library for...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNancyFx\\u002fNancy --- GitHub - NancyFx\\u002fNancy: Lightweight, low-ceremony, framework fo...\"],[\"https:\\u002f\\u002fvimeo.com\\u002fchannels\\u002ffulldisclojure --- Full Disclojure on Vimeo --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojure.org\\u002fguides\\u002fthreading_macros --- Clojure - Threading Macros Guide --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fptaoussanis\\u002fnippy --- GitHub - ptaoussanis\\u002fnippy: High-performance serialization ...\"],[\"https:\\u002f\\u002focw.mit.edu\\u002fcourses\\u002fmathematics\\u002f18-435j-quantum-computation-fall-2003\\u002f --- Quantum Computati...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnathanmarz\\u002fcascalog\\u002ftree\\u002fdevelop\\u002fcascalog-checkpoint --- cascalog\\u002fcascalog-checkp...\"],[\"http:\\u002f\\u002fexploringjs.com\\u002fes6\\u002f --- Exploring ES6 --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fintl\\u002fru\\u002ftraining\\u002farticles\\u002fperf-tips.html --- Performance Tips | Android...\"],[\"https:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fclojure --- Too Many Requests --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fStackExchange\\u002fdapper-dot-net --- StackExchange\\u002fdapper-dot-net · GitHub ... GitHu...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002fdigital-audio-editing-fundamentals --- Digital Audio Editing Fund...\"],[\"http:\\u002f\\u002fblog.yhat.com\\u002fposts\\u002fmoving-from-r-to-python.html --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002falexott\\u002fclojure-hadoop --- GitHub - alexott\\u002fclojure-hadoop: Library to aid writin...\"],[\"http:\\u002f\\u002fwww.cs.ox.ac.uk\\u002fpeople\\u002fbob.coecke\\u002fAbrNikos.pdf --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002ffrom-relational-to-graph-a-developers-guide --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002frprogramming.net\\u002f --- R Programming Help, How To&#039;s, and Examples | RProgramming.net --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fweavejester\\u002fclj-aws-s3 --- GitHub - weavejester\\u002fclj-aws-s3: S3 client library for...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsocioboard\\u002fsocioboard-core --- GitHub - socioboard\\u002fsocioboard-core: Socioboard is...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstrangeloop\\u002fclojurewest2012-slides --- GitHub - strangeloop\\u002fclojurewest2012-slide...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fhh967652.aspx --- F# Collection Types --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fStockSharp\\u002fStockSharp --- GitHub - StockSharp\\u002fStockSharp: Algorithmic trading and...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsemperos\\u002fclj-webdriver\\u002fwiki --- Home · semperos\\u002fclj-webdriver Wiki · GitHub --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002fF-Secure\\u002fmittn --- GitHub - F-Secure\\u002fmittn: Mittn: Security test tool runner for ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpcl-ru\\u002fpcl-ru --- GitHub - pcl-ru\\u002fpcl-ru --- 2017-05-12...\"],[\"https:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fdocumentation\\u002farticles\\u002fdata-factory-build-your-first-pipeline\\u002f ---...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002fiot-applications-with-java-and-raspberry-pi --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDatomic\\u002fsimulant\\u002fwiki --- Home · Datomic\\u002fsimulant Wiki · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002f3D-camera-with-Raspberry-Pi\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fstuarth.github.io\\u002fpixie\\u002fpixie-pi\\u002f --- Pixie Pi &#8211; Stuart Hinson --- 2017-05-12...\"],[\"https:\\u002f\\u002fhalgari.github.io\\u002fclojure-py\\u002f --- Clojure-Py --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsamyk\\u002fproxygambit --- GitHub - samyk\\u002fproxygambit: Anonymize and fracture network ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdavidsantiago\\u002fhickory --- GitHub - davidsantiago\\u002fhickory: HTML as data --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNetflix\\u002fHystrix\\u002ftree\\u002fmaster\\u002fhystrix-contrib\\u002fhystrix-clj --- Hystrix\\u002fhystrix-contr...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogle\\u002fExoPlayer --- GitHub - google\\u002fExoPlayer: An extensible media player for An...\"],[\"http:\\u002f\\u002fphantomjs.org\\u002f --- PhantomJS | PhantomJS --- 2017-05-12...\"],[\"https:\\u002f\\u002fpomcor.com --- Pomcor &#8211; Research in Mobile and Web Technology --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftechnomancy\\u002fleiningen\\u002fblob\\u002fmaster\\u002fdoc\\u002fTUTORIAL.md --- leiningen\\u002fTUTORIAL.md at ma...\"],[\"http:\\u002f\\u002fdocs.datomic.com\\u002fbest-practices.html --- Datomic Best Practices | Datomic --- 2017-05-12...\"],[\"http:\\u002f\\u002ffprog.ru\\u002fplanet\\u002f --- Russian Lambda Planet --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fAxolotl_%28protocol%29 --- Axolotl (protocol) - Wikipedia, the free en...\"],[\"http:\\u002f\\u002fmogade.com\\u002f --- mogade helping you build great games --- 2017-05-12...\"],[\"yogthos.net\\u002fposts\\u002f2016-10-15-AtomWithLuminus.html --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002foubiwann\\u002fhoplon-reveal-js --- GitHub - oubiwann\\u002fhoplon-reveal-js: Slide decks in ...\"],[\"https:\\u002f\\u002fwiki.haskell.org\\u002fTypeclassopedia --- Typeclassopedia - HaskellWiki --- 2017-05-12...\"],[\"https:\\u002f\\u002fpracticalli.github.io\\u002fclojure\\u002fdevelopment-environments\\u002f --- Development Environments · Cloju...\"],[\"https:\\u002f\\u002ffacebook.github.io\\u002freact\\u002fblog\\u002f2015\\u002f03\\u002f19\\u002fbuilding-the-facebook-news-feed-with-relay.html ---...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f269831\\u002f --- С 0 до 1. Разбираемся с Redux \\u002f Хабрахабр --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSpark-Innovations\\u002fSC4 --- Spark-Innovations\\u002fSC4 · GitHub ... GitHub - Spark-Inno...\"],[\"https:\\u002f\\u002fgithub.com\\u002flevand\\u002fimmuconf --- GitHub - levand\\u002fimmuconf: A small library for managing config...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002fquant-ph\\u002f0512114 --- [quant-ph\\u002f0512114] A Categorical Quantum Logic --- 2017-0...\"],[\"https:\\u002f\\u002fdeveloper.microsoft.com\\u002fen-us\\u002fwindows\\u002fiot\\u002fsamples\\u002fPotentiometer.htm --- Potentiometer sensor...\"],[\"interactive tutorial --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002flearn.adafruit.com\\u002fmcp230xx-gpio-expander-on-the-raspberry-pi\\u002foverview --- Access denied | l...\"],[\"on --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenmeetings.apache.org\\u002f --- Apache OpenMeetings Project &#x2013; Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fresults?search_query=how+to+edit+videos+in+blender+.72b --- how to edit vide...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbriatte\\u002fawesome-network-analysis --- GitHub - briatte\\u002fawesome-network-analysis: A...\"],[\"https:\\u002f\\u002fprecursorapp.com\\u002f --- Precursor&mdash;fast prototyping web app, makes collaboration easy. --...\"],[\"https:\\u002f\\u002fgithub.com\\u002framda\\u002framda\\u002fwiki\\u002fCookbook --- Cookbook · ramda\\u002framda Wiki · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flaginimaineb\\u002fandroid_fde_bruteforce --- GitHub - laginimaineb\\u002fandroid_fde_brutefo...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:neo4j --- Pinboard bookmarks tagged neo4j --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojureelasticsearch.info\\u002f --- Elastisch, a minimalistic Clojure client for ElasticSearch | E...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgaearon\\u002freact-hot-loader\\u002ftree\\u002fmaster\\u002fdocs --- react-hot-loader\\u002fdocs at master · g...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fw01fe\\u002f7132440 --- hiphip benchmarks · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fnathanmarz.com\\u002fblog\\u002fintroducing-cascalog-a-clojure-based-query-language-for-hado.html --- Int...\"],[\"http:\\u002f\\u002flangintro.com\\u002ficljs\\u002f --- Transforming Data with ClojureScript &mdash; Transforming Data with ...\"],[\"http:\\u002f\\u002fwww.introtorx.com\\u002f --- Introduction to Rx ... :reactive-extensions Introduction to Rx --- 201...\"],[\"http:\\u002f\\u002fwww.fdi.ucm.es\\u002fprofesor\\u002ffernan\\u002fdes\\u002findex.html --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnaudio\\u002fNAudio --- GitHub - naudio\\u002fNAudio: Audio and MIDI library for .NET --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fring-clojure\\u002fring\\u002fwiki\\u002fSessions --- Sessions · ring-clojure\\u002fring Wiki · GitHub --...\"],[\"http:\\u002f\\u002fwww.asp.net\\u002fdownloads\\u002fstarter-kits\\u002fclassifieds --- Classifieds Site Starter Kit | The ASP.NET...\"],[\"https:\\u002f\\u002fwww.quora.com\\u002fWhat-are-the-best-resources-to-learn-about-deep-learning\\u002fanswer\\u002fDavid-Barber-3...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpH200\\u002fcycle-react --- GitHub - pH200\\u002fcycle-react: Rx functional interface to Face...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmtyaka\\u002flein-oneoff --- GitHub - mtyaka\\u002flein-oneoff: Dependency management for one...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbhauman\\u002flein-figwheel\\u002fwiki\\u002fNode.js-development-with-figwheel --- Node.js developm...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdonnut\\u002ftypescript-ramda --- GitHub - donnut\\u002ftypescript-ramda: TypeScript&#39;s ty...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=QM1iUe6IofM --- Object-Oriented Programming is Bad - YouTube --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftensorflow\\u002fmodels\\u002ftree\\u002fmaster\\u002ftextsum --- models\\u002ftextsum at master · tensorflow\\u002fm...\"],[\"http:\\u002f\\u002fwww.http-kit.org\\u002f --- Home | http-kit, high performance HTTP Client\\u002fServer for Clojure --- 20...\"],[\"http:\\u002f\\u002fysangkok.github.io\\u002fmitre-datalog.js\\u002fwrapper.html --- Datalog.js --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchetbox\\u002fiApprove --- GitHub - chetbox\\u002fiApprove: Chromium extension client and Clo...\"],[\"http:\\u002f\\u002fwww.lispcast.com\\u002fmastering-client-side-routing-with-secretary-and-goog-history --- Mastering ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAdamClements\\u002fquit-yo-jibber --- GitHub - AdamClements\\u002fquit-yo-jibber: A lightweig...\"],[\"http:\\u002f\\u002fjoxa.org --- Joxa --- 2017-05-12...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:clojurescript\\u002f --- Pinboard bookmarks tagged clojurescript --- 2017-05-12...\"],[\"http:\\u002f\\u002fswannodette.github.io\\u002f2015\\u002f12\\u002f23\\u002fyear-in-review\\u002f --- ClojureScript Year In Review --- 2017-05...\"],[\"https:\\u002f\\u002fmicrosoft.hackster.io\\u002fen-US --- Microsoft Projects --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.ethz.ch\\u002fen.html --- ETH Zurich - Homepage | ETH Zurich --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sensorsweb.com\\u002fcar_sensors --- Car sensors | Sensors Web | All about sensors --- 2017-05-...\"],[\"http:\\u002f\\u002ffsharpforfunandprofit.com\\u002f --- Home | F# for fun and profit ... :fsharp F# for fun and profit...\"],[\"https:\\u002f\\u002fspeakerdeck.com\\u002fmklappstuhl\\u002fdesktop-apps-with-clojurescript --- Desktop Apps with ClojureScr...\"],[\"http:\\u002f\\u002fconfreaks.tv\\u002fvideos\\u002fmwjs2014-adding-even-more-fun-to-functional-programming-with-rxjs --- [No...\"],[\"http:\\u002f\\u002fparallel.princeton.edu\\u002fopenpiton\\u002f --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.langorigami.com\\u002farticle\\u002ftessellatica --- Tessellatica | Robert J. Lang Origami --- 2017-0...\"],[\"http:\\u002f\\u002fmuhuk.github.io\\u002fvalidation-benchmark\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthinktopic\\u002fcortex --- GitHub - thinktopic\\u002fcortex: Machine learning in Clojure ---...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002fclojure-high-performance-programming-2nd-edition --- Clojure High...\"],[\"http:\\u002f\\u002fblog.cognitect.com\\u002fblog\\u002f2014\\u002f8\\u002f6\\u002ftransducers-are-coming --- Transducers are Coming — Cognitec...\"],[\"https:\\u002f\\u002fhubl.in\\u002f --- Hubl.in, the Awesome video conference service --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fterkelg\\u002framme --- GitHub - terkelg\\u002framme: 📷 Unofficial Instagram Desktop App ---...\"],[\"http:\\u002f\\u002fneanderthal.uncomplicate.org\\u002f --- Neanderthal - Fast Native Matrix and Linear Algebra in Cloj...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fdata\\u002fgg577611.aspx --- Beginner's Guide to Reactive Extensions for ...\"],[\"https:\\u002f\\u002faphyr.com\\u002fposts\\u002f306-clojure-from-the-ground-up-state --- Clojure from the ground up: state -...\"],[\"https:\\u002f\\u002fopensource.com\\u002fbusiness\\u002f16\\u002f3\\u002fresources-measuring-open-source-community-roi --- 16 resources ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbriansmith\\u002fring --- GitHub - briansmith\\u002fring: Safe, fast, small crypto using Rust...\"],[\"http:\\u002f\\u002fjekyllbootstrap.com\\u002f --- The Quickest Way to Blog on GitHub Pages. | ruhoh universal static b...\"],[\"http:\\u002f\\u002fwww.ccs.neu.edu\\u002fhome\\u002framsdell\\u002ftools\\u002fdatalog\\u002fdatalog.html --- Datalog User Manual --- 2017-05-...\"],[\"http:\\u002f\\u002fredux.js.org\\u002findex.html --- Read Me | Redux --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fNightcode\\u002f --- Too Many Requests --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmattdeboard\\u002fIcarus\\u002fblob\\u002fmaster\\u002fREADME.rst --- Icarus\\u002fREADME.rst at master · mattd...\"],[\"https:\\u002f\\u002fswiftforwindows.codeplex.com\\u002f --- Swift for Windows - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbriansmith\\u002fwebpki --- GitHub - briansmith\\u002fwebpki: WebPKI X.509 Certificate Valida...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactive-Extensions\\u002fRxJS-DOM --- GitHub - Reactive-Extensions\\u002fRxJS-DOM: HTML DOM ...\"],[\"http:\\u002f\\u002fslimerjs.org\\u002f --- SlimerJS --- 2017-05-12...\"],[\"http:\\u002f\\u002fspinroot.com\\u002fspin\\u002fwhatispin.html --- Access denied | spinroot.com used CloudFlare to restrict...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjohnmn3\\u002fclgs --- GitHub - johnmn3\\u002fclgs: CLJS on Google Apps Script --- 2017-05-12...\"],[\"https:\\u002f\\u002fgitlab.com\\u002ffdroid\\u002ffdroiddata --- F-Droid \\u002f Data · GitLab --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fShanks%27_square_forms_factorization --- Shanks' square forms factoriz...\"],[\"http:\\u002f\\u002fwww.ccs.neu.edu\\u002fhome\\u002fmatthias\\u002fHtDP2e\\u002findex.html --- How to Design Programs, Second Edition --...\"],[\"https:\\u002f\\u002fgithub.com\\u002faphyr\\u002fdistsys-class --- GitHub - aphyr\\u002fdistsys-class: Class materials for a distr...\"],[\"https:\\u002f\\u002fcursive-ide.com\\u002fuserguide\\u002f --- Cursive: Getting Started --- 2017-05-12...\"],[\"http:\\u002f\\u002fmachinelearningmastery.com\\u002fwhat-if-i-dont-have-a-degree\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"paragonie.com\\u002fblog\\u002f2016\\u002f05\\u002fhow-generate-secure-random-numbers-in-various-programming-languages --- [...\"],[\"http:\\u002f\\u002fwww.gigamonkeys.com\\u002fbook\\u002f --- Practical Common Lisp --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.emacswiki.org\\u002femacs\\u002fEmacsForWindows --- EmacsWiki: Emacs For Windows --- 2017-05-12...\"],[\"http:\\u002f\\u002fhubpages.com\\u002ftechnology\\u002fA-Beginners-Guide-to-Exploring-the-Darknet --- A Beginner&#039;s Guid...\"],[\"http:\\u002f\\u002fblog.goose.haus --- Goose Haus --- 2017-05-12...\"],[\"http:\\u002f\\u002fassemble.io\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.visualstudio.com\\u002fen-us\\u002ffeatures\\u002fazure-tools-vs.aspx --- Azure Tools | Visual Studio --- ...\"],[\"https:\\u002f\\u002flabs.detectify.com\\u002f2016\\u002f07\\u002f27\\u002fhow-i-made-lastpass-give-me-all-your-passwords\\u002f --- 403 Forbid...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjuxt\\u002fchatserver --- GitHub - juxt\\u002fchatserver --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002ftagged\\u002frx-android --- Access denied | stackoverflow.com used Clou...\"],[\"http:\\u002f\\u002flectoriy.mipt.ru\\u002fcourse\\u002findex?category=Maths&lecturer= --- Видеолекции Физтеха: Лекторий МФТИ...\"],[\"stack --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fms-iot.github.io\\u002fcontent\\u002fen-US\\u002fAdafruitMakerKit.htm --- Adafruit Starter Pack for Windows 10...\"],[\"http:\\u002f\\u002fsubordination.cu.cc\\u002f --- Subordination --- 2017-05-12...\"],[\"http:\\u002f\\u002ffeeds.feedburner.com\\u002fclojure --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fslack.babeljs.io\\u002f --- Access denied | slack.babeljs.io used CloudFlare to restrict access --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fLeeCampbell\\u002fRxCookbook --- GitHub - LeeCampbell\\u002fRxCookbook: Collection of recipes...\"],[\"https:\\u002f\\u002fegghead.io\\u002fseries\\u002fintroduction-to-reactive-programming --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwagjo\\u002fdata-cljs --- GitHub - wagjo\\u002fdata-cljs: Finger trees and miscellaneous func...\"],[\"https:\\u002f\\u002fgithub.com\\u002fglycerine\\u002fzygomys\\u002fwiki --- Home · glycerine\\u002fzygomys Wiki · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002ffernmac.blogspot.com\\u002f2012\\u002f02\\u002fclojure-clr-examples.html --- Stuff++: Clojure-clr examples --- ...\"],[\"https:\\u002f\\u002fthreatpost.com\\u002facademics-make-theoretical-breakthrough-in-random-number-generation\\u002f118150\\u002f -...\"],[\"http:\\u002f\\u002fdescjop.org\\u002f --- descjop | A Leiningen template for Web based desktop application. --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fyogthos\\u002fmarkdown-clj --- GitHub - yogthos\\u002fmarkdown-clj: Markdown parser in Clojur...\"],[\"https:\\u002f\\u002fwww.terraserver.com\\u002f --- TerraServer - Aerial Photos &amp; Satellite Images - The Leader In ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthebusby\\u002fiota --- GitHub - thebusby\\u002fiota: A simple IO library for using Clojure&#...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fjava.jdbc --- GitHub - clojure\\u002fjava.jdbc: JDBC from Clojure (formerly clo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fWhisperSystems\\u002fSignal-Desktop --- GitHub - WhisperSystems\\u002fSignal-Desktop: Signal ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbtholt\\u002fes6-react-pres --- GitHub - btholt\\u002fes6-react-pres: Using ES6 with React --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fminer\\u002ftagged --- GitHub - miner\\u002ftagged: Clojure library for encoding Records as E...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd233199.aspx --- Verbose Syntax (F#) --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=DgVS-zXgMTk&feature=youtu.be --- Pete Hunt: React - Rethinking Best ...\"],[\"http:\\u002f\\u002flearnprolognow.org\\u002f --- Learn Prolog Now! --- 2017-05-12...\"],[\"http:\\u002f\\u002fbookzz.org\\u002f --- Electronic library. Download books free. Finding books --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faysylu\\u002floom --- GitHub - aysylu\\u002floom: Graph library for Clojure. Mailing list htt...\"],[\"https:\\u002f\\u002fgithub.com\\u002famageed\\u002fRegextra --- GitHub - amageed\\u002fRegextra: Regextra simplifies some tasks ty...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fdwahlin\\u002fangularjs-in-60-ish-minutes-the-ebook --- Dan Wahlin - AngularJS in 6...\"],[\"http:\\u002f\\u002fblog.klipse.tech\\u002f\\u002flambda\\u002f2016\\u002f08\\u002f10\\u002falmost-y-combinator-javascript.html --- Recursions withou...\"],[\"https:\\u002f\\u002fmedium.com\\u002fgoogle-developer-experts\\u002fangular-introduction-to-reactive-extensions-rxjs-a86a743...\"],[\"https:\\u002f\\u002fvimeo.com\\u002f8665159 --- Episode 6 - Point Free Clojure on Vimeo --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.poprobot.ru\\u002fhome\\u002fmlx90620_Arduino --- Тепловизор на базе MLX90620 - Популярная робототехн...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwarden-stack\\u002fWarden --- GitHub - warden-stack\\u002fWarden: Define &quot;health checks&...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fee353738.aspx --- Collections.List Module (F#) --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002frcarmo\\u002fhy-there --- GitHub - rcarmo\\u002fhy-there: A hylang playground --- 2017-05-12...\"],[\"http:\\u002f\\u002frewriting.loria.fr\\u002f --- Rewriting Home Page --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffranks42\\u002fclj-ns-browser --- GitHub - franks42\\u002fclj-ns-browser: Smalltalk-like name...\"],[\"http:\\u002f\\u002fpscout.csl.toronto.edu\\u002f --- PScout --- 2017-05-12...\"],[\"http:\\u002f\\u002fraspberrypi.stackexchange.com\\u002fquestions\\u002f7122\\u002flevel-of-hackability-of-raspberry-pi --- boot - ...\"],[\"http:\\u002f\\u002fsocialite-lang.github.io\\u002f --- Home | SociaLite --- 2017-05-12...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2009\\u002f04\\u002f15\\u002fusing-netcat-for-file-transfers\\u002f --- Using Netcat for File Transfers -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fclojurescript\\u002fwiki#libraries --- Home · clojure\\u002fclojurescript Wiki · GitH...\"],[\"http:\\u002f\\u002fmahout.apache.org\\u002f --- Apache Mahout:: Scalable machine-learning and data-mining library --- ...\"],[\"http:\\u002f\\u002fwww.leevalley.com\\u002fen\\u002fgarden\\u002fpage.aspx?p=67332&cat=2,66758 --- Did this for last 2 years. 1st ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fzzstructureInCSharp.aspx --- Set Your Data and Code Free from the C...\"],[\"http:\\u002f\\u002fstsadm.blogspot.com\\u002f2007\\u002f08\\u002fstsadm-commands_09.html --- SharePoint Automation: STSADM\\u002fPowerSh...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbyt3bl33d3r\\u002fgcat --- byt3bl33d3r\\u002fgcat · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.bit9.com\\u002f --- Bit9 — Endpoint and Server Security --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftesseract-ocr --- tesseract-ocr · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002foauth-signpost\\u002f --- oauth-signpost - Project Hosting on Google Code --- 20...\"],[\"http:\\u002f\\u002fpioneersettler.com\\u002f12-best-diy-solar-panel-tutorials\\u002f --- Best DIY Solar Panel Tutorials | Ho...\"],[\"http:\\u002f\\u002fmomsneedtoknow.com\\u002fcompanion-planting-plant-together\\u002f#_a5y_p=1405109 --- The Homestead Surviv...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fcompany\\u002fintel\\u002fblog\\u002f184094\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fusers.ece.utexas.edu\\u002f~valvano\\u002farm\\u002foutline3.htm --- Embedded Systems: Real-Time Operating Syst...\"],[\"http:\\u002f\\u002fnewstimeline.googlelabs.com\\u002f --- Google News Timeline --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.howtogeek.com\\u002f180395\\u002fhow-to-connect-a-headset-to-a-laptop-tablet-or-smartphone-with-a-sin...\"],[\"http:\\u002f\\u002fwww.wikiteka.co.uk\\u002f --- :free :books :Wikiteka Search, share and download notes, abstracts, h...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002frajeshlal\\u002fpoint-resume-template-presentation --- Point Resume --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.gapminder.org\\u002fworld\\u002f#$majorMode=chart$is;shi=t;ly=2003;lb=f;il=t;fs=11;al=30;stl=t;st=t;n...\"],[\"http:\\u002f\\u002fwww2.opensourceforensics.org\\u002ftools --- Tools | Open Source Digital Forensics --- 2017-05-12...\"],[\"http:\\u002f\\u002folappivottableextend.codeplex.com\\u002f --- OLAP PivotTable Extensions --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fopen-video-ads\\u002f --- open-video-ads - Project Hosting on Google Code --- 201...\"],[\"http:\\u002f\\u002fblog.takipi.com\\u002fthe-ultimate-java-logging-dictionary-what-are-the-most-common-words-developer...\"],[\"http:\\u002f\\u002freprap.org\\u002f --- RepRap - RepRapWiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.oracle.com\\u002ftechnology\\u002fproducts\\u002fdatabase\\u002fxe\\u002findex.html --- Oracle Database 10g Express Edi...\"],[\"https:\\u002f\\u002fwww.whonix.org\\u002fwiki\\u002fVirtualBox --- VirtualBox - Whonix --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.webyog.com\\u002fen\\u002f --- MySQL GUI Client Tools. MySQL Monitor and Manager --- 2017-05-12...\"],[\"https:\\u002f\\u002flinuxcontainers.org\\u002f --- LXC - Linux Containers --- 2017-05-12...\"],[\"https:\\u002f\\u002fwickstrom.tech\\u002fprogramming\\u002f2016\\u002f08\\u002f07\\u002fgenerating-sight-reading-exercises-using-constraint-lo...\"],[\"http:\\u002f\\u002fmongotron.io\\u002f --- Mongotron - Cross platform MongoDB management --- 2017-05-12...\"],[\"https:\\u002f\\u002fchristopherdbui.com\\u002fclojure-repl-workflow\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=65-RbBwZQdU --- Vyacheslav Egorov - LXJS 2013 - Performance and benc...\"],[\"http:\\u002f\\u002ftimheuer.com\\u002fblog\\u002farchive\\u002f2008\\u002f07\\u002f16\\u002fsilverlight-2-video-player-encoder-template.aspx --- Mak...\"],[\"http:\\u002f\\u002fblog.cryptographyengineering.com\\u002f2016\\u002f08\\u002fattack-of-week-64-bit-ciphers-in-tls.html --- A Few ...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fapplication-development\\u002fpython-high-performance-programming --- Python High...\"],[\"https:\\u002f\\u002fwww.bergnet.org\\u002f2017\\u002f03\\u002frawdevjs-release\\u002f --- :javascript :image-processing RawDevJS Release...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3095636&R=3095636 --- Introduction to data str...\"],[\"http:\\u002f\\u002fwww.doddlephone.com\\u002f --- Online SIP WebPhone-Click2Call Doddle - VoIP call from ... --- 2017-...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fdp\\u002f1494861275\\u002f --- Basic Security Testing with Kali Linux by Daniel W. Dieterl...\"],[\"https:\\u002f\\u002fplot.ly\\u002fapi\\u002f --- :matlab :python :javascript :r-project :data-visualization -- Plotly API -...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fscrumsprintmonitor --- Scrum Sprint Monitor - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.opensourcerails.com\\u002f --- Open Source Rails --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.diyturbinejet.com\\u002f --- DIY Turbine Jet --- 2017-05-12...\"],[\"http:\\u002f\\u002fadtmag.com\\u002farticles\\u002f2014\\u002f03\\u002f13\\u002fopentechsdks.aspx --- Microsoft Opens Up Office 365 and Signal...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmacros\\u002fJSLintVS.aspx --- CodeProject: JSLint.VS - JavaScript Verifier ...\"],[\"http:\\u002f\\u002fwww.google.com\\u002fsearch?q=visual+studio+2008+unit+tests&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fcsharp-upnp-portmapper\\u002f --- A Simple C# UPnP NAT portmapper based on Mono....\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHaleys-Teardrop-Camper\\u002f --- Picture of Haley's Teardrop Camper… --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdocker\\u002fdocker --- Docker Registry Mirror ... GitHub - docker\\u002fdocker: Docker - the...\"],[\"http:\\u002f\\u002fwww.sumatrapdfreader.org\\u002ffree-pdf-reader.html --- Free PDF Reader - Sumatra PDF --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.freedownloadscenter.com\\u002fUtilities\\u002fMisc__Utilities\\u002fSWF_Flash_decompiler_Download.html --- ...\"],[\"http:\\u002f\\u002foctoprint.org\\u002f --- OctoPrint.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fsonic-pi.net\\u002f --- Sonic Pi --- 2017-05-12...\"],[\"https:\\u002f\\u002fweld-project.github.io\\u002f --- :stanford infolab -- Weld :performance :python :data-mining --- ...\"],[\"http:\\u002f\\u002fsandsprite.com\\u002fCodeStuff\\u002fUnderstanding_imports.html --- Understanding the Import Address Tabl...\"],[\"http:\\u002f\\u002fwww.group-ib.com\\u002f --- :security Global - Group-IB --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.appropedia.org\\u002fChoosing_water_supply_and_purification_methods --- Water supply and purifi...\"],[\"https:\\u002f\\u002fain.ua\\u002fpinterest-zapustil-shazam-dlya-photo --- :computer-vision Pinterest Shazam - image se...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcyberFund\\u002fdigest.cyber.fund --- cyberFund\\u002fdigest.cyber.fund · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=RqHnxkU9TZE --- Rum workshop - YouTube ... :clojure :clojurescript R...\"],[\"http:\\u002f\\u002fwww.talend.com\\u002flanding\\u002fmdm?lang=en&utm_source=google&utm_medium=cpc&utm_campaign=TLD:MDM%20Di...\"],[\"https:\\u002f\\u002fgithub.com\\u002fPenturaLabs\\u002fLinux_Exploit_Suggester --- Linux Exploit Suggester --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.simple-talk.com\\u002fdotnet\\u002fperformance\\u002fthe-top-5-.net-memory-management-misconceptions\\u002f --- ...\"],[\"http:\\u002f\\u002fwww.lshift.net\\u002fblog\\u002f2014\\u002f06\\u002f30\\u002fdockerising-an-xmpp-server\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002freact-bootstrap.github.io\\u002fcomponents.html#navbars --- :Reactjs :Bootstrap components --- 201...\"],[\"http:\\u002f\\u002fhadoop.apache.org\\u002fdocs\\u002fcurrent\\u002fhadoop-project-dist\\u002fhadoop-common\\u002fFileSystemShell.html --- Apa...\"],[\"http:\\u002f\\u002fwww.techiedelight.com\\u002ftop-algorithms-data-structures-concepts-computer-science\\u002f --- Top :Algo...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fjj883956.aspx --- C# - The C# Memory Model in Theory and P...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fshelves\\u002f --- shelves - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fopensource.appbase.io\\u002freactivesearch\\u002f --- :reactjs Reactive Search UI components --- 2017-05...\"],[\"http:\\u002f\\u002fwww.tatango.com\\u002fsms-short-code-directory\\u002f --- SMS Short Code Directory --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsimplephishingtoolkit\\u002fsptoolkit-rebirth --- simplephishingtoolkit\\u002fsptoolkit-rebir...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fwindows\\u002fembedded\\u002ffastforward\\u002fdefault.mspx --- Windows Embedded - Put Device...\"],[\"http:\\u002f\\u002fpingvinus.ru\\u002f --- Пингвинус Linux - программы, игры, заметки ---...\"],[\"http:\\u002f\\u002fcr.yp.to\\u002fsalsa20.html --- Salsa20 Core --- 2017-05-12...\"],[\"http:\\u002f\\u002fjacquelin.potier.free.fr\\u002fwinapioverride32\\u002f --- WinAPIOverride : Free Advanced API Monitor, sp...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fwindowsmobile\\u002fen-us\\u002fdownloads\\u002fmicrosoft\\u002factivesync-download.mspx?WT.mc_ID=S...\"],[\"http:\\u002f\\u002fwww.oregontrailer.net\\u002fterradrop.html --- Learn more about the Oregon Trail'R TerraDrop, and o...\"],[\"http:\\u002f\\u002fwww.matcode.com\\u002fmpress.htm --- MPRESS - Free high-performance executable packer for PE32\\u002fPE32...\"],[\"http:\\u002f\\u002fwww.trendhunter.com\\u002ftrends\\u002fultrasonography-bone-healing --- Vibration-Healing Bone Casts #Sa...\"],[\"http:\\u002f\\u002fwww.accuwebhosting.com\\u002fwindows-vps-server-hosting.html --- Windows VPS Hosting, Windows 2008 ...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002flinux\\u002flibrary\\u002fl-neural\\u002findex.html --- An introduction to neural ne...\"],[\"http:\\u002f\\u002fa-ladyslife.blogspot.com\\u002f2009\\u002f05\\u002fsmall-space-gardening-can-be-done.html --- How to grow tomat...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyID=40646580-97FA-4698-B65F-620D4B4B1ED7&displa...\"],[\"http:\\u002f\\u002fplugins.jquery.com\\u002fproject\\u002fgraphapi --- graph plugin --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.familyfoodgarden.com\\u002fexpected-crop-yield-per-100-foot-row\\u002f --- EXPECTED CROP YIELDS per 1...\"],[\"http:\\u002f\\u002fwww.cs.wustl.edu\\u002f~schmidt\\u002fC++\\u002f --- www.cs.wustl.edu :: C++ Programming Language Tutorials ---...\"],[\"http:\\u002f\\u002fwww.000webhost.com\\u002f --- Free Web Hosting with PHP, MySQL and cPanel, No Ads --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fscript\\u002fJobs\\u002fList.aspx --- CodeProject: jobs.codeproject.com - Latest. Fre...\"],[\"http:\\u002f\\u002fbrowsers.evolt.org\\u002fdownload.php?\\u002fie\\u002f32bit\\u002fstandalone\\u002fie6eolas_nt.zip --- evolt.org - Browser ...\"],[\"http:\\u002f\\u002fwww.efytimes.com\\u002fe1\\u002f132694\\u002fFree-Software-On-Electronics --- 49 FREE Software Tools for Electr...\"],[\"http:\\u002f\\u002fwww.scippinternational.org\\u002fsecurity-awareness.html --- security-awareness --- 2017-05-12...\"],[\"https:\\u002f\\u002fveracrypt.codeplex.com\\u002f --- VeraCrypt - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.monkeymusic.co.uk\\u002f --- :youtube :kids Music classes for babies, toddler pre-school music ...\"],[\"http:\\u002f\\u002fwww.mysears.com\\u002fAgri-Fab-48-in-Landscape-Rake-reviews --- landscape rake --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fru-ru\\u002flibrary\\u002fhh191443.aspx --- Асинхронное программи...\"],[\"http:\\u002f\\u002fmichaelhanney.com\\u002fblog\\u002f2007\\u002f10\\u002f31\\u002fnhibernate-and-oracle-part-1-using-an-external-configuratio...\"],[\"http:\\u002f\\u002ffitwirr.com\\u002fworkout\\u002fplan\\u002f6-minute-mini-morning-workout-crush-calories-and-m\\u002f#.U8QuY67nJ8M ---...\"],[\"https:\\u002f\\u002fyck1509.github.io\\u002fConfuserEx\\u002f --- :tools :security :opensource :.net :obfuscator ConfuserEx ...\"],[\"https:\\u002f\\u002fminio.io\\u002f --- :golang Minio -- distributed object storage server built for cloud application...\"],[\"http:\\u002f\\u002flpsolve.sourceforge.net\\u002f --- lp_solve reference guide --- 2017-05-12...\"],[\"http:\\u002f\\u002fmattwarren.org\\u002f2017\\u002f03\\u002f30\\u002fThe-.NET-IL-Interpreter\\u002f --- :.NET IL Interpreter :Performance is a...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002flive\\u002fshows\\u002f577420540 --- Instant Mobile Websites: Techniques and Best ...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fciav7p1\\u002fcms\\u002fpage_26607631.html --- :security :Python Coding Conventions, Vault...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=l-_4aHTxbFY --- Hand operated oil expeller from Piteba : press seeds...\"],[\"https:\\u002f\\u002fgithub.com\\u002faveragesecurityguy\\u002ftwanalyze --- averagesecurityguy\\u002ftwanalyze · GitHub --- 2017-...\"],[\"http:\\u002f\\u002fflee.codeplex.com\\u002f --- Fast Lightweight Expression Evaluator - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=qY_asMJnGXk&feature=youtube_gdata_player --- Self defense ... http:\\u002f...\"],[\"http:\\u002f\\u002fwww.getpaint.net\\u002f --- Paint.NET - Free Software for Digital Photo Editing --- 2017-05-12...\"],[\"http:\\u002f\\u002falternative-energy-gardning.blogspot.com\\u002f2013\\u002f03\\u002fgetting-rid-of-aphids.html --- Killing Aphid...\"],[\"http:\\u002f\\u002fwww.cloudera.com\\u002fcontent\\u002fwww\\u002fen-us\\u002fdownloads\\u002fquickstart_vms\\u002f5-4.html# --- QuickStart VM Downl...\"],[\"http:\\u002f\\u002fwww.opendesigns.org\\u002fpreview\\u002f?template=2260 --- Free Website Design Template Preview - OpenDes...\"],[\"http:\\u002f\\u002fpymotw.com\\u002f2\\u002fpickle\\u002f --- pickle and cPickle – Python object serialization - Python Module o...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdid=dev.ukanth.ufirewall --- F-Droid :: AFWall+ --- 2017-05-...\"],[\"http:\\u002f\\u002fcacr.uwaterloo.ca\\u002fhac\\u002f --- Handbook of Applied Cryptography --- 2017-05-12...\"],[\"https:\\u002f\\u002freact.rocks\\u002fexample\\u002freact-form --- :ReactJS :Example login form --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjosephwilk\\u002ffunctions-as-patterns --- :clojure :docs josephwilk\\u002ffunctions-as-patte...\"],[\"https:\\u002f\\u002fblog.lelonek.me\\u002fform-objects-in-elixir-6a57cf7c3d30 --- Form “objects” in :Elixir – pr...\"],[\"http:\\u002f\\u002fbushcraftskills.blogspot.com\\u002f2009\\u002f06\\u002fplastic-bottle-trap.html --- Survival Bait fish trap out...\"],[\"http:\\u002f\\u002fbrlcad.org\\u002f --- BRL-CAD | Open Source Solid Modeling --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fTheWeeklySourceCode15TinyManagedOperatingSystemEdition.aspx --- Scott ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fskinnedwinforms\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=12824 --- Skinned Win...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbig-data-and-business-intelligence\\u002fbuilding-machine-learning-systems-python...\"],[\"http:\\u002f\\u002fngmodules.org\\u002fmodules\\u002fng-pdfviewer --- ng-pdfviewer - AngularJS Modules, Plugins and Directiv...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms681382%28v=vs.85%29.aspx --- System Error Codes (Windows) ...\"],[\"http:\\u002f\\u002ftwentytwowords.com\\u002ftips-and-tricks-everyone-with-a-car-needs-to-know-about\\u002f?utm_source=pinter...\"],[\"http:\\u002f\\u002fcommunity.theaquaponicsource.com\\u002fgroup\\u002fverticalaquaponics --- Vertical Aquaponics - Aquaponic...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f287316\\u002f --- :diy :robotics vacuum cleaner --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nurserytreewholesalers.com\\u002f --- MINI bonsai trees! Great for your office :) --- 2017-05-1...\"],[\"http:\\u002f\\u002fit-tirlik.kz\\u002f --- IT tirlik - kazakh enterpreuners --- 2017-05-12...\"],[\"https:\\u002f\\u002fbugs.chromium.org\\u002fp\\u002fproject-zero\\u002fissues\\u002fdetail?id=1122 --- :exploits :security :QEMU user-to...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fdotnetflex --- DotNetFlex (DNF) - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.oswd.org\\u002f --- Open Source Web Design - Download free web design templates. --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNightOfTwelve\\u002fandroid-security-awesome --- NightOfTwelve\\u002fandroid-security-awesome...\"],[\"http:\\u002f\\u002fnews.travel.aol.com\\u002f2010\\u002f10\\u002f05\\u002fsafe-and-dangerous-places-in-palm-beach\\u002f --- safe and dangerou...\"],[\"http:\\u002f\\u002fnodexl.codeplex.com\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002frecordedfuture\\u002f --- Google Code 4 Recorded Future --- 2017-05-12...\"],[\"http:\\u002f\\u002fmatlab-ib-trading.blogspot.ca\\u002f --- Matlab IB Trading --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.neighborhoodscout.com\\u002ffl\\u002fmiami\\u002fcrime\\u002f --- Miami crime rates and statistics - Neighborhood...\"],[\"http:\\u002f\\u002fprocessors.wiki.ti.com\\u002findex.php\\u002fStellaris_Launchpad_with_OpenOCD_and_Linux --- Stellaris Lau...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2015\\u002f01\\u002f27\\u002fultimate-guide-winter-storm\\u002f --- Ultimate Guide To Winter Storm -...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002fdiy-home-security-preppers-shtf-home-defense\\u002f --- DIY Home Security for Prep...\"],[\"http:\\u002f\\u002fwww.vikramlakhotia.com\\u002fRamp_Up_Free_Sharepoint_training.aspx --- Ramp Up Free Sharepoint trai...\"],[\"http:\\u002f\\u002fdocs.oracle.com\\u002fjavase\\u002ftutorial\\u002fcollections\\u002falgorithms\\u002f --- Lesson: Algorithms (The Javaâ„¢ T...\"],[\"http:\\u002f\\u002fwww.oracle.com\\u002ftechnology\\u002fsoftware\\u002fproducts\\u002fdatabase\\u002fxe\\u002findex.html --- Oracle Database 10g Ex...\"],[\"http:\\u002f\\u002fdotnetslackers.com\\u002fasp_net\\u002fre-76278_create_your_own_dotnetnuke_skin.aspx --- DotNetSlackers: ...\"],[\"http:\\u002f\\u002fshrimping.it\\u002fblog\\u002fshrimp\\u002f --- The Shrimp, a board that replicates the #Arduino Uno for 1\\u002f5 th...\"],[\"http:\\u002f\\u002fkigg.codeplex.com\\u002fSourceControl\\u002fListDownloadableCommits.aspx --- KiGG - Source Code --- 2017-...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPhysical_unclonable_function --- Physical unclonable function - Wikipe...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyID=38ca6b32-44be-4489-8526-f09c57cd13a5&displa...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fringdroid --- guangliang2014\\u002fringdroid · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivalathome.com\\u002f10-wild-plants-you-can-eat\\u002f --- 10 Wild Plants You Can Eat (via Survival a...\"],[\"http:\\u002f\\u002fdragan.rocks\\u002farticles\\u002f17\\u002fBayadera-Bayes-Clojure-GPU-slides-Bobkonferenz --- :paper :slides :m...\"],[\"http:\\u002f\\u002fyogthos.net\\u002fposts\\u002f2017-03-26-ReagentReactView.html --- :clojurescript :performance Comparing ...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14044951 --- :bookmarking :business Ask HN How do you organize ...\"],[\"http:\\u002f\\u002fwww.ettus.com\\u002f --- Ettus Research LLC --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flanjelot\\u002fpatator --- lanjelot\\u002fpatator · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fcompany\\u002fxakep\\u002fblog\\u002f183760\\u002f --- Маленький британский шпиоÐ...\"],[\"https:\\u002f\\u002fmasterbranch.com\\u002f --- Masterbranch --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cakesolutions.net\\u002fteamblogs --- Cake Solutions Team Blog | --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffacebookexperimental\\u002fJSCaml --- JS to OCaml -- compile time transformation from :...\"],[\"https:\\u002f\\u002fblog.skyliner.io\\u002ffourteen-months-with-clojure-beb8b3e4bf00 --- Fourteen Months with :Clojure...\"],[\"http:\\u002f\\u002fwww.unixwiz.net\\u002ftechtips\\u002fsql-injection.html --- SQL Injection Attacks by Example --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.moringawealthandhealth.com\\u002f2016\\u002f04\\u002fhow-to-extract-moringa-seed-oil.html --- How to expel ...\"],[\"http:\\u002f\\u002fwww.doityourselfrv.com\\u002ffree-teardrop-trailer-camper-plans\\u002f --- Best Free Teardrop Trailer Cam...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3083370&R=3083370 --- User stories applied for...\"],[\"http:\\u002f\\u002fwww.ti.com\\u002fproduct\\u002ftms320dm365 --- linux based ARM video module --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.tensorflow.org\\u002finstall\\u002finstall_windows --- Installing :TensorFlow on :Windows --- 2017-0...\"],[\"http:\\u002f\\u002fwww.open-electronics.org\\u002fcategory\\u002fopensourceprojects\\u002f --- www.open-electronics.org --- 2017-0...\"],[\"http:\\u002f\\u002fwww.bld3r.com\\u002f --- Bld3r --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.livelocker.com\\u002f --- livelocker.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fgigaom.com\\u002f2013\\u002f11\\u002f01\\u002fthe-gigaom-guide-to-deep-learning-whos-doing-it-and-why-it-matters\\u002f ---...\"],[\"https:\\u002f\\u002fwww.vmware.com\\u002ftryvmware\\u002f?p=server20&lp=1 --- Download VMware Server --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3081834&R=3081834 --- .NET security and crypto...\"],[\"http:\\u002f\\u002fwww.twilio.com\\u002f --- Twilio Cloud Communications | Web Service API for building ... --- 2017-0...\"],[\"http:\\u002f\\u002fhplipopensource.com\\u002fhplip-web\\u002findex.html --- HP Linux Imaging and Printing --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002freconststereo\\u002f --- 3D Reconstruction using Stereo Vision | Free Grap...\"],[\"https:\\u002f\\u002fthetechladder.com\\u002fstory\\u002fiots-market-projected-grow-16b-2016-195-billion-2023\\u002f --- :IoT Marke...\"],[\"http:\\u002f\\u002fwww.milkmachine.org\\u002fdelta1010.html --- Delta 1010 with Ubuntu Studio 9.10 Howto --- 2017-05-1...\"],[\"https:\\u002f\\u002fwww.knime.org\\u002fblog\\u002fmarket-basket-analysis-and-recommendation-engines --- KNIME | Market Bask...\"],[\"http:\\u002f\\u002fcrazyhorsesghost.hubpages.com\\u002fhub\\u002f101-Gardening-Secrets-The-Experts-Never-Tell-You --- Check ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbnjs\\u002fStartupKnowledgeBase --- bnjs\\u002fStartupKnowledgeBase · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fqtadb.wordpress.com\\u002f2011\\u002f08\\u002f28\\u002fqtadb-source-code\\u002f --- QtADB source code | QtADB --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.smashingmagazine.com\\u002f2008\\u002f09\\u002f16\\u002fjquery-examples-and-best-practices\\u002f --- jQuery and JavaSc...\"],[\"http:\\u002f\\u002fpages.cs.wisc.edu\\u002f~remzi\\u002fOSTEP\\u002f --- Operating Systems: Three Easy Pieces - online book --- 20...\"],[\"https:\\u002f\\u002fwww.shopify.com\\u002fblog\\u002f75848773-ready-to-become-a-full-time-entrepreneur-heres-how-to-quit-you...\"],[\"http:\\u002f\\u002fwww.opennet.ru\\u002fopennews\\u002fart.shtml?num=46033 --- :github -- OpenNews -- programming lang. popu...\"],[\"http:\\u002f\\u002fmikeos.sourceforge.net\\u002fwrite-your-own-os.html --- :tutorial How to write a simple :operating-...\"],[\"http:\\u002f\\u002fhbase.apache.org\\u002fbook.html --- hbase.apache.org\\u002fbook.html --- 2017-05-12...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=6722292 --- The second operating system hiding in every mobile ...\"],[\"https:\\u002f\\u002fwww.nowsecure.com\\u002flab\\u002fcommunity\\u002f --- NowSecure Lab: Community Edition --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002frahul4_saxena\\u002fAJAXDropShadowExtender12092008232939PM\\u002fAJAXDro...\"],[\"http:\\u002f\\u002flucenenet.apache.org\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.knime.org\\u002fknime-online-self-training-lesson-1 --- KNIME | Lesson 1. Installing KNIME Ana...\"],[\"http:\\u002f\\u002fwww.feathersinthewoods.com\\u002f2014\\u002f05\\u002fspice-it-up-why-plants-love-cinnamon.html?spref=pi&m=1 ---...\"],[\"http:\\u002f\\u002fwww.ovh.ie\\u002fdedicated_servers\\u002fkimsufi.xml --- Kimsufi - your range of dedicated servers from â...\"],[\"http:\\u002f\\u002fwww.computationalmathematics.org\\u002ftopics\\u002ffiles\\u002fbeowulf_gpu_cluster.html --- How To Build Your ...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fTradecraft --- Tradecraft - Wikipedia, the free encyclopedia --- 2017-...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285696\\u002f --- :robotics :arduino Mega 2560 -- Bluetooth control and autonomo...\"],[\"http:\\u002f\\u002fwww.barnesandnoble.com\\u002faffiliate\\u002findex.asp --- Affiliate Program - Barnes & Noble --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchrisstephenson\\u002fCMPE314-2016 --- :haskell :racket :education :functional-programm...\"],[\"http:\\u002f\\u002fwww.epl.ca\\u002fEPLMaster.cfm?id=WIRELESSHOTS0001 --- EPL.ca: Wireless Hot Spots in Edmonton --- 2...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fbuild-a-kickass-robot-arm-the-perfect-arduino-project-1700643747 --- Build a K...\"],[\"https:\\u002f\\u002fgithub.com\\u002fscalanlp\\u002fbreeze\\u002fwiki\\u002fQuickstart --- BreezeViz Quickstart · scalanlp\\u002fbreeze Wiki ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsensepost\\u002fjack --- sensepost\\u002fjack · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsbt\\u002fsbt-appengine --- GitHub - sbt\\u002fsbt-appengine: deploy your webapp to appengine...\"],[\"http:\\u002f\\u002fwww.tldp.org\\u002fHOWTO\\u002fHOWTO-INDEX\\u002fhowtos.html --- Single list of HOWTOs --- 2017-05-12...\"],[\"http:\\u002f\\u002freferencesource.microsoft.com\\u002f --- .net 4 Source Code --- 2017-05-12...\"],[\"http:\\u002f\\u002f1000lifehacks.com\\u002f --- 1000 Life Hacks --- 2017-05-12...\"],[\"http:\\u002f\\u002fru.docs.kali.org\\u002finstallation-ru\\u002f%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D1%8...\"],[\"http:\\u002f\\u002fwww.familyhandyman.com\\u002fautomotive\\u002fcar-repair-tips-for-fast-fixes\\u002fview-all --- Car Repair Tips...\"],[\"http:\\u002f\\u002fwww.dumpaday.com\\u002fgenius-ideas-2\\u002fsimple-ideas-borderline-genius-24-pics-3\\u002f --- Simple Ideas Th...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f570638\\u002fTen-Cplusplus-Features-Every-Cplusplus-Developer --- Ten ...\"],[\"http:\\u002f\\u002fwww.truthaboutabs.com\\u002fget-ripped-abs.html --- Guys, Get Ripped Six Pack Abs Fast - Rock Hard ...\"],[\"https:\\u002f\\u002ftwitter.github.io\\u002ffinagle\\u002fguide\\u002f --- User’s guide — Finagle 6.24.0 documentation --- 201...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fsolar-energy-diy-project-2-part-series\\u002f --- The Homestead Survival |...\"],[\"http:\\u002f\\u002fwww.w3schools.com\\u002fjsref\\u002fjsref_obj_string.asp --- JavaScript String Object --- 2017-05-12...\"],[\"http:\\u002f\\u002fhackaday.com\\u002f2011\\u002f10\\u002f10\\u002fhow-to-build-a-23-android-tablet\\u002f --- How to build a Android tablet -...\"],[\"http:\\u002f\\u002fwww.php-compiler.net\\u002fdoku.php?id=core%3aphp-in-vs2008 --- core:php-in-vs2008 [Phalanger] --- ...\"],[\"http:\\u002f\\u002fcomplextoreal.com\\u002ftutorials\\u002f#.U2vAk7ZCrlc --- Tutorials on Digital Communications Engineering...\"],[\"http:\\u002f\\u002fbyobu.co\\u002f --- byobu.co --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fandroguard\\u002fandroguard --- androguard\\u002fandroguard · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.thegeekstuff.com\\u002f2012\\u002f03\\u002freverse-engineering-tools\\u002f --- Reverse Engineering Tools in Linu...\"],[\"http:\\u002f\\u002fwww.freecall.com\\u002fen\\u002fsipp.html --- FreeCall | sip with freecall --- 2017-05-12...\"],[\"http:\\u002f\\u002fairbnb.io\\u002fnative-navigation\\u002f --- :reactjs :docs :react-Native Navigation --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.expeditedssl.com\\u002fazure-in-plain-english?utm_source=csharpdigest&utm_medium=email&utm_cam...\"],[\"http:\\u002f\\u002fwww.chipmaker.ru\\u002fforum\\u002f32\\u002f --- :russian :diy steel molding --- 2017-05-12...\"],[\"https:\\u002f\\u002fmedium.com\\u002fwalmartlabs\\u002fopen-sourcing-lacinia-our-graphql-library-for-clojure-96a4ce5fc7b8 --...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2015\\u002f10\\u002f27\\u002fhonda-clarity-fuel-cell\\u002f#QzvuHaFxO75Q --- Honda's Clarity Fuel Cell s...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fdadget\\u002fblog\\u002f287456\\u002f --- :GSM :smarthome :security :russian :vendor --- ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fjohnwpowell\\u002farchive\\u002f2008\\u002f03\\u002f23\\u002f10-tips-to-boost-your-productivity-with-c-and-v...\"],[\"https:\\u002f\\u002fgithub.com\\u002fHubPress\\u002fhubpress.io --- HubPress\\u002fhubpress.io --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.affiliator.io\\u002f --- :ecommerce :business Affiliator - Easy affiliate linking --- 2017-05-1...\"],[\"http:\\u002f\\u002fyourlegalrights.on.ca\\u002f --- Your :Legal Rights :Ontario --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f37893\\u002fjLinq-2-2-0-Released.aspx --- CodeProject: jLinq 2.2.0 Rel...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fwindowsazure\\u002ftools\\u002f --- Windows Azure Platform Tools & Downloads | Develope...\"],[\"http:\\u002f\\u002fodetocode.com\\u002farticles\\u002f440.aspx --- Profiles In ASP.NET 2.0 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.vmware.com\\u002fappliances\\u002fdirectory\\u002f615243 --- Tomcat - Java Application Deployment | Virtual...\"],[\"http:\\u002f\\u002fwww.littlehouseliving.com\\u002f5-ways-begin-switching-solar-today.html --- 5 Easy ways that you ca...\"],[\"http:\\u002f\\u002fwildwillys.com\\u002fm274a5.jpg --- M274 Mule 4x4. --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.dynatrace.com\\u002f2009\\u002f04\\u002f07\\u002fperformance-analysis-how-to-identify-bad-methods-messing-up-the...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogle\\u002fkeyczar --- google\\u002fkeyczar · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002faws.amazon.com\\u002fkinesis\\u002f --- AWS | Amazon Kinesis --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.homebuiltrovs.com\\u002f --- Homebuilt Rovs --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvival.outdoorlife.com\\u002fblogs\\u002fsurvivalist\\u002f2013\\u002f05\\u002fsurvival-skills-how-build-fish-funnel-trap...\"],[\"http:\\u002f\\u002fmattwarren.org\\u002f2017\\u002f05\\u002f08\\u002fArrays-and-the-CLR-a-Very-Special-Relationship\\u002f --- :.net Arrays an...\"],[\"http:\\u002f\\u002fmacgyverisms.wonderhowto.com\\u002fhow-to\\u002fturn-your-old-satellite-dish-into-outdoor-solar-cooker-01...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fC%2B%2B_Programming\\u002fIdioms --- C++ Programming\\u002fIdioms - Wikibooks, coll...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnitinmittal13\\u002fKeywordSuggestor --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ginktage.com\\u002f?p=775 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch\\u002f?v=8-HUxeIxFsQ --- How to Defend against a Gun to the Face | Krav Maga ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fjmstall\\u002farchive\\u002f2004\\u002f10\\u002f05\\u002f237954.aspx --- Mike Stall's .NET Debugging Blog : ...\"],[\"http:\\u002f\\u002fkhason.net\\u002fdev\\u002frsa-private-key-import-from-pem-format-in-c\\u002f --- how to import OpenSSL private...\"],[\"http:\\u002f\\u002fhadoop.apache.org\\u002f --- Welcome to Apacheâ„¢ Hadoop®! --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.answers.com\\u002fbb\\u002f --- Question Answering Engine --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fStatistical_Analysis:_an_Introduction_using_R --- Statistical Analysis:...\"],[\"http:\\u002f\\u002fearlylearning.momtrusted.com\\u002f2013\\u002f04\\u002fgrow-onions-in-10-days-great-growing-project-for-young-k...\"],[\"http:\\u002f\\u002fwww1.icsi.berkeley.edu\\u002f~nweaver\\u002fpapers\\u002f2011-imc-gq.pdf --- GQ: Practical Containment for Meas...\"],[\"https:\\u002f\\u002fcloud.google.com\\u002fvideo-intelligence\\u002f --- :computer-vision :ai :google-apps Cloud Video Intel...\"],[\"http:\\u002f\\u002fblessmyweeds.com\\u002f10-fastest-growing-veggies-for-your-garden\\u002f --- 10 Fastest Growing Veggies f...\"],[\"http:\\u002f\\u002fmacgyverisms.wonderhowto.com\\u002fhow-to\\u002fturn-your-charcoal-grill-into-tandoori-oven-using-flowerp...\"],[\"http:\\u002f\\u002fwww.dumpaday.com\\u002frandom-pictures\\u002ffunny-pictures\\u002ffunny-picture-dump-of-the-day-51-pics-5\\u002f --- ...\"],[\"http:\\u002f\\u002fpremeditatedleftovers.com\\u002fgardening\\u002fdiy-mini-greenhouse\\u002f --- How to Make a Mini-Greenhouse f...\"],[\"http:\\u002f\\u002fwww.opensips.org\\u002f --- openSIPS | Main \\u002f HomePage --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstanislaw\\u002fawesome-safety-critical --- :awesome :security about programming practi...\"],[\"http:\\u002f\\u002fd-made.com\\u002fself-watering-planter.html --- Building sub-irrigated raised garden beds by camera...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fviews\\u002fMachineLearning.html --- CRAN Task View: Machine Learning & Stat...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fBeginWPF2.aspx --- CodeProject: WPF : A Beginners guide part 2 of ...\"],[\"http:\\u002f\\u002fwww.lispcast.com\\u002fuse-your-imagination --- :clojure :lisp Use Your Imagination | LispCast --- ...\"],[\"http:\\u002f\\u002ftrentrichardson.com\\u002fexamples\\u002fcsstooltips\\u002f --- CSS Bubble Tooltips --- 2017-05-12...\"],[\"http:\\u002f\\u002ftiny.website\\u002f --- :business Tiny buys internet companies --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsoundsilence\\u002fImageSmoothing --- :cpp :matlab :image-processing collection of imag...\"],[\"http:\\u002f\\u002fwww.ploscompbiol.org\\u002farticle\\u002finfo%3Adoi%2F10.1371%2Fjournal.pcbi.1000532 --- PLoS Computation...\"],[\"http:\\u002f\\u002fwww.infoworld.com\\u002fd\\u002fadventures-in-it\\u002fseven-it-certifications-matter-083?page=0,0 --- Seven IT...\"],[\"http:\\u002f\\u002fspring.io\\u002fguides\\u002fgs\\u002faccessing-data-rest\\u002f --- Getting Started · Accessing JPA Data with REST ...\"],[\"http:\\u002f\\u002fbrownthumbmama.com\\u002f2014\\u002f02\\u002f5-best-container-vegetables.html --- “Jade Gem” lettuce: An heirlo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmandatoryprogrammer\\u002fxssless --- XSSLess - An automated XSS payload generator writ...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fwf4migration --- Windows Workflow Foundation (WF) Migration Guidance ...\"],[\"http:\\u002f\\u002fark.intel.com\\u002f --- Automated Relational KnowledgeBase | Intel® --- 2017-05-12...\"],[\"http:\\u002f\\u002fconnelhooley.uk\\u002fblog\\u002f2017\\u002f04\\u002f30\\u002ff-sharp-to-c-sharp --- :csharp :fsharp Calling F# Code in a C...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2724582&R=2724582 --- 301 ways to use social m...\"],[\"http:\\u002f\\u002fwww.omdc.on.ca\\u002fPage3215.aspx --- OMDC Interactive Digital Media Fund --- 2017-05-12...\"],[\"http:\\u002f\\u002fm.instructables.com\\u002fid\\u002fHow-to-build-a-ROV-Submarine\\u002f --- DIY Underwater ROV (Submarine) --- 2...\"],[\"http:\\u002f\\u002fknowledgeweighsnothing.com\\u002foff-the-grid-easy-to-build-diy-refrigerator\\u002f --- Off The Grid Easy...\"],[\"http:\\u002f\\u002fwww.faqs.org\\u002fdocs\\u002fLinux-mini\\u002fIO-Port-Programming.html --- Linux I\\u002fO port programming mini-HOW...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fintroduction-r-programming-microsoft-dat204x-0 --- Introduction to R Prog...\"],[\"http:\\u002f\\u002fwww.endian.com\\u002fcommunity\\u002foverview\\u002f --- Open Source UTM and Firewall | Endian Firewall Communi...\"],[\"http:\\u002f\\u002flearnenglishsecrets.blogspot.com\\u002f2008\\u002f07\\u002flearn-how-to-learn-english.html?gclid=CN_-ovfO-pgCFR...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002fdocker-has-turned-us-all-sysadmins --- Docker Has Turned us A...\"],[\"https:\\u002f\\u002fsantoku-linux.com\\u002f --- Santoku-Linux --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmobking33\\u002fpyexfil --- mobking33\\u002fpyexfil · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nullskull.com\\u002fa\\u002f10477393\\u002fobfuscating-xamarin-applications.aspx --- :tools :security :obfu...\"],[\"http:\\u002f\\u002fsixrevisions.com\\u002ftools\\u002ftop-five-web-design-tools\\u002f --- Top Five Web Design Tools --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyId=F60E8C41-5818-4977-A458-6C9D18D1553E&displa...\"],[\"http:\\u002f\\u002fsoftware.imdea.org\\u002f~juanca\\u002fpapers\\u002fcloud_dimva13.pdf --- Driving in the Cloud: An Analysis of ...\"],[\"https:\\u002f\\u002fwww.johndcook.com\\u002fblog\\u002f2017\\u002f03\\u002f22\\u002fgolden-powers-are-nearly-integers\\u002f --- :mathematics Powers...\"],[\"https:\\u002f\\u002fwww.microsoft.com\\u002fen-us\\u002fresearch\\u002fblog\\u002fdeep-learning-program-synthesis\\u002f?wt.mc_id=MCR_378116_F...\"],[\"http:\\u002f\\u002fwww.solrtutorial.com\\u002flucene-query-builder.html --- Lucene Query Builder - SolrTutorial.com --...\"],[\"https:\\u002f\\u002fdeveloper.android.com\\u002fsamples\\u002fBasicAndroidKeyStore\\u002findex.html --- BasicAndroidKeyStore | And...\"],[\"http:\\u002f\\u002fwww.social-engineer.org\\u002fframework\\u002fgeneral-discussion\\u002f --- Social Engineering Framework --- 20...\"],[\"http:\\u002f\\u002fwww.rforge.net\\u002fRserve\\u002fdoc.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fclaimsbasedwpf.codeplex.com\\u002f --- WPF Guidance for Claims-Based and Federated Security Models ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogleinurl\\u002fWordpress-A.F.D-Verification --- googleinurl\\u002fWordpress-A.F.D-Verifica...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2008\\u002f04\\u002f10\\u002fasp-net-dynamic-data-preview-available.aspx --- AS...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fUsing_the_Java_Cryptographic_Extensions --- Using the Java Cryptogra...\"],[\"https:\\u002f\\u002fgithub.com\\u002fPkmX\\u002flcamera --- PkmX\\u002flcamera - Android L Camera --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fsqlserver\\u002f2008\\u002fen\\u002fus\\u002fr2-complex-event.aspx --- SQL Server 2008 R2 – Strea...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fscrapbook\\u002fGoing_Solo_Part_2A.aspx --- CodeProject: Going Solo – Firs...\"],[\"http:\\u002f\\u002fwww.dnncreative.com\\u002fTutorials\\u002fHowtobuildawebsiteinDotNetNuke\\u002fCreatingaSkinTemplate\\u002ftabid\\u002f216\\u002f...\"],[\"http:\\u002f\\u002fwordnet.princeton.edu\\u002fwordnet\\u002frelated-projects\\u002f#.NET --- WordNet - Related projects --- 2017-...\"],[\"http:\\u002f\\u002fhubpages.com\\u002ftechnology\\u002fjava\\u002f6242 --- Java Articles | HubPages Technology --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsyng-io\\u002fethereumj-android --- syng-io\\u002fethereumj-android · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fp\\u002fglobalplatform\\u002fwiki\\u002fGPShell\\u002f --- Implementation of GlobalPlatform smart-car...\"],[\"http:\\u002f\\u002ftrinixy.ru\\u002f --- Триникси - Вселенная Развлечений. КартинкÐ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fkingston_technology\\u002fblog\\u002f286506\\u002f --- :diy how to upgrade memory --- 201...\"],[\"http:\\u002f\\u002ficecat.co.uk\\u002f --- - ICEcat: open catalogue for free distribution of manufacturer product data...\"],[\"http:\\u002f\\u002fwww.visualmicro.com\\u002f --- Arduino IDE for Microsoft Visual Studio and Atmel Studio --- 2017-05...\"],[\"http:\\u002f\\u002fwww.elastix.org\\u002fdokuwiki\\u002fdoku.php?id=pbxfunctionality --- extensions and trunks setup --- 201...\"],[\"http:\\u002f\\u002fcoinsprofit.com\\u002f --- Курс Биткоин, курс Лайткоин, заработок Ð...\"],[\"http:\\u002f\\u002fcompfight.com\\u002f --- Compfight \\u002f A Flickr Search Tool --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftimjacobi\\u002fangular-education --- timjacobi\\u002fangular-education · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285324\\u002f --- :science virtual moon reconnaissance \\u002f Geektimes --- 2017-05-1...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fms751804.aspx --- Resources How-to Topics --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.orderannualreports.com\\u002f060\\u002fUI\\u002fGP\\u002fGP_thank_you_grid.aspx --- Order Annual Reports --- 201...\"],[\"http:\\u002f\\u002ftt.bwel.ch\\u002fen\\u002flatest\\u002f --- :python tt - the Boolean expression :toolbox :docs --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.radioactiveyak.com\\u002f2011\\u002f05\\u002fandroid-protips-at-io-session-video-and.html --- The Radioact...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f5-knots-everyone-should-know\\u002f --- sheetbend knot | 5 Knots Everyone Should K...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=tkwZ1jG3XgA --- :python :Django in Depth :YouTube --- 2017-05-12...\"],[\"https:\\u002f\\u002fngrok.com\\u002f --- :computer-networks :tools ngrok - secure introspectable tunnels to localhost ...\"],[\"http:\\u002f\\u002fwww.axcms.net\\u002fen_axcms_home.AxCMS?ActiveID=5790 --- AxCMS.net --- 2017-05-12...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%A0%D0%B8%D0%BC%D0%B0%D0%BD%D0%BE%D0%B2%D0%B0_%D0%BC%D0%B5%D1%82%D1%...\"],[\"https:\\u002f\\u002fwww.hackerone.com\\u002fresources\\u002fhack-learn-earn --- :security :job-search Hack, Learn and Earn b...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fCKS --- Community Kit for SharePoint - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?Ntt=linux+shell --- linux shell search on Toronto Publ...\"],[\"http:\\u002f\\u002fwww.zeromq.org\\u002f --- zero mq --- 2017-05-12...\"],[\"https:\\u002f\\u002fcloud.google.com\\u002fsolutions\\u002fusing-tensorflow-jupyterhub-classrooms --- :tensorflow :google :m...\"],[\"http:\\u002f\\u002fmatt.might.net\\u002farticles\\u002fby-example-continuation-passing-style\\u002f --- By example: Continuation-p...\"],[\"http:\\u002f\\u002fxakep-archive.ru\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3096418&R=3096418 --- Instant Android fragment...\"],[\"http:\\u002f\\u002fmvcvalidatortoolkit.codeplex.com\\u002f --- Validator Toolkit for ASP.NET MVC - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fmikewat\\u002farchive\\u002f2008\\u002f04\\u002f16\\u002fweb-stress-test-white-paper-published.aspx --- Shar...\"],[\"https:\\u002f\\u002fwww.condocerts.com\\u002f --- CondoCerts --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fProbability_theory --- Probability theory - Wikipedia, the free encyclo...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=865504 --- SourceForge.net: Java Tookit 1.2 Alpha Re...\"],[\"http:\\u002f\\u002fwww.graphengine.io\\u002f --- Graph Engine --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tribler.org\\u002f --- Tribler - Tor-inspired onion routing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.kalitut.com\\u002f2015\\u002f02\\u002fcreate-bootable-usb-kali-linux-on.html --- how to install kali linux ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fPestov\\u002fbest-of-awesomeness-and-usefulness-for-webdev --- Pestov\\u002fbest-of-awesomene...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002freflexil\\u002f --- SourceForge.net: Reflexil --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fdialogplus --- guangliang2014\\u002fdialogplus · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fArduino-Projects\\u002f --- Arduino Projects --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww209.americanexpress.com\\u002fmerchant\\u002fsinglevoice\\u002fdsw\\u002fFrontServlet?request_type=dsw&pg_nm=pci&...\"],[\"http:\\u002f\\u002fwww.cs.toronto.edu\\u002f~fbacchus\\u002fcsc2512\\u002fLectures\\u002f2013Readings\\u002fSkallah_Empirical_Study_SAT_Solver...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fgraphics\\u002fpaintdotnetfiletype.aspx --- CodeProject: Creating Paint.NET ...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=YPdat-4tsOc --- Go Kart Plans | Download Free PDF - KartFab.com --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002fetorreborre\\u002fs99 --- etorreborre\\u002fs99 · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nektra.com\\u002fproducts\\u002fdeviare-api-hook-windows\\u002f --- Deviare 2.6.9: Code instrumentation for...\"],[\"http:\\u002f\\u002fiis6sqlinjection.codeplex.com\\u002f --- IIS 6 SQL Injection Sanitation ISAPI Wildcard --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstephanenicolas\\u002frobospice --- stephanenicolas\\u002frobospice --- 2017-05-12...\"],[\"https:\\u002f\\u002fgokrazy.github.io\\u002f?hn --- :Golang :RaspberryPi 3 appliances --- 2017-05-12...\"],[\"http:\\u002f\\u002fcollabprojects.linuxfoundation.org\\u002f --- Linux Foundation Collaborative Projects --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fLawnmower-Power-Generator-With-A-Twist\\u002f --- Lawnmower Power Generato...\"],[\"http:\\u002f\\u002fdirk.rave.org\\u002fcombinatris\\u002f --- :functional-programming :games Combinatris --- 2017-05-12...\"],[\"http:\\u002f\\u002fyourhouseandgarden.com\\u002f15-cheap-easy-diy-greenhouse-projects\\u002f --- Awesome collection of proje...\"],[\"http:\\u002f\\u002freverse.lostrealm.com\\u002ftools\\u002findex.html --- Reverse Engineering using the Linux Operating Syst...\"],[\"http:\\u002f\\u002fwww.asternic.org\\u002f --- Asterisk Flash Operator Panel --- 2017-05-12...\"],[\"http:\\u002f\\u002freactide.io\\u002f --- :tools Reactide -- dedicated :ide for :reactjs --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fpeggy\\u002f26-hacks-that-will-make-any-cat-owners-life-easier?utm_term=.ceWWayv2N...\"],[\"http:\\u002f\\u002fdistrictdatalabs.silvrback.com\\u002fmodern-methods-for-sentiment-analysis?imm_mid=0d0308&cmp=em-da...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fhub\\u002fDIY\\u002f --- Хабрахабр --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww-formal.stanford.edu\\u002fjmc\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.microsoft.co.il\\u002fblogs\\u002ftamir\\u002farchive\\u002f2008\\u002f12\\u002f25\\u002fcapturing-and-streaming-sound-by-using-d...\"],[\"http:\\u002f\\u002fwww.microcommander.com\\u002fcomponents\\u002fcomponentsdataacqu.htm --- microCommander - Develop control...\"],[\"http:\\u002f\\u002fwww.bountifulgardens.org\\u002fprodinfo.asp?number=SOI-9418 --- Home oil press! Press your own sunf...\"],[\"https:\\u002f\\u002fgoogle.github.io\\u002fstyleguide\\u002fjavaguide.html --- Google :Java Style :Guide --- 2017-05-12...\"],[\"https:\\u002f\\u002ffatiherikli.github.io\\u002farchetype\\u002f --- Archetype -- prototyping :tools --- 2017-05-12...\"],[\"http:\\u002f\\u002farea51.stackexchange.com\\u002fproposals\\u002f61500\\u002fnetwork-science?referrer=IBpaRYY5fpBXYhOLpkU90Q2 ---...\"],[\"https:\\u002f\\u002fsubgraph.com\\u002fvega\\u002findex.en.html --- Vega Vulnerability Scanner --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=_pWYvBQ7zQo --- Poly Lactic Acid - YouTube --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fms750950.aspx --- StaticResource Markup Extension --- 2017-...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002fPDF417 --- PDF417 — Википедия --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww2.miami-dadeclerk.com\\u002fMFS\\u002f --- Miami-Dade County Clerk Mortgage Foreclosure Online Sytem -...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fBuilding-Telephony-Systems-OpenSER-step\\u002fdp\\u002f1847193730 --- @ amazon store --- 2...\"],[\"http:\\u002f\\u002ftheteardroptrailer.blogspot.com\\u002f2008\\u002f11\\u002ftour.html --- The Teardrop Trailer: So how about a qu...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2015\\u002f06\\u002f03\\u002fbow-making-how-to\\u002f --- Bow Making Course - How to Make Your Own B...\"],[\"http:\\u002f\\u002flib.ru\\u002fCTOTOR\\u002fIBMPC\\u002fabel.txt --- Питер Абель. Ассемблер и програмÐ...\"],[\"https:\\u002f\\u002fnvd.nist.gov\\u002fvuln\\u002fdetail\\u002fCVE-2016-10229#vulnDescriptionTitle --- :linux :security :CVE-2016-...\"],[\"http:\\u002f\\u002fimgur.com\\u002fgallery\\u002fagOgVVu --- A much better list of free, useful software. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fHow-be-Online-Alternatives-Eydie-ebook\\u002fdp\\u002fB00WH9NHJI\\u002f --- Amazon.com: How to b...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgbrunton\\u002fCacheRepository --- gbrunton\\u002fCacheRepository · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fabhisuri97\\u002fleARn --- :csharp :unity :Augmented-Reality with Google Cardboard and ...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002ftomcat-apache --- Tomcat on Apache Appliance - | TurnKey Linux Virtual A...\"],[\"http:\\u002f\\u002fwww.cso.com.au\\u002farticle\\u002f616755\\u002flastpass-scrambling-fix-another-serious-vulnerability\\u002f --- :sec...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftools\\u002fsdk\\u002fndk\\u002findex.html --- Android NDK | Android Developers --- 2017-...\"],[\"http:\\u002f\\u002fstanford.edu\\u002fclass\\u002fee103\\u002f --- stanford.edu :: matrix methods and applications --- 2017-05-12...\"],[\"http:\\u002f\\u002ffeedly.com\\u002fe\\u002fmlA0SrQw --- 5 Ways to Purify Water -Stocking your water reserves is one of the ...\"],[\"http:\\u002f\\u002fwww.blogto.com\\u002ftech\\u002f2008\\u002f05\\u002fcancel_your_cable_and_get_free_tv\\u002f --- Cancel Your Cable and Get ...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fuser\\u002flidnug --- LIDNUG LinkedIn - YouTube --- 2017-05-12...\"],[\"https:\\u002f\\u002fdatamining.codeplex.com\\u002f --- Data Mining SDK --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.bu.edu\\u002flawlibrary\\u002ftraining\\u002fclasses\\u002fexamprep.html --- BU Law Library | Training | Exam Pre...\"],[\"https:\\u002f\\u002fwiki.installgentoo.com\\u002findex.php\\u002fDatabases --- Databases - InstallGentoo Wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.immigrantjustice.org\\u002f --- :usa :immigration National Immigrant Justice Center --- 2017-05...\"],[\"http:\\u002f\\u002fwww.lighttpd.net\\u002f --- Lighttpd - fast web server --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.innerworkings.com\\u002f --- Home | Learn .NET, Code Collaboration & Software Process Training...\"],[\"https:\\u002f\\u002fwww.schneier.com\\u002fcryptography.html --- Schneier on Security: Cryptography --- 2017-05-12...\"],[\"http:\\u002f\\u002fsavedelete.com\\u002f10-best-and-free-online-css-editors-for-web-designers.html --- 10 Best And Fre...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdlsyj\\u002finterview-2 --- :algorithms :job-search :interview questions --- 2017-05-12...\"],[\"http:\\u002f\\u002fsharpstunt.codeplex.com\\u002f --- SharpSTUNT --- 2017-05-12...\"],[\"http:\\u002f\\u002fspot.light.co\\u002flight-l16-camera-launch\\u002f --- Introducing the Light L16 Camera --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fshell\\u002fietoolbartutorial.aspx --- CodeProject: Internet Explorer Toolba...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fgretl\\u002f --- SourceForge :: Gretl - cross-platform statistical package...\"],[\"https:\\u002f\\u002fgithub.com\\u002flongld\\u002fpeda --- longld\\u002fpeda · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.makeuseof.com\\u002ftag\\u002f5-ways-to-clone-and-copy-your-hard-drive\\u002f --- 5 Ways To Clone & Copy Yo...\"],[\"http:\\u002f\\u002fwww.datanami.com\\u002f2015\\u002f11\\u002f16\\u002fmachine-learnings-big-role-in-the-future-of-cybersecurity\\u002f --- Ma...\"],[\"http:\\u002f\\u002fwww.canyouseeme.org\\u002f --- Open Port Check Tool --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fsentiment-analysis-with-machine-learning-in-r\\u002f --- Sentiment analysis with...\"],[\"https:\\u002f\\u002fwww.cs.utexas.edu\\u002fusers\\u002fEWD\\u002f --- :free :video :papers :books Dijkstra manuscripts --- 2017-0...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=network+security+hacks --- network securit...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPrinciple_of_maximum_entropy --- Principle of maximum entropy - Wikiped...\"],[\"http:\\u002f\\u002fa-geometry.narod.ru\\u002fother\\u002fother.htm --- Аналитическая геометрия. Ста...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdelight-im\\u002fSecurityGuard --- delight-im\\u002fSecurityGuard · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fapkmultitool.com\\u002f?q=node\\u002f5 --- APK Multi-Tool --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002ftesseract-ocr\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.syncfusion.com\\u002fresources\\u002ftechportal\\u002febooks?utm_medium=devmediaebJune13 --- None --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcheckcheckzz\\u002fpython-github-projects\\u002fblob\\u002fmaster\\u002fWebMining.md --- python-github-pr...\"],[\"http:\\u002f\\u002fwww.catswhocode.com\\u002fblog\\u002fhow-to-easily-create-charts-using-jquery-and-html5 --- How to easily...\"],[\"http:\\u002f\\u002fwww.odata.org\\u002fdevelopers\\u002fprotocols\\u002furi-conventions#FilterSystemQueryOption --- OData Protocol...\"],[\"http:\\u002f\\u002foffice.microsoft.com\\u002fen-us\\u002fclipart\\u002fdefault.aspx --- Download free clip art, photos, animation...\"],[\"http:\\u002f\\u002fwww.entrepreneurial-insights.com\\u002funderstanding-marketing-mix-concept-4ps\\u002f --- Marketing 101 -...\"],[\"http:\\u002f\\u002fwww.fon.hum.uva.nl\\u002fpraat\\u002f --- Praat: doing Phonetics by Computer --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002fbasics\\u002fnetwork-ops\\u002fconnecting.html --- Connecting to the Netwo...\"],[\"http:\\u002f\\u002fcomix.sourceforge.net\\u002f --- Comix - GTK Comic Book Viewer --- 2017-05-12...\"],[\"http:\\u002f\\u002fisg.rhul.ac.uk\\u002fsullivan\\u002fpubs\\u002ftr\\u002f2009-12.pdf --- Mining the Network Behavior of Bots --- 2017-...\"],[\"http:\\u002f\\u002fdiyprojects.ideas2live4.com\\u002f2015\\u002f09\\u002f02\\u002fmake-a-real-indian-tandoor-oven-out-of-terracotta-flow...\"],[\"https:\\u002f\\u002fskillsmatter.com\\u002fskillscasts\\u002f9820-enter-integrant-a-micro-framework-for-data-driven-architec...\"],[\"https:\\u002f\\u002fbadssl.com\\u002f --- :opensource ::security :tools Memorable site for :testing clients against ba...\"],[\"http:\\u002f\\u002fiqtoolkit.codeplex.com\\u002f --- LINQ IQueryable Toolkit - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.reallusion.com\\u002ficlone\\u002f --- iClone - Solution for Real-time 3D Animation 3D Stereo Video -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnjhartwell\\u002fpw3nage --- :linux :security pw3nage -- If you get pw3ned, might want ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactive-Extensions\\u002fRx.NET --- GitHub - Reactive-Extensions\\u002fRx.NET: The Reactive ...\"],[\"http:\\u002f\\u002fdecisionframework.codeplex.com\\u002f --- examples and patterns from the MSDN Article: Real World W...\"],[\"http:\\u002f\\u002fwww.telecom.kz\\u002findex.php?uin=1255336342&actn=business&lang=rus --- id phone --- 2017-05-12...\"],[\"http:\\u002f\\u002fwilsonminesco.com\\u002f16bitMathTables\\u002f --- 16-bit :math look-up tables --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fFurniel\\u002fApk-Changer\\u002fblob\\u002fmaster\\u002fother\\u002fsmali_npp.xml --- Apk-Changer\\u002fother\\u002fsmali_n...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fsharepoint\\u002fAccess_SharePoint_Objects.aspx --- CodeProject: Accessing S...\"],[\"https:\\u002f\\u002fgithub.com\\u002fweidai11\\u002fcryptopp --- :cryptography :free :cpp class library of cryptographic sch...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHow-to-make-a-cheap-Attiny-Arduino-Board\\u002f --- How to make a cheap At...\"],[\"http:\\u002f\\u002fbookscanner.pbworks.com\\u002fw\\u002fpage\\u002f40965440\\u002fFrontPage --- Homer Book Scanner Open Project [licens...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fcc721269%28v=sql.100%29.aspx --- SQL Server 2008 Full-Text S...\"],[\"https:\\u002f\\u002fwww1.pbxes.com\\u002fiptel_virtual-pbx.html --- :: p · b · x es :: virtual PBX · hosted PBX · ...\"],[\"https:\\u002f\\u002fpypi.python.org\\u002fpypi\\u002ftxi2p --- txi2p 0.1.5 : Python Package Index --- 2017-05-12...\"],[\"http:\\u002f\\u002fworkday.github.io\\u002fscala\\u002f2014\\u002f01\\u002f09\\u002fscala-for-beginners\\u002f --- Scala For Beginners --- 2017-05-1...\"],[\"http:\\u002f\\u002fuima.lti.cs.cmu.edu\\u002fUCR\\u002fpages\\u002fstatic\\u002fosnlp\\u002fOpenNLPReadme.html --- Apache UIMA OpenNLP Wrapper...\"],[\"https:\\u002f\\u002fgithub.com\\u002fz0mbiehunt3r\\u002fsmtp-enum --- z0mbiehunt3r\\u002fsmtp-enum · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002faspnet\\u002f10ASPNetPerformance.aspx --- CodeProject: 10 ASP.NET Performanc...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fajax\\u002fUsingAjaxBeyondUpdatePane.aspx --- CodeProject: Using Ajax, beyon...\"],[\"http:\\u002f\\u002fdeveloper.yahoo.com\\u002fperformance\\u002frules.html --- Best Practices for Speeding Up Your Web Site -...\"],[\"http:\\u002f\\u002fwww.carmenjohnstongardens.com\\u002f2015\\u002f05\\u002f27\\u002f5-tips-for-container-gardening-3\\u002f --- Some tips for ...\"],[\"http:\\u002f\\u002fwww.dotnetnuke.com\\u002fDotNetNukeProjects\\u002fModuleStore\\u002ftabid\\u002f890\\u002fDefault.aspx --- DotNetNuke \\u003e Dev...\"],[\"http:\\u002f\\u002fwww.multiwii.com\\u002fwiki\\u002findex.php?title=Main_Page --- MultiWii - flight controler --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.wideopenspaces.com\\u002fdiy-window-box-solar-heater-also-doubles-as-a-solar-oven\\u002f?utm_content=...\"],[\"https:\\u002f\\u002ftechviral.net\\u002fhow-to-find-serial-key-of-software\\u002f --- :security :licensing-systems How To Fi...\"],[\"http:\\u002f\\u002fwww.teamrealtydelivers.com\\u002f?page_id=574 --- important phone numbers --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenrtms.org\\u002f --- OpenRTMS - real time mobile sensor platform --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fHackerFantastic\\u002fPublic\\u002fblob\\u002fmaster\\u002fexploits\\u002fjdwp-exploit.txt --- JDWP Arbitrary J...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdloss\\u002fpython-pentest-tools --- dloss\\u002fpython-pentest-tools · GitHub --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.visiondummy.com\\u002fmachine-learning-books\\u002f --- Machine Learning Books - Computer vision for ...\"],[\"http:\\u002f\\u002fwww.md5lab.com\\u002f --- online hash cracker --- 2017-05-12...\"],[\"http:\\u002f\\u002f3dprint.com\\u002f --- 3DPrint.com - 3D Printing & Printer News --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHow-to-3D-scan-with-Skanect\\u002f --- How to 3D scan with Skanect --- 201...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286214\\u002f --- :webdesign :public-web-services :search free images --- 2017-0...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=kinect --- kinect : eBooks & Online Conten...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffacebook\\u002fjest --- :JavaScript :Testing jest -- Painless --- 2017-05-12...\"],[\"https:\\u002f\\u002fsantoku-linux.com\\u002fabout-santoku\\u002f --- About Santoku « Santoku-Linux --- 2017-05-12...\"],[\"http:\\u002f\\u002fru-ubuntu.livejournal.com\\u002f549526.html --- linux log viewer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.asp.net\\u002fcssadapters\\u002fWalkThru\\u002fWalkthrough.aspx --- The Walkthrough: ASP.NET 2.0 CSS Friend...\"],[\"http:\\u002f\\u002fcommunity.familyhandyman.com\\u002ftfh_group\\u002fb\\u002fdiy_advice_blog\\u002farchive\\u002f2011\\u002f09\\u002f06\\u002fdiy-solar-power-p...\"],[\"https:\\u002f\\u002fwww.kickstarter.com\\u002fprojects\\u002f1342192419\\u002fpulse-sensor-an-open-source-heart-rate-sensor-that\\u002fp...\"],[\"http:\\u002f\\u002fdeveloper.yahoo.com\\u002fsearch\\u002fboss\\u002fboss_guide\\u002findex.html --- BOSS API Guide - YDN --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.getsmarteraboutmoney.ca\\u002fmanaging-your-money\\u002fplanning\\u002ftax-planning\\u002fPages\\u002favoiding-a-tax-au...\"],[\"http:\\u002f\\u002fgrowinglots.blogspot.com\\u002f2010\\u002f06\\u002fpotato-towers-living-fence-posts.html --- Potato Tower - can...\"],[\"http:\\u002f\\u002fwww.embeddedrelated.com\\u002fusenet\\u002fembedded\\u002fshow\\u002f97587-1.php --- Cheapest USB microcontroller? | ...\"],[\"http:\\u002f\\u002fwww.tamenergy.com\\u002ftam-wind-turbines.php --- The Honeywell Wind Turbine comes complete with a ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3089881&R=3089881 --- Kismet hacking : Haines,...\"],[\"http:\\u002f\\u002fsparty.secniche.org\\u002f --- sparty.secniche.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fnorvig.com\\u002f --- Peter Norvig on AI --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.theglobeandmail.com\\u002ftechnology\\u002fmeet-techs-most-trusted-man\\u002farticle4444323\\u002f --- popular se...\"],[\"http:\\u002f\\u002fwww.mcafee.com\\u002fuk\\u002fresources\\u002freports\\u002frp-economic-impact-cybercrime.pdf --- The Economic Impac ...\"],[\"http:\\u002f\\u002fgirlsguideto.com\\u002farticles\\u002f15-self-defense-tips-you-need-to-know --- 15 Self Defense Tips You ...\"],[\"http:\\u002f\\u002fappanalysis.org\\u002ftdroid10.pdf --- TaintDroid - paper on analysis of android app misbehavior --...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fsharepoint\\u002fWPSC_MOSS2007.aspx --- CodeProject: WPSC in MOSS2007 - \\\"Can...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14064745 --- :chrome-extensions Ask HN What are your favorite :...\"],[\"http:\\u002f\\u002fwww.ropshell.com\\u002f --- ropshell.com --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNightOfTwelve\\u002fpangu --- NightOfTwelve\\u002fpangu · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tech-recipes.com\\u002frx\\u002f1188\\u002fie7_use_ie6_ie7_together\\u002f --- IE7: Using IE6 and IE7 together | ...\"],[\"http:\\u002f\\u002fblog.parse.com\\u002fannouncements\\u002fintroducing-heroku-parse\\u002f --- Introducing Heroku + Parse --- 201...\"],[\"http:\\u002f\\u002fredlaser.com\\u002f --- RedLaser -price comparison tool --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdennybritz\\u002fstartupreadings --- dennybritz\\u002fstartupreadings --- 2017-05-12...\"],[\"http:\\u002f\\u002fleiningen.org\\u002f --- Leiningen --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.techiedelight.com\\u002fgraphs-interview-questions\\u002f --- :job-search Graphs :Interview Questions...\"],[\"https:\\u002f\\u002fwww.mesh.com\\u002fweb\\u002fdeveloper.aspx --- Live Mesh for Developers --- 2017-05-12...\"],[\"http:\\u002f\\u002fcodingthematrix.com\\u002f --- :computer-vision :books :mathematics Coding The Matrix --- 2017-05-1...\"],[\"http:\\u002f\\u002fmachinelearningmastery.com\\u002f --- Machine Learning Mastery | Making programmers awesome at mach...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fACE\\u002f --- Books on ACE --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.centos.org\\u002f --- www.centos.org - The Community ENTerprise Operating System --- 2017-05-12...\"],[\"http:\\u002f\\u002fthegeez.net\\u002f2014\\u002f03\\u002f12\\u002fbayes_mcmc_clojure.html --- :clojure :machine-learning thegeez blog - ...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch\\u002f?v=v2Rzhr1OtN4 --- Krav Maga Defense against Choke from the Front | Kra...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f322236\\u002f --- :job-search :interview phone interview at Amazon --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSpiderLabs\\u002fikeforce --- IKEForce :: command line IPSEC VPN brute forcing tool for...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f204310\\u002f --- Простой SDR приёмник на ПЛИС \\u002f ХабраÑ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpinceladasdaweb\\u002fStatic-Site-Generators --- List of static site generators in vari...\"],[\"https:\\u002f\\u002faddons.mozilla.org\\u002fen-US\\u002ffirefox\\u002faddon\\u002frestclient\\u002f --- RESTClient :: Add-ons for Firefox ---...\"],[\"https:\\u002f\\u002fwww.coursera.org\\u002flearn\\u002fneural-networks --- :Neural-Networks for :Machine-Learning - Universi...\"],[\"http:\\u002f\\u002fwww.powerpbx.ru\\u002fblog\\u002f?p=157 --- VoIP-GSM шлюз на основе модема HUAWEI [HOWT...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f321206\\u002f --- :network-analysis habrahabr and geektimes --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002foff-the-grid-cooking-tips\\u002f --- 6 Off the Grid Cooking Tips | How to Cook Wit...\"],[\"http:\\u002f\\u002fnewskillsforsurvival.blogspot.com\\u002f2012\\u002f12\\u002fhow-to-make-solar-still-make-your-own.html --- New ...\"],[\"http:\\u002f\\u002fwww.hedgerwow.com\\u002f360\\u002fdhtml\\u002fui_input_listbox\\u002fdemo.php?s%5B%5D=50 --- Making ListBox with CSS ...\"],[\"http:\\u002f\\u002ftuvalu.santafe.edu\\u002f~aaronc\\u002fpowerlaws\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.xamarin.com\\u002fxamarin-dev-days-recap\\u002f --- :video :moocs Xamarin Dev Days Available On-Dem...\"],[\"http:\\u002f\\u002fwww.cprogramming.com\\u002fjava\\u002fc-and-c++-for-java-programmers.html --- C and C++ for Java Programm...\"],[\"http:\\u002f\\u002fbooks.google.com\\u002fbooks\\u002fabout\\u002fBasic_category_theory_for_computer_scien.html?id=ezdeaHfpYPwC --...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSoftphone --- Softphone - Wikipedia, the free encyclopedia --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogle\\u002fcayley --- google\\u002fcayley · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fadamjshook\\u002fmapreducepatterns --- adamjshook\\u002fmapreducepatterns · GitHub --- 2017-...\"],[\"http:\\u002f\\u002fwww.antlr.org\\u002f --- ANTLR (ANother Tool for Language Recognition) --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.burnerapp.com\\u002f --- Burner App - alternative to burner phone --- 2017-05-12...\"],[\"http:\\u002f\\u002fgigalinuxhosting.com\\u002f --- Online Computer Support - Just another WordPress site --- 2017-05-1...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14052455 --- :webdev :python best :tutorial for learning Flask ...\"],[\"https:\\u002f\\u002fwww.shopify.com\\u002fblog\\u002f64297285-how-to-predict-if-your-next-venture-will-be-profitable --- How...\"],[\"http:\\u002f\\u002fwww.omgubuntu.co.uk\\u002f2017\\u002f04\\u002fboostnote-open-source-note-taking-app-designed-coders --- :electr...\"],[\"http:\\u002f\\u002fconfreaks.tv\\u002fvideos\\u002fgogaruco2010-the-shell-hater-s-handbook --- :video :Shell Hater&#39;s Han...\"],[\"https:\\u002f\\u002fbugs.launchpad.net\\u002fubuntu\\u002f+source\\u002fpulseaudio\\u002f+bug\\u002f178442\\u002fcomments\\u002f30 --- Comment #30 : Bug #...\"],[\"http:\\u002f\\u002fwww.openculture.com\\u002f2017\\u002f04\\u002fthe-tone-circle-john-coltrane-drew-to-illustrate-the-theory-behin...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002fdatacompressionguide\\u002f --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.builditsolar.com\\u002fProjects\\u002fWaterHeating\\u002fStockTankBatchHeater\\u002fStockTankBatchHeater.htm --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002falias1\\u002fsparty --- alias1\\u002fsparty · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ollydbg.de\\u002f --- OllyDbg v1.10 --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwiire\\u002fpixiewps --- wiire\\u002fpixiewps · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fandroid-uitableview --- guangliang2014\\u002fandroid-uitableview · GitH...\"],[\"http:\\u002f\\u002fwww.java2s.com\\u002fOpen-Source\\u002fAndroid_Free_Code\\u002fLocation\\u002fShare\\u002findex.htm --- Android Open Source...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjevakallio\\u002fredux-offline --- redux-offline Offline-First Apps :Reactjs :react-nat...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285802\\u002f --- :bitcoin history --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnzakas\\u002funderstandinges6 --- :javascript :ECMAScript6 :free :books content for boo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDenisKolodin\\u002ftsng2 --- :angularjs tsng2 Minimal :TypeScript :Angular2 :Electron ...\"],[\"http:\\u002f\\u002fjournal.r-project.org\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.makershed.com\\u002fproducts\\u002fmintyboost-usb-charger-kit-v3-0 --- Charge on the go. Build this s...\"],[\"https:\\u002f\\u002fwww.quantopian.com\\u002fposts\\u002fenhancing-short-term-mean-reversion-strategies-1?utm_source=All+Act...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkpreid\\u002fshinysdr --- :python shinysdr -- Software-defined :radio receiver applicat...\"],[\"http:\\u002f\\u002fsorgalla.com\\u002fprojects\\u002fjcarousel\\u002f --- jCarousel - Riding carousels with jQuery --- 2017-05-12...\"],[\"http:\\u002f\\u002f1000lifehacks.com\\u002fpage\\u002f3 --- 1000 Life Hacks --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tufat.com\\u002fs_google_map_tools.htm --- MapTools - Three simple Google Maps applications com...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fzeeshanhirani\\u002farchive\\u002f2008\\u002f12\\u002f18\\u002fmy-christmas-present-to-the-entity-framework...\"],[\"http:\\u002f\\u002fdotnetslackers.com\\u002farticles\\u002fajax\\u002fJSON-EnabledWCFServicesInASPNET35.aspx --- JSON-Enabled WCF ...\"],[\"http:\\u002f\\u002fwww.wpb.org\\u002fCityCalendar\\u002f --- CityCalendar - West Palm Beach Events Calendar --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wikihow.com\\u002fMake-Aspirin-if-You%27re-Lost-in-the-Woodsaspirin-from-bark\\u002f --- Perhaps the ...\"],[\"http:\\u002f\\u002fviciproject.com\\u002findex --- Vici Project - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.neark.kz\\u002findex.php\\u002fen\\u002f --- НАЦИОНАЛЬНАЯ ИНЖЕНЕРНАЯ АКАДЕМИЯ...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002ftag\\u002fcapm\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.bobatkins.com\\u002fphotography\\u002fdigital\\u002fcanon_eos_40D_review_lenses.html --- None --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.datasciencecentral.com\\u002fprofiles\\u002fblogs\\u002f15-deep-learning-tutorials --- 15 Deep Learning Tut...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fenaR\\u002fvignettes\\u002fenaR.pdf --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fblake2.net\\u002f --- BLAKE2 - fast secure hashing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nist.gov\\u002fitl\\u002fcsd\\u002fct\\u002fnist_beacon.cfm --- NIST Randomness Beacon --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.templateworld.com\\u002ffree_templates.html --- Free XHTML\\u002fCSS Website Templates - Template Wor...\"],[\"https:\\u002f\\u002fwww.kadenze.com\\u002fcourses --- Course Catalog | Kadenze --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.therebelpreppernetwork.com\\u002fchloroform\\u002f --- SHTF Medical Skill of the Day: How to make Chl...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002frecipes\\u002fyamlparser.aspx --- CodeProject: YAML Parser in C#. Free sourc...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsimogeo\\u002fFilemanager --- simogeo\\u002fFilemanager - GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.realvnc.com\\u002f --- Remote access & control software for desktop & mobile platforms - RealV...\"],[\"http:\\u002f\\u002ftrec.nist.gov\\u002ftrec_eval\\u002f --- Index of \\u002ftrec_eval\\u002f --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fUses-of-Different-Soldering-Iron-Tips\\u002f?ALLSTEPS --- How to Pick When...\"],[\"https:\\u002f\\u002fhackerone.com\\u002freports\\u002f176461 --- :exploit :bitcoins Round error issue -&gt; produce money fo...\"],[\"http:\\u002f\\u002fwww.ebulk.tv\\u002fdefault1.asp --- Bulk mail software --- 2017-05-12...\"],[\"http:\\u002f\\u002fandrejv.github.io\\u002fwxmaxima\\u002f --- wxMaxima: cross-platform graphical front-end for the computer...\"],[\"http:\\u002f\\u002fgavwood.com\\u002fgavcoin.html --- an example of Javascript API used in practice --- 2017-05-12...\"],[\"https:\\u002f\\u002fbitbucket.org\\u002farrivets\\u002fkrakenapi\\u002fsrc --- arrivets \\u002f KrakenAPI \\u002f source \\u002f — Bitbucket --- 2...\"],[\"http:\\u002f\\u002fwww.filastruder.com\\u002fproducts\\u002ffilastruder-kit --- Filastruder Kit | Filastruder --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftonsky\\u002fdatascript --- :clojure :datalog tonsky\\u002fdatascript: Immutable database and...\"],[\"http:\\u002f\\u002feducation.yahoo.com\\u002freference\\u002fthesaurus\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.kps.kz\\u002fkaraganda\\u002fmanualnyiy_terapevt --- :karagandy chiropractor --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fPennyPinchingInTheCloudRunningAndManagingLOTSOfWebAppsOnASingleAzureA...\"],[\"https:\\u002f\\u002fgithub.com\\u002frampantpixels\\u002frpmalloc --- rpmalloc: Public domain cross platform lock free threa...\"],[\"http:\\u002f\\u002fgojko.net\\u002fcategory\\u002fpresentations\\u002f --- presentation :: How I Learned to Stop Worrying and Love...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fshell\\u002fcsdoesshell3.aspx --- CodeProject: C# does Shell, Part 3. Free s...\"],[\"http:\\u002f\\u002fhackflow.com\\u002fblog\\u002f2015\\u002f03\\u002f29\\u002fmetaprogramming-beyond-decency\\u002f --- Metaprogramming Beyond Decen...\"],[\"https:\\u002f\\u002fgithub.com\\u002fyoutube\\u002fyt-watchme --- youtube\\u002fyt-watchme - Java - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fstructure.io\\u002f --- The Structure Sensor is the first 3D sensor for mobile devices --- 2017-05-...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fbletchley\\u002f --- bletchley - A collection of practical application cryptanal...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fswfobject\\u002f --- swfobject - Google Code --- 2017-05-12...\"],[\"http:\\u002f\\u002fadman.egloos.com\\u002f2952496 --- natural tick deterrent for humans. 1 part Tea Tree Oil + 2 part...\"],[\"https:\\u002f\\u002fwww.blackhat.com\\u002fus-14\\u002fbriefings.html#Nohl --- www.blackhat.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3095544&R=3095544 --- Malware analyst's cookbo...\"],[\"http:\\u002f\\u002fnegomi.github.io\\u002freact-burger-menu\\u002f --- :reactjs burger-menu component --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.canadarobotix.com\\u002frobot-parts\\u002fmicrocontrollers\\u002fraspberry-pi-board --- Raspberry Pi and Ac...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=t7J3caoAvXE --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002frusembassy.ca\\u002fru\\u002fnode\\u002f233 --- Оформление выхода из гражданства Ð...\"],[\"https:\\u002f\\u002fgithub.com\\u002forhanobut\\u002fwasp --- orhanobut\\u002fwasp - compact and easy to use, 'all-in-one' network...\"],[\"http:\\u002f\\u002fnunustudio.org\\u002f --- :virtual-reality :tools :opensource nunuStudio -- ide for 3d and VR brows...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fDLL\\u002fpwdspy.aspx --- CodeProject: PasswordSpy - Retrieving lost passwor...\"],[\"http:\\u002f\\u002fandroidvulnerabilities.org\\u002f --- List of Android Vulnerabilities --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cbc.ca\\u002fnews\\u002fcanada\\u002fprince-edward-island\\u002fpei-remore-control-aircraft-regulations-1.4031394...\"],[\"http:\\u002f\\u002fopenstaxcollege.org\\u002fstudents --- Tired of paying an arm and a leg for your textbooks? - OpenS...\"],[\"http:\\u002f\\u002fwww.hboehm.info\\u002fgc\\u002f --- Boehm-Weiser garbage collector for C and C++ --- 2017-05-12...\"],[\"http:\\u002f\\u002fsergey-tihon.github.io\\u002fStanford.NLP.NET\\u002f --- :Stanford :NLP Software for :.NET --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fmodern-web-app --- Modern Web Application Architecture --- 2017-05...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002flinuxfoundationx\\u002flinuxfoundationx-lfs101x-introduction-1621#.U6G4PbZCrlc ...\"],[\"http:\\u002f\\u002fwww.uvviewsoft.com\\u002fcudatext\\u002f --- :gpu :cuda :tools CudaText --- 2017-05-12...\"],[\"http:\\u002f\\u002flesswrong.com\\u002flw\\u002faq9\\u002fdecision_theories_a_less_wrong_primer\\u002f --- Decision Theories: A Less Wro...\"],[\"http:\\u002f\\u002fwww.dcs.bbk.ac.uk\\u002f~dell\\u002fteaching\\u002fcc\\u002f --- Cloud Computing free books --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.worldservicecargo.com\\u002findex.html --- World Service Cargo - Index --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fGozala\\u002freducers --- :js :functional-programming Gozala\\u002freducers: Library for high...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpirate\\u002fpocket-archive-stream --- :python :bookmarking :tools pocket-archive-strea...\"],[\"http:\\u002f\\u002fwww.infosaic.com\\u002f --- Windows 2003 Web Hosting by Infosaic. Supporting ASP, ASP.NET, AJAX, DN...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms366731.aspx --- Using CSS and Styles with the Menu Control...\"],[\"http:\\u002f\\u002fwww.sqlshare.com\\u002fcreating-new-dotnetnuke-modules_67.aspx --- SQLShare - Creating New DotNetNu...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb735854(v=VS.85).aspx --- Creating Add-ons for Internet Exp...\"],[\"http:\\u002f\\u002faxiomengine.sourceforge.net\\u002fmediawiki-1.13.2\\u002findex.php\\u002fMain_Page --- Main Page - Axiom : A 3D...\"],[\"http:\\u002f\\u002fwww.codeguru.com\\u002fcsharp\\u002f.net\\u002fnet_asp\\u002fwebforms\\u002farticle.php\\u002fc16405 --- Facelift to Forms; Part ...\"],[\"https:\\u002f\\u002ff-droid.org\\u002fforums\\u002ftopic\\u002fspy-camera-os\\u002f --- Topic: Spy Camera OS | F-Droid --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.fuzzing-project.org\\u002f31-Fuzzing-Math-miscalculations-in-OpenSSLs-BN_mod_exp-CVE-2015-319...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002funimediaserver\\u002f --- Universal Media Server | Free Audio & Video soft...\"],[\"https:\\u002f\\u002fopenvpn.net\\u002findex.php\\u002fopen-source\\u002fdocumentation\\u002fsig.html --- Instructions for verifying GPG ...\"],[\"http:\\u002f\\u002farstechnica.com\\u002fsecurity\\u002f2015\\u002f11\\u002fwhy-algebraic-eraser-may-be-the-most-risky-cryptosystem-youv...\"],[\"http:\\u002f\\u002fwww.bayt.com\\u002f --- Jobs in Dubai, UAE, Saudi Arabia, Qatar, Kuwait | Search Job | Bayt.com ---...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPrototype-based_programming --- :javascript Prototype-based programmin...\"],[\"http:\\u002f\\u002fwww.tutorialspoint.com\\u002fjava\\u002futil\\u002fproperties_loadfromxml.htm --- Java.util.Properties.loadFrom...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002farchitecture\\u002fLinqEntityFramework.aspx --- CodeProject: Modeling Enterp...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdelight-im\\u002fAndroid-Languages --- delight-im\\u002fAndroid-Languages · GitHub --- 2017-...\"],[\"http:\\u002f\\u002fwww.trinitas.ru\\u002frus\\u002fdoc\\u002f0016\\u002f001b\\u002f00160124.htm --- current problems in Mathematics --- 2017-0...\"],[\"http:\\u002f\\u002fwww.cs.cmu.edu\\u002f~guyb\\u002frealworld\\u002findexing.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fstsdev --- STSDEV: Simple Tools for SharePoint 2007 Development - Home --- 2...\"],[\"http:\\u002f\\u002focw.mit.edu\\u002fcourses\\u002fmathematics\\u002f --- Free Online Course Materials | Mathematics | MIT OpenCou...\"],[\"http:\\u002f\\u002fwebstersprodigy.net\\u002f2012\\u002f07\\u002f06\\u002fsome-practical-arp-poison-attacks-with-scapy-iptables-and-burp...\"],[\"http:\\u002f\\u002fwww.iibs.ca\\u002f?gclid=CMyyvee-pKACFQk65QodeC46aw --- IIbs - Corporate and Professional training ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fsharepoint\\u002fFckEditorSharepoint.aspx --- CodeProject: FCKEditor SharePo...\"],[\"http:\\u002f\\u002ftjworld.net\\u002fwiki\\u002fAndroid\\u002fHTC\\u002fVision\\u002fRadioAnalysis --- Android\\u002fHTC\\u002fVision\\u002fRadioAnalysis [ TJwo...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fcourses.html --- Douglas C. Schmidt's Online Tutorials and Co...\"],[\"http:\\u002f\\u002fwww.dnncreative.com\\u002fTutorials\\u002fDNNTutorialsforBeginners\\u002fHowtoinstallaskininDotNetNuke\\u002ftabid\\u002f21...\"],[\"http:\\u002f\\u002fworkday.github.io\\u002fpages\\u002fScala\\u002findex.html --- Scala --- 2017-05-12...\"],[\"http:\\u002f\\u002fbookmark2link.appspot.com\\u002f --- Online Bookmark project --- 2017-05-12...\"],[\"http:\\u002f\\u002fedmonton.kijiji.ca\\u002fc-jobs-programmers-computer-NET-Application-Developers-W0QQAdIdZ90911959 -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fadamw\\u002fxsbt-proguard-plugin --- GitHub - adamw\\u002fxsbt-proguard-plugin: A plugin for ...\"],[\"https:\\u002f\\u002fmedium.freecodecamp.com\\u002fcss-in-javascript-the-future-of-component-based-styling-70b161a79a32...\"],[\"http:\\u002f\\u002fwww.techiedelight.com\\u002fdata-structures-and-algorithms-interview-questions-stl\\u002f --- :algorithms...\"],[\"http:\\u002f\\u002fqrznow.com\\u002fthe-basics-of-desoldering-explained-in-video-form\\u002f --- The Basics of Desoldering E...\"],[\"http:\\u002f\\u002fblogs.techrepublic.com.com\\u002fprogramming-and-development\\u002f?p=618&tag=nl.e605 --- Use ASP.NET’s...\"],[\"http:\\u002f\\u002fwww.centerspace.net\\u002f?gclid=CK_o9szZ5Z0CFchn5QodA37BLg --- CenterSpace - Home, .NET math and s...\"],[\"http:\\u002f\\u002fdeveloper.yahoo.com\\u002fsearch\\u002fcontent\\u002fV1\\u002ftermExtraction.html --- Term Extraction Web Service - Y...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2015\\u002f02\\u002f26\\u002fhomemade-survival-cement\\u002f --- How To Make Homemade Survival Cemen...\"],[\"http:\\u002f\\u002fironwasp.org\\u002f --- IronWASP - Iron Web application Advanced Security testing Platform --- 2017...\"],[\"http:\\u002f\\u002fwww.thegoodsurvivalist.com\\u002fhow-to-build-a-solar-generator-at-home-for-under-300-simple-step-b...\"],[\"http:\\u002f\\u002fwww.naturallyloriel.com\\u002fhow-to-make-chicken-poop-into-fertilizer-for-your-garden\\u002f --- how-to-...\"],[\"http:\\u002f\\u002fwww.investopedia.com\\u002fterms\\u002fi\\u002findexfutures.asp --- Index Futures Definition --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002f?gws_rd=ssl#q=site:blackhat.com+filetype:pdf --- Google Search on BlackHat pdf...\"],[\"http:\\u002f\\u002fwww.pjsip.org\\u002flinks.htm --- Open Source SIP Stacks and Media Links --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2967424&R=2967424 --- Developing With Google+ ...\"],[\"http:\\u002f\\u002fasmjs.org\\u002f --- asm.js --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f3419\\u002fImage-Processing-for-Dummies-with-C-and-GDI-Part --- Image ...\"],[\"http:\\u002f\\u002falpha-tactical-systems.myshopify.com\\u002fproducts\\u002fcopy-of-tunk-aluminum-a-tactical-safety-strike-...\"],[\"http:\\u002f\\u002fwww.csharp411.com\\u002fnet-obfuscators\\u002f --- .NET Obfuscators : C# 411 --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fBenBrucker\\u002fCryptoPaper --- BenBrucker\\u002fCryptoPaper · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.blackpointoutdoor.com\\u002fbackcountry\\u002f2014\\u002f07\\u002fessential-knots-for-the-outdoors\\u002f --- Essential...\"],[\"https:\\u002f\\u002fsqlnotebook.com\\u002f --- :opensource :tools :SQL Notebook --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.somewhatabstract.com\\u002f2017\\u002f01\\u002f30\\u002fc7-local-functions\\u002f --- :csharp :functional-programming ...\"],[\"http:\\u002f\\u002fwww.survivalmagazine.org\\u002f --- build-solar-still --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAutoMapper\\u002fAutoMapper --- AutoMapper\\u002fAutoMapper - GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthurday\\u002fLinux_Exploit_Suggester --- thurday\\u002fLinux_Exploit_Suggester · GitHub ---...\"],[\"https:\\u002f\\u002fdeveloper.chrome.com\\u002fextensions\\u002foverview --- Google Chrome Extensions --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f27438\\u002fMatematico-Web-Game-in-ASP-NET-using-RegEx --- Matematico ...\"],[\"http:\\u002f\\u002fwork.caltech.edu\\u002fprevious.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fspacecollege.org\\u002fabout\\u002f --- Space College: --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002frapid7\\u002fmetasploit-framework --- rapid7\\u002fmetasploit-framework --- 2017-05-12...\"],[\"http:\\u002f\\u002fdigg.com\\u002fvideo\\u002fmario-kart-chevy-volt --- ;games :kids Some Genius Figured Out How To Play &#3...\"],[\"http:\\u002f\\u002fhackaday.com\\u002f2016\\u002f01\\u002f25\\u002fhomemade-exoskeleton-lifts-mini-cooper-with-ease\\u002f --- Homemade Exoske...\"],[\"http:\\u002f\\u002ftuxguitar.herac.com.ar\\u002f --- .:: TuxGuitar ::. Open Source Tablature Editor :: TuxGuitar --- 2...\"],[\"http:\\u002f\\u002ftypemock.com\\u002fDocs\\u002fHowTo.html --- TypeMock - How To --- 2017-05-12...\"],[\"http:\\u002f\\u002fdangerousprototypes.com\\u002f2010\\u002f01\\u002f29\\u002fprototype-usb-infrared-remote-control-receivertransmitter\\u002f...\"],[\"http:\\u002f\\u002fshelfjoy.com\\u002fdiscover --- Shelfjoy - Discover :books --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.inc.com\\u002fthe-muse\\u002f8-phrases-that-will-make-you-more-likable-at-work.html --- 8 Phrases Tha...\"],[\"http:\\u002f\\u002favisynth.nl\\u002findex.php\\u002fMain_Page --- Avisynth wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ozone3d.net\\u002fbenchmarks\\u002ffur\\u002f --- FurMark: VGA Stress Test, Graphics Card and GPU Stability...\"],[\"https:\\u002f\\u002fblog.expo.io\\u002fsketch-a-playground-for-react-native-16b2401f44a2#.z7a27x4ju --- :reactjs :tool...\"],[\"http:\\u002f\\u002fwww.reprap.org\\u002fwiki\\u002fRepRap --- RepRap - RepRapWiki --- 2017-05-12...\"],[\"https:\\u002f\\u002fredux-saga.github.io\\u002fredux-saga\\u002f --- :reactjs :redux redux-saga --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffireeye\\u002fiocs --- fireeye\\u002fiocs · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fprantran.blogspot.com\\u002f2007\\u002f01\\u002fgetting-postfix-to-work-on-ubuntu-with.html --- The Prancing Ta...\"],[\"https:\\u002f\\u002fwww.coursera.org\\u002fcategory\\u002fmath --- Mathematics and Statistics | Coursera --- 2017-05-12...\"],[\"https:\\u002f\\u002ftomhazledine.com\\u002fwhat-is-a-decibel-anyway\\u002f --- :audio What is a decibel, anyway? --- 2017-0...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f261144\\u002f --- :functonal-programming recommended readings --- 2017-05-12...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fgRbase\\u002fvignettes\\u002fgRbase-graphs.pdf --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbither\\u002fbither-android --- bither\\u002fbither-android · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.theserverside.net\\u002ftt\\u002fcartoons\\u002fTalesFromTheServerSide.tss --- Enterprise .NET Community: T...\"],[\"http:\\u002f\\u002ftimothypratley.blogspot.com\\u002f2017\\u002f03\\u002fryzen-is-for-programmers.html --- :dyi Ryzen PC --- 2017...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fprovider\\u002fpackage-summary.html --- android.provider | ...\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002f3dprinting --- reddit: 3D Printing News --- 2017-05-12...\"],[\"http:\\u002f\\u002fcreativesomething.net\\u002fpost\\u002f54997033332\\u002fwhy-youre-more-creative-at-night-and-how-to --- :brain...\"],[\"http:\\u002f\\u002fwww.impactinterview.com\\u002f2009\\u002f10\\u002f140-google-interview-questions\\u002f#software_engineer --- :job-se...\"],[\"http:\\u002f\\u002fwww.globalpersonalsmedia.com\\u002fcareers.html --- Global Personals --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fBag-of-words_model --- Bag-of-words model - Wikipedia, the free encycl...\"],[\"http:\\u002f\\u002fwww.ats.ucla.edu\\u002fstat\\u002fr\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdid=com.google.android.apps.authenticator2 --- F-Droid - Two...\"],[\"http:\\u002f\\u002fnlp.stanford.edu\\u002fsoftware\\u002flex-parser.shtml --- The Stanford NLP (Natural Language Processing)...\"],[\"http:\\u002f\\u002fblog.tonysneed.com\\u002f2011\\u002f10\\u002f24\\u002fusing-ninject-with-wcf-services\\u002f --- Using Ninject with WCF Ser...\"],[\"http:\\u002f\\u002fwordnet.princeton.edu\\u002fperl\\u002fwebwn --- WordNet Search - 3.0 --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms230588.aspx --- ICorDebug Interface --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbrav0hax\\u002feasy-creds --- brav0hax\\u002feasy-creds · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.spoofcard.com\\u002fapps\\u002f --- Mobile Apps - SpoofCard --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.usenix.org\\u002fsystem\\u002ffiles\\u002fconference\\u002fusenixsecurity12\\u002fsec12-final60.pdf --- Aurasium: Prac...\"],[\"http:\\u002f\\u002fwww.cookography.com\\u002f2009\\u002fwatermelon-and-peach-is-actually-a-good-salad-combo --- Watermelon a...\"],[\"http:\\u002f\\u002fleatherworker.net\\u002fforum\\u002findex.php?showtopic=59478&hl= --- leather sewing machine --- 2017-05-...\"],[\"http:\\u002f\\u002flifehacker.com\\u002f5935869\\u002ftop-10-tools-that-are-better-in-the-command-line --- good to know for ...\"],[\"http:\\u002f\\u002fwcfguidanceformobile.codeplex.com\\u002f --- WCF Guidance for Mobile Developers - Home --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.shtfpreparedness.com\\u002fgrow-antibacterial-bandages\\u002f --- How To Grow Your Own Antibacterial ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgo-martini\\u002fmartini --- go-martini\\u002fmartini --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.utorrent.com\\u002fdownloads\\u002f --- Загрузить - µTorrent - Облегченный и э...\"],[\"http:\\u002f\\u002farstechnica.com\\u002fsecurity\\u002f2015\\u002f11\\u002fop-ed-how-did-they-break-diffie-hellman\\u002f --- Op-ed: (How) di...\"],[\"http:\\u002f\\u002fwww.thefreedictionary.com\\u002f --- Online Dictionary, Encyclopedia and Thesaurus. Free access. --...\"],[\"http:\\u002f\\u002fcoldporcelaintutorials.blogspot.com\\u002f2013\\u002f08\\u002fhow-to-make-cold-porcelain-without.html --- DIY C...\"],[\"http:\\u002f\\u002fwww.freepbx.org\\u002fsupport\\u002fdocumentation\\u002fmodule-documentation\\u002fmodule-admin-read-this-first --- M...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fGraph_(data_structure) --- Graph (data structure) - Wikipedia, the free...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fv8\\u002f --- v8 - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fgoogle.github.io\\u002fExoPlayer\\u002fguide.html --- ExoPlayer - Developer guide --- 2017-05-12...\"],[\"http:\\u002f\\u002fdownload.cyanogenmod.org\\u002f?device=mako&type=stable --- CyanogenMod Downloads --- 2017-05-12...\"],[\"http:\\u002f\\u002fflowingdata.com\\u002fcategory\\u002ftutorials\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=24019 --- Введение в IBM Rational AppScan Developer ...\"],[\"http:\\u002f\\u002fwww.hometalk.com\\u002f?types=posts --- Hometalk | Home and Garden DIY Ideas, Photos and Answers --...\"],[\"http:\\u002f\\u002fsharepointjavascript.wordpress.com\\u002fgeneral-tips\\u002f --- General tips « SharePoint JavaScripts -...\"],[\"http:\\u002f\\u002fsandsprite.com\\u002fblogs\\u002findex.php?uid=7&pid=57 --- RE Corner --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.thehacksmith.ca\\u002f --- ...the hacksmith --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.telephone.com\\u002fdevcorner.aspx --- overview - telephone.com --- 2017-05-12...\"],[\"https:\\u002f\\u002faddons.mozilla.org\\u002fen-us\\u002ffirefox\\u002faddon\\u002fjavascript-deobfuscator\\u002f --- JavaScript Deobfuscator ...\"],[\"http:\\u002f\\u002fwww.tradeofweek.com\\u002fland\\u002ftradeweek-gen.asp --- One trade. Once a week. --- 2017-05-12...\"],[\"http:\\u002f\\u002fpicateshackz.com\\u002f2015\\u002f02\\u002fhow-to-install-kali-linux-on-android-tutorial-with-screenshot.html -...\"],[\"http:\\u002f\\u002flearn.utoronto.ca\\u002finternational-professionals\\u002fliep-program --- Licensing International Engine...\"],[\"http:\\u002f\\u002freborg.tumblr.com\\u002fpost\\u002f157268554578\\u002fnew-clojure-pills-screencast --- :Screencast :video :cloj...\"],[\"https:\\u002f\\u002fwebsecuritytool.codeplex.com\\u002f --- Watcher: open source Web security testing tool and PCI com...\"],[\"http:\\u002f\\u002fwww.pinvoke.net\\u002f --- pinvoke.net: the interop wiki! --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fEfficient-market_hypothesis --- Efficient-market hypothesis - Wikipedia...\"],[\"https:\\u002f\\u002fgithub.com\\u002fteardemon\\u002fvagrant-memex --- teardemon\\u002fvagrant-memex · MEMEX project Vagrant VM -...\"],[\"http:\\u002f\\u002fgizmodo.com\\u002f5945830\\u002finflatable-backseat-bed-adds-a-touch-of-luxury-to-living-out-of-your-car ...\"],[\"http:\\u002f\\u002ffhtino.blogspot.com\\u002f2009\\u002f03\\u002fsimple-google-documents-backup-utility.html --- fhtino: Simple Go...\"],[\"http:\\u002f\\u002fwww.blast4traffic.com\\u002f --- Blast4Traffic.comâ„¢ - Instant Bulk Email and Advertising Services...\"],[\"http:\\u002f\\u002fzenhabits.net\\u002f2008\\u002f09\\u002f6-questions-to-ask-yourself-to-get-the-most-out-of-life\\u002f --- 6 Question...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhypeapps\\u002fEndoscope --- :camera :video-processing :android Endoscope lets you to s...\"],[\"http:\\u002f\\u002fhowtodrillawell.com\\u002f --- Pumping A New Well ... Drill Your Own Water Well! ... Pumping A New ...\"],[\"https:\\u002f\\u002fwww.gwern.net\\u002fArchiving%20URLs --- :bookmarking Archiving URLs --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sjlabs.com\\u002fsjp.html --- Free softphones for Windows, MAC, CE, LINUX --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.didforsale.com\\u002f --- www.didforsale.com provide VoIP DID and INbound DIDs for ... --- 2017...\"],[\"https:\\u002f\\u002fgithub.com\\u002fppatierno\\u002fgnatmq --- GitHub - ppatierno\\u002fgnatmq: GnatMQ - MQTT Broker for .NET and...\"],[\"https:\\u002f\\u002fgithub.com\\u002faeonsf\\u002ffootlocker\\u002fblob\\u002fmaster\\u002fbots\\u002fCitadel.1.3.5.1-BaNNED\\u002fPersonal%20Manual.txt -...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002faspnet\\u002fPageLifeCycle.aspx --- CodeProject: ASP.NET Page Life Cycle. Fr...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@chrismcnab\\u002falexseys-ttps-1204d9050551#.hnss1cjhz --- :linux :security defensive ...\"],[\"http:\\u002f\\u002ffortune.com\\u002f2016\\u002f10\\u002f05\\u002fai-artificial-intelligence-deep-learning-employers\\u002f --- The AI Revolut...\"],[\"http:\\u002f\\u002fwww.surina.net\\u002fsoundtouch\\u002f --- SoundTouch Sound Processing Library --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.markwilson.co.uk\\u002fblog\\u002f2009\\u002f03\\u002finstalling-windows-sharepoint-services-on-windows-7-or-vist...\"],[\"http:\\u002f\\u002fvisualstudiomagazine.com\\u002farticles\\u002f2013\\u002f12\\u002f01\\u002fk-means-data-clustering-using-c.aspx --- K-Means...\"],[\"http:\\u002f\\u002fmail2sharepoint.codeplex.com\\u002f --- Mail 2 SharePoint (Upload email from Outlook to SharePoint)...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2006\\u002f02\\u002f16\\u002f438358.aspx --- ASP.NET 2.0 Starter Kit: The eBay ...\"],[\"http:\\u002f\\u002fwww.sainsmart.com\\u002fdiy-6-axis-servos-control-palletizing-robot-arm-model-for-arduino-uno-mega2...\"],[\"http:\\u002f\\u002fwww.irishtimes.com\\u002fbusiness\\u002ftechnology\\u002fmicrosoft-to-open-up-minecraft-marketplace-and-add-cur...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?displaylang=en&FamilyID=d41140ab-0ea3-47c7-be56-f424...\"],[\"http:\\u002f\\u002fwww.asteriskguru.com\\u002farchives\\u002fimage-vp298453.html --- asterisk ports discussion --- 2017-05-1...\"],[\"http:\\u002f\\u002fboomerang.sourceforge.net\\u002findex.php --- Boomerang Decompiler --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.robinwieruch.de\\u002fthe-soundcloud-client-in-react-redux\\u002f --- :React :Redux example -- Sound...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjonathanstark\\u002fandroid-book-example-files --- books\\u002ftpl :: Building Android Apps w...\"],[\"https:\\u002f\\u002fgithub.com\\u002fInsightDataScience\\u002fdata-engineering-ecosystem\\u002fwiki\\u002fstorm --- :Storm :tools :data-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002froad-trip --- guangliang2014\\u002froad-trip · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwebitect.net\\u002fdevelopment\\u002f65-must-know-css-strategies\\u002f --- 65 Must-Know CSS Strategies and Tut...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fR_Programming\\u002fQuantile_Regression --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.androidhub4you.com\\u002f2013\\u002f03\\u002fhow-to-inegrate-in-app-purchase-billing.html --- Android Hub 4...\"],[\"http:\\u002f\\u002fdevleader.ca\\u002f2013\\u002f09\\u002f23\\u002fvisual-studio-c-python-sweet\\u002f --- python and Visual Studio --- 2017-0...\"],[\"http:\\u002f\\u002fsqlloadtest.codeplex.com\\u002f --- SQL Load Test --- 2017-05-12...\"],[\"http:\\u002f\\u002fprosody.im\\u002f --- Prosody IM - Jabber\\u002fXMPP server --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.heroku.com\\u002f --- Heroku | Cloud Application Platform --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.jeffreymcmanus.com\\u002f850\\u002fnet-developers-recommend-your-favorite-open-source-projects-here\\u002f...\"],[\"https:\\u002f\\u002fgithub.com\\u002fHackerFantastic\\u002fPublic\\u002fblob\\u002fmaster\\u002ftools\\u002fvncscan.py --- Public\\u002fvncscan.py at mast...\"],[\"http:\\u002f\\u002fwww.cbc.ca\\u002fnews\\u002fhealth\\u002fstory\\u002f2011\\u002f05\\u002f10\\u002fmayo-clinic-health-insurance.html --- Canadian insura...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fconquest-space-space-exploration-rocket-uc3mx-bia-1x-0 --- :space :edx Th...\"],[\"http:\\u002f\\u002fwww.omniture.com\\u002fstatic\\u002f2015?s_scid=TC|5379|online%20marketing%20suite|mail.google.com|C|e|42...\"],[\"http:\\u002f\\u002fdocs.angularjs.org\\u002ftutorial\\u002f --- AngularJS: Tutorial --- 2017-05-12...\"],[\"https:\\u002f\\u002fblogs.oracle.com\\u002fshankar\\u002fentry\\u002fwhat_is_ldap_injection --- LDAP Injection (Shankar's Blog) --...\"],[\"http:\\u002f\\u002fwww.netlabtoolkit.org\\u002foverview\\u002f --- NETLab Toolkit » Overview --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.zillow.com\\u002fhomedetails\\u002f3810-N-Jog-Rd-APT-104-Royal-Palm-Beach-FL-33411\\u002f67176932_zpid\\u002f#{sc...\"],[\"http:\\u002f\\u002fdotnetfireball.codeplex.com\\u002f --- dotnetfireball - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.utoronto.ca\\u002f~hinton\\u002f --- Home Page of Geoffrey Hinton --- 2017-05-12...\"],[\"http:\\u002f\\u002f2ality.com\\u002f2015\\u002f06\\u002ftail-call-optimization.html --- :es6 :javascript Tail call optimization in...\"],[\"https:\\u002f\\u002fwikihouse.cc\\u002f --- :opensource :construction WikiHouse --- 2017-05-12...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f148602\\u002f --- DPAPI на пальцах \\u002f Хабрахабр --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fcodeanalysis\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=553 --- Code Anal...\"],[\"http:\\u002f\\u002fhackingdistributed.com\\u002f2014\\u002f04\\u002f06\\u002fanother-one-bites-the-dust-flexcoin\\u002f --- NoSQL Meets Bitcoi...\"],[\"http:\\u002f\\u002fusers.ece.utexas.edu\\u002f~valvano\\u002fembed\\u002ftoc1.htm --- Embedded Software in C for an ARM Cortex M -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMetacoSA\\u002fNBitcoin --- MetacoSA\\u002fNBitcoin · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fgoogle-scholar-scraping-with-rvest-package\\u002f --- Google scholar scraping wi...\"],[\"http:\\u002f\\u002fhomesthetics.net\\u002finvite-nature-in-with-31-incredible-indoor-plant-ideas\\u002f --- Grow Your Own Av...\"],[\"http:\\u002f\\u002fblog.triplebyte.com\\u002fhow-to-pass-a-programming-interview --- How to pass a programming intervi...\"],[\"https:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fPerformance-V8-Dart --- :performance Pushing The Limits of Web B...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhueso99\\u002ffootlocker --- hueso99\\u002ffootlocker · collection of binaries and source co...\"],[\"http:\\u002f\\u002fwww.sticktrade.com\\u002f --- Lumber, Logs, Plywood, Flooring Deals and More from Sticktrade.com --...\"],[\"http:\\u002f\\u002fwww.xelon.it\\u002farticles\\u002ffind-local-IP-java-nat\\u002f --- How to find out your private local IP via w...\"],[\"https:\\u002f\\u002fhelp.ubuntu.com\\u002f6.06\\u002fubuntu\\u002fserverguide\\u002fC\\u002fhttpd.html --- HTTPD - Apache2 Web Server --- 2017...\"],[\"http:\\u002f\\u002fwww.tkmt2.ca\\u002fclasses.html --- Toronto Kickboxing & Muay Thai (TKMT) Academy Inc. --- 2017-05-...\"],[\"http:\\u002f\\u002fconflatedthoughts.blogspot.ca\\u002f --- iScanned : Scanning the Tech World.. --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002fsync-adapters\\u002findex.html --- Transferring Data Using Sync Adap...\"],[\"https:\\u002f\\u002fwww.mapr.com\\u002fproducts\\u002fmapr-sandbox-hadoop\\u002ftutorials --- Hadoop Tutorials | MapR --- 2017-05-...\"],[\"https:\\u002f\\u002fcrypto.is\\u002f --- Crypto .is --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.leadershipgrants.ca\\u002fLeadershipGrants\\u002f --- Leadership Grants - Grants for Small Business a...\"],[\"https:\\u002f\\u002fgithub.com\\u002fHackerFantastic\\u002fPublic\\u002fblob\\u002fmaster\\u002fpapers\\u002fVAstacksmash.txt --- Linux Virtual Addr...\"],[\"http:\\u002f\\u002fwindowsclient.net\\u002fAcropolis\\u002f --- Microsoft code name \\\"Acropolis\\\" - WindowsClient.net --- 2017...\"],[\"http:\\u002f\\u002fwww.splendidcrm.com\\u002f --- SplendidCRM | Enterprise CRM Software for System Integrators - Micro...\"],[\"https:\\u002f\\u002fmedium.com\\u002fgenymobile\\u002fgnirehtet-reverse-tethering-android-2afacdbdaec7 --- :tools :opensourc...\"],[\"https:\\u002f\\u002fallseenalliance.org\\u002f --- cross-industry effort to advance the Internet of Everything - AllSe...\"],[\"http:\\u002f\\u002fs2lab.isg.rhul.ac.uk\\u002fpapers\\u002ffiles\\u002fndss2015.pdf --- CopperDroid: Automatic Reconstruction of A...\"],[\"http:\\u002f\\u002fioccc.org\\u002f --- The International Obfuscated C Code Contest --- 2017-05-12...\"],[\"http:\\u002f\\u002falt.at91.com\\u002fandroid4sam\\u002fbin\\u002fview\\u002fAndroid4SAM\\u002f --- WebHome --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fGallopsled\\u002fpwntools --- Gallopsled\\u002fpwntools · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fstrategis.ic.gc.ca\\u002fsecure\\u002fcgi-bin\\u002fsc_coinf\\u002fccc\\u002fregister_s?h_lang=e&scrn=50 --- Industry Cana...\"],[\"http:\\u002f\\u002fieeexplore.ieee.org\\u002fxpl\\u002fRecentIssue.jsp?punumber=4236 --- IEEE Xplore: Internet Computing, IE...\"],[\"http:\\u002f\\u002fmoodle.org\\u002f --- Moodle.org - upgrade in progress... --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.checkio.org\\u002f --- checkio is game for coders --- 2017-05-12...\"],[\"http:\\u002f\\u002fibmtvdemo.edgesuite.net\\u002fsoftware\\u002fanalytics\\u002fspss\\u002fdemos\\u002fmysteries-revealed\\u002f --- Mysteries revea...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDillion\\u002fToolbox --- Dillion\\u002fToolbox · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fzesty.ca\\u002fscrape\\u002f --- scrape.py - crawler maker --- 2017-05-12...\"],[\"http:\\u002f\\u002fjasonmars.org\\u002fwp-content\\u002fpapercite-data\\u002fpdf\\u002fhauswald15asplos.pdf --- sirius - open source alt...\"],[\"http:\\u002f\\u002fwww.fluid.cs.cmu.edu\\u002f --- the fluid project --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.win.tue.nl\\u002fhashclash\\u002frogue-ca\\u002f --- MD5 breach - Creating a rogue CA certificate --- 2017-...\"],[\"http:\\u002f\\u002fwww.clickatell.com\\u002fproducts\\u002fshortcode.php --- Premium Rate SMS | Clickatell --- 2017-05-12...\"],[\"http:\\u002f\\u002fresearch.microsoft.com\\u002fen-us\\u002fum\\u002fsiliconvalley\\u002fevents\\u002facmec04\\u002fdemos1.htm --- overview of stat....\"],[\"http:\\u002f\\u002fhakia.com\\u002f --- hakia --- 2017-05-12...\"],[\"http:\\u002f\\u002fsequelizejs.com\\u002f --- Sequelize - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.makeitleo.com\\u002fblog\\u002f3d-printed-eyewear-designs\\u002f --- 3D Printed Eyewear Designs - Tessa's W...\"],[\"http:\\u002f\\u002fwww.vogella.com\\u002ftutorials\\u002fAndroidServices\\u002farticle.html#service_intentservices --- Android Ser...\"],[\"http:\\u002f\\u002fwww.smarthome.com\\u002f_\\u002fCameras_Surveillance\\u002fCameras\\u002fWi_Fi\\u002f_\\u002f13\\u002f1QL\\u002f23f\\u002fnav.aspx --- Buy at Smart...\"],[\"http:\\u002f\\u002fwaveletstudio.codeplex.com\\u002f --- wavelet --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNightOfTwelve\\u002fZHookLib --- NightOfTwelve\\u002fZHookLib · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fbooks.google.ca\\u002fbooks?hl=en&lr=&id=JDLQOMKbdScC&oi=fnd&pg=PR5&dq=mathematical+logic&ots=I5Swg...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoftLearning\\u002fBootstrap-edX\\u002ftree\\u002fmaster\\u002fedx%20Demos --- Bootstrap-edX\\u002fedx Dem...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjrosdahl\\u002fminiircd --- jrosdahl\\u002fminiircd - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fmartinfowler.com\\u002fbooks.html --- Books by Martin Fowler --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.maartenballiauw.be\\u002fpost\\u002f2008\\u002f05\\u002f20\\u002fCreating-a-custom-ViewEngine-for-the-ASPNET-MVC-frame...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2014\\u002f06\\u002f14\\u002fwaterproof-case-gadgets\\u002f?utm_cid=mash-com-fb-socmed-link --- 8 Ways t...\"],[\"http:\\u002f\\u002fwww.faqs.org\\u002frfcs\\u002frfc3261.html --- RFC3261 - SIP: Session Initiation Protocol --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.automatedtrader.net\\u002f --- Automated Trader - Algorithmic Trading Magazine --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aiwisdom.com\\u002f --- AIWisdom.com - Game AI Articles & Research --- 2017-05-12...\"],[\"http:\\u002f\\u002fnethunter.com\\u002f --- Kali Linux NetHunter - Kali NetHunter --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fWiener's_attack --- Wiener's attack --- 2017-05-12...\"],[\"http:\\u002f\\u002fsupport.microsoft.com\\u002fkb\\u002f896861 --- You receive error 401.1 when you browse a Web site that u...\"],[\"http:\\u002f\\u002fxmpp.org\\u002fxmpp-software\\u002fservers\\u002f --- Servers – The XMPP Standards Foundation --- 2017-05-12...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002f1703.05364 --- Study of Complex :Deep-Learning Networks on High Performance, N...\"],[\"https:\\u002f\\u002fblog.classycode.com\\u002ftunneling-http-over-nfc-on-android-using-host-card-emulation-907947a721a...\"],[\"http:\\u002f\\u002fwww.linux.com\\u002flearn\\u002ftutorials\\u002f442456-how-to-scan-and-ocr-like-a-pro-with-open-source-tools --...\"],[\"http:\\u002f\\u002fwww.siam.org\\u002fmeetings\\u002fsdm11\\u002f --- SIAM: SIAM Conference on Data Mining (SDM11) --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gps-club.ru\\u002fgps_test\\u002fdetail.php?BID=144&ID=111024 --- альтернативa штатнÑ...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fadv-webapp-shortcuts\\u002fsource\\u002fbrowse\\u002ftrunk\\u002fsrc\\u002flib\\u002fscripts\\u002fkeygrabber.js?r=9 ...\"],[\"http:\\u002f\\u002fgooglewebmastercentral.blogspot.com\\u002f --- Official Google Webmaster Central Blog --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkbandla\\u002fAPTnotes --- kbandla\\u002fAPTnotes · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.backwoodshome.com\\u002farticles2\\u002fainsworth90.html --- Water pumping windmills and how they wor...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbitcoin\\u002fbitcoin --- original bitcoin client on GITHUB --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.explainshell.com\\u002f --- explainshell.com - match command-line arguments to their help text ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fJMDCMS --- JMDCMS Content Management System - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fjulialang.org\\u002fblog\\u002f2017\\u002f04\\u002foffset-arrays --- custom array indices in :Julia --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fojas\\u002f101 --- ojas\\u002f101 · Resources on building a software biz --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.kp.ru\\u002fguide\\u002fdetskii-massazh.html --- :massage :kids :russian howto --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fproxyswap\\u002f --- ProxySwap | Free software downloads at SourceForge.ne...\"],[\"https:\\u002f\\u002fxato.net\\u002fpasswords\\u002ften-million-passwords --- Today I Am Releasing Ten Million Passwords --- ...\"],[\"http:\\u002f\\u002fredhotjazz.ning.com\\u002f --- RED HOT JAZZ - Jazz --- 2017-05-12...\"],[\"https:\\u002f\\u002flearn.adafruit.com\\u002fadafruit-class-library-for-windows-iot-core\\u002foverview --- :arduino :.net :...\"],[\"http:\\u002f\\u002fflask.pocoo.org\\u002f --- Welcome | Flask (A Python Microframework) --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fvideoshow --- Video.Show - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fAsterisk+timer+ztdummy --- Asterisk timer ztdummy - voip-info.org...\"],[\"http:\\u002f\\u002fwww.metosin.fi\\u002fblog\\u002fconfiguring-clojure-apps\\u002f --- Configuring :Clojure Apps :configuration --...\"],[\"http:\\u002f\\u002frusefi.com\\u002fwiki\\u002findex.php?title=Main_Page --- :opensource :diy :car rusEfi -- engine control ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpinterest\\u002fmysql_utils --- GitHub - pinterest\\u002fmysql_utils: Pinterest MySQL Managem...\"],[\"https:\\u002f\\u002fgithub.com\\u002fEarly-Modern-OCR\\u002fFrankenPlus --- FrankenPlus Part of eMOP Franken+ :tool for crea...\"],[\"https:\\u002f\\u002fwww.nowsecure.com\\u002fblog\\u002f2013\\u002f09\\u002f30\\u002fhowto-use-santoku-linux-for-android-forensics\\u002f --- NowSecu...\"],[\"http:\\u002f\\u002fwww.leeskickboxing.com\\u002fschedule.html --- Lee's Kickboxing - Classes --- 2017-05-12...\"],[\"https:\\u002f\\u002ftech.affirm.com\\u002fdeep-dive-payments-60f5d17f6c71#.38q9ujxyb --- :payments Deep Dive -- Credit...\"],[\"https:\\u002f\\u002fravendb.net\\u002fdocs\\u002farticle-page\\u002f3.0\\u002fjava\\u002fserver\\u002finstallation\\u002fembedded --- Install RavenDB in E...\"],[\"https:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%A3%D0%BC%D0%BD%D1%8B%D0%B9_%D0%BA%D0%BE%D0%BD%D1%82%D1%80%D0%B0%D0...\"],[\"https:\\u002f\\u002ftwitter.github.io\\u002ffinagle\\u002f --- Finagle --- 2017-05-12...\"],[\"http:\\u002f\\u002fwritecodeeveryday.github.io\\u002fprojects\\u002fresumegen\\u002f --- :resume generator in :javascript --- 2017...\"],[\"http:\\u002f\\u002fwww.mk.ru\\u002fscience\\u002farticle\\u002f2011\\u002f04\\u002f26\\u002f584490-v-rossii-izobreli-mielofon.html --- Ð’ Росси...\"],[\"http:\\u002f\\u002fwww.woodmann.com\\u002fcrackz\\u002fPackers.htm --- Packers & Unpackers --- 2017-05-12...\"],[\"http:\\u002f\\u002felinux.org\\u002fRPi_U-Boot --- Raspberry PI boot --- 2017-05-12...\"],[\"http:\\u002f\\u002fwicket.apache.org\\u002flearn\\u002f --- Apache Wicket --- 2017-05-12...\"],[\"http:\\u002f\\u002fhackerspaces.org\\u002fwiki\\u002fToronto --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.vpngate.net\\u002fen\\u002f --- VPN Gate Public VPN Relay Servers List --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fA\\u002fB_testing --- A\\u002fB testing - Wikipedia, the free encyclopedia --- 2017...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fdistorm\\u002f --- distorm - Powerful Disassembler Library For x86\\u002fAMD64 - Googl...\"],[\"http:\\u002f\\u002fus.fotolia.com\\u002fsearch?k=nutrition&search.x=0&search.y=0 --- Search photos: nutrition --- 2017...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fSentenceParsingAndStatics.aspx --- CodeProject: Parsing Sentences a...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffwon\\u002felectron-anyproxy --- :electron anyproxy http\\u002fhttps :proxy -- records traffi...\"],[\"http:\\u002f\\u002fwww.west-wind.com\\u002fpresentations\\u002fPayPalIntegration\\u002fPayPalIntegration.asp --- Integrating PayPa...\"],[\"https:\\u002f\\u002fmartinfowler.com\\u002farticles\\u002fsession-secret.html --- :security One Line of Code that Compromise...\"],[\"https:\\u002f\\u002fwww.amazon.com\\u002fdp\\u002fB01CO3459C\\u002fref=cm_sw_r_pi_dp_665kxbZZ3X3ES --- 100 Deadly Skills: Survival...\"],[\"http:\\u002f\\u002fwww.homebrewcpu.com\\u002f --- Homebrew CPU Home Page --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.math.siu.edu\\u002folive\\u002finfbook.htm --- Statistical Theory and Statistical Inference --- 2017-...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fwsargent\\u002f7049221 --- Docker cheat sheet --- 2017-05-12...\"],[\"https:\\u002f\\u002fsummitroute.com\\u002fblog\\u002f2017\\u002f01\\u002f07\\u002fnews_summaries\\u002f --- :ssl :security Infosec :news --- 2017-05...\"],[\"http:\\u002f\\u002fresearch.microsoft.com\\u002fen-us\\u002fum\\u002fcambridge\\u002fprojects\\u002finfernet\\u002f --- Infer.NET --- 2017-05-12...\"],[\"http:\\u002f\\u002fstephhicks68.hubpages.com\\u002fhub\\u002fInexpensive-Solar-Power-with-DIY-Solar-Panel-Kits --- DIY solar...\"],[\"http:\\u002f\\u002fcommunity.livejournal.com\\u002ftoronto_ru\\u002f927681.html --- toronto_ru: Гостиница + спа ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fwiki\\u002fwiki\\u002fRaspberry-Pi-instructions --- Raspberry Pi instructions · eth...\"],[\"http:\\u002f\\u002fwww.openwall.com\\u002fpasswords\\u002fmicrosoft-windows-nt-2000-xp-2003-vista-7 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fviewit.ca\\u002fvwExpandView.aspx?ViT=1882 --- :Apartments 44 Valley Woods Rd., North york, ON : 1 ...\"],[\"http:\\u002f\\u002fwww.devx.com\\u002ftips\\u002fTip\\u002f42487?trk=DXRSS_DOTNET --- Send Email Using a DNS Server --- 2017-05-12...\"],[\"http:\\u002f\\u002ftoronto.en.craigslist.ca\\u002ftor\\u002fbik\\u002f1294465092.html --- 24\\\" Supercycle 1800, mint condition --- ...\"],[\"http:\\u002f\\u002fwww.gradle.org\\u002fdocs\\u002fcurrent\\u002fuserguide\\u002fuserguide.html --- Gradle User Guide --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002ffqrouter --- guangliang2014\\u002ffqrouter · anti-GFW router --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fJanCVanB\\u002fnetflix --- :recommendation-systems :Machinelearning :algorithms for Net...\"],[\"https:\\u002f\\u002fwww.spreadsheetdb.io\\u002f --- :msoffice :javascript :API SpreadsheetDB - Spreadsheet your data -...\"],[\"https:\\u002f\\u002fvisualstudiogallery.msdn.microsoft.com\\u002f6f3124d4-2f19-4d8e-bddb-272431a3b33d?SRC=VSIDE --- Go...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3088260&R=3088260 --- Google hacking for penet...\"],[\"http:\\u002f\\u002faccurateenglish.com\\u002f --- Accent reduction, American accent training classes, DVDs, Videos to ...\"],[\"http:\\u002f\\u002fenergy.gov\\u002ffe\\u002fhow-coal-gasification-power-plants-work --- How Coal Gasification Power Plants ...\"],[\"https:\\u002f\\u002ftechnet.microsoft.com\\u002fen-US\\u002flibrary\\u002fsecurity\\u002f2963983 --- Microsoft Security Advisory 2963983...\"],[\"http:\\u002f\\u002fedmonton.kijiji.ca\\u002fc-jobs-programmers-computer-Net-and-Sharepoint-Developers-W0QQAdIdZ9076849...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fweb\\u002fdownloads\\u002fplatform.aspx --- Microsoft Web Platform --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.squid-cache.org\\u002f --- squid : Optimising Web Delivery --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.docker.com\\u002f2015\\u002f02\\u002fdocker-1-5-ipv6-support-read-only-containers-stats-named-dockerfiles-...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fsolar-purify-water-project\\u002f --- How to Make a Solar Still to Purify ...\"],[\"http:\\u002f\\u002fwww.scalawags.tv\\u002f --- The Scalawags - Monthly podcasts about Scala language. --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.niftytools.online\\u002fflexpomodoro\\u002f --- :time-management flexpomodoro --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.rdatamining.com\\u002ftutorials\\u002frhadoop --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fdesign\\u002fpatterns\\u002fswipe-views.html --- Android Design - Swipe Views --- 2...\"],[\"http:\\u002f\\u002fwww.mnn.com\\u002fyour-home\\u002forganic-farming-gardening\\u002fstories\\u002fhow-to-start-your-own-hydroponic-gard...\"],[\"https:\\u002f\\u002fain.ua\\u002ftop-100-besplatnyx-onlajn-kursov-mit-oksforda-garvarda-stenforda-berkli --- :algorith...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fpowershell\\u002farchive\\u002f2009\\u002f07\\u002f17\\u002ffree-powershell-v1-book-from-the-makers-of-pow...\"],[\"http:\\u002f\\u002fwww.webdesignhelper.co.uk\\u002f --- WebDesignHelper.co.uk - Web Templates, Vertical & Horizontal M...\"],[\"http:\\u002f\\u002fjournal.frontiersin.org\\u002farticle\\u002f10.3389\\u002ffpsyg.2016.00315\\u002ffull --- :depression :stress-managem...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fgooglespider.aspx --- CodeProject: google spider .net . Free source...\"],[\"https:\\u002f\\u002f80000hours.org\\u002f2015\\u002f08\\u002fwhat-are-the-10-most-harmful-jobs\\u002f --- What are the 10 most harmful :...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002flevel-your-companys-big-data-mesos --- Level Up Your Company'...\"],[\"http:\\u002f\\u002fwww.businessinsider.com\\u002fmicrosoft-plans-250-pc-for-low-income-families-2011-11 --- Microsoft ...\"],[\"https:\\u002f\\u002fwww1.sisystems.com\\u002findex.cfm?mg=cpo.details&uv=%25%2603V3%3C4%20%0A --- S.i. Systems Ltd - V...\"],[\"http:\\u002f\\u002fwww.talend.com\\u002fdownload_form.php?cont=etl&utm_source=google&utm_medium=cpc&utm_content=OS_DL_...\"],[\"https:\\u002f\\u002fethereum.gitbooks.io\\u002ffrontier-guide\\u002fcontent\\u002f --- Introduction | Ethereum Frontier Guide --- ...\"],[\"http:\\u002f\\u002fdev.mysql.com\\u002fdownloads\\u002fworkbench\\u002f5.1.html --- MySQL :: MySQL Workbench Downloads --- 2017-05...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285716\\u002f --- :ai Google DeepMind -- multiagent collaboration --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.jamorigin.com\\u002fproducts\\u002fmidi-guitar\\u002f --- Jam Origin | MIDI Guitar --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.intertech.com\\u002fBlog\\u002fandroid-custom-view-tutorial-part-1-combining-existing-views\\u002f --- Andr...\"],[\"https:\\u002f\\u002fwww.hackster.io\\u002frayburne\\u002f4-dollar-90-mips-32-bit-72-mhz-arm-arduino-f6e5c9 --- $4 Dollar 32-...\"],[\"https:\\u002f\\u002fdatatracker.ietf.org\\u002fdoc\\u002fdraft-ietf-dhc-anonymity-profile\\u002f?include_text=1 --- draft-ietf-dhc...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3084687&R=3084687 --- Understanding the Linux ...\"],[\"http:\\u002f\\u002fwww.areaconnect.com\\u002fstate.htm?s=FL --- Florida Pages, crime rate --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftools\\u002fhelp\\u002fmonkeyrunner_concepts.html --- monkeyrunner | Android Develo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgdabah\\u002fdistorm --- gdabah\\u002fdistorm · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fruipgil\\u002fscraperjs --- ruipgil\\u002fscraperjs · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fcook.mihalko.org\\u002fslabosolenaya-forel\\u002f#more-771 --- Слабосоленая форель - П...\"],[\"http:\\u002f\\u002fwww.openstack.org\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tgtsoft.com\\u002fprod_rb.php --- TGTSoft ResEdit --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mastercam.com\\u002fen-us\\u002f --- Mastercam CAD\\u002fCAM - computer aided manufacturing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fen\\u002fdetails.aspx?FamilyID=b4445989-21f7-4106-a4e0-93e7f3d144e0&utm...\"],[\"http:\\u002f\\u002fwww.semanticsdotnet.blogspot.com\\u002f --- Semantics Web for the Microsoft .NET Framework --- 2017...\"],[\"http:\\u002f\\u002fwww.resumedeliver.com\\u002findex.php --- ResumeDeliver.com - Email your Resume - Over 16,000 Recru...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002ftheharvester\\u002f --- theharvester - Information Gathering - Google Project Ho...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdodie\\u002fvim-disapprove-deep-indentation --- :vim plugin to disapprove deeply indent...\"],[\"http:\\u002f\\u002fwww.opp.ca\\u002fecms\\u002findex.php?id=133 --- Ontario Provincial Police - Fraud Prevention --- 2017-05...\"],[\"http:\\u002f\\u002fwww.gands.com\\u002f --- Green and Spiegel --- 2017-05-12...\"],[\"http:\\u002f\\u002fstephenwalther.com\\u002farchive\\u002f2008\\u002f06\\u002f12\\u002ftdd-introduction-to-moq.aspx --- TDD : Introduction to ...\"],[\"https:\\u002f\\u002fdocs.python.org\\u002f3\\u002fhowto\\u002funicode.html --- Unicode HOWTO — Python 3.4.2 documentation --- 20...\"],[\"http:\\u002f\\u002faspalliance.com\\u002f1993_Replacing_ASPNET_Base_Pages_with_a_PageAdapter --- Replacing ASP.NET \\\"Ba...\"],[\"http:\\u002f\\u002fwww.robots.ox.ac.uk\\u002f~argus\\u002fpublications.html --- ARGUS II - neuro-gadget 4 blind people --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002flibgdx\\u002flibgdx\\u002fwiki\\u002fProject-setup%2C-running-%26-debugging --- Project setup, runn...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002foctopy\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002faspalliance.com\\u002ffarpoint\\u002f --- Farpoint Technologies Vendor Showcase: ASP Alliance --- 2017-05...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd537609%28v=vs.110%29.aspx --- Task Parallelism (Task Para...\"],[\"http:\\u002f\\u002ftools.ietf.org\\u002fsearch\\u002frfc3550 --- RFC 3550 - RTP: A Transport Protocol for Real-Time Applicat...\"],[\"http:\\u002f\\u002fht.transparencytoolkit.org\\u002f --- hacking team archive --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.voipinnovations.com\\u002fpricing.html --- cheap DID numbers --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002ferca\\u002f --- erca - Project Hosting on Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002ftails.boum.org\\u002fdoc\\u002ffirst_steps\\u002findex.en.html --- Tails - First steps with Tails --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.aisn.net\\u002femail_applications\\u002fsharepoint_pricing.php --- SharePoint 2010 Hosting ::: Pricin...\"],[\"https:\\u002f\\u002fleanpub.com\\u002fu\\u002ffogus --- :books :free Michael Fogus - free to read online --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fee942158.aspx --- ASP.NET Web Application Project Deploymen...\"],[\"http:\\u002f\\u002fgnuradio.org\\u002fredmine\\u002fprojects\\u002fgnuradio\\u002fwiki --- GNU Radio - WikiStart - gnuradio.org --- 2017...\"],[\"http:\\u002f\\u002fverticalharvesthydroponics.com\\u002f --- VHH - Containerized Hydroponic Farm - Local Produce Year ...\"],[\"https:\\u002f\\u002fdeveloper.github.com\\u002fv3\\u002fgists\\u002f --- Gists | GitHub API --- 2017-05-12...\"],[\"https:\\u002f\\u002fcloud.google.com\\u002fproducts\\u002fcompute-engine?utm_source=google&utm_medium=cpc&utm_campaign=compu...\"],[\"https:\\u002f\\u002fgithub.com\\u002fharism\\u002fandroid_page_curl --- harism\\u002fandroid_page_curl · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fvertdider\\u002fblog\\u002f286280\\u002f --- :education :harvard :javascript intro to pro...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fOWASP_Secure_Headers_Project --- :security :OWASP Secure Headers Pro...\"],[\"http:\\u002f\\u002fwww.ethicalhacker.net\\u002fcomponent\\u002foption,com_smf\\u002fItemid,54\\u002ftopic,5873.0\\u002f --- The Ethical Hacker...\"],[\"http:\\u002f\\u002fwww.ams.org\\u002fnotices\\u002f201003\\u002frtx100300357p.pdf --- The Brave New World of Bodacious Assumptions...\"],[\"https:\\u002f\\u002fgithub.com\\u002fyouralien\\u002fThinkDSP --- :signal-processing :python :books Think DSP by Allen B. D...\"],[\"http:\\u002f\\u002frqda.r-forge.r-project.org\\u002f --- :text-mining :r-project Welcome to RQDA Project --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.portablesolarpower.biz\\u002fproducts\\u002fwaterproof-lfp-40-portable-solar-power-generator-system -...\"],[\"http:\\u002f\\u002fwww.off-road.com\\u002ftrucks-4x4\\u002ffeature\\u002fivan-stewarts-toyota-trophy-truck-9744.html --- man built...\"],[\"http:\\u002f\\u002fsrc.gnu-darwin.org\\u002fports\\u002fnet\\u002fflowgrep\\u002fwork\\u002fflowgrep-0.9\\u002f --- flowgrep-0.9 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.motherearthnews.com\\u002fdiy\\u002fconvert-small-engine-propane.aspx --- Convert Your Lawn Mower or ...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fArduino-Nano-Connecting-Photo-Interrupter-Slotted-\\u002f --- Arduino Nano...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstoeffel\\u002frecompose-examples --- :examples :reactjs WIP Examples with recompose --...\"],[\"http:\\u002f\\u002fwww.linuxfromscratch.org\\u002flfs\\u002f --- LFS Project Homepage --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gnu.org\\u002fsoftware\\u002fgperf\\u002f --- gperf - GNU Project - Free Software Foundation (FSF) --- 2017...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fInvariant_%28computer_science%29 --- Invariant (computer science) - Wik...\"],[\"http:\\u002f\\u002fblog.reverberate.org\\u002f2016\\u002f11\\u002f07\\u002fintroducing-bloaty-mcbloatface.html --- :cpp :opensource :too...\"],[\"http:\\u002f\\u002fblog.jetbrains.com\\u002fscala\\u002f --- IntelliJ Scala plugin blog | News, events, features and tips fr...\"],[\"https:\\u002f\\u002fambar.cloud\\u002f --- :OCR Ambar Smart Document Archive --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aopensource.com\\u002findex.php?more=9 --- AOpenSource.com Android Open Source Details: Ballist...\"],[\"https:\\u002f\\u002fwww.eathow.com\\u002f --- :food Eathow --- 2017-05-12...\"],[\"http:\\u002f\\u002fadzerk.com\\u002fblog\\u002f2016\\u002f11\\u002fbringing-bookmarklets-back-with-clojure-and-boot\\u002f --- Bringing bookma...\"],[\"https:\\u002f\\u002fblog.golang.org\\u002fh2push --- HTTP\\u002f2 Server Push :Golang :Blogs --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amiduos.com\\u002f --- Run Android on Windows --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fspi --- SharePoint Inspector - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fitextsharp\\u002f?source=staffpicks --- iTextSharp, a .NET PDF library | F...\"],[\"http:\\u002f\\u002fwww.zillow.com\\u002fhomedetails\\u002f1690-Renaissance-Cmns-Blvd-APT-1515-Boynton-Beach-FL-33426\\u002f2126453...\"],[\"https:\\u002f\\u002fdwradcliffe.com\\u002f2013\\u002f04\\u002f12\\u002fvagrant-to-compile-jekyll.html --- Using Vagrant to compile Jekyl...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fLinear_feedback_shift_register --- Linear feedback shift register - Wi...\"],[\"http:\\u002f\\u002falinconstantin.members.winisp.net\\u002fwebdocs\\u002fscc\\u002fVss6Vs2005.htm --- Using Visual SourceSafe 6.0 ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fviaforensics\\u002fandroid-forensics --- android-forensics by viaforensics @·GitHub --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcorporateshark\\u002fWCMCommander --- :linux :windows :tools WCM Commander --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.no-dig-vegetablegarden.com\\u002fbuild-a-garden.html --- Raised beds --- 2017-05-12...\"],[\"http:\\u002f\\u002fneo4j.com\\u002fdocs\\u002fmilestone\\u002fquery-load-csv.html --- 11.6. Load CSV - - The Neo4j Manual v3.0.0-...\"],[\"https:\\u002f\\u002fwww.paperspace.com\\u002fml --- :cheap :cloud-hosting Paperspace :MachineLearning: :GPU backed :Li...\"],[\"http:\\u002f\\u002fheather.cs.ucdavis.edu\\u002f~matloff\\u002fUnixAndC\\u002fCLanguage\\u002fDebug.html --- Guide to Faster, Less Frust...\"],[\"http:\\u002f\\u002fwww.acanac.ca\\u002fsupport\\u002fcontactus.php --- Acanac High Speed Internet. Low Cost DSL and VOIP Ser...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmedgadgets\\u002fblog\\u002f288858\\u002f --- :kids electronic kits --- 2017-05-12...\"],[\"https:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002fImageJ --- ImageJ — Википедия --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gearbest.com\\u002fother-car-gadgets\\u002fpp_600854.html?utm_source=geektimes&utm_medium=yulia&utm_c...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fConvert-2-LED-Lamp-to-50-Smart-Lamp\\u002f --- Such a smart idea. --- 2017...\"],[\"https:\\u002f\\u002fwww.cryptool.org\\u002fsvn\\u002fCrypTool\\u002ftrunk\\u002f --- cryptool source --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tecmint.com\\u002f10-most-dangerous-commands-you-should-never-execute-on-linux\\u002f --- 10 Most Dan...\"],[\"http:\\u002f\\u002fmarkapp.io\\u002f --- :webdev MarkApp: Building apps with HTML --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fnstl\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=12381 --- NSTL - The Power of th...\"],[\"http:\\u002f\\u002fwww.cs.berkeley.edu\\u002f~daw\\u002fteaching\\u002fcs276-s06\\u002f --- CS 276: Cryptography --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.freehaven.net\\u002fanonbib\\u002f --- Anonymity Bibliography --- 2017-05-12...\"],[\"http:\\u002f\\u002fcommunity.livejournal.com\\u002ftoronto_ru\\u002f1108998.html --- toronto_ru: Прошу совета. --...\"],[\"https:\\u002f\\u002fwww.hyperledger.org\\u002f --- :opensource Hyperledger – Blockchain Technologies for Business --...\"],[\"http:\\u002f\\u002f50campfires.com\\u002f10-groovy-teardrop-trailers-youll-love\\u002f --- 10 Groovy Teardrop Trailers You'l...\"],[\"http:\\u002f\\u002fwww.urbanfarming.org\\u002f --- Urban Farming :: Welcome To Urban Farming! --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.weekendgardener.net\\u002fblog\\u002f2010\\u002f05\\u002f9-tricks-for-growing-onions.htm --- 9 Tricks For Growing...\"],[\"http:\\u002f\\u002fwww.shmoocon.org\\u002fwireless_ctf --- ShmooCon 2014 - January 17-19 - Wireless CTF --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ft3chnoboy\\u002fawesome-awesome-awesome --- t3chnoboy\\u002fawesome-awesome-awesome · GitHub...\"],[\"https:\\u002f\\u002fplus.google.com\\u002fu\\u002f0\\u002fb\\u002f112899258933337832969\\u002f+GoodsHomeDesign\\u002fposts\\u002ffnL1oJ1pqsf?pid=612849485...\"],[\"http:\\u002f\\u002fexpression.microsoft.com\\u002fen-us\\u002fcc197141.aspx --- Learn Expression Blend --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPrior_probability --- Prior probability - Wikipedia, the free encyclope...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fcibrax\\u002farchive\\u002f2012\\u002f11\\u002f15\\u002fawait-whenall-waitall-oh-my.aspx --- await, WhenAll...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3105203&R=3105203 --- Augmented reality for An...\"],[\"http:\\u002f\\u002fwww.profilecanada.com\\u002fcompanydetail.cfm?company=2055020_Blues_On_White_Edmonton_AB --- Blues ...\"],[\"http:\\u002f\\u002fwww.theglobeandmail.com\\u002ftechnology\\u002fdigital-culture\\u002fnetflix-has-a-holiday-present-for-canada-d...\"],[\"http:\\u002f\\u002fgcc.godbolt.org\\u002f --- GCC Explorer :: interactive C++ compiler --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkorczis\\u002fdocker-dstk --- korczis\\u002fdocker-dstk · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fjavarevisited.blogspot.com\\u002f2011\\u002f08\\u002fenum-in-java-example-tutorial.html --- Java enum tutorial:...\"],[\"https:\\u002f\\u002fgithub.com\\u002fInvoke-IR\\u002fForensic-Posters --- Invoke-IR\\u002fForensic-Posters · powershell --- 2017-...\"],[\"https:\\u002f\\u002fmxr.mozilla.org\\u002fmozilla-central\\u002fsource\\u002fdom\\u002fsystem\\u002fgonk\\u002fril_worker.js --- This code implement...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3308256&R=3308256 --- Group theoretic cryptogr...\"],[\"http:\\u002f\\u002fwww.soapui.org\\u002f --- SoapUI - The Home of Functional Testing --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmarkerikson\\u002freact-redux-links\\u002fblob\\u002fmaster\\u002fcommunity-resources.md --- :awesome :we...\"],[\"http:\\u002f\\u002fwww.cirosantilli.com\\u002fx86-paging\\u002f --- :Tutorial :computer-architecture :c-coding x86 Paging -...\"],[\"http:\\u002f\\u002flearners.ncu.edu\\u002fwritingprogram\\u002fwriting_center.aspx?menu_id=82 --- Writing Center --- 2017-05...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14064096 --- :bookmarking Ask HN Do you still use browser bookm...\"],[\"https:\\u002f\\u002fdocs.djangoproject.com\\u002fen\\u002f1.10\\u002fintro\\u002ftutorial01\\u002f --- :python Writing your first :Django app ...\"],[\"https:\\u002f\\u002fdeveloper.chrome.com\\u002fextensions\\u002fstorage --- :chrome-extensions chrome.storage - Google Chrom...\"],[\"http:\\u002f\\u002fblog.cognitect.com\\u002fblog\\u002f2016\\u002f7\\u002f26\\u002fclojure-spec-screencast-testing --- :video Clojure spec Scr...\"],[\"https:\\u002f\\u002fgithub.com\\u002flookout\\u002fcgreen --- lookout\\u002fcgreen · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.2ndquadrant.com\\u002fpostgresql-anti-patterns-unnecessary-jsonhstore-dynamic-columns\\u002f --- :P...\"],[\"http:\\u002f\\u002fwww.oreilly.com\\u002fopenbook\\u002flinuxdrive3\\u002fbook\\u002findex.html --- :free online :books :linux device dr...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3279071&R=3279071 --- SoapUI cookbook : boost ...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fpeggy\\u002fsolutions-to-your-most-pressing-first-world-problems?s=mobile --- Solu...\"],[\"http:\\u002f\\u002fimages.search.yahoo.com\\u002fsearch\\u002fimages;_ylt=A2KJkP3pQuFPX1QA88yJzbkF?p=instructions%20on%20how...\"],[\"https:\\u002f\\u002fgithub.com\\u002frmtheis\\u002fandroid-ocr --- :android :ocr Experimental optical character recognition ...\"],[\"http:\\u002f\\u002fwww.cs.arizona.edu\\u002f~debray\\u002fPublications\\u002fdisasm-resist.pdf --- Obfuscation of executable code ...\"],[\"http:\\u002f\\u002fwww.gojobs.gov.on.ca\\u002fHowToApply.asp --- Ontario Public Service Careers - How to Apply --- 201...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms142551.aspx --- Stopwords and Stoplists --- 2017-05-12...\"],[\"http:\\u002f\\u002ftwitlogic.fortytwo.net\\u002f --- --- 2017-05-12...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdfilter=wallet&fdid=ru.valle.btc --- F-Droid : Paper Wallet ...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fscriptjunkie\\u002fee730276.aspx --- Script Junkie | Creating Effective Se...\"],[\"http:\\u002f\\u002fwww.businessinsider.com\\u002fhow-to-use-google-maps-offline-without-wifi-2015-2 --- How To Use Goo...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37953&Ntt=Arduino+Home+Automation+Projects --- Ardui...\"],[\"https:\\u002f\\u002fgithub.com\\u002fforwebdev\\u002fchannels\\u002fblob\\u002fmaster\\u002fru.md --- channels\\u002fru.md at master · forwebdev\\u002fch...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fSalvaging-Liquid-Crystal-Displays-LCDs\\u002f --- Salvaging Liquid Crystal...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002fwebmasters\\u002fajax-crawling\\u002f --- Making AJAX Applications Crawlable - Web...\"],[\"http:\\u002f\\u002fwww.indietalent.ca\\u002fshowsmenu.shtml#JAZZ --- IndieTalent Shows selection menu --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?q=site%3Awww.kaspersky.com+inurl%3Aimages+filetype%3Apdf&oq=site%3Awww....\"],[\"https:\\u002f\\u002foctopart.com\\u002f --- Datasheets, Electronic Parts, Components, Search - Octopart --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flapwinglabs\\u002fx-ray --- :javascript x-ray next :webscraper -- See through the &lt;h...\"],[\"http:\\u002f\\u002fgraniteds.blogspot.ca\\u002f2009\\u002f04\\u002fgraniteds-20-on-google-app-engine.html --- Granite Data Service...\"],[\"https:\\u002f\\u002fxakep.ru\\u002f2017\\u002f02\\u002f10\\u002fwp-deface\\u002f --- :security WordPress defacing --- 2017-05-12...\"],[\"http:\\u002f\\u002fremoveandreplace.com\\u002f2013\\u002f04\\u002f02\\u002fhow-to-build-a-vertical-garden-pyramid-tower-for-your-next-di...\"],[\"http:\\u002f\\u002fpjrc.com\\u002fteensy\\u002fprojects.html --- Projects using the Teensy USB development board --- 2017-05...\"],[\"http:\\u002f\\u002fbeta.eset.com\\u002flinux --- ESET NOD32 Antivirus 4 for Linux Desktop Beta Program --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.real-survival-skills.com\\u002flong-term-survival-supplies.php --- 18-barrel rain catchment sys...\"],[\"http:\\u002f\\u002fgameandgarden.com\\u002fmelting-pot\\u002fearthen-oven\\u002f --- Making an earthen oven to cook breads and piz...\"],[\"http:\\u002f\\u002firony.codeplex.com\\u002f --- Irony - .NET Language Implementation Kit. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.decodified.com\\u002fscala\\u002fcollections-api.xml --- Scala 2.8 Collections API ← Decodified ---...\"],[\"http:\\u002f\\u002fwww.sqlshare.com\\u002fusing-the-dta-to-assist-in-performance-tuning_599.aspx --- SQLShare - Using ...\"],[\"http:\\u002f\\u002fwww.merchantos.com\\u002f2007\\u002f05\\u002fspyjax\\u002f --- Spyjax – Your browser history is not private! --- 20...\"],[\"http:\\u002f\\u002ffarnell.com\\u002f --- farnell com --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.3dhubs.com\\u002fbest-3d-printer-guide --- The 2015 3D Printer Guide | 3D Hubs --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsjvermeu\\u002fcvechecker --- sjvermeu\\u002fcvechecker · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdevelopit\\u002fpreact --- :javascript preact -- Fast 3kb React alternative with the sa...\"],[\"http:\\u002f\\u002fwww.grainger.com\\u002fproduct\\u002fSPEEDAIRE-Air-Cylinder-6W147 --- SPEEDAIRE 304 Stainless Steel Round...\"],[\"http:\\u002f\\u002fwww.aartech.ca\\u002fcv502-4ch-001-svat-4-channel-internet-security-camera-system.html --- CV502-4C...\"],[\"http:\\u002f\\u002fwww.ajaxline.com\\u002f10-useful-jquery-plugins --- 10+ Useful jQuery Plugins | AjaxLine --- 2017-0...\"],[\"http:\\u002f\\u002fwww.scipy.org\\u002f --- SciPy.org — SciPy.org --- 2017-05-12...\"],[\"http:\\u002f\\u002faopensource.com\\u002findex.php?more=24 --- AOpenSource.com Android Open Source Details: APG --- 20...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdfilter=tunesviewer&fdid=com.tunes.viewer --- ITunes U on F-...\"],[\"http:\\u002f\\u002fgit-scm.com\\u002fdownload\\u002fwin --- Git - Downloading Package --- 2017-05-12...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdfilter=wallet&fdpage=1&page_id=0 --- F-Droid : search for w...\"],[\"https:\\u002f\\u002fwiki.apache.org\\u002fsolr\\u002f --- Solr Wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fregexhero.net\\u002ftester\\u002f --- Regex Hero - The Online .NET Regular Expression Tester --- 2017-05-...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285302\\u002f --- :smarthome :sensors :iot light-saving tips --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fnicolenguyen\\u002fclean-is-bae?utm_term=.jy2lvVM6g --- 13 Ways To Clean Your Gadg...\"],[\"http:\\u002f\\u002fblogs.nvidia.com\\u002fblog\\u002f2013\\u002f07\\u002f17\\u002fraspberry-pi\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002ffsharppowerpack.codeplex.com\\u002f --- F# PowerPack --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenpeer.org\\u002fopen-peer-sdk-for-android\\u002f --- Open Peer SDK for Android --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.barnesandnoble.com\\u002fw\\u002flua-software-source-source-wikipedia\\u002f1113740570?ean=9781158083305 --...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fwindowssdk\\u002farchive\\u002f2008\\u002f07\\u002f03\\u002fwindows-sdk-hidden-gems-part-3-tcpanalyzer-exe...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002ferobillard\\u002farchive\\u002f2008\\u002f12\\u002f08\\u002fsharepoint-developer-book-list.aspx --- The Bes...\"],[\"http:\\u002f\\u002fdemos.kendoui.com\\u002fupload\\u002findex.html --- kendo UI framework --- 2017-05-12...\"],[\"http:\\u002f\\u002fiseclab.org\\u002fpapers\\u002fmalware_survey.pdf --- iseclab.org :: A survey on automated dynamic malwar...\"],[\"http:\\u002f\\u002fwww.mychess.com\\u002fsource\\u002fMyChessViewer\\u002f --- Index of \\u002fsource\\u002fMyChessViewer --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactive-Extensions\\u002fRxJSKoans\\u002ftree\\u002fmaster\\u002ftest --- :samples :koans :rxjs RxJSKoan...\"],[\"http:\\u002f\\u002fwww.alienvault.com\\u002f --- SIEM Solutions & IT Security Risk Assessment Tools by AlienVault --- ...\"],[\"http:\\u002f\\u002fvisualstudiogallery.msdn.microsoft.com\\u002f9f35524b-a784-4dbc-bd7b-6babd7a5a3b3 --- code metrics ...\"],[\"http:\\u002f\\u002fwww.infocanada.ca\\u002fservice\\u002fca\\u002fsalessolution\\u002fpromotion.aspx?&gclid=CIWvgL7Yz6ICFSI55QodNkzmyg -...\"],[\"https:\\u002f\\u002fmedium.com\\u002fgoogle-developer-experts --- Google Developer Experts --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftomchop\\u002fmalcom --- github.com :: Malware Communication Analyzer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fjmoc25\\u002fandroid-best-practices-37428602 --- Android best practices --- 2017...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fcompany\\u002fmicrosoft\\u002fblog\\u002f319856\\u002f --- :azure :gps real-time tracking with clouds -...\"],[\"http:\\u002f\\u002fmadeintheusb.blogspot.com\\u002f2017\\u002f04\\u002fnusbio-gpio-api.html --- :.net MadeInTheUSB Nusbio GPIO API...\"],[\"http:\\u002f\\u002fwww.dumpaday.com\\u002fgenius-ideas-2\\u002fcraft-ideas-week-52-pics\\u002f --- Do It Yourself Craft Ideas Of T...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002flxc --- turnkey linux :: linux containers --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnikitavoloboev\\u002fknowledge-map-search-engine --- knowledge-map-search-engine Visual...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjnv\\u002flists --- jnv\\u002flists :: The definitive list of lists (of lists) curated --- 20...\"],[\"http:\\u002f\\u002fdocs.oracle.com\\u002fjavase\\u002f7\\u002fdocs\\u002ftechnotes\\u002fguides\\u002fcollections\\u002findex.html --- Java SE 7 Collectio...\"],[\"https:\\u002f\\u002fblog.docker.com\\u002f2017\\u002f04\\u002fintroducing-linuxkit-container-os-toolkit\\u002f --- LinuxKit :Toolkit for...\"],[\"http:\\u002f\\u002fru-fsharp.livejournal.com\\u002f --- :fsharp F# on liveJournal --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwireghoul\\u002fhtshells --- wireghoul\\u002fhtshells - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=9307 --- Написание Plugin'ов для Internet Explo...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fNull_Object_pattern --- Null Object pattern - Wikipedia, the free ency...\"],[\"http:\\u002f\\u002fjalopnik.com\\u002f5927898\\u002fhow-to-build-a-teardrop-trailer-for-two --- How To Build A Teardrop Trai...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcschaufler\\u002fsmack-next --- smack-next Simplified Mandatory Access Control Kernel (...\"],[\"http:\\u002f\\u002fwww.alfresco.com\\u002ftry\\u002f --- Alfresco Download and Alfresco Online Trial --- 2017-05-12...\"],[\"http:\\u002f\\u002fsamiux.blogspot.com\\u002f2010\\u002f03\\u002fhowto-dd-wrt-on-tp-link-tl-wr1043nd.html --- Samiux's Blog: HOWTO...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fZNetControls --- ZNet Free Asp.net Controls - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.torproject.org\\u002fblog\\u002ftor-messenger-beta-chat-over-tor-easily --- Tor Messenger Beta: Cha...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fpandrew\\u002farchive\\u002f2008\\u002f06\\u002f11\\u002fMSSharePointDeveloper-Content.aspx --- Paul Andrew ...\"],[\"http:\\u002f\\u002fwww.templateworld.com\\u002fall_web_templates_1.html --- TemplateWorld - Browse All Website Templat...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002ffeedparser\\u002f --- feedparser - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fStrength_training --- Strength training - Wikipedia, the free encyclop...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcocagne\\u002fcsrp --- :cryptography :C-code impl. of the Secure Remote Password protoc...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdocpad\\u002fdocpad --- docpad\\u002fdocpad · GitHub - static web site generator --- 2017-05...\"],[\"http:\\u002f\\u002fwww.speex.org\\u002f --- Speex: a free codec for free speech --- 2017-05-12...\"],[\"http:\\u002f\\u002fmedia.kaspersky.com\\u002fen\\u002fKaspersky-Lab-KSN-report-Financial-cyber-threats-in-2013-eng-final.pdf...\"],[\"http:\\u002f\\u002fwww.roboland.kz\\u002f --- RoboLand — robotics in kazakhstan, April 22-23, 2017 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.vividmachines.com\\u002fshellcode\\u002fshellcode.html --- Shellcoding for Linux and Windows Tutorial...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2010\\u002f09\\u002f18\\u002fimportant-asp-net-security-vulnerability.aspx --- ...\"],[\"https:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002fforums\\u002ftopic\\u002f285900 --- Intel Instruction Set Architecture Extensio...\"],[\"http:\\u002f\\u002fwww.intertech.com\\u002fBlog\\u002fintertechs-complete-raspberry-pi-class-materials-lab-1\\u002f?utm_source=Mon...\"],[\"http:\\u002f\\u002fwww.arvixe.com\\u002fasp_net_web_hosting?idev_id=1145&idev_username=madgeek --- ASP NET Hosting | G...\"],[\"http:\\u002f\\u002fwww.myoffshoreaccounts.com\\u002frussian\\u002f --- Оффшорные банки и оффшорные Ð...\"],[\"http:\\u002f\\u002fwww.google.com\\u002fdesign\\u002fspec\\u002fmaterial-design\\u002fintroduction.html# --- Introduction - Material Des...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fwiki\\u002fwiki\\u002fRLP --- RLP · ethereum\\u002fwiki Wiki · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002ffirst-steps-amazon-aws-command-line-addicts --- First Steps w...\"],[\"https:\\u002f\\u002fwww.google.com\\u002fintx\\u002fru\\u002fwork\\u002fapps\\u002fbusiness\\u002fpricing.html --- Google Apps for Work --- 2017-...\"],[\"http:\\u002f\\u002fgoparallel.sourceforge.net\\u002fhyper-threading-perfect-neural-networks\\u002f --- Hyper-threading: Perf...\"],[\"http:\\u002f\\u002fwww.twirpx.com\\u002f --- Все для студента --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286856\\u002f --- :debugging :c-code :openwrt router JTAG --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fnishantgandhi99\\u002fneo4j-vs-giraph --- Neo4j vs apache giraph --- 2017-05-12...\"],[\"http:\\u002f\\u002fieeexplore.ieee.org\\u002fxpl\\u002fRecentIssue.jsp?punumber=90 --- IEEE Xplore: Networking, IEEE\\u002fACM Tra...\"],[\"http:\\u002f\\u002fwww.avanttecno.com\\u002fwww\\u002f --- :tools :homestead Articulated AVANT loaders --- 2017-05-12...\"],[\"http:\\u002f\\u002fsimplestcodings.blogspot.ca\\u002f2010\\u002f08\\u002fcustom-malloc-function-implementation.html --- Simplest C...\"],[\"http:\\u002f\\u002fjoshsmithonwpf.wordpress.com\\u002fa-guided-tour-of-wpf\\u002f --- A Guided Tour of WPF « Josh Smith on ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fBobby-Seidensticker\\u002fhtml5slides --- Bobby-Seidensticker\\u002fhtml5slides - GitHub --- ...\"],[\"http:\\u002f\\u002fwww.digitalmars.com\\u002f --- Digital Mars C, C++ and D Compilers --- 2017-05-12...\"],[\"https:\\u002f\\u002fappear.in\\u002f --- appear.in – one click video conversations --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.doityourselfrv.com\\u002fdiy-off-road-teardrop-camper\\u002f#.VxFIhAH__7o.pinterest --- With a little...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fjoestagner\\u002farchive\\u002f2008\\u002f03\\u002f15\\u002fwindows-communication-foundation-65-links-to-ma...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fphdays\\u002f --- Positive Hack Days | SlideShare --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.brit.co\\u002fedyn\\u002f --- This Smartgarden Device Will FINALLY Make Your Garden Grow --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fRx-Curing-Your-Asynchronous-Programming-Blues --- InfoQ: Rx: Curi...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd851337.aspx --- The Workflow Way: Understanding Windows Wo...\"],[\"https:\\u002f\\u002fcrypto.stanford.edu\\u002f~dabo\\u002fcryptobook\\u002f --- stanford - A Graduate Course in Applied Cryptograp...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002ftradelink\\u002fwiki\\u002fTradeLink --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.thisnumber.rocks\\u002f --- :voip virtual phone number on Twillio --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ndesign-studio.com\\u002fblog\\u002fcss-dock-menu --- CSS Dock Menu --- 2017-05-12...\"],[\"http:\\u002f\\u002fyeblon.com\\u002fandroidmockup\\u002f --- Android GUI Mockup Tool - Yeblon --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fcontent\\u002fBroadcastReceiver.html --- BroadcastReceiver ...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fbigbluebutton\\u002f --- bigbluebutton - Project Hosting on Google Code --- 2017-...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fAnalysis_of_variance --- Analysis of variance - Wikipedia, the free enc...\"],[\"http:\\u002f\\u002fblog.rangle.io\\u002fmanaging-state-redux-angular\\u002f --- :angular :redux :ramda :javascript :function...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fX86_calling_conventions --- x86 calling conventions - Wikipedia, the fr...\"],[\"https:\\u002f\\u002ftheintercept.com\\u002f2014\\u002f02\\u002f18\\u002fsnowden-docs-reveal-covert-surveillance-and-pressure-tactics-aim...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fcompany\\u002fpt\\u002fblog\\u002f224147\\u002f --- доклады PHDays IV: слежка, взлом Ð...\"],[\"https:\\u002f\\u002fdocs.microsoft.com\\u002fen-us\\u002fazure\\u002fhdinsight\\u002fhdinsight-hadoop-hive-pig-udf-dotnet-csharp --- :cs...\"],[\"https:\\u002f\\u002fen.bitcoin.it\\u002fwiki\\u002fMain_Page --- Bitcoin --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmadrobots\\u002fblog\\u002f285474\\u002f --- :drones DJI Phantom 4 Pro: --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.protalk.in\\u002fsql-server\\u002fsteps-to-create-and-deploy-ssis-package-as-a-sqlagent-job\\u002f --- None...\"],[\"http:\\u002f\\u002fwww.wintellect.com\\u002fSearch?q=AngularJS&_cldee=dXNhbWV0b3ZAZ21haWwuY29t --- Wintellect | Search...\"],[\"http:\\u002f\\u002fwww.ams.org\\u002fnotices\\u002f200510\\u002fcomm-fowler.pdf --- :magazines :Mathematics Autodidact Aid, Volume...\"],[\"http:\\u002f\\u002fwww.cloudgraph.com\\u002f --- CloudGraph .NET graph database --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.gitbook.com\\u002fbook\\u002fjedisct1\\u002flibsodium\\u002fdetails --- libsodium - GitBook --- 2017-05-12...\"],[\"http:\\u002f\\u002falgs4.cs.princeton.edu\\u002fcode\\u002f --- Java Algorithms and Clients --- 2017-05-12...\"],[\"https:\\u002f\\u002fobsproject.com\\u002f --- Open Broadcaster Software - Index --- 2017-05-12...\"],[\"http:\\u002f\\u002fsable.github.io\\u002fsoot\\u002f --- A framework for analyzing and transforming Java and Android Applica...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdfilter=vlc&fdid=org.videolan.vlc --- VLC on F-Droid --- 201...\"],[\"http:\\u002f\\u002fwww.scala-lang.org\\u002fapi\\u002fcurrent\\u002f#package --- Scala Standard Library 2.11.0 api docs --- 2017-0...\"],[\"http:\\u002f\\u002fwww.wisdom.weizmann.ac.il\\u002f~oded\\u002ffoc-drafts.html --- Foundations of Cryptography - drafts of a...\"],[\"http:\\u002f\\u002fopenwall.info\\u002fwiki\\u002fjohn\\u002ftutorials --- john the ripper tutorials --- 2017-05-12...\"],[\"http:\\u002f\\u002farxiv.org\\u002fabs\\u002f1310.7991 --- Cornell University Library - Learning Sparsely Used Overcomplete ...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002ftodddanko\\u002fhome\\u002fwebcam_laser_ranger --- Webcam Based DIY Laser Rangefin...\"],[\"http:\\u002f\\u002fupload.wikimedia.org\\u002fwikipedia\\u002fcommons\\u002fc\\u002fc4\\u002fEngineering_Acoustics.pdf --- Acoustic Engineerin...\"],[\"http:\\u002f\\u002feveryplay.co\\u002f --- :startup :business :Marketing Ideas for Developers --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.olympusamerica.com\\u002fcpg_section\\u002fOMfirm.asp --- http:\\u002f\\u002fwww.olympusamerica.com\\u002fcpg_section\\u002fO...\"],[\"http:\\u002f\\u002ftraining.linuxfoundation.org\\u002f --- Linux Foundation Training - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002frest4sharepoint.codeplex.com\\u002f --- REST API for SharePoint --- 2017-05-12...\"],[\"http:\\u002f\\u002farstechnica.com\\u002fgadgets\\u002f2012\\u002f03\\u002figalia-releases-open-source-kinect-skeleton-tracking-library\\u002f...\"],[\"http:\\u002f\\u002fliteralsystems.org\\u002fabooks\\u002findex.php\\u002fMain\\u002fHomePage?q=vonnegut&focus=on&action=search --- Free ...\"],[\"http:\\u002f\\u002flinuxzoo.net\\u002f --- Welcome to linuxzoo --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.facebook.com\\u002frbloggers\\u002f --- r-bloggers on facebook --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmvideo\\u002fblog\\u002f285172\\u002f --- :android :cheap Philips Xenium V787 -- workhors...\"],[\"https:\\u002f\\u002fall3dp.com\\u002fbest-sites-free-stl-files-3d-printing\\u002f --- 25 Best Sites to Download Free STL Fil...\"],[\"http:\\u002f\\u002facademicearth.org\\u002fsubjects\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fthecustomizewindows.com\\u002f2015\\u002f07\\u002fmultimeter-guide-for-dummies\\u002f --- Multimeter Guide For Dummi...\"],[\"http:\\u002f\\u002fsharepointdevtools.codeplex.com\\u002f --- SharePoint Developer Tools for Visual Studio 2010 --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fyehia-mamdouh\\u002fXSSYA --- yehia-mamdouh\\u002fXSSYA · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002ffreedom-to-tinker.com\\u002fblog\\u002fhaldermanheninger\\u002fhow-is-nsa-breaking-so-much-crypto\\u002f --- How is ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&No=0&Ntt=maven --- maven : eBooks & Online Con...\"],[\"http:\\u002f\\u002fwww.openhandsetalliance.com\\u002f --- Open Handset Alliance --- 2017-05-12...\"],[\"http:\\u002f\\u002fusespeakeasy.com\\u002f --- :apps Speak - :AI :English Tutor --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002farticles\\u002fperf-anr.html --- Application Not Responsive (ANR) --...\"],[\"https:\\u002f\\u002fbitnami.com\\u002fstack\\u002fedx --- Open edX Cloud Hosting, Open edX Hosting - Installers and VM --- 2...\"],[\"http:\\u002f\\u002fthrift.apache.org\\u002f --- Apache Thrift - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fcanconet.com\\u002fpages\\u002flistontario2.html#Toronto --- list of co-ops in ontario --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3133746&R=3133746 --- Twilio cookbook over 60 ...\"],[\"http:\\u002f\\u002fprettydiff.com\\u002fguide\\u002funrelated_diff.xhtml --- :samples Pretty Diff :Algorithms --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.networkworld.com\\u002fnews\\u002f2005\\u002f041105-windows-crash.html --- How to solve Windows system cras...\"],[\"http:\\u002f\\u002fhryniewski.net\\u002f2017\\u002f03\\u002f01\\u002fazure-app-services-continuous-delivery-from-git-in-5-minutes-or-so\\u002f...\"],[\"http:\\u002f\\u002fpyvideo.org\\u002fvideo\\u002f289\\u002fpycon-2010--mastering-python-3-i-o --- pyvideo.org - Mastering Python 3...\"],[\"http:\\u002f\\u002fcommonsensehome.com\\u002fhome-remedies-acid-reflux\\u002f --- :diy-pharm 10 Home Remedies for Acid Reflu...\"],[\"https:\\u002f\\u002fopensource.srlabs.de\\u002fprojects\\u002fsnoopsnitch --- Wiki - SnoopSnitch - SRLabs Open Source Projec...\"],[\"http:\\u002f\\u002fwww.fuel-3d.com\\u002fproduct\\u002f --- Fuel3D Product » Fuel3D --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.donorschoose.org\\u002fhacking-education --- Hacking Education: A Contest for Developers and Da...\"],[\"http:\\u002f\\u002fsharepointmagazine.net\\u002ftechnical\\u002fcustomisation\\u002fdeveloping-a-custom-master-page-master-pages-a...\"],[\"http:\\u002f\\u002fwww.oldminibikes.com\\u002fforum\\u002fmore-than-two-wheels\\u002f87687-hotrod-pull-wagon-build-6.html --- Hotr...\"],[\"http:\\u002f\\u002fwww.ka9q.net\\u002fcode\\u002f --- Software Packages and Utilities --- 2017-05-12...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@marziosuperina\\u002flevel-up-your-dependencies-in-react-part-1-d67bb2711b51 --- :reac...\"],[\"http:\\u002f\\u002fwww.roadkillcustoms.com\\u002fhot-rods-rat-rods\\u002fgarage-shop-reference-Transmission-Dimensions.asp -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhwrdtm\\u002freact_tutorial_2 --- :react :tutorial Hacker News client take #2 --- 2017-...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002fgo-extensions-fetching-data-and-more --- Go Extensions: Fetch...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgraphific\\u002fDeepDreamVideo --- graphific\\u002fDeepDreamVideo · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fmakezine.com\\u002fprojects\\u002fGarduino-Geek-Gardening\\u002f#.T7z_uXlYtEE --- Garduino Geek Gardening --- 2...\"],[\"https:\\u002f\\u002fwww.clickandgrow.com\\u002fproducts\\u002fdiy-garden-starter-kit --- :DIY :smartGarden Kit --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.dcs.gla.ac.uk\\u002f~girolami\\u002fMachine_Learning_Module_2006\\u002f --- Machine Learning --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnicolewhite\\u002fRNeo4j --- GitHub - nicolewhite\\u002fRNeo4j: Neo4j Driver for R. --- 2017-...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fadvtor\\u002f --- Advanced Onion Router --- 2017-05-12...\"],[\"http:\\u002f\\u002flintool.github.io\\u002fMapReduceAlgorithms\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHow-To-Purify-Water-Using-Iodine-Tincture\\u002f --- How To Purify Water U...\"],[\"http:\\u002f\\u002ffreenum.org\\u002fcookbook\\u002f --- ISN Cookbook --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dotnetnuke.com\\u002fCommunity\\u002fForums\\u002ftabid\\u002f795\\u002fforumid\\u002f107\\u002fthreadid\\u002f240708\\u002fscope\\u002fposts\\u002fDefault...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fDID+Service+Providers --- DID Service Providers - voip-info.org -...\"],[\"http:\\u002f\\u002fstrataconf.com\\u002f --- O'Reilly Strata Conference: Making Data Work --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.toradex.com\\u002fproducts\\u002fcustomized-single-board-computer?gclid=CNjjhf3fjMECFUPLtAodjTgA0w -...\"],[\"https:\\u002f\\u002fwww.thinkwithgoogle.com\\u002f --- Think Insights with Google – Think Insights – Google --- 20...\"],[\"http:\\u002f\\u002fblackthumbgardener.com\\u002f1-plants-you-grow-from-kitchen-scraps\\u002f --- 17 Plants You Grow from Kit...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fPowerCommands\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=559 --- PowerCom...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fomarzabir\\u002farchive\\u002f2008\\u002f12\\u002f27\\u002fstrongly-typed-workflow-input-and-output-argumen...\"],[\"http:\\u002f\\u002ftelecoms.com\\u002f481333\\u002fai-is-the-only-option-in-the-future-of-cyber-security-ericsson\\u002f?imm_mid=0...\"],[\"http:\\u002f\\u002ffrugalliving.about.com\\u002fod\\u002ffreezingfoods\\u002f --- How to Freeze Everything - Fruits, Vegetables, H...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdparis\\u002fphzr --- :games :clojurescript dparis\\u002fphzr: A ClojureScript wrapper for th...\"],[\"https:\\u002f\\u002fhackernoon.com\\u002fdevelopers-edge-how-to-become-a-senior-developer-f1ec1738cf45#.81syw9foe --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fraichuk\\u002fFace.js --- :javascript :opencv Face recognition --- 2017-05-12...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002farticle\\u002f323088\\u002f --- :java :.net :SAP :Cloud Platform review --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdonnemartin\\u002finteractive-coding-challenges --- :ipython :job-search test-driven :P...\"],[\"https:\\u002f\\u002fdeals.sourceforge.net\\u002fsales\\u002fpwyw-white-hat-hacker-bundle?utm_source=sourceforge&utm_medium=b...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fntdsxtract\\u002f --- ntdsxtract - Forensic tool for analysing NTDS.DIT databases...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fssplex\\u002ffiles\\u002f --- Spatial Solr Plugin Extension - Browse Files at So...\"],[\"https:\\u002f\\u002frobovm.com\\u002f --- RoboVM - Create Truly Native iOS Apps in Java --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fInsightDataScience\\u002fdata-engineering-ecosystem\\u002fwiki --- :tools :data-science data-...\"],[\"https:\\u002f\\u002fsrlabs.de\\u002fdecrypting_gsm\\u002f --- Decrypting GSM phone callsSecurity Research Labs | Security Re...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?familyid=92490D8A-4F2E-46F1-8835-B1D987B3C985&displa...\"],[\"http:\\u002f\\u002flinuxaria.com\\u002fhowto\\u002flinux-terminal-an-lsof-primer --- Linux Terminal: An lsof Primer --- 2017...\"],[\"https:\\u002f\\u002fwww.codeschool.com\\u002fpaths\\u002fjavascript --- JavaScript Path - Code School --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fdn890377 --- Logistic Regression Classification with Multi...\"],[\"https:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fdocumentation\\u002f --- Documentation | Azure --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.business-in-a-box.com\\u002fdefault5.aspx --- Business-in-a-Boxâ„¢ - Business and Legal Forms S...\"],[\"http:\\u002f\\u002fwww.bennadel.com\\u002fblog\\u002f1009-jQuery-Demo-Creating-A-Sliding-Image-Puzzle-Plug-In.htm --- jQuery...\"],[\"http:\\u002f\\u002fdlmf.nist.gov\\u002f --- :mathematics NIST Digital Library of Mathematical Functions --- 2017-05-12...\"],[\"https:\\u002f\\u002fthetinhat.com\\u002ftutorials\\u002fdarknets\\u002ftor-vpn-using-both.html --- Tor And VPN | Using Both For Ad...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fmallorymcinnis\\u002fthyme-to-garden?utm_term=.cedD3ddyK --- Raised gardening beds...\"],[\"https:\\u002f\\u002fbitinfocharts.com\\u002f --- cryptocurrencies stats --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstreamcode9\\u002fsvg-time-series --- :d3js :typescript :data-visualization streamcode9...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fwindows\\u002fhardware\\u002fff560070%28v=vs.85%29.aspx --- How to use D...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdartsim\\u002fdart --- :tutorials :robotics data structures and algorithms for kinemati...\"],[\"http:\\u002f\\u002fventurebeat.com\\u002f2012\\u002f04\\u002f03\\u002finvisible-linux\\u002f --- You — yes, you — are using Linux, and you pro...\"],[\"http:\\u002f\\u002fwww.telerik.com\\u002ffiddler\\u002fadd-ons --- Fiddler Add Ons --- 2017-05-12...\"],[\"http:\\u002f\\u002fbenkampha.us\\u002f2016-11-29.html --- deep learning with clj and cortex --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fFarMcKon\\u002fgitmarks_2 --- GitHub - FarMcKon\\u002fgitmarks_2: Gitmarks 2.0. is a peer to ...\"],[\"http:\\u002f\\u002fwww.telegraph.co.uk\\u002fgardening\\u002fhow-to-grow\\u002ftop-10-vegetables-to-grow-over-winter\\u002f --- Broad be...\"],[\"http:\\u002f\\u002fwww.resumedeliver.com\\u002findex.php?resc=cvalue --- ResumeDeliver.com - Email your Resume - Over ...\"],[\"http:\\u002f\\u002fwww.asteriskguru.com\\u002ftutorials\\u002fastertest.html --- Astertest - asterisk stress testing tool --...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fsystem.threading.autoresetevent.aspx --- AutoResetEvent Clas...\"],[\"http:\\u002f\\u002fwww.embassypages.com\\u002fmissions\\u002fembassy18978\\u002f --- Consulate General of Turkey in Toronto, Canad...\"],[\"http:\\u002f\\u002fmediasite01.ceng.calpoly.edu\\u002fMediasite\\u002fCatalog\\u002fpages\\u002fcatalog.aspx?catalogId=e0ab7bc5-373b-411...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fclang --- GitHub - Microsoft\\u002fclang --- 2017-05-12...\"],[\"http:\\u002f\\u002fwpl.codeplex.com\\u002freleases\\u002fview\\u002f80289 --- Microsoft Web Protection Library - Download: AntiXSS...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fcc302121.aspx --- C#: XML Comments Let You Build Documentat...\"],[\"https:\\u002f\\u002fwww.zerodayinitiative.com\\u002fblog\\u002f2017\\u002f3\\u002f17\\u002fthe-results-pwn2own-2017-day-three --- :exploits :s...\"],[\"http:\\u002f\\u002fxplanner.org\\u002f --- XPlanner Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.uhurucloud.com\\u002f --- Uhuru App Cloud --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkarpathy\\u002fconvnetjs --- karpathy\\u002fconvnetjs --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjosephmisiti\\u002fawesome-machine-learning --- josephmisiti\\u002fawesome-machine-learning Â...\"],[\"http:\\u002f\\u002fwww.voipbaez.com\\u002fvoip-cameras\\u002fcameras\\u002fgrandstream-gxv3615-ip-cube-camera\\u002f --- IP camera --- 2...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fIn-place_algorithm --- In-place algorithm - Wikipedia, the free encycl...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fprecision-in-mcmc\\u002f --- precision in MCMC --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.peachpie.io\\u002f2017\\u002f02\\u002fwordpress-announcement.html --- :php :.NET – Peachpie --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.linux.com\\u002fdirectory\\u002fopen-cloud --- Open Cloud | Linux.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3045955&R=3045955 --- Introduction to cryptogr...\"],[\"http:\\u002f\\u002fitp.nyu.edu\\u002fphyscomp\\u002flabs\\u002fmotors-and-transistors\\u002fusing-a-transistor-to-control-high-current-l...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fgo-ethereum\\u002fwiki\\u002fGeth --- Geth · ethereum\\u002fgo-ethereum Wiki · GitHub --...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fsteveschofield\\u002farchive\\u002f2009\\u002f04\\u002f04\\u002fday-of-net-summary.aspx --- Day of .NET sum...\"],[\"https:\\u002f\\u002fwww.markettrendsignal.com\\u002fsecure\\u002fsecure518BT.php?a=VI-GST300CON&p=VIG --- stock picking serv...\"],[\"https:\\u002f\\u002fcrypto.stackexchange.com\\u002fquestions\\u002f39970\\u002fshamirs-secret-sharing-scheme-prime-security --- Sh...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmaxgillett\\u002fcoursera\\u002fblob\\u002fmaster\\u002fHardware%20Software%20Interface\\u002fcourse-materials\\u002f...\"],[\"http:\\u002f\\u002fwww.binarytides.com\\u002flinux-netstat-command-examples\\u002f --- 10 basic examples of linux netstat co...\"],[\"http:\\u002f\\u002fwww.onegoodthingbyjillee.com\\u002f2014\\u002f12\\u002f25-clever-car-hacks-help-survive-winter-200-amazon-gift-...\"],[\"https:\\u002f\\u002fsupso.org\\u002f?utm_source=hackernews --- :business :opensource Super Source - Great Software Pro...\"],[\"http:\\u002f\\u002fwww.smidgeonsoft.prohosting.com\\u002fpebrowse-pro-file-viewer.html --- PEBrowse64 - Windows Disass...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fMarketing_mix --- Marketing mix - Wikipedia, the free encyclopedia --- ...\"],[\"http:\\u002f\\u002fshadowtrader.net\\u002farchives-main\\u002fpairs-hours-shows\\u002f --- Pairs Hour Shows | Shadow Trader --- 20...\"],[\"http:\\u002f\\u002fwww.techiedelight.com\\u002ftop-10-programming-puzzles\\u002f --- Top10 Programming :Puzzles --- 2017-05-...\"],[\"http:\\u002f\\u002fthesource.ofallevil.com\\u002ftechnet\\u002farchive\\u002fcommunity\\u002fcolumns\\u002fsecurity\\u002faskus\\u002fauas0401.mspx?mfr=tr...\"],[\"https:\\u002f\\u002frepl.it\\u002fsite\\u002freact_native --- repl.it - :ReactNative --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wikibhasha.org\\u002f --- WikiBhasha|Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.openssl.org\\u002fblog\\u002fblog\\u002f2016\\u002f03\\u002f01\\u002fan-openssl-users-guide-to-drown\\u002f --- An OpenSSL User’...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fBeginWPF4.aspx --- CodeProject: WPF: A Beginner's Guide - Part 4 o...\"],[\"http:\\u002f\\u002fwiki.paparazziuav.org\\u002fwiki\\u002fMain_Page --- PaparazziUAV --- 2017-05-12...\"],[\"http:\\u002f\\u002fhubpages.com\\u002ftechnology\\u002fcomputer-networking\\u002f5410 --- Computer Networking Articles | HubPages ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002ftop3dshop\\u002fblog\\u002f286530\\u002f --- :3d-printers :food chocola3d --- 2017-05-12...\"],[\"https:\\u002f\\u002fwiki.sugarlabs.org\\u002fgo\\u002fWelcome_to_the_Sugar_Labs_wiki --- Sugar Learning Platform --- 2017-05...\"],[\"http:\\u002f\\u002fdemo.dashcommerce.org\\u002f --- :: Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkorczis\\u002fcs-benchmark --- korczis\\u002fcs-benchmark · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fismtheatreofdance.blogspot.com\\u002f --- Ismailova Theatre of Dance --- 2017-05-12...\"],[\"http:\\u002f\\u002fooooby.ning.com\\u002fprofiles\\u002fblogs\\u002f10-reasons-to-plant-a-garden --- Brilliant idea for garden cov...\"],[\"http:\\u002f\\u002fwww.scipr-lab.org\\u002f --- SCIPR lab :: Succinct Computational Integrity and Privacy Research ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgurugio\\u002flowlevelprogramming-university --- :raspberrypi :arduino :free :books :li...\"],[\"http:\\u002f\\u002fwww.math.ucla.edu\\u002f~wittman\\u002fFields\\u002f --- Fields Institute, July 2012 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3105424&R=3105424 --- Data structures and algo...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fspyfiles3 --- wikileaks.org :: 'Spy Files #3' – 249 documents from 92 global...\"],[\"http:\\u002f\\u002fwww.introducingbooks.com\\u002ftitle\\u002fintroducing-artificial-intelligence\\u002f --- Introducing Artificia...\"],[\"https:\\u002f\\u002fgithub.com\\u002fforrestv\\u002fp2pool --- forrestv\\u002fp2pool · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fspformsutility.codeplex.com\\u002f --- Sharepoint Forms Maintenance Utility - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fHarmJ0y\\u002fArya --- HarmJ0y\\u002fArya · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.secretmango.com\\u002fjimb\\u002fWhitepapers\\u002fptrace\\u002fptrace.html --- Debugging with PTrace --- 2017-05...\"],[\"http:\\u002f\\u002fgiffconstable.com\\u002f2009\\u002f12\\u002fwhat-is-your-customer-acquisition-strategy-startup-marketing-tactic...\"],[\"http:\\u002f\\u002fdroidbreak.neocities.org\\u002findex_old.html --- Droid-Break.info - High quality alternative Andro...\"],[\"https:\\u002f\\u002fhub.openshift.com\\u002fquickstarts\\u002f198-play-framework --- Free Play Framework Hosting | OpenShift...\"],[\"http:\\u002f\\u002flucene.apache.org\\u002fcore\\u002f5_3_0\\u002fcore\\u002forg\\u002fapache\\u002flucene\\u002fsearch\\u002fsimilarities\\u002fTFIDFSimilarity.html ...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fhow-to-hack-your-own-network-and-beef-up-its-security-w-1649785071 --- Kali Li...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhackappcom\\u002fibrute --- hackappcom\\u002fibrute --- 2017-05-12...\"],[\"https:\\u002f\\u002fcloudplatform.googleblog.com\\u002f2016\\u002f05\\u002fGoogle-supercharges-machine-learning-tasks-with-custom-...\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002freprap --- reprap on reddit --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.skilledsurvival.com\\u002fhow-to-disappear-completely\\u002f?utm_source=Pinterest%20Organic&utm_mediu...\"],[\"http:\\u002f\\u002finteractivepython.org\\u002frunestone\\u002fstatic\\u002fpythonds\\u002findex.html --- :online :free :books Problem S...\"],[\"https:\\u002f\\u002fgithub.com\\u002frushter\\u002fdata-science-blogs --- :data-mining :datascience :blogs curated list of d...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbincyber\\u002fbeesly --- :python :flask beesly PAM authentication microservice --- 201...\"],[\"http:\\u002f\\u002fforums.digium.com\\u002fviewtopic.php?t=9426 --- asterisk ports --- 2017-05-12...\"],[\"http:\\u002f\\u002fpypy.org\\u002f --- Welcome to PyPy --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.pcmag.com\\u002farticle2\\u002f0,2817,2409751,00.asp --- Is someone accessing your router without you...\"],[\"http:\\u002f\\u002fwww.homegauge.com\\u002freport\\u002f1644462\\u002f --- my home inspection report --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsteveshogren\\u002f10-minute-vim-exercises\\u002fblob\\u002fmaster\\u002fbook_sample_ctrln.md --- :vim 10...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fsnare\\u002f?source=navbar --- snarelite - system calls audit for windows ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fumhau\\u002fvmc --- Voice Model Creator - using a context-specific grammar -- :opensou...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms137880.aspx --- Debugging How-to Topics (Integration Servi...\"],[\"http:\\u002f\\u002fconnect.microsoft.com\\u002fcontent\\u002fcontent.aspx?ContentID=6415&SiteID=94 --- Microsoft SharedView ...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fRegClientControls --- RegClientControls - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fjuliapugachevsky\\u002fpeople-who-are-too-good-for-this-world?utm_term=.riYwQY187 ...\"],[\"http:\\u002f\\u002fwww.itshop.ru\\u002fNahozhdenie-prostyh-chisel-s-ispolzovaniem-PLINQ-v-Visual-Studio-2010\\u002fl9i24039 ...\"],[\"http:\\u002f\\u002fwww.funcgo.org\\u002f --- :functional-programming :golang functional go --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.telegraph.co.uk\\u002fmen\\u002fthe-filter\\u002fvirals\\u002f11841525\\u002fMan-creates-home-made-helicopter-made-from...\"],[\"https:\\u002f\\u002fhashes.org\\u002fmdxfind.php --- Hashes.org - MDXfind by Waffle --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.backdoorsurvival.com\\u002fhow-to-disinfect-and-sterilize-medical-instruments\\u002f --- How to Disin...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fOWASP_Xelenium_Project --- OWASP Xelenium Project - OWASP --- 2017-0...\"],[\"http:\\u002f\\u002fnextension.blogspot.com\\u002f2008\\u002f04\\u002fon-regular-basis-several-repeating-code.html --- NEXTension: ...\"],[\"http:\\u002f\\u002fwww.bookmentions.com\\u002f --- :Books Mentioned in Podcasts --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.gitbook.com\\u002fbook\\u002fswlaschin\\u002ffsharpforfunandprofit\\u002fdetails --- :fsharp F# for Fun and Prof...\"],[\"http:\\u002f\\u002fwww.w3.org\\u002fRDF\\u002f --- RDF - Semantic Web Standards --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faleksandar-todorovic\\u002fawesome-linux\\u002f --- aleksandar-todorovic\\u002fawesome-linux · Git...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fguide\\u002ftopics\\u002fproviders\\u002fcontent-providers.html --- Content Providers | A...\"],[\"http:\\u002f\\u002fgoto.ucsd.edu\\u002freflex\\u002f --- :coq Reflex DSL -- Automating Formal Proofs for Reactive Systems --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fneiesc\\u002fListOfMinimalistFrameworks --- neiesc\\u002fListOfMinimalistFrameworks · GitHub...\"],[\"https:\\u002f\\u002fhexlet.org\\u002f --- Hexlet | Свободный университет --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002femea\\u002fmsdn\\u002fthepanel\\u002fdadk\\u002ffeatured\\u002fwpf_cornucopia.aspx --- WPF Cornucopia - A...\"],[\"http:\\u002f\\u002fwww.nermins.net\\u002fpost\\u002fTDDUsing-Mock-objects-with-CSLANet.aspx --- TDD\\u002fUsing Mock objects with ...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002fyougerthen\\u002f304082008065737AM\\u002f3.aspx --- Add and handle conne...\"],[\"http:\\u002f\\u002fproselint.com\\u002f --- proselint --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aopensource.com\\u002findex.php?more=873 --- AOpenSource.com Android Open Source Details: Open ...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002fjava\\u002flibrary\\u002fj-jtp07233\\u002findex.html --- Java theory and practice: C...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002f1704.01568 --- Best Practices for Applying :DeepLearning to Novel Applications...\"],[\"http:\\u002f\\u002fwww.oracle.com\\u002ftechnology\\u002fsoftware\\u002ftech\\u002fwindows\\u002fodpnet\\u002findex.html --- Oracle Data Access Comp...\"],[\"http:\\u002f\\u002fwww.actcomponents.com\\u002f --- ACT Components, Inc. (805) 987-2960 Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fnews.harvard.edu\\u002fgazette\\u002fstory\\u002f2017\\u002f03\\u002fmaking-math-more-lego-like\\u002f --- :mathematics Making ma...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyID=626252C5-AD59-4842-9C6F-6ED24B6B1426&displa...\"],[\"https:\\u002f\\u002fblog.xamarin.com\\u002fnative-facebook-authentication-with-azure-app-service\\u002f --- :azure :oauth :x...\"],[\"http:\\u002f\\u002freadyset.tigris.org\\u002f --- readyset Open Source Software Documentation --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.w3.org\\u002fTR\\u002frdf-sparql-query\\u002f --- SPARQL Query Language for RDF --- 2017-05-12...\"],[\"http:\\u002f\\u002fgrass.osgeo.org\\u002f --- GRASS GIS --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002faccounts\\u002fAccountManager.html --- AccountManager | And...\"],[\"https:\\u002f\\u002frefdash.com\\u002f --- :interview Refdash --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.u2u.be\\u002fres\\u002fTools\\u002fCamlQueryBuilder.aspx --- CAML Query Builder for SharePoint 2003 and Sha...\"],[\"https:\\u002f\\u002fdappsforbeginners.wordpress.com\\u002ftutorials\\u002fyour-first-dapp\\u002f --- Your first Dapp | Dapps for B...\"],[\"https:\\u002f\\u002fwww.fstar-lang.org\\u002f --- :functional-programming :fstar-lang F* Higher-Order Effectful Langua...\"],[\"http:\\u002f\\u002fandroid-developers.blogspot.in\\u002f2013\\u002f02\\u002fusing-cryptography-to-store-credentials.html --- Using...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmiscctrl\\u002fThemedExplorerControls.aspx --- CodeProject: Adding XP Themes...\"],[\"https:\\u002f\\u002fdocs.python.org\\u002f2\\u002flibrary\\u002fitertools.html --- 9.7. itertools — Functions creating iterators...\"],[\"https:\\u002f\\u002ffly.io\\u002f --- :computer-networks Fly :load-balancer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.treehugger.com\\u002fbikes\\u002fpedal-powered-four-wheel-drive-suv-invented-in-germany.html --- Peda...\"],[\"http:\\u002f\\u002fwww.dailymail.co.uk\\u002fhealth\\u002farticle-2681003\\u002fMigraine-sufferer-banishes-crippling-headaches-usi...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fdynamicdata --- ASP.NET Dynamic Data Preview - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fblockchain.info\\u002f --- Bitcoin Block Explorer - Blockchain.info --- 2017-05-12...\"],[\"https:\\u002f\\u002fd396qusza40orc.cloudfront.net\\u002fandroidapps101%2Fdownloads%2FImageReducer.zip --- image reduce...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fgdata\\u002fdocs\\u002fjs.html --- Using the JavaScript Client Library (v2.0) - Goog...\"],[\"http:\\u002f\\u002ftheownerbuildernetwork.co\\u002f8zis --- #tire turned into #planter #garden #flowers --- 2017-05-12...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2008\\u002f02\\u002f21\\u002fscreencasting-video-tutorials\\u002f --- 12 Screencasting Tools For Creatin...\"],[\"http:\\u002f\\u002fbusiness.financialpost.com\\u002ffp-tech-desk\\u002fgoogles-sibling-deepmind-artificial-intelligence-has-...\"],[\"http:\\u002f\\u002fwww.cs.ncsu.edu\\u002ffaculty\\u002fjiang\\u002fpubs\\u002fMOBISYS12.pdf --- Riskranker: scalable and accurate zero-d...\"],[\"http:\\u002f\\u002fdeeparoy.hubpages.com\\u002fhub\\u002fWhat-Type-of-Electrical-Wire-to-Use-for-Home --- Home Electrical Wi...\"],[\"http:\\u002f\\u002fwww.mrhandyman.com\\u002flocal-handyman-service\\u002ffl\\u002fnorth-palm-beach-county.aspx --- Professional Pa...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fcharlesahudson\\u002fhtml5-video-interactive-28467810 --- http:\\u002f\\u002fwww.slideshare....\"],[\"http:\\u002f\\u002fsiremis.asipto.com\\u002finstall\\u002f --- SIREMIS Project - Kamailio (OpenSER) Web Management Interface...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fscripting\\u002fFreezePanes.aspx --- CodeProject: Freeze Panes like Excel. F...\"],[\"https:\\u002f\\u002fgithub.com\\u002frobinrbhood\\u002fskyrack --- robinrbhood\\u002fskyrack · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fpodder2.aspx --- CodeProject: The WPF Podcatcher Series - Part 2 (...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002faa453938.aspx --- Shell OS Design Development --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.thegeekstuff.com\\u002f --- The Geek Stuff --- 2017-05-12...\"],[\"https:\\u002f\\u002finkandvolt.com\\u002f2017\\u002f04\\u002fhow-to-make-small-talk\\u002f --- :psychology-practices :soft-skills How to...\"],[\"http:\\u002f\\u002fwww.cs.cornell.edu\\u002fcourses\\u002fcs414\\u002f2005sp\\u002fcforjava.pdf --- http:\\u002f\\u002fwww.cs.cornell.edu\\u002fcourses\\u002fcs...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnaptha\\u002ftesseract.js --- :tesseract :js Pure :Javascript :OCR for 62 Languages ---...\"],[\"https:\\u002f\\u002ffindface.me\\u002f --- :computer-vision FindFace --- 2017-05-12...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fpscl\\u002findex.html --- CRAN - Package pscl --- 2017-05-12...\"],[\"http:\\u002f\\u002fieeexplore.ieee.org\\u002fxpl\\u002fRecentIssue.jsp?punumber=35 --- IEEE Xplore: Communications Magazine,...\"],[\"http:\\u002f\\u002fwww.erahost.kz\\u002fdedicated.php --- dedicated server kz-hosting --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjb55\\u002fData.Maybe.cs --- :csharp :functional-programming jb55\\u002fData.Maybe.cs: Idioma...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fchrome-screen-capture\\u002f --- chrome-screen-capture - Capture webpage screens...\"],[\"http:\\u002f\\u002fwww.openculture.com\\u002ffreeonlinecourses --- 800 Free Online Courses from Top Universities | Ope...\"],[\"http:\\u002f\\u002fwww.ontariokitcarbuilders.com\\u002fa-message-from-ed --- Ontario Kit Car Consultants - A Message F...\"],[\"http:\\u002f\\u002fjava-source.net\\u002fopen-source\\u002fhtml-parsers --- Open Source HTML Parsers in Java --- 2017-05-12...\"],[\"http:\\u002f\\u002fpyrorobotics.org\\u002f --- Pyro, Python Robotics: Pyro --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fligurio\\u002ffree-software-testing-books\\u002fblob\\u002fmaster\\u002ffree-software-testing-books.md --...\"],[\"http:\\u002f\\u002fwww.beansoftware.com\\u002fASP.NET-Tutorials\\u002fExpression-Builder.aspx --- ASP.NET Tutorials: Express...\"],[\"http:\\u002f\\u002fwww.peachfuzzer.com\\u002f --- Peachfuzzer --- 2017-05-12...\"],[\"http:\\u002f\\u002fsmarttemplates.codeplex.com\\u002f --- SharePoint SmartTemplates for Visual Studio --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dslreports.com\\u002fforum\\u002fr22141334-ST516-Bridge-Mode-Router-Access-DMT-Modem-Config-TUT --- h...\"],[\"http:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002fhtml5\\u002fprojects --- Projects | Intel® Developer Zone --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.revolutionanalytics.com\\u002fnews-events\\u002ffree-webinars\\u002f2013\\u002fusing-r-with-hadoop\\u002f --- Using R w...\"],[\"http:\\u002f\\u002fwww.optionshawk.com\\u002f --- Options Hawk Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%9A%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D0%B8%D1%8F:%D0%A1%D0%BF%D1...\"],[\"http:\\u002f\\u002fotalk.org\\u002f --- Otalk | The Truly Open WebRTC Platform from &yet --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms998283.aspx#paght000006_step2 --- How To: Encrypt Configur...\"],[\"http:\\u002f\\u002fwww.pdflabs.com\\u002f --- PDF Labs: Tools, Services and Code for PDF Users and Programmers --- 201...\"],[\"http:\\u002f\\u002fsugarfreeglow.com\\u002f2014\\u002f02\\u002femergency-prep-food-and-water\\u002f --- Bleach to Water ratio for water ...\"],[\"http:\\u002f\\u002fwww.channelbanks.com\\u002fproducts\\u002fcb24fxo --- CB24 24-FXO | www.channelbanks.com quality T1 Chann...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fReference_class_problem --- Reference class problem - Wikipedia, the f...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fOdersky\\u002foscon-keynote-working-hard-to-keep-it-simple --- Oscon keynote: Wo...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002faa730844(vs.80).aspx --- Guidelines for Test-Driven Developm...\"],[\"http:\\u002f\\u002fwww.123-free-download.com\\u002fpopular-phrase\\u002fdownload\\u002fd\\u002fdating\\u002f0.htm --- Free-software --- 2017-0...\"],[\"https:\\u002f\\u002fblogs.msdn.microsoft.com\\u002fvisualstudio\\u002f2016\\u002f12\\u002f05\\u002fazure-notebooks-now-support-f\\u002f --- :azure :...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fLinqToCodeModel --- LinqToCodeModel - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f1386406\\u002fusing-f-for-the-semantic-web-implementing-in-memory-tripl...\"],[\"http:\\u002f\\u002fblog.stephenwolfram.com\\u002f2013\\u002f04\\u002fdata-science-of-the-facebook-world\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fmalwaremustdie\\u002f --- malwaremustdie - Tools, Analysis & Tips for Fighting M...\"],[\"https:\\u002f\\u002fwww.bleepingcomputer.com\\u002fnews\\u002fsecurity\\u002fbrickerbot-author-claims-he-bricked-two-million-devic...\"],[\"http:\\u002f\\u002fnmparsers.codeplex.com\\u002f --- Network Monitor Open Source Parsers - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fzxingnet.codeplex.com\\u002f --- ZXing.Net --- 2017-05-12...\"],[\"http:\\u002f\\u002foffice.microsoft.com\\u002fen-us\\u002fsharepoint-server-help\\u002fmicrosoft-office-servers-2010-faq-readme-HA...\"],[\"http:\\u002f\\u002fcs229.stanford.edu\\u002fprojects2014.html --- Machine Learning projects @Stanford --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.egm.gov.tr\\u002fEN\\u002fPages\\u002fResidence-Permit-Procedures.aspx --- Pages - Residence Permit Procedu...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fcoding4fun\\u002farchive\\u002f2010\\u002f10\\u002f04\\u002f10070953.aspx --- Developer Review - Four ASP....\"],[\"http:\\u002f\\u002fwww.robots.ox.ac.uk\\u002f~vgg\\u002fhzbook\\u002f --- :books Multiple View Geometry in :ComputerVision --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAlxandr\\u002fQrCode.Net\\u002ftree\\u002fmaster\\u002fGma.QrCodeNet --- QrCode.Net\\u002fGma.QrCodeNet at mast...\"],[\"http:\\u002f\\u002fwww.cbsa-asfc.gc.ca\\u002fsme-pme\\u002fe-guide-eng.html --- Exporting - A Step-by-Step Guide --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002flaramies\\u002ftheHarvester --- laramies\\u002ftheHarvester · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002freactjs.net\\u002fgetting-started\\u002ftutorial.html --- Tutorial | ReactJS.NET --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.strategic-options.com\\u002finsight\\u002fhow-to-get-option-prices-for-free-api-yahoo\\u002f --- :trading :...\"],[\"https:\\u002f\\u002fblog.keras.io\\u002frunning-jupyter-notebooks-on-gpu-on-aws-a-starter-guide.html --- Running :Jupy...\"],[\"http:\\u002f\\u002frecursivehack.com\\u002fBackdoor.cs --- c# reverse shell --- 2017-05-12...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:scala\\u002f --- Pinboard bookmarks tagged scala --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fyoutube-downloader-android\\u002f --- download youtube videos in any forma...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNightOfTwelve\\u002fcyassl --- NightOfTwelve\\u002fcyassl · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002falwaysontechnologies.com\\u002fblog\\u002f2010\\u002f12\\u002f17\\u002fcreating-a-word-lens-like-engine-in-n-steps\\u002f --- Cre...\"],[\"http:\\u002f\\u002farachnode.codeplex.com\\u002f --- arachnode.net --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fwebfoundations\\u002f --- webfoundations - Project Hosting on Google Code --- 201...\"],[\"https:\\u002f\\u002flabs.portcullis.co.uk\\u002fblog\\u002fnew-restricted-admin-feature-of-rdp-8-1-allows-pass-the-hash\\u002f ---...\"],[\"http:\\u002f\\u002fpeople.seas.harvard.edu\\u002f~salil\\u002fresearch\\u002fstreamhash-abs.html --- Why Simple Hash Functions Wor...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f146667\\u002f --- Ставим Google Play Store на виртуальный де...\"],[\"http:\\u002f\\u002fdashcommerce.org\\u002fdefault.aspx --- dashCommerce --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fresults?search_query=abs+workout&search_type= --- YouTube - Broadcast Yoursel...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fducky-decode\\u002f --- ducky-decode - Dawn of the Ducky - a community edition o...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002farticles\\u002fuser-data-ids.html --- Best Practices for Unique Iden...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f25819\\u002fThe-R-Statistical-Language-and-C-NET-Foundations --- The R...\"],[\"http:\\u002f\\u002fwww.livinggreenandfrugally.com\\u002fmake-solar-water-heater-plastic-bottles\\u002f --- How To Make A Sol...\"],[\"http:\\u002f\\u002fwww.howjsay.com\\u002findex.php?word=moodle&submit=Submit --- A free online Talking Dictionary of E...\"],[\"http:\\u002f\\u002fkarapuz.kz\\u002fpages_out.php?cid=536 --- Искусственное оплодотворение ...\"],[\"http:\\u002f\\u002fquartznet.sourceforge.net\\u002f --- Quartz.NET - Enterprise Job Scheduler for .NET Platform --- 20...\"],[\"http:\\u002f\\u002fwww.counterpath.com\\u002fxlite-comparison.html --- CounterPath Corporation | X-Lite Features Compa...\"],[\"https:\\u002f\\u002fmicrosoft.github.io\\u002freactxp\\u002f --- :typescript :mobile :microsoft library ReactXP building cro...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f184304\\u002f --- 7 операционных систем, которые Ð’Ñ‹ м...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%A1%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C_%D1%82%D0%B5%D1%80%D0%BC%D0%...\"],[\"http:\\u002f\\u002fwww.asteriskvoipnews.com\\u002fasterisk_development\\u002fztdummy_accuracy_improvements_on_kernel_26.html...\"],[\"https:\\u002f\\u002fsolarbotics.com\\u002fsearch\\u002fopenbeam\\u002f --- openbeam :: Solarbotics --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.bibsonomy.org\\u002f --- BibSonomy :: home --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fWikiLeaks\\u002f --- :WikiLeaks on reddit --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.windynation.com\\u002fjzv\\u002finf\\u002fSizing%20a%20Solar%20Power%20System --- Sizing a solar system and...\"],[\"http:\\u002f\\u002fwww.devx.com\\u002fcodemag\\u002fArticle\\u002f41802?trk=DXRSS_DOTNET --- Dances with Workflows (One Newbie's J...\"],[\"http:\\u002f\\u002ftinyhousetalk.com\\u002fdiy-zen-den-micro-camper\\u002f --- Daniels Zen Den Micro Camper http:\\u002f\\u002fcobravisi...\"],[\"http:\\u002f\\u002fwww.appropedia.org\\u002fRecyclebot --- Recyclebot - Appropedia: The sustainability wiki --- 2017-0...\"],[\"http:\\u002f\\u002fwww.box2d.org\\u002fwiki\\u002findex.php?title=Main_Page --- Box2D Wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.telusmobility.com\\u002fen\\u002fON\\u002fsend_message\\u002f --- Send a message |  TELUS Mobility --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.ubuntu.com\\u002fgetubuntu\\u002fdownload --- Download Ubuntu | Ubuntu --- 2017-05-12...\"],[\"http:\\u002f\\u002frnews.sourceforge.net\\u002f#sthash.m5wn0XF0.dpuf --- Rnews Feed Aggregator --- 2017-05-12...\"],[\"http:\\u002f\\u002fdatasciencemasters.org\\u002f --- The Open Source Data Science Masters by datasciencemasters --- 20...\"],[\"http:\\u002f\\u002ftigoe.net\\u002fpcomp\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f598695\\u002fCplusplus-threads-locks-and-condition-variables --- C++11...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSpacecow99\\u002fsecure-delete --- Spacecow99\\u002fsecure-delete · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.yearofmoo.com\\u002f --- Welcome to Yearofmoo --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.journalism.org\\u002fnode\\u002f14356 --- About the New Media Index | Project for Excellence in Journ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fIP\\u002fSeoTutorial2.aspx --- CodeProject: SEO Tutorial - Part 2. Free sour...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdonnemartin\\u002fawesome-aws --- donnemartin\\u002fawesome-aws · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002frise4fun.com\\u002fDafny\\u002ftutorial\\u002fGuide --- rise4fun - dafne program verifier :tutorial --- 2017-05...\"],[\"https:\\u002f\\u002fsnyk.io\\u002fblog\\u002fknown-vulnerabilities-in-javascript\\u002f --- :security :JavaScript The Frequency of...\"],[\"http:\\u002f\\u002fparallelpatterns.codeplex.com\\u002f --- Parallel Programming with Microsoft .NET --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.webpronews.com\\u002fgoogle-wallet-lets-you-send-money-to-any-contact-by-phone-number-2015-12\\u002f ...\"],[\"http:\\u002f\\u002fwww.inphonex.com\\u002fproducts\\u002fvoip-phones-devices.php --- Internet Phones, ATAs, VoIP Devices and...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fpgielens\\u002farchive\\u002f2008\\u002f10\\u002f27\\u002fwindows-workflow-4-0-is-build-from-the-ground-up....\"],[\"http:\\u002f\\u002fwww.simple-talk.com\\u002fdotnet\\u002f.net-framework\\u002f.net-debugging-don%E2%80%99t-give-me-none-of-your-v...\"],[\"http:\\u002f\\u002flifehacker.com\\u002f5953047\\u002fhow-to-crack-wep-and-wpa-wi+fi-passwords?utm_campaign=socialflow_lifeh...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fvcblog\\u002farchive\\u002f2015\\u002f12\\u002f04\\u002fintroducing-clang-with-microsoft-codegen-in-vs-201...\"],[\"https:\\u002f\\u002fjazz.net\\u002fdownloads\\u002frational-team-concert\\u002freleases\\u002f2.0.0.2iFix3 --- Downloads - Jazz.net Comm...\"],[\"http:\\u002f\\u002fopensourceecology.org\\u002fwiki\\u002f --- :OpenSource Ecology --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002ftextilenet --- Textile.NET - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?q=site%3Ahttp%3A%2F%2Finfo.mapr.com+filetype%3Apdf#q=site:info.mapr.com...\"],[\"https:\\u002f\\u002fgithub.com\\u002fn8han\\u002fconscript\\u002f --- GitHub - n8han\\u002fconscript: Scala at your command --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fContagious-Why-Things-Catch-On\\u002fdp\\u002f1451686579 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.julmar.com\\u002fblog\\u002fmark\\u002fPermaLink,guid,f733e261-5d39-4ca1-be1a-c422f3cf1f1b.aspx --- Mark's ...\"],[\"https:\\u002f\\u002fdeveloper.mozilla.org\\u002fen-US\\u002fdocs\\u002fWeb\\u002fAPI\\u002fWeb_Crypto_API --- :cryptography :webdev Web Crypto...\"],[\"https:\\u002f\\u002fhelp.ubuntu.com\\u002fcommunity\\u002f --- Community Documentation - Community Ubuntu Documentation --- ...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fpricing-options-mathematical-models-caltechx-bem1105x-0 --- Pricing Optio...\"],[\"http:\\u002f\\u002fwww-cs-faculty.stanford.edu\\u002f~uno\\u002ftaocp.html --- Knuth: The Art of Computer Programming --- 20...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002fshivprasadk\\u002f11223401202009053421AM\\u002f112234.aspx --- ASP.NET F...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002ftree\\u002fdotNetToolBox.aspx --- CodeProject: Dot Net Toolbox Control. Free...\"],[\"http:\\u002f\\u002fwww.extension.harvard.edu\\u002fopen-learning-initiative\\u002fintensive-introduction-computer-science --...\"],[\"http:\\u002f\\u002fblog.revolutionanalytics.com\\u002f2015\\u002f09\\u002freading-financial-time-series-with-r.html --- Reading Fi...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002fnetframework\\u002faa497345.aspx --- Downloads and Samples --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHow-to-solder\\u002f --- How to Solder --- 2017-05-12...\"],[\"http:\\u002f\\u002fnullsecurity.net\\u002f --- security and hacking tools, exploits, proof of concepts, shellcodes, sc...\"],[\"https:\\u002f\\u002fwww.hushmail.com\\u002f?l=19 --- Hushmail - Free Email with Privacy - Login --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.daydreameducation.co.uk\\u002fset-of-23-computer-science-posters --- Computer Science Education...\"],[\"http:\\u002f\\u002fwww.wandinc.com\\u002fprod_tools_syn.aspx --- Taxonomy Management Tools - Synaptica --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cssclip.com\\u002fresources\\u002f2009-01-10\\u002ftextures-in-modern-web-design\\u002f --- Textures In Modern We...\"],[\"https:\\u002f\\u002fgithub.com\\u002f0x90shell?tab=repositories --- 0x90shell · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.openintents.org\\u002fen\\u002fdownload --- Download | OpenIntents --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002fraising-rabbits\\u002f --- Raising Rabbits For Survival | An Excellent Meat Sou...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002f930b76w0(VS.71).aspx --- Code Access Security --- 2017-05-1...\"],[\"http:\\u002f\\u002fzakupki.gov.ru\\u002fTender\\u002fViewPurchase.aspx?PurchaseId=896150 --- Официальный сайт...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcsgillespie\\u002fpoweRlaw --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.geekswithblogs.net\\u002fakraus1\\u002farchive\\u002f2014\\u002f03\\u002f24\\u002f155766.aspx --- What Every Developer Must K...\"],[\"http:\\u002f\\u002fplatform.europeanmoocs.eu\\u002f --- EMMA: The European Multiple MOOC Aggregator --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.schneier.com\\u002fblog\\u002farchives\\u002f2014\\u002f11\\u002fa_new_free_ca.html --- Schneier on Security: A New Fr...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnathanmarz\\u002fstorm --- apache storm --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.zeroshell.org\\u002f --- www.zeroshell.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fcoryg89.github.io\\u002ftechnical\\u002f2013\\u002f08\\u002f13\\u002fhow-to-create-your-own-chrome-extensions\\u002f --- Cory Gro...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAKSHAYUBHAT\\u002fDeepVideoAnalytics --- :docker :opensource :Deep-learning Video :Anal...\"],[\"https:\\u002f\\u002fgithub.com\\u002flk-geimfari\\u002fawesomo\\u002fblob\\u002fmaster\\u002flanguages\\u002fC%23.md --- :csharp :awesome awesomo\\u002fC#...\"],[\"http:\\u002f\\u002fwww.expeditionportal.com\\u002fforum\\u002fthreads\\u002f18142-Offroad-Teardrop-SawTooth-XL\\u002fpage22 --- Offroad ...\"],[\"http:\\u002f\\u002fwww.icgst.com\\u002f --- ICGST --- 2017-05-12...\"],[\"http:\\u002f\\u002fhotdiyideas.blogspot.co.at\\u002f2014\\u002f01\\u002fconvert-beer-bottles-into-shape-of-vase.html --- Convert B...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002f1703.02136 --- :English Conversational Telephone :Speech-Recognition by Humans...\"],[\"https:\\u002f\\u002fwww.oreilly.com\\u002fideas\\u002ftraining-and-serving-nlp-models-using-spark-mllib --- Training and ser...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002foxite\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=20210#ReleaseFiles --- Oxite - ...\"],[\"https:\\u002f\\u002fchannel9.msdn.com\\u002fBlogs\\u002fWindows-Azure?sort=rating#tab_sortBy_rating --- Windows Azure | Chan...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpouchdb\\u002fpouchdb --- :javascript PouchDB -- pocket-sized database --- 2017-05-12...\"],[\"https:\\u002f\\u002fdood.al\\u002fpinktrombone\\u002f --- :javascript :speech synthesis Pink Trombone --- 2017-05-12...\"],[\"https:\\u002f\\u002ffossbytes.com\\u002flearn-it-faster-the-complete-linux-kernel-in-a-single-map\\u002f --- linux-kernel-ma...\"],[\"http:\\u002f\\u002fwww.dirty-joe.com\\u002f --- dirtyJOE - binary java class file editor - de-obfuscates java code ---...\"],[\"http:\\u002f\\u002fwww.smartwebcontrols.com\\u002f --- SmartChartPro - Smart Web Controls - OrgCharts, SiteMaps, Produ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fglobalhook.aspx --- CodeProject: Processing Global Mouse and Keyboa...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fInstallKey --- Install Key - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fxakep.ru\\u002f2007\\u002f07\\u002f03\\u002f39074\\u002f --- Вторжение в чужое адресное простÑ...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fmini-ai-app-using-tensorflow-and-shiny\\u002f --- Mini AI app using TensorFlow a...\"],[\"http:\\u002f\\u002fgaut.am\\u002fmaking-an-ocr-android-app-using-tesseract\\u002f --- Making an OCR Android App using Tesser...\"],[\"https:\\u002f\\u002fpopapp.in\\u002f --- POP - Prototyping on Paper | iPhone App Prototyping Made Easy --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.businessinsider.com\\u002fprotect-your-eyes-from-computer-screens-2015-1 --- Protect Your Eyes ...\"],[\"http:\\u002f\\u002fshazzer.co.uk\\u002fhome --- Shazzer - Shared Fuzzer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.homesteadlady.com\\u002fmust-have-must-grow-medicinal-herbs\\u002f --- Must Have, Must Grow Medicinal...\"],[\"http:\\u002f\\u002fwww.jetbrains.org\\u002fdisplay\\u002fIJOS\\u002fHome;jsessionid=EEEB14FC28D300BC1935D83288216A6C --- Home - In...\"],[\"http:\\u002f\\u002fwww.kickstarter.com\\u002fprojects\\u002f2021474419\\u002fflutter-20-wireless-arduino-with-half-mile-1km-ran?re...\"],[\"http:\\u002f\\u002fwww.scs.stanford.edu\\u002f14wi-cs140\\u002f --- CS140: Operating Systems --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fsystem.windows.routedevent.aspx --- RoutedEvent Class (Syst...\"],[\"https:\\u002f\\u002fnamechk.com\\u002f --- :tools :privacy :security Namechk -- Username search --- 2017-05-12...\"],[\"https:\\u002f\\u002fmedium.com\\u002fgoogle-developer-experts\\u002fangular-2-introduction-to-redux-1cf18af27e6e#.irqouerbd ...\"],[\"http:\\u002f\\u002fwww.wikihow.com\\u002fOpen-Up --- How to Open Up (with Pictures) - wikiHow --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fblog\\u002f2338-sha-1-collision-detection-on-github-com --- :cryptography SHA-1 collisi...\"],[\"http:\\u002f\\u002fprojects.spring.io\\u002fspring-data\\u002f --- projects.spring.io spring-data --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.canadainternational.gc.ca\\u002frussia-russie\\u002fvisas\\u002f2.aspx?lang=rus --- Посещение Ка...\"],[\"https:\\u002f\\u002fculurciello.github.io\\u002ftech\\u002f2016\\u002f06\\u002f04\\u002fnets.html --- :blogs :Neural-Networks Architectures :d...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fOWASP_Xenotix_XSS_Exploit_Framework --- OWASP Xenotix XSS Exploit Fr...\"],[\"http:\\u002f\\u002fwww.raspberrypi.org\\u002fmagic-mirror\\u002f --- Magic Mirror | another Raspberry Pi project --- 2017-05...\"],[\"https:\\u002f\\u002fnettalk.codeplex.com\\u002f --- NetTalk XMPP Messenger Server - Codeplex --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fGuillaumeSalles\\u002fredux.NET --- :redux :.NET Redux.NET is a predictable state conta...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=iYafyPZ15g8&feature=em-subs_digest --- H Bridge Motor Speed Controll...\"],[\"https:\\u002f\\u002fweb.whatsapp.com\\u002f --- WhatsApp Web --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fgg598923.aspx --- MSDN Magazine: Dynamic Data - Pattern Mat...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f288965\\u002f --- Permian :oil sands :trading --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.minio.io\\u002fminio-server-gauge-with-raspberry-pi-e43d7b3c932d --- :iot Minio server gauge ...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fms227295(VS.80).aspx --- Introduction --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.heritagewebdesign.com\\u002fweb\\u002f?gclid=CNqgqKGz5KACFSFy5Qod0TuFBw --- Hit Web Design - Custom W...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fBlender_%28software%29 --- Blender (software) - Wikipedia, the free enc...\"],[\"http:\\u002f\\u002fblog.jetbrains.com\\u002fkotlin\\u002f2016\\u002f01\\u002fkotlin-digest-2015\\u002f --- Kotlin Digest 2015 | Kotlin Blog --...\"],[\"http:\\u002f\\u002fdataobjects.net\\u002foverview.aspx --- DataObjects.NET Overview --- 2017-05-12...\"],[\"--- How SIM card works? ... Special Multipurpose Vehicle FRESIA F18 4x4 Red Version Many models avai...\"],[\"an18\\\" section of 1 1\\u002f4\\\" PVC pipe… ... Plastic bottle eating utensil holder- It would be great for to...\"],[\"in our Workshop www.motorsportloralamia.com ... 100 year old recipe I found on youtube: A pound o...\"],[\"test with processing.js and clojurescript to generate images in the browser ... processing.js and cl...\"],[\"Mobile Kitchen Bench by Vaidas Zvirblis #workshopped #supacentamoorepark ... Custom wagon ... Ant ki...\"],[\"knowledge, and other things! ... Knife fighting technique ... Trophy Truck Roller ... Hole in an air...\"],[\"slingbow clubs in almost every city in America already! Here's how you can make yours for under $20 ...\"],[\"--- 2016-11-23...\"],[\"https:\\u002f\\u002fparacordcrate.com\\u002fparacordprojects\\u002f --- Over 200 paracord projects. Projects are listed by c...\"],[\"http:\\u002f\\u002fwww.sedar.com\\u002fDisplayProfile.do?lang=EN&issuerType=03&issuerNo=00008085 --- Phonetime Inc. Pr...\"],[\"https:\\u002f\\u002fhackernoon.com\\u002fmvp-minimum-viable-product\\u002fhome --- :business :startup MVP (Minimum Viable Pr...\"],[\"http:\\u002f\\u002fgetcoleman.com\\u002f --- :business-writing Joe Coleman --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.paypal.com\\u002fcgi-bin\\u002fwebscr?cmd=xpt\\u002fMarketing\\u002fsecuritycenter\\u002fsell\\u002fUnauthorizedPaymentProte...\"],[\"http:\\u002f\\u002fwww.tornadoweb.org\\u002f --- Tornado Web Server --- 2017-05-12...\"],[\"http:\\u002f\\u002fspark-packages.org\\u002f?PageSpeed=noscript --- Spark Packages --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.visualstudio.com\\u002fdocs\\u002fgetstarted\\u002fintrovideos#VSCode --- :visualstudio :vscode Intro :Vid...\"],[\"https:\\u002f\\u002fgithub.com\\u002finfobyte\\u002ffaraday --- Faraday - Penetration-Test IDE --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdennis714\\u002fRE-for-beginners --- dennis714\\u002fRE-for-beginners · GitHub --- 2017-05-1...\"],[\"http:\\u002f\\u002fresearch.microsoft.com\\u002fen-us\\u002fum\\u002fredmond\\u002fgroups\\u002fadapt\\u002fmsbnx\\u002f --- MSBNx --- 2017-05-12...\"],[\"https:\\u002f\\u002fplugins.jetbrains.com\\u002f?androidstudio --- JetBrains Android Studio Plugin Repository --- 2017...\"],[\"http:\\u002f\\u002finhabitat.com\\u002fsolar-panels-work-at-night\\u002f --- new solar power technology --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdae\\u002fanki --- dae\\u002fanki · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fInsightDataScience\\u002fdata-engineering-ecosystem\\u002fwiki\\u002felasticsearch --- :Elasticsear...\"],[\"http:\\u002f\\u002fwww.mkyong.com\\u002fspring-mvc\\u002fspring-mvc-file-upload-example\\u002f --- Spring MVC file upload example ...\"],[\"http:\\u002f\\u002fwww.cheatography.com\\u002fdavechild\\u002fcheat-sheets\\u002flinux-command-line\\u002f --- Linux Command Line Cheat ...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f674458\\u002fasp-net-mvc-unit-testing-controllers-that-use-urlhelper --...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285942\\u002f --- :smartgarden cheap climate control with IRremoteESP8266 and Ti...\"],[\"http:\\u002f\\u002fwww.packetstan.com\\u002f --- Packetstan --- 2017-05-12...\"],[\"https:\\u002f\\u002fwiki.python.org\\u002fmoin\\u002fPythonEditors --- PythonEditors - PythonInfo Wiki --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcoinomi\\u002f --- Coinomi · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ibci.ru\\u002fkonferencia\\u002fAPEMPM\\u002fst006.htm --- Генетический алгоритм для...\"],[\"http:\\u002f\\u002fwww.asp.net\\u002fdownloads\\u002farchived\\u002f --- Archived Downloads : source code --- 2017-05-12...\"],[\"http:\\u002f\\u002fdevtools.korzh.com\\u002feq\\u002fdotnet\\u002f --- Easy Query.NET - add custom query builder into your .NET ap...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3093514&R=3093514 --- Handbook of smart antenn...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fIBrokers\\u002findex.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWCF\\u002fNETTx.aspx --- CodeProject: Truly Understanding .NET Transactions ...\"],[\"http:\\u002f\\u002fforums.whirlpool.net.au\\u002farchive\\u002f679361 --- check sip_nat.conf --- 2017-05-12...\"],[\"https:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002fiot\\u002fdownloads --- IoT - Downloads | Intel® Developer Zone --- 2017...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fwebforms\\u002fGridViewExpandCollapse.aspx --- CodeProject: Expanding \\u002f Coll...\"],[\"http:\\u002f\\u002fwww.mayin.org\\u002fajayshah\\u002fKB\\u002fR\\u002fdocuments\\u002fboot.html --- Getting started with the `boot' package i...\"],[\"http:\\u002f\\u002fhomestead-honey.com\\u002f2014\\u002f08\\u002f22\\u002fselecting-solar-electric-system-homestead\\u002f --- Thinking about ...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fListOfNETDependencyInjectionContainersIOC.aspx --- List of .NET Depend...\"],[\"http:\\u002f\\u002fwww.flytron.com\\u002fthermal-cameras\\u002f303-dronethermal-micro-uav-thermal-camera.html --- DroneTherm...\"],[\"http:\\u002f\\u002fwww.jetbrains.com\\u002fpycharm\\u002f --- Python IDE & Django IDE for Web developers : JetBrains PyCharm...\"],[\"http:\\u002f\\u002fwww.virtualdub.org\\u002f --- Welcome to virtualdub.org! - virtualdub.org --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fviebel\\u002ftemplate-test-js-with-clj --- template for :testing :javascript code with ...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb387118.aspx --- Entity SQL Reference --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDeDiS\\u002fDissent --- DeDiS\\u002fDissent · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fstringi\\u002findex.html --- CRAN - Package stringi --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.techcrunch.com\\u002f2006\\u002f05\\u002f31\\u002fyahoo-battles-youtube-but-forgets-to-bring-flickr\\u002f --- Yahoo Ba...\"],[\"http:\\u002f\\u002fwww.abb.com\\u002fcawp\\u002fabbzh254\\u002f8657f5e05ede6ac5c1257861002c8ed2.aspx --- ABB FRIDA concept robot -...\"],[\"http:\\u002f\\u002fhbase-online-trainings.blogspot.in\\u002f --- Introduction of HBase Architecture --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.xakep.ru\\u002flocal\\u002fsearch\\u002fsearch.asp?text=asterisk&p=0 --- asterisk --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f287510\\u002f --- :security :smart-tv :exploits --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.3cx.com\\u002fPBX\\u002fDID.html --- DID - Direct Inward Dialing --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenelec.tv\\u002f --- OpenELEC Mediacenter - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fcs282\\u002f --- CS 282: Principles of Operating Systems II: System...\"],[\"http:\\u002f\\u002fclickandgrow.ru\\u002f --- :smartgarden :russian distributor --- 2017-05-12...\"],[\"http:\\u002f\\u002fjsbeautifier.org\\u002f --- Online javascript beautifier --- 2017-05-12...\"],[\"http:\\u002f\\u002faboutspacejornal.net\\u002f --- :space :magazine :russian pro cosmos --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.mathworks.com\\u002facademia\\u002fcourseware\\u002fteaching-system-dynamics-arduino\\u002f?s_v1=61114112_1-NH77...\"],[\"http:\\u002f\\u002farchive.hack.lu\\u002f2014\\u002f --- security papers --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.php-compiler.net\\u002fdoku.php --- core:start [Phalanger] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mpi-inf.mpg.de\\u002fyago-naga\\u002fyago\\u002f --- YAGO2 - D5: Databases and Information Systems (Max-Pla...\"],[\"http:\\u002f\\u002fgojko.net\\u002ffitnesse\\u002fbook\\u002f --- Test Driven .NET Development With FitNesse: Second Edition --- 2...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286196\\u002f --- :security BugDrop campaign - spying mic --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cyberciti.biz\\u002ftips\\u002flinux-virtualization-software.html --- Top 10 Linux Virtualization Sof...\"],[\"https:\\u002f\\u002fgithub.com\\u002fzogondragon\\u002fdailySpy --- zogondragon\\u002fdailySpy · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002furbansurvivalsite.com\\u002f8-ways-to-cook-food-if-you-end-up-homeless\\u002f --- If you can't get home, ...\"],[\"http:\\u002f\\u002fwww.koob.ru\\u002fgalego\\u002fbeloe_na_chernom --- Белое на черном - Гальего РубÐ...\"],[\"https:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fapp\\u002fFragment.html#setRetainInstance%28boolean%29 ---...\"],[\"http:\\u002f\\u002fwww.backtrack-linux.org\\u002fwiki\\u002findex.php\\u002fPentesting_VOIP --- Pentesting VOIP - BackTrack Linux ...\"],[\"http:\\u002f\\u002fwww.myengineering.us\\u002f2015\\u002f09\\u002fthe-largest-collection-of-arduino-books.html --- The Largest Col...\"],[\"http:\\u002f\\u002fjalopnik.com\\u002f5927898\\u002fhow-to-build-a-teardrop-trailer-for-two?utm_source=Jalopnik+Newsletter&u...\"],[\"http:\\u002f\\u002fpietschsoft.com\\u002fpost\\u002f2009\\u002f02\\u002f05\\u002fNET-Framework-Communicate-through-NAT-Router-via-UPnP --- .NE...\"],[\"http:\\u002f\\u002fwww.ecallchina.com\\u002flong-distance\\u002fcall\\u002fKAZAKHSTAN-ALMATY.aspx --- Kazakhstan-Almaty Long Dista...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fOptions_strategies --- Options strategies - Wikipedia, the free encyclo...\"],[\"http:\\u002f\\u002fwww.longtailvideo.com\\u002fplayers\\u002fjw-flv-player\\u002f --- JW FLV Media Player | LongTail Video | Home ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fWaterlooRobotics\\u002fmobilerobotics --- :education :robotics :Matlab and Robot code f...\"],[\"http:\\u002f\\u002fkwizcom.com\\u002fProductPage.asp?ProductId=517&ProductsubnodeId=518 --- SharePoint Tagging Feature...\"],[\"http:\\u002f\\u002fwww.syterra.com\\u002fFit\\u002fUsingFitnesse.html --- Using Fitnesse --- 2017-05-12...\"],[\"http:\\u002f\\u002fe2e.ti.com\\u002fblogs_\\u002fb\\u002fdesignproject\\u002farchive\\u002f2014\\u002f08\\u002f13\\u002fhow-and-why-to-teach-wireless-connectivi...\"],[\"http:\\u002f\\u002fgenie.sis.pitt.edu\\u002fabout.html#smile --- GeNIe & SMILE - About GeNIe & SMILE --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyID=3E1DCCCD-1CCA-433A-BB4D-97B96BF7AB63&displa...\"],[\"http:\\u002f\\u002fwww.fabbaloo.com\\u002fblog\\u002f2015\\u002f9\\u002f6\\u002fis-this-3d-road-asphalt-printer-going-to-work --- Is This 3D R...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002ftags\\u002fscala\\u002finfo --- 'scala' Info - Stack Overflow --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.coolcomponents.co.uk\\u002farduino-pro-mini-328-3-3v-8mhz.html\\u002f?utm_source=post&utm_medium=pin...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fMake-A-Cheap-Lithium-Battery-Pack\\u002f --- Make A Cheap Lithium Battery ...\"],[\"http:\\u002f\\u002fxp123.com\\u002fwwake\\u002ffw\\u002fch12-bb.htm --- CHAPTER 12: WHITE BOX AND BLACK BOX --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cnews.ru\\u002ftop\\u002f2012\\u002f07\\u002f09\\u002frossiya_gotovoe_po_dlya_ddosatak_prodayut_neumelym_hakeram_495714...\"],[\"https:\\u002f\\u002fwww.u-he.com\\u002fcms\\u002fzebralette --- Zebralette --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002foffice\\u002fOutlook_Navigation_Pane.aspx --- CodeProject: Outlook 2003 Styl...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkudelskisecurity\\u002fsgxfun\\u002fblob\\u002fmaster\\u002fpaper\\u002fsgxpaper.md --- :cryptography :security...\"],[\"http:\\u002f\\u002fwww.ispyconnect.com\\u002f --- iSpy: Open Source Camera Security Software --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftrailofbits --- Trail of Bits on github --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmausch\\u002fSolrNet --- mausch\\u002fSolrNet --- 2017-05-12...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdfilter=timer&fdid=net.sourceforge.opencamera --- F-Droid ::...\"],[\"https:\\u002f\\u002fwww.coinpayments.net\\u002f --- CoinPayments.net - US and Canadian merchants now have fiat settlem...\"],[\"https:\\u002f\\u002faddons.mozilla.org\\u002fen-US\\u002ffirefox\\u002faddon\\u002fmedia-hint\\u002f --- Media Hint :: Add-ons for Firefox ---...\"],[\"http:\\u002f\\u002farticles.techrepublic.com.com\\u002f5100-10878_11-6102360.html?tag=nl.e606 --- Get reusable CSS at ...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms972319.aspx --- Provider Model Design Pattern and Specific...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fmb-unit\\u002fsource\\u002fcheckout --- mb-unit - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftrevordavenport\\u002fDroidDreamMalware --- DroidDream Reverse Malware Analysis --- 201...\"],[\"http:\\u002f\\u002fwww.dataillusion.com\\u002fdemo\\u002fFeedbackServer\\u002fhelp\\u002findex.html?page=change%20log.htm --- Feedback S...\"],[\"https:\\u002f\\u002fblog.dominodatalab.com\\u002fnumenta-anomaly-benchmark\\u002f --- :machine-learning Numenta Anomaly Benc...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fFluent_interface --- Fluent interface - Wikipedia, the free encyclopedi...\"],[\"http:\\u002f\\u002fblogs.cfainstitute.org\\u002finvestor\\u002f2013\\u002f04\\u002f15\\u002finside-bloombergs-twitter-a-list-well-at-least-a-f...\"],[\"https:\\u002f\\u002fwww.cnet.com\\u002fhow-to\\u002ftop-5-custom-roms-for-the-google-nexus-4\\u002f --- :android Top 5 custom ROMs...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=RDkjsVUcxmw --- How to build a simple hybrid rocket engine - YouTube...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdid=de.we.acaldav --- F-Droid : Synchronize calendar with a ...\"],[\"http:\\u002f\\u002facml2013.conference.nicta.com.au\\u002f --- Asian Machine Learning conference --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002farticles\\u002f35667\\u002fHow-to-Use-LINQ-GroupBy.aspx --- How to Use LINQ GroupBy -...\"],[\"http:\\u002f\\u002fwww.bellard.org\\u002flte\\u002f --- LTE Base Station Software --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.healthbeckon.com\\u002fsimple-ways-to-lose-weight-quickly-for-teenagers\\u002f --- CORE STRENGTHENING...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fwindowsxp\\u002fusing\\u002fhelpandsupport\\u002flearnmore\\u002fballew_commandline.mspx --- How to...\"],[\"http:\\u002f\\u002fwww.electricbike.com\\u002f10-ebikes-of-the-future\\u002f --- dogati , one of the best electric bikes !! ...\"],[\"http:\\u002f\\u002fwww.denuvo.com\\u002f --- :security :licensing-system Denuvo --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002fmoodle --- Moodle Appliance | TurnKey Linux Virtual Appliance Library --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNYTimes\\u002fgizmo --- NYTimes\\u002fgizmo: A Microservice Toolkit from ... - GitHub --- 201...\"],[\"https:\\u002f\\u002fthisweekin4n6.com\\u002f2017\\u002f03\\u002f12\\u002fweek-10-2017\\u002f --- :news :security This Week In 4n6 --- 2017-05-...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285342\\u002f --- :video :webcam setup --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.rasmussen.edu\\u002fdegrees\\u002ftechnology\\u002fblog\\u002ftop-cyber-security-blogs\\u002f --- 21 Cyber Security Blo...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002fblogs\\u002fjamesserra\\u002f2016\\u002f01\\u002f20\\u002fhadr-for-azure-sql-database\\u002f --- HA\\u002fDR f...\"],[\"https:\\u002f\\u002frealworldocaml.org\\u002f --- :free :books Real World OCaml --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcmusphinx\\u002fpocketsphinx --- :opensource PocketSphinx lightweight :speech recogniti...\"],[\"http:\\u002f\\u002fwww.videograbby.com\\u002f --- VideoGrabby - World's simplest Youtube downloader. --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.instagram.com\\u002fp\\u002fjFh2YSrkfC\\u002f --- Here are #foodscraps that can be #regrown in #water. Giv...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=3jg1AheF4n0 --- O'Reilly OSCON Java 2011: Martin Odersky, \\\"Working H...\"],[\"http:\\u002f\\u002fsequenceviz.codeplex.com\\u002f --- SequenceViz - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fUniversal_Software_Radio_Peripheral --- Universal Software Radio Periph...\"],[\"http:\\u002f\\u002fmathoverflow.net\\u002fquestions\\u002f8846\\u002fproofs-without-words --- :kids :mathematics Proofs without wo...\"],[\"https:\\u002f\\u002fwww.mapr.com\\u002fservices\\u002fmapr-academy\\u002fbig-data-hadoop-online-training --- Free Hadoop On-demand...\"],[\"http:\\u002f\\u002fwww.jtolds.com\\u002fwriting\\u002f2017\\u002f03\\u002fwhiteboard-problems-in-pure-lambda-calculus\\u002f --- :tools :opens...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=rnIEtvzgy18 --- :cars :aftermarket MONSTER niva --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgorhill\\u002fuBlock\\u002f --- :opensource :chrome-extensions uBlock efficient blocker for C...\"],[\"http:\\u002f\\u002fhubpages.com\\u002feducation\\u002fhow-to-describe-yourself --- How to Describe Yourself - 180 Words for ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhmason\\u002fgitmarks --- hmason\\u002fgitmarks - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.vogella.com\\u002ftutorials\\u002fAndroidListView\\u002farticle.html --- Android ListView - Tutorial --- 20...\"],[\"http:\\u002f\\u002fwww.homemadetools.net\\u002fbattery-pack-rebuild --- Battery Pack Rebuild --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.webmproject.org\\u002f --- The WebM Project | Welcome to the WebM Project --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ebay.com\\u002fsch\\u002fi.html?_nkw=robot+chassis --- robot chassis on ebay --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002futaustinx\\u002futaustinx-ut-6-01x-embedded-systems-1172 --- UTAustinX: UT.6.01...\"],[\"http:\\u002f\\u002fwww.symfony-project.org\\u002faskeet\\u002f1_0\\u002fen\\u002f24 --- The Askeet Tutorial | Day 24: What's next? | sym...\"],[\"http:\\u002f\\u002fvisual.ly\\u002fcable-buildup-and-breakdown --- If you think untangling shoelaces is complicated, i...\"],[\"http:\\u002f\\u002fwww.apexcctv.com\\u002fp-312-geovision-gv-600-6-camera-card-30-fps.aspx --- GV 600 6 - GV-600-6 - G...\"],[\"http:\\u002f\\u002fwww.cityofwpb.com\\u002f --- City of West Palm Beach --- 2017-05-12...\"],[\"https:\\u002f\\u002fdeepmind.com\\u002fblog\\u002fenabling-continual-learning-in-neural-networks\\u002f --- :machine-learning Enab...\"],[\"http:\\u002f\\u002fprintrbot.com\\u002fshop\\u002fprintrbot-simple\\u002f --- Simple Maker’s Kit | Printrbot --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.castleproject.org\\u002findex.html --- Home :: Castle Project --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.discordapp.com\\u002fhow-discord-indexes-billions-of-messages-e3d5e9be866f#.ialnrbbbf --- :el...\"],[\"http:\\u002f\\u002fwww.anandtech.com\\u002fshow\\u002f9770\\u002fbest-android-phones --- Best :Android Phones Q1 2017 --- 2017-05-...\"],[\"http:\\u002f\\u002ftrading-shim.org\\u002f --- :Trading shim :cpp :opensource --- 2017-05-12...\"],[\"http:\\u002f\\u002farchive.org\\u002fdownload\\u002ftailsepisode1\\u002f --- tailsepisode1 directory listing --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.sqlauthority.com\\u002f2010\\u002f08\\u002f22\\u002fsql-server-computed-columns-index-and-performance\\u002f --- SQL S...\"],[\"https:\\u002f\\u002fsrlabs.de\\u002frooting-sim-cards\\u002f --- srlabs.de --- 2017-05-12...\"],[\"https:\\u002f\\u002ftriplebyte.com\\u002f --- Triplebyte: Helping Engineers Find Great Startups --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffatihboy\\u002fRPI.GPIO --- :.net :nuget :Raspberry fatihboy\\u002fRPI.GPIO: Enterprisecoding...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbmorelli25\\u002fBecome-A-Full-Stack-Web-Developer\\u002f --- :moocs :webdev :books :free Bec...\"],[\"http:\\u002f\\u002fbooks.google.ca\\u002fbooks?id=MH3-T2jGFsEC&dq=new+GUID+in+f%23&hl=ru&source=gbs_navlinks_s --- fsh...\"],[\"https:\\u002f\\u002fxakep.ru\\u002f2013\\u002f11\\u002f23\\u002fvybiraem-kastomnoe-yadro-dlya-svoego-android-apparata\\u002f --- ВыбираÐ...\"],[\"http:\\u002f\\u002fwiki.linuxquestions.org\\u002fwiki\\u002fSet_up_a_router_to_access_the_internet --- connect to internet w...\"],[\"http:\\u002f\\u002fwww.scarydba.com\\u002f2009\\u002f04\\u002f30\\u002fdatabase-screening-questions\\u002f --- :sqlserver :interview Database ...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fhh708758.aspx --- Simulated Annealing and Testing to solve...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmadrobots\\u002fblog\\u002f286656\\u002f --- :robotics :kids BQ Zowi review --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3106034&R=3106034 --- Network security through...\"],[\"http:\\u002f\\u002furbansurvivalsite.com\\u002f7-unusual-home-security-tips-you-probably-didnt-know\\u002f --- A burglar who...\"],[\"https:\\u002f\\u002fwww.udacity.com\\u002fcourse\\u002fcs259 --- udacity - Software Debugging --- 2017-05-12...\"],[\"http:\\u002f\\u002ffusion.net\\u002fstory\\u002f238742\\u002ftor-carnegie-mellon-attack\\u002f --- The attack that broke the Dark Web—...\"],[\"http:\\u002f\\u002fwww.prismproof.org\\u002f --- :tools :cryptography :csharp The Mathematical Mesh --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wikihow.com\\u002fDevelop-an-Irrigation-Schedule-Using-Cropwat-8.0 --- How to Develop an Irriga...\"],[\"https:\\u002f\\u002fwww.losant.com\\u002f --- Losant :IoT Developer Platform --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.freescore.ca\\u002fOffers\\u002fPages\\u002fOfferPages\\u002fCAS\\u002fPAA\\u002fFCR\\u002f503\\u002findex.aspx?ID=4BDDBD911C3F38880DF36...\"],[\"http:\\u002f\\u002fwww.kali.org\\u002fofficial-documentation\\u002f --- Kali Linux Official Documentation | Kali Linux --- 2...\"],[\"http:\\u002f\\u002fwww.mapr.com\\u002f --- Apache Hadoop Distribution | MapR --- 2017-05-12...\"],[\"http:\\u002f\\u002fcoevery.codeplex.com\\u002f --- Coevery - Free CRM --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdatabase\\u002fSMS_message_from_SQL.aspx --- How to Send SMS Messages from C...\"],[\"http:\\u002f\\u002fwww.mapssystem.net\\u002fdefault.asp --- Welcome to MAPS - e-Marketplace Management System! --- 201...\"],[\"http:\\u002f\\u002fubuntuforums.org\\u002farchive\\u002findex.php\\u002ft-864566.html --- Java Tutorial: Global Keypress Capture (...\"],[\"http:\\u002f\\u002ffacebook.github.io\\u002fjest\\u002fdocs\\u002fgetting-started.html --- &quot;testing :reactjs :docs Jest --- 2...\"],[\"http:\\u002f\\u002fhowtodrillawell.com\\u002fgarden\\u002fchicken-feeder --- Build A Better Chicken Feeder\\u002fWaterer --- 2017-...\"],[\"http:\\u002f\\u002fwww.aopensource.com\\u002findex.php?more=356 --- AOpenSource.com Android Open Source Details: OCR T...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnode-girls\\u002fexpress-workshop --- :nodejs intro to :express workshop :tutorial ---...\"],[\"http:\\u002f\\u002fwww.codeguru.com\\u002fcsharp\\u002f.net\\u002fnet_data\\u002fsortinganditerating\\u002farticle.php\\u002fc15305 --- A Database D...\"],[\"http:\\u002f\\u002fwww.scoop.it\\u002ft\\u002famazing-science\\u002fp\\u002f4062193442\\u002f2016\\u002f04\\u002f05\\u002fmachines-are-becoming-more-creative-th...\"],[\"http:\\u002f\\u002faruljohn.com\\u002ffreeshell\\u002f --- Free Unix and Linux Shell Accounts : aruljohn.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fplugins.jquery.com\\u002fproject\\u002fcloudz --- image zoom --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbparmentier\\u002fOpenBikeSharing --- bparmentier\\u002fOpenBikeSharing · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-ca\\u002fmagazine\\u002fcc300767.aspx --- Personalize Your Portal with User Control...\"],[\"https:\\u002f\\u002fwww.rmetrics.org\\u002febooks --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fprotegewiki.stanford.edu\\u002fwiki\\u002fProtege4UserDocs --- Protege4UserDocs - Protege Wiki --- 2017-0...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fabhinaba\\u002farchive\\u002f2011\\u002f06\\u002f14\\u002fwp7-mango-the-new-generational-gc.aspx --- http:...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286658\\u002f --- :neural-nets :tutorial what can you do with it? --- 2017-05-12...\"],[\"http:\\u002f\\u002fnvlabs.github.io\\u002fmoderngpu\\u002ffaq.html#gettingstarted --- FAQ - Modern GPU --- 2017-05-12...\"],[\"http:\\u002f\\u002fcrypto.stanford.edu\\u002fcs294s\\u002fprojects\\u002fskype.html --- Stanford Projects - skype --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fhosting\\u002fsearch?q=.net&projectsearch=Search+Projects --- Google Code --- 2017-...\"],[\"http:\\u002f\\u002fwww.cryptoworkshop.com\\u002fximix\\u002fdoku.php --- start [The XIMIX Project] --- 2017-05-12...\"],[\"http:\\u002f\\u002fvisualstudiomagazine.com\\u002fcolumns\\u002farticle.aspx?editorialsid=2488 --- Visual Studio Magazine On...\"],[\"http:\\u002f\\u002fwww.dotnetcurry.com\\u002f --- Tutorials on Microsoft .NET and Web Technologies --- 2017-05-12...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f62502\\u002f --- AMQP --- 2017-05-12...\"],[\"http:\\u002f\\u002fwindowmaker.org\\u002fhome.php --- :linux :tools Window Maker -- Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.routerpwn.com\\u002f --- Routerpwn 1.13.195 --- 2017-05-12...\"],[\"https:\\u002f\\u002fgsuite-developers.googleblog.com\\u002f2017\\u002f03\\u002fbring-power-of-your-apps-into-gmail_9.html --- :goo...\"],[\"http:\\u002f\\u002fnerdvittles.com\\u002f?p=81 --- Nerd Vittles » 50 Great Halftime Projects Using Your Free Asterisk...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fsystem\\u002fboothelloworld.aspx --- CodeProject: Boot into your own Hello W...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=900660 --- SourceForge.net: News: PortableApps.com: ...\"],[\"http:\\u002f\\u002fwww.banggood.com\\u002fDIY-Mini-Bench-Table-Saw-Handmade-Woodworking-Model-Saw-With-Ruler-20mm-p-98...\"],[\"http:\\u002f\\u002fmaps.google.ca\\u002fmaps?hl=en&ie=UTF-8&q=presto+toronto&fb=1&split=1&gl=ca&dtab=3&ei=cQaMSoS7I5L2...\"],[\"http:\\u002f\\u002fvirtualrouterplus.codeplex.com\\u002f --- Virtual Router Plus - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.csploit.org\\u002f --- cSploit --- 2017-05-12...\"],[\"https:\\u002f\\u002ftraining.linuxfoundation.org\\u002fcourses\\u002fsearch --- Linux Course Schedule | Linux Foundation Tra...\"],[\"http:\\u002f\\u002fwww.iconcool.com\\u002f --- IconCool - Vista Icon Editor, Icon Maker, XP Icon Creator, Icon Library...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwhyisjake\\u002fBootstrap --- GitHub - whyisjake\\u002fBootstrap: The Bootstrap Book --- 2017...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms142583.aspx --- Full-Text Predicates and Functions Overvie...\"],[\"http:\\u002f\\u002fwww.brianbondy.com\\u002fblog\\u002fid\\u002f100\\u002funderstanding-windows-at-a-deeper-level-sessions-window-statio...\"],[\"http:\\u002f\\u002fwww.dreamgarden101.com\\u002fdiy-endless-onion-supply\\u002f --- DIY: Endless onion supply - How simple i...\"],[\"http:\\u002f\\u002fwww.moviemasher.com\\u002f --- Movie Masher: Free Open Source Online Video Editor --- 2017-05-12...\"],[\"http:\\u002f\\u002fandroidcontrol.blogspot.com\\u002f2016\\u002f05\\u002fesp8266-wifi-control-relay.html --- Android Arduino Contr...\"],[\"http:\\u002f\\u002ffitnessavenue.ca\\u002findex.php --- [ Fitness Avenue ] --- 2017-05-12...\"],[\"https:\\u002f\\u002fsecurity-onion-solutions.github.io\\u002fsecurity-onion\\u002f --- Security Onion Linux Distro --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdouglascraigschmidt\\u002fPOSA-14 --- douglascraigschmidt\\u002fPOSA-14 · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002fwww.interactivebrokers.com\\u002fibg\\u002fmain.php --- Online Trading - Interactive Brokers - Options Br...\"],[\"http:\\u002f\\u002fimgur.com\\u002fr\\u002fgifs\\u002foqjZTZW --- Suspension control arm stress - GIF on Imgur --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.linuxquestions.org\\u002fquestions\\u002flinux-newbie-8\\u002flearn-the-dd-command-362506\\u002f --- Learn the DD...\"],[\"https:\\u002f\\u002fmeetnotes.co\\u002fwriting-effective-meeting-notes\\u002f --- :english :business :guide for Writing Meet...\"],[\"http:\\u002f\\u002fblogs.microsoft.co.il\\u002fblogs\\u002fgilf\\u002farchive\\u002f2010\\u002f08\\u002f12\\u002fefprof-profiler-tool-for-entity-framework...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fgo-ethereum\\u002fwiki\\u002fMining --- Mining · ethereum\\u002fgo-ethereum Wiki · GitHu...\"],[\"http:\\u002f\\u002fwww.shtfpreparedness.com\\u002fgrey-water-why-its-so-important\\u002f --- Grey Water: What It Is and Why ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fentlib --- patterns & practices – Enterprise Library - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fsharptoolbox.com\\u002ftools\\u002feazfuscator-net --- Eazfuscator.NET @ SharpToolbox - .NET tools, compo...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fopen-guitar\\u002f --- open-guitar - Android guitar tuner app - Google Project H...\"],[\"http:\\u002f\\u002fwww.tutorialspoint.com\\u002fcompile_java_online.php --- Compile and Execute Java Online --- 2017-0...\"],[\"http:\\u002f\\u002fwww.costhelper.com\\u002fcost\\u002fhome-garden\\u002flead-paint-abatement.html --- Cost of Lead Paint Abatemen...\"],[\"http:\\u002f\\u002fcanadaam.ctvnews.ca\\u002fmaclean-s-50-most-important-people-in-canada-1.1553332 --- Maclean's: 50 ...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fmaps\\u002fdocumentation\\u002fservices.html#TravelModes --- Services - Google Maps ...\"],[\"http:\\u002f\\u002fwww.101waystosurvive.com\\u002fsurvail_tips\\u002fhow-to-make-a-simple-and-rugged-tandoori-oven\\u002f --- How ...\"],[\"http:\\u002f\\u002fwww.sitepoint.com\\u002farticle\\u002ffancy-form-design-css\\u002f --- Fancy Form Design Using CSS [CSS Tutoria...\"],[\"http:\\u002f\\u002fca.zapmeta.com\\u002f --- Zapmeta meta-search engine, multiple search engines under one interface -...\"],[\"https:\\u002f\\u002fwww.haskell.org\\u002fcabal\\u002f --- :Haskell Cabal --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb735853(v=VS.85).aspx --- Creating Add-ons for Internet Exp...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fpodder1.aspx --- CodeProject: The WPF Podcatcher Series - Part 1 (...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fsharepoint\\u002ftemplates.mspx --- Templates for Microsoft SharePoint Products a...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fAspNetMvcAndEFSample --- ASP.NET MVC Sample over Northwind with Entit...\"],[\"http:\\u002f\\u002fwww.obdtester.com\\u002fdownloads --- pyOBD - car diagnostic software --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.earth4energy.com\\u002f --- Earth4Energy.com - make solar panel and make wind turbine --- 2017-...\"],[\"http:\\u002f\\u002fwww.springerlink.com\\u002f --- Welcome to SpringerLink --- 2017-05-12...\"],[\"http:\\u002f\\u002fgradle.org\\u002f --- Gradle - Build Automation Evolved --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002f0vercl0k\\u002fstuffz --- 0vercl0k\\u002fstuffz · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.stat.cmu.edu\\u002f~larry\\u002fall-of-statistics\\u002f --- :r-project :books All of :Statistics --- 2017-...\"],[\"http:\\u002f\\u002fblog.thekid.me.uk\\u002farchive\\u002f2007\\u002f07\\u002f25\\u002fdebugging-tips-for-sharepoint-and-wss-exceptions.aspx --...\"],[\"http:\\u002f\\u002fwww.rs232pro.com\\u002fkeypad_hardware.htm --- keypad design source code --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmdeinum\\u002fpro-spring-mvc-code --- mdeinum\\u002fpro-spring-mvc-code · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2009\\u002f09\\u002f15\\u002fauto-start-asp-net-applications-vs-2010-and-net-4-...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2015\\u002f04\\u002f19\\u002fbmw-mini-ar-driving-glasses\\u002f?utm_cid=mash-com-pin-link --- BMW's augm...\"],[\"https:\\u002f\\u002fblogs.technet.microsoft.com\\u002fdataplatforminsider\\u002f2017\\u002f01\\u002f05\\u002fhow-six-lines-of-code-sql-server-...\"],[\"http:\\u002f\\u002fwww.jalopyjournal.com\\u002fforum\\u002fthreads\\u002fpedal-car-stroller-suggestions.367639\\u002fpage-5 --- Go kart ...\"],[\"http:\\u002f\\u002fwww.scampers.org\\u002fsteve\\u002fsms\\u002fsamples.htm --- SMS source samples (for GSM phones) --- 2017-05-12...\"],[\"http:\\u002f\\u002ftools.ietf.org\\u002fsearch\\u002frfc768 --- RFC 768 - User Datagram Protocol --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fDIY-Spot-Welder\\u002f --- DIY Spot Welder --- 2017-05-12...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f208644\\u002f --- :Chrome-extension :weekend-project :russian :knockout.js :type...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fvideoder\\u002f --- Videoder download | SourceForge.net --- 2017-05-12...\"],[\"http:\\u002f\\u002fcrypto.stanford.edu\\u002fcs294s\\u002f --- Stanford Crypto course research projects --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fBeginWPF5.aspx --- CodeProject: WPF: A Beginner's Guide - Part 5 o...\"],[\"http:\\u002f\\u002fvirtualboximages.tradepub.com\\u002ffree-offer\\u002f3d-game-programming-for-kids-create-interactive-worl...\"],[\"http:\\u002f\\u002fwww.jide.com\\u002fen\\u002fremixos-for-pc --- What’s Remix OS for PC? Remix OS for PC is built on the ...\"],[\"https:\\u002f\\u002fmva.microsoft.com\\u002fen-US\\u002ftraining-courses\\u002fintermediate-asp-net-core-1-0-16964?l=Kvl35KmJD_430...\"],[\"http:\\u002f\\u002fthenextweb.com\\u002fshareables\\u002f2012\\u002f11\\u002f07\\u002fforget-apps-and-other-useless-startups-these-four-africa...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3044632&R=3044632 --- Vagrant up and running :...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmedgadgets\\u002fblog\\u002f287524\\u002f --- :virtual-reality VR glasses review --- 2017...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSelf-Driving-Vehicle\\u002fCANBUS-Hack --- :car :security CANBUS-Hack -- Code from Chri...\"],[\"https:\\u002f\\u002fshare.coursera.org\\u002fwiki\\u002findex.php\\u002fML:Useful_Resources --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=ru.mail.love&link_id=31108 --- Mail.Ru Dating - Androi...\"],[\"http:\\u002f\\u002fhome.howstuffworks.com\\u002fhome-improvement\\u002frepair\\u002fhow-to-repair-small-engines2.htm --- How to Re...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=com.tassadar.multirommgr&hl=ru --- MultiROM Manager - ...\"],[\"http:\\u002f\\u002fwpf.codeplex.com\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=22567 --- Windows Presentation Founda...\"],[\"https:\\u002f\\u002fstripe.com\\u002fca --- Stripe Payments --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.extremestartups.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fpythonbooks.revolunet.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.bgmicro.com\\u002f --- BGMicro Electronics - Parts, Kits, Projects, Surplus, DIY, Hobby --- 201...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdotnet\\u002fDotnetInternals_Injection.aspx --- .NET Internals and Code Inje...\"],[\"http:\\u002f\\u002fwww.societyofrobots.com\\u002frobot_omni_wheel.shtml --- How to Build a Robot Tutorial - Society of...\"],[\"http:\\u002f\\u002fforums.asterisk.org\\u002fviewtopic.php?f=29&t=83061#p174619 --- switchvox .net api --- 2017-05-12...\"],[\"http:\\u002f\\u002funpaywall.org\\u002f --- Unpaywall :chrome-extensions --- 2017-05-12...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fudacity-for-iphone-and-ipad-gives-you-free-online-cours-1567343562?utm_campaig...\"],[\"https:\\u002f\\u002fgithub.com\\u002fearldouglas\\u002fxsbt-web-plugin --- GitHub - earldouglas\\u002fxsbt-web-plugin: Build J2EE ...\"],[\"https:\\u002f\\u002fpassword-hashing.net\\u002f --- Password Hashing Competition --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2015\\u002f07\\u002f16\\u002fhow-to-treat-an-open-wound\\u002f --- How to Treat an Open Wound | Medi...\"],[\"http:\\u002f\\u002fwww.environmentalhealthnews.org\\u002fehs\\u002fnewscience\\u002fplastics-from-atmospheric-carbon-dioxide\\u002f --- ...\"],[\"http:\\u002f\\u002fcareers.mcmaster.ca\\u002ftools\\u002ffyi\\u002fonline-canadian-university-course-calendars-ontario-1\\u002fview --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhzeller\\u002ftimg --- :tools :linux A terminal image viewer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tkmtacademy.com\\u002f --- Toronto Kickboxing & Muay Thai (TKMT) Academy Inc. --- 2017-05-12...\"],[\"http:\\u002f\\u002fdocs.spring.io\\u002fspring\\u002fdocs\\u002fcurrent\\u002fspring-framework-reference\\u002fhtml\\u002fmvc.html --- 17. Web MVC ...\"],[\"http:\\u002f\\u002fwpflocalization.codeplex.com\\u002f --- WPF Localization Guidance - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fglobaleaks\\u002fAPAF\\u002fblob\\u002fmaster\\u002fspec.txt --- globaleaks\\u002fAPAF · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb397915.aspx --- LINQ and Strings --- 2017-05-12...\"],[\"http:\\u002f\\u002funity3d.com\\u002funity --- UNITY: Overview --- 2017-05-12...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14039135 --- :business side project that makes money. Where to ...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002ftop-10-bee-propolis-healing-benefits\\u002f --- Top 10 Bee Propolis Healing Benefi...\"],[\"http:\\u002f\\u002fwww.metabuilders.com\\u002fTools\\u002fUpDown.aspx --- MetaBuilders - Web Tools --- 2017-05-12...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fjan\\u002farchive\\u002f2009\\u002f04\\u002f10\\u002fcreating-list-items-with-jquery-and-the-sharepoint-web...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fjava\\u002futil\\u002fconcurrent\\u002flocks\\u002fAbstractQueuedSynchronizer.html --...\"],[\"http:\\u002f\\u002fresearch.microsoft.com\\u002fos\\u002fsingularity\\u002f --- Microsoft Research Singularity Project --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcure53\\u002fH5SC --- cure53\\u002fH5SC · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fonline-tech-training.com\\u002fgb\\u002frt_v14\\u002f?gclid=CMeL1efYob0CFSsKwwodPgoAvQ --- Robotics Training @ ...\"],[\"http:\\u002f\\u002fnacl.cr.yp.to\\u002f --- NaCl: Networking and Cryptography library --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fsamples\\u002findex.html --- Samples | Android Developers --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002frfxn\\u002flinux-malware-detect --- rfxn\\u002flinux-malware-detect · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fjulialang.org\\u002fblog\\u002f2017\\u002f03\\u002fpiday --- :machine-learning Some fun with Ï€ in :Julia --- 2017-05...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=SGJ5cZnoodY --- :movies Shenzhen The Silicon Valley of :Hardware (Fu...\"],[\"http:\\u002f\\u002folx.kz\\u002fobyavlenie\\u002fgazobloki-gazobeton-vodostoykie-f200-tsiklov-ID4WIEl.html --- Архив: Ð...\"],[\"https:\\u002f\\u002fforum.ethereum.org\\u002fdiscussion\\u002f40\\u002fzerocoin --- Zerocoin - Ethereum --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285412\\u002f --- :webdesign tablet for graphic designer --- 2017-05-12...\"],[\"http:\\u002f\\u002fvisualstudiogallery.com\\u002fExtensionDetails.aspx?ExtensionID=0b406dae-bf74-4c4b-b6eb-ff451b2eb1e...\"],[\"http:\\u002f\\u002fwww.linuxquestions.org\\u002fquestions\\u002flinux-hardware-18\\u002fold-usb-storage-device-can-i-get-it-to-wor...\"],[\"http:\\u002f\\u002fdocs.scala-lang.org\\u002fglossary\\u002f --- Glossary - Scala Documentation --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.blogfodder.co.uk\\u002fpost\\u002f2008\\u002f07\\u002fList-Of-Free--Open-Source-ASPNET-Web-Applications.aspx --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbdcht\\u002famoco --- bdcht\\u002famoco · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMarioVilas\\u002fwinappdbg --- WinAppDbg Debugger --- 2017-05-12...\"],[\"http:\\u002f\\u002fjoelhooks.com\\u002fblog\\u002f2013\\u002f04\\u002f24\\u002fmodeling-data-and-state-in-your-angularjs-application\\u002f --- Mode...\"],[\"http:\\u002f\\u002feng-jaeger.blogspot.ca\\u002f2012\\u002f05\\u002fadaptive-huffman-coding.html --- JAEGER: Adaptive Huffman Codi...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fuser\\u002frdpeng\\u002fvideos?flow=grid&view=1 --- Roger Peng - YouTube --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.werd.com\\u002f34752\\u002ftimblerleaf-trailer\\u002f --- Timblerleaf Trailer - The appeal of the teardrop ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSpacecow99\\u002fJust-Metadata --- Spacecow99\\u002fJust-Metadata · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.parallax.com\\u002fproduct\\u002f28015 --- Ultrasonic Distance Sensor | Parallax Inc --- 2017-05-12...\"],[\"http:\\u002f\\u002fsee.stanford.edu\\u002fmaterials\\u002flsoftaee261\\u002fbook-fall-07.pdf --- The Fourier Transform and its App...\"],[\"http:\\u002f\\u002foreilly.com\\u002fdata\\u002ftry-r\\u002fthanks.html --- Thanks for Trying R: Free Data Resources - O'Reilly Me...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fzaproxy\\u002f?source=recommended --- OWASP Zed Attack Proxy | Free Securi...\"],[\"http:\\u002f\\u002fwww.stanford.edu\\u002fclass\\u002fee364a\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdn600223.aspx --- Cloud Design Patterns | MSDN --- 2017-05-...\"],[\"http:\\u002f\\u002fneuralcryptography.codeplex.com\\u002freleases\\u002fview\\u002f43502 --- Neural Cryptography in F# --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjkingsman\\u002fbishop --- jkingsman\\u002fbishop · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fweb\\u002fspotlight\\u002fseo.aspx --- Free SEO Toolkit --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flambdaisland\\u002furi --- pure :Clojure :ClojureScript URI library --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002fviews\\u002fjava\\u002fprojects.jsp?sort_by=&show_abstract=true&show_all=&sear...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fericlippert\\u002farchive\\u002f2010\\u002f06\\u002f28\\u002fcomputing-a-cartesian-product-with-linq.aspx ...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fPersonal-Mushroom-Farm\\u002f --- Personal Mushroom Farm --- 2017-05-12...\"],[\"http:\\u002f\\u002flearnyouahaskell.com\\u002f --- :tutorial Learn You a :Haskell for Great Good! --- 2017-05-12...\"],[\"http:\\u002f\\u002focw.mit.edu\\u002fcourses\\u002felectrical-engineering-and-computer-science\\u002f6-828-operating-system-engine...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fcpualert\\u002f --- cpualert - Project Hosting on Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fiSECPartners\\u002fDIBF --- iSECPartners\\u002fDIBF · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.proteinhouse.kz\\u002f --- Спортивное питание :: proteinhouse.kz --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhellonoam\\u002fCryptoPad --- hellonoam\\u002fCryptoPad · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=17630 --- Разработка программного обÐ...\"],[\"http:\\u002f\\u002fwww.readwriteweb.com\\u002farchives\\u002frethinking_recommendation_engines.php --- Rethinking Recommenda...\"],[\"http:\\u002f\\u002fprocessing.kz\\u002fru\\u002f --- Processing.kz :: payment gateway in KZ --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fminhtuev\\u002fAUTONAVx --- :robotics :edx :drones minhtuev\\u002fAUTONAVx: TUMx: AUTONAVx Au...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcommonsguy\\u002fcwac-camera --- commonsguy\\u002fcwac-camera · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fpansop.com\\u002f1019\\u002f --- Common Python Gotchas and Pitfalls --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.itshop.ru\\u002fVisual-Studio-2008-Win32-Wizard-MOD\\u002fl9i23089 --- Visual Studio 2008 Win32 Wizar...\"],[\"http:\\u002f\\u002fwww.offroadfabnet.com\\u002fforums\\u002fshowthread.php?t=10138 --- 4 Link Radio Flyer Wagon - OFN Forums...\"],[\"http:\\u002f\\u002fcrmaudit.codeplex.com\\u002f --- Microsoft Dynamics CRM 4.0 Audit Plugin --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nirma.org\\u002f_layouts\\u002fhelp.aspx?lcid=1033&cid0=MS.WSS.manifest&tid=MS.WSS.HA10092914 --- Win...\"],[\"https:\\u002f\\u002fhelp.ubuntu.com\\u002fcommunity\\u002fClamAV --- ClamAV - Community Ubuntu Documentation --- 2017-05-12...\"],[\"http:\\u002f\\u002ffunscript.info\\u002f --- :javascript :Fsharp :BABEL :compiler with type providers --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsevents.microsoft.com\\u002fCUI\\u002fWebCastRegistrationConfirmation.aspx?culture=en-CA&RegistrationID...\"],[\"https:\\u002f\\u002fblog.xamarin.com\\u002fthe-top-12-xamarin-blog-posts-of-2016\\u002f --- :blogs :xamarin The Top 12 Xamar...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSocialHarvest\\u002fharvester --- SocialHarvest\\u002fharvester · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.algosort.com\\u002f --- Computer Programming Algorithms Directory --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.iacr.org\\u002farchive\\u002fcrypto2000\\u002f18800021\\u002f18800021.pdf --- chosen cipher text attack against n...\"],[\"https:\\u002f\\u002fwww.infoq.com\\u002farticles\\u002fPatterns-Practices-CSharp-7?utm_source=csharpdigest&utm_medium=email&...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdgageot\\u002fnetflix --- :Docker based Netflix :proxy --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.fix.com\\u002fblog\\u002findoor-edible-plants\\u002f?crlt.pid=camp.i2deY6UqhWaC --- Indoor EDIBLE plants th...\"],[\"http:\\u002f\\u002fwww.leptonica.org\\u002f --- http:\\u002f\\u002fwww.leptonica.org\\u002f --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.scoop.it\\u002ft\\u002famazing-science\\u002fp\\u002f4001243586\\u002f2013\\u002f05\\u002f08\\u002fbioteeth-from-stemcells-will-regrow-co...\"],[\"https:\\u002f\\u002fgithub.com\\u002fptwobrussell\\u002fMining-the-Social-Web-2nd-Edition --- ptwobrussell\\u002fMining-the-Social...\"],[\"http:\\u002f\\u002fwww.higherbracket.ca\\u002farticle_5_keys_resume_profile_sg.php --- Article, Five Keys to Creating ...\"],[\"https:\\u002f\\u002ferlach.co\\u002ffp\\u002f6h9 --- :FRP :javascript REACT-LIKE RICH (SPA) OFFLINE framework – Erlach ---...\"],[\"http:\\u002f\\u002fwww.acceleratedcpp.com\\u002f --- Accelerated C++ --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.zdnet.com\\u002farticle\\u002f20-dollar-coin-sized-open-source-linux-computer\\u002f --- Looking for a smal...\"],[\"http:\\u002f\\u002fwww.nirsoft.net\\u002futils\\u002finternet_explorer_password.html --- IE PassView - Password Manager Prog...\"],[\"https:\\u002f\\u002fwww.spreedly.com\\u002f --- :ecommmerce Spreedly -- payment forwarding --- 2017-05-12...\"],[\"http:\\u002f\\u002fhackaday.com\\u002f2009\\u002f06\\u002f23\\u002fhow-to-build-your-own-spot-welder\\u002f --- How-to: Build your own spot we...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstefanwichmann\\u002fkelvin --- :raspberrypi :smarthome The hue :bot --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fEwenG\\u002fmuance --- muance virtual dom library for :Clojurescript --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fpfxteam\\u002f --- .NET Parallel Programming - Site Home - MSDN Blogs --- 2017-05-...\"],[\"http:\\u002f\\u002fmisfitgeek.com\\u002fblog\\u002faspnet\\u002ffirst-3-videos-ndash-building-tailspin-spyworks\\u002f --- First 3 Video...\"],[\"https:\\u002f\\u002fcitizenlab.org\\u002f2015\\u002f03\\u002fhacking-team-reloaded-us-based-ethiopian-journalists-targeted-spyware...\"],[\"https:\\u002f\\u002fmakebitcoingreatagain.wordpress.com\\u002f2017\\u002f02\\u002f18\\u002fis-the-zcoin-bug-in-checktransaction\\u002f#update6...\"],[\"https:\\u002f\\u002fgithub.com\\u002fChainsDD --- ChainsDD's Profile - GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fruedigergad\\u002fclj-net-pcap --- :SECURITY clj-net-pcap packet sniffing in :Clojure -...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmcpp\\u002fManagedUxTheme.aspx --- CodeProject: A Managed C++ Wrapper Around...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002ftagged\\u002fneo4j --- 'neo4j' Questions - Stack Overflow --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002fblogs\\u002fmultidimensionalmayhem\\u002f2013\\u002f01\\u002f04\\u002fa-rickety-stairway-to-sql-se...\"],[\"https:\\u002f\\u002fwww.mozillascience.org\\u002fprojects\\u002fresourceminer --- ResourceMiner | Mozilla Science Lab --- 20...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3000910&R=3000910 --- The power formula for Li...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSlow_sand_filter --- Slow sand filter - Wikipedia, the free encycloped...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmiscctrl\\u002fXPTaskBar.aspx --- CodeProject: Themed Windows XP style Explo...\"],[\"http:\\u002f\\u002fsilviomoreto.github.io\\u002fbootstrap-select\\u002f --- Bootstrap-select :: A custom select for bootstra...\"],[\"http:\\u002f\\u002fwww.voipmonitor.org\\u002f --- VoIPmonitor - VoIP monitoring software - quality analyzer - WAV reco...\"],[\"http:\\u002f\\u002fthyroid-conditions.knoji.com\\u002facupressure-therapy-for-thyroid-disorders\\u002f --- Acupressure Thera...\"],[\"https:\\u002f\\u002fblogs.msdn.microsoft.com\\u002fdotnet\\u002f2017\\u002f03\\u002f07\\u002fannouncing-net-core-tools-1-0\\u002f --- :Tools :.NET C...\"],[\"http:\\u002f\\u002frdatamining.wordpress.com\\u002f --- Blog.RDataMining.com | R and Data Mining --- 2017-05-12...\"],[\"http:\\u002f\\u002fjrsinclair.com\\u002fcategorisation-research\\u002f --- :text-mining Categorisation Research, tagging, fo...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fVariance --- Variance - Wikipedia, the free encyclopedia --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002frifidi\\u002f --- SourceForge.net: Rifidi - Software Defined RFID --- 2017...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntk=Subject_Search_Interface&Ntt=Scala+%28Comp...\"],[\"http:\\u002f\\u002fwww.dotliquidmarkup.org\\u002f --- Welcome to DotLiquid, a safe templating system for .net --- 2017...\"],[\"http:\\u002f\\u002fdiydrones.com\\u002fprofiles\\u002fblogs\\u002fpixhawk-infographic --- Pixhawk Infographic: Anatomy of a Pixhaw...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fvertdider\\u002fblog\\u002f283580\\u002f --- :education :harvard :moocs CS50 Intro to Com...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fdocl4amss\\u002fwiki\\u002fOkL4 --- OKL4 kernel --- 2017-05-12...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=com.comcepta.etools --- eTools Private Search - Androi...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fpywin32\\u002f --- SourceForge.net: Python for Windows extensions --- 2017...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fHSAUR\\u002fvignettes\\u002f --- A Handbook of Statistical Analyses Using...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthurday\\u002fcuckoo --- thurday\\u002fcuckoo · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.linqpad.net\\u002f --- Download LINQPad --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjakubnabrdalik\\u002fspring-security-starter --- jakubnabrdalik\\u002fspring-security-starter...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285868\\u002f --- :signal-processing wireless communication explained --- 2017-0...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002ffavorite-website-spying\\u002f --- :privacy Is Your Favorite Website Spyin...\"],[\"https:\\u002f\\u002fhackaday.io\\u002fproject\\u002f6958-dolpi-raspi-polarization-camera --- DOLPi - RasPi Polarization Came...\"],[\"http:\\u002f\\u002fwww.microsoftstartupzone.com\\u002fBizSpark\\u002fPages\\u002fAt_a_Glance.aspx --- free tools --- 2017-05-12...\"],[\"http:\\u002f\\u002fbrson.github.io\\u002f2017\\u002f04\\u002f05\\u002fminimally-nice-maintainer --- :soft-skills The Minimally-nice :Ope...\"],[\"http:\\u002f\\u002fcsapp.cs.cmu.edu\\u002fpublic\\u002fcode.html --- CS:APP Code Examples - Computer Systems: A Programmer's...\"],[\"https:\\u002f\\u002fblog.jscrambler.com\\u002fjscrambler-101-first-use\\u002f --- :security :javascript Jscrambler 101 --- 2...\"],[\"http:\\u002f\\u002fwww.startupbook.net\\u002f --- :Startup :Books Start Small, Stay Small: A Developer&#39;s :Guide to...\"],[\"http:\\u002f\\u002fpharmprice.kz\\u002fannotations\\u002ftravopassit\\u002f --- Травопассит cироп cо вкусом ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkorczis\\u002fbooks --- korczis\\u002fbooks · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmidnitesnake\\u002fUSB-Rubber-Ducky --- midnitesnake\\u002fUSB-Rubber-Ducky · GitHub --- 201...\"],[\"https:\\u002f\\u002fopensource.googleblog.com\\u002f2017\\u002f05\\u002foss-fuzz-five-months-later-and.html --- :security :tools O...\"],[\"http:\\u002f\\u002fd3js.org\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fcryptome.org\\u002f --- Cryptome Archive of 84,700 files --- 2017-05-12...\"],[\"http:\\u002f\\u002faddons.maxthon.com\\u002fpost\\u002fsearch?type=&q=videodownloader --- Maxthon Add-ons --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgautamkrishnar\\u002fsocli --- :python socli :Stackoverflow command line client. Search...\"],[\"http:\\u002f\\u002fwww.opennn.net\\u002f --- :cuda :cpp OpenNN | Open :Neural-Networks Library --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fandreis\\u002finterview --- :interview :job-search Everything you need to kick ass on y...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fstoryboarddesigner --- Storyboard Designer - A Visual Studio Shell applicati...\"],[\"https:\\u002f\\u002ftwitter.github.io\\u002fscala_school\\u002findex.html --- Scala School --- 2017-05-12...\"],[\"http:\\u002f\\u002fcodedigging.com\\u002f2014\\u002f01\\u002fhow-to-build-android-apktool-2-00-beta-from-sources\\u002f --- How to build...\"],[\"https:\\u002f\\u002fvimeo.com\\u002f116209150 --- :Reactjs :CSS in your JS by Christopher Chedeau --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.primaryobjects.com\\u002f2017\\u002f03\\u002f28\\u002fpreparing-for-a-technical-interview-algorithms-data-structu...\"],[\"https:\\u002f\\u002fwww.ncbi.nlm.nih.gov\\u002fpmc\\u002farticles\\u002fPMC4598940\\u002f --- :biotech :Opensource and :DIY hardware for...\"],[\"http:\\u002f\\u002fwww.brokenthorn.com\\u002fResources\\u002fOSDev0.html --- Operating Systems Development Series --- 2017-0...\"],[\"http:\\u002f\\u002fforum.arduino.cc\\u002findex.php\\u002ftopic,149832.0.html --- ARDUINO HOME SECURTY AND AUTOMATION PROJEC...\"],[\"http:\\u002f\\u002fwww.r-project.org\\u002f --- The R Project for Statistical Computing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.vmware.com\\u002fappliances\\u002fdirectory\\u002f48 --- AAH, Now TrixBox, Asterisk Virtual Machine | Virtu...\"],[\"http:\\u002f\\u002fwww.tufat.com\\u002fdocs\\u002fosdate\\u002f --- http:\\u002f\\u002fwww.tufat.com\\u002fdocs\\u002fosdate\\u002f --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.marketfox.io\\u002f --- Marketfox | Next Gen :Marketing :tools --- 2017-05-12...\"],[\"http:\\u002f\\u002fthemetapicture.com\\u002fthe-credit-card-code\\u002f --- The credit card code… --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.continuum.io\\u002fwebinars --- Webinars | Anaconda --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2014\\u002f03\\u002f24\\u002f7-really-badass-weapons\\u002f --- Pipe Gun | This is another classic h...\"],[\"http:\\u002f\\u002fwww.mchange.com\\u002fprojects\\u002fc3p0\\u002findex.html --- c3p0-v0.9.5-pre6 - JDBC3 Connection and Statemen...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcryptodotis\\u002fcrypto.is-docs\\u002fblob\\u002fmaster\\u002fmd\\u002fdocs\\u002freading.md --- crypto.is-docs\\u002fread...\"],[\"http:\\u002f\\u002fjasypt.org\\u002f --- Jasypt: Java simplified encryption --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fcomm-foreword.html --- Foreword for Design Patterns in Commun...\"],[\"http:\\u002f\\u002fblog.udacity.com\\u002f2012\\u002f05\\u002fstart-off-on-right-foot-5-tips-for.html --- Udacity: 5 study tips fo...\"],[\"http:\\u002f\\u002fwww.otherpower.com\\u002fpmg2.html --- Wooden Alternator | Otherpower ... DIY: wooden alternator (s...\"],[\"https:\\u002f\\u002fwww.tiobe.com\\u002ftiobe-index\\u002f --- :job-search top 20 programming languages --- 2017-05-12...\"],[\"http:\\u002f\\u002fnokogiri.org\\u002f --- Nokogiri --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogle\\u002fguava --- google guava -- Google Core Libraries for :Java --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ncbi.nlm.nih.gov\\u002fpmc\\u002farticles\\u002fPMC3885826\\u002f?imm_mid=0c2ba6&cmp=em-strata-na-na-newsltr_2014...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdid=com.vanderbie.heart_rate_monitor --- F-Droid :: heart ra...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fIP\\u002fdotnetwinpcap.aspx --- CodeProject: Packet Sniffing with Winpcap Fu...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fCamping-Trailers-for-Your-Next-Adventure\\u002f --- DIY Micro Camper --- 2...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?client=opera&q=tribler&sourceid=opera&ie=UTF-8&oe=UTF-8#q=site:forum.bt...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?displaylang=en&FamilyID=85fc3a02-5b38-4271-b590-ad91...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fdroidbox\\u002f --- droidbox - Android Application Sandbox - Google Project Host...\"],[\"https:\\u002f\\u002fdukgo.com\\u002fblog\\u002fusing-pidgin-with-xmpp-jabber --- dukgo.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fcommunity.livejournal.com\\u002ftoronto_ru\\u002f909629.html#cutid1 --- toronto_ru: Кто хочет дÐ...\"],[\"http:\\u002f\\u002fwww.linuxvoice.com\\u002fbe-a-kernel-hacker\\u002f --- Be a kernel hacker | Linux Voice --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cve.mitre.org\\u002fcgi-bin\\u002fcvename.cgi?name=CVE-2010-3856 --- :CVE-2010-3856 :security :exploi...\"],[\"https:\\u002f\\u002fyarnpkg.com\\u002fen\\u002fdocs --- :docs :javascript :tools Yarn package manager --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.glesys.com\\u002fvps.php --- VPS (Virtual Private Server) - GleSYS --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.engadget.com\\u002f2009\\u002f04\\u002f24\\u002fmyvu-crystal-review\\u002f --- Myvu Crystal review --- 2017-05-12...\"],[\"http:\\u002f\\u002ftrec.nist.gov\\u002f --- Text REtrieval Conference (TREC) Home Page --- 2017-05-12...\"],[\"http:\\u002f\\u002fneedlehr.com\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.usenix.org\\u002flegacy\\u002fevent\\u002fsec11\\u002ftech\\u002ffull_papers\\u002fCaballero.pdf --- Measuring Pay-per-Insta...\"],[\"https:\\u002f\\u002fgithub.com\\u002flinkalis\\u002fshiny-qualitativesurveytool --- :shiny :r-project :tools qualitative ana...\"],[\"http:\\u002f\\u002fengineering.curiouscatblog.net\\u002f2012\\u002f11\\u002f22\\u002fsolar-powered-water-jug-to-purify-drinking-water\\u002f -...\"],[\"http:\\u002f\\u002fposa1.blogspot.ca\\u002f2008\\u002f05\\u002flayered-architecture-pattern.html --- POSA1: Layered Architecture P...\"],[\"http:\\u002f\\u002fwww.greywyvern.com\\u002fcode\\u002fmin-height-hack --- Prop-Clear: CSS min-height hack --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.lexxe.com\\u002f --- Lexxe Search Engine --- 2017-05-12...\"],[\"http:\\u002f\\u002fchoosebeststuff.blogspot.com\\u002f2015\\u002f05\\u002fgreat-garden-ideas.html --- Free solar lights for the ga...\"],[\"http:\\u002f\\u002fwww.earlytorise.com\\u002fissues\\u002fchannels\\u002ftt-fat-loss\\u002f --- TT Fat Loss Archives - Metabolics Resist...\"],[\"http:\\u002f\\u002fwww.scribd.com\\u002fdoc\\u002f46022718\\u002fCDMA-Principles-of-Spread-Spectrum-Communication --- scribd book ...\"],[\"http:\\u002f\\u002factionbarsherlock.com\\u002f --- ActionBarSherlock - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.technologyreview.com\\u002fnews\\u002f530751\\u002fmotorized-pants-to-help-soldiers-and-stroke-victims\\u002f ---...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002frashid\\u002farchive\\u002f2009\\u002f03\\u002f05\\u002fuse-event-aggregator-to-make-your-application-more-...\"],[\"http:\\u002f\\u002fosherove.com\\u002ftools --- Tools - Roy Osherove - Team Leadership, Agile Development & .NET - Spe...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fos\\u002fMessenger.html --- Messenger | Android Developers ...\"],[\"http:\\u002f\\u002fgo-lang.cat-v.org\\u002fgo-code --- Go Programs and Apps --- 2017-05-12...\"],[\"https:\\u002f\\u002ffacebook.github.io\\u002fyoga\\u002f --- YOGA cross platform layout engine --- 2017-05-12...\"],[\"http:\\u002f\\u002fdedexer.sourceforge.net\\u002f --- Dedexer user's manual --- 2017-05-12...\"],[\"http:\\u002f\\u002freg.fring.com\\u002fpartners\\u002fsteps\\u002fstep1.php --- fring - SIP self service registration --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhfiref0x\\u002fCVE-2015-1701 --- hfiref0x\\u002fCVE-2015-1701 · Win32k Elevation of Privileg...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fDeepZoomSeadragonSilverlight2MultiScaleImagesAtMix.aspx --- Scott Hans...\"],[\"https:\\u002f\\u002ftazdrumm3r.wordpress.com\\u002f --- DFIR\\u002fMalware Analysis\\u002fThreat Analysis after dark | Security En...\"],[\"http:\\u002f\\u002fwww.ssc.wisc.edu\\u002f~bhansen\\u002fprogs\\u002fprogs_subject.htm --- Bruce E. Hansen's Programs and Data ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fericdouglas\\u002fES6-Learning --- ericdouglas\\u002fES6-Learning --- 2017-05-12...\"],[\"http:\\u002f\\u002fshiny.rstudio.com\\u002f --- Shiny web framework for R --- 2017-05-12...\"],[\"http:\\u002f\\u002fnorthernhomestead.com\\u002fhow-to-build-a-geodome-greenhouse\\u002f --- GeoDome Greenhouse --- 2017-05-1...\"],[\"https:\\u002f\\u002farchive.org\\u002fdetails\\u002fopensecuritytraining --- OpenSecurityTraining.info : Free --- 2017-05-12...\"],[\"https:\\u002f\\u002freact.rocks\\u002fexample\\u002fillustrated-algorithms --- :ReactJS :Examples illustrated-algorithms ---...\"],[\"http:\\u002f\\u002fdeveloper.yahoo.com\\u002fblogs\\u002fydn\\u002fposts\\u002f2006\\u002f08\\u002fintroducing_the\\u002f --- Introducing the Python Devel...\"],[\"https:\\u002f\\u002fwww.djangoproject.com\\u002f --- The Web framework for perfectionists with deadlines | Django --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fshadowsocks\\u002fshadowsocks --- shadowsocks\\u002fshadowsocks · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dotnetnuke.com\\u002fCommunity\\u002fBlogs\\u002ftabid\\u002f825\\u002fEntryId\\u002f1410\\u002fDotNetNuke-4-5-and-ASP-NET-AJAX.asp...\"],[\"https:\\u002f\\u002fgithub.com\\u002furule99\\u002fjsunpack-n --- urule99\\u002fjsunpack-n · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.smashwords.com\\u002fextreader\\u002fread\\u002f437665\\u002f1\\u002fdiy-3d-printer-filament-extrusion-made-easy-build...\"],[\"http:\\u002f\\u002fbundler.io\\u002f --- Bundler: The best way to manage a Ruby application's gems --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.csie.ntu.edu.tw\\u002f~cjlin\\u002flibsvmtools\\u002f --- LIBSVM Tools --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.eko-deti.kz\\u002f#!our-services\\u002fcee5 --- Эко Центр Академии Здоровья -...\"],[\"http:\\u002f\\u002fblog.knoldus.com\\u002f2013\\u002f05\\u002f13\\u002fintegrating-scala-code-coverage-tool-scct-in-play-scala-project\\u002f ...\"],[\"https:\\u002f\\u002fbackchannel.com\\u002fthe-kids-computer-language-that-became-a-mind-bomb-for-the-hacker-ethic-a0b7...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffffaraz\\u002fawesome-cpp --- fffaraz\\u002fawesome-cpp --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fMobius\\u002fblob\\u002fmaster\\u002fnotes\\u002frunning-mobius-app.md --- :apache-spark runnin...\"],[\"http:\\u002f\\u002fwww.doityourselfrv.com\\u002ffull-time-living-in-a-teardrop-trailer\\u002f --- Full Time Living In A Tear...\"],[\"http:\\u002f\\u002fpublications.gbdirect.co.uk\\u002fc_book\\u002f --- The C Book - Table of Contents --- 2017-05-12...\"],[\"http:\\u002f\\u002fnxt.org\\u002f --- Nxt.org | Decentralized & Trustless Financial Ecosystem --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.insynchq.com\\u002f --- Insync is Google Drive sync & backup with multiple account support ---...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=815878 --- SourceForge.net: Wubi 8.04 final released...\"],[\"http:\\u002f\\u002fdatabene.org\\u002f --- databene - because software quality matters! --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffesh0r\\u002f010editor --- fesh0r\\u002f010editor · Pro txt\\u002fhex editing with Binary Template...\"],[\"http:\\u002f\\u002fwww.greenisuniversal-reuse.com\\u002fhome-decor\\u002fself-watering-recycled-plant-pot-for-growing-herbs-...\"],[\"http:\\u002f\\u002fdevblogs.nvidia.com\\u002fparallelforall\\u002faccelerate-net-applications-alea-gpu\\u002f --- Accelerate .NET ...\"],[\"http:\\u002f\\u002fwww.itshop.ru\\u002fDostupna-podderzhka-Mono-v-Visual-Studio-2010\\u002fl9i23324 --- Доступна пÐ...\"],[\"http:\\u002f\\u002fnshipster.com\\u002fmultipeer-connectivity\\u002f --- Multipeer Connectivity : NSHipster --- 2017-05-12...\"],[\"http:\\u002f\\u002f24.kz\\u002fru\\u002fnews\\u002ftop-news\\u002fitem\\u002f95845-n-nazarbaev-prisudil-gospremii-kazakhstana --- Н.НазаÑ...\"],[\"http:\\u002f\\u002fwww.netfxharmonics.com\\u002f2007\\u002f09\\u002fCreating-JavaScript-objects-from-ASPNET-objects --- Creating J...\"],[\"http:\\u002f\\u002ffeldy.ru\\u002f --- :exercises :fitness Feldenkrais Method --- 2017-05-12...\"],[\"https:\\u002f\\u002fjvns.ca\\u002fblog\\u002f2017\\u002f03\\u002f26\\u002fbash-quirks\\u002f --- :Bash scripting quirks --- 2017-05-12...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002froot4android\\u002f --- Root for Android :: psneuter.c --- 2017-05-12...\"],[\"http:\\u002f\\u002fblessmyweeds.com\\u002f12-medicinal-plants-to-grow-at-home\\u002f --- Gardening, home garden, garden hack...\"],[\"http:\\u002f\\u002fwww.linux.com\\u002flearn\\u002ftutorials\\u002f402382:the-five-best-open-source-calendar-servers-for-linux ---...\"],[\"http:\\u002f\\u002fspams-devel.gforge.inria.fr\\u002f --- sparse modeling software --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcosmin-cojocar\\u002fSpyEye --- cosmin-cojocar\\u002fSpyEye · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.koders.com\\u002finfo.aspx?c=ProjectInfo&pid=APXDHZZFUFPDH2YARHUZ7S9Z6H --- web money for DNN -...\"],[\"http:\\u002f\\u002fwww.raspberrypi.org\\u002fforums\\u002fviewtopic.php?t=76243&p=544566 --- Raspberry Pi • View topic - I...\"],[\"http:\\u002f\\u002fmypermissions.com\\u002f --- MyPermissions - Scan your permissions... Find out who gained access to...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fflix-plus-customizes-netflix-to-your-hearts-desire-1640968001 --- Flix Plus Cu...\"],[\"http:\\u002f\\u002fwww.kijiji.ca\\u002fv-electronics\\u002fcity-of-toronto\\u002fmagic-jack-plus-2014-newest-model-brand-new\\u002f10296...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fNarcissistic_personality_disorder --- Narcissistic personality disorder...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fx13ttww7.aspx --- volatile (C# Reference) --- 2017-05-12...\"],[\"http:\\u002f\\u002fnedbatchelder.com\\u002ftext\\u002funipain.html --- Ned Batchelder: Pragmatic Unicode --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.w3.org\\u002fTR\\u002fmobile-bp\\u002f --- www.w3.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dotnetopen.net\\u002f --- Open Source .NET,C#,ASP.NET,VB.NET Projects,Free .NET Code,Scripts --...\"],[\"http:\\u002f\\u002fshop.oreilly.com\\u002fproduct\\u002f0636920014348.do --- HBase: The Definitive Guide - O'Reilly Media ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3084636&R=3084636 --- Working effct. with lega...\"],[\"http:\\u002f\\u002farxiv.org\\u002fabs\\u002f0804.0277 --- [0804.0277] Mapping Semantic Networks to Undirected Networks --- ...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f13416344\\u002fa-multi-index-construction-for-intraday-timeseries-10-mi...\"],[\"http:\\u002f\\u002fandrea.corbellini.name\\u002f2015\\u002f05\\u002f17\\u002felliptic-curve-cryptography-a-gentle-introduction\\u002f --- Elli...\"],[\"http:\\u002f\\u002fwebsurvey2wiki.codeplex.com\\u002f --- WebSurvey2Wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.oilyhands.co.uk\\u002fBuild_your_own_digger.htm --- Home made digger ... Homemade excavator ......\"],[\"http:\\u002f\\u002fwww.ethology.ru\\u002f --- Этология --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002falpaca-lang\\u002falpaca\\u002f --- alpaca :Functional-programming inspired by ML for the :Er...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fgo-ethereum\\u002ftree\\u002fgpu_miner --- ethereum\\u002fgo-ethereum at gpu_miner · GitH...\"],[\"https:\\u002f\\u002fegghead.io\\u002flessons\\u002fnodejs-creating-demo-apis-with-json-server --- :mocking :REST :API with j...\"],[\"https:\\u002f\\u002fvirtualboximages.com\\u002fAsteriskNow+3.0.0+x86_64+VirtualBox+VDI+Virtual+Appliance --- asteriskn...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fBehavioral_economics --- Behavioral economics - Wikipedia, the free enc...\"],[\"http:\\u002f\\u002fwww.howtogeek.com\\u002f115297\\u002fhow-to-root-your-android-why-you-might-want-to\\u002f --- How to Root Your...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvenantius\\u002faccountant --- accountant :ClojureScript navigation for single-page app...\"],[\"http:\\u002f\\u002fwpf.netfx3.com\\u002ffiles\\u002ffolders\\u002f816\\u002fdownload.aspx --- Files: Download XAML\\u002fHTML Converter --- 20...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fMaslow%27s_hierarchy_of_needs --- Maslow's hierarchy of needs - Wikiped...\"],[\"http:\\u002f\\u002flearningwebgl.com\\u002fcookbook\\u002findex.php\\u002fMain_Page --- The WebGL Cookbook --- 2017-05-12...\"],[\"http:\\u002f\\u002farborjs.org\\u002fintroduction --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fpihome.harkemedia.de\\u002f --- PiHome - Raspberry Pi home automation open source project --- 2017-...\"],[\"http:\\u002f\\u002fwxpython.org\\u002fwhat.php --- What is wxPython? --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnwoolls\\u002fMultiMiner --- nwoolls\\u002fMultiMiner · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSnabbCo\\u002fsnabbswitch --- snabbco\\u002fsnabbswitch :: simple and fast packet networking ...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002ftruecrack\\u002f --- TrueCrack - Password cracking for truecrypt(c) volume files...\"],[\"http:\\u002f\\u002fartistworks.com\\u002fguitar-lessons-martin-taylor?gclid=CPnJlKqMuL0CFaw-MgodDnUAUA --- Fingerstyle...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=uUgZF0yhE5M --- :massage neck --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.authorize.net\\u002fsolutions\\u002fmerchantsolutions\\u002fmerchantservices\\u002ftrustwave\\u002f --- Trustwave --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkevin-yuan\\u002fandroid-wifi-connecter --- kevin-yuan\\u002fandroid-wifi-connecter · librar...\"],[\"http:\\u002f\\u002fwww.sqlstream.com\\u002f --- SQLstream | Big Data Stream Processing & Operational Intelligence for ...\"],[\"https:\\u002f\\u002ftwitter.github.io\\u002fscala_school\\u002fru\\u002findex.html --- :Scala school in :russian --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fElliott_Wave_Principle --- Elliot Wave Analysis --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fmswanson\\u002farchive\\u002f2007\\u002f10\\u002f23\\u002fseamonster-a-net-based-seam-carving-implementation...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftokio-rs\\u002ftokio --- tokio :Async I\\u002fO for :Rust-lang --- 2017-05-12...\"],[\"http:\\u002f\\u002fblessmyweeds.com\\u002fhow-to-attract-butterflies-in-your-garden\\u002f --- How to Attract Butterflies to...\"],[\"https:\\u002f\\u002fgithub.com\\u002fiSECPartners\\u002fsslyze --- iSECPartners\\u002fsslyze --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgreenaddress\\u002fGreenBits --- greenaddress\\u002fGreenBits · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.unixuser.org\\u002f~euske\\u002fpython\\u002fwebstemmer\\u002findex.html --- Webstemmer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.the-reseller-network.com\\u002f --- The Reseller Network: Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fpentestit.com\\u002f2009\\u002f12\\u002f16\\u002fmicrosoft-code-analysis-tool-net-binary-code-analysis-tool\\u002f --- Micr...\"],[\"https:\\u002f\\u002fpolished.js.org\\u002f --- polished lightweight toolset for writing styles in :JavaScript :tools :...\"],[\"http:\\u002f\\u002fwww.motherearthliving.com\\u002fdiy-projects\\u002fhow-to-make-a-solar-oven.aspx --- Learn how to make a ...\"],[\"http:\\u002f\\u002fwww.quora.com\\u002fWhat-are-the-most-important-things-to-consider-while-choosing-a-life-partner --...\"],[\"http:\\u002f\\u002fwww.gracegardenandhomestead.com\\u002fbuilding-grow-boxes\\u002f --- Building mini greenhouses from mater...\"],[\"https:\\u002f\\u002fspin.atomicobject.com\\u002f2017\\u002f03\\u002f07\\u002fattitudes-maintainable-code\\u002f --- :designpatterns Three Atti...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnhdessert\\u002fBioVision --- :tools :computer-vision open source video analysis tool t...\"],[\"http:\\u002f\\u002fwww.werd.com\\u002f27117\\u002fsnap-on-x-anex-ultra-low-profile-screwdrivers\\u002f --- Snap-on x Anex Ultra Lo...\"],[\"http:\\u002f\\u002fwww.streetauthority.com\\u002finvesting-basics\\u002fbudget-deal-taking-shape-heres-what-investors-need-k...\"],[\"http:\\u002f\\u002fwww.fluidbyte.net\\u002fclickecho-jquery-plugin --- ClickEcho jQuery Plugin : Web Site Design, La C...\"],[\"http:\\u002f\\u002fwww.forvo.com\\u002flanguages\\u002fen\\u002f --- English pronunciation guide - Forvo --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPinhole_camera --- Pinhole camera - Wikipedia, the free encyclopedia --...\"],[\"http:\\u002f\\u002fnews.nationalpost.com\\u002f2012\\u002f07\\u002f09\\u002fthousands-of-canadians-could-lose-web-access-today-due-to-fb...\"],[\"http:\\u002f\\u002fwww.trojanhorsethebook.com\\u002fbooks\\u002f --- Books by Author Mark Russinovich --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fbeta3\\u002f --- beta3 - Project Hosting on Google Code --- 2017-05-12...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fastopford\\u002farchive\\u002f2008\\u002f07\\u002f03\\u002fmbunit-v3-in-visual-studio-team-system-2008.aspx...\"],[\"https:\\u002f\\u002fgithub.com\\u002fphanan\\u002fhtaccess --- phanan\\u002fhtaccess · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwololo.net\\u002f2017\\u002f03\\u002f31\\u002fxbox-one-hack-xbox-one-exploit-proof-concept-released-based-chakra-expl...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmacros\\u002fSMRefactorAddinArticle.aspx --- CodeProject: Building a Refacto...\"],[\"http:\\u002f\\u002fwww.diveintopython.net\\u002f --- Dive Into Python --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002frhythnic\\u002fredux-lenses --- redux-lenses Abstractions for interacting with :Redux s...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f149757\\u002f --- Практикум AngularJS — разработка адмиÐ...\"],[\"https:\\u002f\\u002fmedium.com\\u002freact-native-development\\u002freact-native-app-stack-march-2017-f7605e02d46f#.k8brqtmj...\"],[\"http:\\u002f\\u002fwww.r-project.org\\u002fdoc\\u002fbib\\u002fR-books.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.whichvoip.com\\u002fvoip\\u002fcanada_voip.htm?gclid=CJ7o66_e_qYCFYHb4AodlS9iaw --- canadian voip pro...\"],[\"https:\\u002f\\u002fpurelyfunctional.tv\\u002farticle\\u002fwrangling-clojure-stacktraces\\u002f --- :debugging :Clojure stacktrac...\"],[\"http:\\u002f\\u002flearnjazzfaster.com\\u002fpdfs\\u002fMonster%20Jazz%20Manifesto%20.pdf --- Monster Jazz Manifesto .pdf (a...\"],[\"http:\\u002f\\u002fetf.about.com\\u002fod\\u002fetfinvestingstrategies\\u002fa\\u002fInverse_ETFs_List.htm --- List of Inverse ETFs and ...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2009\\u002f08\\u002f27\\u002fmulti-targeting-support-vs-2010-and-net-4-series.a...\"],[\"http:\\u002f\\u002fhealthyslowcooking.com\\u002f2014\\u002f07\\u002f08\\u002fbanana-avocado-mint-ice-cream-no-ice-cream-maker-needed\\u002f --...\"],[\"https:\\u002f\\u002fnvbn.github.io\\u002f2014\\u002f12\\u002f07\\u002fchrome-extension-clojurescript\\u002f --- Chrome extension in ClojureScr...\"],[\"http:\\u002f\\u002fwww.mccune.org.uk\\u002fblog\\u002f2009\\u002f08\\u002ftesting-snmpv3.html --- Testing SNMPv3 - Rory.Blog --- 2017-05...\"],[\"http:\\u002f\\u002fphrack.org\\u002fpapers\\u002fvm-escape-qemu-case-study.html --- :security :paper VM escape -- Qemu case ...\"],[\"http:\\u002f\\u002fgabrielebaldassarre.com\\u002ftalend\\u002fttwitterinput\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dotnetbutton.com\\u002flivedemo.htm --- .net BUTTON Generator for ASP.NET (Active Server Pages ...\"],[\"http:\\u002f\\u002fwww.plantchicago.com\\u002f --- The Plant | Chicago's vertical farm and food business incubator ---...\"],[\"https:\\u002f\\u002freads.breue.com\\u002f125-places-to-post-your-startup-product-6df5b7ad3932 --- 125 Places to Post ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsprsquish\\u002ffinagle-libs --- GitHub - sprsquish\\u002ffinagle-libs: Finagle IRC --- 2017-...\"],[\"http:\\u002f\\u002fwww.scala-lang.org\\u002f --- The Scala Programming Language --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMaxXor\\u002fxRAT --- MaxXor\\u002fxRAT · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.devx.com\\u002fdotnet\\u002fArticle\\u002f35649 --- Getting Started with Crystal Reports for Visual Studio ...\"],[\"https:\\u002f\\u002fthesprawl.org\\u002fprojects\\u002fdnschef\\u002f --- dnschef | projects | sprawl --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkjw0612\\u002fawesome-deep-vision --- :awesome :computer-vision :deep-learning curated ...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=0Znsegn3rDo --- :arduino :internet-of-things :javascript Introductio...\"],[\"https:\\u002f\\u002fwww.simple-talk.com\\u002fdotnet\\u002f.net-framework\\u002fwhats-new-in-c-6\\u002f --- What&#039;s New in C# 6 --- ...\"],[\"http:\\u002f\\u002fdiyready.com\\u002fdiy-4-strand-paracord-braid-with-core-and-buckle\\u002f --- DIY 4 Strand Paracord Brai...\"],[\"http:\\u002f\\u002fwww.orsyp.com\\u002fblog\\u002f643-it-cheat-sheet\\u002f --- IT Cheat Sheet. Information Technology Shortcuts a...\"],[\"http:\\u002f\\u002fblog.red-website-design.co.uk\\u002f2014\\u002f12\\u002f01\\u002fmarketing-basics-18-online-and-offline-tactics-every...\"],[\"http:\\u002f\\u002finhabitat.com\\u002felectronics-recycling-101-tips-to-repurpose-old-electronics\\u002f --- Helpful hints ...\"],[\"http:\\u002f\\u002fmicrium.com\\u002fdownloadcenter\\u002f --- RTOS Source Code Download Center | Micrium --- 2017-05-12...\"],[\"http:\\u002f\\u002fbalintreczey.hu\\u002fblog\\u002frun-wireshark-on-android-using-lil-debi\\u002f --- Run Wireshark on Android us...\"],[\"https:\\u002f\\u002fweka.waikato.ac.nz\\u002fdataminingwithweka\\u002fpreview --- waikato mooc --- 2017-05-12...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002flkempe\\u002farchive\\u002f2008\\u002f02\\u002f18\\u002ftech-head-brothers-new-authoring-tool-step-4.aspx -...\"],[\"http:\\u002f\\u002fdelivr.com\\u002f --- Delivr :: Track campaigns using Short URLs, QR Codes®, NFC Tags and Beacons ...\"],[\"http:\\u002f\\u002fwww.pictet.com\\u002f --- Pictet & Cie --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amazedsaint.com\\u002f2013\\u002f02\\u002fa-quick-introduction-to-hadoop-hive-on.html --- Quick introductio...\"],[\"http:\\u002f\\u002fwww.3cx.com\\u002fVOIP\\u002fsoftphone.html --- Free SIP Softphone for Windows, Android and Iphone --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvasanthk\\u002freact-bits --- :tutorial :reactjs React patterns, techniques, tips and t...\"],[\"http:\\u002f\\u002fwww.cycript.org\\u002f --- Cycript --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.status.im\\u002fintroducing-commiteth-enabling-a-community-driven-development-model-52159984c...\"],[\"http:\\u002f\\u002fwww.sippp.com\\u002f --- Home | SIPPP.COM - SIP Outbound Proxy Service --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3085397&R=3085397 --- Secure coding in C and C...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fstring-template-view-engine-mvc\\u002fsource\\u002fcheckout --- Source Checkout - strin...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fee391967.aspx --- A Developer's Guide to the WCF REST Starte...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?displaylang=en&FamilyID=8e6ac106-525d-45d0-84db-dccf...\"],[\"https:\\u002f\\u002fwww.tizen.org\\u002f --- Tizen | An open source, standards-based software platform for multiple de...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@the_ajohnston\\u002fthree-books-developers-should-read-when-they-graduate-5ee228251dd2...\"],[\"https:\\u002f\\u002fforums.hak5.org\\u002f --- Hak5 Forums --- 2017-05-12...\"],[\"http:\\u002f\\u002fgzakupki.kz\\u002f --- Сайт госзакупки в Республике Казахстан \\u003e\\u003e ...\"],[\"http:\\u002f\\u002fmvolo.com\\u002fblogs\\u002fserverside\\u002farchive\\u002f2008\\u002f04\\u002f27\\u002fIconHandler-2.0-File-icons-in-ASP.NET-applicati...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=XEtlxJsPR40 --- :Lisp on the :GPU :YouTube --- 2017-05-12...\"],[\"http:\\u002f\\u002fmanning.com\\u002fpalermo\\u002f --- Manning: ASP.NET MVC in Action --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fimplementing-real-time-analytics-hadoop-microsoft-dat202-2x --- Implement...\"],[\"http:\\u002f\\u002fwww.avepoint.com\\u002f --- SharePoint Backup & Recovery, Administration, Migration, and Archiving ...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=13980274 --- :startup :business-tips Ask HN -- How do you make ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?Ntt=Introduction+to+machine+learning --- Introduction ...\"],[\"http:\\u002f\\u002fhakshop.myshopify.com\\u002f --- HakShop — Welcome --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ic.gc.ca\\u002fapp\\u002fccc\\u002fsrch\\u002fcccBscSrch.do?lang=eng&prtl=1&app=1#specdir --- Canadian Company Ca...\"],[\"http:\\u002f\\u002fblog.cryptographyengineering.com\\u002f2013\\u002f03\\u002fattack-of-week-rc4-is-kind-of-broken-in.html --- A F...\"],[\"https:\\u002f\\u002fdeveloper.xamarin.com\\u002fguides\\u002fandroid\\u002fdeployment,_testing,_and_metrics\\u002fpublishing_an_applicat...\"],[\"http:\\u002f\\u002farticulate-lisp.com\\u002f --- :lisp environment :howto --- 2017-05-12...\"],[\"http:\\u002f\\u002femeraldcloudlab.com\\u002f --- Emerald Cloud Lab --- 2017-05-12...\"],[\"http:\\u002f\\u002fapiwiki.twitter.com\\u002f --- Twitter API Wiki \\u002f FrontPage --- 2017-05-12...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2007\\u002f09\\u002f23\\u002fopen-source\\u002f --- OPEN SOURCE GOD: 480+ Open Source Applications --- 2...\"],[\"http:\\u002f\\u002fwww.3ders.org\\u002farticles\\u002f20140821-plan-b-is-an-open-source-diy-powder-based-3d-printer.html ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkamranahmedse\\u002fgithunt --- githunt :Chrome-Extensions Replace your new tab with tr...\"],[\"http:\\u002f\\u002fzealdocs.org\\u002f --- Zeal - offline API documentation browser --- 2017-05-12...\"],[\"https:\\u002f\\u002ftomassetti.me\\u002fantlr-mega-tutorial\\u002f --- :tutorial :examples :parser generator -- ANTLR use ca...\"],[\"http:\\u002f\\u002fantjanus.com\\u002fblog\\u002fweb-development-tutorials\\u002ffront-end-development\\u002fcomprehensive-beginners-gui...\"],[\"http:\\u002f\\u002fwww.ssmstoolspack.com\\u002f --- SSMS Tools Pack --- 2017-05-12...\"],[\"https:\\u002f\\u002fpartnergateway.motorola.com\\u002fisvapp\\u002ftransfer.asp --- Motorola Enterprise Mobility Solutions P...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285326\\u002f --- :sensors :chemistry Nasa-developed paint for rockets --- 2017...\"],[\"http:\\u002f\\u002fwww.cs.berkeley.edu\\u002f~emc\\u002fpapers\\u002fandroid_permissions.pdf --- Android permissions demystified -...\"],[\"http:\\u002f\\u002fwww.gotur.kz\\u002foteli\\u002fkazakhstan\\u002fkaragandinskaia-obl\\u002fzhartas\\u002f1238-sanatorii-zhartas.html --- СÐ...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftschellenbach\\u002fDjango-facebook --- Facebook open graph api impl. using Django --- ...\"],[\"https:\\u002f\\u002fwww.codecoalition.com\\u002f --- www.codecoalition.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%A4%D0%B0%D1%83-2 --- Фау-2 — Википедия --- 2017-05-12...\"],[\"https:\\u002f\\u002fshare.coursera.org\\u002fwiki\\u002findex.php\\u002fProgfun:sbt --- Progfun:sbt - Coursera --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.droidviews.com\\u002fguideunlock-bootloader-root-install-cwm-custom-roms-on-galaxy-nexus-i9250\\u002f...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fff552060(v=VS.85).aspx --- Logger and LogViewer --- 2017-05-...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285738\\u002f --- :depression :stress-management electric brain stimulation --- ...\"],[\"http:\\u002f\\u002fjoshsmithonwpf.wordpress.com\\u002f2007\\u002f06\\u002f22\\u002foverview-of-routed-events-in-wpf\\u002f --- Overview of rou...\"],[\"http:\\u002f\\u002fmbunit.com\\u002fDevelopment.aspx --- MbUnit - Generative Unit Test Framework for the .NET Framewor...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3072533&R=3072533 --- Cuckoo malware analysis ...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fRazer_Hydra --- Razer Hydra - Wikipedia, the free encyclopedia --- 201...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=bzaInlFVq0s --- How to Make a \\\"Water Ram\\\" off-grid Water Pump, requir...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fsandcastle\\u002farchive\\u002f2008\\u002f06\\u002f18\\u002ffiltering-apis-using-sandcastle.aspx --- Sandcas...\"],[\"https:\\u002f\\u002fwww.fiddler2.com\\u002fFiddler\\u002fdev\\u002f --- Fiddler Web Debugger - Developer's Guide --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.somedayilllearn.com\\u002fhome-wifi-secure\\u002f#_a5y_p=3272759 --- Getting your home WiFi hacked is...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpatric-r\\u002fjvmtop --- GitHub - patric-r\\u002fjvmtop: Java monitoring for the command-lin...\"],[\"http:\\u002f\\u002fwww.motherearthnews.com\\u002frenewable-energy\\u002fbiogas-generator-zm0z14aszrob.aspx?SlideShow=5 --- S...\"],[\"http:\\u002f\\u002fspecflow.org\\u002f --- SpecFlow - home --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.wmtransfer.com\\u002fblog\\u002fmywifi-com-obnovlenie-proshivok-i-novye-vozmozh --- my wi-fi --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fskypeopensource --- skype open source - reversed --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_7283751_make-solar-panel-cds.html --- How to Make a Solar Panel From CDs ---...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14302762 --- Ask HN Who&#39;s using :Clojure, and to do what? :...\"],[\"https:\\u002f\\u002fgithub.com\\u002fopencog\\u002fdocker --- opencog\\u002fdocker · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.m4040.com\\u002fKnifemaking\\u002fSteel2.htm --- Working the Steel --- 2017-05-12...\"],[\"http:\\u002f\\u002fpurelivingforlife.com\\u002fportable-solar-panels\\u002f --- Stupid-Easy Portable Solar Panels for RV, Of...\"],[\"http:\\u002f\\u002fvimcasts.org\\u002f --- :linux :tools Vimcasts :Free :screencasts about the text editor :Vim --- 20...\"],[\"http:\\u002f\\u002fwordnet.princeton.edu\\u002fobtain --- WordNet - Download --- 2017-05-12...\"],[\"http:\\u002f\\u002fforum.farmanager.com\\u002fviewtopic.php?t=8594 --- How to build FAR Manager --- 2017-05-12...\"],[\"https:\\u002f\\u002fbackyardbrains.com\\u002fexperiments\\u002froboRoachSurgery --- Experiment: Neural Interface Surgery ---...\"],[\"https:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fdocumentation\\u002fvideos\\u002fazurecon-2015-applications-that-scale-using-g...\"],[\"http:\\u002f\\u002fwww.chiark.greenend.org.uk\\u002f~sgtatham\\u002fputty\\u002fdownload.html --- PuTTY Download Page --- 2017-05-...\"],[\"https:\\u002f\\u002fwww.microsoft.com\\u002fen-us\\u002fdownload\\u002fdetails.aspx?id=14683 --- Download Active Directory Lightwe...\"],[\"http:\\u002f\\u002fwww.mto.gov.on.ca\\u002fenglish\\u002fdandv\\u002fvehicle\\u002fused.shtml --- Buying and Selling a Used Vehicle in O...\"],[\"https:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fGLPK --- :machine-learning GNU Linear Programming Kit :Wikibooks open ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fendpoint\\u002farchive\\u002f2010\\u002f11\\u002f13\\u002fsimplified-asynchronous-programming-model-in-wcf...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmerosss\\u002fVRepRosQuadSwarm --- :drones :robotics This is a framework to control a s...\"],[\"https:\\u002f\\u002fgithub.com\\u002frswier\\u002fc4 --- rswier\\u002fc4 - C in four functions --- 2017-05-12...\"],[\"http:\\u002f\\u002ffocusontheuser.eu\\u002f#download --- Google+ is hurting the Internet. Europeans have the power to ...\"],[\"http:\\u002f\\u002fandyfitzgerald.org\\u002flanguage-meaning-user-experience-architecture --- Language + Meaning + Use...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002feclipse\\u002fdocs\\u002fendpoints-androidconnected-gae --- Creating an App Engine...\"],[\"http:\\u002f\\u002f1code.codeplex.com\\u002f --- Sharing Microsoft All-In-One Code Framework - a centralized code samp...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjawerty\\u002fAlienFeed --- jawerty\\u002fAlienFeed · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fservices\\u002fmachine-learning\\u002f --- Machine Learning --- 2017-05-12...\"],[\"http:\\u002f\\u002fjlongster.com\\u002fWhats-in-a-Continuation --- :scheme :javascript What’s in a Continuation --- ...\"],[\"http:\\u002f\\u002fwww.communitypicks.com\\u002f --- :wishlist Community Picks -- :books recommended by your fellow me...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactive-Extensions\\u002frxjs-jquery --- Reactive-Extensions\\u002frxjs-jquery: Reactive Ext...\"],[\"http:\\u002f\\u002fwww.public.asu.edu\\u002f~huanliu\\u002fpapers\\u002ficml03.pdf --- Fast Correlation-Based Filtering pdf --- 20...\"],[\"http:\\u002f\\u002fwww.alchemyapi.com\\u002f --- AlchemyAPI | Transforming text into knowledge --- 2017-05-12...\"],[\"http:\\u002f\\u002femail2image.com\\u002fConvert-Email-to-Image.aspx --- Email to image to avoid spam --- 2017-05-12...\"],[\"http:\\u002f\\u002fjoaoventura.net\\u002fblog\\u002f2017\\u002fpython-webserver\\u002f --- :tutorial :python http server from scratch -...\"],[\"http:\\u002f\\u002fdeveloper.ebay.com\\u002fcommunity\\u002fforums\\u002f --- Forums — eBay Developers Program --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3319808&R=3319808 --- The hardware startup : b...\"],[\"http:\\u002f\\u002fwww.danburymotorcaravans.com\\u002fmodels\\u002fmodeltype.aspx?modelID=25&modeltypeID=20 --- Caravans: Te...\"],[\"https:\\u002f\\u002fgithub.com\\u002fA9T9\\u002fFree-Ocr-Windows-Desktop --- :OCR application for the Windows Desktop - A mo...\"],[\"https:\\u002f\\u002fwww.quora.com\\u002fIs-React-killing-Angular --- Is React killing Angular? - Quora --- 2017-05-12...\"],[\"http:\\u002f\\u002fcacm.acm.org\\u002fmagazines\\u002f2017\\u002f1\\u002f211100-pure-randomness-extracted-from-two-poor-sources\\u002ffulltext...\"],[\"http:\\u002f\\u002fwww.howardforums.com\\u002fcontent.php --- HowardForums: Your Mobile Phone Community & Resource ......\"],[\"http:\\u002f\\u002fonlyflyingmachines.com\\u002fproduct\\u002ffpvguide\\u002f --- --- 2017-05-12...\"],[\"https:\\u002f\\u002fvimeo.com\\u002f203271192 --- :compiler :clr :clojure :video :vimeo Ramsey Nasser on Magic --- 201...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002finternet-peas-gardening-javascript-part-2 --- The Internet of...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms730255(v=vs.110).aspx --- Using Message Contracts --- 201...\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fFractalPorn --- FractalPorn --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.shtfpreparedness.com\\u002fmake-solar-ice-maker\\u002f --- How To Make A Solar ICE Maker - SHTF, Emer...\"],[\"http:\\u002f\\u002fwww.taxtips.ca\\u002fsmallbusiness\\u002fphsp.htm --- taxtips.ca - Small Business - Private health servic...\"],[\"https:\\u002f\\u002fwww.facebook.com\\u002fFPPersonalFinance?_fb_noscript=1 --- :finance :facebook FP Personal Finance...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002fmultiple-threads\\u002fcommunicate-ui.html --- Communicating with th...\"],[\"http:\\u002f\\u002fwww.ebay.com\\u002fitm\\u002fRacing-Go-Kart-Plans-\\u002f201314257206?roken=cUgayN --- Racing Go Kart Plans ---...\"],[\"http:\\u002f\\u002fwww.r-statistics.com\\u002f2013\\u002f06\\u002ftop-100-r-packages-for-2013-jan-may\\u002f --- Top 100 R packages for ...\"],[\"http:\\u002f\\u002fheartbleed.com\\u002f --- Heartbleed Bug --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tvantennaplans.com\\u002f --- How to Make a DIY Homemade TV Antenna | TV Antenna Plans --- 2017...\"],[\"http:\\u002f\\u002fdocx.codeplex.com\\u002f --- DocX - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffaif\\u002fpython-patterns --- faif\\u002fpython-patterns · GitHub ... :python :designpatter...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fie\\u002fjj152136%28v=vs.85%29.aspx --- Create WebVTT or TTML fil...\"],[\"http:\\u002f\\u002fwww.dotnetcurry.com\\u002fvisualstudio\\u002f1340\\u002fvisual-studio-code-tutorial --- :tools :visualstudio :v...\"],[\"http:\\u002f\\u002fvideojs.com\\u002fgetting-started\\u002f --- :javascript :Getting-Started with Video.js -- :VideoPlayer F...\"],[\"http:\\u002f\\u002fwww.roperld.com\\u002fscience\\u002fsolargreenhouses.htm --- Solar Greenhouses --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.nowsecure.com\\u002fwebinars\\u002f --- NowSecure webinars --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.howtogeek.com\\u002f105981\\u002ffrom-the-tips-box-how-record-skype-calls-rip-youtube-mp3-audio-and-p...\"],[\"http:\\u002f\\u002fep.yimg.com\\u002fca\\u002fI\\u002fyhst-70501757329732_2268_55074927 --- yhst-70501757329732_2268_55074927 1,62...\"],[\"http:\\u002f\\u002fsvmlight.joachims.org\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fapcmag.com\\u002fhow-to-make-your-own-android-rom.htm --- How to make your own Android ROM --- 2017...\"],[\"http:\\u002f\\u002fwww.openhosting.com\\u002f --- Welcome to OHI | Open Hosting Inc --- 2017-05-12...\"],[\"http:\\u002f\\u002fthe.artofunittesting.com\\u002f --- The Art Of Unit Testing \\u003e Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNick-Lucas\\u002fEntryPoint --- EntryPoint :.Net comman line :parser --- 2017-05-12...\"],[\"https:\\u002f\\u002fcrackstation.net\\u002f --- CrackStation - Online Password Hash Cracking - MD5, SHA1, Linux, Rainb...\"],[\"http:\\u002f\\u002fwww.robotshop.com\\u002froomba-development-hacking.html --- Roomba Hacking and Development Tools - ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogleinurl\\u002fSCANNER-INURLBR --- googleinurl\\u002fSCANNER-INURLBR · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftwitter\\u002fscala-bootstrapper --- twitter\\u002fscala-bootstrapper --- 2017-05-12...\"],[\"http:\\u002f\\u002ffahrain.blogspot.com\\u002fsearch\\u002flabel\\u002f%D1%81%D0%B5%D0%BC%D0%B0%D0%BD%D1%82%D0%B8%D1%87%D0%B5%D1%8...\"],[\"http:\\u002f\\u002fcssmenumaker.com\\u002f --- CSS Menu Generator --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.marthastewart.com\\u002f274805\\u002fvegetable-garden-good-things\\u002f@center\\u002f276996\\u002fvegetable-garden-gui...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpocorall\\u002fscaloid --- pocorall\\u002fscaloid --- 2017-05-12...\"],[\"http:\\u002f\\u002fherbsutter.com\\u002felements-of-modern-c-style\\u002f --- Elements of Modern C Style « Sutter’s Mill ...\"],[\"http:\\u002f\\u002fwww.apachefriends.org\\u002fen\\u002fxampp.html --- apache friends - xampp --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.techcrunch.com\\u002f2005\\u002f11\\u002f06\\u002fthe-flickrs-of-video\\u002f --- Comparing The Flickrs of Video --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fArachni\\u002farachni --- Arachni\\u002farachni · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.lulu.com\\u002fcontent\\u002f300848 --- Website Indexes: visitors to content in two clicks, or websit...\"],[\"http:\\u002f\\u002ftehtron.com\\u002foborudovanie\\u002fgazobeton\\u002fmonol-lit-gazabetona\\u002f --- Монолитное литье ...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fDarrieus_wind_turbine --- :energy Darrieus wind turbine - Wikipedia --...\"],[\"http:\\u002f\\u002fwordneighbors.ust.hk\\u002f --- Word Neighbors - helps to learn vocabulary --- 2017-05-12...\"],[\"http:\\u002f\\u002fdornob.com\\u002fdiy-solar-lamp-make-your-own-eco-friendly-sun-jars\\u002f --- DIY Solar Lamp --- 2017-05...\"],[\"http:\\u002f\\u002fwww.itshop.ru\\u002fRasshirenie-otladchika-SOS-dlya-Visual-Studio-2008\\u002fl9i23327 --- РасширеÐ...\"],[\"https:\\u002f\\u002fblog.openshift.com\\u002fdocker-5-minutes\\u002f --- Docker in 5 Minutes --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285278\\u002f --- :3d-printers hot-end tips --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.sqlauthority.com\\u002f2011\\u002f02\\u002f01\\u002fsql-server-wait-stats-wait-types-wait-queues-day-0-of-28-2\\u002f ...\"],[\"http:\\u002f\\u002fwww.rileyguide.com\\u002fresdb.html --- Resume Databases and Distribution Services: The Riley Guide...\"],[\"http:\\u002f\\u002fwww.fourmilab.ch\\u002fmd5\\u002f --- MD5: Command Line Message Digest Utility --- 2017-05-12...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2013\\u002f07\\u002f05\\u002fgoogle-tools?utm_content=buffercc312&utm_medium=social&utm_source=pin...\"],[\"http:\\u002f\\u002fdewasoft.com\\u002fprivacy\\u002fkldetector.htm --- KL-Detector: detect keylogging activity on your compu...\"],[\"http:\\u002f\\u002fwww.google.com\\u002fsearch?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=IhQ&q=xml+...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbig-data-and-business-intelligence\\u002fr-data-analysis-cookbook --- R Data Anal...\"],[\"http:\\u002f\\u002fwww.tufat.com\\u002fs_advanced_flash_xml_image_gallery.htm --- Gallery by Dali - The most powerful ...\"],[\"https:\\u002f\\u002fduck.co\\u002fblog\\u002fpost\\u002f2\\u002fusing-pidgin-with-xmpp-jabber --- DuckDuckGo Blog : Using Pidgin with ou...\"],[\"http:\\u002f\\u002fwww.family-phone.com\\u002ffaq.php --- Keep Phone Numbers With Family Phone --- 2017-05-12...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fboot\\u002findex.html --- Package boot - bootstrap functions --- 20...\"],[\"http:\\u002f\\u002fwww.vmware.com\\u002fproducts\\u002fvfabric-tcserver\\u002f --- VMware vFabric tc Server --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.diygokarts.com\\u002fvb\\u002fshowthread.php?t=5295 --- steering\\u002fsuspension problems - DIY Go Kart Fo...\"],[\"https:\\u002f\\u002fcourses.cs.washington.edu\\u002fcourses\\u002fcsep573\\u002f04au\\u002fexercises\\u002fJooneCompleteGuide.pdf --- :neural-...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002f34-startup-metrics-founder-know\\u002f --- 34 :Startup Metrics That Tech E...\"],[\"http:\\u002f\\u002fwww.typescriptlang.org\\u002fdocs\\u002fhandbook\\u002fbasic-types.html --- :javascript :books Basic Types :Typ...\"],[\"http:\\u002f\\u002fsecurityxploded.com\\u002fwindows-vault-password-decryptor.php --- securityxploded.com --- 2017-05-...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:recycling\\u002f --- Pinboard recycling --- 2017-05-12...\"],[\"http:\\u002f\\u002ftraining.linuxfoundation.org\\u002fcertification --- Linux Foundation Training - Certification --- ...\"],[\"http:\\u002f\\u002fwww.raspberry-sharp.org\\u002f --- :nuget :.net :mono :raspberry - community --- 2017-05-12...\"],[\"http:\\u002f\\u002fwordnet.princeton.edu\\u002fwordnet\\u002fdownload\\u002f --- WordNet - Download --- 2017-05-12...\"],[\"https:\\u002f\\u002finfinity-web.s3.amazonaws.com\\u002fsites\\u002f503bb75f68ea9f7978000005\\u002ftheme\\u002fimages\\u002fsoil-amendments-in...\"],[\"http:\\u002f\\u002fwiki.openwrt.org\\u002ftoh\\u002fstart --- Table of Hardware - OpenWrt Wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.umiacs.umd.edu\\u002f~mingyliu\\u002fenee631\\u002fwoods_tsp1991.pdf --- Compound Gauss-Markov random field...\"],[\"http:\\u002f\\u002fwww.motionxml.com\\u002f --- Motion XML scripts and AIR application for Flash CS3 and the Animator ...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f260773\\u002f --- Java Regex --- 2017-05-12...\"],[\"https:\\u002f\\u002fprojecteuler.net\\u002f --- Project Euler --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.runnerduck.com\\u002fdehydrator\\u002fdehydrator.htm --- Dehydrator - uses no power and is safe from ...\"],[\"http:\\u002f\\u002fwww.openstreetmap.org\\u002f --- OpenStreetMap --- 2017-05-12...\"],[\"http:\\u002f\\u002fsolidsmack.com\\u002ftag\\u002f3d-printing-for-fun-and-profit\\u002f --- Have you got a 3D printer? Do you wan...\"],[\"http:\\u002f\\u002fepchan.blogspot.ca\\u002f --- backtesting guru --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbossiernesto\\u002fantiparser --- bossiernesto\\u002fantiparser · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fyuba.stanford.edu\\u002ffoswiki\\u002fbin\\u002fview\\u002fOpenFlow\\u002fMininet --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fquantlabs.net\\u002fblog\\u002f2012\\u002f11\\u002fopen-source-free-project-demos-on-github-matlab-coder-to-c-r-hadoo...\"],[\"http:\\u002f\\u002fwww.zenisoft.cn\\u002fcalibre\\u002fget\\u002fpdf\\u002f887 --- free book: collective intelligence in action --- 2017...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002flampsecurity\\u002f?source=recommended --- LAMPSecurity Training --- 2017-...\"],[\"http:\\u002f\\u002fdl.acm.org\\u002fcitation.cfm?id=2714604 --- Implicit Information Flow in Android --- 2017-05-12...\"],[\"http:\\u002f\\u002fosmand.net\\u002f --- OsmAnd - OFFLINE MOBILE MAPS & NAVIGATION --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPremium-rate_telephone_number --- Premium-rate telephone number - Wikip...\"],[\"http:\\u002f\\u002fblogs.technet.com\\u002fb\\u002fmachinelearning\\u002f --- Machine Learning - Site Home - TechNet Blogs --- 201...\"],[\"http:\\u002f\\u002feb.haxx.in\\u002f?p=148 --- DE EINDBAZEN » RWTH-CTF 2011 ps3game --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fapp\\u002fIntentService.html --- IntentService | Android De...\"],[\"http:\\u002f\\u002fbook.mql4.com\\u002fintro --- Introduction to MQL4 - MQL4 Tutorial --- 2017-05-12...\"],[\"http:\\u002f\\u002fspring.io\\u002fguides\\u002fgs\\u002faccessing-data-jpa\\u002f --- Getting Started · Accessing Data with JPA --- 20...\"],[\"http:\\u002f\\u002ftechnet.microsoft.com\\u002fen-us\\u002flibrary\\u002fcc759262.aspx#BKMK_Uninstall --- Msiexec (command-line op...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fjstegman\\u002farchive\\u002f2008\\u002f04\\u002f21\\u002fdynamic-image-generation-in-silverlight.aspx --- J...\"],[\"http:\\u002f\\u002fwww.autonlab.org\\u002ftutorials\\u002f --- Statistical Data Mining Tutorials --- 2017-05-12...\"],[\"ftp:\\u002f\\u002fftp.kernel.org\\u002fpub\\u002fdist\\u002fknoppix\\u002fKNOPPIX-ADRIANE_V6.2CD-2009-11-18-DE.iso --- knoppix live cd -...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002fpiotrwendykier\\u002fsoftware\\u002fjtransforms --- JTransforms - --- 2017-05-12...\"],[\"http:\\u002f\\u002fsubsonicproject.com\\u002f --- SubSonic: All Your Database Are Belong To Us --- 2017-05-12...\"],[\"http:\\u002f\\u002fgit.grml.org\\u002f?p=grml-etc-core.git;a=blob_plain;f=etc\\u002fzsh\\u002fzshrc;hb=HEAD --- :linux :tools zsh ...\"],[\"http:\\u002f\\u002fwww.adobe.com\\u002fproducts\\u002felearningsuite\\u002ftrial.html?sdid=JBDUW --- adobe elearning --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fexceptionnotfound --- exceptionnotfound (Matthew P Jones) · GitHub --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3389314&R=3389314 --- Sbt in action : Suereth,...\"],[\"http:\\u002f\\u002fcs.gmu.edu\\u002f~sean\\u002flisp\\u002fLispTutorial.html --- :tutorial Learning :Lisp Fast --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.net-results.com\\u002f --- Marketing Automation & Demand Generation Solutions | Net-Results ---...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f284994\\u002f --- :iot :sensors monitor CO2, temperature, humidity, pressure ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmrcoles\\u002ffull-page-screen-capture-chrome-extension --- mrcoles\\u002ffull-page-screen-ca...\"],[\"http:\\u002f\\u002fwww.greywyvern.com\\u002fcode\\u002fmin-height-hack.html --- Prop-Clear: CSS min-height hack --- 2017-05-...\"],[\"http:\\u002f\\u002faimath.org\\u002ftextbooks\\u002fapproved-textbooks\\u002f --- :free :books Approved Textbooks | American Insti...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?displaylang=en&FamilyID=b9c02714-189f-474f-9567-63b7...\"],[\"http:\\u002f\\u002fwww.freewaregenius.com\\u002f2012\\u002f07\\u002f02\\u002ften-of-the-best-free-online-education-resources-that-you-sh...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002fmagazine\\u002fcc163808.aspx --- Speed: NGen Revs Up Your Performance wit...\"],[\"http:\\u002f\\u002fwiki.apache.org\\u002fsolr\\u002fSolJSON --- SolJSON - Solr Wiki --- 2017-05-12...\"],[\"https:\\u002f\\u002fwcfsecurity.codeplex.com\\u002f --- patterns & practices: WCF Security Guidance --- 2017-05-12...\"],[\"http:\\u002f\\u002fpdwhomeautomation.blogspot.com\\u002f2017\\u002f03\\u002fusing-ibm-bluemix-watson-apis-to.html --- :business :t...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmichelou\\u002fandroid-examples --- michelou\\u002fandroid-examples --- 2017-05-12...\"],[\"https:\\u002f\\u002fsphotos-b.xx.fbcdn.net\\u002fhphotos-prn1\\u002fc45.0.403.403\\u002fp403x403\\u002f554484_407633602645640_773387519_...\"],[\"https:\\u002f\\u002fhacks.mozilla.org\\u002f2014\\u002f11\\u002fmozilla-introduces-the-first-browser-built-for-developers-firefox-...\"],[\"http:\\u002f\\u002fvstsscrum.codeplex.com\\u002f --- VSTS Scrum Process Template - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fbeyondrelational.com\\u002fblogs\\u002fcommunity\\u002farchive\\u002f2010\\u002f08\\u002f31\\u002fspeed-dating-using-time-compression-i...\"],[\"http:\\u002f\\u002fcounterparty.io\\u002f --- Counterparty --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2014\\u002f12\\u002f05\\u002femp-proof-electronics\\u002f --- EMP-proof Electronics: What You Need T...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002ftop3dshop\\u002fblog\\u002f288190\\u002f --- :cnc :3D-printers in :China trip to shanghai...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fKanban_%28development%29 --- Kanban (development) - Wikipedia, the free...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=com.alvaro.phrasal&feature=also_installed --- PvP - Ph...\"],[\"https:\\u002f\\u002fgithub.com\\u002fOpenRCE\\u002fsulley --- Sulley - A pure-Python fully automated and unattended fuzzing ...\"],[\"http:\\u002f\\u002faopensource.com\\u002findex.php?more=281 --- AOpenSource.com Android Open Source Details: AnkiDroid...\"],[\"http:\\u002f\\u002fhadoop.apache.org\\u002fdocs\\u002fr2.5.2\\u002fhadoop-project-dist\\u002fhadoop-hdfs\\u002fhdfs-default.xml --- HDFS Perfo...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSOCKS --- SOCKS - Wikipedia, the free encyclopedia --- 2017-05-12...\"],[\"http:\\u002f\\u002fscriptbucket.wordpress.com\\u002f2011\\u002f09\\u002f20\\u002freverse-polish-expression-parser-in-c\\u002f --- None --- 201...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fwp-content\\u002fuploads\\u002f2017\\u002f03\\u002ftop-100-websites.html --- :business Infog...\"],[\"http:\\u002f\\u002fprocessors.wiki.ti.com\\u002findex.php\\u002fGetting_Started_with_the_Stellaris_EK-LM4F120XL_LaunchPad_Wo...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3090083&R=3090083 --- Security engineering :: ...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fhosamkamel\\u002farchive\\u002f2008\\u002f03\\u002f28\\u002fpatterns-and-practices-wcf-security-guidance-no...\"],[\"http:\\u002f\\u002fbuild-solar-power-panel.blogspot.nl\\u002f2013\\u002f11\\u002fhow-many-solar-panels-do-i-need-to.html --- How m...\"],[\"http:\\u002f\\u002fwww.isecom.org\\u002fresearch\\u002fosstmm.html --- ISECOM - Open Source Security Testing Methodology Man...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDaroth\\u002fbookmarks-scala --- GitHub - Daroth\\u002fbookmarks-scala --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.brandwatch.com\\u002f --- Social Media Monitoring Tools - Brandwatch --- 2017-05-12...\"],[\"https:\\u002f\\u002fpeerj.com\\u002fcomputer-science\\u002f --- Peer Reviewed Open Access Journams --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fscrapbook\\u002fHowToCreateArticleVideos.aspx --- CodeProject: Creating, Enc...\"],[\"http:\\u002f\\u002fwww.dotnetnuke.com\\u002fSupport\\u002fDocumentation\\u002fDownloadableFiles\\u002ftabid\\u002f478\\u002fDefault.aspx --- DotNetN...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002fasp-net-apache --- ASP .NET on Apache with Mod Mono - Free .NET hosting ...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fBuild-Your-Own-Motor-Driver\\u002f --- Hello everyone,In this instructable...\"],[\"http:\\u002f\\u002fblog.digital-forensics.it\\u002f2014\\u002f03\\u002fet-voila-le-mimikatz-offline.html --- Zena Forensics: et vo...\"],[\"https:\\u002f\\u002fdanielmiessler.com\\u002f --- Daniel Miessler - Security professional (San Francisco, California) ...\"],[\"http:\\u002f\\u002fhryniewski.net\\u002fcategory\\u002fnet\\u002fakka-net\\u002f --- :Akka :.NET :blogs posts --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002fopening-openid-spring-security --- Opening up to OpenID with ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDotNetToscana\\u002fIoTHelpers --- :.net :nuget :raspberry :Windows :IoT Core features ...\"],[\"https:\\u002f\\u002fresearch.googleblog.com\\u002f2017\\u002f04\\u002fphotoscan-taking-glare-free-pictures-of.html --- :image-proc...\"],[\"http:\\u002f\\u002fwww.15seconds.com\\u002fissue\\u002f040105.htm --- 15 Seconds : Code in Style with ASP.NET Themes --- 201...\"],[\"https:\\u002f\\u002fknow-it-all.io\\u002f --- :javascript :tools learning - Know it all --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdotnet\\u002fNetHtmlEventHandler.aspx --- CodeProject: Handling HTML Events ...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fweb\\u002fwebapptoolkits\\u002fdefault.aspx --- Microsoft Web Platform --- 2017-05-12...\"],[\"http:\\u002f\\u002fgroupoid.space\\u002f --- :functional-programming :lambda-calculus Infinity language --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f3224436\\u002fhow-does-litmus-track-their-email-analytics --- How does ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmailru\\u002fblog\\u002f286990\\u002f --- :gadgets :brain controlled dreams --- 2017-05-1...\"],[\"http:\\u002f\\u002fnortonsafe.search.ask.com\\u002fsearch?&geo=US&prt=NS&locale=en_US&ctype=pictures&o=APN10506&chn=re...\"],[\"http:\\u002f\\u002fwww.seeedstudio.com\\u002fdepot\\u002fs\\u002fgrovefamily.html --- electronic components for robotics --- 2017-...\"],[\"http:\\u002f\\u002fwww.xignite.com\\u002fProducts\\u002fCatalog.aspx --- Web Service Catalog \\\" Xignite --- 2017-05-12...\"],[\"http:\\u002f\\u002fwebdesign.about.com\\u002fb\\u002f2008\\u002f08\\u002f05\\u002fweb-development-tools-can-help-speed-up-your-work.htm --- We...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fdex2jar\\u002fw\\u002flist --- Wiki Pages - dex2jar - Project Hosting on Google Code --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsbt\\u002fsbt-native-packager --- GitHub - sbt\\u002fsbt-native-packager: SBT Native Packager...\"],[\"https:\\u002f\\u002fgithub.com\\u002fJackal08\\u002fQuantInsti-Final-Project-Statistical-Arbitrage --- :trading :r-project T...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002flinux\\u002ftutorials\\u002fl-embedded-distro\\u002findex.html --- Build an embedded...\"],[\"http:\\u002f\\u002fwifi-phone.net\\u002fconc\\u002findex.php\\u002fwifi-phone-network%20 --- Cryptophone comparison :: WiFi Phone ...\"],[\"http:\\u002f\\u002fwww.visualstudiogallery.com\\u002f --- Visual Studio Gallery --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.octaspire.com\\u002fdern\\u002f --- :lisp Programming in Octaspire Dern --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002freplikativ\\u002fkabel --- :clojure replikativ\\u002fkabel: A library for simple wire-like co...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fthetraintocrazy\\u002f19-sewing-hacks-you-should-know-1cun4 --- 19 Sewing Hacks Yo...\"],[\"http:\\u002f\\u002fwww-cs-faculty.stanford.edu\\u002f~knuth\\u002fmmix-news.html --- Knuth: MMIX News --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.resumeblaster.com\\u002fdave-scripts\\u002fwelcome.cfm?CODE= --- ResumeBlaster.com! -- ProActive Resu...\"],[\"http:\\u002f\\u002fwww.toastmasters.org\\u002fwebsiteApps\\u002fsearchresults.asp?ZipCodeProximity=&ClubName=&ClubNumber=&St...\"],[\"http:\\u002f\\u002fmattadamson.blogspot.com\\u002f2005\\u002f08\\u002fvisual-basic-production-debugging.html --- Matt Adamson: Vis...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fpodwysocki\\u002farchive\\u002f2008\\u002f11\\u002f14\\u002fnet-code-contracts-and-tdd-are-complementary.as...\"],[\"http:\\u002f\\u002fnull-byte.wonderhowto.com\\u002fhow-to\\u002fhack-like-pro-remotely-install-keylogger-onto-your-girlfrien...\"],[\"http:\\u002f\\u002fwww.open.gc.ca\\u002findex-eng.asp --- Open Government - Canada --- 2017-05-12...\"],[\"http:\\u002f\\u002fcompany.yandex.ru\\u002ftechnology\\u002fserver\\u002fshareware\\u002fdownload.xml --- Дистрибутивы ЯнÐ...\"],[\"http:\\u002f\\u002fphilipwalton.com\\u002f2011\\u002f07\\u002f04\\u002fpw_typer\\u002f --- jquery plugin --- 2017-05-12...\"],[\"https:\\u002f\\u002fnoggin.intel.com\\u002fcontent\\u002fsimplified-firmware-intel-boot-loader-development-kit --- Simplifie...\"],[\"https:\\u002f\\u002fwww.ovh.com\\u002fca\\u002fen\\u002fvps\\u002f --- VPS Hosting: Virtual Private Server for $2.99 per month - OVH Can...\"],[\"https:\\u002f\\u002fgithub.com\\u002fRevolutionAnalytics\\u002fRHadoop --- RevolutionAnalytics\\u002fRHadoop - GitHub --- 2017-05-...\"],[\"https:\\u002f\\u002fhadoop.apache.org\\u002fdocs\\u002fstable\\u002fhadoop-project-dist\\u002fhadoop-hdfs\\u002fLibHdfs.html --- Apache Hadoop...\"],[\"https:\\u002f\\u002faccess.redhat.com\\u002fblogs\\u002f766093\\u002fposts\\u002f2978671 --- :cryptography Changes coming to :TLS Part T...\"],[\"http:\\u002f\\u002fwww.skillbuilders.com\\u002foracle-apex\\u002fApplication-Express-APEX-Consulting-Training.cfm --- Oracle...\"],[\"https:\\u002f\\u002fdocs.python.org\\u002f2\\u002flibrary\\u002fstdtypes.html --- 5. Built-in Types — Python v2.7.3 documentatio...\"],[\"http:\\u002f\\u002fwww.csc.ncsu.edu\\u002ffaculty\\u002fjiang\\u002fDroidKungFu2\\u002f --- ew DroidKungFu Variants Found in Alternative...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbig-data-and-business-intelligence\\u002fscala-machine-learning --- Scala for Mac...\"],[\"http:\\u002f\\u002fwww.dofactory.com\\u002fjavascript\\u002fiterator-design-pattern --- Iterator :JavaScript :DesignPattern ...\"],[\"http:\\u002f\\u002fnucular.sourceforge.net\\u002f --- NUCULAR fielded text searchable indexing: Documentation --- 2017...\"],[\"http:\\u002f\\u002fgraphml.graphdrawing.org\\u002f --- The GraphML File Format --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.infragistics.com\\u002fdownloads\\u002fdefault.aspx --- Infragistics Downloads --- 2017-05-12...\"],[\"http:\\u002f\\u002flifehacker.com\\u002flearn-basic-linux-commands-with-this-downloadable-cheat-1552019180 --- Learn B...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002ffindcommunities\\u002f --- Finding communities in large networks - Louvain M...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f212425\\u002f --- Приятное тестирование с Espresso \\u002f ХабÑ...\"],[\"https:\\u002f\\u002fwww.udemy.com\\u002fblog\\u002fandroid-screencast\\u002f --- Android Screencast and Screencast Tools --- 2017-...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fgoogletest\\u002f --- Google C++ Testing Framework --- 2017-05-12...\"],[\"https:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002farticles\\u002fintel-software-tools-webinar-series-archive --- Intel Soft...\"],[\"http:\\u002f\\u002fstaruml.tigris.org\\u002f --- staruml.tigris.org --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fProbabilistic_latent_semantic_analysis --- Probabilistic latent semant...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002ffree-cad\\u002f --- FreeCAD | Free Graphics software downloads at SourceFo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fparagonie\\u002fawesome-appsec --- paragonie\\u002fawesome-appsec · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwiki.quantsoftware.org\\u002findex.php?title=QuantSoftware_ToolKit --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fprevent-bites-dangerous-animals\\u002f --- How to Prevent Bites from Dange...\"],[\"http:\\u002f\\u002fwww.iseclab.org\\u002fpapers\\u002fccs28a-lanzi.pdf --- Accessminer: using system-centric models for malw...\"],[\"http:\\u002f\\u002fupx.sourceforge.net\\u002f --- UPX: the Ultimate Packer for eXecutables - Homepage --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPremium_SMS#Premium-rated_short_messages --- SMS - Wikipedia, the free ...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fgp\\u002fproduct\\u002fB01K1ST0P6\\u002f?tag=mytop100gadgets-20&ZA=210816092342 --- Fishing: Wir...\"],[\"http:\\u002f\\u002ferdani.com\\u002fpublications\\u002ftraits.html --- GENERIC Traits: The else-if-then of Types --- 2017-05...\"],[\"https:\\u002f\\u002fabout.commonsearch.org\\u002f --- Common Search --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.graphviz.org\\u002f --- Graphviz - Graph Visualization Software --- 2017-05-12...\"],[\"https:\\u002f\\u002fcodefor.cash\\u002fsignup?utm_campaign=ih --- :job-search Code For Cash signup --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fmaps\\u002fdocumentation\\u002f --- Google Maps API Concepts - Google Maps API - Goo...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=809007 --- SourceForge.net: FVM 1.0 released ! --- 2...\"],[\"http:\\u002f\\u002fplugins.jquery.com\\u002fproject\\u002frightclickmenu --- Right Click Menu v1.0 | jQuery Plugins --- 2017...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002f6t9t5wcf.aspx --- Native Image Generator (Ngen.exe) --- 201...\"],[\"http:\\u002f\\u002faddxorrol.blogspot.ca\\u002f --- ADD \\u002f XOR \\u002f ROL --- 2017-05-12...\"],[\"http:\\u002f\\u002fmy-hit.ru\\u002ffilm\\u002f5751\\u002fonline --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.google.ca\\u002fsearch?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=6pi&q=perso...\"],[\"http:\\u002f\\u002fwepcrack.sourceforge.net\\u002f --- WEPCrack - An 802.11 key breaker --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.7is7.com\\u002fsoftware\\u002ffirefox\\u002f --- Firefox Utilities and Projects --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.emlid.com\\u002f --- EMLID :: Raspberry Pi Linux autopilot --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.spiritofmath.com\\u002fabout3a.html --- Spirit of Math Schools Inc. - About Us - Bio's --- 2017...\"],[\"http:\\u002f\\u002fcharlesreid1.github.io\\u002fcantera-book\\u002f --- The Cantera Book --- 2017-05-12...\"],[\"http:\\u002f\\u002frystsov.info\\u002f2017\\u002f02\\u002f15\\u002fsimple-consensus.html --- In search of a simple consensus :algorithms...\"],[\"https:\\u002f\\u002ftwitter.github.io\\u002ftwitter-server\\u002fMigration.html --- Migration from Ostrich — TwitterServer...\"],[\"https:\\u002f\\u002fpeople.eecs.berkeley.edu\\u002f~jordan\\u002fprelims\\u002f --- :free :books :machine-learning jordan -- Intro...\"],[\"https:\\u002f\\u002fwww.udemy.com\\u002freact-redux\\u002f?couponCode=HSALE10 --- Modern :Reactjs with :Redux :Udemy :moocs ...\"],[\"https:\\u002f\\u002fwww.quantopian.com\\u002fposts\\u002fib-api --- :interactive-brokers :API IbPy PyAlgoTrade --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.fourcc.org\\u002f --- The Almost Definitive FOURCC Definition List --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.nyu.edu\\u002fcourses\\u002ffall08\\u002fG22.3210-001\\u002freading.html --- crypto Reading --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f5869825\\u002fwhen-should-one-use-a-spinlock-instead-of-mutex --- When ...\"],[\"http:\\u002f\\u002filear.codeplex.com\\u002f --- I-LEAR (Interoperability between LEArning Resource formats) --- 2017-...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002fejabberd --- ejabberd - XMPP and Web Chat | TurnKey GNU\\u002fLinux --- 2017-0...\"],[\"http:\\u002f\\u002fwww.cimt.plymouth.ac.uk\\u002fresources\\u002fcodes\\u002f --- Centre for Innovation in Mathematics Teaching - ...\"],[\"http:\\u002f\\u002fwww.hobbylinc.com\\u002fPlastic-Model-Dioramas-All-Scales --- Phoenix-Toys Garage Tools and Accesso...\"],[\"https:\\u002f\\u002fgithub.com\\u002fRudloff\\u002falltube --- Rudloff\\u002falltube · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2817681&R=2817681 --- The IDA pro book the uno...\"],[\"http:\\u002f\\u002fwww.treehugger.com\\u002fsustainable-product-design\\u002fwindoil-wind-powered-oil-press-dave-hakkens.htm...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb397926.aspx --- LINQ on MSDN --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fowainlewis\\u002fawesome-artificial-intelligence --- :moocs :awesome :ai curated list o...\"],[\"https:\\u002f\\u002fgithub.com\\u002flauris\\u002fawesome-scala --- lauris\\u002fawesome-scala ... :awesome :scala A community dri...\"],[\"http:\\u002f\\u002fwww.nsa.gov\\u002fia\\u002fprograms\\u002fsuiteb_cryptography\\u002f --- NSA Suite B Cryptography - NSA\\u002fCSS --- 2017-...\"],[\"http:\\u002f\\u002fwww.drrobot.com\\u002f --- Dr Robot Inc.: WiFi 802.11 robot, Network-based Robot, robotic, robot ki...\"],[\"http:\\u002f\\u002fpolymorphicpodcast.com\\u002ftools\\u002f --- Tools --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fRedth\\u002fPushSharp --- Redth\\u002fPushSharp · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fprojecteuclid.org\\u002fDPubS?service=UI&version=1.0&verb=Display&page=toc&handle=euclid.aop\\u002f117699...\"],[\"http:\\u002f\\u002fwww.cae.com\\u002fen\\u002f --- CAE Inc --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftensorflow\\u002ftensorflow --- tensorflow\\u002ftensorflow · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fProjectOxford-ClientSDK --- GitHub - Microsoft\\u002fProjectOxford-ClientSDK:...\"],[\"http:\\u002f\\u002fwww.leakedin.com\\u002f --- LeakedIn :: Stories About Data Leaks and Related Stuff --- 2017-05-12...\"],[\"https:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002fPortable_Executable --- Portable Executable — Википедия ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fparallelai\\u002fspyglass --- GitHub - ParallelAI\\u002fSpyGlass: Cascading and Scalding wrap...\"],[\"https:\\u002f\\u002fgithub.com\\u002fOmniSharp\\u002fgenerator-aspnet --- OmniSharp\\u002fgenerator-aspnet - C# - GitHub --- 2017-...\"],[\"https:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002frealsense\\u002faero --- :drones :opensource RealSense - Intel® Aero Pla...\"],[\"http:\\u002f\\u002fwww.bhg.com\\u002fgardening\\u002fvegetable\\u002fvegetables\\u002fgrowing-vegetables-in-containers\\u002f --- Growing Vege...\"],[\"https:\\u002f\\u002fqz.com\\u002f952240\\u002frighthand-robotics-has-automated-a-new-type-of-warehouse-work-that-could-help-...\"],[\"http:\\u002f\\u002fwww.doityourselfrv.com\\u002fhow-to-build-a-teardrop-camper-in-133-pictures\\u002f --- How To Build A Tea...\"],[\"http:\\u002f\\u002fseclists.org\\u002ffulldisclosure\\u002f2014\\u002fNov\\u002f51 --- Privilege Escalation using ObjectInputStream --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstathissideris\\u002fspec-provider --- spec-provider Infer :Clojure specs from sample d...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdhamaniasad\\u002fawesome-webcomics --- dhamaniasad\\u002fawesome-webcomics · GitHub --- 201...\"],[\"http:\\u002f\\u002fcorp.bankofamerica.com\\u002fpublic\\u002fpublic.portal?_pd_page_label=merchant\\u002flanding\\u002f250rebate3\\u002findex ...\"],[\"http:\\u002f\\u002fwww.stat.wisc.edu\\u002fcourses\\u002fst850-lindstro\\u002fR\\u002fr.html --- Help with R --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fgtalksms\\u002fwiki\\u002fGenerateAppLog --- gtalksms - How to generate and submit an ...\"],[\"http:\\u002f\\u002fslingfive.com\\u002fpages\\u002fcode\\u002fbrowserCaps\\u002f --- BrowserCaps and other Browser Testing\\u002fDetection Res...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fTermie.aspx --- CodeProject: Termie - A Serial Port Log Window. Fre...\"],[\"https:\\u002f\\u002fgitorious.org\\u002fbuzzmap\\u002fpages\\u002fHome --- buzz map --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.newscientist.com\\u002fblog\\u002ftechnology\\u002f2008\\u002f02\\u002fturn-old-cellphone-into-robots-brain.html --- Ne...\"],[\"http:\\u002f\\u002fwww.logobook.com\\u002f --- :graphic-design Logobook - Discover the worlds finest logos, symbols an...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdevelone\\u002fZedSDR --- develone\\u002fZedSDR · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenweathermap.org\\u002fstations --- openweathermap.org how to connect stations --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=mitnick --- mitnick : eBooks & Online Cont...\"],[\"http:\\u002f\\u002fautobox.com\\u002fcms\\u002findex.php\\u002fblog\\u002fentry\\u002fages-at-death-of-the-kings-of-england?goback=.gde_406659...\"],[\"http:\\u002f\\u002fkurokesu.com\\u002fmain\\u002f2017\\u002f05\\u002f08\\u002f3d-scanning-like-a-pro\\u002f --- :computer-vision 3D scanning like a ...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fInternet_archive --- Internet Archive - Wikipedia, the free encyclopedi...\"],[\"http:\\u002f\\u002fwww.thecoolist.com\\u002ffuture-farming-how-high-tech-organics-make-food-right\\u002fgreen-sky-growers-3\\u002f...\"],[\"https:\\u002f\\u002fxmlnotepad.codeplex.com\\u002f --- XML Notepad - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sei.cmu.edu\\u002fnews\\u002farticle.cfm?assetid=495412&article=081&year=2017 --- :security :cpp Soft...\"],[\"http:\\u002f\\u002fwww.lyrics007.com\\u002fQueen%20Lyrics\\u002fAnother%20One%20Bites%20The%20Dust%20Lyrics.html --- Queen -...\"],[\"http:\\u002f\\u002frsbweb.nih.gov\\u002fij\\u002f\\u002fplugins\\u002findex.html --- ImageJ Plugins --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.telerik.com\\u002fcommunity\\u002flabs\\u002fbetas.aspx --- Telerik Labs Beta products - the latest technol...\"],[\"http:\\u002f\\u002fwww.isi.edu\\u002f~mirkovic\\u002fpublications\\u002fcset14.pdf --- Safe and Automated Live Malware Experimenta...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002f5ast78ax.aspx --- Recommended Tags for Documentation Comment...\"],[\"http:\\u002f\\u002fwww.enginkizil.com\\u002fjquery\\u002fFeedEk\\u002fFeedEk.html --- FeedEk Jquery RSS\\u002fATOM Feed Plugin Demo --- ...\"],[\"http:\\u002f\\u002fwww.cacr.math.uwaterloo.ca\\u002fhac\\u002f --- Handbook of Applied Cryptography --- 2017-05-12...\"],[\"http:\\u002f\\u002fopensourceecology.org\\u002fwiki\\u002fCar --- :green-economy :Car :OpenSource Ecology --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fSocial-Economic-Networks-Matthew-Jackson\\u002fdp\\u002f0691148201 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fpdf-free-download.com\\u002f --- Windows Workflow in .NET 4 Books Online pdf | Download Free Window...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fwpfsdk\\u002farchive\\u002f2007\\u002f01\\u002f15\\u002fmaximizing-wpf-3d-performance-on-tier-2-hardware.asp...\"],[\"http:\\u002f\\u002fwww.wififreespot.com\\u002fcan.html --- free wi-fi Canada Vancouver Toronto Montreal --- 2017-05-12...\"],[\"http:\\u002f\\u002fdrillyourownwell.com\\u002f?gclid=CIeB3PbLorcCFS9dQgodqVIAJA --- How to drill your own water well. ...\"],[\"https:\\u002f\\u002fgeneralabstractnonsense.com\\u002f2017\\u002f03\\u002fA-quick-look-at-Support-Vector-Machines\\u002f --- :machine-le...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=GSzVs7_aW-Y&feature=share --- This video covers the basics of linear ...\"],[\"http:\\u002f\\u002fcryptomining-blog.com\\u002f5344-quick-guide-on-solo-gpu-mining-ethereum-on-windows\\u002f --- Quick Guid...\"],[\"http:\\u002f\\u002fwww.everydaylinuxuser.com\\u002f2014\\u002f05\\u002fhow-to-install-linux-mint-as-virtual.html --- How to instal...\"],[\"http:\\u002f\\u002ffaker.codeplex.com\\u002f --- Faker - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fwindowsmobile\\u002fen-us\\u002ftotalaccess\\u002fdefault.mspx --- Total Access | Free Member...\"],[\"http:\\u002f\\u002fwww.listotic.com\\u002fwhen-to-plant-your-vegetable-garden\\u002f --- When to plant your vegetable garden...\"],[\"http:\\u002f\\u002frus.azattyq.org\\u002fcontent\\u002fKaraganda_wind_energy\\u002f1836167.html --- alternative energy --- 2017-05...\"],[\"http:\\u002f\\u002fwww.sensebot.net\\u002f --- SenseBot - semantic search engine that finds sense on the Web --- 2017-...\"],[\"http:\\u002f\\u002fblois.us\\u002fSnoop\\u002f --- Snoop --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntk=Subject_Search_Interface&Ntt=Embedded+comp...\"],[\"https:\\u002f\\u002fkdenlive.org\\u002fdownloading-and-installing-kdenlive --- Downloading and installing Kdenlive | K...\"],[\"http:\\u002f\\u002fc.learncodethehardway.org\\u002f --- Learn C The Hard Way --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.shapeoko.com\\u002f --- Shapeoko | Precision by DefaultShapeoko | Precision by Default --- 2017...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fVSLua --- GitHub - Microsoft\\u002fVSLua: Visual Studio Tools for Lua --- 201...\"],[\"http:\\u002f\\u002fcamstudio.org\\u002f --- CamStudio - Free Screen Recording Software --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=881962 --- SourceForge.net: News: ODIN Version 0.11 ...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-ca\\u002flibrary\\u002fwindows\\u002fdesktop\\u002faa366551%28v=vs.85%29 --- Creating Named Sha...\"],[\"http:\\u002f\\u002fwillie.dftba.net\\u002f --- Willie - The Python IRC Bot --- 2017-05-12...\"],[\"http:\\u002f\\u002faima.cs.berkeley.edu\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.jegerlehner.ch\\u002fintel\\u002fIntelCodeTable.pdf --- IntelCodeTable.pdf --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002freact-component\\u002fpager\\u002fblob\\u002fmaster\\u002fexamples\\u002flabel.js --- pager :reactjs --- 2017-0...\"],[\"http:\\u002f\\u002fthewpfblog.com\\u002f?cat=3 --- theWPFblog » Flash Crossover --- 2017-05-12...\"],[\"http:\\u002f\\u002fucrel.lancs.ac.uk\\u002fwmatrix\\u002f --- Wmatrix corpus analysis and comparison tool --- 2017-05-12...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fciav7p1\\u002fcms\\u002fpage_26968090.html --- :exploit :security Notepad++ DLL Hijack ---...\"],[\"http:\\u002f\\u002fsamwize.com\\u002f2012\\u002f10\\u002f07\\u002fa-short-scala-tutorial-for-java-developers\\u002f --- A short Scala tutorial...\"],[\"http:\\u002f\\u002f25yearsofprogramming.com\\u002fblog\\u002f20070412a-volatility.htm --- Online Stock Price Volatility Calc...\"],[\"https:\\u002f\\u002fgithub.com\\u002fportcullislabs\\u002fxssshell-xsstunnell --- portcullislabs\\u002fxssshell-xsstunnell · GitH...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fuser\\u002fPavel28101970 --- :aftermarket :cars Jeep Bomb tuning 4x4 offroad - You...\"],[\"http:\\u002f\\u002fwww.sparxsystems.com\\u002fuml-tutorial.html --- UML Tutorial - UML Unified Modelling Language - Sp...\"],[\"http:\\u002f\\u002fwww.ebay.com\\u002fgds\\u002f10-Fast-Growing-Vegetables-for-the-Fall-Garden-\\u002f10000000205608564\\u002fg.html?rok...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002frecipes\\u002fdiffengine.aspx --- CodeProject: A Generic, Reusable Diff Algo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDawny33\\u002fNotes\\u002fblob\\u002fmaster\\u002fProgramming\\u002fScala\\u002fLearning.md --- Learning :scala --- 2...\"],[\"https:\\u002f\\u002fwww.leapmotion.com\\u002f --- Leap Motion | Mac & PC Motion Controller for Games, Design, & More -...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002fheekscad\\u002f --- HeeksCAD & HeeksCNC --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.gentilkiwi.com\\u002fpresentations --- Présentations | Blog de Gentil Kiwi --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.raspberrypi.org\\u002fblog\\u002fraspberry-pi-zero-w-joins-family\\u002f --- :RaspberryPi Zero Wireless fo...\"],[\"http:\\u002f\\u002fwww.mitls.org\\u002fwsgi\\u002fhome --- miTLS - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dotnetcurry.com\\u002faspnet\\u002f1343\\u002faspnet-core-csrf-antiforgery-token --- :security :ASP.NET Cor...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=UYm1DRP4G-w --- MQTT with Gadgeteer - YouTube --- 2017-05-12...\"],[\"https:\\u002f\\u002freact.rocks\\u002f?q=login --- :ReactJS :Examples login component --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fPDF\\u002fSvc-Conf.pdf --- component configurator pattern --- 2017-...\"],[\"http:\\u002f\\u002fxakep.ru\\u002f --- xakep ru --- 2017-05-12...\"],[\"http:\\u002f\\u002fwaf.codeplex.com\\u002f --- WPF Application Framework (WAF) --- 2017-05-12...\"],[\"http:\\u002f\\u002farticles.runtings.co.uk\\u002f2009\\u002f09\\u002fhtmlagilitypack-article-series.html --- HtmlAgilityPack Artic...\"],[\"http:\\u002f\\u002fclickspeak.clcworld.net\\u002fvoices.html --- Additional Voices --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ulalaunch.com\\u002fula-orders-rd180-engines-to-serve-civil.aspx --- ULA Orders RD-180 Engines ...\"],[\"http:\\u002f\\u002fwww.3ders.org\\u002farticles\\u002f20140421-anyone-can-make-diy-furniture-with-these-3d-printed-wood-conn...\"],[\"http:\\u002f\\u002fwww.openwetware.org\\u002fwiki\\u002fDIYbio\\u002fFAQ\\u002fProjects --- :DIY :biotech - OpenWetWare --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002farchitecture\\u002faa699414.aspx --- DW Principles for Supporting Enterpri...\"],[\"http:\\u002f\\u002fwww.w3.org\\u002fTR\\u002fxquery-full-text\\u002f --- XQuery 1.0 and XPath 2.0 Full-Text --- 2017-05-12...\"],[\"https:\\u002f\\u002fclass.stanford.edu\\u002fcourses\\u002fEngineering\\u002fNano\\u002fSummer2014\\u002fabout --- Nano Manufacturing --- 2017...\"],[\"https:\\u002f\\u002farduino-board.com\\u002ftutorials\\u002fesp8266-ap --- ESP8266 WiFi Access Point | Learn about ESP8266 s...\"],[\"http:\\u002f\\u002fwww.fitwirr.com\\u002fworkout\\u002fplan\\u002fmorning-workout-routine\\u002f --- Morning Workout Routine part II. Bu...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsplinterbotnet\\u002fAardvark --- splinterbotnet\\u002fAardvark · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fbeesandroses.com\\u002f2016\\u002f05\\u002f19\\u002f15-amazing-chicken-coop-ideas\\u002f --- Chicken coop, chicken coop ide...\"],[\"http:\\u002f\\u002fsocialmachines.media.mit.edu\\u002f --- The Laboratory for Social Machines | --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=812905 --- SourceForge.net: Cooperative Linux v0.7.3...\"],[\"http:\\u002f\\u002fdeveloper.yahoo.com\\u002fdotnet\\u002f --- .Net Developer Center - Yahoo! Developer Network --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmarcuswestin\\u002fstore.js --- :browser :javascript store.js -- Cross-browser storage ...\"],[\"https:\\u002f\\u002fwww.ejabberd.im\\u002f --- ejabberd Community Site | the Erlang Jabber\\u002fXMPP daemon --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amazon.ca\\u002fConfessions-Street-Addict-James-Cramer\\u002fdp\\u002f0743224876 --- Confessions of a Stree...\"],[\"http:\\u002f\\u002ffinance.sympatico.msn.ca\\u002ftaxes\\u002finsight\\u002farticle.aspx?cp-documentid=6941749 --- Canadians unawa...\"],[\"http:\\u002f\\u002fwww.bestplaces.net\\u002fdocs\\u002fstudies\\u002fcrime1.aspx --- America's Best and Worst Cities for Crime ---...\"],[\"https:\\u002f\\u002fmedium.com\\u002fgreylock-perspectives\\u002ftaking-the-wrong-lesson-from-uber-ae4b41e7c7da#.e3rzzwgo9 -...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fardublock\\u002ffiles\\u002f --- ArduBlock - Visual Programming Environment for ...\"],[\"http:\\u002f\\u002ffuturisticnews.com\\u002ftag\\u002fwearable\\u002f --- NIKE+ INERTIA Augmented Reality Training [Wearable Elect...\"],[\"http:\\u002f\\u002fwww.schnieds.com\\u002f2010\\u002f01\\u002fessential-free-software-for-net.html --- Schnieds Blog: Essential Fr...\"],[\"https:\\u002f\\u002fhacks.mozilla.org\\u002f2017\\u002f04\\u002fhtml5-games-workshop-make-a-platformer-game-with-javascript\\u002f --- :...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fapplication-development\\u002fgetting-started-llvm-core-libraries --- Getting Sta...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fFunctionalCSharp --- Functional C# - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwaldyrious\\u002fawesome-open-company --- waldyrious\\u002fawesome-open-company · GitHub ---...\"],[\"https:\\u002f\\u002ffacebook.github.io\\u002frelay\\u002fdocs\\u002ftutorial.html --- :reactjs :Tutorial Relay :Docs --- 2017-05-1...\"],[\"http:\\u002f\\u002finfo.mapr.com\\u002fresources_ebook_anewlook_anomalydetection.html?cid=resources --- Practical Mach...\"],[\"http:\\u002f\\u002fdocs.spring.io\\u002fautorepo\\u002fdocs\\u002fspring-security\\u002f4.0.0.M2\\u002fapidocs\\u002forg\\u002fspringframework\\u002fsecurity\\u002fco...\"],[\"http:\\u002f\\u002fgosreestr.kz\\u002fru\\u002f --- ГосРеестр - kazakhstan --- 2017-05-12...\"],[\"http:\\u002f\\u002felibrary.fultus.com\\u002f --- Fultus Books - eLibrary --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeobfuscatejavascript.com\\u002f --- Deobfuscate Javascript - Deobfuscate malicious Javascripts for...\"],[\"http:\\u002f\\u002fbankofamericasuck.com\\u002f --- Wikileaks Bank Of America Fraud And Corruption Documents. --- 2017...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=UR_i5XSAKrg&feature=youtu.be --- :exploits :security :video Demo of ...\"],[\"https:\\u002f\\u002fchalarangelo.github.io\\u002fmini.css\\u002findex.html --- :webdesign mini.css - Minimal, responsive, st...\"],[\"http:\\u002f\\u002fwww.3cx.com\\u002fpartners\\u002fvoip-providers.html --- 3CX Supported VOIP Providers --- 2017-05-12...\"],[\"http:\\u002f\\u002fsqlserverbible.com\\u002f --- SQL Server Bible: Smart Database Design Seminar --- 2017-05-12...\"],[\"http:\\u002f\\u002fredmine.corelan.be\\u002f --- Corelan Team --- 2017-05-12...\"],[\"https:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002fforums\\u002ftopic\\u002f281451 --- Welcome to the Android* Applications on Int...\"],[\"http:\\u002f\\u002fthepaleomama.com\\u002f2014\\u002f03\\u002f10-healing-herbs-for-survival-garden\\u002f --- 10 Healing Herbs to Grow i...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fpscl\\u002fvignettes\\u002fcountreg.pdf --- Regression Models for Count D...\"],[\"http:\\u002f\\u002fwww.google.ca\\u002fsearch?q=braindumps&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&clien...\"],[\"http:\\u002f\\u002fmilkwood.net\\u002f2011\\u002f07\\u002f08\\u002fdiy-remote-area-internet\\u002f --- Milkwood off grid internet --- 2017-05-...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fbb985010.aspx --- Garbage Collection: Automatic Memory Mana...\"],[\"https:\\u002f\\u002fnupool.net\\u002f --- NuPool.net - Trustless liquidity pool on Bittrex.com and Poloniex.com --- 20...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=Lf-M1ZH6KME --- Using Clojure with C APIs for crypto and more - lvh ...\"],[\"http:\\u002f\\u002fmike2.openmethodology.org\\u002fwiki\\u002fOntology_Tools --- Ontology Tools - MIKE2.0, the open source m...\"],[\"http:\\u002f\\u002fmccmag.com\\u002fMissionCriticalUniversity\\u002findex.cfm --- MissionCritical Communications, Radio Reso...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fV8_(JavaScript_engine) --- V8 (JavaScript engine) - Wikipedia, the free...\"],[\"http:\\u002f\\u002fandroidcookbook.com\\u002fhome.seam --- Android Cookbook: Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fnanomsg.org\\u002f --- nanomsg :: socket library 2 aim scalability --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fAndroid-RC-Car\\u002f --- Android RC Car --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.floydhub.com\\u002f --- :cloud-hosting Floyd Zero Setup :Deep-Learning --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.pixel-technology.com\\u002ffreeware\\u002ftessnet2\\u002f --- Tessnet2 a .NET 2.0 Open Source OCR assembly ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002ftranslationapi --- Translation API - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.livinggreenandfrugally.com\\u002fhow-to-remove-rust-from-your-tools-using-electrolysis\\u002f --- How...\"],[\"http:\\u002f\\u002fwww.tufat.com\\u002fs_facebook_exporter.htm --- Facebook Profile Crawler - Fetches Facebook Contact...\"],[\"http:\\u002f\\u002fcodecanyon.net\\u002fitem\\u002fjquery-msgbox\\u002ffull_screen_preview\\u002f92626?ref=fusiondevs&clickthrough_id=29...\"],[\"https:\\u002f\\u002fwww.alienvault.com\\u002fopen-threat-exchange\\u002f --- Open Threat Exchange | AlienVault --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.eyequant.com\\u002f --- EyeQuant --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faloisdg\\u002fawesome-regex --- aloisdg\\u002fawesome-regex · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.shipito.com\\u002fshipito-affiliates\\u002f --- shipping to KZ --- 2017-05-12...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002fvision\\u002f --- :android :google-apps :ai :computer-vision Mobile Vision -...\"],[\"http:\\u002f\\u002fwww-01.ibm.com\\u002fsoftware\\u002fanalytics\\u002fspss\\u002fproducts\\u002fmodeler\\u002f --- IBM SPSS Modeler --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gridviewguy.com\\u002fCategories\\u002f7_GridView_Articles.aspx --- gridview --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fvisualwebgui --- Visual WebGui AJAX Framework for Enterprises - Home --- 201...\"],[\"https:\\u002f\\u002fdzone.com\\u002farticles\\u002fhow-add-search-capability-net --- :howto :Search-engine for :.Net Applica...\"],[\"https:\\u002f\\u002fjupyter.readthedocs.org\\u002fen\\u002flatest\\u002finstall.html --- Installation — Jupyter Documentation 4....\"],[\"http:\\u002f\\u002fwww.math.ru\\u002f --- Math.ru --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgiakki\\u002funcss --- :webdev :tools Remove unused styles from CSS --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fsearch\\u002fweb%20scraping --- search for Web Scraping | R-bloggers --- 2017-05...\"],[\"https:\\u002f\\u002fdzone.com\\u002farticles\\u002fthe-observer-pattern-using-modern-java --- The Observer Pattern Using Jav...\"],[\"http:\\u002f\\u002falexgkendall.com\\u002fcomputer_vision\\u002fhave_we_forgotten_about_geometry_in_computer_vision\\u002f --- :de...\"],[\"https:\\u002f\\u002fcodecombat.com\\u002f --- CodeCombat - open source gamification --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fChrisTruncer\\u002fPenTestScripts --- ChrisTruncer\\u002fPenTestScripts · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002fsharpchess.com\\u002f --- SharpChess: Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fusenix.org\\u002f --- USENIX: The Advanced Computing Systems Association --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ca.diigiit.com\\u002fopenbeam-starter-kit-silver-aluminum --- OpenBeam Starter Kit Silver Alumi...\"],[\"http:\\u002f\\u002fwww.dreamincode.net\\u002fforums\\u002ftopic\\u002f233870-building-an-inverted-index\\u002f --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fghtorrent.org\\u002f --- :github :tools The GHTorrent project --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.scholastic.com\\u002fteachers\\u002farticles\\u002fteaching-content\\u002finfants-toddlersactivities-musical-act...\"],[\"http:\\u002f\\u002fnorvig.com\\u002fspell-correct.html --- How to Write a Spelling Corrector --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbrysgo\\u002fgraphql-gun --- :reactjs :graphql :API for the gun p2p graph database --- ...\"],[\"https:\\u002f\\u002fwww.otexts.org\\u002fbook\\u002ffpp --- Forecasting: principles and practice --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fc-cube\\u002fdatalog --- :functional-programming :logic-programming in-memory :datalog ...\"],[\"http:\\u002f\\u002fmakezine.com\\u002f2015\\u002f09\\u002f17\\u002fnifty-drill-bit-sharpening-trick\\u002f?utm_source=sumome&utm_medium=pinter...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=B4jqkbKqS0s --- Welding Fabrication Basics - Intro to Metals and Tool...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fsmarterplanet\\u002fus\\u002fen\\u002fibmwatson\\u002fecosystem.html --- Supercomputer becomes Chief Worl...\"],[\"http:\\u002f\\u002fwww.eegaga.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.towerhobbies.com\\u002f --- Tower Hobbies - Best Source for Radio Control ( R\\u002fC or RC ) Cars, T...\"],[\"http:\\u002f\\u002fmsdsug.microsoft.com\\u002ftips-tricks\\u002ftips-tricks-issue-2-february-2016\\u002f --- Tips & Tricks - Issue...\"],[\"https:\\u002f\\u002fwww.sparkfun.com\\u002fnews\\u002f1801 --- State Machines: blink.ino learns to snooze - News - SparkFun ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmbj36\\u002fawesome-service-workers --- :javascript :awesome Collection of Service Work...\"],[\"http:\\u002f\\u002fwww.r-users.com\\u002f --- Jobs for R-users | A job board for people and companies looking to hire ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f282800\\u002f --- :nasa emdrive report --- 2017-05-12...\"],[\"http:\\u002f\\u002fbuild-solar-power-panel.blogspot.nl\\u002f2013\\u002f07\\u002fits-easy-to-learn-how-to-make-solar.html --- How ...\"],[\"https:\\u002f\\u002fwww.benthamsgaze.org\\u002f2016\\u002f01\\u002f19\\u002finsecure-by-design-protocols-for-encrypted-phone-calls\\u002f --- ...\"],[\"https:\\u002f\\u002fiamtrask.github.io\\u002f2017\\u002f03\\u002f21\\u002fsynthetic-gradients\\u002f?hn=3 --- :Deep-Learning without Backpropa...\"],[\"https:\\u002f\\u002fexplorer.etherapps.info\\u002fstats\\u002fmining --- ethereum mining stats --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.linuxquestions.org\\u002fquestions\\u002fprogramming-9\\u002fmmap-tutorial-c-c-511265\\u002f --- mmap tutorial (C...\"],[\"http:\\u002f\\u002fcodecondo.com\\u002freactjs-resources\\u002f --- 10 Resources to Get You Started with :ReactJS --- 2017-0...\"],[\"http:\\u002f\\u002fwww.talkster.com\\u002f --- Talkster free international calling --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjohnmyleswhite\\u002fML_for_Hackers --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fsignal-to-noise.xyz\\u002fpost\\u002fbk-tree\\u002f --- bk-tree :data-structures --- 2017-05-12...\"],[\"http:\\u002f\\u002fphytoblog.ru\\u002f2013\\u002f05\\u002fdieta-5a-pitanie-pri-gepatite-cirroze-xolecistite-pankreatite\\u002f --- liver...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fqira\\u002f --- qira - QEMU Interactive Runtime Analyser - Google Project Hosting...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002faa155133.aspx --- Internet Explorer Development --- 2017-05...\"],[\"http:\\u002f\\u002fwww.rodsbooks.com\\u002frefind\\u002findex.html --- The rEFInd Boot Manager --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.merriam-webster.com\\u002f --- merriam-webster.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeeplearni.ng\\u002f --- :vendor :deep-learning DeepLearni.ng --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.technet.com\\u002fb\\u002fjhoward\\u002farchive\\u002f2008\\u002f03\\u002f29\\u002fhow-to-add-the-hyper-v-role-to-a-windows-serve...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002frosherove\\u002farchive\\u002f2007\\u002f07\\u002f27\\u002fessential-software-to-install-on-a-new-computer....\"],[\"http:\\u002f\\u002fwww.gearbest.com\\u002fip-cameras\\u002fpp_607361.html?utm_source=geektimes&utm_medium=yulia&utm_campaign...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fnicolenguyen\\u002fhacks-every-student-should-know?utm_medium=email&utm_campaign=N...\"],[\"http:\\u002f\\u002fwww.python-course.eu\\u002fpython3_memoization.php --- Python3 Tutorial: Memoization and Decorators...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHow-to-make-a-simple-ultrasonic-radar-system-\\u002f --- How to make a sim...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fKigg --- KiGG - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fiirvine\\u002fprinciples-of-reactive-programming --- GitHub - iirvine\\u002fprinciples-of-rea...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286976\\u002f --- :mobile Meizu Pro 5 Ubuntu Edition use case --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.asteriskguru.com\\u002ftutorials\\u002fxlite_softphone.html --- X-Lite - SIP softphone --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.google.com\\u002fsearch?q=how+to+build+a+teardrop+camper&rlz=1C2PRFE_enUS552US552&biw=1242&bih...\"],[\"http:\\u002f\\u002fwww.adp-gmbh.ch\\u002fwin\\u002fprogramming\\u002favi\\u002favi.html --- A C++ class to create AVI files --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.saylor.org\\u002fpathways\\u002f --- saylor.org :: free and open collection of college level courses ...\"],[\"http:\\u002f\\u002ftartarus.org\\u002f~martin\\u002fPorterStemmer\\u002findex.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ironspread.com\\u002fquickstart.html --- IronSpread --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.rdatamining.com\\u002fdocs --- Documents - RDataMining.com: R and Data Mining --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.adafruit.com\\u002fproducts\\u002f98 --- GPS tracker --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faveragesecurityguy\\u002fprometheus --- averagesecurityguy\\u002fprometheus · GitHub --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fadambard\\u002flearnxinyminutes-docs --- adambard\\u002flearnxinyminutes-docs --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.tweag.io\\u002fposts\\u002f2017-03-13-linear-types.html --- :compiler :haskell Linear types make :pe...\"],[\"https:\\u002f\\u002fbitbucket.org\\u002fjimmod\\u002fspy-camera-os\\u002fwiki\\u002fHome --- jimmod \\u002f Spy Camera OS \\u002f wiki \\u002f Home — Bi...\"],[\"http:\\u002f\\u002fstylizedweb.com\\u002f2008\\u002f03\\u002f12\\u002fmost-used-css-tricks\\u002f --- Most used CSS tricks | StylizedWeb.com ...\"],[\"http:\\u002f\\u002fdiytotry.com\\u002fthings-you-can-build-with-2x4s\\u002f --- Here are 21 brilliant woodworking projects t...\"],[\"http:\\u002f\\u002fkodos.sourceforge.net\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fonline.stanford.edu\\u002fcourse\\u002fintroduction-haptics-self-paced --- Introduction to Haptics (Self-...\"],[\"http:\\u002f\\u002fwww.lynda.com\\u002f --- Online video tutorials & training | lynda.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fmultiagent.com\\u002f --- CSCE 782: Multiagent Systems --- 2017-05-12...\"],[\"http:\\u002f\\u002fexceptional-code.blogspot.ca\\u002f2012\\u002f09\\u002fgenerating-all-permutations.html --- :algorithms :java E...\"],[\"http:\\u002f\\u002fsearchengineland.com\\u002fjob-search-engines-the-hottest-thing-going-16274 --- Job Search Engines:...\"],[\"http:\\u002f\\u002fwww.treehugger.com\\u002flawn-garden\\u002f3-easy-diy-greenhouses-under-300.html --- 3 Easy DIY Greenhous...\"],[\"http:\\u002f\\u002fwww.careerbuilder.com\\u002fArticle\\u002fCB-328-Cover-Letters-and-Resumes-Resume-Distribution-Secrets\\u002f?A...\"],[\"https:\\u002f\\u002ftimgilbert.wordpress.com\\u002f2016\\u002f11\\u002f27\\u002fadventures-in-client-side-routing-with-reframe-and-oauth...\"],[\"http:\\u002f\\u002fwww.netfor2.com\\u002fcontents.htm --- Internet Protocols. Description and Packet Format --- 2017-0...\"],[\"https:\\u002f\\u002frare-technologies.com\\u002frrp-2-john-d-cook-consulting\\u002f --- :machine-learning :math consulting :...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmartinmarinov\\u002fTempestSDR --- :security :signal-processing :radio TempestSDR -- Re...\"],[\"http:\\u002f\\u002ftexone.github.io\\u002fcreativecomputing\\u002f --- :markdown :static-sites Creativecomputing by texone -...\"],[\"https:\\u002f\\u002fgithub.com\\u002frebootuser\\u002fLinEnum --- rebootuser\\u002fLinEnum --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fispyconnect\\u002f --- ispyconnect - Security and surveillance software - Google ...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fgoogle\\u002fplay\\u002fbilling\\u002fbilling_admin.html --- Administering In-app Billing...\"],[\"https:\\u002f\\u002fwww.research.ibm.com\\u002fibm-q\\u002fqx\\u002f --- :cloud :Quantum Experience - IBM Q - IBM Research --- 201...\"],[\"http:\\u002f\\u002fsource.android.com\\u002fsource\\u002fbuilding-kernels.html --- Building Kernels | Android Open Source --...\"],[\"http:\\u002f\\u002fqt.nokia.com\\u002fproducts\\u002f --- Qt — Qt - A cross-platform application and UI framework --- 2017...\"],[\"https:\\u002f\\u002fwww.ooooby.org\\u002ffresno --- Local Organic Food | Fresh California, USA Produce | Buy Farm Fres...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fZAP --- OWASP Zed Attack Proxy --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fromannurik\\u002fAndroidAssetStudio --- romannurik\\u002fAndroidAssetStudio · GitHub --- 201...\"],[\"http:\\u002f\\u002fopenage.sft.mx\\u002f --- openage - Age of Empires --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fhow-normal-investors-can-use-same-strategies-as-hedge-funds\\u002f --- How...\"],[\"https:\\u002f\\u002ftozny.com\\u002fblog\\u002fcrypto-tools-for-devops-git-crypt\\u002f --- :cryptography Crypto :Tools for DevOps...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2868052&R=2868052 --- Facebook application dev...\"],[\"http:\\u002f\\u002fwww.windevpowertools.com\\u002fTools\\u002f37 --- Windows Developer Power Tools - NUnitForms --- 2017-05-...\"],[\"http:\\u002f\\u002fsimhacks.github.io\\u002f --- Information about SIM Cards and STK Applets. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.infosecnotes.com\\u002fflash0dayitw-cve-2014-0515\\u002f --- Flash 0-day exploit in the wild CVE-2014...\"],[\"http:\\u002f\\u002famplab.github.io\\u002fkeystone\\u002findex.html --- KeystoneML --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fAmazing-3D-Projection-Pyramid-in-10-min-from-Clear\\u002f --- :diy :hologr...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fattribution_link?a=AClEtOtsPYw&u=\\u002fwatch%3Fv%3DJKd5I428JxA%26feature%3Dshare -...\"],[\"http:\\u002f\\u002flivedocs.adobe.com\\u002facrobat_sdk\\u002f9.1\\u002fAcrobat9_1_HTMLHelp\\u002fwwhelp\\u002fwwhimpl\\u002fcommon\\u002fhtml\\u002fwwhelp.htm?...\"],[\"https:\\u002f\\u002fpurelyfunctional.tv\\u002farticle\\u002ftricks-for-java-interop\\u002f --- :java :clojure interop how to --- 2...\"],[\"http:\\u002f\\u002fwww.smartschoolhouse.com\\u002fdiy-crafts\\u002fgardening-hacks#_a5y_p=3432213 --- 8 Genius Gardening Hac...\"],[\"http:\\u002f\\u002fforensicswiki.org\\u002fwiki\\u002fSIM_Card_Forensics --- SIM Card Forensics - ForensicsWiki --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.bluebytesoftware.com\\u002fblog\\u002fPermaLink,guid,88e62cdf-5919-4ac7-bc33-20c06ae539ae.aspx --- Jo...\"],[\"http:\\u002f\\u002fcommunity.livejournal.com\\u002ftoronto_ru\\u002f929386.html?thread=15846506#t15846506 --- toronto_ru: Wi...\"],[\"http:\\u002f\\u002fwww.sharpregion.com\\u002fpost\\u002fA-fluent-repeater.aspx --- A fluent repeater --- 2017-05-12...\"],[\"http:\\u002f\\u002fartificialbrain.xyz\\u002fartificial-intelligence-complete-lectures-01-23\\u002f --- :videos :deep-learni...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fsna\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fbusinessprofiles.com\\u002fdetails\\u002fASTA_NOVA_ENTERPRISE_SOLUTIONS_INC\\u002fCA-842768426RC0001 --- info a...\"],[\"http:\\u002f\\u002fpauldotcom.com\\u002f2012\\u002f02\\u002fdumping-cleartext-credentials.html --- PaulDotCom: Archives --- 2017-0...\"],[\"http:\\u002f\\u002fwww.icsharpcode.net\\u002f --- ic#code --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002flearning\\u002fen\\u002fus\\u002fBooks\\u002f6522.aspx --- CLR via C#, Second Edition --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.hackerguardian.com\\u002f --- Free Network Security with PCI Scan for Vulnerability Assessment ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fprincejwesley\\u002fMancy\\u002freleases --- :tools :javascript repl -- Mancy --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285320\\u002f --- :manufacturing :iot :tools :opensource :agriculture :robotics ...\"],[\"http:\\u002f\\u002fmindstorms.lego.com\\u002fen-us\\u002fDefault.aspx --- LEGO.com MINDSTORMS : Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fneo4j.com\\u002fdeveloper\\u002fdotnet\\u002f --- Using Neo4j from .NET - Neo4j Graph Database --- 2017-05-12...\"],[\"http:\\u002f\\u002fteam.silverlight.net\\u002fannouncements\\u002fgetting-started-with-silverlight\\u002f --- The Silverlight Blog...\"],[\"http:\\u002f\\u002finstone.org\\u002fnavstress --- Navigation stress test | Keith Instone --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fos --- os - Artificial Intelligence Operating System - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fGDI-plus\\u002fFluidGeometry.aspx --- CodeProject: Fluid Geometry - An Anima...\"],[\"http:\\u002f\\u002fwiki.linuxquestions.org\\u002fwiki\\u002fNetworking --- Networking - LQWiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fOptimistic_concurrency_control --- Optimistic concurrency control - Wik...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fdoubango\\u002f --- doubango - cross-platform 3GPP IMS\\u002fLTE framework for embedded...\"],[\"http:\\u002f\\u002fwww.nrbook.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fT-distribution --- student's t-distribution --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dd-wrt.com\\u002fwiki\\u002findex.php\\u002fSiproxd --- Siproxd - DD-WRT Wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fCOM_port_redirector --- COM port redirector - Wikipedia, the free encyc...\"],[\"http:\\u002f\\u002findulgy.com\\u002fpost\\u002ffjkMZZd2k1\\u002fteardrop-trailer-redtrailerscom --- TEARDROP Tear Drop RV Camper ...\"],[\"http:\\u002f\\u002fwww.wikihow.com\\u002fMake-Waterproof-Matches --- How to Make Waterproof Matches --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.meetup.com\\u002fscalator\\u002f --- scala meetup toronto --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww-2.cs.cmu.edu\\u002fafs\\u002fcs\\u002fuser\\u002faberger\\u002fwww\\u002fhtml\\u002ftutorial\\u002ftutorial.html --- A Brief Maxent Tutor...\"],[\"http:\\u002f\\u002fgaragelab.com\\u002fprofiles\\u002fblogs\\u002ftutorial-stepper-motor-easy-driver-arduino --- Tutorial: Stepper...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fzergRush\\u002fblob\\u002fmaster\\u002fzergRush.c --- zergRush\\u002fzergRush.c - root exp...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fdn879355.aspx --- How C# 6.0 Simplifies, Clarifies and Con...\"],[\"http:\\u002f\\u002frawgit.com\\u002f --- RawGit serves raw files from :github with proper content-type --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvhf\\u002ffree-programming-books\\u002fblob\\u002fmaster\\u002ffree-programming-books-ru.md --- free-prog...\"],[\"http:\\u002f\\u002fsource.android.com\\u002faccessories\\u002fcustom.html --- Building Custom Accessories | Android Develope...\"],[\"https:\\u002f\\u002fcse.google.com\\u002fcse?cx=partner-pub-3720690829065633%3A9p8fr4-u91g&ie=ISO-8859-1&q=%23english#...\"],[\"http:\\u002f\\u002fwww.dx.com\\u002fp\\u002fdiy-android-4-0-motherboard-development-board-green-180172#.VBxmRbbm5ZI --- DIY ...\"],[\"http:\\u002f\\u002f9gag.com\\u002fgag\\u002fazb8Aeb?ref=pn --- This is the most useful life hack section I have ever seen! -...\"],[\"https:\\u002f\\u002fwww.tandyleatherfactory.com\\u002f --- Tandy Leather Factory - Leathercraft and Leather Craft Supp...\"],[\"http:\\u002f\\u002fwww.fastcompany.com\\u002f3053291\\u002felasticity\\u002fhow-satellite-data-and-artificial-intelligence-could-h...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=vzSjlLzGB1A&list=PLwAKR305CRO_1yAao-8aZiQnBqJeyng4O --- :javascript ...\"],[\"http:\\u002f\\u002fzegoggl.es\\u002f2009\\u002f12\\u002fbuilding-android-apps-in-scala-with-sbt.html --- Building Android apps in ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsensepost\\u002fgo-derper --- sensepost\\u002fgo-derper · GitHub - hacking memcached servers...\"],[\"http:\\u002f\\u002fwww.whoishostingthis.com\\u002fblog\\u002f2013\\u002f12\\u002f17\\u002ftor-deep-web\\u002f --- Everything You Need to Know on TOR...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fAsterisk+at+large --- Asterisk at large - voip-info.org --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fr8\\u002fvagrant-lamp --- r8\\u002fvagrant-lamp · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@heymino\\u002fmarriage-of-blockchain-and-semantic-web-e22905391644 --- :ontology Marri...\"],[\"http:\\u002f\\u002fwiki.asp.net\\u002f --- ASP.NET Wiki --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmcxiaoke\\u002fndkguide --- NDK Beginner's Guide Notes --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.home.ix.netcom.com\\u002f~jdhowell\\u002fid1.html --- solar stove top cooker using circular pattern i...\"],[\"http:\\u002f\\u002fthegeez.net\\u002f2012\\u002f04\\u002f03\\u002fwhy_browserchannel.html --- :clojure :google-apps thegeez blog - Why B...\"],[\"http:\\u002f\\u002fwww.kleinbottle.com\\u002f --- :math Acme Klein Bottle --- 2017-05-12...\"],[\"http:\\u002f\\u002ftools.pingdom.com\\u002ffpt\\u002f --- Pingdom Tools --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fos\\u002fHandler.html --- Handler | Android Developers --- ...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002farticles\\u002fHTML\\u002f88605\\u002f --- Parsing HTML to SQL using SQLDOM - SQLServe...\"],[\"http:\\u002f\\u002fwww.rforge.net\\u002f --- RForge.net - development environment for R package developers --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002findatawetrust\\u002freporter --- :Crawler queue creation :tools for paging --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmcpp\\u002fdotnetsetup.aspx --- CodeProject: Enhanced .NET Bootstrap Setup. ...\"],[\"http:\\u002f\\u002ftwitter.com\\u002f#!\\u002fcanimmigrant --- start up help for immigrants --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fmath-sports-notredamex-mat150x --- edx :: Math in Sports --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkristianmandrup\\u002fDatascript-tutorial --- :logic-programming datascript :tutorial D...\"],[\"http:\\u002f\\u002fwww.dmxzone.com\\u002fshowDetail.asp?TypeId=2&NewsId=9420 --- Add Flash to Your .NET WinForms to Cr...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdfilter=move%20certs&fdid=com.nutomic.zertman --- F-Droid ::...\"],[\"http:\\u002f\\u002fbulba.sdsu.edu\\u002fjeanette\\u002fthesis\\u002fPennTags.html --- Penn Treebank Tags --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fserver-management\\u002fmmcsnapinHelloWorld.aspx --- CodeProject: Create a M...\"],[\"http:\\u002f\\u002ftinyyellowteardrop.blogspot.com\\u002f2014\\u002f07\\u002ftall-trees-tiny-trailers-international.html --- So co...\"],[\"http:\\u002f\\u002fwww.cmd5.org\\u002f --- online md5 cracker,md5 reverse, md5 decrypt --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.continuum.io\\u002f --- Continuum Analytics --- 2017-05-12...\"],[\"http:\\u002f\\u002fhome.inf.fh-rhein-sieg.de\\u002f~ikarim2s\\u002fhow2injectcode\\u002fcode_inject.html --- How to inject code in...\"],[\"http:\\u002f\\u002fmicrosoft.github.io\\u002fRTVS-docs\\u002fsqlserver.html --- :r-project :visual-studio SQL Server Integra...\"],[\"http:\\u002f\\u002fwww.ghostsec.org\\u002f --- GhostSec --- 2017-05-12...\"],[\"http:\\u002f\\u002fncase.me\\u002floopy\\u002f --- :ai LOOPY: a :tool for thinking in systems --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gtcenter.org\\u002f --- Center for Game Theory in Economics --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.windevpowertools.com\\u002fTools\\u002f60 --- Windows Developer Power Tools - DockPanel Suite --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fngircd\\u002fngircd --- GitHub - ngircd\\u002fngircd: Free, portable and lightweight Internet...\"],[\"https:\\u002f\\u002fwww.doba.com\\u002f --- Doba :: drop shipping marketplace created to help online retailers --- 201...\"],[\"http:\\u002f\\u002fwww.cl.cam.ac.uk\\u002f~rja14\\u002fbook.html --- Security Engineering - A Guide to Building Dependable D...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002faa932172.aspx --- Shell, GWES, and User Interface --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fanychart-integrations\\u002fanychart-clojure-sample --- :javascript :clojure :sample an...\"],[\"http:\\u002f\\u002fwww.schemers.org\\u002fDocuments\\u002f#all-texts --- schemers.org: books --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.brit.co\\u002fraspberry-pi-projects\\u002f?utm_campaign=pinbutton_hover --- 15 of the Most Creative R...\"],[\"http:\\u002f\\u002fblog.hemmings.com\\u002findex.php\\u002f2007\\u002f04\\u002f26\\u002falmost-free-garage-heat-just-drink-a-lot-of-soda\\u002f#more...\"],[\"http:\\u002f\\u002fbestbeautytipsfor.me\\u002fhow-to-get-rid-of-a-sinus-headache\\u002f --- Pressure Points for a Foot Massa...\"],[\"http:\\u002f\\u002fwww.didww.com\\u002fBecome-a-reseller --- Become a reseller | DIDWW --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.windbg.info\\u002f --- Welcome to WinDbg.info --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002frecipes\\u002fsota_expression_evaluator.aspx --- CodeProject: State of the A...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPhalanger_(compiler) --- Phalanger (compiler) - Wikipedia, the free enc...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmutantbob\\u002fndk-speex --- mutantbob\\u002fndk-speex · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002ftwitter.com\\u002fedgerocket\\u002flists\\u002fcourse-providers\\u002fmembers --- @edgerocket\\u002fCourse Providers on Tw...\"],[\"http:\\u002f\\u002fgooglecloudplatform.blogspot.ca\\u002f2015\\u002f10\\u002fadd-backend-logic-to-real-time-data-with-Firebase-and...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fms771496.aspx --- Resources Samples (WPF) --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f5627164\\u002fare-there-any-open-source-implementations-of-the-mercator...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb820878.aspx --- Video How to: Create a C# WPF Application...\"],[\"http:\\u002f\\u002fplugins.jquery.com\\u002fproject\\u002fplum_Form_A_jQuery_Form_Styling_Tool --- form styling --- 2017-05-...\"],[\"https:\\u002f\\u002fdevelopers.facebook.com\\u002fproducts\\u002ffb-start --- FbStart --- 2017-05-12...\"],[\"http:\\u002f\\u002fdocs.oracle.com\\u002fjavase\\u002ftutorial\\u002fessential\\u002fconcurrency\\u002fthreads.html --- Thread Objects (The Ja...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002fsnake-bites-infographic\\u002f --- Survive Snake Bites with This Helpful Infograph...\"],[\"http:\\u002f\\u002fwww.thingiverse.com\\u002fsearch\\u002fpage:1?q=laser&sa= --- thingieverse search for laser --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.sitelock.com\\u002f --- Website Security | Trust Seals | Protect Your Site with SiteLock | Home...\"],[\"http:\\u002f\\u002fsushi.codeplex.com\\u002f --- SharePoint SUSHI --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.societyofrobots.com\\u002f --- How to Build a Robot Tutorials - Society of Robots --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fArduino-door-lock-with-password\\u002f --- Arduino door lock with password...\"],[\"http:\\u002f\\u002fmetroland.com\\u002fPressreleases\\u002f102404\\u002fUlan_Sametov_New_Solution_Developer --- Metroland.com - Ul...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=vXGH6q43i_k&feature=youtu.be --- Joel's First Time Using the Ethereu...\"],[\"http:\\u002f\\u002fwww.dailytechinfo.org\\u002frobots\\u002f7141-mashiny-monstry-hadrian-robot-kamenschik-sposobnyy-postroit...\"],[\"https:\\u002f\\u002fgithub.com\\u002fptrkrysik\\u002fgr-gsm --- ptrkrysik\\u002fgr-gsm · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmikispag\\u002frosettaflash --- rosetta flash - A tool for manipulating SWF files --- 2...\"],[\"https:\\u002f\\u002fcircleci.com\\u002fblog\\u002fcharting-language\\u002f --- :clojure :Machine-learning pretty pictures bad puns...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002fplants-that-repel-insects\\u002f --- repel insects with crysanthemums | Plants Tha...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpaypal\\u002fPayPal-Android-SDK\\u002ftree\\u002fmaster\\u002fSampleApp --- PayPal-Android-SDK\\u002fSampleApp ...\"],[\"http:\\u002f\\u002fwww.globalwordnet.org\\u002fgwa\\u002fwordnet_table.htm --- Wordnets in the world --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fdesign\\u002fpatterns\\u002fmulti-pane-layouts.html --- Android Design - Multi-pane...\"],[\"https:\\u002f\\u002fgithub.com\\u002fJoshData\\u002fpraat-py --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.online-convert.com\\u002fresult\\u002f263318214194640b7a3fdf00f5dcafac --- online hash tool --- 2017-...\"],[\"http:\\u002f\\u002fwww.subsonicproject.com\\u002f --- SubSonic: All Your Database Are Belong To Us --- 2017-05-12...\"],[\"http:\\u002f\\u002fucallweconn.net\\u002f?s=dialling&frc=19&toc=9&city=357&lang=en --- cheap call: 1.7 cent per minute...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhoneynet\\u002fapkinspector\\u002f --- APKInspector --- 2017-05-12...\"],[\"http:\\u002f\\u002fkrebsonsecurity.com\\u002f --- Krebs on Security --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.techsolutions.net\\u002fBlog\\u002ftabid\\u002f65\\u002fEntryId\\u002f17\\u002fFab-40-Templates-for-MOSS-2010.aspx --- TechSo...\"],[\"http:\\u002f\\u002fwww.linuxhomenetworking.com\\u002fwiki\\u002findex.php#.U2Jne7ZCrlc --- Linux Home Networking --- 2017-05...\"],[\"http:\\u002f\\u002fwww.obdii.com\\u002f --- OBD-II - On-Board Diagnostic System --- 2017-05-12...\"],[\"http:\\u002f\\u002fopenclnet.codeplex.com\\u002f --- OpenCL.Net --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fcom-droid\\u002f --- ComDroid to write messages and show the current state of th...\"],[\"http:\\u002f\\u002felitedaily.com\\u002flife\\u002fmotivation\\u002f20-things-that-mentally-strong-people-dont-do\\u002f --- 20 Things T...\"],[\"https:\\u002f\\u002fbitbucket.org\\u002frflechner\\u002fraspberrycam\\u002fwiki\\u002fHome --- :mono :.net :camera :Raspberry access to ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdotnet\\u002fHardcoreDotNET.aspx --- Hardcore Microsoft .Net - CodeProject -...\"],[\"http:\\u002f\\u002facestream.org\\u002f --- Ace Stream --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.youth.gc.ca\\u002feng\\u002fyip\\u002f1122.shtml --- What's in it for an intern? --- 2017-05-12...\"],[\"https:\\u002f\\u002fblogs.technet.microsoft.com\\u002fmachinelearning\\u002f2015\\u002f07\\u002f24\\u002fintroducing-jupyter-notebooks-in-azur...\"],[\"https:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fMATLAB_Programming\\u002fDifferences_between_Octave_and_MATLAB --- MATLAB Pr...\"],[\"http:\\u002f\\u002fwww.bintime.com\\u002faction\\u002fservices\\u002fsection\\u002f20\\u002findex.htm --- BInTime --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f3444331\\u002fhow-can-i-run-ravendb-in-a-shared-hosting-environment ---...\"],[\"http:\\u002f\\u002fwww.jazzguitar.be\\u002fblog\\u002fkiller-joe-jazz-guitar-chord-study\\u002f --- Killer Joe Jazz Guitar Chord S...\"],[\"http:\\u002f\\u002fwww.dynamicdrive.com\\u002fstyle\\u002f --- Dynamic Drive CSS Library- Practical CSS codes and examples -...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002finfomap-nlp\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fDIY-2k2560x1440-Beam-Projector\\u002f --- DIY 2k(2560x1440) LED beam proje...\"],[\"http:\\u002f\\u002fhomeidea.ru\\u002f --- :business :startup home manufacturing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wakanda.org\\u002foverview --- What is Wakanda? | wakanda --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fPDF\\u002fACE-concurrency.pdf --- Lightweight OS Concurrency Mechan...\"],[\"http:\\u002f\\u002fleecampbell.blogspot.ru\\u002f2010\\u002f08\\u002frx-part-7-hot-and-cold-observables.html --- LeeCampbell: Rx P...\"],[\"http:\\u002f\\u002fbitcoin.stackexchange.com\\u002fquestions\\u002f1\\u002fwhat-open-source-miner-applications-are-there --- minin...\"],[\"https:\\u002f\\u002fwww.yugma.com\\u002f --- Yugma: Free Web Conferencing, Web Conferencing, Online Meetings, Net Meet...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fAppArchGuide\\u002f --- patterns & practices: Application Architecture Guide 2.0 (...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdotnet\\u002fadsdotnet.aspx --- CodeProject: ADSdotNET: A DLL for using alte...\"],[\"http:\\u002f\\u002flambda-the-ultimate.org\\u002fnode\\u002f5419 --- :logic-programming Logic Production Systems (LPS) | Lam...\"],[\"http:\\u002f\\u002fpajek.imfm.si\\u002fdoku.php --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fpyemu\\u002f --- pyemu - Google Code --- 2017-05-12...\"],[\"http:\\u002f\\u002fkasperskycontenthub.com\\u002fpresscenter\\u002ffiles\\u002f2013\\u002f06\\u002fReport_Java_under_attack_2012-2013.pdf --- ...\"],[\"http:\\u002f\\u002fspritegen.website-performance.org\\u002f --- CSS Sprite Generator | Project Fondue --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.indiana.edu\\u002fscheme-repository\\u002f --- The Internet Scheme Repository Home Page --- 2017-0...\"],[\"http:\\u002f\\u002fdoc.satoshilabs.com\\u002f --- SatoshiLabs Documentation :: TREZOR --- 2017-05-12...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fvault7\\u002f?marble9#Marble%20Framework​ --- :WikiLeaks - Vault 7: marble framewo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdouglascraigschmidt\\u002fPOSA-14\\u002ftree\\u002fmaster\\u002fassignments\\u002fassignment0 --- POSA-14\\u002fassig...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fFile:Bourne_Shell_Scripting.pdf --- File:Bourne Shell Scripting.pdf - W...\"],[\"http:\\u002f\\u002fwww.machinelearning.ru\\u002fwiki\\u002findex.php?title=%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%...\"],[\"http:\\u002f\\u002fm.wikihow.com\\u002fConvert-a-Computer-ATX-Power-Supply-to-a-Lab-Power-Supply --- Convert a Compute...\"],[\"http:\\u002f\\u002fyearzerosurvival.com\\u002f --- Water survival --- 2017-05-12...\"],[\"http:\\u002f\\u002fciteseerx.ist.psu.edu\\u002fviewdoc\\u002fsummary;jsessionid=7D4191135B1F2D730180371CE7ADF01D?doi=10.1.1....\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fpramode_ce\\u002fintroduction-to-functional-programming-with-scala --- Introduct...\"],[\"http:\\u002f\\u002fwww.cc.gatech.edu\\u002f~klu38\\u002fpublications\\u002fubi-ndss17.pdf --- :linux unleashing use-before-init vu...\"],[\"http:\\u002f\\u002flulu6.hubpages.com\\u002fhub\\u002fHomemade-Backyard-Greenhouses --- pvc pipe greenhouse --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.anychart.com\\u002f --- :data-visualization :JavaScript :HTML5 Charts, Maps, Stocks and Gantts ...\"],[\"http:\\u002f\\u002fwww.sharepointpodshow.com\\u002farchive\\u002f2010\\u002f09\\u002f09\\u002fsharepoint-performance-tuning-episode-50.aspx --...\"],[\"http:\\u002f\\u002ftimothypratley.blogspot.ca\\u002f2017\\u002f01\\u002freagent-deep-dive-part-3-sequences.html --- :clojurescript...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002fcardboard\\u002f --- Cardboard - Virtual reality on your smartphone --- 2017...\"],[\"http:\\u002f\\u002fwww.kdnuggets.com\\u002f --- Data Mining Community's Top Resource --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.asp.net\\u002fBizSpark\\u002f --- BizSpark : The Official Microsoft ASP.NET Site --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.cbinsights.com\\u002fblog\\u002fartificial-intelligence-startup-us-map\\u002f --- :ai :business-tips The U...\"],[\"http:\\u002f\\u002fwww.bytescout.com\\u002fffmpegscout.html --- Convert AVI to FLV, MPEG, WMV from your Visual Basic, ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fujjwalkarn\\u002fMachine-Learning-Tutorials --- :Machine-Learning :Tutorials :deep-lear...\"],[\"http:\\u002f\\u002fsqlcat.com\\u002ftop10lists\\u002farchive\\u002f2008\\u002f10\\u002f01\\u002ftop-10-sql-server-integration-services-best-practice...\"],[\"http:\\u002f\\u002fwww.phonetime.com\\u002f --- Phonetime, Inc. --- 2017-05-12...\"],[\"https:\\u002f\\u002fdeals.sourceforge.net\\u002fsales\\u002f3plus-snap-activity-tracker --- 3Plus Snap Activity Tracker | So...\"],[\"http:\\u002f\\u002fhmarr.com\\u002f2013\\u002foct\\u002f16\\u002fcodecube-runnable-gists\\u002f --- CodeCube: Docker-powered Runnable Gists --...\"],[\"http:\\u002f\\u002fwww.pnas.org\\u002fcontent\\u002f105\\u002f4\\u002f1118 --- Maps of random walks on complex networks reveal community...\"],[\"https:\\u002f\\u002fguardianproject.info\\u002fapps --- Secure Mobile Apps | The Guardian Project --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.rootstock.io\\u002f --- RootStock --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2901692&R=2901692 --- Android wireless applica...\"],[\"http:\\u002f\\u002fblog.muhuk.com\\u002f2017\\u002f01\\u002f29\\u002fdomain_specific_languages_in_clojure.html#.WJXC7Pl97IU --- :logic-p...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fWebProfileBuilder --- Web Profile Builder - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fdeveloper.xamarin.com\\u002fworkbooks\\u002f --- :xamarin :tutorials Workbooks - Xamarin --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSoftEtherVPN\\u002fSoftEtherVPN --- SoftEther :: Cross-platform Multi-protocol VPN --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcuckoobox\\u002fcuckoo --- cuckoobox\\u002fcuckoo --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.oldschoolvalue.com\\u002fblog\\u002finvestment-tools\\u002fintrinsic-value-spreadsheet\\u002f --- How to invest -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fLostInBrittany\\u002fApache-Thrift-Bootcamp\\u002ftree\\u002fmaster\\u002fAndroThriftChat --- Apache-Thri...\"],[\"https:\\u002f\\u002fiamtrask.github.io\\u002f2017\\u002f03\\u002f17\\u002fsafe-ai\\u002f --- :cryptography :security Building Safe :AI --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fYangjunZhang\\u002fLeetcode --- YangjunZhang\\u002fLeetcode · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.trendhunter.com\\u002ftrends\\u002fgila-board --- Off-Road Suspension Skateboards : gila board --- 20...\"],[\"http:\\u002f\\u002fwww.cssclip.com\\u002fresources\\u002f2008-08-09\\u002f14-of-the-most-useful-web-design-blogs\\u002f --- 14 of the Mo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchangqing\\u002fWebIntAndBigData --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.theirm.org\\u002fevents\\u002fGRC_SIG.htm --- Security Organizations --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.healthgoods.com\\u002fLead_Detective_Paint_Test_Kit_p\\u002fis-q755.htm --- Lead Detective Paint Test...\"],[\"http:\\u002f\\u002fgrow-agarden.com\\u002f4-simple-steps-to-grow-a-hundred-pounds-of-potatoes-in-a-barrel\\u002f --- 4 Simpl...\"],[\"http:\\u002f\\u002fsm-art.biz\\u002fIvonna.aspx --- Ivonna --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286796\\u002f --- :smartgarden :arduino compatible PLC CONTROLLINO --- 2017-05-1...\"],[\"http:\\u002f\\u002fr-analytics.blogspot.de\\u002f --- R: Анализ и визуализация данных --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fCyb3r-Assassin\\u002fPhase_Blaster --- Cyb3r-Assassin\\u002fPhase_Blaster · GitHub --- 2017-...\"],[\"http:\\u002f\\u002fwww.jameco.com\\u002fJameco\\u002frobot\\u002frobotstore.html --- The Robot Store --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fraspberrypi --- raspberrypi · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.uvnc.com\\u002f --- Ultra VNC : Remote Support Software, Remote Support tool, Remote Desktop Co...\"],[\"https:\\u002f\\u002fwww.oreilly.com\\u002fideas\\u002fbeyond-algorithms-optimizing-the-search-experience --- Beyond algorith...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_7499850_prepare-underground-shelter.html --- How to Prepare an Underground S...\"],[\"http:\\u002f\\u002fgoparallel.sourceforge.net\\u002fbudget-supercomputers-for-every-business\\u002f --- Budget Supercomputer...\"],[\"http:\\u002f\\u002fblog.wmtransfer.com\\u002fblog\\u002fvyshla-novaya-versiya-e-num-3-2-dlya-android?utm_source=news&utm_med...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fen\\u002fdetails.aspx?displaylang=en&FamilyID=fffaad6a-0153-4d41-b289-a...\"],[\"http:\\u002f\\u002fwww.w3.org\\u002f2007\\u002f11\\u002f21-turtle --- Turtle - Terse RDF Triple Language --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002f1C_Company --- 1C Company - Wikipedia, the free encyclopedia --- 2017-0...\"],[\"http:\\u002f\\u002fwww.immunityinc.com\\u002fproducts-immdbg.shtml --- IMMUNITY : Knowing You're Secure --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faphyr\\u002ftesser --- :machine-learning :clojure :hadoop aphyr\\u002ftesser: Clojure reducer...\"],[\"http:\\u002f\\u002f50.21.181.236\\u002fcongress\\u002f2015\\u002fwebm-hd\\u002f32c3-7352-en-de-Towards_reasonably_trustworthy_x86_laptop...\"],[\"http:\\u002f\\u002fwww.schneier.com\\u002fbook-beyondfear.html --- Schneier.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fdroidparts.org\\u002f --- DroidParts — DroidParts --- 2017-05-12...\"],[\"https:\\u002f\\u002fntguardian.wordpress.com\\u002f2017\\u002f03\\u002f27\\u002fintroduction-stock-market-data-r-1\\u002f --- :r-project :trad...\"],[\"http:\\u002f\\u002fwww.teabiscuit.org\\u002fhow-to-clean-a-gas-grill\\u002f --- How to clean a Gas Grill! It's important tha...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=JDo_XepFObk --- How to create a basic PHP & C# RAT - Part 1. - YouTu...\"],[\"http:\\u002f\\u002fwww.data.gov.kz\\u002f --- open data - kz --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.madoko.net\\u002f --- welcome to madoko --- 2017-05-12...\"],[\"http:\\u002f\\u002fmisto.github.io\\u002fWrite-Yourself-a-Scheme-in-Scala\\u002f --- Write Yourself a Scheme in Scala --- 20...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002formbattle\\u002f --- compare the most famous ORM tools for .NET - get pdf in down...\"],[\"http:\\u002f\\u002fnumpy.scipy.org\\u002f --- Numpy Home Page --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNancyFx\\u002fNancy\\u002fwiki\\u002fBlog-Posts%2C-Video-%26-Audio --- :Blogs :Videos :NancyFx podc...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fWhat-to-salvage-from-energy-saver-light-bulb\\u002f --- Salvaging componen...\"],[\"http:\\u002f\\u002fwww.ipcop.org\\u002fdocs.php --- IPCop - Documentation --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fContinuation-passing_style --- Continuation-passing style - Wikipedia,...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fcorba-research-realtime.html --- www.dre.vanderbilt.edu --- 2...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fAuthorize.NET.aspx --- CodeProject: A wrapper for using .NET to sub...\"],[\"https:\\u002f\\u002fcommons.apache.org\\u002f --- Apache Commons :java --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sqlshare.com\\u002fexecuting-ssis-package-in-ssms_496.aspx --- SQLShare - Executing SSIS Packag...\"],[\"http:\\u002f\\u002fwww.realvnc.com\\u002fvnc\\u002findex.html --- RealVNC - VNC - the original cross-platform remote control...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3278667&R=3278667 --- OpenJDK cookbook : over ...\"],[\"http:\\u002f\\u002fquickfixengine.org\\u002fservices.html --- QuickFix: Open Source FIX Engine --- 2017-05-12...\"],[\"https:\\u002f\\u002fnubits.com\\u002fdownload --- Download | NuBits --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fUSArmyResearchLab\\u002fDshell --- USArmyResearchLab\\u002fDshell --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fwebservices\\u002fREST_Web_Service.aspx --- CodeProject: .NET 2.0 REST servi...\"],[\"http:\\u002f\\u002fwww.mkyong.com\\u002fgoogle-app-engine\\u002fgoogle-app-engine-spring-3-mvc-rest-example\\u002f --- Google App ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fderhuerst\\u002ftcp-over-websockets#tcp-over-websockets --- :javascript :computer-netwo...\"],[\"http:\\u002f\\u002faofa.cs.princeton.edu\\u002fhome\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fmicrojs.com\\u002f# --- Microjs: Fantastic Micro-Frameworks and Micro-Libraries for Fun and Profit!...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgregmalcolm\\u002fpython_koans --- :python Koans - Learn Python through TDD --- 2017-05...\"],[\"http:\\u002f\\u002f3dprintingforbeginners.com\\u002frapidpro-2013\\u002f --- 3D printed hand. Seen @ RapidPro 2013 Conferenc...\"],[\"http:\\u002f\\u002fwww.ohwr.org\\u002fcompanies --- Companies - Open Hardware Repository --- 2017-05-12...\"],[\"https:\\u002f\\u002fnymity.ch\\u002fanomalous-tor-keys\\u002f --- :paper Anomalous keys in :Tor relays --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.symbian-guru.com\\u002fwelcome\\u002f2009\\u002f12\\u002fsymbian-gurus-2009-top-5-python-applications-for-symbian...\"],[\"https:\\u002f\\u002fgithub.com\\u002fapache\\u002fstorm\\u002ftree\\u002fmaster\\u002fexamples\\u002fstorm-starter --- :storm :examples :starter-kit...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002flibrary\\u002fos-eclipse-migratenetvs\\u002findex.html --- Migrate .NET applic...\"],[\"http:\\u002f\\u002fsagemath.org\\u002f --- SAGE: Open Source Mathematics Software --- 2017-05-12...\"],[\"https:\\u002f\\u002ftheintercept.com\\u002f2015\\u002f12\\u002f28\\u002frecently-bought-a-windows-computer-microsoft-probably-has-your-e...\"],[\"http:\\u002f\\u002fwww.westpalmbeach.com\\u002fservices\\u002fattorneys\\u002f --- West Palm Beach Lawyers - West Palm Beach.com -...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fmore\\u002f#label=Tools&product=gme --- Site Directory - Google Code --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.genesis-technologies.com\\u002fGvox.asp?gclid=COTj4YPv6ZwCFVRM5Qod8Wjvsw --- Encore 4.5.5 Music...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002farchitecture\\u002fNHibernateBestPractices.aspx --- CodeProject: NHibernate ...\"],[\"http:\\u002f\\u002fcssgridgarden.com\\u002f --- :css :gamification Grid Garden - A game for learning CSS grid --- 2017...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fbuild-a-homesteading-solar-food-dehydrator\\u002f --- The Homestead Surviv...\"],[\"http:\\u002f\\u002fspatial-econometrics.com\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fappdevelopermagazine.com\\u002f2600\\u002f2015\\u002f4\\u002f2\\u002fRoboVM-Lets-Developers-Use-Java-to-Build-iOS-Apps-Usi...\"],[\"http:\\u002f\\u002flinklayer.github.io\\u002fcantact\\u002f --- :toronto :python :car :obd2 :opensource CANtact - The Open-S...\"],[\"http:\\u002f\\u002fgenesisangels.com\\u002f --- Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDaniJG\\u002fDockNetFiddle --- :docker :.net DaniJG\\u002fDockNetFiddle: Code for the article...\"],[\"http:\\u002f\\u002fwww.thereadingresidence.com\\u002f10-beautiful-instagram-accounts-bookworms\\u002f --- 10 Beautiful Insta...\"],[\"https:\\u002f\\u002fcloud.google.com\\u002fappengine\\u002fdocs\\u002fjava\\u002ftools\\u002fmaven --- Using Apache Maven - Java — Google Cl...\"],[\"https:\\u002f\\u002flists.torproject.org\\u002fpipermail\\u002ftor-dev\\u002f2017-March\\u002f012088.html --- :rust-lang :Tor in a safer...\"],[\"https:\\u002f\\u002fdeals.sourceforge.net\\u002fsales\\u002fskeye-nano-drone-matte-black-limited-edition-free-worldwide-ship...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmacros\\u002fMoleForVisualStudioEdit.aspx --- CodeProject: Mole For Visual S...\"],[\"http:\\u002f\\u002fwww.softportal.com\\u002fsoftware-3560-tirlits.html --- Скачать shtirlitz --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=PoawhsmKIEY --- How To Butcher A Deer.This is the most detailed and i...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002fdandelions-not-just-a-weed\\u002f --- Dandelions: Not Just a Weed | The Benefits O...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcatalystcode\\u002fvott --- :ai :computer-vision Visual Object Tagging :Tool An :electr...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fPDF\\u002fReactor.pdf --- reactor pattern --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=jXhdOTw1q5Q --- Dependency Injection in :javascript :YouTube --- 201...\"],[\"http:\\u002f\\u002fwww.dofactory.com\\u002fjavascript\\u002fmediator-design-pattern --- Mediator :JavaScript :DesignPatterns...\"],[\"https:\\u002f\\u002fgithub.com\\u002fanthonyatto\\u002ftliaa --- :recommendersystems :machine-learning true love is an algor...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcea-sec\\u002fivre --- cea-sec\\u002fivre :: Dynamic Recon of UNKnown networks --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002faloisdg\\u002fawesome-linq --- GitHub - aloisdg\\u002fawesome-linq: A curated collection of a...\"],[\"http:\\u002f\\u002fswfupload.org\\u002f --- SWFUpload News | SWFUpload --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.odditysoftware.com\\u002fpage-datasales458.htm --- Download Database - Ontario Canada Company D...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002freshape\\u002freshape.pdf --- reshape package --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fwindows\\u002fdesktop\\u002fms680360%28v=vs.85%29.aspx --- MiniDumpWrite...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjarsbe\\u002freact-simple --- :reactjs simple --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fexpression\\u002fproducts\\u002fdownload.aspx?key=encoder2beta --- Microsoft® Expressi...\"],[\"http:\\u002f\\u002fresearch.microsoft.com\\u002fapps\\u002fpubs\\u002fdefault.aspx?id=119060 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.cornell.edu\\u002fpeople\\u002ftj\\u002fsvm_light\\u002fsvm_hmm.html --- SVM-HMM: Sequence Tagging with SVMs -...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002fbasics\\u002factionbar\\u002findex.html --- Adding the Action Bar | Androi...\"],[\"http:\\u002f\\u002fwww.aspnetdating.com\\u002ffeatures.aspx --- Online Software Features | AspNetDating --- 2017-05-12...\"],[\"https:\\u002f\\u002ftbaldridge.pivotshare.com\\u002f --- Clojure Tutorials - with Tim Baldridge | Logic Programming, C...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fmultitierlinqtosql\\u002fThread\\u002fList.aspx --- An Example of a Multi Tier Ar...\"],[\"http:\\u002f\\u002fespeak.sourceforge.net\\u002f --- eSpeak :Speech Synthesizer --- 2017-05-12...\"],[\"http:\\u002f\\u002falexott.net\\u002fru\\u002femacs\\u002femacs-manual\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fabhinaba\\u002farchive\\u002f2011\\u002f06\\u002f08\\u002fwp7-mango-mark-sweep-collection-and-how-does-a-g...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSelect_%28Unix%29 --- select (Unix) - Wikipedia, the free encyclopedia...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhibernating-rhinos\\u002frhino-etl --- hibernating-rhinos\\u002frhino-etl · GitHub --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftoddsiegel\\u002fspscan --- toddsiegel\\u002fspscan · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002farchive.is\\u002f2016.08.07-162220\\u002fhttp:\\u002f\\u002fflohofwoe.blogspot.nl\\u002f2013\\u002f06\\u002fsane-c.html --- :cpp :blog ...\"],[\"http:\\u002f\\u002ffgiasson.com\\u002fblog\\u002findex.php\\u002f2017\\u002f01\\u002f24\\u002fdisambiguating-kbpedia-knowledge-graph-concepts\\u002f --- :...\"],[\"https:\\u002f\\u002fgithub.com\\u002fX-rus\\u002fxNet --- X-rus\\u002fxNet · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeviq.com\\u002fexplicit-dependencies-principle\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"http:\\u002f\\u002fwebdesign.about.com\\u002fod\\u002fadvancedcss\\u002fa\\u002faa062706.htm --- CSS Specificity - How Competing Cascadi...\"],[\"https:\\u002f\\u002fgithub.com\\u002fawaken\\u002fsanity --- awaken\\u002fsanity - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fonlamp.com\\u002fpub\\u002fa\\u002fonlamp\\u002f2003\\u002f07\\u002f03\\u002fasterisk.html --- Asterisk: A Bare-Bones VoIP Example - O'...\"],[\"https:\\u002f\\u002fwww.checkmarx.com\\u002f2015\\u002f11\\u002f06\\u002f13-more-hacking-sites-to-legally-practice-your-infosec-skills\\u002f ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjwasham\\u002fgoogle-interview-university --- :jobsearch :computerscience :education :i...\"],[\"http:\\u002f\\u002felectronics-diy.com\\u002felectronic_schematic.php?id=612 --- USB Bit Whacker - Simple USB input \\u002f ...\"],[\"http:\\u002f\\u002four.windowfarms.org\\u002f2010\\u002f06\\u002f30\\u002fnew-how-to-version-3-0-modular-airlift-array-new-website-to-su...\"],[\"https:\\u002f\\u002ftaler.net\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.jaguarpc.com\\u002f --- JaguarPC --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ohgizmo.com\\u002f2012\\u002f11\\u002f20\\u002fcompany-to-launch-one-man-electric-helicopter\\u002f --- One-man helicop...\"],[\"https:\\u002f\\u002fgithub.com\\u002fheadinthebox\\u002fspark-workshop --- GitHub - headinthebox\\u002fspark-workshop: A Typesafe ...\"],[\"http:\\u002f\\u002fseekingalpha.com\\u002farticle\\u002f268411-15-beaten-up-value-stocks-making-52-week-lows --- beaten up s...\"],[\"http:\\u002f\\u002fmattwarren.org\\u002f2017\\u002f03\\u002f23\\u002fHitchhikers-Guide-to-the-CoreCLR-Source-Code\\u002f --- :opensource :.net...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdanielmiessler\\u002fSecLists --- danielmiessler\\u002fSecLists --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fwaves\\u002fblog\\u002f282354\\u002f --- :education :russian :blockchain :business soluti...\"],[\"http:\\u002f\\u002fwww.princetonreview.com\\u002f --- Test Prep: GMAT, GRE, LSAT, MCAT, SAT, ACT, and More --- 2017-05...\"],[\"http:\\u002f\\u002fshop.udoo.org\\u002f --- UDOO --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285238\\u002f --- :security :privacy internet surveillance --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.knime.org\\u002ffiles\\u002fnodedetails\\u002f_mining_subgroup_Association_Rule_Learner.html --- KNIME :: ...\"],[\"https:\\u002f\\u002fdidlogic.com\\u002fsession\\u002fnew --- DID Exchange --- 2017-05-12...\"],[\"https:\\u002f\\u002fandroid.googlesource.com\\u002fplatform\\u002fpdk\\u002f+\\u002fa5e0a5c53719f8501c814c4673d28964dee15c9c\\u002fapps\\u002fTestin...\"],[\"http:\\u002f\\u002fwaterbuckpump.com\\u002f --- Well WaterBoy Products | Products for off grid living, deep well hand ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsbt\\u002fsbt-assembly --- GitHub - sbt\\u002fsbt-assembly: Deploy fat JARs. Restart processe...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fscottgu\\u002farchive\\u002f2007\\u002f12\\u002f09\\u002fasp-net-mvc-framework-part-4-handling-form-edit-an...\"],[\"https:\\u002f\\u002fwiki.openstack.org\\u002fwiki\\u002fGet_OpenStack#Get_the_source_code --- Get OpenStack - HP Helion --- ...\"],[\"http:\\u002f\\u002fwww.tau.ac.il\\u002f~rinot\\u002fhost.html --- Handbook of Set Theory --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchenshuo\\u002fmuduo --- chenshuo\\u002fmuduo · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fedmonton.kijiji.ca\\u002fc-jobs-programmers-computer-Senior-Software-Developer-W0QQAdIdZ110043189 -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjohnkerl\\u002fmiller --- :json :linux :tools Miller is like awk, sed, cut, join, and s...\"],[\"http:\\u002f\\u002fwumpus-search.org\\u002f --- The Wumpus Search Engine --- 2017-05-12...\"],[\"http:\\u002f\\u002fknowledgeweighsnothing.com\\u002famazing-secret-way-to-get-free-solar-panels\\u002f --- Amazing Secret Wa...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjdeisenberg\\u002ficljs --- GitHub - jdeisenberg\\u002ficljs: Interactive Tutorial for Clojur...\"],[\"http:\\u002f\\u002fblog.jenkster.com\\u002f2016\\u002f06\\u002ffunctional-mumbo-jumbo-adts.html --- Functional Mumbo Jumbo - ADTs ...\"],[\"https:\\u002f\\u002funiversity.mongodb.com\\u002f --- MongoDB University --- 2017-05-12...\"],[\"http:\\u002f\\u002fpovarenok.a3d.kz\\u002f117416 --- :russian :food how to can meat --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdownload13?tab=stars --- :javascript :github Starred --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?familyid=1beeac6f-2ea1-4769-9948-74a74bd604fa&displa...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f10550139\\u002fandroid-ics-and-mjpeg-using-asynctask --- Android ICS an...\"],[\"http:\\u002f\\u002fwww.iwebtool.com\\u002ftools\\u002f --- Free Webmaster Tools --- 2017-05-12...\"],[\"http:\\u002f\\u002ffacetedsearch.codeplex.com\\u002f --- MOSS Faceted Search --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpillarjs\\u002fnode-frameworks --- pillarjs\\u002fnode-frameworks --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fwirex\\u002fblog\\u002f281130\\u002f --- :blockchain solutions in asia --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=apache+spark --- search apache spark : : T...\"],[\"http:\\u002f\\u002fgo.veeam.com\\u002flearn-powershell --- Learn PowerShell: From Basics To A Coding Star --- 2017-05-...\"],[\"https:\\u002f\\u002fsavannah.gnu.org\\u002fprojects\\u002fmediagoblin --- :opensource :video-service GNU MediaGoblin --- 201...\"],[\"http:\\u002f\\u002fwww.linux.com\\u002fnews\\u002fsoftware\\u002fapplications\\u002f878620-the-best-linux-distros-of-2016 --- The Best L...\"],[\"http:\\u002f\\u002fmpeg4ip.sourceforge.net\\u002f --- MPEG4IP - Open Streaming Video and Audio --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftrustedsec\\u002fhardcidr --- :security :computer-networks hardCIDR is a :Linux :Bash s...\"],[\"http:\\u002f\\u002fwww.technologyreview.com\\u002fnews\\u002f412880\\u002fthe-best-computer-interfaces-past-present-and-future\\u002f --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fwiki\\u002fwiki\\u002fJavaScript-API --- Dapps JavaScript API · ethereum\\u002fwiki --- 2...\"],[\"http:\\u002f\\u002fwww.voipbaez.com\\u002fproducts.php?product=Portech-MV%252d370-VoIP-GSM-Gateway- --- voip gateway -...\"],[\"https:\\u002f\\u002fwww.blackhat.com\\u002fpresentations\\u002fbh-europe-05\\u002fBH_EU_05-Long.pdf --- Johny Long - google hackin...\"],[\"http:\\u002f\\u002fwww.inopressa.ru\\u002farticle\\u002f18may2011\\u002flefigaro\\u002feconomy.html --- commodities --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.visuallinkspanish.com\\u002faw\\u002flessons\\u002findex.html --- Free Spanish Learning Center - Spanish Se...\"],[\"http:\\u002f\\u002flibbitcoin.dyne.org\\u002f --- libbitcoin - modular, scalable, async --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fCoreSecurity\\u002fimpacket --- CoreSecurity\\u002fimpacket · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcharlesw\\u002ftesseract-samples --- :tesseract :samples for the :.Net wrapper --- 2017...\"],[\"http:\\u002f\\u002fcrmaccelerators.codeplex.com\\u002f --- Accelerators for Microsoft Dynamics CRM --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fdell\\u002fblog\\u002f286596\\u002f --- :virtual-reality :augmented-reality tech. review,...\"],[\"http:\\u002f\\u002fwww.fabbaloo.com\\u002fblog\\u002f2014\\u002f7\\u002f17\\u002fmake-your-own-3d-printer-filament-with-the-extrusionbot --- M...\"],[\"http:\\u002f\\u002focw.mit.edu\\u002fcourses\\u002fmathematics\\u002f18-06-linear-algebra-spring-2010\\u002fvideo-lectures\\u002f --- MIT Open...\"],[\"https:\\u002f\\u002fbitsofco.de\\u002flinting-html-using-css\\u002f --- :tools :webdev Linting HTML using CSS --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fncl\\u002farchive\\u002f2009\\u002f07\\u002f27\\u002fend-to-end-connectivity-with-nat-traversal-.aspx --- ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdebug\\u002fDebugging.aspx --- CodeProject: How to Use and Understand the Wi...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fDIY-2G3G4G-Wireless-Cell-Phone-Signal-Booster\\u002f --- Picture of DIY 2G...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fpyrfeed\\u002fwiki\\u002fGoogleReaderAPI --- GoogleReaderAPI - pyrfeed - Google Code --...\"],[\"http:\\u002f\\u002fdeeplearning.net\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fopen.segment.com\\u002ffellowship --- :business Segment Open Fellowship 2017 -- request for projec...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdaleroberts\\u002fmath-finance-cheat-sheet\\u002fblob\\u002fmaster\\u002fmath-finance-cheat-sheet.pdf ---...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fapplication-development\\u002fpython-finance --- Python for Finance | PACKT Books...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgiabao\\u002fpaho-akka --- GitHub - giabao\\u002fpaho-akka --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002faspnet\\u002fIntoLINQVS2008.aspx --- CodeProject: Introduction to LINQ and V...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=hHfR3bQo4MU --- :massage neck --- 2017-05-12...\"],[\"https:\\u002f\\u002fforum.quantifiedself.com\\u002f --- Quantified Self Forums --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.erlang-solutions.com\\u002fblog\\u002f21-xmpp-use-cases-and-the-best-ways-to-achieve-them.html --- :...\"],[\"http:\\u002f\\u002fsurvivalsherpa.wordpress.com\\u002f2014\\u002f07\\u002f24\\u002fhow-to-make-firebricks-and-wood-stove-logs-for-free\\u002f ...\"],[\"http:\\u002f\\u002fwww.kribrum.ru\\u002f --- Крибрум – сервис мониторинга и анализа ...\"],[\"http:\\u002f\\u002fwebboar.com\\u002f --- WebBoar - Website Analyzer! Domain IP History, Reverse IP Lookup, Google PR,...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fX86_Disassembly --- x86 Disassembly - Wikibooks, collection of open-con...\"],[\"http:\\u002f\\u002fwww.combinatorics.org\\u002f --- The Electronic Journal of Combinatorics --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fpfxteam\\u002farchive\\u002f2013\\u002f03\\u002f13\\u002fquot-invoke-the-method-with-await-quot-ugh.aspx -...\"],[\"https:\\u002f\\u002fwww.udacity.com\\u002fcourse\\u002fcs258 --- Software Testing Methodologies Class Online - Udacity --- 2...\"],[\"https:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fdocumentation\\u002farticles\\u002fvirtual-machines-docker-vm-extension\\u002f --- T...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fadonetefx --- ADO.NET Entity Framework & LINQ to Relational Data - Ho...\"],[\"http:\\u002f\\u002fwww.howtogeek.com\\u002f89749\\u002fturn-your-android-phone-into-a-remote-spy-camera\\u002f --- turn your phone...\"],[\"http:\\u002f\\u002fcloudfoundry.org\\u002findex.html --- Welcome to the Cloud Foundry Community | Cloud Foundry Commun...\"],[\"http:\\u002f\\u002fblog.dato.com\\u002fpractical-text-analysis-using-deep-learning --- Practical Text Analysis using D...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fbb332048.aspx --- What's New in the .NET Framework Version ...\"],[\"http:\\u002f\\u002fbower.io\\u002f --- BOWER: A package manager for the web --- 2017-05-12...\"],[\"http:\\u002f\\u002fsharkfest.wireshark.org\\u002fsharkfest.12\\u002f --- Past Sharkfest Events: Presentations, Photos and Vi...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3105132&R=3105132 --- Robotium automated testi...\"],[\"http:\\u002f\\u002fjecxjo.motd.org\\u002fcode\\u002fblosxom.cgi\\u002fdevel\\u002fcross_compiler_environment --- Commented Code : How to...\"],[\"http:\\u002f\\u002fchuck.cs.princeton.edu\\u002f --- ChucK =\\u003e Strongly-timed, On-the-fly Music Programming Language --...\"],[\"http:\\u002f\\u002fblog.sei.cmu.edu\\u002fpost.cfm\\u002fandroid-heartbleed-testing-devops-sei-midyear-review-181 --- Androi...\"],[\"https:\\u002f\\u002fcrypto.stanford.edu\\u002f~blynn\\u002fsound\\u002f --- Sound and Music - Sound and music --- 2017-05-12...\"],[\"http:\\u002f\\u002fkenneth.kufluk.com\\u002fgoogle\\u002fjs-mindmap\\u002f --- js-mindmap demo - JavaScript Mindmap --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002fconnect-devices-wirelessly\\u002fnsd.html --- developer.android.com ...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fajaxfeeds\\u002f --- Google AJAX Feed API - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002flearn.adafruit.com\\u002fdiy-wearable-pi-near-eye-kopin-video-glasses --- Google glass alternative...\"],[\"https:\\u002f\\u002fpurelyfunctional.tv\\u002fissues\\u002fpurelyfunctional-tv-newsletter-224-dune-leiningen-cider\\u002f --- :clo...\"],[\"http:\\u002f\\u002fwww.zynamics.com\\u002fbindiff.html --- zynamics.com - BinDiff - binary diff tool --- 2017-05-12...\"],[\"http:\\u002f\\u002fstartupheretoronto.com\\u002fstartup-here-toronto-cafe\\u002f --- :toronto :Startup here -- local events ...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fLinear_transform --- Linear map - Wikipedia, the free encyclopedia --- ...\"],[\"http:\\u002f\\u002fwww.zoiper.com\\u002fsoftphone\\u002f --- Zoiper - Softphone for the windows, mac, linux and solaris desk...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fLogistic_regression --- Logistic regression - Wikipedia, the free encyc...\"],[\"http:\\u002f\\u002fsquare.github.io\\u002fretrofit\\u002fjavadoc\\u002foverview-summary.html --- Overview (Retrofit 1.6.0 API) ---...\"],[\"http:\\u002f\\u002fgladewin32.sourceforge.net\\u002f --- http:\\u002f\\u002fgladewin32.sourceforge.net\\u002f --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.westpalmbeach.com\\u002f --- West Palm Beach guide --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cplusplus.com\\u002freference\\u002fstd\\u002fmemory\\u002fauto_ptr\\u002f --- auto_ptr - C++ Reference --- 2017-05-12...\"],[\"http:\\u002f\\u002faccu.org\\u002findex.php\\u002fjournals\\u002fc78\\u002f --- ACCU :: Overload --- 2017-05-12...\"],[\"https:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fjava\\u002fsecurity\\u002fKeyStore.html --- KeyStore | Android Developer...\"],[\"http:\\u002f\\u002fblog.eleven-labs.com\\u002fen\\u002fhttp2-future-present\\u002f --- :security :computer-networks HTTP\\u002f2 is not ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmjul\\u002fstorm-tutorial --- :storm :tutorial :Clojure stream processing --- 2017-05-1...\"],[\"http:\\u002f\\u002flibtom.org\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fdevelopers.facebook.com\\u002fblog\\u002fpost\\u002f108 --- Announcing Facebook Connect - Facebook Developers -...\"],[\"http:\\u002f\\u002fgopro.com\\u002fproducts\\u002f --- GoPro Products - Record & Share Your Most Memorable Moments --- 2017-...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002fmriap2008\\u002flectures --- lectures - mriap2008 --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmkwatson\\u002fmark-storm\\u002fblob\\u002fmaster\\u002fch2\\u002fsrc\\u002fch2\\u002fcore.clj --- :storm :clojure example ...\"],[\"http:\\u002f\\u002fwww.lynda.com\\u002fUnity-3D-tutorials\\u002fAnimating-Characters-Mecanim-Unity-3D\\u002f118077-2.html --- Anim...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fweb-security\\u002fKeySellerKeyBuyer.aspx --- CodeProject: A method of provi...\"],[\"https:\\u002f\\u002fwww.kodable.com\\u002f --- :Coding for :Kids --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fapplication-development\\u002flearning-pandas --- Learning pandas | PACKT Books -...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fhtmlagilitypack --- Html Agility Pack - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.shapeways.com\\u002f --- Shapeways | passionate about creating --- 2017-05-12...\"],[\"https:\\u002f\\u002freact.rocks\\u002ftag\\u002fNavigation --- :Examples :ReactJS Navigation bar --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cuyahoga-project.org\\u002f --- Cuyahoga - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fBloom_filter --- Bloom filter - Wikipedia, the free encyclopedia --- 2...\"],[\"https:\\u002f\\u002fnplus1.ru\\u002fnews\\u002f2015\\u002f10\\u002f22\\u002fpwd-security --- Регистр и цифры в пароле бе...\"],[\"https:\\u002f\\u002fwww.apkmirror.com\\u002f --- :android :google-play APKMirror - Free APK Downloads --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flk-geimfari\\u002fawesomo --- :awesome lk-geimfari\\u002fawesomo: The really big list of real...\"],[\"http:\\u002f\\u002ftldp.org\\u002fLDP\\u002fabs\\u002fhtml\\u002f --- Advanced Bash-Scripting Guide --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.jalopyjournal.com\\u002fforum\\u002fthreads\\u002ftools-how-to-build-a-sheetmetal-brake-for-10-bucks-or-so....\"],[\"http:\\u002f\\u002fwww.makeuseof.com\\u002ftag\\u002f14-simple-things-to-boost-your-online-productivity\\u002f --- 14 Simple Thing...\"],[\"http:\\u002f\\u002fwww.jamesshore.com\\u002fBlog\\u002fHow-I-Use-Fit.html --- James Shore: How I Use Fit --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.exploit-db.com\\u002fshellcode\\u002f --- shellcode on exploit-db --- 2017-05-12...\"],[\"http:\\u002f\\u002fqueues.io\\u002f --- Queues -- all of them --- 2017-05-12...\"],[\"http:\\u002f\\u002frobot.zerich.ru\\u002fturnir_about.php --- trading robots --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f535677\\u002fMemory-Analyzer-x-bit-a-Free-Detour --- Memory Analyzer x...\"],[\"http:\\u002f\\u002fnuzhen-sovet.ru\\u002fcontent\\u002fpodklyuchenie-vneshnego-wi-fi-adaptera-k-planshetu-na-android-4 --- e...\"],[\"http:\\u002f\\u002fsolarcooking.wikia.com\\u002fwiki\\u002fSolar_Cookers_World_Network_(Home) --- Solar Cooking --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002fowncloud --- ownCloud - Share files, music, calendar | TurnKey Linux Vir...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fthe-fall-of-the-mighty-euro\\u002f --- EURO charts infographics --- 2017-0...\"],[\"https:\\u002f\\u002fwww.sitepoint.com\\u002fvideo-controlled-vs-uncontrolled-components-in-react\\u002f --- :Video Controlle...\"],[\"http:\\u002f\\u002fwww.on.kz\\u002f --- Социальная сеть ON.KZ --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDEAP\\u002fdeap --- DEAP\\u002fdeap · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.google.com\\u002flocal\\u002fadd\\u002fanalyticsSplashPage?gl=US&hl=en-US&service=lbc&hl=en-US&gl=US&utm_ca...\"],[\"http:\\u002f\\u002fwww.koders.com\\u002f --- Open Source Code Search Engine - Koders --- 2017-05-12...\"],[\"http:\\u002f\\u002fscpd.stanford.edu\\u002fsearch\\u002fpublicCourseSearchDetails.do?method=load&courseId=1166031 --- feedba...\"],[\"http:\\u002f\\u002fwww.imeem.com\\u002fartists\\u002fweather_report\\u002fplaylists\\u002f#viewalbums=%26sRecent%26c6%26i0 --- Weather R...\"],[\"http:\\u002f\\u002feprints.eemcs.utwente.nl\\u002f1077\\u002f --- :Functional-programming :C-code EEMCS EPrints Service --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fyyu\\u002fosfs00 --- yyu\\u002fosfs00 --- 2017-05-12...\"],[\"http:\\u002f\\u002fexploreyourdata.wordpress.com\\u002f2013\\u002f07\\u002f29\\u002fgephi-curated-list-of-tutorials\\u002f --- Gephi – curat...\"],[\"http:\\u002f\\u002fwiki.openmoko.org\\u002fwiki\\u002fOpenmoko_on_HTC-Dream --- example on how to switch from ANDROID to Ope...\"],[\"http:\\u002f\\u002fblogs.technet.com\\u002fb\\u002fwebtech\\u002farchive\\u002f2011\\u002f05\\u002f21\\u002fdon-t-waste-my-time-try-it-buy-it.aspx --- Don...\"],[\"http:\\u002f\\u002fandroid-manual.ru\\u002flevel2\\u002fandroid-terminal-commands --- Команды терминала дл...\"],[\"http:\\u002f\\u002fwww.saintcorporation.com\\u002f?gclid=CJb3iPDsuqACFc1X2god3HhtTw --- SAINT Network Vulnerability Sc...\"],[\"http:\\u002f\\u002fmarijnsomers.blogspot.com\\u002f2010\\u002f06\\u002ffantastic-40-templates-on-sharepoint.html --- SharePoint Ho...\"],[\"http:\\u002f\\u002ffastlambda.codeplex.com\\u002f --- FastLambda - A much faster way to evaluate an expression tree --...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftheimpossibleastronaut\\u002fawesome-linguistics --- theimpossibleastronaut\\u002fawesome-lin...\"],[\"http:\\u002f\\u002fwww.tandyleatherfactory.ca\\u002fen-cad\\u002fhome\\u002fdepartment\\u002fTools\\u002fTools.aspx?countryid=998 --- None ---...\"],[\"http:\\u002f\\u002fhomepages.inf.ed.ac.uk\\u002frbf\\u002fHIPR2\\u002fhipr_top.htm --- HIPR Top Page --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.wustl.edu\\u002f~schmidt\\u002ftutorials-ace.html --- Tutorials about ACE and OO Communication Fra...\"],[\"http:\\u002f\\u002fventurebeat.com\\u002f2012\\u002f08\\u002f21\\u002fnode-infographic\\u002f --- Getting to Know NODE - A look at node.js , t...\"],[\"http:\\u002f\\u002fblah.winsmarts.com\\u002f2006-8-SharePoint_2007__Creating_a_simple_non-human_Worfklow.aspx --- Shar...\"],[\"http:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fJava_Persistence\\u002fElementCollection --- Java Persistence\\u002fElementCollecti...\"],[\"https:\\u002f\\u002fgithub.com\\u002f0x90shell\\u002fbrakeman --- 0x90shell\\u002fbrakeman · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002freadwrite.com\\u002f2014\\u002f05\\u002f07\\u002farduino-vs-raspberry-pi-projects-diy-platform#awesm=~oDSAcffREFSBC6 ...\"],[\"http:\\u002f\\u002fwww.insidepro.com\\u002frus\\u002fegb.shtml --- Extreme GPU Bruteforcer --- 2017-05-12...\"],[\"http:\\u002f\\u002fagroinfo.kz\\u002fsaflor-vygodno-netrudno-razumno\\u002f --- Сафлор: выгодно, нетрудн...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdmilicic\\u002fAndroid-Clean-Boilerplate --- GitHub - dmilicic\\u002fAndroid-Clean-Boilerplat...\"],[\"https:\\u002f\\u002fdatabricks.com\\u002fblog\\u002f2016\\u002f08\\u002f03\\u002fdeveloping-apache-spark-applications-in-net-using-mobius.html...\"],[\"http:\\u002f\\u002fwww.canadabusiness.ca\\u002fservlet\\u002fContentServer?cid=1099919424552&lang=en&pagename=CBSC_AB%2Fdisp...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcorlen\\u002fdelicious-bookmarks-extractor --- GitHub - corlen\\u002fdelicious-bookmarks-extr...\"],[\"http:\\u002f\\u002fwww.warepin.com\\u002fcomputer-hardware-diagrams\\u002f --- how to : build a computer (computer building ...\"],[\"http:\\u002f\\u002fwww.backwoodshome.com\\u002farticles2\\u002fvansant131.html --- Homemade electric power using a cheap sma...\"],[\"https:\\u002f\\u002fblog.scottnonnenberg.com\\u002fbetter-git-configuration\\u002f --- :tutorial Better :Git configuration -...\"],[\"https:\\u002f\\u002fvimeo.com\\u002f211758157 --- :video Deeply Artificial Trees on Vimeo --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fsmallbusiness\\u002fresources\\u002fexpert\\u002fIs-a-business-plan-worth-it-You-bet.aspx#Isa...\"],[\"http:\\u002f\\u002fwww.oacas.org\\u002fchildwelfare\\u002ffaqs.htm#alone --- OACAS: Child Welfare: FAQs --- 2017-05-12...\"],[\"https:\\u002f\\u002flabdoor.com\\u002frankings\\u002fprotein --- Top 10 Protein Supplements - LabDoor --- 2017-05-12...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fvasanthk\\u002fa6bf35857749b09275a339f6fd9469bb --- :Reactjs &quot;controlled&quot...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fHow-to-Find-Passwords-Using-Wireshark\\u002f --- Introduction to Wireshark...\"],[\"http:\\u002f\\u002fsangaline.com\\u002fpost\\u002fwayback-machine-scraper\\u002f --- :python :webscraping Internet Archaeology :Sc...\"],[\"http:\\u002f\\u002fgeekprepper.org\\u002ftrapping-for-food-after-shtf\\u002f --- Trapping for Food squirrel Snare --- 2017-0...\"],[\"http:\\u002f\\u002fcampinglivez.com\\u002f?p=3750 --- How to Hotwire a Car - for emergency situations - Outdoor Ideas...\"],[\"https:\\u002f\\u002ftokio.rs\\u002f --- :rust-lang Tokio -- fast :networking code in rust --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cssclip.com\\u002fresources\\u002f2009-01-13\\u002f40-amazing-3d-fractals-using-apophysis\\u002f --- 40 Amazing 3...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fTypeScript-Handbook --- GitHub - Microsoft\\u002fTypeScript-Handbook: The Typ...\"],[\"http:\\u002f\\u002fm.wimp.com\\u002fman-makes-diy-smart-mirror-with-monitor\\u002f?utm_source=facebook.com&utm_medium=social...\"],[\"http:\\u002f\\u002fsdf.org\\u002f?tutorials --- :tutorials SDF Public Access :UNIX System - Free Shell Account and She...\"],[\"http:\\u002f\\u002fwww.ihmc.us\\u002fgroups\\u002fcoe\\u002f --- Ontology creation for the rest of us... --- 2017-05-12...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f321368\\u002f --- :books :free :machine-learning draft from Andrew Ng --- 2017-...\"],[\"https:\\u002f\\u002fwww.oneearthdesigns.com\\u002f --- Compare solar cookers: solar stoves, solar ovens, and solar pan...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2015\\u002f08\\u002f10\\u002fself-defense-tactics-close-quarters\\u002f --- Self Defense Tactics: Cl...\"],[\"http:\\u002f\\u002fwww.sharepointdesigners.net\\u002fpage\\u002fsharepoint-designer-books --- SharePoint Designer books - Sh...\"],[\"http:\\u002f\\u002fwww.rdatamining.com\\u002f --- RDataMining.com: R and Data Mining --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchipsec\\u002fchipsec --- :rootkit :intel :tools :security chipsec -- Platform Security...\"],[\"http:\\u002f\\u002flinuxconfig.org\\u002fpassword-cracking-with-john-the-ripper-on-linux --- Password cracking with Jo...\"],[\"http:\\u002f\\u002fmedianomika.ru\\u002fK_I\\u002fc275567\\u002f --- Медианомика: K_I, Медиа-портрет Оре...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fDesign_of_experiments --- Design of experiments - Wikipedia, the free e...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmobking33\\u002frouterz --- mobking33\\u002frouterz · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwireapp\\u002fwire-server --- :messenger :haskell Wire back-end services --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdotnet\\u002fIE_toolbar.aspx --- Pretty IE Toolbar in C# - CodeProject --- 2...\"],[\"http:\\u002f\\u002fsarabander.github.io\\u002fsicp\\u002fhtml\\u002findex.xhtml --- :mit :lisp :scheme :free :books Structure and ...\"],[\"https:\\u002f\\u002fthecustomizewindows.com\\u002f2016\\u002f05\\u002fdc-motor-buying-guide-for-diy-electronics-projects\\u002f --- When...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvuejs\\u002fvue-hackernews-2.0 --- :javascript :example vue.js HackerNews clone --- 201...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f18933862\\u002fwhat-is-partial-trust-application --- .net - What is par...\"],[\"http:\\u002f\\u002fmp3val.sourceforge.net\\u002f --- MP3val - home page --- 2017-05-12...\"],[\"http:\\u002f\\u002fslk.codeplex.com\\u002f --- SharePoint Learning Kit --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.openx.org\\u002f --- OpenX. Build your business here. | OpenX --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002felceef\\u002fdnstwist --- elceef\\u002fdnstwist · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002fblogs\\u002fkrutis-sql-blog\\u002f2016\\u002f02\\u002f01\\u002fmemory-fundamentals-for-sql-server-...\"],[\"http:\\u002f\\u002fwww.diyseo.com\\u002ffree-tools\\u002fseo-report-card?utm_source=google&utm_medium=cpc&utm_content=textli...\"],[\"http:\\u002f\\u002fwww.sp4comm.org\\u002fdocs\\u002fsp4comm_corrected.pdf --- free book: signal processing for communication...\"],[\"http:\\u002f\\u002fspvsx.codeplex.com\\u002f --- SharePoint 2010 Visual Studio 2010 Extensions --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fjava\\u002fnet\\u002fAuthenticator.html --- Authenticator | Android Devel...\"],[\"http:\\u002f\\u002fsnowball.tartarus.org\\u002f --- Snowball stemming language --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002finstall\\u002fdotNetInstaller.aspx --- CodeProject: dotNetInstaller - Setup ...\"],[\"https:\\u002f\\u002fgithub.com\\u002frickynils\\u002fscalacheck\\u002fblob\\u002fmaster\\u002fdoc\\u002fUserGuide.md --- scalacheck\\u002fUserGuide.md at ...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fvisualstudio\\u002fen-us\\u002fbuy --- Buy Visual Studio 2010 - Microsoft Visual Studio...\"],[\"http:\\u002f\\u002fiotbestpractices.com\\u002f --- iot best practices --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fyoutube\\u002fcode.html --- Client Libraries and Sample Code - YouTube APIs an...\"],[\"http:\\u002f\\u002fdocs.spring.io\\u002fspring-security\\u002fsite\\u002fdocs\\u002f3.1.x\\u002freference\\u002fspringsecurity.html --- Spring Secur...\"],[\"https:\\u002f\\u002fmedium.com\\u002fseek-developers\\u002fthe-end-of-global-css-90d2a4a06284#.mmurhgbo8 --- :webdev :webpac...\"],[\"http:\\u002f\\u002fwww.howtogeek.com\\u002f164570\\u002fhow-to-install-android-in-virtualbox\\u002f --- How to Install Android in ...\"],[\"http:\\u002f\\u002fwww.sandcastledocs.com\\u002fWiki%20Pages\\u002fForms\\u002fAllPages.aspx --- Wiki Pages --- 2017-05-12...\"],[\"https:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fblog\\u002fmicrosoft-cognitive-services-general-availability-for-face-ap...\"],[\"http:\\u002f\\u002fwww.uwstout.edu\\u002fcareers\\u002fintrviewques.shtml --- Interview questions - Career Services - UW Sto...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSnifer\\u002fsecurity-cheatsheets --- Snifer\\u002fsecurity-cheatsheets · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002finfo\\u002fsearch.aspx?artkw=xp+style&sbo=kw --- CodeProject: Search Articles. ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fReactTraining\\u002freact-router\\u002fissues\\u002f2101 --- :reactjs Some theory and examples for ...\"],[\"https:\\u002f\\u002fwww.digitalocean.com\\u002f --- SSD Cloud Server, VPS Server :: DigitalOcean plans start from $5 -...\"],[\"http:\\u002f\\u002fwww.esecurityplanet.com\\u002fbrowser-security\\u002fchrome-firefox-and-ie-fall-at-pwn2own-2013.html --- ...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fEvaluation_strategy --- Evaluation strategy - call by value vs call by...\"],[\"http:\\u002f\\u002fcaloriecount.about.com\\u002fcc\\u002fmobile.php --- Calorie Count Mobile --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mdpi.com\\u002f1424-8220\\u002f13\\u002f4\\u002f5338 --- Sensors | Free Full-Text | Open-Source Colorimeter --- 2...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002f6-AXIS-ROBOTIC-ARM\\u002f --- :DIY :ROBOTICS 6 AXIS ARM --- 2017-05-12...\"],[\"http:\\u002f\\u002fbestgardeningproductsreview.com\\u002f --- --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPimsleur_method --- Pimsleur language learning system - Wikipedia, the ...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f7112392\\u002fkeystore-eclipse-adt-file-location --- android - Keystore...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fsql\\u002feditions\\u002fexpress\\u002flearnvideos.mspx --- SQL Server Express Edition Learni...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fdiy-water-distiller-makes-sources-water-safe-drink\\u002f --- DIY Water Di...\"],[\"http:\\u002f\\u002fcryptostudio.sourceforge.net\\u002f --- CryptoStudio --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsergtitov\\u002fNodeJS-Learning --- sergtitov\\u002fNodeJS-Learning --- 2017-05-12...\"],[\"http:\\u002f\\u002fop-co.de\\u002fblog\\u002fposts\\u002fandroid_ssl_downgrade\\u002f --- Why Android SSL was downgraded from AES256-SHA...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgrbl\\u002fgrbl --- grbl\\u002fgrbl · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002frefspecs.linuxfoundation.org\\u002ffhs.shtml --- FHS Referenced Specifications --- 2017-05-12...\"],[\"https:\\u002f\\u002fchrome.google.com\\u002fwebstore\\u002fdeveloper\\u002fdashboard --- :google-apps Developer Dashboard - Chrome...\"],[\"http:\\u002f\\u002fwww.sstl.co.uk\\u002f --- Surrey Satellite Technology Ltd. (SSTL) --- 2017-05-12...\"],[\"https:\\u002f\\u002fconsensys.net\\u002fresources\\u002fguides\\u002f --- Guides - ConsenSys --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.clayandglass.on.ca\\u002fDefault.aspx?pageId=730683 --- FUSION: The Ontario Clay and Glass Asso...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fms742538.aspx --- Resources (WPF) --- 2017-05-12...\"],[\"http:\\u002f\\u002fopensourceecology.org\\u002fwiki\\u002fPolylactic_acid\\u002fResearch_Development#Lactic_acid_bacteria --- PLA ...\"],[\"https:\\u002f\\u002fgithub.com\\u002ferikras\\u002fducks-modular-redux --- :redux A proposal for bundling reducers, action t...\"],[\"http:\\u002f\\u002fwww.cs.nott.ac.uk\\u002f~pszgmh\\u002fparsing.pdf --- :functional-programming :paper higher-order functio...\"],[\"http:\\u002f\\u002fonerng.info\\u002f --- OneRNG - Hardware Random Number Generator --- 2017-05-12...\"],[\"http:\\u002f\\u002f12bytes.org\\u002farticles\\u002ftech\\u002fcool-android-apps --- cool android apps --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.iqfeed.net\\u002f --- Welcome to IQFeed! - Fast, Reliable, Affordable. Datafeeds and API. --- 2...\"],[\"http:\\u002f\\u002fchristonard.com\\u002f12-free-data-mining-books\\u002f?imm_mid=0bd168&cmp=em-strata-na-na-newsltr_2014052...\"],[\"http:\\u002f\\u002fdocs.scala-lang.org\\u002foverviews\\u002fcollections\\u002fintroduction.html --- Introduction - Scala Document...\"],[\"https:\\u002f\\u002fwiki.mobileread.com\\u002fwiki\\u002fDebian_Linux_on_a_Kobo --- :diy :tablet Debian Linux on a Kobo --- ...\"],[\"http:\\u002f\\u002foutdoor-survival.knoji.com\\u002foutdoor-survival-tips-filtering-water-for-safe-drinking\\u002f --- Outdo...\"],[\"http:\\u002f\\u002fwww.lulu.com\\u002fspotlight\\u002fowasp --- OWASP's Books and Publications Spotlight --- 2017-05-12...\"],[\"http:\\u002f\\u002fumbraco.org\\u002f --- Umbraco - The open source ASP.NET CMS --- 2017-05-12...\"],[\"http:\\u002f\\u002fccl.northwestern.edu\\u002fnetlogo\\u002fmodels\\u002fPercolation --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002farstechnica.com\\u002ftech-policy\\u002f2017\\u002f04\\u002fwikileaks-just-dropped-the-cias-secret-how-to-for-infect...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcafreeman\\u002fDemo_SparkR --- cafreeman\\u002fDemo_SparkR · GitHub ... :apache-spark :r-pr...\"],[\"http:\\u002f\\u002fwww.lifehack.org\\u002farticles\\u002ftechnology\\u002fhow-google-like-boss-become-master-google-search-with-th...\"],[\"https:\\u002f\\u002fwww.mapr.com\\u002fproducts\\u002fhadoop-download --- Hadoop Download | MapR --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fintl\\u002fru\\u002ftraining\\u002fsync-adapters\\u002findex.html --- Transferring Data Using S...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002faustinavrashow\\u002farchive\\u002f2008\\u002f01\\u002f25\\u002fgraphic-design-for-the-code-centric-individ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fmswanson\\u002farchive\\u002f2006\\u002f10\\u002f15\\u002fexample-c-code-for-reading-flash-swf-files.aspx --...\"],[\"http:\\u002f\\u002fwww.hermetic.ch\\u002fkwg\\u002fkwg.htm --- Keywords Meta Tag Generator --- 2017-05-12...\"],[\"http:\\u002f\\u002fjordan-wright.com\\u002fblog\\u002f2013\\u002f10\\u002f14\\u002fautomated-social-engineering-recon-using-rapportive\\u002f --- Au...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjavve\\u002flist.js --- :javascript list.js -- The perfect library for adding search, s...\"],[\"http:\\u002f\\u002fwww.notyourmotherscookbook.com\\u002fflatbread-revolution\\u002f --- homemade tandoori oven | ... their p...\"],[\"http:\\u002f\\u002fwww.pcworld.com\\u002farticle\\u002f2046940\\u002feasily-find-free-ebooks.html?%23tk.out_mod?=obnetwork --- Eas...\"],[\"http:\\u002f\\u002fwww.drillyourownwell.com\\u002fbackground.htm --- How to Drill Your Own Water Well --- 2017-05-12...\"],[\"http:\\u002f\\u002fdiydrones.com\\u002fprofiles\\u002fblog\\u002fshow?id=705844:BlogPost:2092268&commentId=705844:Comment:2092271&...\"],[\"Functional JavaScript Resources --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fleanpub.com\\u002freactspeedcoding\\u002fread --- Read React Speed Coding | Leanpub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002ffl-studio-cookbook --- FL Studio Cookbook - Download eBook PDF - ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstaltz\\u002fawesome-react --- GitHub - staltz\\u002fawesome-react: A collection of awesome R...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffuncool\\u002fcats --- GitHub - funcool\\u002fcats: Category Theory and Algebraic abstraction...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjolby\\u002frincanter --- GitHub - jolby\\u002frincanter: Use embedded R from Clojure and Inc...\"],[\"https:\\u002f\\u002fcredacash.com\\u002f --- CredaCash™ &#8211; Powering the Digital Economy --- 2017-05-12...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:clojure\\u002f --- Pinboard bookmarks tagged clojure --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nytimes.com\\u002f2016\\u002f06\\u002f18\\u002fbusiness\\u002fdealbook\\u002fhacker-may-have-removed-more-than-50-million-fro...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fSpecial_number_field_sieve --- Special number field sieve - Wikipedia,...\"],[\"https:\\u002f\\u002flumanu.com\\u002f --- HTTP Error 403 --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fplaylist?list=PLZI9BDZ5udV2aSW9Fifl5lqynLxyHTKom --- [No Title] --- 2017-05-...\"],[\"https:\\u002f\\u002fwww.raspberrypi.org\\u002fforums\\u002fviewtopic.php?f=40 --- Raspberry Pi &bull; Information --- 2017-0...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=C4k_lTdW_So --- 15 Months of Misadventures - Our Strawbale House - Y...\"],[\"http:\\u002f\\u002freactivex.io\\u002flearnrx\\u002f --- Functional Programming in Javascript ... :rxjs Functional Programmi...\"],[\"https:\\u002f\\u002fwww.panorama.com\\u002fblog\\u002fthe-20-most-influential-business-intelligence-blogs\\u002f --- 302 Found ---...\"],[\"http:\\u002f\\u002fblog.japila.pl\\u002f2012\\u002f03\\u002fclojures-java-interop-in-java\\u002f --- Clojure&#8217;s Java interop in Jav...\"],[\"https:\\u002f\\u002fpetertodd.org\\u002f2013\\u002fdisentangling-crypto-coin-mining --- Disentangling Crypto-Coin Mining: Ti...\"],[\"http:\\u002f\\u002fplanet.clojure.in\\u002f --- Planet Clojure --- 2017-05-12...\"],[\"http:\\u002f\\u002fnumergent.com\\u002f2016-10\\u002fDeploying-a-Clojure-application-from-Gitlab-CI-to-Heroku.html --- Deplo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fCascading\\u002fImpatient-Cascalog --- GitHub - Cascading\\u002fImpatient-Cascalog: Cascalog ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpeterschwarz\\u002fclj-firmata --- GitHub - peterschwarz\\u002fclj-firmata: clj-firmata provi...\"],[\"https:\\u002f\\u002fgithub.com\\u002fonyxbits\\u002fRaccoon --- GitHub - onyxbits\\u002fRaccoon: Google Play desktop client --- 20...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fseanxwh\\u002ff575104c81c2bcbdcfba --- Hardcore Function Javascript - Compose Ex ·...\"],[\"http:\\u002f\\u002fsporto.github.io\\u002fblog\\u002f2013\\u002f02\\u002f22\\u002fa-plain-english-guide-to-javascript-prototypes\\u002f --- A Plain ...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fSelf-regulating-watering-system\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fgambitscheme.org\\u002fwiki\\u002findex.php\\u002fMain_Page --- Main Page - Gambit wiki --- 2017-05-12...\"],[\"e-string.com\\u002farticles\\u002fadventures-react-native-clojurescript\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002fwebrtc --- WebRTC - GeekBooks - Free Tech PDF eBook Library --- 20...\"],[\"http:\\u002f\\u002fneuronrobotics.com\\u002f --- Neuron Robotics Cooperative --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftravis\\u002flein-storm-project-template --- GitHub - travis\\u002flein-storm-project-templat...\"],[\"https:\\u002f\\u002fgithub.com\\u002freplikativ\\u002fsuperv.async --- GitHub - replikativ\\u002fsuperv.async: This is a Clojure(S...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchentsulin\\u002fawesome-graphql --- GitHub - chentsulin\\u002fawesome-graphql: Awesome list ...\"],[\"https:\\u002f\\u002fjuxt.pro\\u002fblog\\u002fopensource --- JUXT Opensource --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.zimperium.com\\u002fexperts-found-a-unicorn-in-the-heart-of-android\\u002f --- Experts Found a Unic...\"],[\"http:\\u002f\\u002fmooc.fi\\u002fcourses\\u002f2014\\u002fclojure\\u002findex.html --- Functional programming with Clojure --- 2017-05-1...\"],[\"http:\\u002f\\u002fdeveloper.servalproject.org\\u002fdokuwiki\\u002fdoku.php?id=content:about --- The Serval Project - The S...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjuxt\\u002fedge --- GitHub - juxt\\u002fedge: The (b)leading edge --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fClosure_(computer_programming) --- Closure (computer programming) - Wik...\"],[\"https:\\u002f\\u002faphyr.com\\u002ftags\\u002fClojure-from-the-ground-up --- Clojure from the ground up ... :Clojure from t...\"],[\"http:\\u002f\\u002frobolectric.org\\u002f --- Robolectric --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ccs.neu.edu\\u002fhome\\u002fdherman\\u002fresearch\\u002ftutorials\\u002fmonads-for-schemers.txt --- [No Title] --- 20...\"],[\"http:\\u002f\\u002fwww.ctocorner.com\\u002ffsharp\\u002fbook\\u002fdefault.aspx --- The CTO Corner --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms953320.aspx --- Deploying Windows Forms Applications with ...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftrustedsec\\u002funicorn --- trustedsec\\u002funicorn · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fmukhanov.ucoz.kz\\u002fload\\u002fkitaptar\\u002fmuezov_quotabaj_zholyquot_1_4_tomy\\u002f3-1-0-12 --- Абай жоÐ...\"],[\"http:\\u002f\\u002fwww.yourkit.com\\u002f --- Java Profiler - .NET Profiler - The profilers for Java and .NET professi...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthheller\\u002fshadow-devtools --- :clojurescript :tools devtools for cljs --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.artima.com\\u002finsidejvm\\u002fed2\\u002fthreadsynch.html --- Thread Synchronization and the Java Monitor...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f4-ways-to-deter-wasps-naturally\\u002f --- 4 Ways to Deter Wasps Naturally | Most ...\"],[\"http:\\u002f\\u002f3dprinting.com\\u002f --- 3dprinting.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.icontact.com\\u002flp\\u002findex.php?gwov=1&afid=363267&ga_campaign=(roi)+bulk\\u002fmass+email+(content)&...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2014\\u002f04\\u002f16\\u002fsurvival-food-that-lasts-forever\\u002f --- Survival Foods That Lasts F...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjuleswhite\\u002fmobilecloud-14 --- juleswhite\\u002fmobilecloud-14 · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fphdays\\u002fjava-35303854 --- Cracking Pseudorandom Sequences Generators in Jav...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdatabase\\u002fCsvReader.aspx --- A Fast CSV Reader - CodeProject --- 2017-0...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fforum\\u002fforum.php?forum_id=941556 --- SourceForge.net: News: ClamWin Free Antiv...\"],[\"http:\\u002f\\u002fwoork.blogspot.com\\u002f2008\\u002f03\\u002fcss-message-box-collection.html --- CSS Message Box collection ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhanuor\\u002fonyx --- :ai :android lib --- understands the displayed content --- 2017-...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002ftims\\u002farchive\\u002ftags\\u002fportfolio\\u002fdefault.aspx --- Tim Sneath --- 2017-05-12...\"],[\"http:\\u002f\\u002flibrary.msri.org\\u002fbooks\\u002fBook44\\u002f --- MSRI Publications – Volume 44 : Algorithmic Number Theor...\"],[\"http:\\u002f\\u002frodovid.me\\u002fblog\\u002fsolar_power\\u002f --- солнечные воздушные шары --- 2017-05-12...\"],[\"https:\\u002f\\u002fdeals.sourceforge.net\\u002fsales\\u002fwi-fi-hacking-penetration-testing-from-scratch-course --- 'Wi-Fi...\"],[\"https:\\u002f\\u002flagunita.stanford.edu\\u002fcourses\\u002fOLI\\u002fProbStat\\u002fOpen\\u002fabout --- Probability and Statistics (Open +...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdotnet\\u002forleans --- :.net :microsoft :Orleans Distributed Virtual Actor Model --- ...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fMake-an-Oscilloscope-Using-the-SainSmart-Mega2560-\\u002f --- Make an Osci...\"],[\"http:\\u002f\\u002fwww.codemanship.co.uk\\u002fparlezuml\\u002fmetrics\\u002fOO%20Design%20Principles%20&%20Metrics.pdf --- OO Des...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fPDF\\u002fActivator.pdf --- Activator pattern --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.knime.org\\u002fknime-applications\\u002fchurn-analysis --- KNIME | Churn \\u002f Cancelation \\u002f Retention ...\"],[\"http:\\u002f\\u002fwebpy.org\\u002fsrc\\u002flecker --- lec.ker - a simple del.icio.us clone (web.py) --- 2017-05-12...\"],[\"http:\\u002f\\u002fbeyondrelational.com\\u002fjustlearned\\u002fposts\\u002f921\\u002faspnet-decoding-viewstate-is-very-simple-by-using-...\"],[\"http:\\u002f\\u002fnmap.org\\u002fmisc\\u002f --- nmap book, h9 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=17555 --- Интеграция XForms и Google Web Toolkit: ...\"],[\"http:\\u002f\\u002fmedia.photobucket.com\\u002fimage\\u002frecent\\u002fratrodhooch\\u002fC360_2012-06-16-18-17-27_org.jpg --- Wagon ---...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fGoogleBookDownloader --- Google Book Downloader - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcaesar0301\\u002fawesome-pcaptools --- caesar0301\\u002fawesome-pcaptools · GitHub --- 2017-...\"],[\"http:\\u002f\\u002fwww.cl-http.org\\u002fcl-http\\u002f --- Common Lisp Hypermedia Server (CL-HTTP) --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fmeteor-dapp-whisper-chat-client --- GitHub - ethereum\\u002fmeteor-dapp-whispe...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3082715&R=3082715 --- Google hacks [100 indust...\"],[\"http:\\u002f\\u002firidium.com\\u002fdefault.aspx --- Iridium Satellite Phone Communications | Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fvbinar.com\\u002f#\\u002fhome --- vbinar :webinar aggregation platform :video --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.resumerabbit.com\\u002findex.jsp?pid=f0baf030f62892923a72a393519ea4a5 --- Find a job: Post Resu...\"],[\"http:\\u002f\\u002fremoveandreplace.com\\u002f2013\\u002f09\\u002f19\\u002fcancel-satellite-tv-turn-existing-dish-hdtv-antenna\\u002f --- SAVE...\"],[\"http:\\u002f\\u002fmitmproxy.org\\u002f --- mitmproxy - home --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f5607300\\u002fskeleton-tracking-with-2d-camera --- c# - Skeleton tracki...\"],[\"https:\\u002f\\u002fblog.scrapinghub.com\\u002f --- :WebScraping --- Turn Web Content Into Useful Data --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.fretjam.com\\u002fguitar-strumming-technique.html --- Essential Guitar Strumming Technique --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnikitavoloboev\\u002fknowledge-map --- :tools :opensource :bookmarking knowledge-map Co...\"],[\"https:\\u002f\\u002fgithub.com\\u002fIntelLabs\\u002fflrc --- IntelLabs\\u002fflrc :Haskell Research :Compiler --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fvscode\\u002fissues\\u002f22900 --- CPU usage even when idle (due to cursor renderi...\"],[\"http:\\u002f\\u002fsnakeoil.cr.yp.to\\u002f --- snakeoil.cr.yp.to :: Snake Oil Crypto Competition --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.yardbirdsuite.com\\u002f --- Yardbird Suite Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fclubs.ya.ru\\u002f4611686018427440464\\u002freplies.xml?item_no=85 --- rebuild linux core --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fview\\u002fView.html#getDrawingCache%28boolean%29 --- View....\"],[\"http:\\u002f\\u002fblog.zhaw.ch\\u002fidp\\u002fsefblog\\u002findex.php?\\u002farchives\\u002f353-Introduction-to-State-Space-Models-Script-an...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fwirex\\u002fblog\\u002f284542\\u002f --- :processing how designers use math --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002faix\\u002flibrary\\u002fau-badunixhabits.html --- UNIX tips: Learn 10 good UNI...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2014\\u002f06\\u002f16\\u002ftext-from-laptop\\u002f?crlt.pid=camp.ev3C5RNdIeBI --- Misplace or break yo...\"],[\"http:\\u002f\\u002fpimame.org\\u002f --- PiMAME | Gaming and Emulators for the Raspbery Pi | Shea Silverman --- 2017-0...\"],[\"https:\\u002f\\u002fgist.github.com\\u002f255291 --- Frequency estimation methods in Python — Gist --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMte90\\u002fFB-Android-Crash --- :security :exploits Mte90\\u002fFB-Android-Crash How to cra...\"],[\"https:\\u002f\\u002fwww.usenix.org\\u002fsystem\\u002ffiles\\u002fconference\\u002fusenixsecurity12\\u002fsec12-final107.pdf --- Droidscope: s...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fandroid-youtube-player\\u002f --- android-youtube-player - Android component tha...\"],[\"http:\\u002f\\u002fwww.contourcrafting.org\\u002f --- Contour Crafting - CC --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fAsterisk%2BSIP%2BNAT%2Bsolutions --- Asterisk SIP NAT solutions -...\"],[\"http:\\u002f\\u002fwww.cis.upenn.edu\\u002f~treebank\\u002f --- Penn Treebank Project --- 2017-05-12...\"],[\"http:\\u002f\\u002fipfs2010webtest.codeplex.com\\u002f --- InfoPath Forms Services 2010 Web Testing Toolkit --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fHFTrader\\u002fDeepLearningBook\\u002fblob\\u002fmaster\\u002fDeepLearningPapers.md --- :books :papers :d...\"],[\"http:\\u002f\\u002fwww.theguardian.com\\u002fglobal-development-professionals-network\\u002f2013\\u002foct\\u002f23\\u002firrigation-systems-a...\"],[\"http:\\u002f\\u002ffaq.sipbroker.com\\u002ftiki-index.php --- sipbroker instructions --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fwindows\\u002fhardware\\u002fff545448%28v=vs.85%29.aspx#where_can_i_down...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fos\\u002fMessage.html --- Message | Android Developers --- ...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?familyid=bb7979d3-7d56-4cf8-8cbd-c9eef1ab8b64&displa...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3145574&R=3145574 --- Semiconductor device-bas...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f287512\\u002f --- :education :moocs learning how to learn --- 2017-05-12...\"],[\"http:\\u002f\\u002fcmusphinx.sourceforge.net\\u002f --- :opensource :speech recognition :toolkit CMU Sphinx --- 2017-0...\"],[\"http:\\u002f\\u002fwww.openculture.com\\u002f2014\\u002f12\\u002ffill-your-new-kindle-ipad-iphone-ereader-with-free-ebooks-movies-...\"],[\"http:\\u002f\\u002fwebdevdotnet.blogspot.com\\u002f2009\\u002f02\\u002fmini-jquery-lab.html --- Web Dev .NET: Mini jQuery Lab --- ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3090038&R=3090038 --- JavaScript the good part...\"],[\"http:\\u002f\\u002fwww.manning.com\\u002fkapur\\u002f --- Manning: Programming for Musicians and Digital Artists --- 2017-05...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fmagazine\\u002fff714587.aspx --- MSDN Magazine: Thread Performance - Reso...\"],[\"http:\\u002f\\u002fmattmahoney.net\\u002fdc\\u002fdce.html --- Data Compression Explained --- 2017-05-12...\"],[\"http:\\u002f\\u002fsimplyclassified.codeplex.com\\u002f --- Simply Classified - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002ftechnomancy.us\\u002f182 --- :games :kids :lua in which four pieces are placed in a row --- 2017-05...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fAsterisk+.NET --- Asterisk .NET - voip-info.org --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.cloudcracker.com\\u002f --- CloudCracker :: Online Hash Cracker --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gaussianprocess.org\\u002f --- The Gaussian Processes :: book --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sliksvn.com\\u002fen\\u002fdownload\\u002f --- Subversion Client and hosting --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.collecting-pens.info\\u002frx\\u002f?p=Vm10V1UxRXlTWGxWYmxKV1lXeGFUMVpzV21GaU1WcHhVVzFHYTFadGVEQlVWVk...\"],[\"--- Master the Art of Electronics Repair In this hands-on guide, a lifelong… --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.freeworlddialup.com\\u002fhelp\\u002f?p=knowledgebase&c=0 --- Free World Dialup --- 2017-05-12...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fshijuvarghese\\u002farchive\\u002f2009\\u002f03\\u002f12\\u002fapplying-dependency-injection-in-asp-net-mvc...\"],[\"https:\\u002f\\u002fgithub.com\\u002folivernn\\u002flunr.js --- olivernn\\u002flunr.js · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002frampup\\u002fdefault.aspx --- Ramp Up --- 2017-05-12...\"],[\"http:\\u002f\\u002fgodandguns.tumblr.com\\u002fpage\\u002f17 --- Take down | Mada Krav Maga in Shelby Township, MI teaches r...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f230451\\u002f --- switch Java to Scala. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwpfandclickonce.codeplex.com\\u002f --- WPF and ClickOnce - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fjohnglover.co.uk\\u002findex.cfm\\u002fimage-detail\\u002f?image-name=gfr.576%20kumquot%20in%20large%20containe...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fbags\\u002farchive\\u002f2008\\u002f08\\u002f05\\u002frest-in-wcf-blog-series-index.aspx --- Demystifying Th...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fRobocasting --- Robocasting - Wikipedia, the free encyclopedia --- 2017...\"],[\"http:\\u002f\\u002fwww.familyhandyman.com\\u002fautomotive\\u002fhow-to-loosen-stuck-bolts --- How to Loosen Nuts, Bolts and...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=assembly+language --- assembly language : ...\"],[\"https:\\u002f\\u002fhackage.haskell.org\\u002fpackage\\u002ffrp-arduino --- :haskell :frp :arduino programming without the h...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3079366&R=3079366 --- Applied cryptography pro...\"],[\"http:\\u002f\\u002fwww.thesecurityblogger.com\\u002fcool-tool-foca-network-intelligence-reconnaissance-using-metadata\\u002f...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsoravux\\u002fscoop\\u002f --- soravux\\u002fscoop · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fain.ua\\u002f10-neobychnyx-igr-kotorye-uchat-programmirovaniyu-i-logike --- :games :kids 10 games ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fcpuss\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=11166 --- CPU Scheduling Simula...\"],[\"https:\\u002f\\u002fwww.indiehackers.com\\u002fforum\\u002fpost\\u002f-KgG2eMQ4Sv9wWUc4SKJ --- :business-tips Anyone actually aimi...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmarkerikson\\u002freact-redux-links\\u002fblob\\u002fmaster\\u002ffunctional-programming.md --- :awesome ...\"],[\"http:\\u002f\\u002fwww.dotnetcurry.com\\u002fhtml5\\u002f1174\\u002fhtml5-video-subtitles-webvtt-ttml --- HTML5 Video with Subtitl...\"],[\"http:\\u002f\\u002fsafe.cnews.ru\\u002fnews\\u002ftop\\u002findex.shtml?2014\\u002f09\\u002f25\\u002f587002 --- Ð’ Linux и Unix найдена ма...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2016\\u002f01\\u002f11\\u002fnetflix-search-codes\\u002f#4I3R1m4MmZqt --- Netflix has tons of hidden cat...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=BzmuEhBc3yk --- Angular 2 Http - Working with RxJS Observables - YouT...\"],[\"http:\\u002f\\u002fwww.process.com\\u002fopenvms\\u002fhobbyist.html --- Process Software - OpenVMS Hobbyist Program --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fropensci\\u002ftesseract --- :tesseract :R-project Bindings to :OCR --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMaciejCzyzewski\\u002fretter --- A collection of hash functions, ciphers, tools, librar...\"],[\"http:\\u002f\\u002fwww.haskell.org\\u002f --- Haskell - HaskellWiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aircrack-ng.org\\u002fdoku.php --- Main [Aircrack-ng] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.edubuntu.com\\u002f --- Edubuntu Home Page | edubuntu --- 2017-05-12...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=com.tidahouse.englishpod&feature=related_apps --- Engl...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fsdl\\u002farchive\\u002f2008\\u002f07\\u002f18\\u002fwalking-with-the-sdl-part-1.aspx --- The Security Devel...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjuuso\\u002fBozoCrack --- bozocrack --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_8190052_grow-cucumbers-5gallon-bucket.html --- You can create a low-cost pat...\"],[\"https:\\u002f\\u002fhelp.ubuntu.com\\u002f8.04\\u002f --- Documentation for Ubuntu 8.04 --- 2017-05-12...\"],[\"https:\\u002f\\u002ftechcrunch.com\\u002f2015\\u002f07\\u002f08\\u002fyc-backed-transcend-launches-an-extra-efficient-led-light-for-indo...\"],[\"https:\\u002f\\u002fwww.ncbi.nlm.nih.gov\\u002fpubmed\\u002f27653887 --- :brain-research :stress-management At-home tDCS of ...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fattribution_link?a=E49qxogdnrc&u=\\u002fwatch%3Fv%3D0D2ldyBJGWM%26feature%3Dshare -...\"],[\"https:\\u002f\\u002fwww.knime.org\\u002flearning-hub --- KNIME | Learning Hub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.pcmag.com\\u002farticle2\\u002f0,2817,2405457,00.asp --- Turn Any TV Into a Smart TV --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.bitcoin.it\\u002fwiki\\u002fDiabloMiner --- DiabloMiner - Bitcoin --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.disects.com\\u002f2012\\u002f02\\u002flearn-malware-analysis-rce.html --- Security Unplugged !!!: URL's to...\"],[\"https:\\u002f\\u002fliberland.org\\u002fen\\u002fabout\\u002f --- Liberland.org - About Liberland --- 2017-05-12...\"],[\"https:\\u002f\\u002fadtoapp.com\\u002f --- double the current advertising revenues of your mobile application\\u002fgame. --...\"],[\"http:\\u002f\\u002fadv-r.had.co.nz\\u002f --- Welcome · Advanced R. --- 2017-05-12...\"],[\"https:\\u002f\\u002fmedium.com\\u002fslack-developer-blog\\u002fbuild-a-serverless-slack-bot-in-9-minutes-with-node-js-and-s...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002fjava\\u002flibrary\\u002fj-solr-lucene\\u002findex.html?ca=drs- --- Next-generation ...\"],[\"http:\\u002f\\u002ffabian-affolter.ch\\u002fblog\\u002findex.php\\u002fnmap-scripts-for-voip-analyses --- sip library for nmap ---...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fPrimitive_permutation_group --- Primitive permutation group - Wikipedia...\"],[\"https:\\u002f\\u002fproject-everest.github.io\\u002f --- verified :cryptography -- Project Everest --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3214097&R=3214097 --- Mastering Bitcoin : unlo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmarcingrzejszczak\\u002fmockito-cookbook --- marcingrzejszczak\\u002fmockito-cookbook · GitH...\"],[\"http:\\u002f\\u002fequip2survive.blogspot.com\\u002f2015\\u002f01\\u002fthe-perfect-diy-battery-bank-for.html --- This is a MUST R...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fPixelDragonsMVC --- PixelDragonsMVC.NET - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.turnkeylinux.org\\u002fdjango --- Django Appliance | TurnKey Linux Virtual Appliance Library --...\"],[\"http:\\u002f\\u002frurust.github.io\\u002frust_book_ru\\u002fREADME.html --- :rust-lang :russian :books :free intro to rust ...\"],[\"http:\\u002f\\u002fwww.packtpub.com\\u002fhardware-and-creative\\u002fpython-secret-agents --- Python for Secret Agents | Pa...\"],[\"http:\\u002f\\u002flucene.apache.org\\u002fpylucene\\u002findex.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fforyourinformation.info\\u002feducation\\u002fhow-to-solar-power-your-home-everything-you-need-to-know-ex...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdnbard\\u002fawesome-knockout --- dnbard\\u002fawesome-knockout · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.makeuseof.com\\u002ftag\\u002fhow-to-benefit-from-linux-advancements-now-rather-than-later\\u002f --- :HowT...\"],[\"http:\\u002f\\u002frapid-i.com\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.microsoft.com\\u002fcognitive-services --- :free :Microsoft Cognitive Services :API --- 2017-0...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fETLWithCSharp.aspx --- CodeProject: Write ETL jobs in pure C#. Free...\"],[\"http:\\u002f\\u002fwww.phoenix-geophysics.com\\u002fhome\\u002f --- Phoenix Geophysics Ltd - Geophysical manufacturing and c...\"],[\"http:\\u002f\\u002fkossovsky.net\\u002findex.php\\u002f2009\\u002f10\\u002fjtemplates-jquery-template-engine\\u002f --- jTemplates – jQuery ...\"],[\"https:\\u002f\\u002fwww.traccar.org\\u002f --- Traccar - open source GPS tracking system --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.freelan.org\\u002f --- freelan - A VPN client that loves you ! --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.plus500.com\\u002f --- Plus500 | Trade online forex, commodities, CFD, stocks\\u002fshares\\u002fequities\\u002fs...\"],[\"http:\\u002f\\u002fwww.pronto.com\\u002fuser\\u002fsearch.do?displayQuery=mini%20pinhole%20camera&SEM=true&query=mini%20pinh...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjduck\\u002fandroid-cluster-toolkit --- jduck\\u002fandroid-cluster-toolkit · GitHub --- 201...\"],[\"http:\\u002f\\u002fwww.gnu.org\\u002fsoftware\\u002fmdk\\u002fmanual\\u002fhtml_node\\u002fMIX-architecture.html --- MIX architecture - GNU MI...\"],[\"https:\\u002f\\u002fpypi.python.org\\u002fpypi\\u002ftrueseeing --- :security :tools trueseeing :android vulnerability scann...\"],[\"http:\\u002f\\u002fwiki.eclipse.org\\u002fEclipseLink\\u002fExamples\\u002fJPA\\u002fJPAConfigure --- EclipseLink\\u002fExamples\\u002fJPA\\u002fConfigure...\"],[\"http:\\u002f\\u002fwww.linuxjournal.com\\u002farticle\\u002f9676 --- Tesseract: an Open-Source Optical Character Recognition...\"],[\"http:\\u002f\\u002fwww.windbg.org\\u002f --- WinDbg --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbig-data-and-business-intelligence\\u002fapache-mesos-essentials --- Apache Mesos...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftrustedsec\\u002fmeterssh --- MeterSSH :: take shellcode, inject it into memory, tunnel...\"],[\"http:\\u002f\\u002fwww.xda-developers.com\\u002f --- xda-developers --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhugo53\\u002fawesome-RemoteWork --- hugo53\\u002fawesome-RemoteWork --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.millerwelds.com\\u002finterests\\u002fprojects\\u002fideagallery\\u002fproject\\u002f5690832256 --- Radio Flyer Hot Rod...\"],[\"http:\\u002f\\u002fwww.the-asterisk-book.com\\u002funstable\\u002f --- Practical Asterisk 1.4 (unstable) --- 2017-05-12...\"],[\"http:\\u002f\\u002fandroidcookbook.com\\u002fRecipe.seam?recipeId=2111 --- Android Cookbook: Recipe Obfuscating and Op...\"],[\"https:\\u002f\\u002fhelp.ubuntu.com\\u002fcommunity\\u002fRootSudo --- RootSudo - Community Ubuntu Documentation --- 2017-05...\"],[\"http:\\u002f\\u002freprap.org\\u002fwiki\\u002fHotend_theory --- :3d-printers Hot End Design Theory - RepRapWiki --- 2017-05...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fnicolenguyen\\u002fso-me-put-in-work-work-work-work?utm_term=.fjOD9ZaJ2 --- 15 App...\"],[\"http:\\u002f\\u002fblog.tartanllama.xyz\\u002fc++\\u002f2017\\u002f03\\u002f24\\u002fwriting-a-linux-debugger-breakpoints\\u002f --- :cpp Writing a ...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%A2%D0%B5%D0%BE%D1%80%D0%B8%D1%8F_%D0%B3%D1%80%D0%B0%D1%84%D0%BE%D0%...\"],[\"http:\\u002f\\u002fwww.bkent.net\\u002fDoc\\u002fsimple5.htm --- A Simple Guide to Five Normal Forms in Relational Database ...\"],[\"https:\\u002f\\u002fwww.google.com\\u002fwebmasters\\u002ftools\\u002findexstats?siteUrl=http%3A%2F%2Ftamada-sairan.kz%2F&hl=en --...\"],[\"http:\\u002f\\u002fwww.inkthat.us\\u002fkali-linux\\u002f802-11-recommended-usb-wireless-cards-for-kali-linux\\u002f --- 802.11 Re...\"],[\"http:\\u002f\\u002fwww.theprepperjournal.com\\u002f2013\\u002f07\\u002f11\\u002f100-year-old-way-to-filter-rainwater-in-a-barrel\\u002f --- 10...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgooglesamples\\u002fgoogle-services --- googlesamples\\u002fgoogle-services · GitHub --- 201...\"],[\"http:\\u002f\\u002fwww.asp.net\\u002fmvc\\u002f --- ASP.NET MVC : The Official Microsoft ASP.NET Site --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fexec\\u002fobidos\\u002fASIN\\u002f1573980137\\u002fref=nosim\\u002fmitopencourse-20 --- Lions' Commentary o...\"],[\"https:\\u002f\\u002fgithub.com\\u002fspring-projects\\u002fspring-boot\\u002fblob\\u002fmaster\\u002fspring-boot-docs\\u002fsrc\\u002fmain\\u002fasciidoc\\u002fcloud-...\"],[\"http:\\u002f\\u002fwww.imeem.com\\u002ftag\\u002fjohn%20abercrombie\\u002fmusic\\u002f?p=1 --- john abercrombie Music on IMEEM --- 2017-...\"],[\"http:\\u002f\\u002fwww.howtoselectguides.com\\u002fdotnet\\u002fobfuscators\\u002f --- Obfuscation Tools for .NET --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftobiasahlin\\u002fSpinKit --- :animation :webdev SpinKit -- collection of loading indic...\"],[\"http:\\u002f\\u002fwww.tutorialspoint.com\\u002fscala\\u002fpartially_applied_functions.htm --- Scala Partially Applied Func...\"],[\"http:\\u002f\\u002fcss-tricks.com\\u002fcss-sprites\\u002f --- CSS Sprites: What They Are, Why They’re Cool, and How To Us...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002ff7dy01k1.aspx --- Ildasm.exe (MSIL Disassembler) --- 2017-05...\"],[\"http:\\u002f\\u002fblakemasters.com\\u002fpeter-thiels-cs183-startup --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.centos.org\\u002fdocs\\u002f4\\u002f --- CentOS-4 Documentation --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3093404&R=3093404 --- Windows 7 resource kit :...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyId=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&displa...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fvertdider\\u002fblog\\u002f285654\\u002f --- :russian :physics Feinman Lectures --- 2017-...\"],[\"http:\\u002f\\u002fwww.vmware.com\\u002fappliances\\u002fdirectory\\u002f578853 --- Ubuntu 10.04 LTS JeOS | Virtual Appliance Mark...\"],[\"https:\\u002f\\u002fccrma.stanford.edu\\u002f~jos\\u002f --- JOS Home Page --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.dmbcllc.com\\u002f2008\\u002f06\\u002f10\\u002fdotnetnuke-skinning-getting-setup\\u002f --- DotNetNuke Skinning – Ge...\"],[\"http:\\u002f\\u002fwww.voiceelements.com\\u002fProducts\\u002fOverview.aspx --- .NET Telephony Toolkit, SIP Stack and Hostin...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fthankyou.aspx?familyId=7bf65b28-06e2-4e87-9bad-086e32185e68&displ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSuvitruf\\u002fAndroid-ndk --- Suvitruf\\u002fAndroid-ndk · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fbuildwithreact.com\\u002f --- :tutorial Build with :ReactJS --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.visualstudio.com\\u002fdownload --- Download Visual Studio Code - Mac OS X, Linux, Windows --...\"],[\"http:\\u002f\\u002fdanthemonkey.hubpages.com\\u002fhub\\u002f12-tips-for-growing-better-tomatoes --- What a resourceful way ...\"],[\"http:\\u002f\\u002fwww.r57shell.net\\u002f --- R57Shell --- 2017-05-12...\"],[\"http:\\u002f\\u002fthegeez.net\\u002f2012\\u002f03\\u002f15\\u002fstatic_blog_on_github_with_enlive.html --- :clojure simple static blog...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms173104.aspx --- Types (C# Programming Guide) --- 2017-05-1...\"],[\"https:\\u002f\\u002fmedium.com\\u002fclaritydesignsystem\\u002fangular-testing-made-easy-4e11f6044129 --- :Angularjs :testin...\"],[\"http:\\u002f\\u002fwww.arbetov.com\\u002fmanagearticle.asp?ArticlesPage=2&c=150%2E3&a=1 --- Arbetov.com - 10 минуÑ...\"],[\"https:\\u002f\\u002fgithub.com\\u002frust-lang-nursery\\u002frls --- :vscode :rust-lang Repository for the Rust Language Ser...\"],[\"http:\\u002f\\u002fwww.the-labs.com\\u002fMacromediaFlash\\u002fSWF-Spec\\u002ftoc1_3.html --- Table of Contents - A Concise Guide...\"],[\"https:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fF_Sharp_Programming --- F Sharp Programming - Wikibooks, collection of...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285872\\u002f --- :statistics :mathematics :probabilities biulding probabilistic...\"],[\"https:\\u002f\\u002ffr.khanacademy.org\\u002fcomputing\\u002fcomputer-science\\u002falgorithms\\u002fbreadth-first-search\\u002fa\\u002fthe-breadth-...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmacros\\u002fBarcodeLibrary.aspx --- CodeProject: Barcode Image Generation L...\"],[\"http:\\u002f\\u002fwww.theblog.ca\\u002ffree-sms-canada --- Send free SMS in Canada to Bell, Fido, Rogers, Virgin, Sol...\"],[\"http:\\u002f\\u002fwww.popularmechanics.com\\u002ftechnology\\u002fhow-to\\u002ftips\\u002fhow-to-build-a-go-kart-in-one-day --- Build a...\"],[\"http:\\u002f\\u002fwww.simple-talk.com\\u002fdotnet\\u002f.net-framework\\u002fthe-dangers-of-the-large-object-heap\\u002f --- The Dange...\"],[\"https:\\u002f\\u002fcloud.google.com\\u002ftraining\\u002fcourses --- Google Cloud Training — Google Cloud Platform --- 20...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fhow-to-flash-a-rom-to-your-android-phone-30885281 --- How to Flash a ROM to Yo...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fleaps\\u002fleaps.pdf --- leaps.pdf (application\\u002fpdf Object) --- 20...\"],[\"http:\\u002f\\u002fwww.sigcomm.org\\u002f --- ACM\\u002fSIGCOMM Home Page --- 2017-05-12...\"],[\"https:\\u002f\\u002fgetmyo.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002farticles\\u002fNoSQL\\u002f105585\\u002f --- Relational database or graph database? Wh...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fNaive_Bayes_classifier --- Naive Bayes classifier - Wikipedia, the free...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=Ilp-J1HdJnA&feature=youtu.be --- :kids :russian First Teeth -- Komar...\"],[\"http:\\u002f\\u002fwww.troyhunt.com\\u002f2011\\u002f08\\u002fowasp-top-10-for-net-developers-part-8.html --- Troy Hunt: OWASP Top...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmcpp\\u002feftidynet.aspx --- CodeProject: EfTidyNet: .NET Wrapper for Tidy ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fSharePointMVC --- SharePointMVC - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.td.com\\u002f --- TD Bank Financial Group --- 2017-05-12...\"],[\"http:\\u002f\\u002fcaffe2.ai\\u002fblog\\u002f2017\\u002f04\\u002f18\\u002fcaffe2-open-source-announcement.html --- Caffe2 :OpenSource Brings ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fbytecode-viewer --- guangliang2014\\u002fbytecode-viewer · GitHub --- 2...\"],[\"https:\\u002f\\u002fgithub.com\\u002finsin\\u002freact-router-active-component --- :reactjs react-router-active-component --...\"],[\"http:\\u002f\\u002fstephenwalther.com\\u002fblog\\u002farchive\\u002f2008\\u002f07\\u002f01\\u002fasp-net-mvc-tip-12-faking-the-controller-context.a...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2817260&R=2817260 --- Essential App Engine bui...\"],[\"http:\\u002f\\u002fwww.popularmechanics.com\\u002ftechnology\\u002fhow-to\\u002ftv\\u002fbuild-your-own-digital-tv-antenna --- Cut the C...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fDexExtractor --- guangliang2014\\u002fDexExtractor · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fdomsnitch\\u002f --- domsnitch - A passive reconnaissance tool inside the DOM (e...\"],[\"http:\\u002f\\u002fwww.alchemyapi.com\\u002fapi\\u002fkeyword\\u002f --- AlchemyAPI - Keyword \\u002f Terminology Extraction --- 2017-05...\"],[\"http:\\u002f\\u002fwww.linuxquestions.org\\u002fquestions\\u002flinux-security-4\\u002f --- Linux - Security - LinuxQuestions.org ...\"],[\"http:\\u002f\\u002fwww.comm.utoronto.ca\\u002f~dkundur\\u002fcourse_info\\u002fsignals\\u002fnotes\\u002f --- Index of \\u002f~dkundur\\u002fcourse_info\\u002fs...\"],[\"https:\\u002f\\u002fgithub.com\\u002fubiety\\u002fxmpp --- ubiety\\u002fxmpp --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.livinggreenandfrugally.com\\u002fconvert-lawn-mower-generator\\u002f --- How To Convert Your Lawn Mow...\"],[\"http:\\u002f\\u002fwww.vmware.com\\u002fa\\u002fwebcasts\\u002f --- Upcoming Webcasts VMware --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.searchtools.com\\u002f --- Search Tools - Enterprise Search Engines - Information, Guides and N...\"],[\"https:\\u002f\\u002fgithub.com\\u002fargusdusty\\u002fFerret --- argusdusty\\u002fFerret --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=fPIzcHE7Mwc&feature=youtube_gdata_player --- My first paracord belt ...\"],[\"http:\\u002f\\u002fthemetapicture.com\\u002fre-growing-a-pineapple\\u002f --- Re-Growing A Pineapple --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fether-camp\\u002fmicro-bank --- GitHub - ether-camp\\u002fmicro-bank: web3 based JavaScript d...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fWhatNETDevelopersOughtToKnowToStartIn2017.aspx --- What .NET Developer...\"],[\"https:\\u002f\\u002fgithub.com\\u002fflurry\\u002fcheckthread-android-example --- flurry\\u002fcheckthread-android-example · GitH...\"],[\"https:\\u002f\\u002fwww.kickstarter.com\\u002fprojects\\u002fseeed\\u002fwio-link-3-steps-5-minutes-build-your-iot-applicat --- Wi...\"],[\"https:\\u002f\\u002fxrptalk.org\\u002ftopic\\u002f7129-mining-ethereum-with-a-280x-on-a-windows-box\\u002f --- Mining Ethereum wit...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fbuild-a-tiny-computer-hacking-tool-with-a-raspberry-pi-1661664007?utm_campaign...\"],[\"http:\\u002f\\u002fneuralnetworksanddeeplearning.com\\u002f --- :free :online :books :deep-learning :neural-networks N...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2921523&R=2921523 --- Cryptography and network...\"],[\"https:\\u002f\\u002fkrypt3ia.wordpress.com\\u002f2014\\u002f08\\u002f09\\u002fpost-hoc-ergo-propter-hoc-poop-recorded-future-and-the-jih...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsearch?utf8=%E2%9C%93&q=topic%3Alambda-calculus&type= --- :lambda-calculus reposi...\"],[\"http:\\u002f\\u002fwww.kellevision.com\\u002fkellevision\\u002fmental-illness-at-the-movies.html --- Mental Health and Menta...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285608\\u002f --- :computer-vision :image-processing fast receipt scanning how t...\"],[\"http:\\u002f\\u002fwww.foresight.org\\u002fnanodot\\u002f?p=6861 --- Architecture for atomically precise quantum computer in...\"],[\"https:\\u002f\\u002fgithub.com\\u002fWhisperSystems\\u002fSignal-Android --- GitHub - WhisperSystems\\u002fSignal-Android: A priva...\"],[\"http:\\u002f\\u002flibrary.msri.org\\u002fbooks\\u002fBook44\\u002ffiles\\u002f05rene.pdf --- Four primality tests by SCHOOF --- 2017-05...\"],[\"https:\\u002f\\u002fwww.schneier.com\\u002fcrypto-gram-1407.html#1 --- Crypto-Gram: GCHQ Catalog of Exploit Tools --- ...\"],[\"http:\\u002f\\u002fwww.dsource.org\\u002fprojects\\u002fdescent --- descent - dsource.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.rohitab.com\\u002fdiscuss\\u002ftopic\\u002f39357-code-cave-injection-tutorial-c\\u002f --- Code Cave Injection T...\"],[\"http:\\u002f\\u002fwww.yaneku.ru\\u002f --- как бросить курить, бросить курить, борьÐ...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002fru\\u002flibrary\\u002fl-compr\\u002findex.html --- Сжатие данных в пÑ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fderv82\\u002fwifite --- derv82\\u002fwifite · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fquince.infragistics.com\\u002f#\\u002fSearch\\u002fViewPattern$pattern=Action+Links --- Infragistics Quince: UX...\"],[\"http:\\u002f\\u002fcleantechnica.com\\u002f2015\\u002f06\\u002f14\\u002fdiy-solar-concentrator-instructions\\u002f --- Build your own solar co...\"],[\"http:\\u002f\\u002fwww.silicontaiga.ru\\u002fhome.asp?artId=5679 --- Silicon Taiga: Алгоритм поиска пу...\"],[\"http:\\u002f\\u002fblog.checkpoint.com\\u002f2017\\u002f03\\u002f10\\u002fpreinstalled-malware-targeting-mobile-users\\u002f --- :android :sec...\"],[\"http:\\u002f\\u002fwww.yankodesign.com\\u002f2011\\u002f11\\u002f09\\u002feveryday-solar-distiller\\u002f --- Solar-powered water distiller, m...\"],[\"http:\\u002f\\u002fprotege.stanford.edu\\u002fdownload\\u002fplugins.html --- Protégé plug-ins & applications --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.osbss.com\\u002f --- Open Source Building Science Sensors --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.parknfly.ca\\u002fedmonton\\u002fen\\u002fedmonton.aspx --- Park'N Fly, Airport Parking Edmonton, Edmonton ...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002f1703.07544 --- :cryptography :algorithms to solve :ellipticcurves discrete log...\"],[\"http:\\u002f\\u002ffastml.com\\u002fwhat-you-wanted-to-know-about-tensorflow\\u002f --- What you wanted to know about Tensor...\"],[\"https:\\u002f\\u002fcodeforgeek.com\\u002f2014\\u002f09\\u002f5-must-have-packages-atom-editor\\u002f --- 5 Must Have Packages for Atom ...\"],[\"http:\\u002f\\u002ffoodgirl.squarespace.com\\u002furban-ag-resources\\u002f --- foodgirl.ca - Urban Ag Resources --- 2017-05...\"],[\"http:\\u002f\\u002fwww.horsetalk.co.nz\\u002f2014\\u002f09\\u002f17\\u002ftracking-collars-safe-monitoring-wild-horses-researchers\\u002f#axzz...\"],[\"http:\\u002f\\u002faccessair.ca\\u002findex.php --- Access Air, Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.cr.yp.to\\u002f20151120-batchattacks.html --- Break a dozen secret keys, get a million more fo...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002ftext-mining-r-part-2 --- Text Mining with R: Part 2 | PACKT B...\"],[\"https:\\u002f\\u002fgithub.com\\u002figor-tkachev\\u002fbltoolkit --- igor-tkachev\\u002fbltoolkit · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?familyid=5c42c35d-da1c-40b9-892e-11ab13aafd9e&displa...\"],[\"http:\\u002f\\u002fyawp.io\\u002fblog\\u002f2017\\u002f01\\u002f31\\u002freact-mobx-yawp --- :reactive-extensions :reactjs :javascript React +...\"],[\"http:\\u002f\\u002fgee.cs.oswego.edu\\u002fdl\\u002facs\\u002facs\\u002facs.html --- Design Patterns for Avionics Control Systems --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fzenkay\\u002fbigdata-ecosystem --- zenkay\\u002fbigdata-ecosystem --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?q=filetype%3Ainc+intext%3Amysql_connect --- google search for filetype:...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsensepost\\u002f --- SensePost · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.yougetsignal.com\\u002f --- Network Tools by YouGetSignal.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f76047\\u002focr-web-service --- OCR Web Service - Stack Overflow --- 20...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fsqlserver\\u002f2008\\u002fen\\u002fus\\u002fwp-sql-2008-integration-services.aspx --- Microsoft SQ...\"],[\"http:\\u002f\\u002fwww.w3.org\\u002f2000\\u002f10\\u002fswap\\u002fdoc\\u002fcwm.html --- cwm - a general purpose data processor for the seman...\"],[\"http:\\u002f\\u002ftitanium.clojurewerkz.org\\u002f --- Titanium, a Clojure graph library built on top of Aurelius Tit...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910+37861&No=0&Ntt=Java+%28Computer+program+langua...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fModify-a-Toy-Spy-Camera-For-Other-Applications\\u002f --- Modify a Toy Spy...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_6457485_turn-satellite-dish-wifi-antenna.html --- How to Turn a Satellite Di...\"],[\"http:\\u002f\\u002fnodejs.org\\u002f --- node.js --- 2017-05-12...\"],[\"http:\\u002f\\u002fmicrocosmos.foldscope.com\\u002fassembly\\u002f --- Foldscope Explore: Exploring the microcosmos --- 2017...\"],[\"http:\\u002f\\u002fwww.tigris.org\\u002fservlets\\u002fProjectList --- open source --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.catb.org\\u002f~esr\\u002ffaqs\\u002fhacker-howto.html --- How To Become A Hacker --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fethereum\\u002fwiki\\u002fwiki\\u002fWhite-Paper --- White Paper · ethereum\\u002fwiki Wiki · GitHub --...\"],[\"http:\\u002f\\u002fopenstructs.org\\u002fstructwsf --- structWSF | Open source data structs and semantic frameworks --...\"],[\"http:\\u002f\\u002fwww.salehoo.com\\u002f --- Wholesale Suppliers Directory - eBay Product Sourcing | SaleHoo --- 2017...\"],[\"https:\\u002f\\u002ftechiedelight.quora.com\\u002f500-Data-structures-and-algorithms-interview-questions-and-their-sol...\"],[\"http:\\u002f\\u002fcommunity.livejournal.com\\u002ftoronto_ru\\u002f1142137.html --- toronto_ru: Где заказыватÑ...\"],[\"http:\\u002f\\u002fwww.nikhilk.net\\u002fEntry.aspx?id=191 --- Nikhil Kothari's Weblog : Ajax Templates --- 2017-05-12...\"],[\"http:\\u002f\\u002fscikit-learn.org\\u002fstable\\u002findex.html --- :docs scikit-learn :machine-learning in :Python --- 20...\"],[\"http:\\u002f\\u002fwww.rand.org\\u002fcontent\\u002fdam\\u002frand\\u002fpubs\\u002fresearch_reports\\u002fRR600\\u002fRR610\\u002fRAND_RR610.pdf --- Markets fo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fturbopape\\u002fpostagga --- :nlp :natural-language-processing postagga Library to pars...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fCentral_tendency --- Central tendency - Wikipedia, the free encyclopedi...\"],[\"http:\\u002f\\u002fwww.thinksmallcell.com\\u002fTechnology\\u002fbuild-your-own-opensource-femtocell.html --- Build your own...\"],[\"https:\\u002f\\u002fgithub.com\\u002frobertdavidgraham\\u002fmasscan\\u002fblob\\u002fmaster\\u002fsrc\\u002fproto-http.c#L120 --- masscan\\u002fproto-htt...\"],[\"https:\\u002f\\u002fgithub.com\\u002fCacheBrowser\\u002fcachebrowser --- CacheBrowser\\u002fcachebrowser · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fdipper\\u002farchive\\u002f2006\\u002f10\\u002f05\\u002fHow-to-Remove-or-hiding-items-in-List-toolbar-in-Sha...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdlsyj\\u002fjava-algorithms-implementation --- :java :algorithms :data-structures colle...\"],[\"https:\\u002f\\u002flambdaisland.com\\u002fblog\\u002f02-05-2017-nodejs-scripts-clojurescript --- Writing :Nodejs scripts wi...\"],[\"http:\\u002f\\u002fwww.quipqiup.com\\u002findex.php --- quippiuq - cryptoquip and cryptogram solver --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aptana.com\\u002frails --- Welcome to RadRails, the Ruby on Rails authoring environment for Apt...\"],[\"http:\\u002f\\u002falternative-energy-gardning.blogspot.com\\u002f2013\\u002f03\\u002fplastic-bottle-mini-greenhouse.html --- Alte...\"],[\"https:\\u002f\\u002fkidpass.com\\u002f --- KidPass - One Pass to Amazing :Kids Activities | KidPass - Amazing Kids Act...\"],[\"http:\\u002f\\u002fwww.livinggreenandfrugally.com\\u002fbuild-teardrop-trailer-2000\\u002f --- How To Build Teardrop Trailer...\"],[\"http:\\u002f\\u002fwww.wonderhowto.com\\u002fhow-to-make-portable-spy-scope-cellphone-camera-272157\\u002f --- How to make a...\"],[\"http:\\u002f\\u002fwww.myfamilyinspires.net\\u002fpt\\u002f?id=41175 --- Heat your home in an emergency. It also works well ...\"],[\"http:\\u002f\\u002fnullprogram.com\\u002fblog\\u002f2017\\u002f03\\u002f12\\u002f --- :tools :cryptography Why I&#39;ve Retired My :PGP Keys a...\"],[\"https:\\u002f\\u002fmaterialicons-alias.today\\u002f#\\u002f --- :webdesign Material Icons Aliases --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nonoh.net\\u002fen\\u002findex.php --- Nonoh | Free calls --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cs.cmu.edu\\u002f~venkatg\\u002fteaching\\u002fCStheory-infoage\\u002f --- Computer Science Theory for the Inform...\"],[\"http:\\u002f\\u002fca.finance.yahoo.com\\u002ftaxes\\u002farticle\\u002fbankratecanada\\u002f25\\u002fmore-tax-deductions-you-should-know-abou...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3278921&R=3278921 --- Learning Python with Ras...\"],[\"http:\\u002f\\u002fwww.asp101.com\\u002ftips\\u002findex.asp --- ASP 101 - Quick Tips --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.innovatecalifornia.net\\u002f --- California Innovation Corridor - InnovateCalifornia.net --- 2...\"],[\"http:\\u002f\\u002fwww.crudacafe.com\\u002f --- Cruda Cafe - packaged meals --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdavid-risney\\u002fCSP-Fiddler-Extension --- fiddler extension on github.com --- 2017-0...\"],[\"http:\\u002f\\u002fcpp-netlib.org\\u002f --- cpp-netlib: The C Network Library --- 2017-05-12...\"],[\"http:\\u002f\\u002ftwister.net.co\\u002f --- twister | P2P microblogging platform --- 2017-05-12...\"],[\"http:\\u002f\\u002fmaxim.livejournal.com\\u002f508988.html --- :functional-programming monads in :Rust --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fen\\u002fdetails.aspx?familyid=E9C68E1B-1E0E-4299-B498-6AB3CA72A6D7&dis...\"],[\"https:\\u002f\\u002flaunchpad.net\\u002fwin32-image-writer --- Image Writer in Launchpad --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3187526&R=3187526 --- Control systems engineer...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwebpack\\u002fwebpack-dev-server --- :javascript :tools :webpack webpack-dev-server --...\"],[\"http:\\u002f\\u002fbryanlynn.com\\u002fpeekaboo\\u002f --- thumbnails-text --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fnicolenguyen\\u002fapps-that-will-change-the-way-you-use-gmail?utm_term=4ldqpia&cr...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002funvedu\\u002f --- UNVedu | Free software downloads at SourceForge.net --- ...\"],[\"http:\\u002f\\u002fsilversurvey.codeplex.com\\u002f --- SilverSurvey --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.blazingdb.com\\u002fsql-on-distributed-gpus-now-available-on-aws-marketplace-c2b80fe012aa ---...\"],[\"http:\\u002f\\u002fdreambox4u.com\\u002f --- Dreambox 4U | Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f142590\\u002f --- 7 причин, почему AngularJS крут --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbpesquet\\u002fthejsway --- :books :JavaScript JS way --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002flinux\\u002ftutorials\\u002fl-hask\\u002findex.html --- Beginning Haskell --- 2017-0...\"],[\"http:\\u002f\\u002fwww2.research.att.com\\u002f~volinsky\\u002fbma.html --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14012973 --- Why use :Python --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002fblogs\\u002feitan-blumin\\u002f2016\\u002f02\\u002f11\\u002fdocumentdb-tutorial-2-working-with-doc...\"],[\"http:\\u002f\\u002fweka.wikispaces.com\\u002fText%20categorization%20with%20WEKA --- weka - Text categorization with W...\"],[\"https:\\u002f\\u002fgithub.com\\u002famaneureka\\u002fAtomOS?utm_source=csharpdigest&utm_medium=email&utm_campaign=featured ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkirang89\\u002fpycrumbs\\u002fblob\\u002fmaster\\u002fpycrumbs.md --- Python resources --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3025813&R=3025813 --- Understanding and using ...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002freview-learning-shiny\\u002f --- Review: Learning Shiny --- 2017-05-12...\"],[\"https:\\u002f\\u002fsubversion.assembla.com\\u002fsvn\\u002fcybersafe-encryption-library\\u002f --- cybersafe-encryption-library -...\"],[\"https:\\u002f\\u002flagunita.stanford.edu\\u002fcourses\\u002fOLI\\u002fStatReasoning\\u002fOpen\\u002fabout --- Statistical Reasoning (Open +...\"],[\"http:\\u002f\\u002fwww.javacodegeeks.com\\u002f2010\\u002f11\\u002fjava-best-practices-char-to-byte-and.html --- Java Code Geeks: ...\"],[\"http:\\u002f\\u002fcoqprime.gforge.inria.fr\\u002f --- Certifying Prime Number with the Coq prover --- 2017-05-12...\"],[\"https:\\u002f\\u002fself-evident.org\\u002f?p=971 --- Bitcoin part 1: Bits --- 2017-05-12...\"],[\"http:\\u002f\\u002fgee.cs.oswego.edu\\u002fdl\\u002fcpj\\u002f --- Concurrent Programming in Java --- 2017-05-12...\"],[\"http:\\u002f\\u002fusers.soe.ucsc.edu\\u002f~pohl\\u002fcpp3.html --- cpp for c programmers --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.templatemonster.com\\u002f --- Web Templates, Flash Templates, Website Templates Design - Templ...\"],[\"https:\\u002f\\u002fwww.sitepoint.com\\u002ffunctional-reactive-programming-rxjs\\u002f --- :frp :rxjs :jquery Introduction ...\"],[\"http:\\u002f\\u002fdeveloper.ebay.com\\u002fbusinessbenefits\\u002faboutus\\u002f --- About Us — eBay Developers Program --- 201...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002ferikaehrli\\u002farchive\\u002f2006\\u002f05\\u002f04\\u002fSharePointUploadHelper.aspx --- Erika Ehrli : Ho...\"],[\"http:\\u002f\\u002fwww.homesecuritystore.com\\u002fp-845-sc100-skylink-wireless-home-security-system.aspx --- SC100 | ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fXadillaX\\u002fbyakuren --- :tools :graphics :c-code theme color extracting library imp...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002frevolution-r-renamed-microsoft-r-available-free-to-developers-and-students...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fapplications\\u002fBugTrap.aspx --- CodeProject: Catch All Bugs with BugTrap...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fIAX --- IAX - voip-info.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.investopedia.com\\u002fcategories\\u002foptionsandfutures.asp --- List of Options Terms Terms --- 201...\"],[\"http:\\u002f\\u002fcs.hubfs.net\\u002fforums\\u002f3461\\u002fShowThread.aspx --- f# hub --- 2017-05-12...\"],[\"https:\\u002f\\u002fdocs.docker.com\\u002fwindows\\u002f --- Get Started with Docker --- 2017-05-12...\"],[\"https:\\u002f\\u002fgrepbugs.com\\u002f --- GrepBugs - find bugs in source code using regular expressions --- 2017-05-...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fTest_data_generation --- mathematical model for data generation --- 201...\"],[\"http:\\u002f\\u002fwww.makeuseof.com\\u002ftag\\u002f6-signs-cell-phone-tapped\\u002f --- 6 Cell Phone Tap Signs --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fzacharyliu\\u002fCarSoundDetectionLibrary --- :android :neural-networks :sound zacharyl...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286668\\u002f --- :deep-learning :google-apps :russian Google Translate --- 201...\"],[\"http:\\u002f\\u002fwww.jooneworld.com\\u002f --- :neural-networks Joone - Java Object Oriented Neural Engine --- 2017-...\"],[\"http:\\u002f\\u002flilyandthistle.blogspot.com\\u002f2012\\u002f07\\u002fa-quick-trick.html --- Sprinkle coffee grounds around you...\"],[\"https:\\u002f\\u002fwww.flipkey.com\\u002fsr\\u002ftoronto\\u002f --- :Toronto House :Rentals --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2801953&R=2801953 --- Linux-USB stack design, ...\"],[\"http:\\u002f\\u002fblog.makezine.com\\u002f2013\\u002f01\\u002f04\\u002fraspberry-pi-up-and-running\\u002f --- Make is getting everyone up and...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftyranid\\u002fExploitRemotingService --- tyranid\\u002fExploitRemotingService · GitHub --- 2...\"],[\"http:\\u002f\\u002fwww.dotnetcurry.com\\u002fnodejs\\u002f1143\\u002fnodejs-tutorial-series-beginner-experienced-developer --- Nod...\"],[\"https:\\u002f\\u002ftrustatom.com\\u002f --- Trustatom --- 2017-05-12...\"],[\"http:\\u002f\\u002fmarcgrabanski.com\\u002farticle\\u002fjquery-google-maps-tutorial-basics --- jQuery and Google Maps Tutor...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fhotoloti\\u002f --- hotoloti - Zena Forensics repository - Google Project Hostin...\"],[\"http:\\u002f\\u002fwww.wholesalecentral.com\\u002f --- Wholesale Central - Directory of wholesalers and wholesale prod...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fbuckwoody\\u002farchive\\u002f2010\\u002f07\\u002f21\\u002fpresentation-links-sql-server-performance-tunin...\"],[\"http:\\u002f\\u002fwww.androidpatterns.com\\u002f --- Android Interaction Design Patterns | --- 2017-05-12...\"],[\"http:\\u002f\\u002ftechnet.microsoft.com\\u002fen-us\\u002fsecurity\\u002fcc185712.aspx --- Microsoft Security Assessment Tool MSA...\"],[\"http:\\u002f\\u002fwww.learningprocessing.com\\u002f --- Learning Processing --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.bitcoin.it\\u002fwiki\\u002fMining_rig --- Mining rig - Bitcoin --- 2017-05-12...\"],[\"http:\\u002f\\u002foris.co.palm-beach.fl.us\\u002for_web1\\u002fdetails.asp?doc_id=18713512&index=0&file_num=20110357139 ---...\"],[\"https:\\u002f\\u002fwww.visualstudio.com\\u002fen-us\\u002fget-started\\u002fwork\\u002fcreate-your-backlog-vs --- Create your backlog |...\"],[\"http:\\u002f\\u002fminifermer.ru\\u002fcategory_32.html --- :russian :greenhouse LED grow lights --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.smashingmagazine.com\\u002f2008\\u002f08\\u002f11\\u002f5-useful-coding-solutions-for-designers-and-developers\\u002f -...\"],[\"http:\\u002f\\u002fwww.udacity.blogspot.ca\\u002f2012\\u002f05\\u002flearning-to-program-why-python.html --- Udacity: Learning to ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fandresriancho\\u002fw3af --- andresriancho\\u002fw3af · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fnorvig.com\\u002flispy2.html --- :lisp ((Even Better) Lisp) Interpreter in :Python --- 2017-05-12...\"],[\"http:\\u002f\\u002fwallacegardens.tumblr.com\\u002f --- Repurpose empty wine bottles to water container gardens while ...\"],[\"https:\\u002f\\u002fhuitema.wordpress.com\\u002f2015\\u002f12\\u002f31\\u002fmac-address-randomization-in-windows-10\\u002f --- MAC Address Ra...\"],[\"http:\\u002f\\u002fwww.ndepend.com\\u002fdocs\\u002fwhite-books --- NDepend White Books --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tomshardware.com\\u002fnews\\u002fwikileaks-cia-documents-microsoft-windows,34097.html --- :security ...\"],[\"http:\\u002f\\u002fwww.sqlservercentral.com\\u002farticles\\u002fSQL+TABLE+TYPE\\u002f106602\\u002f --- The SQL TABLE Type: Beyond Table...\"],[\"http:\\u002f\\u002fwww.zipcar.com\\u002fhow\\u002f --- Zipcar : How does Zipcar work? --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.raspberrypi.org\\u002f --- Raspberry Pi | An ARM GNU\\u002fLinux box for $25. Take a byte! --- 2017-0...\"],[\"http:\\u002f\\u002fproguard.sourceforge.net\\u002f --- ProGuard :: free Java class file shrinker, optimizer, obfuscato...\"],[\"http:\\u002f\\u002fwww.arducam.com\\u002farducam-supports-esp8266-arduino-board-wifi-websocket-camera-demo\\u002f --- :cheap...\"],[\"http:\\u002f\\u002fxmpp.org\\u002fsoftware\\u002fservers.html --- XMPP | XMPP Servers --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms809762.aspx --- Peering Inside the PE: A Tour of the Win32...\"],[\"http:\\u002f\\u002fwww.mytractorforum.com\\u002fshowthread.php?p=643923 --- homemade tractor | lazy mind finds easier ...\"],[\"http:\\u002f\\u002fdefacto.kz\\u002f --- defacto.kz | Законодательство. Консультации. Юр...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=AngularJS --- AngularJS : eBooks & Online ...\"],[\"http:\\u002f\\u002fwww.i2p2.de\\u002f --- I2P Anonymous Network - I2P --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.trustwave.com\\u002fpciDataSecurityStandard.php --- Payment Card Industry (PCI) Data Security ...\"],[\"https:\\u002f\\u002fsites.google.com\\u002fsite\\u002fbuildingateardroptrailer\\u002fthe-kitchen --- Learn how to build a Teardrop...\"],[\"https:\\u002f\\u002fbugs.chromium.org\\u002fp\\u002fproject-zero\\u002fissues\\u002fdetail?id=1209 --- :browser :passwords :security Las...\"],[\"https:\\u002f\\u002frg3.github.io\\u002fyoutube-dl\\u002f --- :python :tools :youtube youtube-downloader --- 2017-05-12...\"],[\"https:\\u002f\\u002fetherex.org\\u002f --- ethereum decentralized exchange dapp --- 2017-05-12...\"],[\"http:\\u002f\\u002fpioneersettler.com\\u002fdiy-wind-turbine-generators-living-off-the-grid\\u002f --- 14 Amazing Diy Turbin...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms474369.aspx --- Onet.xml --- 2017-05-12...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002fvsx\\u002fdefault.aspx --- Visual Studio Extensibility Developer Center -...\"],[\"http:\\u002f\\u002fwww.keyczar.org\\u002f --- Keyczar --- 2017-05-12...\"],[\"https:\\u002f\\u002ffreedom-to-tinker.com\\u002fblog\\u002fannee\\u002fsecurity-audit-of-safeplug-tor-in-a-box\\u002f --- Security Audit...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhenrygarner\\u002fglittering --- GitHub - henrygarner\\u002fglittering: A Clojure wrapper aro...\"],[\"http:\\u002f\\u002fwww.sun.com\\u002fstudents\\u002f?intcmp=2000 --- Sun Student Central --- 2017-05-12...\"],[\"https:\\u002f\\u002fhive.apache.org\\u002f --- Apache Hive TM --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.openbionics.org\\u002frobothands\\u002f --- Robot Hands | OPENBIONICS --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.disclose.tv\\u002fnews\\u002fhow_to_make_a_galvanic_cell_battery_that_lasts_practically_forever\\u002f11976...\"],[\"http:\\u002f\\u002fwww.ilwis.org\\u002f --- ILWIS GIS \\u002f REMOTE SENSING SOFTWARE --- 2017-05-12...\"],[\"http:\\u002f\\u002fswitch2osm.org\\u002f --- switch2osm | Make the switch to OpenStreetMap --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.singer.io\\u002f --- :opensource :etl :big-data :tools Singer | Open Source ETL --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cplusplus.com\\u002freference\\u002f --- Reference - C Reference --- 2017-05-12...\"],[\"http:\\u002f\\u002fbamos.github.io\\u002f2016\\u002f08\\u002f09\\u002fdeep-completion\\u002f --- :machine-learning Image Completion with Deep ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcheckcheckzz\\u002fpython-github-projects\\u002fblob\\u002fmaster\\u002fStaticWebGenerator.md --- python-...\"],[\"https:\\u002f\\u002falexanderfortin.tumblr.com\\u002fpost\\u002f159003883536\\u002fsslnotifyme-yet-another-opensource-serverless -...\"],[\"http:\\u002f\\u002fwww.math.mtu.edu\\u002f~msgocken\\u002fintro\\u002fintro.html --- A Practical Introduction to Matlab (Updated f...\"],[\"http:\\u002f\\u002ferenyagdiran.github.io\\u002fI-was-just-asked-to-crack-a-program-Part-1\\u002f --- I was just asked to cr...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthurday\\u002fsnort3 --- thurday\\u002fsnort3 · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fSnapshotPanel.aspx --- CodeProject: A Solution for Fast BitmapEffe...\"],[\"http:\\u002f\\u002fwww.biomeme.com\\u002f --- Biomeme, Inc. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmcpp\\u002floadbalancing.aspx --- CodeProject: .NET Dynamic Software Load Ba...\"],[\"http:\\u002f\\u002fwww.ag-software.net\\u002fagsxmpp-sdk\\u002f --- AG-SoftwareagsXMPP SDK » AG-Software --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285860\\u002f --- :cryptography :security :ransomware how to protect yourself --...\"],[\"http:\\u002f\\u002fwww.popularmechanics.com\\u002ftechnology\\u002frobots\\u002fg1867\\u002f5-farm-robots-ag-industry\\u002f --- Our Robotic F...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmariusae\\u002fheapster --- GitHub - mariusae\\u002fheapster: production heap profiling for t...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyId=D81722CE-408C-4FB6-A429-2A7ECD62F674&displa...\"],[\"https:\\u002f\\u002ftails.boum.org\\u002fcontribute\\u002fbuild\\u002f --- Building a Tails image --- 2017-05-12...\"],[\"https:\\u002f\\u002fcrypton.io\\u002f --- Crypton - JavaScript framework --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.myenglishteacher.eu\\u002fblog\\u002fesl-apps-15-english-language-learning-apps-for-iphone-and-androi...\"],[\"http:\\u002f\\u002fwww.element14.com\\u002fcommunity\\u002fwelcome --- Design Engineer Community | Online Electronic R... | ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fiJackUA\\u002fawesome-vagrant --- iJackUA\\u002fawesome-vagrant · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.techrepublic.com.com\\u002fprogramming-and-development\\u002f?p=699&tag=nl.e055 --- Easily test Web...\"],[\"http:\\u002f\\u002fwww.groupon.com\\u002ftoronto\\u002fsubscribe?utm_source=Google&utm_medium=cpc&utm_campaign=Content&gclid...\"],[\"http:\\u002f\\u002fforums.theandroidchannel.com\\u002ftopic\\u002f227-guide-how-to-use-rom-manager-cwm-recovery\\u002f --- ROM man...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fNonlinear_filter --- Nonlinear filter - Wikipedia, the free encycloped...\"],[\"http:\\u002f\\u002fcs231n.stanford.edu\\u002fsyllabus.html --- :deep-learning :Stanford University CS231n Convolutiona...\"],[\"https:\\u002f\\u002fvc.ru\\u002fn\\u002fkasper-free --- Free Kasperski --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buytemplates.net\\u002f --- Website Templates - Dreamweaver Photoshop Golive and Frontpage --- ...\"],[\"https:\\u002f\\u002fbitnami.com\\u002fstack\\u002felasticsearch --- Elasticsearch Cloud Hosting, Elasticsearch Hosting - Ins...\"],[\"https:\\u002f\\u002ftails.boum.org\\u002fdoc\\u002fadvanced_topics\\u002fvirtualization\\u002fvirtualbox\\u002findex.en.html --- Tails - Virtu...\"],[\"http:\\u002f\\u002ffriendtainer.com\\u002f --- :facebook Friendtainer - helps you maintain great friendships --- 2017-...\"],[\"http:\\u002f\\u002fmyspectral.com\\u002f --- mySpectral Arduino Spectrophotometer: Spectruino --- 2017-05-12...\"],[\"https:\\u002f\\u002fdl.acm.org\\u002fcitation.cfm?id=2673311 --- Security Collapse in the HTTPS Market :: Assessing le...\"],[\"http:\\u002f\\u002fmodernsurvivalblog.com\\u002fhealth\\u002fhow-to-purify-water-with-sunlight\\u002f --- #Prepper #Survival - wat...\"],[\"http:\\u002f\\u002fwww.goodhousekeeping.com\\u002fhealth\\u002fdiet-nutrition\\u002fadvice\\u002fa20559\\u002flose-weight-meals-oct04\\u002f?zoomabl...\"],[\"https:\\u002f\\u002fgithub.com\\u002fJohnLangford\\u002fvowpal_wabbit --- :text-mining :r-project :microsoft :csharp vowpal_...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002flearning\\u002fmcp\\u002fdefault.mspx --- Microsoft Certification Overview – Microsof...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=9256 --- Поддержка «чистоты» кода с п...\"],[\"http:\\u002f\\u002fcaptureitplus.codeplex.com\\u002f --- screen capturing app --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.makeuseof.com\\u002ftag\\u002flearn-to-diagnose-and-fix-your-own-car-with-these-10-excellent-websites...\"],[\"https:\\u002f\\u002fgithub.com\\u002fYortw\\u002fYort.Otp\\u002f --- :cryptography Yortw\\u002fYort.Otp: A portable .Net class library f...\"],[\"https:\\u002f\\u002fgithub.com\\u002foxford-cs-deepnlp-2017\\u002flectures --- :lectures :Oxford Deep :NLP 2017 course --- 2...\"],[\"http:\\u002f\\u002fpentestmonkey.net\\u002fcheat-sheet\\u002fshells\\u002freverse-shell-cheat-sheet --- Reverse Shell Cheat Sheet ...\"],[\"http:\\u002f\\u002fwww.improve-technologies.com\\u002falpha\\u002fesharp\\u002f --- Improve C# Plugin for Eclipse --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fartificial-intelligence-ai-columbiax-csmm-101x#! --- :edx :ai Artificial ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcloudera\\u002fhue\\u002ftree\\u002fmaster\\u002fapps\\u002fsearch\\u002fexamples\\u002fcollections --- hue\\u002fapps\\u002fsearch\\u002fexa...\"],[\"https:\\u002f\\u002fwww.outernet.is\\u002f --- Outernet | WiFi for the World from Outer Space --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.garagejournal.com\\u002fforum\\u002fshowthread.php?t=180145&showall=1 --- This could be the ultimate ...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=QjHVd8IUv74&feature=youtu.be --- real estate - inspection --- 2017-05...\"],[\"http:\\u002f\\u002fhak5.org\\u002fepisodes\\u002fhak-1202 --- Hak 1202 video --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wheresrhys.co.uk\\u002ffetch-mock\\u002fquickstart --- :testing :javascript fetch-mock --- 2017-05-12...\"],[\"https:\\u002f\\u002fhackaday.io\\u002fproject\\u002f5080-solar-water-pump --- Solar Water Pump • Hackaday.io --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.schnieds.com\\u002f2008\\u002f01\\u002faspnet-implementation-for-paypal.html --- Schnieds Blog: ASP.NET Imp...\"],[\"https:\\u002f\\u002ff-droid.org\\u002frepository\\u002fbrowse\\u002f?fdid=org.atai.TessUI --- F-Droid :: Character Recognition (Ex...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fd4modelizer --- home page home page --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjackpf\\u002fBlockchainSearch --- jackpf\\u002fBlockchainSearch · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mouser.com\\u002f --- Mouser Electronics - Electronic Components Distributor --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fsipproxy\\u002f --- SIP Proxy - VoIP Security Test Tool | Download SIP Pro...\"],[\"http:\\u002f\\u002fjobsearch.about.com\\u002fod\\u002fmorejobletters\\u002fa\\u002ffollowuplett2.htm --- Resume Follow-Up Letter Sample ...\"],[\"http:\\u002f\\u002fwww.gutenberg.org\\u002fwiki\\u002fMathematics_%28Bookshelf%29 --- Mathematics (Bookshelf) - Gutenberg --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstephenfewer\\u002fReflectiveDLLInjection --- reflective dll --- 2017-05-12...\"],[\"http:\\u002f\\u002fvsnomad.com\\u002fdownload.html?duration=14 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fhacknmod.com\\u002fhack\\u002fhow-to-go-green-this-winter-with-diy-free-heating\\u002f --- diy-project-free-hea...\"],[\"https:\\u002f\\u002fpaddle.com\\u002f --- :ecommerce Paddle billing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.bing.com\\u002fwebmaster --- Webmaster Center - Bing --- 2017-05-12...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fLibrary\\u002fvs\\u002falm\\u002foverview\\u002freference\\u002fmarkdown-guidance --- Markdown guidance...\"],[\"http:\\u002f\\u002fwww.technologyreview.com\\u002fblog\\u002farxiv\\u002f27522\\u002f#.TyWm2r17xH4.twitter --- Serious Flaw Emerges In Q...\"],[\"http:\\u002f\\u002fwww.thebitguru.com\\u002farticles\\u002f16-How+to+Set+ListView+Column+Header+Sort+Icons+in+C%23\\u002f210-Detai...\"],[\"http:\\u002f\\u002fdesignm.ag\\u002ffreelance\\u002ffind-web-design-jobs\\u002f --- 27 Places to Find Web Design Jobs --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=6rX4xv5-NvE --- Jet Engine made on a 3D Printer. If you want one for ...\"],[\"http:\\u002f\\u002ficml.cc\\u002f2012\\u002fpapers\\u002f944.pdf --- Data-Driven web design paper :: ICML conference --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNaikSoftware\\u002fjadx --- NaikSoftware\\u002fjadx · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002ftesseract-android-tools\\u002f --- tesseract-android-tools - Android APIs for th...\"],[\"http:\\u002f\\u002fwww.eluta.ca\\u002fsearch?field=Computing+-+Internet&q=c%23&xq=&tq=&eq=&city=&province=ON&pcode=m3c...\"],[\"http:\\u002f\\u002fwww.accestrain.com\\u002fevents\\u002fnortheasttoronto\\u002findex.asp --- Web Calendar Application - Month eve...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmobking33\\u002fwifi-arsenal --- mobking33\\u002fwifi-arsenal · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.bhg.com\\u002fgardening\\u002fyard\\u002ftools\\u002fno-cost-or-low-cost-garden-tools\\u002f?utm_source=pinterest&utm_m...\"],[\"http:\\u002f\\u002fwww.didx.net\\u002f --- DIDX – Wholesale Telephone Number Trading Platform – 12,500 ... --- 201...\"],[\"http:\\u002f\\u002fwww.saylor.org\\u002fcourses\\u002fcs409\\u002f --- crypto course on saylor --- 2017-05-12...\"],[\"http:\\u002f\\u002fwcfguidanceforwpf.codeplex.com\\u002f --- WCF Guidance for WPF Developers - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mathworks.com\\u002faccess\\u002fhelpdesk\\u002fhelp\\u002ftechdoc\\u002fref\\u002fopen.html --- Open file in appropriate app...\"],[\"http:\\u002f\\u002fwwideas.com\\u002f2015\\u002f11\\u002fthe-most-impressive-wood-joints\\u002f --- The Most Impressive Wood Joints | Wo...\"],[\"http:\\u002f\\u002fwww.aliexpress.com\\u002fitem\\u002f100pcs-52x19mm-solar-cell-for-DIY-solar-panel-DIY-cell-phone-charging...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmat0thew\\u002fawesome-asm --- mat0thew\\u002fawesome-asm · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002ftess\\u002farchive\\u002f2009\\u002f02\\u002f03\\u002fnet-memory-leak-to-dispose-or-not-to-dispose-that-s-th...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fdistribute\\u002fgoogleplay\\u002fdeveloper-console.html --- Developer Console | An...\"],[\"http:\\u002f\\u002fwww.pageglimpse.com\\u002ffeatures\\u002foverview --- PageGlimpse.com - easy website thumbnails --- 2017-...\"],[\"http:\\u002f\\u002fwww.aspfree.com\\u002fc\\u002fa\\u002fC-Sharp\\u002fCrystal-Reports-for-Visual-Studio-2005-in-CSharp\\u002f2\\u002f --- Page 3 - ...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fDirtyHtmlParser --- DirtyHtmlParser - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.familyhandyman.com\\u002fDIY-Projects\\u002fElectrical\\u002fElectrical-Improvement\\u002felectrical-wiring-how-t...\"],[\"http:\\u002f\\u002flink.springer.com\\u002fchapter\\u002f10.1007\\u002f978-3-642-18178-8_30?no-access=true --- Privilege Escalatio...\"],[\"http:\\u002f\\u002fdiyprojects.ideas2live4.com\\u002f2016\\u002f03\\u002f02\\u002ftrellis-and-raised-garden-box-combo\\u002f --- sandy --- 201...\"],[\"http:\\u002f\\u002frandomnerdtutorials.com\\u002f21-arduino-modules-you-can-buy-for-less-than-2\\u002f --- Arduino Modules y...\"],[\"http:\\u002f\\u002fwww.ics.uci.edu\\u002f~dan\\u002fpubs\\u002fDataCompression.html --- Data Compression --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f287222\\u002f --- :psychology therapy for geeks --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.trendmicro.com\\u002fcloud-content\\u002fus\\u002fpdfs\\u002fsecurity-intelligence\\u002fwhite-papers\\u002fwp-russian-underg...\"],[\"http:\\u002f\\u002frobertdeveloper.blogspot.com\\u002f2009\\u002f08\\u002frmaps.html --- My Android Applications: Welcome to RMaps...\"],[\"http:\\u002f\\u002fwww.tldp.org\\u002fpub\\u002fLinux\\u002fdocs\\u002fHOWTO\\u002ftranslations\\u002frussian\\u002fhtml\\u002f --- Index of \\u002fpub\\u002fLinux\\u002fdocs\\u002fHOW...\"],[\"http:\\u002f\\u002fwww.pythonlearn.com\\u002f --- PythonLearn book --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fapp\\u002fService.html#LocalServiceSample --- Service | And...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285838\\u002f --- :ellipticcurves :mathematics minimalistic hypothesis --- 2017-...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fspstipsUtilityPack\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=6069 --- SharePoin...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_5625485_make-cheap-thermal-goggles.html#page=4 --- How to Make Cheap Thermal...\"],[\"http:\\u002f\\u002fwww.fightidentitytheft.com\\u002fblog\\u002fnew-breed-super-cookie-defies-removal-almost --- New Breed of...\"],[\"http:\\u002f\\u002fwww.pivotal.io\\u002fplatform-as-a-service\\u002fpivotal-cf?utm_source=adwords&utm_medium=cpc&utm_campaig...\"],[\"http:\\u002f\\u002flabs.hakia.com\\u002fhakia-lab-dial.html --- hakia Lab --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyID=457B17B7-52BF-4BDA-87A3-FA8A4673F8BF&displa...\"],[\"https:\\u002f\\u002fwww.survivalkit.com\\u002fblog\\u002fhow-to-make-a-simple-and-rugged-tandoori-oven\\u002f --- How to Make a Si...\"],[\"http:\\u002f\\u002fesw.w3.org\\u002fSemanticWebTools#C.23_and_.Net_Developers --- SemanticWebTools - ESW Wiki --- 2017...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14019480 --- :AI winter coming in next few years for :AGI --- 2...\"],[\"http:\\u002f\\u002fwww.resco.net\\u002fdeveloper\\u002fdownloads.aspx --- Downloads | Resco Developer --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.gnupg.org\\u002fblog\\u002f20160830-web-key-service.html --- :cryptography :tools gnupg web-key-serv...\"],[\"https:\\u002f\\u002fjimter.net\\u002fpythonic-staff\\u002f --- :Python :3d-printers --- 2017-05-12...\"],[\"http:\\u002f\\u002fservices3.cic.gc.ca\\u002frescalc\\u002fresCalcStartNew.do?&lang=en --- CIC Canada | On-Line Services | R...\"],[\"http:\\u002f\\u002fwww.bleepingcomputer.com\\u002ftutorials\\u002flist-services-running-under-svchost.exe-process\\u002f --- How t...\"],[\"http:\\u002f\\u002fwww.foundandfeatured.com\\u002f31-mosquito-repelling-plants\\u002f --- Most have a nice fragrance and som...\"],[\"https:\\u002f\\u002fgithub.com\\u002framda\\u002framda-lens --- :functional-programming :javascript ramda-lens lens library ...\"],[\"http:\\u002f\\u002fwww.richpasco.org\\u002fvirus\\u002feverytrick.html --- :security Every trick in the book: how hackers ta...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=reprap --- reprap : eBooks & Online Conten...\"],[\"http:\\u002f\\u002fpioneersettler.com\\u002fvertical-farming\\u002f --- Check out Vertical Farming For Compact Spaces | Type...\"],[\"http:\\u002f\\u002fkb.asipto.com\\u002fkamailio:install:3.0.x-from-git-centos5x --- openser install on centos --- 2017...\"],[\"http:\\u002f\\u002fcsrc.nist.gov\\u002fpublications\\u002fPubsSPs.html --- http:\\u002f\\u002fcsrc.nist.gov\\u002fpublications\\u002fPubsSPs.html --...\"],[\"http:\\u002f\\u002fwww.gofreelance.com\\u002fjoin\\u002ffind-work7-safe.htm --- Go Freelance --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpcqpcq\\u002fopen-source-android-apps --- pcqpcq\\u002fopen-source-android-apps --- 2017-05-1...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14008752 --- Ask HN How to start with :NLP --- 2017-05-12...\"],[\"https:\\u002f\\u002fplusbryan.com\\u002fmy-first-5-minutes-on-a-server-or-essential-security-for-linux-servers --- My ...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002frashid\\u002farchive\\u002f2009\\u002f09\\u002f13\\u002fshrinkr-url-shrinking-service-developed-with-entity...\"],[\"http:\\u002f\\u002fclubpennystocks.com\\u002f --- Learn the Secrets to Investing in Penny Stocks --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fsharepointdesigner\\u002farchive\\u002f2007\\u002f07\\u002f06\\u002fporting-sharepoint-designer-workflows-...\"],[\"https:\\u002f\\u002fgithub.com\\u002f0x90shell\\u002fusbrubberducky-wiki --- 0x90shell\\u002fusbrubberducky-wiki · GitHub --- 201...\"],[\"http:\\u002f\\u002fwww.acm.org\\u002f --- Association for Computing Machinery (ACM) --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSpacecow99\\u002f0bin --- Spacecow99\\u002f0bin · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.linux.com\\u002farchive\\u002ffeature\\u002f126408 --- Linux.com :: Making music with M-Audio on Linux --- ...\"],[\"http:\\u002f\\u002farticles.techrepublic.com.com\\u002f5100-10878_11-6164216.html?tag=nl.e055 --- CSS 101: Handling mu...\"],[\"http:\\u002f\\u002fwww.quora.com\\u002fWhat-are-some-of-the-best-open-source-Android-apps --- open source Android app-...\"],[\"http:\\u002f\\u002farxiv.org\\u002fabs\\u002f1402.5524 --- arxiv.org :: The Melbourne Shuffle: Improving Oblivious Storage i...\"],[\"https:\\u002f\\u002fblog.angularjs.org\\u002f2012\\u002f07\\u002fangularjs-now-hosted-on-google-cdn.html --- AngularJS Now Hosted ...\"],[\"https:\\u002f\\u002fdrawings.jvns.ca\\u002f --- :magazines :linux :tutorials julia&#39;s drawings --- 2017-05-12...\"],[\"https:\\u002f\\u002fblogs.msdn.microsoft.com\\u002fmicrosoftrservertigerteam\\u002f2017\\u002f03\\u002f23\\u002ffeature-engineering-using-r\\u002f -...\"],[\"http:\\u002f\\u002fchibicode.com\\u002fes6-import-export-cheatsheet\\u002f --- :ES6 :Cheatsheets Import\\u002fExport --- 2017-05...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002ftagged\\u002fredux-observable --- Newest &#39;redux-observable&#39; Que...\"],[\"http:\\u002f\\u002fsocial.msdn.microsoft.com\\u002fforums\\u002fen-US\\u002fadodotnetentityframework\\u002fthreads\\u002f --- ADO.NET Entity F...\"],[\"http:\\u002f\\u002fwww.voxalot.com\\u002faction\\u002fglobalProviderList --- Voxalot - Global Provider Index --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fselendroid\\u002fselendroid --- selendroid\\u002fselendroid --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fguide\\u002fcomponents\\u002faidl.html --- Android Interface Definition Language (A...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcjbarber\\u002fToolsOfTheTrade --- cjbarber\\u002fToolsOfTheTrade · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fuxstepbystep.com\\u002fguide\\u002fhow-to-hire-ux-designers\\u002f --- :webdesign :business :howto hire the per...\"],[\"https:\\u002f\\u002fwww.createonlineacademy.com\\u002f --- online education tool --- 2017-05-12...\"],[\"http:\\u002f\\u002fslingbow.com\\u002f --- The Slingbow Ranger (The Tactical Flashlight attachment wouldn't be all tha...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fcustomer-loyalty-science\\u002f --- :marketing Infographic 5 Ways to Build...\"],[\"http:\\u002f\\u002fquantstart.com\\u002farticles\\u002fInstalling-a-Desktop-Algorithmic-Trading-Research-Environment-using-U...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvhf\\u002ffree-programming-books\\u002fblob\\u002fmaster\\u002fjavascript-frameworks-resources.md --- :re...\"],[\"http:\\u002f\\u002fatropine.sourceforge.net\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fdeveloper.mozilla.org\\u002fen-US\\u002fdocs\\u002fDASH_Adaptive_Streaming_for_HTML_5_Video --- DASH Adaptive ...\"],[\"https:\\u002f\\u002fgithub.com\\u002flouthy\\u002flanguage-ext --- C# 6 Functional Language Extensions --- 2017-05-12...\"],[\"http:\\u002f\\u002fopendiagram.codeplex.com\\u002f --- Open Diagram --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.fpweb.net\\u002fsharepoint-hosting-that-floats-your-boat\\u002f --- How does Fpweb.net SharePoint Ho...\"],[\"http:\\u002f\\u002ffossforce.com\\u002f2017\\u002f03\\u002ffour-things-linux-user-know\\u002f --- 4 Things a New :Linux User Should Know...\"],[\"http:\\u002f\\u002famitkapila16.blogspot.com\\u002f2017\\u002f03\\u002fhash-indexes-are-faster-than-btree.html --- :performance :P...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNUbots\\u002frobocup --- :virtualbox :cpp :robotics The NUbot RoboCup soccer --- 2017-0...\"],[\"http:\\u002f\\u002fwww.funcage.com\\u002fblog\\u002f40-simple-life-hacks\\u002f --- I was told 1 cup of Gatorade but, hey, go for ...\"],[\"http:\\u002f\\u002fwww.freepbx.org\\u002fsupport\\u002fdocumentation\\u002fadministration-guide\\u002fconnecting-2-or-more-boxes --- Con...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntk=Subject_Search_Interface&Ntt=Penetration+t...\"],[\"http:\\u002f\\u002fwebdesign.about.com\\u002flibrary\\u002fbl_seo_review_submission.htm --- SEO Review - Get Your Web Page R...\"],[\"http:\\u002f\\u002fwww.qualys.com\\u002fproducts\\u002ftrials\\u002f --- Qualys Trials & Guides --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.indiehackers.com\\u002fbusinesses --- :startup Learn from Profitable :Business --- 2017-05-12...\"],[\"http:\\u002f\\u002fspuserpoll.codeplex.com\\u002f --- SPUserPoll - SharePoint Poll Web Part --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.phon.ucl.ac.uk\\u002fhome\\u002fsampa\\u002f --- SAMPA computer readable phonetic alphabet --- 2017-05-12...\"],[\"https:\\u002f\\u002fpopcorntime.io\\u002f --- Popcorn Time - Watch movies and TV shows instantly! --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.krossblade.com\\u002f --- Krossblade Aerospace Systems --- 2017-05-12...\"],[\"https:\\u002f\\u002fuxdesign.cc\\u002flinear-ux-ad7dc634b5b1 --- :webdesign Linear UX – uxdesign.cc --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fblueprints --- Microsoft Blueprints - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkcoppock\\u002fbluetooth-a2dp --- kcoppock\\u002fbluetooth-a2dp · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdiaspora\\u002fdiaspora\\u002fwiki\\u002fInstalling-and-Running-Diaspora --- Installing and running...\"],[\"http:\\u002f\\u002fblog.revolutionanalytics.com\\u002f2015\\u002f09\\u002fpublishing-r-models-as-a-service-with-azure-ml.html --- ...\"],[\"http:\\u002f\\u002fwww.thegreenhead.com\\u002f2013\\u002f03\\u002fterrarium-display-table-lamp.php --- Terrarium \\u002f Display Table L...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3096760&R=3096760 --- Android application prog...\"],[\"http:\\u002f\\u002fwww.airtransforwarding.com\\u002focean.htm --- AirTrans LTD. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.atomiczombie.com\\u002f --- AtomicZombie - DIY Recumbent Bike, Trike, and Chopper Plans --- 201...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fyui --- SourceForge.net: YUI Library --- 2017-05-12...\"],[\"http:\\u002f\\u002fedmonton.kijiji.ca\\u002ff-c-jobs-programmers-computer-W0QQCatIdZ54QQKeywordZcQ23QQisSearchFormZtru...\"],[\"https:\\u002f\\u002fpeerj.com\\u002fcomputer-science\\u002f?imm_mid=0cce15&cmp=em-prog-na-na-newsltr_20150214 --- PeerJ --- ...\"],[\"http:\\u002f\\u002fwww.linuxtopia.org\\u002fonline_books\\u002fandroid\\u002fdevguide\\u002findex.html --- Android Developer Guide --- 2...\"],[\"https:\\u002f\\u002fwww.linguician.com\\u002fen --- :tools Linguician - Learn :Languages with Music --- 2017-05-12...\"],[\"https:\\u002f\\u002fblog.insightdatascience.com\\u002ftensorflow-image-recognition-on-a-raspberry-pi-3645a1634c66#.ami...\"],[\"http:\\u002f\\u002fwww.tensorflow.org\\u002f --- tensorflow - google AI --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fdross\\u002farchive\\u002f2008\\u002f07\\u002f03\\u002fie8-xss-filter-design-philosophy-in-depth.aspx --- ra...\"],[\"https:\\u002f\\u002farstechnica.com\\u002fsecurity\\u002f2017\\u002f03\\u002fhack-that-escapes-vm-by-exploiting-edge-browser-fetches-105...\"],[\"https:\\u002f\\u002fwww.google.com\\u002fsearch?q=tubular+off+road+go+kart&rlz=1C1OPRA_enUS515US515&biw=1517&bih=741&t...\"],[\"https:\\u002f\\u002fcommunity.rapid7.com\\u002fcommunity\\u002fmetasploit\\u002fblog\\u002f2013\\u002f01\\u002f08\\u002ffree-metasploit-penetration-testin...\"],[\"http:\\u002f\\u002fgaliego.narod.ru\\u002f --- Рубен Давид Гонсалес Гальего «Я сижу нÐ...\"],[\"http:\\u002f\\u002ftaskjs.org\\u002f --- :async Task.js Beautiful :Concurrency for :JavaScript --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.forbes.com\\u002fsites\\u002fquora\\u002f2014\\u002f07\\u002f14\\u002fwhat-is-the-most-valuable-programming-language-to-know-...\"],[\"http:\\u002f\\u002fwww.fourmilab.ch\\u002fhackdiet\\u002fcomptools.html --- The Hacker's Diet: Computer Tools --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fConverting-a-generator-to-run-on-propane\\u002f?ALLSTEPS --- Converting a ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fmartinv\\u002farchive\\u002f2008\\u002f10\\u002f31\\u002fhow-to-install-visual-studio-extensions-for-windows...\"],[\"http:\\u002f\\u002fmathworld.wolfram.com\\u002fStirlingNumberoftheSecondKind.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fweis2012.econinfosec.org\\u002fpapers\\u002fAnderson_WEIS2012.pdf --- Measuring the Cost of Cybercrime (2...\"],[\"http:\\u002f\\u002fwww.emmaalvarez.com\\u002f2008\\u002f04\\u002fmost-useful-50-css-tips-and-tools-for.html --- Emma Alvarez Site:...\"],[\"http:\\u002f\\u002fwww.sciencedirect.com\\u002fscience\\u002farticle\\u002fpii\\u002f074310669500095X --- The NRL Protocol Analyzer: An ...\"],[\"http:\\u002f\\u002fwww.ck12.org\\u002fstudent\\u002f --- Welcome to CK-12 Foundation | CK-12 Foundation --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSpacecow99\\u002fshellcode_retriever --- Spacecow99\\u002fshellcode_retriever · GitHub --- 2...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fciav7p1\\u002fcms\\u002findex.html --- :security :wikileaks CIA hacking tools revealed ---...\"],[\"http:\\u002f\\u002fwww.sharepointdesignerstepbystep.com\\u002fLists\\u002fErrata\\u002fAllItems.aspx --- Errata --- 2017-05-12...\"],[\"http:\\u002f\\u002fsource.android.com\\u002f --- Android Developers --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cyc.com\\u002f --- Cycorp, Inc. --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMaarten88\\u002frrod --- :opensource :.net :.netcore Building a realtime server backend...\"],[\"http:\\u002f\\u002fhphosts.blogspot.com\\u002f2008\\u002f09\\u002fhex-injection-they-are-persistent.html --- hpHosts Blog: Hex inj...\"],[\"http:\\u002f\\u002fwww.nag.com\\u002f --- Numerical Algorithms Group --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftmrts\\u002fgo-patterns --- GitHub - tmrts\\u002fgo-patterns: A curated list of Go patterns a...\"],[\"http:\\u002f\\u002fsoftware.intel.com\\u002fen-us\\u002fintel-parallel-studio-home\\u002f --- Intel® Parallel Studio Home - Intel...\"],[\"http:\\u002f\\u002fopenmoko.com\\u002ffreerunner.html --- Openmoko, Inc. | FreeRunner --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3278602&R=3278602 --- OpenCV for secret agents...\"],[\"http:\\u002f\\u002fgoparallel.sourceforge.net\\u002fbest-ways-learn-xeon-phi-programming\\u002f --- Best Ways to Learn Xeon ...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fen-us\\u002fdownload\\u002fdetails.aspx?id=46417&CR_CC=200619608 --- Download Paper: Ja...\"],[\"http:\\u002f\\u002fstorm.codeplex.com\\u002f --- Storm --- 2017-05-12...\"],[\"http:\\u002f\\u002fgit-scm.com\\u002fbook\\u002fen\\u002fv2 --- Git - Book --- 2017-05-12...\"],[\"https:\\u002f\\u002fr-forge.r-project.org\\u002fprojects\\u002frnetlogo --- :rforge :R-project :NetLogo Project Home --- 201...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fWindows_Security_Log --- Windows Security Log - Wikipedia, the free enc...\"],[\"http:\\u002f\\u002foffice.microsoft.com\\u002fen-us\\u002fsharepoint-designer-help\\u002fwatch-this-run-a-workflow-when-a-specific...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffacebook\\u002freact\\u002fwiki\\u002fComplementary-Tools --- Complementary Tools · facebook\\u002freact ...\"],[\"https:\\u002f\\u002fvoluntary.net\\u002fbitmarkets\\u002f --- Voluntary - Bitmarkets --- 2017-05-12...\"],[\"http:\\u002f\\u002fmistress-of-disaster.tumblr.com\\u002fpost\\u002f31278571182\\u002f72hourkit --- What your 72 hour emergency ki...\"],[\"http:\\u002f\\u002frylanschaeffer.github.io\\u002fcontent\\u002fresearch\\u002fneural_episodic_control\\u002fmain.html --- :deep-learnin...\"],[\"http:\\u002f\\u002ffreenum.org\\u002fcookbook\\u002f#ASTERISK_CONFIG --- ISN Cookbook --- 2017-05-12...\"],[\"http:\\u002f\\u002fwiki.redpitaya.com\\u002findex.php?title=User_Manual --- User Manual - Red Pitaya Wiki --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojurewerkz\\u002fbuffy --- GitHub - clojurewerkz\\u002fbuffy: Buffy The ByteBuffer Slayer, ...\"],[\"http:\\u002f\\u002fwww.ehow.com\\u002fhow_4882168_make-box-kites.html?p=d --- How to Make Box Kites --- 2017-05-12...\"],[\"http:\\u002f\\u002fquantlabs.net\\u002fblog\\u002f2012\\u002f08\\u002fapple-stock-chart-aug-7-2012\\u002f --- Apple stock chart Aug 7 2012 | Q...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=yNxsrzcGac4&feature=share --- Moni Aizik: \\\"The Rhino\\\" (elbow defense)...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fConcept_search --- Concept Search - Wikipedia, the free encyclopedia -...\"],[\"http:\\u002f\\u002fdodoburd.com\\u002funusual-gifts-for-men --- Not suggesting it for women, but men who are used to w...\"],[\"https:\\u002f\\u002flatesthackingnews.com\\u002f2015\\u002f08\\u002f16\\u002fkali-linux-commands-cheat-sheet\\u002f --- Kali Linux commands ch...\"],[\"http:\\u002f\\u002fwww.doityourselfrv.com\\u002ffinally-sleek-modern-high-quality-teardrop-camper-ton-windows\\u002f --- Fin...\"],[\"http:\\u002f\\u002fwww.ladyada.net\\u002fmake\\u002fsimreader\\u002f --- SIM Reader --- 2017-05-12...\"],[\"https:\\u002f\\u002flabs.mwrinfosecurity.com\\u002f --- Welcome to MWR Labs - mwrlabs --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcaptn3m0\\u002fideas --- :business Ideas for everyone under a CC licence. Feel :free to...\"],[\"http:\\u002f\\u002fwww.shtfpreparedness.com\\u002fhow-to-make-survival-cement\\u002f#.UU279xzrx4M --- How To Make Survival C...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002falt-f\\u002f --- Alt-F | free alternative firmware for the DLINK DNS-320\\u002f3...\"],[\"https:\\u002f\\u002fwww.chromestatus.com\\u002ffeatures\\u002f5678767817097216 --- :browser Chrome Platform Status --- 2017-...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14043193 --- :cheap Ask HN What :laptop do you use? --- 2017-0...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002ffmarguerie\\u002farchive\\u002f2007\\u002f09\\u002f05\\u002fReflexil-csharp-code-injection-in-assemblies.as...\"],[\"http:\\u002f\\u002fgitmostwanted.com\\u002f --- Trending - GitHub Explorer --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAuditProject\\u002ftruecrypt-verified-mirror --- AuditProject\\u002ftruecrypt-verified-mirror...\"],[\"http:\\u002f\\u002flifehacker.com\\u002f5901650\\u002ftop-10-awesome-things-you-can-do-with-the-underused-gadgets-you-alread...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002ftoolbars\\u002fMicrosoftMshtml.aspx --- CodeProject: Working With Microsoft....\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fgp\\u002fproduct\\u002fB01KFQWPF6\\u002f?tag=mytop100gadgets-20&pst=280816165711 --- Fishing: Do...\"],[\"http:\\u002f\\u002fprocessors.wiki.ti.com\\u002findex.php\\u002fGetting_Started_with_the_TIVA%E2%84%A2_C_Series_TM4C123G_Lau...\"],[\"http:\\u002f\\u002fwww.dotnetnuke.com\\u002f --- DotNetNuke \\u002f DNN - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fkarlrosaen.com\\u002fml\\u002f --- :computer-vision :norvig :stanford :python :ipython :Machine-Learning ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure-emacs\\u002fcider --- GitHub - clojure-emacs\\u002fcider: The Clojure Interactive Dev...\"],[\"https:\\u002f\\u002flambdaisland.com\\u002fepisodes --- Lambda Island | Episodes --- 2017-05-12...\"],[\"http:\\u002f\\u002fsritchie.github.io\\u002f2012\\u002f01\\u002f22\\u002fcascalog-testing-20\\u002f --- Cascalog Testing 2.0 --- 2017-05-12...\"],[\"http:\\u002f\\u002fnickjosevski.wordpress.com\\u002f2009\\u002f08\\u002f25\\u002ftyping-animation-effect-in-sketchflow\\u002f --- “Typing”...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3278495&R=3278495 --- Blockchain : blueprint f...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002f101-LINQ-Samples-3fb9811b#thenByDescendingSimple --- 101 LINQ Samples...\"],[\"http:\\u002f\\u002fwww.cookbook-r.com\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fjvns.ca\\u002fblog\\u002f2014\\u002f09\\u002f18\\u002fyou-can-be-a-kernel-hacker\\u002f --- You can be a kernel hacker! - Julia E...\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002ftechnology\\u002fcomments\\u002f2mgxaw\\u002f81_of_tor_users_can_be_deanonymised_by_analysing\\u002f...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fcc161068(v=office.12).aspx --- Building Custom Workflow Cond...\"],[\"http:\\u002f\\u002fwww.nytimes.com\\u002finteractive\\u002f2011\\u002f03\\u002f10\\u002fgarden\\u002f20110310-TEXAS-SLIDESHOW.html?ref=garden --- Th...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fpleloup\\u002farchive\\u002f2008\\u002f02\\u002f11\\u002fwpf-application-quality-guide.aspx --- WPF Applica...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhaskell-crypto\\u002fcryptonite --- GitHub - haskell-crypto\\u002fcryptonite: lowlevel set of...\"],[\"http:\\u002f\\u002fescapes.ca\\u002f --- Escapes.ca - All Inclusive Vacations - Last Minute Deals - Vacation Packages ...\"],[\"http:\\u002f\\u002fwww.stringtemplate.org\\u002f --- StringTemplate --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dedoimedo.com\\u002fcomputers\\u002fwindows-bsod.html --- Windows BSOD analysis - A thorough usage gu...\"],[\"http:\\u002f\\u002fblog.mgechev.com\\u002f2015\\u002f03\\u002f02\\u002fimmutability-in-angularjs-immutablejs\\u002f --- Boost the Performance ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpolygloton\\u002fpipeline --- :etl :clojure Data-processing pipeline abstraction using ...\"],[\"http:\\u002f\\u002fwww.quadcoptermall.com\\u002f --- This kit includes the requires motors, ESC and propellers that yo...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fOWASP_Internet_of_Things_Project#IoT_Attack_Surface_Areas --- :iot :...\"],[\"https:\\u002f\\u002fowncloud.org\\u002f --- ownCloud.org | Your Cloud, Your Data, Your Way! --- 2017-05-12...\"],[\"http:\\u002f\\u002flearnpythonthehardway.org\\u002fbook\\u002f --- Learn Python The Hard Way, 2nd Edition — Learn Python T...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffacebook\\u002fgraphql --- GitHub - facebook\\u002fgraphql: GraphQL is a query language and e...\"],[\"http:\\u002f\\u002fqazaqtili.el.kz\\u002fkazak-tili\\u002fcourses\\u002fadebietter-tizimi.pdf --- online resources - kazakh --- 20...\"],[\"https:\\u002f\\u002fzapier.com\\u002fengineering\\u002fapi-pet-peeves\\u002f --- :blogs 4 Ways Your :API Is Not Quite What I Want ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fconnectbot\\u002fconnectbot --- GitHub - connectbot\\u002fconnectbot: ConnectBot is the first...\"],[\"http:\\u002f\\u002fwww.opennicta.com\\u002f --- OpenNICTA | Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fAsterisk+tips+did --- Asterisk tips did - voip-info.org --- 2017-...\"],[\"http:\\u002f\\u002fwww.adomas.org\\u002fexcc\\u002f --- Exceptions in C --- 2017-05-12...\"],[\"http:\\u002f\\u002feslint.org\\u002fdocs\\u002fuser-guide\\u002fgetting-started --- Getting Started with ESLint - ESLint - Pluggab...\"],[\"http:\\u002f\\u002flifehacker.com\\u002fturn-a-windows-8-1-pc-into-a-wi-fi-hotspot-with-the-com-1593327340 --- Turn a ...\"],[\"http:\\u002f\\u002flearntocodewith.me\\u002fcommand-line\\u002funix-command-cheat-sheet\\u002f --- Linux\\u002fMac OS X Command Cheat Sh...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fWiki\\u002fView.aspx?ProjectName=Phalanger --- Phalanger - The PHP Language Compil...\"],[\"http:\\u002f\\u002fwww.foodiecrush.com\\u002f2011\\u002f08\\u002fcraving-5-fresh-and-simple-avocado-salads\\u002f --- #Avocado, #Onion a...\"],[\"http:\\u002f\\u002fpaintdotnet.forumer.com\\u002fviewtopic.php?f=15&t=3393 --- Paint.NET • View topic - Using New Fo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fenaqx\\u002fawesome-pentest --- enaqx\\u002fawesome-pentest · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwanderer.org.ua\\u002fbook\\u002fpsy\\u002fjung\\u002f --- thomas young - books and articles --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fajax\\u002fdocumentation\\u002f --- Developer's Guide - Google AJAX APIs - Google Co...\"],[\"http:\\u002f\\u002fwww.dumpaday.com\\u002fgenius-ideas-2\\u002fsimple-ideas-borderline-genius-24-pics\\u002f --- Simple Ideas That...\"],[\"http:\\u002f\\u002fwww.easydiagram.net\\u002f --- A Free, Open Source ASP.NET Diagram Control --- 2017-05-12...\"],[\"http:\\u002f\\u002fudinic.wordpress.com\\u002f2013\\u002f04\\u002f24\\u002fwrite-your-own-android-authenticator\\u002f --- Write your own Andr...\"],[\"http:\\u002f\\u002fman7.org\\u002flinux\\u002fman-pages\\u002fman2\\u002frecv.2.html --- recv(2) - Linux manual page --- 2017-05-12...\"],[\"https:\\u002f\\u002fcloud.google.com\\u002fsolutions\\u002fhadoop\\u002f --- Hadoop — Google Cloud Platform --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fabelectronicsuk\\u002fABElectronics_Win10IOT_Libraries --- :nuget :windows :IOT :.net c...\"],[\"http:\\u002f\\u002fblog.stephencleary.com\\u002f2012\\u002f08\\u002fasync-wcf-today-and-tomorrow.html --- Stephen Cleary (the blog...\"],[\"http:\\u002f\\u002fwww.openspf.org\\u002f --- SPF: Project Overview --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.componentsource.com\\u002fproducts\\u002fpdf4net\\u002fdownloads.html --- PDF4NET - Downloads --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fshowcases\\u002fmachine-learning --- machine learning on github --- 2017-05-12...\"],[\"http:\\u002f\\u002flintool.github.io\\u002fCloud9\\u002f --- cloud9 :: Hadoop toolkit for working with big data --- 2017-05-...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fBasic_Linear_Algebra_Subprograms --- :mathematics Basic :Linear-Algebr...\"],[\"http:\\u002f\\u002fwww.shtfpreparedness.com\\u002fget-fresh-water-thin-air\\u002f --- How To Get Fresh Water Out Of Thin Air...\"],[\"https:\\u002f\\u002fgithub.com\\u002fron190\\u002fjsql-injection --- jSQL Injection is a java tool for automatic sql databas...\"],[\"http:\\u002f\\u002fwww.androidhive.info\\u002f2011\\u002f11\\u002fandroid-xml-parsing-tutorial\\u002f --- Android XML Parsing Tutorial -...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftraining\\u002fbuilding-wearables.html --- Building Apps for Wearables | Andr...\"],[\"https:\\u002f\\u002fgithub.com\\u002fr0man\\u002fcascalog-nutch --- GitHub - r0man\\u002fcascalog-nutch: Cascading Schemes and Cas...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdatacrypt-project\\u002fhitchhiker-tree --- GitHub - datacrypt-project\\u002fhitchhiker-tree:...\"],[\"http:\\u002f\\u002flifehacker.com\\u002f5897770\\u002fhow-to-speed-up-clean-up-and-revive-your-android-phone --- How to Spee...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmgan59\\u002fpython-pinboard --- mgan59\\u002fpython-pinboard - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002ftheundercoverrecruiter.com\\u002fit-jobs-fast-track-career\\u002f --- The 12 IT #Jobs that Fast Track You...\"],[\"http:\\u002f\\u002flifehacker.ru\\u002f2016\\u002f06\\u002f29\\u002fcardio-without-losing-muscle\\u002f --- Идеальная кардиотренировка для тех...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fArduino-Controlled-Car-Tracking-System-based-on-SM\\u002f --- Arduino Cont...\"],[\"http:\\u002f\\u002fwww.quora.com\\u002fCan-you-explain-the-HMM-algorithm --- Can you explain the HMM algorithm? - Quor...\"],[\"http:\\u002f\\u002fjrsinclair.com\\u002farticles\\u002f2017\\u002fjavascript-but-less-iffy\\u002f --- :functional-programming :JavaScrip...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fKobushCode --- Szymon Kobalczyk Code Samples - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fhawkeyeproducts.com\\u002f --- HawkEye products :: keylogger for $35 --- 2017-05-12...\"],[\"http:\\u002f\\u002fnlp.stanford.edu\\u002fsoftware\\u002fCRF-NER.shtml --- The Stanford NLP (Natural Language Processing) Gr...\"],[\"http:\\u002f\\u002farea51.stackexchange.com\\u002f --- All Proposals - Area 51 - Stack Exchange --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fp\\u002flinuxonandroid\\u002fcodegit\\u002fci\\u002fmaster\\u002ftree\\u002f --- LinuxonAndroid --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.reybango.com\\u002f2010\\u002f07\\u002f09\\u002fnot-using-jquery-javascript-templates-youre-really-missing-out\\u002f ...\"],[\"http:\\u002f\\u002falexott-ru.blogspot.com\\u002f2011\\u002f04\\u002fmonad-tutorial.html --- Alex Ott's Russian blog about IT-rela...\"],[\"http:\\u002f\\u002frethinkdb.com\\u002f --- An open-source distributed database built with love - RethinkDB --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fMobius\\u002fblob\\u002fmaster\\u002fnotes\\u002fmobius-shell.md --- :apache-spark :csharp mobi...\"],[\"http:\\u002f\\u002fflif.info\\u002findex.html --- FLIF - Free Lossless Image Format --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.arexx.com\\u002farexx.php?cmd=goto&cparam=home --- AREXX engineering --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.google.com\\u002fsupport\\u002fwebsiteoptimizer\\u002fbin\\u002fanswer.py?hl=en_us&answer=71975 --- google web op...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fplamere\\u002fusing-visualizations-for-music-discovery\\u002f --- Using Visualizations...\"],[\"https:\\u002f\\u002fwww.startssl.com\\u002f --- StartSSLâ„¢ Certificates & Public Key Infrastructure --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.eclipseplugincentral.com\\u002fWeb_Links-index-req-viewlink-cid-790.html --- Eclipse Plugin Cen...\"],[\"http:\\u002f\\u002fwww.androidtrainee.com\\u002fcategory\\u002fandroid-tutorials\\u002f --- Tutorials Archives - Android Trainee -...\"],[\"https:\\u002f\\u002fwww.sitepoint.com\\u002fauthor\\u002fmchan\\u002f --- :reactjs :video from Michael Chan --- 2017-05-12...\"],[\"http:\\u002f\\u002fbrat.nlplab.org\\u002f --- brat rapid annotation tool --- 2017-05-12...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fhosamkamel\\u002farchive\\u002f2009\\u002f09\\u002f04\\u002fresources-for-getting-started-with-arcgis-serve...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdaveray\\u002fseesaw --- GitHub - daveray\\u002fseesaw: Seesaw turns the Horror of Swing into...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpebble\\u002fcloudpebble --- :wearables :ide CloudPebble :opensource --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.python.org\\u002fworkshops\\u002f1996-11\\u002fpapers\\u002fInvertedIndex.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fACE.html --- The ADAPTIVE Communication Environment (ACE) ---...\"],[\"http:\\u002f\\u002fwww.adafruit.com\\u002fproducts\\u002f1367 --- Raspberry Pi Camera Board ID: 1367 - $29.95 : Adafruit Ind...\"],[\"http:\\u002f\\u002fwww.3cx.com\\u002fPBX\\u002fVOIP-links.html --- VOIP blogs \\u002f VOIP links --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fASCENDNET\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=317 --- \\\"Ascend.Net\\\" Window...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285514\\u002f --- :podcasts :english learning --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.lihaoyi.com\\u002fpost\\u002fStrategicScalaStylePracticalTypeSafety.html --- Strategic :Scala Style -...\"],[\"https:\\u002f\\u002fdeepvideoanalytics.com\\u002f --- :opensource :docker :Deep-learning Video :Analytics --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.gnu.org\\u002fsoftware\\u002foctave\\u002fdoc\\u002finterpreter\\u002f --- GNU Octave --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.independent.co.uk\\u002flife-style\\u002fhouse-and-home\\u002fgardening\\u002furban-growth-a-gardening-guru-is-ge...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fcpuminer\\u002f --- cpuminer | Free software downloads at SourceForge.net ...\"],[\"https:\\u002f\\u002fwww.microsoft.com\\u002fen-us\\u002fstore\\u002fapps\\u002fvocals-be-gone\\u002f9wzdncrfjjzr --- Vocals Be Gone – Window...\"],[\"http:\\u002f\\u002fwww.homestoriesatoz.com\\u002foutdoor\\u002fdiy-garden-planter-birds-bath.html?utm_source=feedburner&utm_...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcgrand\\u002fxforms --- :etl transducers and reducing fns for :Clojure :clojurescript ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSignalR\\u002fjava-client --- SignalR for Java and Android --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fadbi --- guangliang2014\\u002fadbi · android Dynamic Binary Instrumenta...\"],[\"http:\\u002f\\u002fwww.cssclip.com\\u002fresources\\u002f2009-01-04\\u002f10-promising-free-web-analytics-tools\\u002f --- 10 Promising ...\"],[\"http:\\u002f\\u002fdevelopers.facebook.com\\u002fdocs\\u002fguides\\u002fweb --- Facebook for Websites - Facebook Developers --- 2...\"],[\"http:\\u002f\\u002fwww.gnupg.org\\u002f --- The GNU Privacy Guard - GnuPG.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fhubbledotnet.codeplex.com\\u002fdocumentation --- HubbleDotNet - Open source full-text search engin...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002ftimeline-how-the-global-economy-played-out-in-2015\\u002f --- Timeline: Ho...\"],[\"http:\\u002f\\u002fenglish.stackexchange.com\\u002fquestions\\u002f53198\\u002fcould-you-please-vs-could-you-kindly --- :Languages...\"],[\"https:\\u002f\\u002fsaltpack.org\\u002f --- :cryptography saltpack - a modern :crypto messaging format --- 2017-05-12...\"],[\"http:\\u002f\\u002fgigasquidsoftware.com\\u002fblog\\u002f2016\\u002f12\\u002f27\\u002fdeep-learning-in-clojure-with-cortex\\u002f --- :deep-learnin...\"],[\"http:\\u002f\\u002fwww.getpaint.net\\u002ffeatures.html --- Paint.NET - Features --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojurians.net\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwstein.org\\u002fedu\\u002f2007\\u002fspring\\u002fent\\u002fent-html\\u002fnode89.html --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fshayc\\u002fcboard --- :javascript :english Communication Board with Text-to-speech ---...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@rajaraodv\\u002fa-guide-for-building-a-react-redux-crud-app-7fe0b8943d0f#.xay2s8t5z --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpubkey\\u002frxdb?v=3.0.0 --- :rxjs :reactjs :NodeJS :electron :Browsers :javascript rx...\"],[\"http:\\u002f\\u002fwww.clojure.net\\u002f2012\\u002f06\\u002f03\\u002fMonad-Protocols\\u002f --- Monad Protocols &larr; --- 2017-05-12...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f654771\\u002falgorithms-and-data-structures-that-are-not-mainstream-clo...\"],[\"http:\\u002f\\u002fwww.network-theory.co.uk\\u002f --- Network Theory Ltd --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmattdesl\\u002fgraphics-resources --- mattdesl\\u002fgraphics-resources · GitHub --- 2017-05...\"],[\"http:\\u002f\\u002finfolab.stanford.edu\\u002f~ullman\\u002fmining\\u002fmining.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fbsimser\\u002farchive\\u002f2009\\u002f03\\u002f28\\u002ffavorite-codeplex-sharepoint-projects.aspx --- Fav...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fadventures-offgrid-living-learned-solar\\u002f --- Adventures In Off-Grid ...\"],[\"https:\\u002f\\u002fmediahint.com\\u002finstall_chrome.html --- Media Hint extension setup --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.amk.ca\\u002fpython\\u002fhowto\\u002fregex\\u002f --- Regular Expression HOWTO --- 2017-05-12...\"],[\"http:\\u002f\\u002fspring.io\\u002fguides\\u002f --- Spring Guides --- 2017-05-12...\"],[\"http:\\u002f\\u002fravenhq.com\\u002fpricing.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.braveclojure.com\\u002fquests\\u002fdeploy\\u002f --- :deployment Easily Deploy Your :Clojure Web Site --- ...\"],[\"https:\\u002f\\u002fazure.microsoft.com\\u002fen-us\\u002fdocumentation\\u002farticles\\u002fweb-sites-dotnet-get-started\\u002f --- Create an...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~sutambe\\u002fdocuments\\u002f --- Index of \\u002f~sutambe\\u002fdocuments\\u002f --- 2017-05-12...\"],[\"http:\\u002f\\u002fnmap.org\\u002fbook\\u002f --- Nmap Network Scanning—The Official Nmap Project Guide to Network Discove...\"],[\"http:\\u002f\\u002fmsecdbg.codeplex.com\\u002f --- !exploitable Crash Analyzer - MSEC Debugger Extensions - Home --- 2...\"],[\"http:\\u002f\\u002fwww.yesmail.com\\u002fresources --- eMarketing solutions and services to all kinds of businesses; f...\"],[\"https:\\u002f\\u002fegghead.io\\u002flessons\\u002freact-hello-world-first-component --- Write a &quot;Hello World&quot; Rea...\"],[\"http:\\u002f\\u002fgarajeando.blogspot.co.nz\\u002f2016\\u002f12\\u002frecorded-talk-about-destructuring-in.html --- :clojure Gara...\"],[\"http:\\u002f\\u002fbigloo.pbworks.com\\u002fw\\u002fpage\\u002f10214773\\u002fFrontPage --- bigloo wiki --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002ftools\\u002fadk\\u002findex.html --- Accessory Development Kit | Android Developers...\"],[\"http:\\u002f\\u002fleafletjs.com\\u002fplugins.html --- Plugins - Leaflet - a JavaScript library for interactive maps ...\"],[\"https:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fpackages.html --- Package Index | Android Developers --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fangular\\u002fangularjs-batarang --- angular\\u002fangularjs-batarang --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.prettyhandygirl.com\\u002fcompost-gardenings-black-gold\\u002f --- Gardening --- 2017-05-12...\"],[\"http:\\u002f\\u002fdarkpatterns.org\\u002f --- Dark Patterns - User Interfaces Designed to Trick People --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.securiteam.com\\u002fsecurityreviews\\u002f5DP0N1P76E.html --- SecuriTeamâ„¢ - SQL Injection Walkthro...\"],[\"http:\\u002f\\u002ftoeflgoanywhere.org\\u002f --- TOEFL | Go anywhere from here. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.opengee.org\\u002f --- :business :gis Google Earth Enterprise :OpenSource :google-apps --- 2017...\"],[\"http:\\u002f\\u002fhealthylivinginbodyandmind.com\\u002fdiy-how-to-grow-mushrooms-at-home\\u002f --- DIY - How to Grow Mushr...\"],[\"https:\\u002f\\u002fdocs.asp.net\\u002fen\\u002flatest\\u002fgetting-started\\u002finstalling-on-linux.html --- Installing ASP.NET 5 On ...\"],[\"http:\\u002f\\u002fhomespunharros.com\\u002f?page_id=1249 --- DIY Teardrop Trailer by Homespun Harros ...\"],[\"http:\\u002f\\u002fwww.howtoforge.com\\u002flinux_resizing_ext3_partitions --- How To Resize ext3 Partitions Without L...\"],[\"https:\\u002f\\u002fgithub.com\\u002fisislovecruft\\u002flibrary\\u002ftree\\u002fmaster\\u002fanonymity%20%26%20circumvention --- library\\u002fano...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002fdoing-math-with-python --- Doing Math with Python - Download eBoo...\"],[\"http:\\u002f\\u002fwww.motherearthnews.com\\u002fOrganic-Gardening\\u002f2003-12-01\\u002fSensational-Seedless-Grapes.aspx --- how...\"],[\"http:\\u002f\\u002fmarkforster.squarespace.com\\u002f --- :productivity :Blogs - Get Everything Done --- 2017-05-12...\"],[\"http:\\u002f\\u002ftop3dprinterkits.com\\u002f10-websites-to-find-free-3d-printing-models\\u002f --- Top 10 Websites to Find...\"],[\"https:\\u002f\\u002fgithub.com\\u002frsmudge\\u002fcortana-scripts --- rsmudge\\u002fcortana-scripts · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fSPCamlViewer --- Stramit SharePoint 2007 Caml Viewer --- 2017-05-12...\"],[\"https:\\u002f\\u002fdzone.com\\u002frefcardz\\u002fgetting-started-with-industrial-internet --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.siteslike.com\\u002fsimilar\\u002funfaced.com --- Sites Like Unfaced.com - 50 unfaced.com alternative...\"],[\"http:\\u002f\\u002fwww.tod1d.net\\u002fblog\\u002f2005\\u002f12\\u002fmsbuild-turorials-and-resources.html --- Tod1d's Thought Process -...\"],[\"http:\\u002f\\u002fwww.amazon.com\\u002fgp\\u002fproduct\\u002f1449306683\\u002fref=as_li_ss_tl?ie=UTF8&tag=eisabainyonet-20&linkCode=as...\"],[\"https:\\u002f\\u002fwww.graph.cool\\u002fgraphql-up\\u002f --- :hosting :tools :graphql - Get a ready-to-use :GraphQL API fo...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fa2a4yykt.aspx --- How to: Protect Against Script Exploits in...\"],[\"https:\\u002f\\u002fiamakulov.com\\u002fnotes\\u002fall\\u002fwebpack-for-real-tasks-part-1\\u002f --- :javascript :tools webpack -- bun...\"],[\"https:\\u002f\\u002fwww.infoq.com\\u002fsearch.action?queryString=clojurewest --- Error --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgetify\\u002fYou-Dont-Know-JS --- :JavaScript :free :books You-Dont-Know-JS book series...\"],[\"http:\\u002f\\u002flink.springer.com\\u002fbook\\u002f10.1007%2F978-3-540-89364-6 --- A Generative Theory of Relevance - Spr...\"],[\"http:\\u002f\\u002fwww.techrepublic.com\\u002fblog\\u002fweb-designer\\u002fget-your-fieldset-style-on\\u002f --- Get your fieldset styl...\"],[\"http:\\u002f\\u002flogix4u.net\\u002f --- Embedded System, Digital Signal Processing and Parallel Port Interfacing ---...\"],[\"https:\\u002f\\u002fsecurelist.ru\\u002ffeatured\\u002f26923\\u002fturla-i-sputnikovyj-internet-upravlenie-apt-atakami-v-nebe\\u002f ---...\"],[\"http:\\u002f\\u002fwww.ifood.tv\\u002fblog\\u002fhow-to-make-a-bone-knife --- How to make a bone knife --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.fencel.com\\u002f#\\u002fFencelForm --- automatic layout tool for silverlight and wpf --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.udacity.com\\u002fcourse\\u002fud859 --- Developing Scalable Apps with Google App Engine - Udacity -...\"],[\"http:\\u002f\\u002fbaseinvest.kz\\u002flogin --- | Invest in Kazakhstan --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fintroduction-functional-programming-delftx-fp101x-0#! --- Introduction to...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002fclojurescript\\u002fwiki\\u002fQuick-Start --- Quick Start · clojure\\u002fclojurescript Wi...\"],[\"http:\\u002f\\u002fwww.whoseview.com\\u002findex.html --- Home: Reviews on Restaurants, Bars, Health, Beauty, Special ...\"],[\"https:\\u002f\\u002flinktosheets.com\\u002fextract-data-from-wikipedia-wikidata\\u002f --- :text-mining :data-mining How to ...\"],[\"http:\\u002f\\u002fpeople.cs.uchicago.edu\\u002f~laci\\u002fquasipoly.html --- Laszlo Babai: talks, Nov\\u002fDec 2015 --- 2017-05...\"],[\"http:\\u002f\\u002fwww.west-wind.com\\u002fWebLog\\u002fposts\\u002f324917.aspx --- jQuery AJAX calls to a WCF REST Service - Rick...\"],[\"http:\\u002f\\u002fwww.aisto.com\\u002froeder\\u002fdotnet\\u002f --- Lutz Roeder's Programming.NET C# VB CLR --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthurday\\u002fhue --- thurday\\u002fhue · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.race-dezert.com\\u002fforum\\u002fshowthread.php\\u002f89005-Camburg-built-KINETIK-Trophy-Truck-for-Greene-...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fvault7\\u002f#Grasshopper --- :WikiLeaks - Vault 7: grasshopper framework --- 2017-0...\"],[\"http:\\u002f\\u002focw.jhsph.edu\\u002fcourses\\u002fMethodsInBiostatisticsII\\u002fPDFs\\u002flecture24.pdf --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fsinews.siam.org\\u002fDetails-Page\\u002fdeep-deep-trouble-4 --- :Deep-learning :image-processing denois...\"],[\"http:\\u002f\\u002fwww.onyxplatform.org\\u002fjekyll\\u002fupdate\\u002f2017\\u002f02\\u002f08\\u002fPyroclast-Preview-Simulation.html --- :clojure ...\"],[\"https:\\u002f\\u002fhub.openshift.com\\u002fquickstarts\\u002f196-scala --- Free Scala Hosting | OpenShift QuickStart --- 20...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=ndk --- android ndk : : Toronto Public Lib...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?client=opera&q=bash+one+liners --- Bash one liners search --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002falias1\\u002fcoursera-reactive --- GitHub - alias1\\u002fcoursera-reactive: Principles of Rea...\"],[\"http:\\u002f\\u002fwww.3ders.org\\u002fpricecompare\\u002f3dprinters\\u002f --- 3ders.org - price compare 3D printers --- 2017-05-...\"],[\"http:\\u002f\\u002fkoeln.ccc.de\\u002farchiv\\u002fcyphernomicon\\u002f12.html --- Cyphernomicon: Digital Cash and Net Commerce --...\"],[\"http:\\u002f\\u002fresearch.sensepost.com\\u002ftools\\u002f --- Sensepost Research Labs --- 2017-05-12...\"],[\"http:\\u002f\\u002fsdf.org\\u002f?join --- SDF Public Access UNIX System - Free Shell Account and Shell Access --- 201...\"],[\"http:\\u002f\\u002fericsomdahl.github.io\\u002fposts\\u002f2015-03-07-gevents1.html --- (defthoughts): Clojure web scraping ...\"],[\"http:\\u002f\\u002fwww.mbtest.org\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvx\\u002fconnectbot --- GitHub - vx\\u002fconnectbot: Enhanced version of the popular Connect...\"],[\"http:\\u002f\\u002fthegardeningcook.com\\u002fsoda-bottle-drip-feeder-for-vegetables\\u002f --- DIY Soda Bottle drip feeder....\"],[\"http:\\u002f\\u002fwww.visioforge.com\\u002fvideo-capture-sdk.html --- Video Capture SDK | VisioForge --- 2017-05-12...\"],[\"http:\\u002f\\u002fbl0gg.ruberg.no\\u002f2015\\u002f03\\u002fids-with-mikrotik-and-snort\\u002f --- IDS with MikroTik and Snort --- 2017...\"],[\"http:\\u002f\\u002fwww.tractorbynet.com\\u002fforums\\u002fbuild-yourself\\u002f93861-diy-home-built-compact-tractor-14.html --- H...\"],[\"http:\\u002f\\u002fbaribirge.kz\\u002fru\\u002f --- :business :kazakhstan :startup crowdfunding platform --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fBinary_tree --- Binary tree - Wikipedia, the free encyclopedia --- 201...\"],[\"https:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fhh194294%28v=vs.110%29.aspx --- WebClient.DownloadStringTas...\"],[\"https:\\u002f\\u002fblog.falafel.com\\u002fintroduction-rxjs-angular2\\u002f --- :angularjs introduction to :RxJs in :Angula...\"],[\"http:\\u002f\\u002fwww.gfi.com\\u002fblog\\u002ftop-20-free-digital-forensic-investigation-tools-for-sysadmins\\u002f --- Top 20 F...\"],[\"http:\\u002f\\u002fwww.searchenginejournal.com\\u002fsemantic-search-engines\\u002f9832\\u002f --- 9 Semantic Search Engines That ...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fclass\\u002fRobots-Class\\u002f?utm_medium=cta&tum_source=popup&utm_campaign=freecl...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@taion\\u002freact-routing-and-data-fetching-ec519428135c#.lh253yns8 --- :Reactjs routi...\"],[\"https:\\u002f\\u002fdevelopers.google.com\\u002fapp-invites\\u002fandroid\\u002f --- App Invites for Android  |  Google Develope...\"],[\"http:\\u002f\\u002findulgy.com\\u002fpost\\u002fhqMkpOfob1\\u002froot-cellar-storage-what-to-do-after-harves --- The Homestead Sur...\"],[\"https:\\u002f\\u002fdownloads.channel8.msdn.com\\u002f --- Microsoft DreamSpark --- 2017-05-12...\"],[\"http:\\u002f\\u002fevent.on24.com\\u002feventRegistration\\u002fEventLobbyServlet?target=lobby.jsp&playerwidth=950&playerhei...\"],[\"http:\\u002f\\u002fgcc.fyxm.net\\u002fsummit\\u002f2003\\u002fmudflap.pdf --- Mudflap.pdf : Pointer Use Checking for C\\u002fC++ --- 201...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002flibphonenumber\\u002f --- libphonenumber - Project Hosting on Google Code --- 201...\"],[\"http:\\u002f\\u002fwww.mindscapehq.com\\u002fproducts\\u002flightspeed\\u002fdefault.aspx --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcognitect-labs\\u002fvase --- :clojure :datomic :microservices cognitect-labs\\u002fvase: Dat...\"],[\"https:\\u002f\\u002fwww.lwks.com\\u002f --- Lightworks: The professional editor for everyone --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fumbrae\\u002freddit-top-2.5-million\\u002fblob\\u002fmaster\\u002fdata\\u002fReverseEngineering.csv --- reddit-...\"],[\"http:\\u002f\\u002ftangentlin.wordpress.com\\u002fcategory\\u002fsharepoint\\u002f --- SharePoint « The Mini's View --- 2017-05-1...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fgrobinson\\u002farchive\\u002f2009\\u002f09\\u002f24\\u002ftechnical-interview-questions.aspx --- Technical...\"],[\"http:\\u002f\\u002fmvp.support.microsoft.com\\u002f --- Microsoft Most Valuable Professional --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002freyammer\\u002fshellnoob --- https:\\u002f\\u002fgithub.com\\u002freyammer\\u002fshellnoob --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mobile2day.com\\u002fen\\u002fdevice:Samsung_SGH-i617+BlackJack+2\\u002findex.html --- Samsung SGH-i617 Bla...\"],[\"http:\\u002f\\u002fdanielmclaren.net\\u002f2007\\u002f05\\u002f11\\u002fgetting-started-with-opennlp-natural-language-processing --- Get...\"],[\"https:\\u002f\\u002fwww.simple-talk.com\\u002fcloud\\u002fcloud-data\\u002fmicrosoft-azure-documentdb\\u002f --- Microsoft Azure Documen...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms366712.aspx --- Using Images with the Menu Control --- 201...\"],[\"https:\\u002f\\u002fgithub.com\\u002fptaoussanis\\u002ftufte --- GitHub - ptaoussanis\\u002ftufte: Simple profiling and performanc...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2010\\u002f04\\u002f15\\u002fusing-clojure-to-connect-to-gmail-via-imap\\u002f --- Using Clojure to Conne...\"],[\"https:\\u002f\\u002fgithub.com\\u002fquarkslab\\u002fbinmap --- GitHub - quarkslab\\u002fbinmap: system scanner --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcrazyministr\\u002fpybull\\u002ftree\\u002fmaster\\u002fpytbull\\u002fdocs --- pybull\\u002fpytbull\\u002fdocs at master ·...\"],[\"http:\\u002f\\u002fyogthos.net\\u002fposts\\u002f2016-11-30-Macchiato.html --- Macchiato: ClojureScript on nodejs --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fariya\\u002fphantomjs --- PhantomJS --- 2017-05-12...\"],[\"https:\\u002f\\u002ftxtpen.com\\u002f --- :javascript highlighter for the web txtpen --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.gpg4win.org\\u002fdownload.html --- Gpg4win - EMail-Security using GnuPG for Windows --- 2017-0...\"],[\"http:\\u002f\\u002flemurproject.org\\u002findri\\u002f --- INDRI - Language modeling meets inference networks --- 2017-05-12...\"],[\"http:\\u002f\\u002fwpa.darkircop.org\\u002f --- Free online WPA cracker with stats - besside-ng companion --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002fPatrickSmacchia\\u002fCSharp2UnsafeCode02162006063859AM\\u002fCSharp2Uns...\"],[\"http:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fpackages\\u002fsna\\u002findex.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fmauricio.github.io\\u002f2013\\u002f11\\u002f25\\u002flearning-scala-by-building-scala-lists.html --- Learning Scala ...\"],[\"http:\\u002f\\u002fwww.sqlshare.com\\u002fssis-configurations_202.aspx --- SQLShare - SSIS Configurations --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002falda-lang\\u002falda --- GitHub - alda-lang\\u002falda: A music programming language for musi...\"],[\"http:\\u002f\\u002fwww.radmin.com\\u002fproducts\\u002futilities\\u002flanscanner.php --- Advanced LAN Scanner 1.0 (Free) - Fast, ...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fobjectify-appengine\\u002f --- objectify-appengine - The simplest convenient int...\"],[\"http:\\u002f\\u002fwww.catonmat.net\\u002fblog\\u002ftop-100-books-part-four\\u002f --- My Top 100 Programming, Computer and Scien...\"],[\"http:\\u002f\\u002farstechnica.com\\u002finformation-technology\\u002f2015\\u002f09\\u002fmicrosoft-google-amazon-others-aim-for-royalty...\"],[\"http:\\u002f\\u002fwiki.openmusiclabs.com\\u002fwiki\\u002f --- OpenMusicLabsWiki - Open Music Labs Wiki --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fclojure\\u002ftest.generative --- GitHub - clojure\\u002ftest.generative --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbt3gl\\u002fMy-Gray-Hacker-Resources\\u002ftree\\u002fmaster\\u002fNetwork_and_802.11 --- My-Gray-Hacker-...\"],[\"https:\\u002f\\u002fcrypto.stanford.edu\\u002fgyrophone\\u002f --- Gyrophone: Recognizing Speech From Gyroscope Signals --- ...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fapis\\u002fajaxsearch\\u002f --- Google AJAX Search API - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.vagrantup.com\\u002f --- Vagrant --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285616\\u002f --- :image-processing :neural-networks probabilistic image restora...\"],[\"http:\\u002f\\u002fqunitjs.com\\u002f --- Access denied | qunitjs.com used CloudFlare to restrict access --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.canadian-robotics.com\\u002f --- Canadian - Robotics ltd. - Welcome to Canadian Robotics --- 20...\"],[\"https:\\u002f\\u002fwww.systemcodegeeks.com\\u002f --- Access denied | www.systemcodegeeks.com used CloudFlare to rest...\"],[\"http:\\u002f\\u002flethow.com\\u002fhome\\u002fgrow-avocado-plant-from-seed\\u002f --- Next time you make guacamole, think twice b...\"],[\"http:\\u002f\\u002fwww.facegen.com\\u002f --- FaceGen - 3D Human Faces --- 2017-05-12...\"],[\"https:\\u002f\\u002farxiv.org\\u002fabs\\u002f1703.07950 --- Failures of :Deep-Learning --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.espruino.com\\u002f --- Espruino - JavaScript for Microcontrollers :: $39.95 --- 2017-05-12...\"],[\"http:\\u002f\\u002fkrasimirtsonev.com\\u002fblog\\u002farticle\\u002fDependency-injection-in-JavaScript --- :ioc Dependency inject...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fOpenWrt --- OpenWrt - Wikipedia, the free encyclopedia --- 2017-05-12...\"],[\"http:\\u002f\\u002farchive.ics.uci.edu\\u002fml\\u002f --- UCI Machine Learning Repository --- 2017-05-12...\"],[\"http:\\u002f\\u002fdnscurve.org\\u002fin-implement.html --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fdgorti\\u002farchive\\u002f2005\\u002f10\\u002f29\\u002f486887.aspx --- Durgaprasad Gorti's WebLog : Using a...\"],[\"http:\\u002f\\u002ffilippo.io\\u002fHeartbleed --- Test your server for Heartbleed (CVE-2014-0160) --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgorhill\\u002fumatrix\\u002f --- :chrome-extensions uMatrix Point and click matrix to filter ...\"],[\"http:\\u002f\\u002fkwizcom.com\\u002fContentPage.asp?PageId=666 --- Collaboration Bundle ~ kwizcom.com --- 2017-05-12...\"],[\"https:\\u002f\\u002fidea.popcount.org\\u002f2017-03-20-epoll-is-fundamentally-broken-22\\u002f --- :linux Epoll is fundament...\"],[\"http:\\u002f\\u002fwww.lingvo.com\\u002fproducts\\u002f?id=154716 --- System Requirements - Lingvo for mobile devices --- 20...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002ferobillard\\u002farchive\\u002f2008\\u002f12\\u002f13\\u002fthe-best-free-sharepoint-downloads.aspx --- The...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f13365004\\u002fhow-to-build-web-crawler-using-asp-net-mvc3-and-c?rq=1 -...\"],[\"http:\\u002f\\u002fblog.stephencleary.com\\u002f2017\\u002f03\\u002faspnetcore-synchronization-context.html?utm_source=csharpdiges...\"],[\"https:\\u002f\\u002fwikileaks.org\\u002fciav7p1\\u002fcms\\u002fspace_753667.html --- :wikileaks :security CIA Embedded-Dev-Branch...\"],[\"http:\\u002f\\u002fwww.thegardenglove.com\\u002ftop-organic-garden-fertilizers\\u002f --- Top Organic Garden Fertilizers You...\"],[\"http:\\u002f\\u002fwww.shtfpreparedness.com\\u002fhow-to-build-a-cheap-portable-home-yurt-for-shtf\\u002f --- How To Build A...\"],[\"http:\\u002f\\u002fwww.asindexing.org\\u002fabout-indexing\\u002fthesauri\\u002fonline-thesauri-and-authority-files\\u002f --- Online Th...\"],[\"http:\\u002f\\u002fnwjs.io\\u002f --- NW.js :: new way of writing apps --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAllThingsSmitty\\u002fmust-watch-javascript --- :youtube :videos useful list of must-wa...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcloudwu\\u002fxlsx2txt --- cloudwu\\u002fxlsx2txt · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fdocs.surfly.com\\u002f --- :team-tools :tools :docs Surfly -- share your browser with others --- 2...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2010\\u002f08\\u002f24\\u002fa-micro-manual-for-lisp-implemented-in-c\\u002f --- [No Title] --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsheimi\\u002fSGit --- GitHub - sheimi\\u002fSGit: A Git client for Android. --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002farchive\\u002fp\\u002fclojure-contrib\\u002fwikis\\u002fDatalogOverview.wiki --- Google Code Archive...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f249089\\u002f --- Deep learning и Caffe на новогодних праздниках \\u002f Хабрахабр ---...\"],[\"http:\\u002f\\u002fgroups.google.com\\u002fgroup\\u002fmicrosoft.public.pocketpc.activesync\\u002fmsg\\u002f8a54679b4e93f7ff?pli=1 --- G...\"],[\"http:\\u002f\\u002fhubpages.com\\u002fsearch\\u002f?s=recycling --- Search hubpages for &#039;recycling&#039; --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.insecure.in\\u002febooks.asp --- Ethical Hacking eBooks --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.communitypicks.com\\u002fr\\u002fclojure --- :clojure recommended :books for Clojurians --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgooddata --- GoodData · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002ffitness.mercola.com\\u002fsites\\u002ffitness\\u002farchive\\u002f2012\\u002f07\\u002f27\\u002fincrease-testosterone-levels.aspx --- 9 ...\"],[\"https:\\u002f\\u002fsecurity.googleblog.com\\u002f2017\\u002f02\\u002fannouncing-first-sha1-collision.html --- :cryptography :Secu...\"],[\"http:\\u002f\\u002fwww.northerntool.com\\u002fshop\\u002ftools\\u002fproduct_200418177_200418177 --- Use this to level your yard, ...\"],[\"http:\\u002f\\u002flearnreact.com\\u002flessons --- learnreact.com - Learn ReactJS with tutorial videos & training @le...\"],[\"https:\\u002f\\u002fmalwr.com\\u002f --- Malwr - Malware Analysis by Cuckoo Sandbox --- 2017-05-12...\"],[\"http:\\u002f\\u002furbansurvivalsite.com\\u002f101-paracord-projects\\u002f --- 101 Paracord Projects --- 2017-05-12...\"],[\"http:\\u002f\\u002fwebsitelogic.net\\u002farticles\\u002fMVC\\u002fstringtemplate-viewengine-asp-net-mvc\\u002f --- Using StringTemplate...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fhow-closely-connected-are-the-most-powerful-corporations-in-america\\u002f...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmafintosh\\u002ftorrent-stream --- mafintosh\\u002ftorrent-stream · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fjd.benow.ca\\u002f --- Java Decompiler --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cio.com\\u002farticle\\u002f2457266\\u002fcertifications\\u002f160612-11-Big-Data-Certifications-That-Will-Pay-Of...\"],[\"http:\\u002f\\u002fsalsato.ca\\u002fevents.html --- SalsaTO - events --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.exacteditions.com\\u002fread\\u002fpermaculture\\u002fspring-2010-6594\\u002f10\\u002f2\\u002f --- How to make a wind turbine...\"],[\"http:\\u002f\\u002fwww.linux.com\\u002flearn\\u002fnew-user-guides --- Linux User Guides | Linux.com --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fJonathanZWhite\\u002fstartup-resources --- JonathanZWhite\\u002fStartup-Resources · GitHub -...\"],[\"https:\\u002f\\u002fnumer.ai\\u002f --- :machine-learning :trading Numerai --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.howtodowhat.com\\u002fwp-content\\u002fuploads\\u002f2010\\u002f10\\u002f-341032206800932410.jpg --- -34103220680093241...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgerricchaplin\\u002fstartup-must-watch --- gerricchaplin\\u002fstartup-must-watch · GitHub -...\"],[\"https:\\u002f\\u002fpwntools.readthedocs.org\\u002fen\\u002f2.2\\u002f --- pwntools 2.2 documentation --- 2017-05-12...\"],[\"https:\\u002f\\u002fcrypto.stanford.edu\\u002fcs251\\u002fsyllabus.html --- CS 251 Bitcoin and Crypto Currencies — Syllabu...\"],[\"https:\\u002f\\u002fdevelopers.arcgis.com\\u002fandroid\\u002f --- ArcGIS Runtime SDK for Android | ArcGIS for Developers --...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002ftess\\u002farchive\\u002f2008\\u002f02\\u002f08\\u002fnet-debugging-demos-lab-2-crash.aspx --- If broken it ...\"],[\"http:\\u002f\\u002fwww.organicgardening.com\\u002flearn-and-grow\\u002fstoring-vegetables-winter#.UJwzMYFw660.pinterest --- ...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002farchitecture\\u002fSelfDescribingComponents.aspx --- CodeProject: Evolving R...\"],[\"http:\\u002f\\u002fdirectory.fsf.org\\u002fproject\\u002fgreent\\u002f --- GreenT - Free Software Directory - Free Software Founda...\"],[\"http:\\u002f\\u002fthehomesteadsurvival.com\\u002fvertical-wind-generator-washing-machine-motor-diy-project\\u002f --- A Ver...\"],[\"https:\\u002f\\u002fgithub.com\\u002fguangliang2014\\u002fHacked-Team-Submodules --- guangliang2014\\u002fHacked-Team-Submodules -...\"],[\"http:\\u002f\\u002fwww.genymotion.com\\u002f --- Genymotion --- 2017-05-12...\"],[\"https:\\u002f\\u002fsecurity-center.intel.com\\u002fadvisory.aspx?intelid=INTEL-SA-00075&languageid=en-fr --- Intel :S...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fshell\\u002fcsdoesshell1.aspx --- CodeProject: C# does Shell, Part 1. Free s...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3044661&R=3044661 --- Instant dependency manag...\"],[\"https:\\u002f\\u002fwww.quora.com\\u002fHow-can-I-make-5-000-per-month-working-from-home?share=1 --- :dropshipping :st...\"],[\"http:\\u002f\\u002fwpfandcardspace.codeplex.com\\u002f --- WPF and CardSpace - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2014\\u002f06\\u002f18\\u002funconventional-self-defense-tips\\u002f --- Unconventional Self Defense...\"],[\"https:\\u002f\\u002fgithub.com\\u002flinkedin\\u002fpinot?imm_mid=0d39ab&cmp=em-data-na-na-newsltr_20150617 --- linkedin\\u002fpin...\"],[\"https:\\u002f\\u002fwww.knewton.com\\u002fresources\\u002fblog\\u002fteacher-tools\\u002fhow-to-make-an-interactive-lesson-using-youtube...\"],[\"http:\\u002f\\u002fsurvival.outdoorlife.com\\u002fphotos\\u002fgallery\\u002fsurvival\\u002f2011\\u002f02\\u002fescaping-martial-situations?xyzallow...\"],[\"http:\\u002f\\u002fstatmethods.net\\u002f --- Quick-R: Home Page --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.knime.org\\u002fintroduction\\u002fexamples --- KNIME | Examples --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285590\\u002f --- :english :tools Grammarly service improves your written englis...\"],[\"https:\\u002f\\u002fgithub.com\\u002fULgRobotics\\u002ftrs --- :matlab :robotics an Open-source Recipe for Teaching\\u002fLearning...\"],[\"http:\\u002f\\u002frulesofreason.wordpress.com\\u002f2012\\u002f04\\u002f11\\u002fnew-tool-for-discourse-network-analysis\\u002f --- New tool ...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=LopU-kMpe8I --- ClojureScript and optimized C - YouTube --- 2017-05-...\"],[\"http:\\u002f\\u002fjamesbvaughan.com\\u002fpython-twilio-scraping\\u002f --- :python :webscraper Finding Free Food --- 2017-...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fConway%27s_Game_of_Life --- Conway's Game of Life - Wikipedia, the fre...\"],[\"https:\\u002f\\u002fwww.quantamagazine.org\\u002f20170328-statistician-proves-gaussian-correlation-inequality\\u002f --- :ma...\"],[\"http:\\u002f\\u002fwww.cryptopp.com\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.netfabb.com\\u002f --- netfabb Software - Software for 3D Printing - 3D Software for STL files ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsquiffy\\u002fMasochist --- XNU rootkit framework --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fBrianHeeseIs\\u002fCMSmap --- BrianHeeseIs\\u002fCMSmap · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fsystemsarchitect.net\\u002fpainless-guide-to-solr-cloud-configuration\\u002f --- Painless guide to Solr C...\"],[\"http:\\u002f\\u002fwww.toronto.ca\\u002fhealth\\u002fcdc\\u002fcdc_clinics\\u002findex.htm#clinics --- Communicable Disease Control - Se...\"],[\"http:\\u002f\\u002fpubliclab.org\\u002f --- Public Lab: Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwiki.cyanogenmod.com\\u002fwiki\\u002fHowto:_Connect_to_Device_with_SSH --- Howto: Connect to Device with...\"],[\"http:\\u002f\\u002fwww.enterprisetoronto.com\\u002findex.cfm?linkId=220&LinkType=sublink&content_id=217&moduleSubConte...\"],[\"http:\\u002f\\u002fase.codeplex.com\\u002f --- Attack Surface Explorer - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fnicolenguyen\\u002fapps-that-will-change-the-way-you-use-gmail?utm_term=.vcOaAzMOZ...\"],[\"https:\\u002f\\u002fgithub.com\\u002furbanadventurer\\u002fWhatWeb --- urbanadventurer\\u002fWhatWeb · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fverekia\\u002fjs-stack-from-scratch --- :nodejs :reactjs :russian :tutorial :javascript...\"],[\"http:\\u002f\\u002fpyramidanalytics.com\\u002f?gclid=CKud7PKV0rYCFSXLtAodbScAIw --- OLAP Application for Microsoft Ana...\"],[\"http:\\u002f\\u002fbashagroplast.shopikk.ru\\u002f --- Парник «Подснежник» --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikibooks.org\\u002fwiki\\u002fMetasploit --- Metasploit - Wikibooks, collection of open-content text...\"],[\"https:\\u002f\\u002flaunchpad.net\\u002fgcc-arm-embedded\\u002f --- GCC ARM Embedded in Launchpad --- 2017-05-12...\"],[\"https:\\u002f\\u002fmran.revolutionanalytics.com\\u002frro\\u002f --- About Microsoft R Open: The Enhanced R Distribution ·...\"],[\"http:\\u002f\\u002fvoiceofthedba.wordpress.com\\u002f2012\\u002f03\\u002f28\\u002fthe-encryption-primer\\u002f --- The Encryption Primer | Voi...\"],[\"https:\\u002f\\u002fgithub.com\\u002freactjs --- React Community · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?FamilyID=43162af5-5b7b-40e0-b879-a77dac8f58bc&displa...\"],[\"https:\\u002f\\u002fwww.owasp.org\\u002findex.php\\u002fChoosing_and_Using_Security_Questions_Cheat_Sheet --- Choosing and U...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fapplications\\u002freplace_text_in_SWF_file.aspx --- CodeProject: Replace th...\"],[\"http:\\u002f\\u002fguides.library.harvard.edu\\u002ffriendly.php?s=sixreadinghabits&amp;gid=4877 --- Reading Strategie...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdawilster\\u002fpoly --- Poly -- universal :chat room where regardless of what language...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWPF\\u002fBeginWPF3.aspx --- CodeProject: WPF : A Beginners guide part 3 of ...\"],[\"http:\\u002f\\u002fcommunity.bamboosolutions.com\\u002fmedia\\u002fp\\u002f7160.aspx --- SharePoint Analyzer v1.3 - Bamboo Nation ...\"],[\"http:\\u002f\\u002fwww.ebswift.com\\u002fPocketPC\\u002fWordNet\\u002f --- Free Pocket PC Dictionary - WordNetCE --- 2017-05-12...\"],[\"http:\\u002f\\u002fgpsworld.com\\u002fputting-the-ultra-low-power-in-geofence\\u002f --- using ultra low power location trac...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fivo_manolov\\u002farchive\\u002f2008\\u002f01\\u002f16\\u002f7135566.aspx --- Ivo Manolov's Blog : \\\"Starter ...\"],[\"http:\\u002f\\u002fwww.theguardian.com\\u002ftechnology\\u002f2014\\u002fnov\\u002f19\\u002fnew-twitter-search-makes-every-public-tweet-since-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmartinklepsch\\u002fs3-beam --- :aws :clojure upload with cljs to Amazon S3 --- 2017-05...\"],[\"http:\\u002f\\u002fwww.mediabistro.com\\u002falltwitter\\u002ftwitter-facebook-online-security_b28527 --- Twitter, Facebook ...\"],[\"http:\\u002f\\u002fwww.aopensource.com\\u002findex.php?more=912 --- AOpenSource.com Android Open Source Details: Fake ...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=13965344 --- Ask HN: What are the best resources to properly le...\"],[\"https:\\u002f\\u002fwww.realitykeys.com\\u002f --- Reality Keys - Facts about the future, cryptographic proof when the...\"],[\"http:\\u002f\\u002fblog.solidcraft.eu\\u002f2011\\u002f03\\u002fspring-security-by-example-set-up-and.html --- Solid Craft: Spring...\"],[\"https:\\u002f\\u002fnervous.io\\u002fclojurescript\\u002flambda\\u002f2017\\u002f02\\u002f06\\u002fserverless-cljs\\u002f --- :microservices :clojure :aws...\"],[\"http:\\u002f\\u002fwiki.asp.net\\u002fpage.aspx\\u002f388\\u002faspnet-open-source-projects\\u002f --- ASP.NET Wiki: ASP.NET Open Source...\"],[\"http:\\u002f\\u002fwww.certicom.com\\u002findex.php\\u002fecc-tutorial --- ECC Tutorial --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.thewaystowealth.com\\u002fmake-money\\u002flegit-online-jobs\\u002f --- :job-search 33 Legit Online Jobs Wh...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3095465&R=3095465 --- Securing Linux platforms...\"],[\"http:\\u002f\\u002ffeatures.codeplex.com\\u002f --- SharePoint 2007 Features --- 2017-05-12...\"],[\"http:\\u002f\\u002flifehacker.com\\u002f5987998\\u002ftop-10-things-you-can-upgrade-with-a-little-electronics-hacking --- To...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpardahlman\\u002fcsharp-seven --- :csharp Test suite that describes new features in C# ...\"],[\"http:\\u002f\\u002fwww.ck12.org\\u002fbrowse\\u002fstatistics\\u002f --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.visualstudio.com\\u002fproducts\\u002fvisual-studio-dev-essentials-vs --- Visual Studio Dev Essentia...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002feasyhook\\u002fRelease\\u002fProjectReleases.aspx?ReleaseId=16087 --- EasyHook - The rei...\"],[\"https:\\u002f\\u002fgithub.com\\u002fRMerl\\u002fasuswrt-merlin --- RMerl\\u002fasuswrt-merlin · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fbitnami.com\\u002fstack\\u002ferpnext --- ERPNext Cloud Hosting, ERPNext Hosting - Installers and VM ---...\"],[\"https:\\u002f\\u002fakshatm.svbtle.com\\u002fconsistent-hash-rings-theory-and-implementation --- :number-theory :crypt...\"],[\"http:\\u002f\\u002fgraphenet.codeplex.com\\u002f --- .net Node Graph library --- 2017-05-12...\"],[\"http:\\u002f\\u002flawnsea.com\\u002fjqcon-making-pigs-fly\\u002f#\\u002f --- :frp Making Pigs Fly: Functional Reactive Programmin...\"],[\"http:\\u002f\\u002fsilverlightdesktop.net\\u002f --- SilverlightDesktop.net \\u003e Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.softprayog.in\\u002ftutorials --- Tutorials | Linux --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftegon\\u002ftraktflix --- :internet-tv Trakt.tv + Netflix = love --- 2017-05-12...\"],[\"http:\\u002f\\u002fnetlogoweb.org\\u002flaunch --- NetLogo Web --- 2017-05-12...\"],[\"http:\\u002f\\u002fdimacs.rutgers.edu\\u002fWorkshops\\u002fPost-Quantum\\u002fSlides\\u002fSilverman.pdf --- NTRU and lattice-based cry...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthurday\\u002fbro --- thurday\\u002fbro · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.elastic.co\\u002fproducts\\u002flogstash --- Logstash -- Collect, Parse, Transform Logs :ElasticSear...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fList_of_Canadian_mobile_phone_companies --- List of Canadian mobile pho...\"],[\"http:\\u002f\\u002fmrdiyprojects.blogspot.co.il\\u002f2015\\u002f04\\u002feven-if-you-dont-have-backyard-or.html --- Even if you d...\"],[\"http:\\u002f\\u002fwww.steves-templates.com\\u002f --- Steve's free web page templates --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fditto-cp\\u002f --- SourceForge.net: Ditto-cp -- extension to the standard...\"],[\"https:\\u002f\\u002frurust.github.io\\u002frust-by-example-ru\\u002f --- :free :books :rust-lang Introduction to :Rust :exam...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fVS2010TrainingCourse_IntroToMEF --- MEF hands-on labs --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.cryptoworkshop.com\\u002fximix\\u002fdoku.php --- :cryptography :elliptic_curve_cryptography [The XI...\"],[\"http:\\u002f\\u002fsuperuser.com\\u002fquestions\\u002f701141\\u002fhow-to-add-more-commands-to-git-bash-shell --- :windows :cygwi...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fwinsdk\\u002fcertificate_manager.aspx --- CodeProject: Protecting an Applica...\"],[\"http:\\u002f\\u002fwindowsclient.net\\u002fdownloads\\u002ffolders\\u002fwpfsamples\\u002fdefault.aspx --- WPF Samples - WindowsClient.n...\"],[\"http:\\u002f\\u002fthinkinator.com\\u002f --- Thinkinator | Machines & People Learning --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmarcobiedermann\\u002fsearch-engine-optimization --- Search Engine Optimization (SEO) t...\"],[\"http:\\u002f\\u002fbeautyharmonylife.com\\u002f25-diy-ideas-to-recycle-your-potential-garbage\\u002f --- Idea to keep the so...\"],[\"http:\\u002f\\u002fwww.lights.ca\\u002fhow-to\\u002faffiliate.html --- How Make Money from Your Web Site - Choosing a Pay-Pe...\"],[\"http:\\u002f\\u002fwww.diygokarts.com\\u002fvb\\u002fshowthread.php?t=10181 --- M274 military mule half scale home build - D...\"],[\"https:\\u002f\\u002fgithub.com\\u002fswannodette\\u002fmori --- :js :functional-programming swannodette\\u002fmori: ClojureScript&...\"],[\"https:\\u002f\\u002fmarket.yandex.ru\\u002fproduct--pullman-pl-1016\\u002f10545701 --- :cheap :robotics vacuum cleaner Pullm...\"],[\"http:\\u002f\\u002ffacebook.github.io\\u002freact\\u002f --- React | A JavaScript library for building user interfaces --- 2...\"],[\"http:\\u002f\\u002fapps.facebook.com\\u002fmarketplace\\u002fview\\u002f-\\u002f1483809635\\u002f?orig=SEARCH --- Marketplace on Facebook --- ...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fllobo\\u002farchive\\u002f2007\\u002f02\\u002f05\\u002flocalizing-wpf-apps.aspx --- Lester's WPF blog : Loca...\"],[\"http:\\u002f\\u002fpracticalcryptography.com\\u002fcryptanalysis\\u002f --- :cryptoanalysis Practical Cryptography --- 2017-...\"],[\"http:\\u002f\\u002fwww.treehugger.com\\u002fslideshows\\u002fgadgets\\u002f20-awesome-projects-raspberry-pi-microcomputers\\u002fpage\\u002f11...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsirthias\\u002fparboiled\\u002fwiki --- Home - parboiled - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910&Ntt=Charles+Petzold --- Charles Petzold : eBoo...\"],[\"http:\\u002f\\u002fwww.ayende.com\\u002fBlog\\u002farchive\\u002f2007\\u002f03\\u002f28\\u002fRhino-Mocks-3.0-Released.aspx --- Rhino Mocks 3.0 Rele...\"],[\"http:\\u002f\\u002fwww.werd.com\\u002f30404\\u002fholus-interactive-tabletop-holographic-display\\u002f --- Holus Interactive Tabl...\"],[\"http:\\u002f\\u002fwww.csail.mit.edu\\u002f --- MIT Computer Science and Artificial Intelligence Laboratory | CSAIL --...\"],[\"http:\\u002f\\u002fwww.five9.com\\u002ffor_developers\\u002fcall-center-api.htm --- Call Center API Overview --- 2017-05-12...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2016\\u002f01\\u002f19\\u002fmake-water-drinkable\\u002f --- Make Water Drinkable | Why and How to P...\"],[\"http:\\u002f\\u002ffpgasite.blogspot.co.il\\u002f2017\\u002f04\\u002fpseudo-random-generator-tutorial.html --- :fgpa :cryptography...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwsargent\\u002fjce-aes-cipher-poc --- wsargent\\u002fjce-aes-cipher-poc · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002farchive.org\\u002f --- Internet Archive: Digital Library of Free Books, Movies, Music & Wayback Ma...\"],[\"http:\\u002f\\u002ftoronto.usconsulate.gov\\u002fvisa-faq.html --- Visa FAQs | Consulate General of the United States ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fDanMcInerney\\u002fnet-creds --- DanMcInerney\\u002fnet-creds · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.p-value.info\\u002f2012\\u002f11\\u002ffree-datascience-books.html?m=1 --- p-value.info: Free Datascience b...\"],[\"http:\\u002f\\u002fdoc.akka.io\\u002fdocs\\u002fakka\\u002f1.3.1\\u002fscala\\u002ftutorial-chat-server.html --- Tutorial: write a scalable, f...\"],[\"http:\\u002f\\u002fdeltaprinter.co.za\\u002ffilamentextruder\\u002findex.html --- Extruder for 3D printing ABS and other pla...\"],[\"http:\\u002f\\u002fwww.canadianmoneysaver.ca\\u002f~\\u002ftt_moneys.aspx --- Invalid file name for monitoring: 'D:\\\\WWWRoot\\\\...\"],[\"https:\\u002f\\u002finfo.brightagrotech.com\\u002fstop-talking-start-farming --- :smartgarden :video :Webinar Replay -...\"],[\"http:\\u002f\\u002fwww.dsource.org\\u002fprojects\\u002ftutorials\\u002fwiki --- tutorials - dsource.org --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fspeech\\u002fSpeechRecognizer.html --- SpeechRecognizer | A...\"],[\"http:\\u002f\\u002fapcmag.com\\u002fhow_to_dualboot_vista_with_linux_vista_installed_first.htm --- How to dual-boot Vi...\"],[\"http:\\u002f\\u002fbooks.google.ca\\u002fbooks?id=E6v0cVy8hVIC&redir_esc=y --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3054238&R=3054238 --- New directions of modern...\"],[\"https:\\u002f\\u002fblog.ikeran.org\\u002f?p=284 --- :performance :csharp Even more efficient UTF8 processing in C# --...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=9844127 --- Decentralized instant messenger for Android | Hacke...\"],[\"http:\\u002f\\u002flinuxnewbieguide.org\\u002f --- The Ultimate Linux Newbie Guide | The best site to learn about choo...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f195853\\u002fspinlock-versus-semaphore --- Spinlock Versus Semaphore! -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fNyr\\u002fopenvpn-install --- :vpn openvpn-install :OpenVPN road warrior installer for ...\"],[\"http:\\u002f\\u002fmirror7.meh.or.id\\u002fProgramming\\u002fViolent_Python_A_Cookbook_for_Hackers_Forensic_Ana.pdf --- mirr...\"],[\"http:\\u002f\\u002fwww.southgatearc.org\\u002fnews\\u002fmarch2013\\u002f2000_km_dx_using_the_raspberry_pi.htm#.UoMjmpHa1Gs --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002freact-component\\u002fmenu --- :reactjs React Menu component --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.smarty.net\\u002frightforme.php --- Smarty : Why Use Smarty --- 2017-05-12...\"],[\"http:\\u002f\\u002fgestaltist.ru\\u002fcontent\\u002fdoc\\u002fshow.php?id=13001 --- gestaltist.ru — сайт российско...\"],[\"http:\\u002f\\u002fdocs.mitmproxy.org\\u002fen\\u002fstable\\u002fcertinstall.html --- About Certificates — mitmproxy 0.15 docum...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002flime-forensics\\u002f --- lime-forensics - LiME - Linux Memory Extractor - Googl...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhfiref0x\\u002fDSEFix --- hfiref0x\\u002fDSEFix · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.diynetwork.com\\u002fhome-improvement\\u002fthe-hottest-home-improvement-technologies-and-trends\\u002fpict...\"],[\"http:\\u002f\\u002fwww.ams.org\\u002fmathscinet\\u002fmsc\\u002fmsc2010.html --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002foffice.microsoft.com\\u002fen-us\\u002fsharepoint-designer-help\\u002fCH010220127.aspx --- SharePoint Designer ...\"],[\"http:\\u002f\\u002fmashable.com\\u002f2012\\u002f06\\u002f23\\u002fapp-roundup-6-23 --- 7 Apps You Don't Want to Miss --- 2017-05-12...\"],[\"http:\\u002f\\u002fsolarcooking.org\\u002fsoda-bottle-pasteurizer.htm --- Solar Water Heater & Pasteurizer Made From E...\"],[\"http:\\u002f\\u002flab.clcworld.net\\u002f --- CLC Laboratory of Coolness --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsullo\\u002fnikto --- sullo\\u002fnikto --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.telerik.com\\u002fproducts\\u002faspnet-ajax\\u002fasyncupload.aspx --- ASP.NET AJAX AsyncUpload Control, ....\"],[\"http:\\u002f\\u002fwww.phone2net.com\\u002f --- Phone2Net - Incoming VOIP Service Provider --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.coderew.com\\u002fhardening_ssh_on_remote_ubuntu_debian_server\\u002f --- Hardening SSH on Remote Ubu...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286746\\u002f --- :fitness stretching tips --- 2017-05-12...\"],[\"http:\\u002f\\u002fnautil.us\\u002fblog\\u002fhow-classical-cryptography-will-survive-quantum-computers --- :Cryptography Su...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fsearch.jsp?N=37910+33396&Ntt=java+cookbook --- java cookbook : eB...\"],[\"http:\\u002f\\u002ffsharp3sample.codeplex.com\\u002f --- f# 3.0 sample pack --- 2017-05-12...\"],[\"https:\\u002f\\u002ftheconversation.com\\u002fparadoxes-of-probability-and-other-statistical-strangeness-74440 --- :st...\"],[\"http:\\u002f\\u002foffice.microsoft.com\\u002fen-us\\u002fsharepoint-designer-help\\u002fdemos-a-six-part-series-on-getting-the-mo...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsprache\\u002fSprache --- GitHub - sprache\\u002fSprache: Tiny C# Monadic Parser Framework --...\"],[\"http:\\u002f\\u002fwww.dsource.org\\u002f --- dsource.org: home --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fHealth_Level_7 --- Health Level 7 - Wikipedia, the free encyclopedia --...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fASPNETMVCSessionAtMix08TDDAndMvcMockHelpers.aspx --- Scott Hanselman's...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fWindows-driver-samples --- GitHub - Microsoft\\u002fWindows-driver-samples: T...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fen\\u002fdetails.aspx?FamilyID=8f5fce0d-67fd-4ae6-8437-ab1343a56fdb&utm...\"],[\"https:\\u002f\\u002fblogs.msdn.microsoft.com\\u002falphageek\\u002f2017\\u002f01\\u002f24\\u002fsignificant-garbage-collector-changes-in-net-4...\"],[\"https:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002fSuper_Audio_CD --- Super Audio CD — DSD codec --- 2017-05-12...\"],[\"http:\\u002f\\u002fdoc.norang.ca\\u002fiptables.html --- Linux Firewall Configuration and Setup - iptables --- 2017-05...\"],[\"http:\\u002f\\u002fwww.earlytorise.com\\u002fmetabolic-resistance\\u002f --- Truth About Metabolic Resistance Training Worko...\"],[\"http:\\u002f\\u002fwww.thegeekstuff.com\\u002f2011\\u002f06\\u002fiptables-rules-examples\\u002f --- 25 Most Frequently Used Linux IPTab...\"],[\"https:\\u002f\\u002fresearch.google.com\\u002faudioset\\u002findex.html --- :google-lab AudioSet -- large scale dataset ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmobking33\\u002fToneLoc --- mobking33\\u002fToneLoc · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.johnwittenauer.net\\u002fhow-to-learn-hadoop-for-free\\u002f --- :moocs How To Learn :Hadoop For :Fre...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcomponent\\u002frope --- component\\u002frope · Efficient data structure for large mutable s...\"],[\"http:\\u002f\\u002fblog.checkpoint.com\\u002f2017\\u002f03\\u002f15\\u002fcheck-point-discloses-vulnerability-whatsapp-telegram\\u002f --- :se...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fwpfsdk\\u002farchive\\u002f2006\\u002f07\\u002f06\\u002fbest-practices-for-globalization-and-localization-in...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fSpicIE --- SpicIE - Simple Plug-In Creator for Internet Explorer - Ho...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkyleterry\\u002fawesome-radio --- kyleterry\\u002fawesome-radio --- 2017-05-12...\"],[\"http:\\u002f\\u002flists.digium.com\\u002fmailman\\u002flistinfo\\u002f --- lists.digium.com Mailing Lists --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.t-engine.org\\u002f --- T-Engine Forum --- 2017-05-12...\"],[\"https:\\u002f\\u002f0patch.blogspot.com\\u002f2017\\u002f02\\u002f0patching-0-day-windows-gdi32dll-memory.html --- :blogs :CVE-201...\"],[\"http:\\u002f\\u002fwww.debuginfo.com\\u002farticles\\u002feasywindbg.html --- DebugInfo.com - WinDbg the easy way --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbhauman\\u002flein-figwheel\\u002ftree\\u002fmaster\\u002fexamples --- :clojurescript :lein :figwheel :ex...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@aserg.ufmg\\u002fwho-are-the-authors-of-the-linux-kernel-f4a0b286512e#.n5ak8a7se --- T...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286608\\u002f --- :anonimity :security :privacy :tor :exploit US child porno cas...\"],[\"http:\\u002f\\u002fwww.ouac.on.ca\\u002f105\\u002findex.html --- OUAC: Undergraduate Applications - 105 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mxtelecom.com\\u002fus\\u002fsmsg\\u002fpremium --- MX Telecom » SMS Gateway » Premium SMS » Overview --...\"],[\"https:\\u002f\\u002fcran.r-project.org\\u002fweb\\u002fviews\\u002fHighPerformanceComputing.html --- CRAN Task View: High-Performa...\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002fMachineLearning\\u002fcomments\\u002f2fxi6v\\u002fama_michael_i_jordan\\u002fckejn25?context=3 --- m...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fcs\\u002fSkypeBot.aspx --- CodeProject: Make your Skype Bot in .NET. Free so...\"],[\"http:\\u002f\\u002felementy.ru\\u002fnovosti_nauki\\u002f432926\\u002fDva_nezavisimykh_issledovaniya_podtverdili_globalnoe_oslable...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=eu.chainfire.liveboot --- [root] LiveBoot - Android Ap...\"],[\"http:\\u002f\\u002fshop.oreilly.com\\u002fcategory\\u002fget\\u002fdata-science-kit.do --- O'Reilly Data Science set --- 2017-05-1...\"],[\"http:\\u002f\\u002fsecure2.thestreet.com\\u002fcap\\u002flogin\\u002frm2_mbp_intro.jsp?flowid=32c6898dbb&url=http%3A%2F%2Fwww.thes...\"],[\"https:\\u002f\\u002fnews.ycombinator.com\\u002fitem?id=14023198 --- :job-search Ask HN -- Who is hiring --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wonderhowto.com\\u002fwonderment\\u002feasy-cell-phone-camera-macro-mod-5x-zoom-0114018\\u002f --- Easy! Ce...\"],[\"http:\\u002f\\u002fwww.elwave.com\\u002felwave\\u002ffeatures\\u002felwave90release.html --- ELWAVE 9.0 release notes --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fsentiment-analysis-on-donald-trump-using-r-and-tableau\\u002f --- Sentiment Anal...\"],[\"http:\\u002f\\u002falternative-energy-gardning.blogspot.com\\u002f2014\\u002f03\\u002f12-fastest-vegetables-to-grow-in-your.html -...\"],[\"http:\\u002f\\u002fwww.hanselman.com\\u002fblog\\u002fSmallestDotNetOnTheSizeOfTheNETFramework.aspx --- Scott Hanselman's Co...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=com.fluentizer.faf&feature=related_apps --- Fluent Eng...\"],[\"https:\\u002f\\u002fyogthos.net\\u002fposts\\u002f2016-07-15-JavaSSLWorkaround.html --- Working around the Java SSL trust st...\"],[\"https:\\u002f\\u002fgithub.com\\u002ffacebookresearch\\u002ffastText --- GitHub - facebookresearch\\u002ffastText: Library for fas...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmimoo\\u002fDiffie-Hellman_Backdoor --- GitHub - mimoo\\u002fDiffie-Hellman_Backdoor: How to ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fWindows-universal-samples\\u002ftree\\u002fmaster\\u002fSamples\\u002fBasicFaceDetection --- Wi...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:datomic\\u002f --- Pinboard bookmarks tagged datomic --- 2017-05-12...\"],[\"https:\\u002f\\u002fpeople.cs.kuleuven.be\\u002f~bart.demoen\\u002fPrologProgrammingContests\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fbits-please.blogspot.nl\\u002f2016\\u002f06\\u002fextracting-qualcomms-keymaster-keys.html --- Bits, Please!: E...\"],[\"http:\\u002f\\u002fwww.cnccookbook.com\\u002f --- CNCCookbook: Be a Better CNC'er --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmarick\\u002fMidje --- GitHub - marick\\u002fMidje: Midje provides a migration path from cloj...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:ramda\\u002f --- Pinboard bookmarks tagged ramda --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.flyingmachinestudios.com\\u002fprogramming\\u002fdatomic-for-five-year-olds\\u002f --- Datomic for Five Yea...\"],[\"https:\\u002f\\u002fgithub.com\\u002fplumatic\\u002fschema --- GitHub - plumatic\\u002fschema: Clojure(Script) library for declara...\"],[\"https:\\u002f\\u002fwww.raspberrypi.org\\u002fforums\\u002fviewtopic.php?t=51574&p=399044 --- Raspberry Pi &bull; View topic...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002ftagged\\u002fspring-data-mongodb --- Access denied | stackoverflow.com ...\"],[\"http:\\u002f\\u002fwww.clojureatlas.com\\u002f --- Clojure Atlas – An experimental visualization of the Clojure langua...\"],[\"https:\\u002f\\u002fdocs.asp.net\\u002fen\\u002flatest\\u002fsecurity\\u002fapp-secrets.html --- Safe Storage of Application Secrets &md...\"],[\"http:\\u002f\\u002fgregorowicz.blogspot.com\\u002f2010\\u002f12\\u002fusing-underscorejs-with-mongodb.html --- Andy's Blog: Using ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fstaltz\\u002fcycle-react --- GitHub - staltz\\u002fcycle-react: Rx Functional Interface to Fa...\"],[\"https:\\u002f\\u002fwww.openai.com\\u002fblog\\u002fopenai-gym-beta\\u002f --- OpenAI Gym Beta --- 2017-05-12...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002fintl\\u002fru\\u002freference\\u002fandroid\\u002fmedia\\u002fMediaPlayer.OnTimedTextListener.html --...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdeeplearning4j\\u002fdeeplearning4j --- GitHub - deeplearning4j\\u002fdeeplearning4j: Deep Le...\"],[\"https:\\u002f\\u002fgithub.com\\u002fericnormand\\u002fplaynice --- GitHub - ericnormand\\u002fplaynice: A Clojure library to help...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f191742\\u002f --- Хакаем Transcend WiFi SDHC карту памяти \\u002f Хабрахабр --- 2017-0...\"],[\"https:\\u002f\\u002fstuartsierra.com\\u002ftag\\u002fdos-and-donts --- do&#8217;s and don&#8217;ts &#8211; Digital Digressio...\"],[\"https:\\u002f\\u002fgithub.com\\u002fquozd\\u002fawesome-dotnet --- quozd\\u002fawesome-dotnet · GitHub ... GitHub - quozd\\u002fawesom...\"],[\"http:\\u002f\\u002fblog.shriphani.com\\u002f2016\\u002f11\\u002f16\\u002fa-clojure-dsl-for-web-crawling\\u002f --- A Clojure DSL for Web-Crawl...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fMersenne_Primes --- Mersenne prime - Wikipedia, the free encyclopedia ...\"],[\"http:\\u002f\\u002fbernardodamele.blogspot.ca\\u002f --- Bernardo Damele A. G. --- 2017-05-12...\"],[\"https:\\u002f\\u002fhighon.coffee\\u002fblog\\u002fpenetration-testing-tools-cheat-sheet\\u002f --- :security :tools :pentesting :...\"],[\"http:\\u002f\\u002fwww.edtp.com\\u002f --- Welcome to the EDTP Electronics Online Store! --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.theguardian.com\\u002ftechnology\\u002fvideo\\u002f2014\\u002faug\\u002f08\\u002forigami-robot-harvard-self-folding-battlefie...\"],[\"http:\\u002f\\u002fwww.exploit-db.com\\u002fexploits\\u002f5632\\u002f --- Debian OpenSSL Predictable PRNG Bruteforce SSH Exploit ...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285736\\u002f --- :blockchain :dapps :cryptocurrencies monetization --- 2017-05-...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fquestions\\u002f22392007\\u002fconnect-android-phone-to-a-usb-web-camera --- opencv - C...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fWCFVisualizer --- WCF Visualizers - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fsecuredorg.github.io\\u002fRE101\\u002f --- :security :reverse-engineering :Malware Unicorn --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fGenymobile\\u002fgnirehtet --- :computer-networks :tools Gnirehtet provides reverse tet...\"],[\"https:\\u002f\\u002fwww.edx.org\\u002fcourse\\u002fartificial-intelligence-uc-berkeleyx-cs188-1x --- Artificial Intelligence...\"],[\"http:\\u002f\\u002fsijinjoseph.com\\u002fprogrammer-competency-matrix\\u002f --- :computer-science Programmer Competency Mat...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms973852.aspx --- Writing Faster Managed Code: Know What Thi...\"],[\"http:\\u002f\\u002fwww.vogella.com\\u002ftutorials\\u002fAndroidBackgroundProcessing\\u002farticle.html --- Android Background Pro...\"],[\"https:\\u002f\\u002fbitcoin.org\\u002fen\\u002fchoose-your-wallet --- Choose your wallet - Bitcoin --- 2017-05-12...\"],[\"http:\\u002f\\u002fdiyfreetv.blogspot.com\\u002f2009\\u002f01\\u002fno-hulu-in-canada-no-problem.html --- DIY TV Antenna: No HULU ...\"],[\"http:\\u002f\\u002fblog.jussiroine.fi\\u002findex.php\\u002f2009\\u002f11\\u002f05\\u002frunning-moss-2007-with-net-4-0-beta-or-not\\u002f --- Runni...\"],[\"https:\\u002f\\u002fwww.nccgroup.com\\u002fmedia\\u002f18451\\u002fcreating_arbitrary_shellcode_in_unicode_expanded_strings.pdf --...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fthe-100-most-expensive-keywords-on-google\\u002f --- The 100 Most Expensiv...\"],[\"http:\\u002f\\u002fdistill.pub\\u002fabout\\u002f --- :magazines Distill journal :machine-learning --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fStephenCleary\\u002fAsyncEx --- :csharp AsyncEx helper library for :async await --- 201...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002ftom\\u002farchive\\u002f2008\\u002f03\\u002f11\\u002fhangs-and-how-to-solve-them-part-1-deadlocks.aspx --- A...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286336\\u002f --- :ai wikipedia bots argument --- 2017-05-12...\"],[\"http:\\u002f\\u002fcnx.org\\u002fcontent\\u002fm11714\\u002flatest\\u002f --- Pitch Detection Algorithms --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.scala-lang.org\\u002fdocumentation\\u002f --- Learn | The Scala Programming Language --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.mmds.org\\u002f --- Mining of Massive Datasets --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.netfxharmonics.com\\u002f2008\\u002f04\\u002fNetFXHarmonics-DevServer-Released --- NetFXHarmonics DevServer...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmaximcus\\u002fSimpleWPFReporting?utm_source=csharpdigest&utm_medium=email&utm_campaign...\"],[\"http:\\u002f\\u002fwiki.dbpedia.org\\u002f --- DBpedia --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.freephoneline.ca\\u002f --- Free Phone Line - Phone Service --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.edu.gov.on.ca\\u002feng\\u002ftcu\\u002femployers\\u002fjobBank.html --- Ontario Job Bank --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.vogella.com\\u002ftutorials\\u002findex.html --- vogella Tutorials --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhteso\\u002fiaito --- :tools :security GUI for radare2 :reverse-engineering framework -...\"],[\"http:\\u002f\\u002fnerdvittles.com\\u002f?p=621 --- Nerd Vittles » Introducing ISN: Free SIP Dialing From Any Asteris...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fresults?search_query=alethzero --- alethzero on YouTube --- 2017-05-12...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@_kamerontanseli\\u002f9-ways-to-level-up-your-javascript-code-9da0cbcd43c5 --- :design...\"],[\"http:\\u002f\\u002fwww.greenteapress.com\\u002fthinkpython\\u002fhtml\\u002findex.html --- Think Python --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.r-bloggers.com\\u002fweb-scraping-in-r\\u002f --- Web-Scraping in R | (R news &amp; tutorials) --- 20...\"],[\"http:\\u002f\\u002fwww.ssw.com.au\\u002fssw\\u002fStandards\\u002fRules\\u002fRulesToBetterUnitTests.aspx --- SSW Rules to Better Unit T...\"],[\"http:\\u002f\\u002fsurvivallife.com\\u002f2015\\u002f12\\u002f17\\u002ftips-for-surviving-cold-weather\\u002f --- Tips for Surviving in Cold W...\"],[\"http:\\u002f\\u002fwww.tuxfiles.org\\u002flinuxhelp\\u002flinuxdir.html --- Linux's directory structure --- 2017-05-12...\"],[\"http:\\u002f\\u002fmoikrolik.ru\\u002frazvedenie\\u002frazvedenie-krolikov-po-metodu-mikhajjl.html --- Разведение ...\"],[\"https:\\u002f\\u002fsiddharthsharma1.wordpress.com\\u002f2012\\u002f02\\u002f02\\u002fproposal-an-integrated-zero-knowledge-authenticati...\"],[\"http:\\u002f\\u002fr.ebay.com\\u002fJEsAKS --- Solar Cooker 3 Meter parabolic concentrator --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fDLL\\u002fhooks.aspx --- CodeProject: Hooks and DLLs. Free source code and p...\"],[\"https:\\u002f\\u002fstedolan.github.io\\u002fjq\\u002f --- :tools jq - lightweight command line json processor --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgoogle\\u002fdeepdream --- :ipython :neural-networks google research -- deepdream --- 2...\"],[\"http:\\u002f\\u002figcc.ucsd.edu\\u002fassets\\u002f001\\u002f503677.pdf --- Investigating China’s Online Underground Economy --...\"],[\"http:\\u002f\\u002fwww.hackingtutorials.org\\u002fgeneral-tutorials\\u002finstalling-vpn-on-kali-linux-2016-rolling\\u002f --- Ins...\"],[\"http:\\u002f\\u002fwww.kickstarter.com\\u002fprojects\\u002f863853574\\u002ftouch-board-interactivity-everywhere --- Touch Board: ...\"],[\"https:\\u002f\\u002fwww.waterlootechjobs.com\\u002f --- Waterloo Tech Jobs – by Communitech --- 2017-05-12...\"],[\"http:\\u002f\\u002flambda-the-ultimate.org\\u002fnode\\u002f2266#comment-33625 --- Currying != Generalized Partial Applicati...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftakeoutweight\\u002fclojure-scheme --- GitHub - takeoutweight\\u002fclojure-scheme: Clojure t...\"],[\"https:\\u002f\\u002fblogs.windows.com\\u002fbuildingapps\\u002f2016\\u002f09\\u002f08\\u002fwindows-iot-core-extension-for-visual-studio-code\\u002f...\"],[\"http:\\u002f\\u002fecrm.logrhythm.com\\u002fPPCIWhitepaperDownload.html?_kk=pci%20compliance&_kt=c11db525-e1f0-42b3-a5...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002fvcsharp\\u002faa336760.aspx --- Restriction Operators --- 2017-05-12...\"],[\"http:\\u002f\\u002finfographicjournal.com\\u002ftrophy-trucks\\u002f --- While driving a death-defying trophy truck in deser...\"],[\"http:\\u002f\\u002fblog.shriphani.com\\u002f2015\\u002f03\\u002f12\\u002fleveraging-a-scalable-web-crawler-in-clojure\\u002f --- Leveraging a ...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fC++2Java.html#concurrency --- Experiences Converting a C++ Co...\"],[\"http:\\u002f\\u002fwww.zdrav.kz\\u002fnode\\u002f9255 --- БЫТЬ ФИЗИЧЕСКИ АКТИВНЫМ И ПОДАРИТЬ Ð...\"],[\"http:\\u002f\\u002fblogs.techrepublic.com.com\\u002fprogramming-and-development\\u002f?p=1713&tag=nl.e055 --- Hands-on progr...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmaiavictor\\u002fforall --- forall.js Expressive static types and invariant checks for ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fblockapps --- BlockApps · GitHub :: builds industry-specific Blockchain apps ---...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fvisualfsharpdocs --- GitHub - Microsoft\\u002fvisualfsharpdocs --- 2017-05-12...\"],[\"https:\\u002f\\u002flambdaisland.com\\u002fblog\\u002f11-02-2017-re-frame-form-1-subscriptions --- :reagent :clojurescript r...\"],[\"https:\\u002f\\u002ffirstlook.org\\u002ftheintercept\\u002f2015\\u002f02\\u002f19\\u002fgreat-sim-heist\\u002f --- The Great SIM Heist: How Spies St...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fsomasegar\\u002farchive\\u002f2010\\u002f08\\u002f03\\u002fintroducing-visual-studio-lightswitch.aspx --- ...\"],[\"http:\\u002f\\u002farduino-board.com\\u002fboards\\u002fhapkit --- Stanford University Hapkit :: Arduino Product Review - CL...\"],[\"https:\\u002f\\u002fgithub.com\\u002fforclan\\u002f500lines --- forclan\\u002f500lines · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.tecmint.com\\u002finstall-rootkit-hunter-scan-for-rootkits-backdoors-in-linux\\u002f --- How to Scan ...\"],[\"http:\\u002f\\u002fblessmyweeds.com\\u002f10-ways-to-use-baking-soda-in-the-garden-2\\u002f --- 10 Ways to Use Baking Soda i...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fLogarithm#Particular_bases --- Logarithm - Wikipedia, the free encyclop...\"],[\"https:\\u002f\\u002fgithub.com\\u002fisislab\\u002fHack-Night --- isislab\\u002fHack-Night · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAshon\\u002fdecision_tree --- Ashon\\u002fdecision_tree · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.bloomberg.com\\u002fnews\\u002farticles\\u002f2017-04-10\\u002fmicrosoft-s-minecraft-set-to-launch-its-own-curre...\"],[\"https:\\u002f\\u002fsupport.google.com\\u002fanalytics\\u002fanswer\\u002f1745147 --- Benefits of Experiments - Analytics Help ---...\"],[\"search-engine --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.reddit.com\\u002fr\\u002freactjs\\u002fcomments\\u002f5t8loz\\u002fwhat_are_your_top_reactreact_native_blogs_that\\u002f ---...\"],[\"https:\\u002f\\u002fmitpress.mit.edu\\u002fbooks\\u002flittle-prover --- The Little Prover | The MIT Press --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fOpenAssets --- Open Assets protocol --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdelight-im\\u002fNews60 --- delight-im\\u002fNews60 · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fhackernoon.com\\u002fbuild-a-powerful-laptop-for-development-on-the-cheap-a2e782659918#.qxhygb30a ...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fTopic_Maps --- Topic Maps - Wikipedia, the free encyclopedia --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002flontivero\\u002fOpen.NAT --- lontivero\\u002fOpen.NAT · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbokuweb\\u002freact-elastic-modal --- :reactjs elastic modal component --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aliexpress.com\\u002fsnapshot\\u002f6156842113.html?orderId=63011881923127 --- 3D Printer kit parts f...\"],[\"http:\\u002f\\u002fwww.mpg123.de\\u002f --- mpg123, Fast MP3 Player for Linux and UNIX systems --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.reversinglabs.com\\u002fopen-source\\u002ftitanengine.html --- TitanEngine | Open Source | ReversingL...\"],[\"http:\\u002f\\u002fdocs.fckeditor.net\\u002fFCKeditor_2.x\\u002fUsers_Guide\\u002fOverview --- Overview - FCKeditor Docs --- 2017-...\"],[\"http:\\u002f\\u002fdiyready.com\\u002f36-weekend-projects-for-preparedness-and-survival\\u002f --- 36 Weekend Preparedness P...\"],[\"http:\\u002f\\u002fwww.siliconweek.es\\u002fdata-storage\\u002flas-similitudes-entre-el-big-data-y-la-mente-humana-infografi...\"],[\"http:\\u002f\\u002fwww.digitalhome.ca\\u002fforum\\u002fforumdisplay.php?f=81 --- Over-The-Air (OTA) Digital Television - Di...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmbebenita\\u002fBroadway --- :codecs :image-processing :video-processing :javaScript H....\"],[\"https:\\u002f\\u002fblog.filippo.io\\u002fgiving-up-on-long-term-pgp\\u002f --- I&#x27;m giving up on PGP --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.msdn.microsoft.com\\u002fCustomFxCop --- CustomFxCop - Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdouglascraigschmidt\\u002fPOSA-14\\u002ftree\\u002fmaster\\u002fex\\u002fAcronymApplication --- POSA-14\\u002fex\\u002fAcro...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fdd203052.aspx --- A Guide to Designing and Building RESTful ...\"],[\"https:\\u002f\\u002frepl.it\\u002fsite\\u002fblog\\u002fhaskell --- :Haskell :tools online repl --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.autotua.net\\u002felectric-automobiles\\u002fhomemade-green-car-electric-car-conversion-kit\\u002f --- .....\"],[\"http:\\u002f\\u002fwww.reddit.com\\u002fr\\u002f3Dprinting\\u002fwiki\\u002fprinterchart --- 3Dprinting comparison --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.instagram.com\\u002fp\\u002fBAWOMPcFL2o\\u002f --- I have been literally thinking a bit \\\"outside the box\\\" ...\"],[\"http:\\u002f\\u002fnd4j.org --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nghobbies.com\\u002fcart\\u002findex.php?main_page=product_info&cPath=1_8_112&products_id=393 --- rc ...\"],[\"https:\\u002f\\u002fchrome.google.com\\u002fwebstore\\u002fdetail\\u002fchrome-regex-search\\u002fbpelaihoicobbkgmhcbikncnpacdbknn --- :...\"],[\"http:\\u002f\\u002fjakemccrary.com\\u002fblog\\u002f2016\\u002f06\\u002f14\\u002ftips-for-working-from-home\\u002f --- Access denied | jakemccrary.c...\"],[\"http:\\u002f\\u002fmsdn2.microsoft.com\\u002fen-us\\u002flibrary\\u002fms751480(VS.85).aspx --- Supporting Tokens --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dorji.com\\u002fpro\\u002fModules\\u002fWireless_sensor_module.html --- Wireless sensor module DRF5150S TDA...\"],[\"http:\\u002f\\u002fbitemyapp.com\\u002fposts\\u002f2014-12-31-functional-education.html --- :haskell :functional-programming...\"],[\"http:\\u002f\\u002ftirania.org\\u002fblog\\u002farchive\\u002f2009\\u002fJan-05-1.html --- Mono Goes to Android - Miguel de Icaza --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpatrickdavey\\u002fcaster --- :youtube :elixir :tools :video :screencasts Videocasts br...\"],[\"https:\\u002f\\u002fdeepmind.com\\u002fblog\\u002fwavenet-generative-model-raw-audio\\u002f --- This post presents WaveNet, a deep...\"],[\"http:\\u002f\\u002fudinic.wordpress.com\\u002f2013\\u002f07\\u002f24\\u002fwrite-your-own-android-sync-adapter\\u002f --- Write your own Andro...\"],[\"https:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fc-plus-plus-pros --- :functional-programming :cpp C++: The Good ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fthegeez\\u002fthecljvector --- GitHub - thegeez\\u002fthecljvector --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002fdownloads\\u002fr\\u002fappscan\\u002f --- IBM appscan --- 2017-05-12...\"],[\"http:\\u002f\\u002falphaflash.com\\u002fproduct-info?gclid=CNvKu7ubsbICFdFDMgod818Ang --- AlphaFlash | The fastest mac...\"],[\"https:\\u002f\\u002frdot.org\\u002fforum\\u002f --- RDot - security forum --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.obout.com\\u002f --- free web controls --- 2017-05-12...\"],[\"http:\\u002f\\u002fsccmcat.codeplex.com\\u002f --- SCCM Client Actions Tool --- 2017-05-12...\"],[\"http:\\u002f\\u002fmacroscope.sourceforge.net\\u002f --- MacroScope --- 2017-05-12...\"],[\"http:\\u002f\\u002fprotege.stanford.edu\\u002f --- The Protégé Ontology Editor and Knowledge Acquisition System ... ...\"],[\"https:\\u002f\\u002fwww.kernel.org\\u002fdoc\\u002fDocumentation\\u002ffilesystems\\u002fmandatory-locking.txt --- :linux mandatory file...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhiddenillusion\\u002fAnalyzePDF --- hiddenillusion\\u002fAnalyzePDF · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fdadget\\u002fblog\\u002f285336\\u002f --- :acoustic-engineering :tools winter fishing wit...\"],[\"http:\\u002f\\u002fopenstaxcollege.org\\u002f --- OpenStax College --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.sitepoint.com\\u002farticle\\u002fstyle-web-forms-css\\u002f --- Style Web Forms Using CSS [CSS Tutorials] ...\"],[\"http:\\u002f\\u002fwww.pinvoke.net\\u002fdefault.aspx\\u002fmisc.Helpful%20Tools --- pinvoke.net: Helpful Tools (misc) --- 2...\"],[\"http:\\u002f\\u002fwww.codeguru.com\\u002fcsharp\\u002f.net\\u002fnet_asp\\u002fmiscellaneous\\u002farticle.php\\u002fc15953 --- CodeGuru: Part 1: I...\"],[\"https:\\u002f\\u002fwww.usenix.org\\u002fevent\\u002fwoot10\\u002ftech\\u002ffull_papers\\u002fAviv.pdf --- smudge attack on smartphones --- 2...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fcsd --- Configuration Section Designer - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.factset.com\\u002f --- FactSet Research Systems --- 2017-05-12...\"],[\"http:\\u002f\\u002fteacherswithoutborders.org\\u002fprograms\\u002ftwb-labs --- TWB Labs | Teachers Without Borders --- 2017...\"],[\"http:\\u002f\\u002fdapps.ethercasts.com\\u002f --- DApps :: ethercasts --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002freagent-project\\u002freagent-cookbook\\u002f --- GitHub - reagent-project\\u002freagent-cookbook: ...\"],[\"http:\\u002f\\u002fcascalog.org --- Cascalog | Data processing on Hadoop without the hassle --- 2017-05-12...\"],[\"http:\\u002f\\u002ffable.io\\u002f --- :javascript :Fsharp :BABEL :compiler that emits JavaScript --- 2017-05-12...\"],[\"http:\\u002f\\u002fi-analyzer.ru\\u002fvocabular.html --- content analysis --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fdadget\\u002fblog\\u002f286590\\u002f --- :embedded :camera thermal vision Seek Thermal a...\"],[\"http:\\u002f\\u002fwww.mathworks.com\\u002fhardware-support\\u002fraspberry-pi-simulink.html --- Raspberry Pi Support from S...\"],[\"http:\\u002f\\u002foreilly.com\\u002fcatalog\\u002f0790145316974?green=21965957-6ec3-4c26-bb01-05a9b4fab7e8&cmp=af-mybuy-079...\"],[\"http:\\u002f\\u002ftimothypratley.blogspot.com\\u002f --- reagent deep dive --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ssw.com.au\\u002fSSW\\u002fStandards\\u002fRules\\u002fRulesToBetterWebsitesTuningAndMaintenance.aspx --- SSW Rul...\"],[\"http:\\u002f\\u002fdeveloper.android.com\\u002freference\\u002fandroid\\u002fos\\u002fLooper.html --- Looper | Android Developers --- 20...\"],[\"https:\\u002f\\u002fleanpub.com\\u002fthe-tao-of-tmux\\u002fread --- :tools :linux :free :books Read The Tao of tmux --- 201...\"],[\"http:\\u002f\\u002flifehacker.com\\u002f178132\\u002fhack-attack-turn-your-60-router-into-a-600-router --- Hack Attack: Turn...\"],[\"http:\\u002f\\u002fwww.woodmann.com\\u002fcollaborative\\u002ftools\\u002findex.php\\u002fCategory:.NET_Packers --- .net packers by wood...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fStandard_Deviation --- Standard deviation - Wikipedia, the free encyclo...\"],[\"https:\\u002f\\u002fgithub.com\\u002freactjs\\u002freact-router-tutorial --- :tutorial :reactjs react-router-tutorial --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgaearon\\u002freact-makes-you-sad --- :reactjs makes-you-sad -- flowchart to make you ...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbig-data-and-business-intelligence\\u002fbig-data-analytics-r-and-hadoop --- Big ...\"],[\"https:\\u002f\\u002fgithub.com\\u002faquynh\\u002fcapstone --- aquynh\\u002fcapstone · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002freplikativ\\u002fdurable-persistence --- GitHub - replikativ\\u002fdurable-persistence: Explo...\"],[\"http:\\u002f\\u002fblog.dynatrace.com\\u002f2009\\u002f04\\u002f08\\u002fperformance-analysis-identify-gc-bottlenecks-in-distributed-het...\"],[\"http:\\u002f\\u002fwww.learndatalogtoday.org\\u002f --- Learn Datalog Today! ... :logic-programming :datomic Learn Dat...\"],[\"http:\\u002f\\u002fipython.org\\u002fnotebook.html --- The IPython Notebook — web-based interactive computational en...\"],[\"http:\\u002f\\u002fsymsys.stanford.edu\\u002f --- Symbolic Systems » Symbolic Systems (new site beta) --- 2017-05-12...\"],[\"http:\\u002f\\u002fsvchostviewer.codeplex.com\\u002f --- svchost viewer --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002flowleveldesign\\u002flldext --- :cpp :WinDbg extension --- 2017-05-12...\"],[\"https:\\u002f\\u002fhub.docker.com\\u002f --- docker repository --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.wonderhowto.com\\u002fhow-to-secretly-record-people-with-your-own-spy-sunglasses-102594\\u002f --- Ho...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fSLPS\\u002fdownloads.aspx --- Software Licensing and Protection Services - Downlo...\"],[\"http:\\u002f\\u002fobjectuser.wordpress.com\\u002f2009\\u002f05\\u002f19\\u002fspring-jpa-in-google-app-engine\\u002f --- Spring + JPA in Goog...\"],[\"http:\\u002f\\u002fwww.freedownloadsplace.com\\u002fProducts\\u002f26937\\u002fWeb-Source-Grabber --- Web Source Grabber 2.8.5 Fr...\"],[\"https:\\u002f\\u002fwww.xudongz.com\\u002fblog\\u002f2017\\u002fidn-phishing\\u002f --- :security :Phishing with Unicode Domains --- 201...\"],[\"http:\\u002f\\u002fwww.huguesjohnson.com\\u002fsvchost.html#Stopping%20the%20System%20Event%20Notification%20Service -...\"],[\"http:\\u002f\\u002fwww.3scale.net\\u002f2013\\u002f02\\u002fquickstart-tutorial-on-how-to-deploy-an-api-on-amazon-ec2-for-amazon-w...\"],[\"http:\\u002f\\u002fwww.voip-catalog.com\\u002fvoip_countries_kazakhstan_1.html --- VoIP Providers in Kazakhstan - 1 : ...\"],[\"https:\\u002f\\u002fwww.homeaway.asia\\u002fvacation-rentals\\u002fcanada\\u002fontario\\u002ftoronto?st_price=30&end_price=320&oq=Toron...\"],[\"https:\\u002f\\u002fcb.codes\\u002fhow-to-read-and-debug-clojure-stack-traces\\u002f --- :debugging :clojure How To Understa...\"],[\"https:\\u002f\\u002ftechblog.roomkey.com\\u002fposts\\u002fmemory-leak.html --- Room Key Tech Blog: Clojure memory leak in p...\"],[\"http:\\u002f\\u002fprocessing.github.io\\u002fprocessing-javadocs\\u002fcore\\u002f --- processing javadoc --- 2017-05-12...\"],[\"http:\\u002f\\u002fdatafu.incubator.apache.org\\u002f --- Apache DataFu --- 2017-05-12...\"],[\"http:\\u002f\\u002fsocket.io\\u002f --- Socket.IO: the cross-browser WebSocket for realtime apps. --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.thingiverse.com\\u002fthing:148764 --- Adjustable Foot for Tables and Furnitures by ffleurey - ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fxobs\\u002fnovena-linux --- :fpga :linux kernel with Novena patches --- 2017-05-12...\"],[\"http:\\u002f\\u002fwebsecurityauditor.codeplex.com\\u002f --- Casaba Passive Web Security Auditor - Home --- 2017-05-1...\"],[\"https:\\u002f\\u002fnoggin.intel.com\\u002fbooks\\u002fintel-press-books\\u002fall --- Intel Press Books --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.udacity.com\\u002fcourses --- Course Catalog for Free Online Classes - Udacity --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.aopensource.com\\u002findex.php?more=586 --- AOpenSource.com Android Open Source Details: PDroi...\"],[\"http:\\u002f\\u002fwww.cs.cmu.edu\\u002f~cprose\\u002fTagHelper.html --- http:\\u002f\\u002fwww.cs.cmu.edu\\u002f~cprose\\u002fTagHelper.html --- 20...\"],[\"http:\\u002f\\u002fgoparallel.sourceforge.net\\u002feasily-set-windows-development-environment-mkl\\u002f --- Easily Set Up ...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002fdigital-video-concepts-methods-and-metrics --- Digital Video Conc...\"],[\"https:\\u002f\\u002fconcept.research.microsoft.com\\u002fHome\\u002fIntroduction --- Microsoft Concept Graph and Concept Tag...\"],[\"https:\\u002f\\u002fyoutplayer.github.io\\u002f --- [No Title] --- 2017-05-12...\"],[\"https:\\u002f\\u002fcwiki.apache.org\\u002fconfluence\\u002fdisplay\\u002fhive\\u002fpoweredBy --- PoweredBy - Apache Hive - Apache Soft...\"],[\"http:\\u002f\\u002fprojects.webappsec.org\\u002fw\\u002fpage\\u002f13246927\\u002fFrontPage --- The Web Application Security Consortium ...\"],[\"https:\\u002f\\u002fwww.microsoft.com\\u002fen-us\\u002fresearch\\u002fproject\\u002fdafny-a-language-and-program-verifier-for-functiona...\"],[\"http:\\u002f\\u002frusam.livejournal.com\\u002f3192644.html#comments --- country4snowbirds --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?displaylang=en&FamilyID=32ae8cbe-a657-481d-a1d6-4614...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcure53\\u002fFlashbang --- cure53\\u002fFlashbang · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fOpenTechFund\\u002fsecure-email --- OpenTechFund\\u002fsecure-email --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=lil4YCCXRYc --- :reactive-extensions :javascript :Async Programming ...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002fabtesting --- A\\u002fB Testing - GeekBooks - Free Tech PDF eBook Librar...\"],[\"http:\\u002f\\u002fwww.homes-and-real-estate.com\\u002fglossary\\u002fc.htm --- Real Estate Glossary - C 07\\u002f07\\u002f11 --- 2017-0...\"],[\"https:\\u002f\\u002fwww.oreilly.com\\u002flearning\\u002fhello-tensorflow --- Hello, TensorFlow! - O&#39;Reilly Media --- 20...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@tiensonqin\\u002fwhy-exponent-on-react-native-especially-for-clojurescript-9bb1417c0c6...\"],[\"http:\\u002f\\u002fhabrahabr.ru\\u002fpost\\u002f121159\\u002f --- Установка Asp.Net на Linux (nginx+mono+xsp) \\u002f Хаб...\"],[\"http:\\u002f\\u002fundocumentedmatlab.com\\u002fib-matlab\\u002f --- IB-Matlab | Undocumented Matlab --- 2017-05-12...\"],[\"http:\\u002f\\u002flineslines.exblog.jp\\u002f13949722 --- Pompon Cakes@鎌倉ラインズ : lineslines --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.certainkey.com\\u002fuvlan\\u002f --- uvlan - Endorsed by Tom --- 2017-05-12...\"],[\"http:\\u002f\\u002fhome.academ.org\\u002f --- Academ.org - компьютерная сеть НовосибирскоÐ...\"],[\"http:\\u002f\\u002fwww.mpsoftware.dk\\u002fdownloads.php --- MPSOFTWARE - Free Download of phpDesigner, PHP IDE, PHP E...\"],[\"https:\\u002f\\u002fgithub.com\\u002fSemigradsky\\u002ftrending-repositories --- Semigradsky\\u002ftrending-repositories · GitHub...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3319931&R=3319931 --- The sales acceleration f...\"],[\"http:\\u002f\\u002fdata.cnbc.com\\u002fquotes\\u002fVIX --- VIX: CBOE MKT VOLATILITY IDX --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.quora.com\\u002fWhat-are-some-open-math-questions-problems-that-look-simple-but-have-not-yet-be...\"],[\"http:\\u002f\\u002fwww.openpgp.org\\u002fresources\\u002fdownloads.shtml --- OpenPGP.org - Downloads --- 2017-05-12...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fgrantslatton\\u002f7694811 --- A program that uses Markov chains to generate proba...\"],[\"http:\\u002f\\u002fblog.kobigurk.com\\u002fphising-preview\\u002f --- :Phishing in the age of preview --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.djangoproject.com\\u002fstart\\u002f --- :tutorial Getting started with :Django --- 2017-05-12...\"],[\"https:\\u002f\\u002fpqcrypto2014.uwaterloo.ca\\u002f --- PQCrypto 2014 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.dofactory.com\\u002fPatterns\\u002fPatterns.aspx --- Design Patterns in C# and VB.NET - Gang of Four ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhak5darren\\u002fUSB-Rubber-Ducky --- github.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ethereal.com\\u002f --- Ethereal: A Network Protocol Analyzer --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fArticles\\u002f70371\\u002fApriori-Algorithm --- Apriori Algorithm - CodeProject® --...\"],[\"http:\\u002f\\u002fupgradingdave.com\\u002fblog\\u002fposts\\u002f2017-02-07-cljs-xml.html --- :clojurescript :amazon :aws Upgradi...\"],[\"http:\\u002f\\u002fwww.higherbracket.ca\\u002farticle_tips_on_staying_unemployed_bp.php --- Article, Tips On How To St...\"],[\"https:\\u002f\\u002fbugs.chromium.org\\u002fp\\u002fproject-zero\\u002fissues\\u002fdetail?id=1252&desc=5 --- MsMpEng Remotely Exploitab...\"],[\"http:\\u002f\\u002fwww.androidtrainee.com\\u002fdriving-distance-and-travel-time-duration-between-two-locations-in-goo...\"],[\"https:\\u002f\\u002fwww.eyeqadvantage.com\\u002findex.cfm?&CFID=440927&CFTOKEN=69354456 --- Infinite Mind's eyeQ Brain...\"],[\"http:\\u002f\\u002fwww.infoq.com\\u002farticles\\u002fPhalanger --- how to reuse php in asp.net mvc --- 2017-05-12...\"],[\"https:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002f%D0%9A%D0%B2%D0%B0%D0%B4%D1%80%D0%B0%D1%82%D1%83%D1%80%D0%BD%D1%8B%D0%...\"],[\"http:\\u002f\\u002fwww.bloomberg.com\\u002fnews\\u002f2011-11-07\\u002fjefferies-bears-in-retreat-after-firm-boosts-european-discl...\"],[\"https:\\u002f\\u002ftahoe-lafs.readthedocs.io\\u002fen\\u002flatest\\u002fabout.html --- Tahoe-LAFS decentralized storage system -...\"],[\"http:\\u002f\\u002fnhibernate.sourceforge.net\\u002fNHibernateEg\\u002fNHibernateEg.Tutorial1A.html --- Chapter 1. NHibernat...\"],[\"http:\\u002f\\u002fadtmag.com\\u002farticles\\u002f2014\\u002f03\\u002f20\\u002fgoogle-developments.aspx --- Google Announces .NET APIs, Andro...\"],[\"http:\\u002f\\u002fweblogs.asp.net\\u002fkevinbrammer\\u002farchive\\u002f2008\\u002f04\\u002f13\\u002ftest-driven-development-quickstart-series.asp...\"],[\"http:\\u002f\\u002fwww.dyn-web.com\\u002f --- DHTML Scripts from Dynamic Web Coding --- 2017-05-12...\"],[\"https:\\u002f\\u002fmran.microsoft.com\\u002f --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002fmakeWay.html --- makeWay --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fweavejester\\u002fhiccup\\u002f --- GitHub - weavejester\\u002fhiccup: Fast library for rendering H...\"],[\"http:\\u002f\\u002fwww.canadianalodging.com\\u002fprices.php --- Toronto Hostel Prices | Toronto Hostel | Downtown Tor...\"],[\"http:\\u002f\\u002fgoogle-opensource.blogspot.com\\u002f2010\\u002f06\\u002fintroducing-google-command-line-tool.html --- Introduc...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgigasquid\\u002fclj-drone --- GitHub - gigasquid\\u002fclj-drone: Clojure Copter - Control fo...\"],[\"http:\\u002f\\u002fdocs.scala-lang.org\\u002foverviews\\u002fcore\\u002fvalue-classes#extension_methods --- Extension Methods wit...\"],[\"http:\\u002f\\u002fgist.github.com\\u002f289467 --- gist: 289467 - GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3278725&R=3278725 --- Understanding bitcoin : ...\"],[\"http:\\u002f\\u002fwww.androiddesignpatterns.com\\u002f --- Android Design Patterns --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fCondorcet%27s_jury_theorem --- Condorcet's jury theorem - Wikipedia, th...\"],[\"http:\\u002f\\u002fwww.webdesignerwall.com\\u002fgeneral\\u002fjavascript-in-modern-web-design\\u002f --- Javascript in Modern Web...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002frecipes\\u002fid3.aspx --- ID3 Decision Tree Algorithm in C# - CodeProject -...\"],[\"http:\\u002f\\u002fsocialcmsbuzz.com\\u002f40-css-web-form-style-tutorials-for-web-developers-14082008\\u002f --- 40 CSS Web...\"],[\"http:\\u002f\\u002fwww.techradar.com\\u002fus\\u002fnews\\u002fsoftware\\u002fthe-best-free-monitoring-software-2015-keep-your-children-...\"],[\"http:\\u002f\\u002fwww.voip-info.org\\u002fwiki\\u002fview\\u002fAsterisk+firewall+rules --- configure firewall for asterisk - pen...\"],[\"http:\\u002f\\u002fianrumford.github.io\\u002fblog\\u002f2012\\u002f09\\u002f29\\u002fusing-cascalog-for-extract-transform-and-load\\u002f --- Using...\"],[\"http:\\u002f\\u002fcrmperftoolkit.codeplex.com\\u002f --- Microsoft Dynamics CRM 4.0 Performance Toolkit --- 2017-05-1...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2997763&R=2997763 --- lte security --- 2017-05...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsensepost\\u002fSnoopy --- sensepost\\u002fSnoopy · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkamranahmedse\\u002fdeveloper-roadmap#-introduction --- :resume :webdev developer-roadm...\"],[\"http:\\u002f\\u002fwww.oracle.com\\u002ftechnetwork\\u002fjava\\u002fseccodeguide-139067.html#2 --- Secure Coding Guidelines for J...\"],[\"http:\\u002f\\u002farxiv.org\\u002fabs\\u002fphysics\\u002f0512106 --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3146179&R=3146179 --- Concurrency in C# cookbo...\"],[\"https:\\u002f\\u002fsupport.google.com\\u002fgoogleplay\\u002fandroid-developer\\u002fanswer\\u002f3131213?hl=en --- Beta-testing and st...\"],[\"http:\\u002f\\u002fmashka-inc.narod.ru\\u002faldo12.html --- Альдо Нове. Призрак с голубой пÐ...\"],[\"http:\\u002f\\u002fraganwald.com\\u002f2014\\u002f12\\u002f20\\u002fwhy-why-functional-programming-matters-matters.html --- Why Why Func...\"],[\"http:\\u002f\\u002fdiydrones.com\\u002fprofiles\\u002fblogs\\u002fhow-much-power-is-needed-to-hover --- How much power is needed t...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002fjmeier\\u002farchive\\u002f2010\\u002f12\\u002f07\\u002fhow-to-read-faster.aspx?utm_source=feedburner&utm_...\"],[\"http:\\u002f\\u002fedge.technet.com\\u002fMedia\\u002fminifuzz-overview-and-demo\\u002f --- MiniFuzz Overview and Demo | Media | T...\"],[\"http:\\u002f\\u002fwww.asp.net\\u002flearn\\u002fmvc\\u002f#MVC_SampleApp --- ASP.NET MVC Tutorials : The Official Microsoft ASP.N...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fjsonfx\\u002f --- jsonfx - Project Hosting on Google Code --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002fjibinpan\\u002fRealTimeApp11182005033822AM\\u002fRealTimeApp.aspx --- Re...\"],[\"http:\\u002f\\u002fchoosebeststuff.blogspot.com\\u002f2015\\u002f05\\u002ffavorite-garden-stuff.html --- Medicinal Plants You Can ...\"],[\"http:\\u002f\\u002fwww.slideshare.net\\u002fdatabricks\\u002fspark-sqlsse2015public --- Beyond SQL: Speeding up Spark with D...\"],[\"https:\\u002f\\u002fnpe.codeplex.com\\u002fdownloads\\u002fget\\u002fclickOnce\\u002fNuGetPackageExplorer.application --- NuGet Package ...\"],[\"http:\\u002f\\u002fwww.wix.com\\u002f --- Free Website Builder | Create a Free Website | WIX --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.interface.ru\\u002fhome.asp?artId=17366 --- Лучшие приемы программировÐ...\"],[\"http:\\u002f\\u002fwww.thoughtcrime.org\\u002fabout.html --- None --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.packtpub.com\\u002fbooks\\u002fcontent\\u002fhow-to-stream-live-video-with-raspberry-pi --- How to Stream ...\"],[\"https:\\u002f\\u002fwww.functionalgeekery.com\\u002fepisode-14-richard-minerich\\u002f --- Access denied | www.functionalgee...\"],[\"http:\\u002f\\u002fwww.visualcapitalist.com\\u002fprolific-investors-startups-reading-books\\u002f --- Access denied | www.v...\"],[\"http:\\u002f\\u002foffgridquest.com\\u002fenergy\\u002f731-spray-on-solar --- Spray-On Solar Power Will Likely Soon Change T...\"],[\"https:\\u002f\\u002fwww.javacodegeeks.com\\u002f2015\\u002f02\\u002fsecure-openfire-xmpp-server.html --- Access denied | www.javac...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=UexE8jZ8v_w --- how to teach your brain to learn :YouTube --- 2017-0...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fx98tx3cf.aspx --- Memory Leak Detection and Isolation --- 20...\"],[\"http:\\u002f\\u002fcodebetter.com\\u002fmatthewpodwysocki\\u002f2008\\u002f08\\u002f13\\u002frecursing-on-recursion-continuation-passing\\u002f --- ...\"],[\"http:\\u002f\\u002fwww.chromeextensions.org\\u002f --- Google Chrome Extensions --- 2017-05-12...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fOpenmoko --- Openmoko - Wikipedia, the free encyclopedia --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.nasa.gov\\u002foffices\\u002foct\\u002fcrosscutting_capability\\u002fedison\\u002fphonesat.html --- NASA - PhoneSat Fli...\"],[\"http:\\u002f\\u002fstore.wolfram.com\\u002fview\\u002fapp\\u002fclassroom\\u002f --- Mathematica for the Classroom 8 --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.like.kz\\u002f --- знакомства бесплатные знакомства в Казах...\"],[\"http:\\u002f\\u002fwww.aartech.ca\\u002fpi1000-svat-covert-dvr-with-pinhole-camera-hidden-in-motion-detector.html --- ...\"],[\"http:\\u002f\\u002fwepawet.iseclab.org\\u002f --- Wepawet » detect drive-by attacks --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.7is7.com\\u002fsoftware\\u002fbookmarklets\\u002f --- bookmarking, search utils and more --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fexpress\\u002fsamples\\u002fC4FDevKit\\u002f --- Coding4Fun Developer Kit --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285518\\u002f --- :robotics :fukushima use cases --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnashville-lispers\\u002fresources --- nashville-lispers\\u002fresources · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002fmva.microsoft.com\\u002febooks --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.phrack.org\\u002fissues.html?issue=68&id=6#article --- .:: Phrack Magazine ::. --- 2017-05-12...\"],[\"http:\\u002f\\u002ftinkerpop.incubator.apache.org\\u002f --- Apache TinkerPop --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002famzn\\u002falexa-avs-raspberry-pi --- GitHub - amzn\\u002falexa-avs-raspberry-pi: This projec...\"],[\"https:\\u002f\\u002fgithub.com\\u002fjeromeetienne\\u002far.js --- :javascript AR.js -- Efficient :Augmented-Reality for the...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fgoogle-authenticator\\u002f --- google-authenticator - Two-step verification - G...\"],[\"http:\\u002f\\u002fweburbanist.com\\u002f2012\\u002f03\\u002f28\\u002fpowerhouse-ideas-10-futuristic-clean-power-concepts\\u002f --- Powerhous...\"],[\"http:\\u002f\\u002fnull-byte.wonderhowto.com\\u002fhow-to\\u002fhack-like-pro-remotely-install-auto-reconnecting-persistent-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fromannurik\\u002fAndroid-WizardPager --- github.com :: wizard framework --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f286338\\u002f --- :space :nasa :food for astronauts --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.laurentian.ca\\u002fLaurentian\\u002fHome\\u002fDepartments\\u002fGeography\\u002flink_pages\\u002fpopgisjobs.htm?Laurentian_...\"],[\"http:\\u002f\\u002fwww.buildcoolapps.com\\u002f?sdid=DJHQS&uid=78590b3e2f8d44faa051bfd61954d2eb --- RICH INTERNET APPS...\"],[\"https:\\u002f\\u002fconemu.github.io\\u002fen\\u002f --- ConEmu - Handy Windows Terminal --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeplex.com\\u002fsharpnlp --- SharpNLP - open source natural language processing tools - Home...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmsssm\\u002finteresting_projects\\u002fwiki --- :opensource interesting projects --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fblockapps\\u002fazure-quickstart-templates --- GitHub - blockapps\\u002fazure-quickstart-temp...\"],[\"http:\\u002f\\u002foff-grid.info\\u002fblog\\u002fhow-to-build-a-16-brick-rocket-stove-for-6-dollars\\u002f#sthash.6Tl570v8.qjtu -...\"],[\"https:\\u002f\\u002fgetstorybook.io\\u002f --- :tools :reactjs Storybook - UI dev environment you&#39;ll love to use -...\"],[\"http:\\u002f\\u002fhowistart.org\\u002fposts\\u002fhaskell\\u002f --- :haskell How I Start --- 2017-05-12...\"],[\"http:\\u002f\\u002fmi3ch.livejournal.com\\u002f3630652.html?nojs=1 --- :education школа завтра: mi3ch --- 2...\"],[\"http:\\u002f\\u002fcode.openhub.net\\u002fproject?pid=&ipid=386747&fp=386747&mp&projSelected=true&filterChecked --- Pr...\"],[\"http:\\u002f\\u002fwww.silent9.com\\u002fblog\\u002findex.php?url=archives\\u002f107-DIY-Solar-Pool-Heater.html&serendipity[cview]...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fPDF\\u002fAct-Obj.pdf --- Active Object pattern for concurrent prog...\"],[\"http:\\u002f\\u002fwww.gruntforce.com\\u002fproducts\\u002fsnake-bite-kit-for-camping-hiking-survival-emergency-situations -...\"],[\"https:\\u002f\\u002fwww.robinwieruch.de\\u002fredux-observable-rxjs\\u002f --- :reactjs :RxJS :Redux Observable Going Epic w...\"],[\"http:\\u002f\\u002fresearchinformation-wordpress.tradepub.com\\u002fcategory\\u002finformation-technology-security\\u002f1091\\u002f ---...\"],[\"http:\\u002f\\u002fwww.sharepointblogs.com\\u002f --- Blogs - SharePoint Blogs \\u002f SharePoint University --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.oag-bvg.gc.ca\\u002finternet\\u002fEnglish\\u002fpet_103_e_28820.html --- Petition regarding coal bed metha...\"],[\"https:\\u002f\\u002fgithub.com\\u002frobotopia-x\\u002frobotopia\\u002f --- robotopia Introducing :kids to coding with tiny virtua...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002ffsharpteam\\u002farchive\\u002f2011\\u002f07\\u002f08\\u002ftail-calls-in-fsharp.aspx --- Tail calls in F#...\"],[\"http:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fcategories-functional-programming --- Categories for the Working ...\"],[\"https:\\u002f\\u002fleanpub.com\\u002fpurescript\\u002fread --- Read PureScript by Example | Leanpub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.communitech.ca\\u002f --- Communitech --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.agileedmonton.org\\u002f2009\\u002f03\\u002f12\\u002fapril-meeting\\u002f --- Agile Edmonton | April Meeting - “The V...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcaengcjd\\u002fwebvulnscan --- caengcjd\\u002fwebvulnscan · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002faudio-analyzer-for-android\\u002f --- audio-analyzer-for-android - Audio spectru...\"],[\"http:\\u002f\\u002fsphincs.cr.yp.to\\u002f --- sphincs.cr.yp.to --- 2017-05-12...\"],[\"http:\\u002f\\u002fminhdanh2002.blogspot.com\\u002f2010\\u002f04\\u002fnative-sip-on-windows-mobile-61-and-65.html --- Native SIP ...\"],[\"http:\\u002f\\u002fwww.material-ui.com\\u002f#\\u002f --- :reactjs Material-UI components --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fmiscctrl\\u002fTgXPPanel.aspx --- CodeProject: Full-featured XP Style Collap...\"],[\"http:\\u002f\\u002fblog.jetbrains.com\\u002fkotlin\\u002f2015\\u002f11\\u002fwebinar-recording-functional-programming-with-kotlin\\u002f --- W...\"],[\"https:\\u002f\\u002fgithub.com\\u002fxakepru\\u002fx14.05-coding-decaptcha --- :webdev :security :xakep x14.05-coding-decapt...\"],[\"http:\\u002f\\u002fkamranahmed.info\\u002fblog\\u002f2016\\u002f04\\u002f04\\u002fes6-in-depth\\u002f --- ES6 in Nutshell ... :javascript :ES6 Succi...\"],[\"http:\\u002f\\u002fedmonton.en.craigslist.ca\\u002fcls\\u002f978354936.html --- Community Weight Loss Challenge --- 2017-05-...\"],[\"https:\\u002f\\u002fshirakumo.github.io\\u002fradiance-homepage\\u002f --- :webdev Radiance - A Flexible Web Application Env...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmusikinformatik\\u002fSuperDirt --- :music :haskell SuperDirt -- SuperCollider implemen...\"],[\"http:\\u002f\\u002fwww.lihaoyi.com\\u002fhands-on-scala-js\\u002f --- Hands-on Scala.js --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.radar-soft.com\\u002fproducts\\u002fwpf.aspx --- RadarCube OLAP controls for WPF: Grid and Chart --- ...\"],[\"http:\\u002f\\u002fwww.sciencebuddies.org\\u002fscience-fair-projects\\u002fproject_ideas\\u002fBioChem_p028.shtml --- :opensource...\"],[\"http:\\u002f\\u002fblog.klipse.tech\\u002f\\u002fclojure\\u002f2016\\u002f10\\u002f25\\u002fcore-match.html --- Core.match interactive tutorial --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcharlesreid1\\u002fswartz-mechanizer --- charlesreid1\\u002fswartz-mechanizer · GitHub --- 2...\"],[\"http:\\u002f\\u002fcode.tutsplus.com\\u002ftutorials\\u002ffull-text-search-in-mongodb--cms-24835 --- Access denied | code.t...\"],[\"http:\\u002f\\u002fwww.quintura.com\\u002f --- Quintura - visual search engine --- 2017-05-12...\"],[\"http:\\u002f\\u002fdev.w3.org\\u002fhtml5\\u002fwebvtt\\u002f --- RT @mollydotcom: Hot Topic News! First standalone #webvtt spec f...\"],[\"https:\\u002f\\u002ftechcrunch.com\\u002f2017\\u002f03\\u002f31\\u002famazon-quietly-launches-its-own-social-media-influencer-program-in...\"],[\"https:\\u002f\\u002fdocs.mongodb.org\\u002fmanual\\u002freference\\u002foperator\\u002fquery\\u002ftype\\u002f --- $type &mdash; MongoDB Manual 3.2 ...\"],[\"https:\\u002f\\u002fplay.google.com\\u002fstore\\u002fapps\\u002fdetails?id=com.h3r3t1c.onnandbup --- Online Nandroid Backup * ROO...\"],[\"http:\\u002f\\u002fwww.windev.com\\u002fwindev\\u002fWD-Express.htm --- PC SOFT WINDEV: Download WINDEV Express --- 2017-05-...\"],[\"https:\\u002f\\u002fblog.netherlabs.nl\\u002farticles\\u002f2009\\u002f01\\u002f18\\u002fthe-ultimate-so_linger-page-or-why-is-my-tcp-not-reli...\"],[\"https:\\u002f\\u002fcrypto.stanford.edu\\u002fcs155\\u002fsyllabus.html --- CS155 Computer and Network Security --- 2017-05-...\"],[\"http:\\u002f\\u002fweb.archive.org\\u002fweb\\u002f19971009064824\\u002fwww.cs.oberlin.edu\\u002fclasses\\u002fcs280\\u002flabs\\u002flab4\\u002flab4.html --- [...\"],[\"http:\\u002f\\u002fwww.familyhandyman.com\\u002fDIY-Projects\\u002fElectrical\\u002fElectrical-Improvement\\u002fhow-to-get-better-cell-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmagomimmo\\u002fmodern-cljs --- GitHub - magomimmo\\u002fmodern-cljs: A series of tutorials o...\"],[\"http:\\u002f\\u002fwww.freeproxy.ru\\u002fen\\u002ffree_proxy\\u002fcgi-proxy.htm --- Anonymizer: free web proxy, CGI proxy list, ...\"],[\"http:\\u002f\\u002fdnafountain.teamerlich.org\\u002f --- :biotech :opensource DNA storage --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fAngularClass\\u002fangular-starter --- AngularClass :angularjs :Starter-kit featuring A...\"],[\"http:\\u002f\\u002fwww.jqmgallery.com\\u002f --- jQuery Mobile Examples - JQM Gallery --- 2017-05-12...\"],[\"http:\\u002f\\u002fjoybileefarm.com\\u002fmedicinal-herbs-organic-garden\\u002f --- By growing herbs yourself, in your own g...\"],[\"https:\\u002f\\u002fgithub.com\\u002fcayleygraph\\u002fcayley --- :graph-processing cayley An :opensource graph database ---...\"],[\"http:\\u002f\\u002fwiki.opensocial.org\\u002findex.php?title=Client_Libraries --- Client Libraries - OpenSocial --- 20...\"],[\"https:\\u002f\\u002fgithub.com\\u002fwasabeef\\u002fawesome-android-ui --- wasabeef\\u002fawesome-android-ui · GitHub --- 2017-05...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fmedgadgets\\u002fblog\\u002f288318\\u002f --- electricity for :kids --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoft\\u002fwinsdkfb --- GitHub - Microsoft\\u002fwinsdkfb: The Windows SDK for Facebook ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgromgull\\u002fbibsonomy-poster --- GitHub - gromgull\\u002fbibsonomy-poster: A very simple A...\"],[\"http:\\u002f\\u002fcommunityserver.com\\u002fproducts\\u002fexpress\\u002f --- Community Server Express Edition : Community Server...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkhan4019\\u002fangular-interview-questions --- :job-search :angularjs :interview questi...\"],[\"http:\\u002f\\u002fdocs.angularjs.org\\u002fapi --- AngularJS: API Reference --- 2017-05-12...\"],[\"http:\\u002f\\u002fdiysurvivalism.com\\u002fyear-round-greenhouse\\u002f --- How To Build A Greenhouse For Winter Gardening ...\"],[\"https:\\u002f\\u002fwww.robtex.com\\u002f --- www.robtex.com --- 2017-05-12...\"],[\"https:\\u002f\\u002fclivetong.wordpress.com\\u002f2016\\u002f02\\u002f08\\u002fyour-net-applications-can-start-being-more-native\\u002f --- Yo...\"],[\"http:\\u002f\\u002fwww.uliaea.ca\\u002f --- :blogs :linux Ulia Ea --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002froman01la\\u002freact-lovefield --- :IndexedDB :React.js bindings to Google’s Lovefie...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdatasciencemasters\\u002fgo --- datasciencemasters\\u002fgo --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.django-rest-framework.org\\u002f --- :python :Django :REST framework --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.buzzfeed.com\\u002fnicolenguyen\\u002flife-changing-apps-we-downloaded-in-2015?utm_term=.giPVGOGxD --...\"],[\"http:\\u002f\\u002fwww.msemploy.ca\\u002fCandidate\\u002fMyCv.aspx --- MSEmploy :: Create Your Resume --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fBuilding-robots-with-Raspberry-Pi-and-Python\\u002f --- Building robots wi...\"],[\"https:\\u002f\\u002fmysku.ru\\u002fblog\\u002fchina-stores\\u002f43295.html --- :android :sensor :smartgarden Xiaomi Flower Monito...\"],[\"https:\\u002f\\u002fgithub.com\\u002flprefontaine\\u002fBoing --- GitHub - lprefontaine\\u002fBoing: Java dependency injection in ...\"],[\"http:\\u002f\\u002fcommunity.bamboosolutions.com\\u002fmedia\\u002f26\\u002fdefault.aspx --- SharePoint for Project Management Dow...\"],[\"https:\\u002f\\u002fgithub.com\\u002fuhub\\u002fawesome-matlab --- :awesome :matlab frameworks, libraries and software --- 2...\"],[\"http:\\u002f\\u002fchannel9.msdn.com\\u002flearn\\u002fcourses\\u002fIdentityTrainingCourse\\u002f --- Identity Developer Training Cours...\"],[\"https:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fdeforestation --- Global Forest Watch: an Open Source Clojure pr...\"],[\"http:\\u002f\\u002fru.wikipedia.org\\u002fwiki\\u002fIntel_Cilk_Plus --- Intel Cilk Plus — Википедия --- 2017-05-...\"],[\"https:\\u002f\\u002fwww.codementor.io\\u002f --- Codementor | Instant 1:1 Help from Expert Developers --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fscalding-io --- Scalding.io · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.question-defense.com\\u002f2012\\u002f04\\u002f09\\u002fsbd-backtrack-5-maintaining-access-os-backdoors-sbd --- D...\"],[\"http:\\u002f\\u002fdeepdive.stanford.edu\\u002f --- Deepdive --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkarma-runner\\u002fkarma --- karma-runner · Javascript testing --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.publicproxyservers.com\\u002fproxy\\u002flist1.html --- Proxy Servers - Page 1 of 5 --- 2017-05-12...\"],[\"http:\\u002f\\u002fubersuggest.org\\u002f --- Keyword suggestion tool — Google suggest scraper — Ãœbersuggest --- ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpires\\u002fobd-java-api\\u002f --- pires\\u002fobd-java-api · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002ftorscanner\\u002ftorScanner --- torscanner\\u002ftorScanner · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.saleae.com\\u002flogic\\u002f --- Saleae Logic. The logic analyzer you'll love to use. --- 2017-05-12...\"],[\"http:\\u002f\\u002fpinboard.in\\u002ft:bookmarking --- Pinboard bookmarks tagged bookmarking --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.osvehicle.com\\u002f --- :opensource :car OSVehicle -- Modular Open Source Electric Car Platfo...\"],[\"http:\\u002f\\u002fwww.math.uah.edu\\u002fstat\\u002findex.html --- :education :Probability Mathematical :Statistics Stochas...\"],[\"http:\\u002f\\u002fwww.ihc.ru\\u002fvps.html?ref=281&_openstat=Z29vZ2xlO9Ca0JzQoTtWUFM7IzE&gclid=CJu6tpyToq8CFQq-zAodU...\"],[\"http:\\u002f\\u002fwww.kpmg.com\\u002fca\\u002fen\\u002ftopics\\u002fat-risk-magazine\\u002fpages\\u002fbenefits-of-concept-searching.aspx --- The B...\"],[\"https:\\u002f\\u002fangel.co\\u002fjobs --- :job-search :Startup Jobs - AngelList --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cyanogenmod.org\\u002f --- CyanogenMod | Android Community Rom based on Jelly Bean --- 2017-05-...\"],[\"http:\\u002f\\u002fwww.infoq.com\\u002fpresentations\\u002fJVM-Performance-Tuning-twitter --- Everything I Ever Learned abou...\"],[\"https:\\u002f\\u002fgroups.google.com\\u002fforum\\u002f#!topic\\u002fandroid-developers\\u002fdCZKO06oKgU --- tesseract and \\\"empty page...\"],[\"http:\\u002f\\u002fwww.langorigami.com\\u002farticle\\u002ftreemaker --- :graph-processing :opensource TreeMaker :Origami :b...\"],[\"http:\\u002f\\u002fryanarmstrong.net.au\\u002fdownloads\\u002fjclouds.html --- clouds animation --- 2017-05-12...\"],[\"https:\\u002f\\u002fru.aliexpress.com\\u002fitem\\u002fOriginal-Xiaomi-Mi-Flora-Monitor-Digital-Plants-Grass-Flowers-Soil-Wa...\"],[\"https:\\u002f\\u002ftwitter.com\\u002fandru_loyd\\u002fstatus\\u002f656717441699962880 --- How Do It on --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.tunnelbear.com\\u002fpricing\\u002f --- www.tunnelbear.com --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fwittytwitter\\u002f --- wittytwitter - Google Code --- 2017-05-12...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fcompany\\u002fnag\\u002fblog\\u002f287818\\u002f --- :diy antenna :wifi --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.instructables.com\\u002fid\\u002fDIY-Infrared-transmitter-for-iPhone-iPod\\u002f --- DIY Infrared transmitt...\"],[\"http:\\u002f\\u002fwww.sharepointdevwiki.com\\u002fdisplay\\u002fpublic\\u002fWelcome --- Welcome - SharePoint Development Wiki - ...\"],[\"http:\\u002f\\u002felectrical-engineering-pics.blogspot.hk\\u002f --- Electrical Engineering Pics --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.cascading.org\\u002fprojects\\u002fcascalog\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"http:\\u002f\\u002fmd-note.com\\u002f --- English version - MdNote --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.offthegridnews.com\\u002f2014\\u002f12\\u002f24\\u002fhow-to-quickly-build-a-survival-oven-using-dirt-water-and-s...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fCosine_similarity --- Cosine similarity - Wikipedia, the free encyclope...\"],[\"https:\\u002f\\u002fgithub.com\\u002fMicrosoftEdge\\u002fgenerator-appx#readme --- MicrosoftEdge\\u002fgenerator-appx: Yeoman gene...\"],[\"http:\\u002f\\u002fsu.chainfire.eu\\u002f --- How-To SU --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fACRA\\u002facra --- ACRA\\u002facra · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.whonix.org\\u002fwiki\\u002fTunnel_Tor_through_proxy_or_VPN_or_SSH --- Tunnel Tor through proxy or V...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fdotnet\\u002ftransparent_controls_net.aspx --- CodeProject: How to Use Trans...\"],[\"https:\\u002f\\u002fneuronmocap.com\\u002f --- Perception Neuron by Noitom | Perception Neuron motion capture for virt...\"],[\"https:\\u002f\\u002fgithub.com\\u002fhellerve\\u002fprogramming-talks --- hellerve\\u002fprogramming-talks · GitHub --- 2017-05-1...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsearch?utf8=%E2%9C%93&q=leetcode+scala&type=Repositories&ref=searchresults --- Se...\"],[\"http:\\u002f\\u002fwww.ladyada.net\\u002flearn\\u002farduino\\u002findex.html --- Arduino Tutorial - Learn electronics and microco...\"],[\"http:\\u002f\\u002fegov.kz\\u002fcms\\u002fru\\u002fservices\\u002fchild\\u002fe_020 --- :kazakhstan egov services -- how to get birth record ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fkilimchoi\\u002fengineering-blogs --- engineering-blogs curated list of engineering :bl...\"],[\"http:\\u002f\\u002flinux.startcom.org\\u002f --- StartCom Linux - Home --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.builditsolar.com\\u002fProjects\\u002fSpaceHeating\\u002fGregCanCol\\u002fGregCanCo.htm --- How to build a pop ca...\"],[\"http:\\u002f\\u002fwww.whitbitskitchen.com\\u002f2015\\u002f06\\u002f14\\u002fhow-to-make-a-tandoor-oven\\u002f --- How to Make a Tandoor Oven...\"],[\"http:\\u002f\\u002fsharepoint.microsoft.com\\u002fsharepoint\\u002fcks\\u002fDocument%20Library\\u002fForms\\u002fAllItems.aspx --- Document L...\"],[\"https:\\u002f\\u002fgokulkrishh.github.io\\u002fwebpack\\u002f2017\\u002f02\\u002f03\\u002fhow-to-setup-webpack-2.html --- :tutorial How to se...\"],[\"http:\\u002f\\u002fsquare.github.io\\u002fpicasso\\u002f --- Picasso --- 2017-05-12...\"],[\"http:\\u002f\\u002fdocs.themoviedb.apiary.io\\u002f# --- The Movie Database API—by apiary.io --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fArpabet --- Arpabet - Wikipedia, the free encyclopedia --- 2017-05-12...\"],[\"https:\\u002f\\u002frecdnsfp.github.io\\u002f --- :computer-networks :security DNS server fingerprint --- 2017-05-12...\"],[\"http:\\u002f\\u002fjstimpfle.de\\u002ffun\\u002favltree\\u002favltree.html --- :c-code AVL tree implementation --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fchihsuan\\u002fsearch-engine --- :nltk :python :searchengines document searching --- 20...\"],[\"http:\\u002f\\u002fcsharp-source.net\\u002fopen-source\\u002fnetwork-clients --- Open Source Network Clients in C# --- 2017-...\"],[\"http:\\u002f\\u002fwww.scippinternational.org\\u002fsecure-web-applications-training.html --- Scipp International - Se...\"],[\"http:\\u002f\\u002fmepatterson.net\\u002f2010\\u002f10\\u002fhow-to-get-fuzzy-and-plural-matches-from-sunspot-solr\\u002f --- HOW TO: ge...\"],[\"http:\\u002f\\u002fmsdn.microsoft.com\\u002fen-us\\u002flibrary\\u002fms182523.aspx --- Creating Unit Tests --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.hibernate.org\\u002f37.html --- hibernate.org - Wiki Overview --- 2017-05-12...\"],[\"http:\\u002f\\u002fr1.chass.utoronto.ca\\u002fmappingreligion\\u002f?q=node\\u002f63 --- Diamond Way Buddhist Center in Toronto | ...\"],[\"http:\\u002f\\u002fwww.asterisk2billing.org\\u002fcgi-bin\\u002ftrac.cgi\\u002fwiki\\u002fInstallation%20Guide --- a2billing - Installat...\"],[\"http:\\u002f\\u002fwww.maximintegrated.com\\u002fproducts\\u002fibutton\\u002fibuttons\\u002f --- What is an iButton? - Maxim --- 2017-0...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fWCF\\u002fWCFSSL.aspx --- CodeProject: SSL with Self-hosted WCF Service. Fre...\"],[\"http:\\u002f\\u002fwww.theglobeandmail.com\\u002fglobe-investor\\u002fretirement\\u002fretire-taxes-and-portfolios\\u002fbond-etfs-work-...\"],[\"http:\\u002f\\u002fwww.c-sharpcorner.com\\u002fUploadFile\\u002frahul4_saxena\\u002fMaskedDiv01062009051237AM\\u002fMaskedDiv.aspx --- M...\"],[\"https:\\u002f\\u002fpetewarden.com\\u002f --- Pete Warden's blog --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002farchitecture\\u002fframeworkforentsol.aspx.aspx --- CodeProject: Application...\"],[\"http:\\u002f\\u002fwww.vistaprint.ca\\u002fvp\\u002fns\\u002fdefault.aspx?dr=1&rd=2&GP=3%2f28%2f2009+1%3a38%3a46+AM --- VistaPrint...\"],[\"https:\\u002f\\u002fgrabcad.com\\u002flibrary\\u002f90-degrees-uniform-motion-transmitter-1 --- 90 Degrees Uniform Motion Tr...\"],[\"http:\\u002f\\u002fwww.techtimes.com\\u002farticles\\u002f94602\\u002f20151013\\u002frussia-developing-sauron-like-all-seeing-eye-drone-...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fsharepoint\\u002farchive\\u002f2008\\u002f05\\u002f12\\u002fposters-for-sharepoint-stsadm-command-line-param...\"],[\"http:\\u002f\\u002fwww.getsmarteraboutmoney.ca\\u002fPages\\u002fdefault.aspx --- Home | Investor Education Fund --- 2017-05...\"],[\"http:\\u002f\\u002fwww.centos.org\\u002fdocs\\u002f4\\u002fpdf\\u002frhel-selg-en.pdf --- www.centos.org\\u002fdocs\\u002f4\\u002fpdf\\u002frhel-selg-en.pdf ---...\"],[\"https:\\u002f\\u002fwww.backtotheroots.com\\u002fshop\\u002fwatergarden --- Self-Cleaning Fish Tank That Grows Food \\u002f TechNe...\"],[\"http:\\u002f\\u002fwww.greenenergyjubilation.com\\u002fits-a-silent-rooftop-turbine-which-could-produce-half-of-your-h...\"],[\"http:\\u002f\\u002fasteriskpbx.ru\\u002fwiki\\u002fskype-for-asterisk-en --- skype-for-asterisk-en – IP АТС Asterisk --...\"],[\"https:\\u002f\\u002fsrlabs.de\\u002f --- Security Research Labs, Berlin --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.effority.net\\u002fMainModules\\u002fEaloLocalizationforDotNetNukeOpenSource\\u002ftabid\\u002f110\\u002fDefault.aspx -...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsearch?o=desc&q=prusa&s=updated&type=Repositories&utf8=%E2%9C%93 --- Search · pr...\"],[\"http:\\u002f\\u002fwww.vmware.com\\u002fappliances\\u002fdirectory\\u002f577513 --- Infobright Community Edition (ICE) Virtual Mac...\"],[\"http:\\u002f\\u002fwww.casact.org\\u002f --- Casualty Actuarial Society: Home --- 2017-05-12...\"],[\"https:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fKind_%28type_theory%29 --- Kind (type theory) - Wikipedia, the free en...\"],[\"http:\\u002f\\u002fwww.jstor.org\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002famnesty.org.ru\\u002fnode\\u002f3100 --- узнать, следит ли правительство | Amn...\"],[\"https:\\u002f\\u002fmedium.com\\u002f@MaartenSikkema\\u002fusing-dotnet-core-orleans-redux-and-websockets-to-build-a-scalabl...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvhf\\u002ffree-programming-books --- vhf\\u002ffree-programming-books ... :moocs :free :books...\"],[\"https:\\u002f\\u002fboringssl.googlesource.com\\u002fboringssl\\u002f --- BoringSSL is a fork of OpenSSL that is designed to...\"],[\"https:\\u002f\\u002fwww.mozenda.com\\u002f --- Data Extraction, Web Screen Scraping Tool, Mozenda Scraper --- 2017-05-...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002finternetofthings --- Internet of Things - GeekBooks - Free Tech PD...\"],[\"android,security --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fcode.google.com\\u002fp\\u002fsipvicious --- GitHub - sandrogauci\\u002fsipvicious: SIPVicious suite is a set o...\"],[\"https:\\u002f\\u002fgithub.com\\u002fsjl\\u002fclojure-lanterna --- GitHub - sjl\\u002fclojure-lanterna: A Clojurey wrapper around...\"],[\"http:\\u002f\\u002fwebaudioapi.com\\u002f --- Welcome | Web Audio API --- 2017-05-12...\"],[\"http:\\u002f\\u002fclojurescriptmadeeasy.com\\u002f --- Clojurescript Made Easy --- 2017-05-12...\"],[\"http:\\u002f\\u002fdocs.oracle.com\\u002fjavase\\u002f7\\u002fdocs\\u002fapi\\u002fjava\\u002fio\\u002fpackage-summary.html --- java.io (Java Platform SE ...\"],[\"https:\\u002f\\u002fgithub.com\\u002fvidelalvaro\\u002fcloudfoundry-clojure-demo --- GitHub - videlalvaro\\u002fcloudfoundry-cloju...\"],[\"http:\\u002f\\u002falexott.net\\u002fru\\u002fclojure\\u002fClojureHadoop.html --- Программирование Hadoop с помощью Clojure --- 2...\"],[\"https:\\u002f\\u002fegghead.io\\u002flessons\\u002frxjs-reactive-programming-what-is-rxjs?series=introduction-to-reactive-pr...\"],[\"http:\\u002f\\u002flectoriy.mipt.ru\\u002fcourse\\u002findex?category=Maths --- Видеолекции Физтеха: Лекторий МФТИ - видеоле...\"],[\"https:\\u002f\\u002fwww.google.ca\\u002fsearch?q=site:langorigami.com+filetype:pdf&prmd=ivns&filter=0 --- Error 403 (F...\"],[\"http:\\u002f\\u002fstackoverflow.com\\u002fjobs\\u002f106231\\u002flead-net-developer-virtual-remote-outmatch --- Access denied | ...\"],[\"http:\\u002f\\u002fcljs.info\\u002fcheatsheet\\u002f --- ClojureScript Cheatsheet --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.blendernation.com\\u002f2013\\u002f11\\u002f08\\u002fintroduction-of-video-editing-in-blender\\u002f --- Introduction t...\"],[\"http:\\u002f\\u002fwww.cryptol.net\\u002f --- Cryptol --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpelle\\u002fclothereum --- GitHub - pelle\\u002fclothereum: Native clojure library for Ethere...\"],[\"http:\\u002f\\u002fblog.edanschwartz.com\\u002f2015\\u002f09\\u002f18\\u002fdead-simple-rxjs-todo-list\\u002f --- Edan Schwartz- Web Developer...\"],[\"https:\\u002f\\u002fdanielmiessler.com\\u002fstudy\\u002ftmux\\u002f --- A tmux Primer --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fprzeor\\u002freact-router-flux-starter-kit\\u002f --- GitHub - przeor\\u002freact-router-flux-start...\"],[\"http:\\u002f\\u002fdocs.oracle.com\\u002fjavase\\u002ftutorial\\u002fessential\\u002fconcurrency\\u002fforkjoin.html --- [No Title] --- 2017-0...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002ffsharp --- F# - GeekBooks - Free Tech PDF eBook Library --- 2017-0...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbumptech\\u002fglide --- GitHub - bumptech\\u002fglide: An image loading and caching library ...\"],[\"http:\\u002f\\u002fnakamotoinstitute.org\\u002fliterature\\u002f --- Satoshi Nakamoto Institute --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002ftag\\u002fview\\u002fgcc --- GCC - GeekBooks - Free Tech PDF eBook Library --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdominionenterprises\\u002fmongo-queue-csharp --- GitHub - dominionenterprises\\u002fmongo-que...\"],[\"http:\\u002f\\u002fwww.scribd.com\\u002fdoc\\u002f21296430\\u002f%D0%98%D0%B5%D1%80%D0%B0%D1%80%D1%85%D0%B8%D1%87%D0%B5%D1%81%D0%B...\"],[\"http:\\u002f\\u002fsiellon.com\\u002fnaibolee-prostyie-metodyi-relaksatsii-na-kazhdyiy-den\\u002f --- Наиболее прÐ...\"],[\"http:\\u002f\\u002fwww.youtube.com\\u002fuser\\u002fClojureTV --- [No Title] --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ssas2008-info.com\\u002fanalysis-services-articles --- SSAS 2008 Articles-SSAS2008-Info.com ---...\"],[\"http:\\u002f\\u002fwiki.milkfish.org\\u002findex.php?n=TheMilkfish.TheMilkfish --- wiki.milkfish.org | TheMilkfish \\u002f T...\"],[\"http:\\u002f\\u002fopenxcplatform.com\\u002f --- :opensource :car OpenXC --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fpiotrklibert\\u002fcurved-text --- :racket :lisp curved-text -- drawing text (and other...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM3307832&R=3307832 --- BeagleBone cookbook : : ...\"],[\"http:\\u002f\\u002fblog.plaxo.com\\u002farchives\\u002f2008\\u002f06\\u002fplaxo_and_frien_1.html --- Plaxo's Personal Card: Plaxo and F...\"],[\"https:\\u002f\\u002fgithub.com\\u002f4Catalyzer\\u002ffound --- found -- route-based routing for :Reactjs --- 2017-05-12...\"],[\"http:\\u002f\\u002fnetzeroguide.com\\u002fvawt.html --- Vertical axis wind powered generator resources post. VAWT have...\"],[\"http:\\u002f\\u002fwww.infusionsoft.com\\u002fim-guidebook?ls=M-WebProNews-6-28-11-img --- Improve your Internet Marke...\"],[\"http:\\u002f\\u002fwww.informationisbeautiful.net\\u002fvisualizations\\u002fmountains-out-of-molehills\\u002f --- Mountains Out o...\"],[\"https:\\u002f\\u002fmooistudios.com\\u002f2016\\u002f12\\u002f19\\u002fchoosing-functional-programming-game\\u002f --- :unity :clojure Choosin...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f287048\\u002f --- :electronics :smarthome 8 kilowatt 4-channel commutator AC ---...\"],[\"http:\\u002f\\u002fwww.statcan.gc.ca\\u002fsubject-sujet\\u002fresult-resultat.action?pid=30000&id=-30000&lang=eng&type=STUD...\"],[\"https:\\u002f\\u002fwww.cloudmonkeymobile.com\\u002fmonkeytalk --- MonkeyTalk | Free, Open Source, Mobile App Testing ...\"],[\"https:\\u002f\\u002fwww.adafruit.com\\u002fproducts\\u002f2702 --- Access denied | www.adafruit.com used CloudFlare to restr...\"],[\"http:\\u002f\\u002fsessions.visitmix.com\\u002f --- MIX | Sessions --- 2017-05-12...\"],[\"http:\\u002f\\u002fblog.makezine.com\\u002farchive\\u002f2005\\u002f05\\u002fuse_a_cell_phone_lcd_on_y.html --- Make: Online : Use a Cel...\"],[\"https:\\u002f\\u002fgithub.com\\u002fmattifestation --- mattifestation (Matt Graeber) · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fgcv\\u002fappengine-magic --- :google-apps :appengine gcv\\u002fappengine-magic: A library de...\"],[\"http:\\u002f\\u002fwww.adefwebserver.com\\u002fDotNetNukeHELP\\u002fDNN_ShowMeThePages\\u002f --- Super-Simple DotNetNuke 4 module...\"],[\"http:\\u002f\\u002fsuif.stanford.edu\\u002fpapers\\u002fvmi-ndss03.pdf --- A Virtual Machine Introspection Based Architectur...\"],[\"http:\\u002f\\u002f4pda.ru\\u002fforum\\u002findex.php?showforum=281 --- Android - 4PDA --- 2017-05-12...\"],[\"http:\\u002f\\u002fvisual.ly\\u002f --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fsourceforge.net\\u002fprojects\\u002fewavetrade\\u002f --- code on source forge --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2817510&R=2817510 --- Programming in Scala : O...\"],[\"http:\\u002f\\u002fcommonsware.com\\u002fwarescription --- The CommonsWare Warescription --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.openbookproject.net\\u002fthinkcs\\u002fpython\\u002fenglish2e\\u002f --- Learning with Python 2nd Edition (Using...\"],[\"http:\\u002f\\u002fwww.netfor2.com\\u002f --- Video Audio Stream Recording, Internet TV and more --- 2017-05-12...\"],[\"http:\\u002f\\u002farduiniana.org\\u002flibraries\\u002ftinygpsplus\\u002f --- tinyGPS - Full-featured GPS\\u002fNMEA Parser for Arduino...\"],[\"https:\\u002f\\u002fgithub.com\\u002fnasa-gibs --- :image-processing :space :nasa Global Imagery Browse Services --- 2...\"],[\"http:\\u002f\\u002fblogs.microsoft.co.il\\u002fblogs\\u002ftamir\\u002farchive\\u002f2008\\u002f03\\u002f05\\u002fbinding-to-current-item-external-collect...\"],[\"http:\\u002f\\u002ftemplated.co\\u002f --- TEMPLATED - CSS, HTML5 and Responsive Site Templates --- 2017-05-12...\"],[\"https:\\u002f\\u002fhabrahabr.ru\\u002fhub\\u002fscala\\u002f --- Scala \\u002f Интересные публикации \\u002f Хабрах...\"],[\"http:\\u002f\\u002flocalhost:11139\\u002fadministration\\u002fmeasures.aspx --- DEMO --- 2017-05-12...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fhanbzu\\u002f7302266 --- Scala: water pouring problem solution · GitHub --- 2017-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fbitcoin\\u002fbips\\u002fblob\\u002fmaster\\u002fbip-0065.mediawiki --- bips\\u002fbip-0065.mediawiki at master...\"],[\"http:\\u002f\\u002fwww.certificationworks.com\\u002fbooks\\u002fB00007FYZP.htm --- Introduction to programming Internet Expl...\"],[\"http:\\u002f\\u002fwww.codeproject.com\\u002fKB\\u002fsharepoint\\u002fFckEditorSharepoint2.aspx --- CodeProject: FCKEditor – Sh...\"],[\"http:\\u002f\\u002fies.ed.gov\\u002fncee\\u002fpubs\\u002f20084018\\u002fapp_b.asp --- None --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.worldeyecam.com\\u002fstore\\u002fhow-to-build-a-dvr.html --- How to Build a DVR - Worldeyecam --- 20...\"],[\"http:\\u002f\\u002fwww.cloudera.com\\u002fcontent\\u002fcloudera\\u002fen\\u002fhome.html --- Big Data and Apache Hadoop in the Enterpri...\"],[\"http:\\u002f\\u002fwww.dre.vanderbilt.edu\\u002f~schmidt\\u002fDOC_ROOT\\u002fACE\\u002fACE-INSTALL.html#msvc --- Building and Installin...\"],[\"https:\\u002f\\u002fcode.google.com\\u002fp\\u002fics-openvpn\\u002f --- ics-openvpn - Openvpn for Android 4.0+ - Google Project H...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fnathanmarz\\u002f1228302 --- :big-data :storm :Examples of defining a topology in ...\"],[\"http:\\u002f\\u002fwww.torontopubliclibrary.ca\\u002fdetail.jsp?Entt=RDM2867751&R=2867751 --- Scala programming LiveLe...\"],[\"https:\\u002f\\u002fgithub.com\\u002fOpenRCE\\u002fpaimei --- OpenRCE\\u002fpaimei · GitHub --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.sipwise.org\\u002fnews\\u002ftechnical\\u002fbyov-skype-replacement\\u002f --- Build your own VoIP System – Pa...\"],[\"https:\\u002f\\u002fwww.geekbooks.me\\u002fbook\\u002fview\\u002fpractical-machine-learning --- Practical Machine Learning - GeekB...\"],[\"http:\\u002f\\u002fblog.gonzih.me\\u002fblog\\u002f2013\\u002f03\\u002f19\\u002fbuilding-rc-toy-with-clojure\\u002f --- Building RC Toy with Clojure...\"],[\"https:\\u002f\\u002fxakep.ru\\u002ftag\\u002fgithub\\u002f --- 403 Forbidden --- 2017-05-12...\"],[\"https:\\u002f\\u002fgist.github.com\\u002fseanxwh --- seanxwh’s gists · GitHub --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.colm.net\\u002fopen-source\\u002fragel\\u002f --- Ragel State Machine Compiler --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002fOpenTechFund\\u002fCryptoTerminology --- OpenTechFund\\u002fCryptoTerminology · GitHub --- 2...\"],[\"https:\\u002f\\u002fwww.terminal.com\\u002flanding\\u002f --- Online IDE for Octave\\u002fPython\\u002fR --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.ninjatrader.com\\u002fwebnew\\u002findex.htm --- NINJATRADER --- 2017-05-12...\"],[\"https:\\u002f\\u002fgithub.com\\u002frkneufeld\\u002flein-try --- GitHub - rkneufeld\\u002flein-try: A Leiningen plugin for trying...\"],[\"http:\\u002f\\u002fwww.archiveteam.org\\u002findex.php?title=UC_Berkeley_Course_Captures --- :education :Berkeley Cour...\"],[\"http:\\u002f\\u002fen.wikipedia.org\\u002fwiki\\u002fLevenshtein_distance --- Levenshtein distance - Wikipedia, the free enc...\"],[\"https:\\u002f\\u002fdocs.mongodb.org\\u002fmanual\\u002freference\\u002foperator\\u002f --- Operators &mdash; MongoDB Manual 3.2 --- 201...\"],[\"https:\\u002f\\u002fwww.datascience.com\\u002fblog\\u002fpredictive-churn-modeling-challenges --- :data-science The Challeng...\"],[\"http:\\u002f\\u002fjakewharton.github.io\\u002fbutterknife\\u002findex.html --- Butter Knife - view injection library --- 20...\"],[\"http:\\u002f\\u002fdocs.splunk.com\\u002fDocumentation\\u002fSplunk\\u002f6.0.2\\u002fSearchReference\\u002fSearchCheatsheet --- Search Comman...\"],[\"https:\\u002f\\u002fbitbucket.org\\u002f0x90\\u002fshareleak\\u002fsrc\\u002f --- 0x90 \\u002f shareleak \\u002f source \\u002f — Bitbucket --- 2017-05-...\"],[\"https:\\u002f\\u002fgithub.com\\u002fdedis\\u002fcothority --- GitHub - dedis\\u002fcothority: Scalable collective authority proto...\"],[\"http:\\u002f\\u002fikuzoandroid.com\\u002fawesome-android-canada\\u002f --- Awesome Android Canada --- 2017-05-12...\"],[\"http:\\u002f\\u002fcommunity.bamboosolutions.com\\u002fforums\\u002f157.aspx --- SharePoint for Project Management - Bamboo ...\"],[\"https:\\u002f\\u002fsciex.com\\u002fapplications\\u002ffood-and-beverage-testing\\u002fantibiotic-testing --- :nutritionfactstoday...\"],[\"https:\\u002f\\u002fwww.ibm.com\\u002fdeveloperworks\\u002flibrary\\u002fl-pam\\u002f --- :linux :security Understanding and configuring...\"],[\"https:\\u002f\\u002fwww.scratchapixel.com\\u002flessons\\u002fmathematics-physics-for-computer-graphics\\u002fgeometry\\u002fpoints-vect...\"],[\"https:\\u002f\\u002fstaltz.com\\u002fan-off-grid-social-network.html --- André Staltz off-grid :socialnetworks :decen...\"],[\"http:\\u002f\\u002fnakkaya.com\\u002f2011\\u002f07\\u002f28\\u002fholonomic-control\\u002f --- Holonomic Control --- 2017-05-12...\"],[\"http:\\u002f\\u002fwww.luminusweb.net\\u002f --- Luminus - a Clojure web framework --- 2017-05-12...\"],[\"https:\\u002f\\u002fwww.youtube.com\\u002fwatch?v=tTBWfkE7BXU&feature=youtu.be --- :political Noam Chomsky - Manufactu...\"],[\"http:\\u002f\\u002fblogs.msdn.com\\u002fb\\u002ftommer\\u002farchive\\u002f2007\\u002f04\\u002f20\\u002fbuilding-custom-linq-enabled-data-providers-using-...\"],[\"http:\\u002f\\u002fwww.microsoft.com\\u002fdownloads\\u002fdetails.aspx?familyid=31775ed3-183b-490a-8e05-75a63a89d6aa&displa...\"],[\"https:\\u002f\\u002fgeektimes.ru\\u002fpost\\u002f285710\\u002f --- :ele
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment