diff --git a/Presentation.pdf b/Presentation.pdf
new file mode 100644
index 0000000..6ed161d
Binary files /dev/null and b/Presentation.pdf differ
diff --git a/Project_NPL_Final.ipynb b/Project_NPL_Final.ipynb
new file mode 100644
index 0000000..9be5318
--- /dev/null
+++ b/Project_NPL_Final.ipynb
@@ -0,0 +1,3100 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "1f0e0bc5",
+ "metadata": {},
+ "source": [
+ "# Natural Language Processing Challenge"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "d72a68fc",
+ "metadata": {},
+ "source": [
+ "## Introduction\n",
+ "\n",
+ "Learning how to process text is a skill required for Data Scientists. In this project, you will put these skills into practice to identify whether a news headline is real or fake news."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3927230c",
+ "metadata": {},
+ "source": [
+ "## Project Overview\n",
+ "\n",
+ "In the file dataset/training_data.csv you will find dataset containing news headlines and their tags: 0, if the headline is fake news, and, 1, if the headline is real news.\n",
+ "\n",
+ "Your goal is to build a classifier that is able to distinguish between the two.\n",
+ "\n",
+ "Once you have a classifier built, then use it to predict the labels for dataset/testing_data.csv. Generate a new file where the label 2 has been replaced by 0 (fake) or 1 (real) according to your model. Please respect the original file format, do not include extra columns, and respect the column separator."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "fa66ad87",
+ "metadata": {},
+ "source": [
+ "## Libraries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 77,
+ "id": "1c751888",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import warnings\n",
+ "warnings.filterwarnings(\"ignore\")\n",
+ "\n",
+ "import nltk\n",
+ "import os\n",
+ "import sys\n",
+ "import contextlib\n",
+ "\n",
+ "\n",
+ "@contextlib.contextmanager\n",
+ "def suppress_output():\n",
+ " with open(os.devnull, \"w\") as devnull:\n",
+ " old_stdout = sys.stdout\n",
+ " old_stderr = sys.stderr\n",
+ " sys.stdout = devnull\n",
+ " sys.stderr = devnull\n",
+ " try:\n",
+ " yield\n",
+ " finally:\n",
+ " sys.stdout = old_stdout\n",
+ " sys.stderr = old_stderr\n",
+ "\n",
+ "\n",
+ " with suppress_output():\n",
+ " nltk.download('stopwords')\n",
+ " nltk.download('punkt')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 78,
+ "id": "3ad57058",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import random\n",
+ "import pandas as pd\n",
+ "import numpy as np\n",
+ "import chardet\n",
+ "import re\n",
+ "from nltk.corpus import stopwords\n",
+ "from nltk.stem import PorterStemmer\n",
+ "from nltk.tokenize import word_tokenize\n",
+ "from sklearn.feature_extraction.text import TfidfVectorizer\n",
+ "from sklearn.model_selection import train_test_split\n",
+ "from sklearn.linear_model import LogisticRegression\n",
+ "from sklearn.metrics import accuracy_score, classification_report, confusion_matrix\n",
+ "import gensim.downloader as api\n",
+ "from sklearn.ensemble import RandomForestClassifier\n",
+ "from nltk.stem import WordNetLemmatizer\n",
+ "from sklearn.model_selection import RandomizedSearchCV\n",
+ "from sklearn.metrics import f1_score\n",
+ "from sentence_transformers import SentenceTransformer\n",
+ "from sklearn.ensemble import VotingClassifier\n",
+ "from sklearn.ensemble import GradientBoostingClassifier\n",
+ "from xgboost import XGBClassifier"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3ec004dc",
+ "metadata": {},
+ "source": [
+ "## Data"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "29b468ce",
+ "metadata": {},
+ "source": [
+ "### Loading the data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 79,
+ "id": "74133589",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "{'encoding': 'UTF-8-SIG', 'confidence': 1.0, 'language': ''}\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Checking encoding\n",
+ "\n",
+ "with open('dataset/training_data.csv', 'rb') as f:\n",
+ " result = chardet.detect(f.read(10000))\n",
+ "\n",
+ "print(result)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 80,
+ "id": "736f2da1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data=pd.read_csv('dataset/training_data.csv',encoding='UTF-8-SIG',header=None,sep='\\t')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 81,
+ "id": "357eaa7c",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 0 \n",
+ " donald trump sends out embarrassing new year‚s... \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 0 \n",
+ " drunk bragging trump staffer started russian c... \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 0 \n",
+ " sheriff david clarke becomes an internet joke ... \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 0 \n",
+ " trump is so obsessed he even has obama‚s name ... \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 0 \n",
+ " pope francis just called out donald trump duri... \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " 0 1\n",
+ "0 0 donald trump sends out embarrassing new year‚s...\n",
+ "1 0 drunk bragging trump staffer started russian c...\n",
+ "2 0 sheriff david clarke becomes an internet joke ...\n",
+ "3 0 trump is so obsessed he even has obama‚s name ...\n",
+ "4 0 pope francis just called out donald trump duri..."
+ ]
+ },
+ "execution_count": 81,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "data.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 82,
+ "id": "ae9e4d92",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data.columns = ['label', 'text']"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 83,
+ "id": "9b0d8d86",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "RangeIndex: 34152 entries, 0 to 34151\n",
+ "Data columns (total 2 columns):\n",
+ " # Column Non-Null Count Dtype \n",
+ "--- ------ -------------- ----- \n",
+ " 0 label 34152 non-null int64 \n",
+ " 1 text 34152 non-null object\n",
+ "dtypes: int64(1), object(1)\n",
+ "memory usage: 533.8+ KB\n"
+ ]
+ }
+ ],
+ "source": [
+ "data.info()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "361b32c6",
+ "metadata": {},
+ "source": [
+ "### Pre processing"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 84,
+ "id": "afb39b53",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Define stopwords and stemmer for English\n",
+ "stop_words = set(stopwords.words('english'))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 85,
+ "id": "54860f04",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# First version of pre processing\n",
+ "\n",
+ "stemmer = PorterStemmer()\n",
+ "\n",
+ "def preprocess_text_1(text):\n",
+ " # Check if the input is missing or not a string\n",
+ " if pd.isna(text) or not isinstance(text, str):\n",
+ " return \"\"\n",
+ "\n",
+ " # Remove special characters (keep only letters and spaces)\n",
+ " text = re.sub(r'[^a-zA-Z\\s]', '', text)\n",
+ " \n",
+ " # Remove numbers\n",
+ " text = re.sub(r'\\d+', '', text)\n",
+ " \n",
+ " # Convert to lowercase and remove leading/trailing spaces\n",
+ " text = text.lower().strip()\n",
+ "\n",
+ " # Tokenize the text into individual words\n",
+ " tokens = word_tokenize(text)\n",
+ "\n",
+ " # Remove stopwords and apply stemming\n",
+ " tokens = [stemmer.stem(word) for word in tokens if word not in stop_words]\n",
+ "\n",
+ " # Reconstruct the text from the processed tokens\n",
+ " return ' '.join(tokens)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 86,
+ "id": "fee8be24",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Second version of pre processing\n",
+ "\n",
+ "lemmatizer = WordNetLemmatizer()\n",
+ "\n",
+ "def preprocess_text_2(text):\n",
+ " # Check if the input is missing or not a string\n",
+ " if pd.isna(text) or not isinstance(text, str):\n",
+ " return \"\"\n",
+ "\n",
+ " # Remove special characters (keep only letters and spaces)\n",
+ " text = re.sub(r'[^a-zA-Z\\s]', '', text)\n",
+ " \n",
+ " # Remove numbers\n",
+ " text = re.sub(r'\\d+', '', text)\n",
+ " \n",
+ " # Convert to lowercase and remove leading/trailing spaces\n",
+ " text = text.lower().strip()\n",
+ "\n",
+ " # Tokenize the text into individual words\n",
+ " tokens = word_tokenize(text)\n",
+ "\n",
+ " # Remove stopwords and apply lemmatize\n",
+ " tokens = [lemmatizer.lemmatize(word) for word in tokens if word not in stop_words]\n",
+ "\n",
+ " # Reconstruct the text from the processed tokens\n",
+ " return ' '.join(tokens)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 87,
+ "id": "fbcec7aa",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data['clean_text_1'] = data['text'].apply(preprocess_text_1)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 88,
+ "id": "5560a21e",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data['clean_text_2'] = data['text'].apply(preprocess_text_2)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 89,
+ "id": "d7a47bb6",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " label \n",
+ " text \n",
+ " clean_text_1 \n",
+ " clean_text_2 \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 0 \n",
+ " donald trump sends out embarrassing new year‚s... \n",
+ " donald trump send embarrass new year eve messa... \n",
+ " donald trump sends embarrassing new year eve m... \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 0 \n",
+ " drunk bragging trump staffer started russian c... \n",
+ " drunk brag trump staffer start russian collus ... \n",
+ " drunk bragging trump staffer started russian c... \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 0 \n",
+ " sheriff david clarke becomes an internet joke ... \n",
+ " sheriff david clark becom internet joke threat... \n",
+ " sheriff david clarke becomes internet joke thr... \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 0 \n",
+ " trump is so obsessed he even has obama‚s name ... \n",
+ " trump obsess even obama name code websit imag \n",
+ " trump obsessed even obamas name coded website ... \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 0 \n",
+ " pope francis just called out donald trump duri... \n",
+ " pope franci call donald trump christma speech \n",
+ " pope francis called donald trump christmas speech \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " label text \\\n",
+ "0 0 donald trump sends out embarrassing new year‚s... \n",
+ "1 0 drunk bragging trump staffer started russian c... \n",
+ "2 0 sheriff david clarke becomes an internet joke ... \n",
+ "3 0 trump is so obsessed he even has obama‚s name ... \n",
+ "4 0 pope francis just called out donald trump duri... \n",
+ "\n",
+ " clean_text_1 \\\n",
+ "0 donald trump send embarrass new year eve messa... \n",
+ "1 drunk brag trump staffer start russian collus ... \n",
+ "2 sheriff david clark becom internet joke threat... \n",
+ "3 trump obsess even obama name code websit imag \n",
+ "4 pope franci call donald trump christma speech \n",
+ "\n",
+ " clean_text_2 \n",
+ "0 donald trump sends embarrassing new year eve m... \n",
+ "1 drunk bragging trump staffer started russian c... \n",
+ "2 sheriff david clarke becomes internet joke thr... \n",
+ "3 trump obsessed even obamas name coded website ... \n",
+ "4 pope francis called donald trump christmas speech "
+ ]
+ },
+ "execution_count": 89,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "data.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "fa558473",
+ "metadata": {},
+ "source": [
+ "### Split"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 90,
+ "id": "7ab7a922",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Without pre processing\n",
+ "\n",
+ "X = data['text']\n",
+ "y = data['text']\n",
+ "\n",
+ "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 91,
+ "id": "1835191d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# With the first pre processing\n",
+ "\n",
+ "X_1 = data['clean_text_1']\n",
+ "y_1 = data['label']\n",
+ "\n",
+ "X_train_1, X_test_1, y_train_1, y_test_1 = train_test_split(X_1, y_1, test_size=0.3, random_state=42)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 92,
+ "id": "a6f33103",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# With the second pre processing\n",
+ "\n",
+ "X_2 = data['clean_text_2']\n",
+ "y_2 = data['label']\n",
+ "\n",
+ "X_train_2, X_test_2, y_train_2, y_test_2 = train_test_split(X_2, y_2, test_size=0.3, random_state=42)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0ca247d2",
+ "metadata": {},
+ "source": [
+ "## TF - IDF"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "27ad43d4",
+ "metadata": {},
+ "source": [
+ "### Simple"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 93,
+ "id": "d486c838",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "vectorizer = TfidfVectorizer()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 94,
+ "id": "01ab692d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "X_train_tfid_1s = vectorizer.fit_transform(X_train_1)\n",
+ "X_test_tfid_1s = vectorizer.transform(X_test_1)\n",
+ "\n",
+ "X_train_tfid_2s = vectorizer.fit_transform(X_train_2)\n",
+ "X_test_tfid_2s = vectorizer.transform(X_test_2)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "66c8f1d9",
+ "metadata": {},
+ "source": [
+ "#### LogisticRegression"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 95,
+ "id": "94129503",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# With the first pre processing\n",
+ "\n",
+ "model_lr_1s = LogisticRegression()\n",
+ "model_lr_1s.fit(X_train_tfid_1s, y_train_1)\n",
+ "\n",
+ "\n",
+ "y_pred_test_tfid_1s = model_lr_1s.predict(X_test_tfid_1s)\n",
+ "y_pred_train_tfid_1s = model_lr_1s.predict(X_train_tfid_1s)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 96,
+ "id": "6958692f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# With the second pre processing\n",
+ "\n",
+ "model_lr_2s = LogisticRegression()\n",
+ "model_lr_2s.fit(X_train_tfid_2s, y_train_2)\n",
+ "\n",
+ "\n",
+ "y_pred_test_tfid_2s = model_lr_2s.predict(X_test_tfid_2s)\n",
+ "y_pred_train_tfid_2s = model_lr_2s.predict(X_train_tfid_2s)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 97,
+ "id": "4d8cb021",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF simple + LogisticRegression predicting with X_test\n",
+ "\n",
+ "Accuracy_1: 0.9303142689830177\n",
+ "\n",
+ "Accuracy_2: 0.9320710521178996\n",
+ "\n",
+ "Classification Report 1:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.94 0.93 0.93 5295\n",
+ " 1 0.92 0.93 0.93 4951\n",
+ "\n",
+ " accuracy 0.93 10246\n",
+ " macro avg 0.93 0.93 0.93 10246\n",
+ "weighted avg 0.93 0.93 0.93 10246\n",
+ "\n",
+ "\n",
+ "Classification Report 2:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.94 0.93 0.93 5295\n",
+ " 1 0.92 0.94 0.93 4951\n",
+ "\n",
+ " accuracy 0.93 10246\n",
+ " macro avg 0.93 0.93 0.93 10246\n",
+ "weighted avg 0.93 0.93 0.93 10246\n",
+ "\n",
+ "\n",
+ "Confusion Matrix 1:\n",
+ " [[4904 391]\n",
+ " [ 323 4628]]\n",
+ "\n",
+ "Confusion Matrix 2:\n",
+ " [[4901 394]\n",
+ " [ 302 4649]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF simple + LogisticRegression predicting with X_test')\n",
+ "\n",
+ "print(\"\\nAccuracy_1:\", accuracy_score(y_test_1, y_pred_test_tfid_1s))\n",
+ "print(\"\\nAccuracy_2:\", accuracy_score(y_test_2, y_pred_test_tfid_2s))\n",
+ "\n",
+ "print(\"\\nClassification Report 1:\\n\", classification_report(y_test_1, y_pred_test_tfid_1s))\n",
+ "print(\"\\nClassification Report 2:\\n\", classification_report(y_test_2, y_pred_test_tfid_2s))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix 1:\\n\", confusion_matrix(y_test_1, y_pred_test_tfid_1s))\n",
+ "print(\"\\nConfusion Matrix 2:\\n\", confusion_matrix(y_test_2, y_pred_test_tfid_2s))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 98,
+ "id": "50701602",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF simple + LogisticRegression predicting with X_train\n",
+ "\n",
+ "Accuracy_1: 0.9528570233414205\n",
+ "\n",
+ "Accuracy_2: 0.9557851585376056\n",
+ "\n",
+ "Classification Report 1:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.96 0.95 0.95 12277\n",
+ " 1 0.95 0.95 0.95 11629\n",
+ "\n",
+ " accuracy 0.95 23906\n",
+ " macro avg 0.95 0.95 0.95 23906\n",
+ "weighted avg 0.95 0.95 0.95 23906\n",
+ "\n",
+ "\n",
+ "Classification Report 2:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.96 0.95 0.96 12277\n",
+ " 1 0.95 0.96 0.95 11629\n",
+ "\n",
+ " accuracy 0.96 23906\n",
+ " macro avg 0.96 0.96 0.96 23906\n",
+ "weighted avg 0.96 0.96 0.96 23906\n",
+ "\n",
+ "\n",
+ "Confusion Matrix 1:\n",
+ " [[11681 596]\n",
+ " [ 531 11098]]\n",
+ "\n",
+ "Confusion Matrix 2:\n",
+ " [[11683 594]\n",
+ " [ 463 11166]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF simple + LogisticRegression predicting with X_train')\n",
+ "\n",
+ "print(\"\\nAccuracy_1:\", accuracy_score(y_train_1, y_pred_train_tfid_1s))\n",
+ "print(\"\\nAccuracy_2:\", accuracy_score(y_train_2, y_pred_train_tfid_2s))\n",
+ "\n",
+ "print(\"\\nClassification Report 1:\\n\", classification_report(y_train_1, y_pred_train_tfid_1s))\n",
+ "print(\"\\nClassification Report 2:\\n\", classification_report(y_train_2, y_pred_train_tfid_2s))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix 1:\\n\", confusion_matrix(y_train_1, y_pred_train_tfid_1s))\n",
+ "print(\"\\nConfusion Matrix 2:\\n\", confusion_matrix(y_train_2, y_pred_train_tfid_2s))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a8a81b72",
+ "metadata": {},
+ "source": [
+ "#### RandomForestClassifier"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 99,
+ "id": "54d6a565",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# With the first pre processing\n",
+ "\n",
+ "rf_1s = RandomForestClassifier(random_state=42, n_jobs=-1)\n",
+ "rf_1s.fit(X_train_tfid_1s, y_train_1)\n",
+ "\n",
+ "\n",
+ "y_pred_test_tfid_1s_rf = rf_1s.predict(X_test_tfid_1s)\n",
+ "y_pred_train_tfid_1s_rf = rf_1s.predict(X_train_tfid_1s)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 100,
+ "id": "f24968dc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# With the second pre processing\n",
+ "\n",
+ "rf_2s = RandomForestClassifier(random_state=42, n_jobs=-1)\n",
+ "rf_2s.fit(X_train_tfid_2s, y_train_2)\n",
+ "\n",
+ "\n",
+ "y_pred_test_tfid_2s_rf = rf_2s.predict(X_test_tfid_2s)\n",
+ "y_pred_train_tfid_2s_rf = rf_2s.predict(X_train_tfid_2s)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 101,
+ "id": "28e49ca5",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF simple + RandomForestClassifier predicting with X_test\n",
+ "\n",
+ "Accuracy_1: 0.9181143861018934\n",
+ "\n",
+ "Accuracy_2: 0.9152840132734725\n",
+ "\n",
+ "Classification Report 1:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.92 0.92 0.92 5295\n",
+ " 1 0.91 0.92 0.92 4951\n",
+ "\n",
+ " accuracy 0.92 10246\n",
+ " macro avg 0.92 0.92 0.92 10246\n",
+ "weighted avg 0.92 0.92 0.92 10246\n",
+ "\n",
+ "\n",
+ "Classification Report 2:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.92 0.91 0.92 5295\n",
+ " 1 0.91 0.92 0.91 4951\n",
+ "\n",
+ " accuracy 0.92 10246\n",
+ " macro avg 0.92 0.92 0.92 10246\n",
+ "weighted avg 0.92 0.92 0.92 10246\n",
+ "\n",
+ "\n",
+ "Confusion Matrix 1:\n",
+ " [[4854 441]\n",
+ " [ 398 4553]]\n",
+ "\n",
+ "Confusion Matrix 2:\n",
+ " [[4822 473]\n",
+ " [ 395 4556]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF simple + RandomForestClassifier predicting with X_test')\n",
+ "\n",
+ "print(\"\\nAccuracy_1:\", accuracy_score(y_test_1, y_pred_test_tfid_1s_rf))\n",
+ "print(\"\\nAccuracy_2:\", accuracy_score(y_test_2, y_pred_test_tfid_2s_rf))\n",
+ "\n",
+ "print(\"\\nClassification Report 1:\\n\", classification_report(y_test_1, y_pred_test_tfid_1s_rf))\n",
+ "print(\"\\nClassification Report 2:\\n\", classification_report(y_test_2, y_pred_test_tfid_2s_rf))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix 1:\\n\", confusion_matrix(y_test_1, y_pred_test_tfid_1s_rf))\n",
+ "print(\"\\nConfusion Matrix 2:\\n\", confusion_matrix(y_test_2, y_pred_test_tfid_2s_rf))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 102,
+ "id": "e9c858cd",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF simple + RandomForestClassifier predicting with X_train\n",
+ "\n",
+ "Accuracy_1: 1.0\n",
+ "\n",
+ "Accuracy_2: 1.0\n",
+ "\n",
+ "Classification Report 1:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 1.00 1.00 1.00 12277\n",
+ " 1 1.00 1.00 1.00 11629\n",
+ "\n",
+ " accuracy 1.00 23906\n",
+ " macro avg 1.00 1.00 1.00 23906\n",
+ "weighted avg 1.00 1.00 1.00 23906\n",
+ "\n",
+ "\n",
+ "Classification Report 2:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 1.00 1.00 1.00 12277\n",
+ " 1 1.00 1.00 1.00 11629\n",
+ "\n",
+ " accuracy 1.00 23906\n",
+ " macro avg 1.00 1.00 1.00 23906\n",
+ "weighted avg 1.00 1.00 1.00 23906\n",
+ "\n",
+ "\n",
+ "Confusion Matrix 1:\n",
+ " [[12277 0]\n",
+ " [ 0 11629]]\n",
+ "\n",
+ "Confusion Matrix 2:\n",
+ " [[12277 0]\n",
+ " [ 0 11629]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF simple + RandomForestClassifier predicting with X_train')\n",
+ "\n",
+ "print(\"\\nAccuracy_1:\", accuracy_score(y_train_1, y_pred_train_tfid_1s_rf))\n",
+ "print(\"\\nAccuracy_2:\", accuracy_score(y_train_2, y_pred_train_tfid_2s_rf))\n",
+ "\n",
+ "print(\"\\nClassification Report 1:\\n\", classification_report(y_train_1, y_pred_train_tfid_1s_rf))\n",
+ "print(\"\\nClassification Report 2:\\n\", classification_report(y_train_2, y_pred_train_tfid_2s_rf))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix 1:\\n\", confusion_matrix(y_train_1, y_pred_train_tfid_1s_rf))\n",
+ "print(\"\\nConfusion Matrix 2:\\n\", confusion_matrix(y_train_2, y_pred_train_tfid_2s_rf))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "faa6cfe2",
+ "metadata": {},
+ "source": [
+ "Considering all the metrics, we chose to continue with the second preprocessing and with the logistic regression model to try to improve the model."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b8b5258d",
+ "metadata": {},
+ "source": [
+ "### Improving"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 103,
+ "id": "2d421e28",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "🔍 Testing combination 1 with params: {'ngram_range': (1, 1), 'max_df': 0.75, 'min_df': 3, 'max_features': 10000, 'sublinear_tf': True, 'use_idf': False, 'norm': None}\n",
+ "Accuracy: 0.9189\n",
+ "\n",
+ "🔍 Testing combination 2 with params: {'ngram_range': (1, 1), 'max_df': 0.85, 'min_df': 5, 'max_features': 5000, 'sublinear_tf': False, 'use_idf': True, 'norm': 'l2'}\n",
+ "Accuracy: 0.9203\n",
+ "\n",
+ "🔍 Testing combination 3 with params: {'ngram_range': (1, 1), 'max_df': 0.95, 'min_df': 1, 'max_features': 5000, 'sublinear_tf': True, 'use_idf': False, 'norm': 'l2'}\n",
+ "Accuracy: 0.9141\n",
+ "\n",
+ "🔍 Testing combination 4 with params: {'ngram_range': (1, 2), 'max_df': 0.95, 'min_df': 1, 'max_features': 10000, 'sublinear_tf': False, 'use_idf': True, 'norm': None}\n",
+ "Accuracy: 0.9187\n",
+ "\n",
+ "🔍 Testing combination 5 with params: {'ngram_range': (1, 1), 'max_df': 0.95, 'min_df': 5, 'max_features': 5000, 'sublinear_tf': False, 'use_idf': False, 'norm': None}\n",
+ "Accuracy: 0.9187\n",
+ "\n",
+ "🔍 Testing combination 6 with params: {'ngram_range': (1, 1), 'max_df': 0.85, 'min_df': 1, 'max_features': 10000, 'sublinear_tf': False, 'use_idf': True, 'norm': None}\n",
+ "Accuracy: 0.9111\n",
+ "\n",
+ "🔍 Testing combination 7 with params: {'ngram_range': (1, 2), 'max_df': 0.95, 'min_df': 3, 'max_features': 5000, 'sublinear_tf': True, 'use_idf': False, 'norm': None}\n",
+ "Accuracy: 0.9178\n",
+ "\n",
+ "🔍 Testing combination 8 with params: {'ngram_range': (1, 2), 'max_df': 0.85, 'min_df': 1, 'max_features': 5000, 'sublinear_tf': True, 'use_idf': False, 'norm': 'l2'}\n",
+ "Accuracy: 0.9115\n",
+ "\n",
+ "🔍 Testing combination 9 with params: {'ngram_range': (1, 1), 'max_df': 0.95, 'min_df': 1, 'max_features': 10000, 'sublinear_tf': False, 'use_idf': False, 'norm': 'l2'}\n",
+ "Accuracy: 0.9115\n",
+ "\n",
+ "🔍 Testing combination 10 with params: {'ngram_range': (1, 2), 'max_df': 0.75, 'min_df': 1, 'max_features': 10000, 'sublinear_tf': True, 'use_idf': False, 'norm': None}\n",
+ "Accuracy: 0.9228\n",
+ "\n",
+ "✅ Best combination found:\n",
+ "{'ngram_range': (1, 2), 'max_df': 0.75, 'min_df': 1, 'max_features': 10000, 'sublinear_tf': True, 'use_idf': False, 'norm': None}\n",
+ "Best validation accuracy: 0.9228\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Split a portion of the training set for validation\n",
+ "X_train_split, X_val_split, y_train_split, y_val_split = train_test_split(\n",
+ " X_train_2, y_train_2, test_size=0.2, random_state=42\n",
+ ")\n",
+ "\n",
+ "# Hyperparameter search space\n",
+ "param_grid = {\n",
+ " 'ngram_range': [(1, 1), (1, 2)],\n",
+ " 'max_df': [0.75, 0.85, 0.95],\n",
+ " 'min_df': [1, 3, 5],\n",
+ " 'max_features': [5000, 10000],\n",
+ " 'sublinear_tf': [True, False],\n",
+ " 'use_idf': [True, False],\n",
+ " 'norm': ['l2', None]\n",
+ "}\n",
+ "\n",
+ "# Generate 10 random parameter combinations\n",
+ "random_combinations = []\n",
+ "for _ in range(10):\n",
+ " combo = {key: random.choice(values) for key, values in param_grid.items()}\n",
+ " random_combinations.append(combo)\n",
+ "\n",
+ "# Store the best model\n",
+ "best_score = 0\n",
+ "best_vectorizer = None\n",
+ "best_model = None\n",
+ "best_params = None\n",
+ "\n",
+ "for i, params in enumerate(random_combinations):\n",
+ " print(f\"\\n🔍 Testing combination {i+1} with params: {params}\")\n",
+ " \n",
+ " vectorizer = TfidfVectorizer(\n",
+ " stop_words='english',\n",
+ " ngram_range=params['ngram_range'],\n",
+ " max_df=params['max_df'],\n",
+ " min_df=params['min_df'],\n",
+ " max_features=params['max_features'],\n",
+ " sublinear_tf=params['sublinear_tf'],\n",
+ " use_idf=params['use_idf'],\n",
+ " norm=params['norm']\n",
+ " )\n",
+ " \n",
+ " X_train_vec = vectorizer.fit_transform(X_train_split)\n",
+ " X_val_vec = vectorizer.transform(X_val_split)\n",
+ " \n",
+ " model = LogisticRegression(max_iter=1000)\n",
+ " model.fit(X_train_vec, y_train_split)\n",
+ " \n",
+ " y_pred = model.predict(X_val_vec)\n",
+ " score = accuracy_score(y_val_split, y_pred)\n",
+ " print(f\"Accuracy: {score:.4f}\")\n",
+ " \n",
+ " if score > best_score:\n",
+ " best_score = score\n",
+ " best_vectorizer = vectorizer\n",
+ " best_model = model\n",
+ " best_params = params\n",
+ "\n",
+ "# Final result\n",
+ "print(\"\\n✅ Best combination found:\")\n",
+ "print(best_params)\n",
+ "print(f\"Best validation accuracy: {best_score:.4f}\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 104,
+ "id": "a5fb21d1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "vectorizer_imp = TfidfVectorizer(\n",
+ " ngram_range=(1,2),\n",
+ " max_features=10000,\n",
+ " min_df=3,\n",
+ " max_df=0.75,\n",
+ " stop_words='english',\n",
+ " sublinear_tf=True,\n",
+ " use_idf=False,\n",
+ " norm=None\n",
+ ")\n",
+ "\n",
+ "\n",
+ "X_train_tfid = vectorizer_imp.fit_transform(X_train_2)\n",
+ "X_test_tfid = vectorizer_imp.transform(X_test_2)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 105,
+ "id": "3ffbe41d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model_lr = LogisticRegression()\n",
+ "model_lr.fit(X_train_tfid, y_train_2)\n",
+ "\n",
+ "\n",
+ "y_pred_test_tfid = model_lr.predict(X_test_tfid)\n",
+ "y_pred_train_tfid = model_lr.predict(X_train_tfid)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 106,
+ "id": "307d4c58",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF + LogisticRegression predicting with X_test\n",
+ "\n",
+ "Accuracy: 0.9361702127659575\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.95 0.93 0.94 5295\n",
+ " 1 0.93 0.94 0.93 4951\n",
+ "\n",
+ " accuracy 0.94 10246\n",
+ " macro avg 0.94 0.94 0.94 10246\n",
+ "weighted avg 0.94 0.94 0.94 10246\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[4924 371]\n",
+ " [ 283 4668]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF + LogisticRegression predicting with X_test')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_test_2, y_pred_test_tfid))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_test_2, y_pred_test_tfid))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_test_2, y_pred_test_tfid))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 107,
+ "id": "c0a2e47a",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF + LogisticRegression predicting with X_train\n",
+ "\n",
+ "Accuracy: 0.9770768844641513\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.98 0.97 0.98 12277\n",
+ " 1 0.97 0.98 0.98 11629\n",
+ "\n",
+ " accuracy 0.98 23906\n",
+ " macro avg 0.98 0.98 0.98 23906\n",
+ "weighted avg 0.98 0.98 0.98 23906\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[11967 310]\n",
+ " [ 238 11391]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF + LogisticRegression predicting with X_train')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_train_2, y_pred_train_tfid))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_train_2, y_pred_train_tfid))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_train_2, y_pred_train_tfid))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2aff0b99",
+ "metadata": {},
+ "source": [
+ "### Ensemble"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 108,
+ "id": "aaaac2bf",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "VotingClassifier(estimators=[('lr', LogisticRegression()),\n",
+ " ('rf', RandomForestClassifier()),\n",
+ " ('xgb',\n",
+ " XGBClassifier(base_score=None, booster=None,\n",
+ " callbacks=None,\n",
+ " colsample_bylevel=None,\n",
+ " colsample_bynode=None,\n",
+ " colsample_bytree=None, device=None,\n",
+ " early_stopping_rounds=None,\n",
+ " enable_categorical=False,\n",
+ " eval_metric='logloss',\n",
+ " feature_types=None,\n",
+ " feature_weights=None, gam...\n",
+ " grow_policy=None,\n",
+ " importance_type=None,\n",
+ " interaction_constraints=None,\n",
+ " learning_rate=None, max_bin=None,\n",
+ " max_cat_threshold=None,\n",
+ " max_cat_to_onehot=None,\n",
+ " max_delta_step=None, max_depth=None,\n",
+ " max_leaves=None,\n",
+ " min_child_weight=None, missing=nan,\n",
+ " monotone_constraints=None,\n",
+ " multi_strategy=None,\n",
+ " n_estimators=None, n_jobs=None,\n",
+ " num_parallel_tree=None, ...))],\n",
+ " voting='soft') In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org. \n",
+ "
\n",
+ "
\n",
+ " Parameters \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " estimators \n",
+ " [('lr', ...), ('rf', ...), ...] \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " voting \n",
+ " 'soft' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " weights \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " n_jobs \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " flatten_transform \n",
+ " True \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " verbose \n",
+ " False \n",
+ " \n",
+ " \n",
+ " \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n",
+ " Parameters \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " penalty \n",
+ " 'l2' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " dual \n",
+ " False \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " tol \n",
+ " 0.0001 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " C \n",
+ " 1.0 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " fit_intercept \n",
+ " True \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " intercept_scaling \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " class_weight \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " random_state \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " solver \n",
+ " 'lbfgs' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_iter \n",
+ " 100 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " multi_class \n",
+ " 'deprecated' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " verbose \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " warm_start \n",
+ " False \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " n_jobs \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " l1_ratio \n",
+ " None \n",
+ " \n",
+ " \n",
+ " \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n",
+ " Parameters \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " n_estimators \n",
+ " 100 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " criterion \n",
+ " 'gini' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_depth \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " min_samples_split \n",
+ " 2 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " min_samples_leaf \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " min_weight_fraction_leaf \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_features \n",
+ " 'sqrt' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_leaf_nodes \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " min_impurity_decrease \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " bootstrap \n",
+ " True \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " oob_score \n",
+ " False \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " n_jobs \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " random_state \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " verbose \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " warm_start \n",
+ " False \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " class_weight \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " ccp_alpha \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_samples \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " monotonic_cst \n",
+ " None \n",
+ " \n",
+ " \n",
+ " \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n",
+ " Parameters \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " objective \n",
+ " 'binary:logistic' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " base_score \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " booster \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " callbacks \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " colsample_bylevel \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " colsample_bynode \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " colsample_bytree \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " device \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " early_stopping_rounds \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " enable_categorical \n",
+ " False \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " eval_metric \n",
+ " 'logloss' \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " feature_types \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " feature_weights \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " gamma \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " grow_policy \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " importance_type \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " interaction_constraints \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " learning_rate \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_bin \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_cat_threshold \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_cat_to_onehot \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_delta_step \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_depth \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " max_leaves \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " min_child_weight \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " missing \n",
+ " nan \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " monotone_constraints \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " multi_strategy \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " n_estimators \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " n_jobs \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " num_parallel_tree \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " random_state \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " reg_alpha \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " reg_lambda \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " sampling_method \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " scale_pos_weight \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " subsample \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " tree_method \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " validate_parameters \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " verbosity \n",
+ " None \n",
+ " \n",
+ " \n",
+ "\n",
+ " \n",
+ " \n",
+ " use_label_encoder \n",
+ " False \n",
+ " \n",
+ " \n",
+ " \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ "VotingClassifier(estimators=[('lr', LogisticRegression()),\n",
+ " ('rf', RandomForestClassifier()),\n",
+ " ('xgb',\n",
+ " XGBClassifier(base_score=None, booster=None,\n",
+ " callbacks=None,\n",
+ " colsample_bylevel=None,\n",
+ " colsample_bynode=None,\n",
+ " colsample_bytree=None, device=None,\n",
+ " early_stopping_rounds=None,\n",
+ " enable_categorical=False,\n",
+ " eval_metric='logloss',\n",
+ " feature_types=None,\n",
+ " feature_weights=None, gam...\n",
+ " grow_policy=None,\n",
+ " importance_type=None,\n",
+ " interaction_constraints=None,\n",
+ " learning_rate=None, max_bin=None,\n",
+ " max_cat_threshold=None,\n",
+ " max_cat_to_onehot=None,\n",
+ " max_delta_step=None, max_depth=None,\n",
+ " max_leaves=None,\n",
+ " min_child_weight=None, missing=nan,\n",
+ " monotone_constraints=None,\n",
+ " multi_strategy=None,\n",
+ " n_estimators=None, n_jobs=None,\n",
+ " num_parallel_tree=None, ...))],\n",
+ " voting='soft')"
+ ]
+ },
+ "execution_count": 108,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "\n",
+ "ensemble = VotingClassifier(estimators=[\n",
+ " ('lr', LogisticRegression()),\n",
+ " ('rf', RandomForestClassifier()),\n",
+ " ('xgb', XGBClassifier(use_label_encoder=False, eval_metric='logloss'))\n",
+ "], voting='soft')\n",
+ "\n",
+ "ensemble.fit(X_train_tfid, y_train_2)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 109,
+ "id": "dff12d68",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "y_pred_test_tfid_em = ensemble.predict(X_test_tfid)\n",
+ "y_pred_train_tfid_em = ensemble.predict(X_train_tfid)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 110,
+ "id": "0fac661e",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation TF-IDF + ensemble predicting with X_test\n",
+ "\n",
+ "Accuracy: 0.9300214717938707\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.94 0.92 0.93 5295\n",
+ " 1 0.92 0.94 0.93 4951\n",
+ "\n",
+ " accuracy 0.93 10246\n",
+ " macro avg 0.93 0.93 0.93 10246\n",
+ "weighted avg 0.93 0.93 0.93 10246\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[4895 400]\n",
+ " [ 317 4634]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation TF-IDF + ensemble predicting with X_test')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_test_2, y_pred_test_tfid_em))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_test_2, y_pred_test_tfid_em))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_test_2, y_pred_test_tfid_em))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2f120953",
+ "metadata": {},
+ "source": [
+ "## Embedding"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 111,
+ "id": "5b810577",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "\n",
+ "model_embed = SentenceTransformer('all-MiniLM-L6-v2')\n",
+ "\n",
+ "X_train_embed = model_embed.encode(X_train_2.tolist(), show_progress_bar=False)\n",
+ "X_test_embed = model_embed.encode(X_test_2.tolist(), show_progress_bar=False)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 112,
+ "id": "a374a24e",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.90 0.87 0.88 5295\n",
+ " 1 0.87 0.89 0.88 4951\n",
+ "\n",
+ " accuracy 0.88 10246\n",
+ " macro avg 0.88 0.88 0.88 10246\n",
+ "weighted avg 0.88 0.88 0.88 10246\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "\n",
+ "clf = GradientBoostingClassifier(n_estimators=100, learning_rate=0.1, max_depth=3, random_state=42)\n",
+ "clf.fit(X_train_embed, y_train_2)\n",
+ "\n",
+ "\n",
+ "y_pred = clf.predict(X_test_embed)\n",
+ "print(classification_report(y_test_2, y_pred))\n",
+ "\n",
+ "y_pred_train = clf.predict(X_train_embed)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 113,
+ "id": "bc685b7c",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation Embedding + GradientBoostingClassifier predicting with X_test\n",
+ "\n",
+ "Accuracy: 0.8807339449541285\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.90 0.87 0.88 5295\n",
+ " 1 0.87 0.89 0.88 4951\n",
+ "\n",
+ " accuracy 0.88 10246\n",
+ " macro avg 0.88 0.88 0.88 10246\n",
+ "weighted avg 0.88 0.88 0.88 10246\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[4613 682]\n",
+ " [ 540 4411]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation Embedding + GradientBoostingClassifier predicting with X_test')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_test_2, y_pred))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_test_2, y_pred))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_test_2, y_pred))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 114,
+ "id": "2f324290",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation Embedding + GradientBoostingClassifier predicting with X_train\n",
+ "\n",
+ "Accuracy: 0.8932067263448507\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.91 0.88 0.89 12277\n",
+ " 1 0.88 0.90 0.89 11629\n",
+ "\n",
+ " accuracy 0.89 23906\n",
+ " macro avg 0.89 0.89 0.89 23906\n",
+ "weighted avg 0.89 0.89 0.89 23906\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[10839 1438]\n",
+ " [ 1115 10514]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation Embedding + GradientBoostingClassifier predicting with X_train')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_train_2, y_pred_train))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_train_2, y_pred_train))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_train_2, y_pred_train))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 115,
+ "id": "5c06a127",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.91 0.90 0.90 5295\n",
+ " 1 0.89 0.91 0.90 4951\n",
+ "\n",
+ " accuracy 0.90 10246\n",
+ " macro avg 0.90 0.90 0.90 10246\n",
+ "weighted avg 0.90 0.90 0.90 10246\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "\n",
+ "clf_2 = LogisticRegression(max_iter=1000)\n",
+ "clf_2.fit(X_train_embed, y_train_2)\n",
+ "\n",
+ "\n",
+ "y_pred_2 = clf_2.predict(X_test_embed)\n",
+ "print(classification_report(y_test_2, y_pred_2))\n",
+ "\n",
+ "y_pred_2_train = clf_2.predict(X_train_embed)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 116,
+ "id": "c57a3f58",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation Embedding + LogisticRegression predicting with X_test\n",
+ "\n",
+ "Accuracy: 0.9014249463205153\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.91 0.90 0.90 5295\n",
+ " 1 0.89 0.91 0.90 4951\n",
+ "\n",
+ " accuracy 0.90 10246\n",
+ " macro avg 0.90 0.90 0.90 10246\n",
+ "weighted avg 0.90 0.90 0.90 10246\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[4749 546]\n",
+ " [ 464 4487]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation Embedding + LogisticRegression predicting with X_test')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_test_2, y_pred_2))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_test_2, y_pred_2))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_test_2, y_pred_2))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 117,
+ "id": "87106acb",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Evaluation Embedding + LogisticRegression predicting with X_train\n",
+ "\n",
+ "Accuracy: 0.9026185894754455\n",
+ "\n",
+ "Classification Report:\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.91 0.90 0.90 12277\n",
+ " 1 0.89 0.91 0.90 11629\n",
+ "\n",
+ " accuracy 0.90 23906\n",
+ " macro avg 0.90 0.90 0.90 23906\n",
+ "weighted avg 0.90 0.90 0.90 23906\n",
+ "\n",
+ "\n",
+ "Confusion Matrix:\n",
+ " [[11028 1249]\n",
+ " [ 1079 10550]]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('Evaluation Embedding + LogisticRegression predicting with X_train')\n",
+ "\n",
+ "print(\"\\nAccuracy:\", accuracy_score(y_train_2, y_pred_2_train))\n",
+ "\n",
+ "print(\"\\nClassification Report:\\n\", classification_report(y_train_2, y_pred_2_train))\n",
+ "\n",
+ "print(\"\\nConfusion Matrix:\\n\", confusion_matrix(y_train_2, y_pred_2_train))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "399ecff7",
+ "metadata": {},
+ "source": [
+ "### Testing Dataset"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 118,
+ "id": "80a2d515",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data_test=pd.read_csv('dataset/testing_data.csv',encoding='UTF-8-SIG',header=None,sep='\\t')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 119,
+ "id": "9fd9f9cb",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 2 \n",
+ " copycat muslim terrorist arrested with assault... \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 2 \n",
+ " wow! chicago protester caught on camera admits... \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 2 \n",
+ " germany's fdp look to fill schaeuble's big shoes \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 2 \n",
+ " mi school sends welcome back packet warning ki... \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 2 \n",
+ " u.n. seeks 'massive' aid boost amid rohingya '... \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " 0 1\n",
+ "0 2 copycat muslim terrorist arrested with assault...\n",
+ "1 2 wow! chicago protester caught on camera admits...\n",
+ "2 2 germany's fdp look to fill schaeuble's big shoes\n",
+ "3 2 mi school sends welcome back packet warning ki...\n",
+ "4 2 u.n. seeks 'massive' aid boost amid rohingya '..."
+ ]
+ },
+ "execution_count": 119,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "data_test.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 120,
+ "id": "f6fc3042",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data_test.columns = ['label_t', 'text_t']"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 121,
+ "id": "73c080e1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data_test['clean_text'] = data_test['text_t'].apply(preprocess_text_2)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 122,
+ "id": "455879dc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "X_test = vectorizer_imp.transform(data_test['clean_text'])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 123,
+ "id": "70f83fba",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "y_pred = model_lr.predict(X_test)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 124,
+ "id": "974e6216",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data_test['label_t'] = y_pred"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "e8fdfc06",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data_test.to_csv('Test_with_predictions.csv', index=False)"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "nlp",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.10.18"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/Test_with_predictions.csv b/Test_with_predictions.csv
new file mode 100644
index 0000000..787e891
--- /dev/null
+++ b/Test_with_predictions.csv
@@ -0,0 +1,9985 @@
+label_t,text_t,clean_text
+0,copycat muslim terrorist arrested with assault weapons,copycat muslim terrorist arrested assault weapon
+0,wow! chicago protester caught on camera admits violent activity was pre-planned: ‚it‚s not gonna be peaceful‚,wow chicago protester caught camera admits violent activity preplanned gon na peaceful
+0,germany's fdp look to fill schaeuble's big shoes,germany fdp look fill schaeubles big shoe
+0,mi school sends welcome back packet warning kids against wearing u.s. flag to school,mi school sends welcome back packet warning kid wearing u flag school
+1,u.n. seeks 'massive' aid boost amid rohingya 'emergency within an emergency',un seek massive aid boost amid rohingya emergency within emergency
+0,did oprah just leave ‚nasty‚ hillary wishing she wouldn‚t have endorsed her? [video],oprah leave nasty hillary wishing wouldnt endorsed video
+1,france's macron says his job not 'cool' cites talks with turkey's erdogan,france macron say job cool cite talk turkey erdogan
+0,flashback: chilling ‚60 minutes‚ interview with george soros nearly 20 years ago,flashback chilling minute interview george soros nearly year ago
+1,spanish foreign ministry says to expel north korean ambassador,spanish foreign ministry say expel north korean ambassador
+1,trump says cuba 'did some bad things' aimed at u.s. diplomats,trump say cuba bad thing aimed u diplomat
+1,merkel names refugee expert as foreign policy adviser,merkel name refugee expert foreign policy adviser
+1,brazil house speaker says temer charges must be taken together,brazil house speaker say temer charge must taken together
+0,finger in every pie: how cia produces our ‚news‚ and entertainment,finger every pie cia produce news entertainment
+0,how malia obama‚s pot smoking friend is connected to her father‚and why this thug with brutal criminal history is now in trouble with the law (again),malia obamas pot smoking friend connected fatherand thug brutal criminal history trouble law
+1,no-one can wreck our democracy schaueble tells germans,noone wreck democracy schaueble tell german
+0,media ignores post on facebook from man who threatened to blow up ca mosque: ‚hillary would make a great president‚,medium ignores post facebook man threatened blow ca mosque hillary would make great president
+0,left-wing author blasts democrats for ‚scandal-mongering‚: ‚rachel maddow‚s dots may never connect.‚ [video],leftwing author blast democrat scandalmongering rachel maddows dot may never connect video
+0,revealed: how democratic party pays agit-prop ‚protesters‚ to incite violence at trump events,revealed democratic party pay agitprop protester incite violence trump event
+1,macron calls for french food chain changes to help farmers,macron call french food chain change help farmer
+0,breaking news: gop controlled house votes to repeal obamacare,breaking news gop controlled house vote repeal obamacare
+1,dutch government rolls out carpet for business with tax cuts,dutch government roll carpet business tax cut
+1,exclusive: u.s.-backed raqqa battle should end in two months says senior sdf commander,exclusive usbacked raqqa battle end two month say senior sdf commander
+0,mainstream media fake news: 21st century wire debates american ‚liberal‚ academic,mainstream medium fake news st century wire debate american liberal academic
+1,turkish forces set up positions in syria's idlib,turkish force set position syria idlib
+0,breaking: [video] controversial mayor who refused to allow sharia law in texas city where muslim clock boy went to school explains why school can‚t tell their side of story,breaking video controversial mayor refused allow sharia law texas city muslim clock boy went school explains school cant tell side story
+0,arizona bikers are about to become violent ‚dreamers‚ worst nightmare at upcoming phoenix trump rally,arizona bikers become violent dreamer worst nightmare upcoming phoenix trump rally
+1,mexico school collapse spurs doubts over building code for quakes,mexico school collapse spur doubt building code quake
+0,boiler room #94 ‚ president trump & the great neo-liberal freakout of 2017,boiler room president trump great neoliberal freakout
+0,say what? tide detergent joins forces with open borders organization la raza to ‚wash away racism‚ [video],say tide detergent join force open border organization la raza wash away racism video
+1,episode #9 ‚ on the qt: ‚cozy bears & eggnog‚ ‚ sober analysis of russian hack hysteria,episode qt cozy bear eggnog sober analysis russian hack hysteria
+1,germany softens stance on turkish arms sales citing security,germany softens stance turkish arm sale citing security
+0,man walks into target with undercover camera‚watch manager‚s shocking reply after he asks to use women‚s bathroom,man walk target undercover camerawatch manager shocking reply asks use womens bathroom
+0,as hillary crashes and burns‚ the dems look to a recycled rich white guy to save their ‚diverse,hillary crash burn dems look recycled rich white guy save diverse
+0,oops! hillary‚s hit woman lied about trump groping her‚eye-witness comes forward: ‚it was she that was the one being flirtatious‚,oops hillary hit woman lied trump groping hereyewitness come forward one flirtatious
+0,college that receives $280 million in state,college receives million state
+1,u.s. military in iraq urges iraqis kurds to avoid escalation,u military iraq urge iraqi kurd avoid escalation
+1,singapore man and woman arrested for 'terrorism-related' activity,singapore man woman arrested terrorismrelated activity
+0,hillary clinton jumps the shark with ‚trump‚s secret russian server‚ conspiracy theory,hillary clinton jump shark trump secret russian server conspiracy theory
+1,venezuela's unrest food scarcity take psychological toll on children,venezuela unrest food scarcity take psychological toll child
+1,u.s. willing if asked to facilitate talks between kurds baghdad: state department,u willing asked facilitate talk kurd baghdad state department
+1,u.s. house to vote on non-nuclear iran sanctions next week,u house vote nonnuclear iran sanction next week
+1,kurdish government holds meetings in baghdad on eve of independence vote,kurdish government hold meeting baghdad eve independence vote
+0,fox news‚ shepard smith has liberal meltdown over trump press conference [video]‚#fireshepardsmith,fox news shepard smith liberal meltdown trump press conference videofireshepardsmith
+1,china vows to scrap secret interrogations of communist party members,china vow scrap secret interrogation communist party member
+0,awesome! college prof calls cops on conservatives but didn‚t expect this! [video],awesome college prof call cop conservative didnt expect video
+1,gupta emails still under investigation: top south africa prosecutor,gupta email still investigation top south africa prosecutor
+0,maid screams,maid scream
+1,u.n. experts on women and children's rights decry myanmar atrocities,un expert woman childrens right decry myanmar atrocity
+0,you won‚t believe this: watch donna brazile defend her decision to cheat by leaking questions to hillary [video],wont believe watch donna brazile defend decision cheat leaking question hillary video
+0,there‚s something hokey about ted,there something hokey ted
+0,boiler room ep #68 ‚ 4 non-binary blondes & social justice triggly convulsions,boiler room ep nonbinary blonde social justice triggly convulsion
+0,more winning! after 14 year ban,winning year ban
+1,danish divers find missing body parts of swedish journalist,danish diver find missing body part swedish journalist
+0,malia obama to attend university with 5.9% acceptance rate‚black privilege? [video],malia obama attend university acceptance rateblack privilege video
+0,low flush toilets,low flush toilet
+0,shocking physical abuse revealed: former secret service agent says agents faced predicament about how to protect bill from physical violence by hillary [video],shocking physical abuse revealed former secret service agent say agent faced predicament protect bill physical violence hillary video
+0,muslim activists running for office in key states‚is this the ‚fundamental transformation‚?,muslim activist running office key statesis fundamental transformation
+1,british police feel strain from attacks after latest london bombing,british police feel strain attack latest london bombing
+0,black lives matter terrorist: asks ‚allah‚ to help her not ‚kill men and white folks‚,black life matter terrorist asks allah help kill men white folk
+0,hillary panders to black radio hosts in attempt to tie herself to racist beyonce song‚host asks if she needs mouth to mouth or cpr? [watch],hillary pander black radio host attempt tie racist beyonce songhost asks need mouth mouth cpr watch
+0,wikileaks bombshell: huge pay to play by hillary that risked our national security‚how is this legal?,wikileaks bombshell huge pay play hillary risked national securityhow legal
+0,wife of lions quarterback matthew stafford just sent a brutal message to nfl players who disrespect our flag,wife lion quarterback matthew stafford sent brutal message nfl player disrespect flag
+0,guess how leftists,guess leftist
+1,bahrain rejects amnesty report citing crackdown on dissent,bahrain reject amnesty report citing crackdown dissent
+1,not a journalist: cnn‚s brian stelter manages clinton health cover-up,journalist cnns brian stelter manages clinton health coverup
+0,black female trump executive reads powerful letter she wrote to dispel lies being told about trump family,black female trump executive read powerful letter wrote dispel lie told trump family
+0,open borders bernie threatens sheriff arpaio for arresting illegal aliens: ‚watch out joe‚,open border bernie threatens sheriff arpaio arresting illegal alien watch joe
+1,cuba could stop 'attacks' against americans: white house,cuba could stop attack american white house
+0,army threatens green beret war hero with court martial for whistleblowing on failed hostage rescue,army threatens green beret war hero court martial whistleblowing failed hostage rescue
+1,hurricane irma kills at least six on french island of saint-martin,hurricane irma kill least six french island saintmartin
+1,trump to announce broad iran strategy this week: white house,trump announce broad iran strategy week white house
+0,iran promises 'crushing' response if u.s. designates guards a terrorist group,iran promise crushing response u designates guard terrorist group
+1,thailand's ousted pm yingluck has fled abroad: sources,thailand ousted pm yingluck fled abroad source
+1,macron fights 'president of the rich' tag after ending wealth tax,macron fight president rich tag ending wealth tax
+0,should this racist girl be fired for behaving like our first lady?,racist girl fired behaving like first lady
+1,uk pm may wants to be a strong friend to the eu,uk pm may want strong friend eu
+1,muslim immigrant chanted ‚allahu akbar‚ while raping gas station attendant‚refused to appear in nd court,muslim immigrant chanted allahu akbar raping gas station attendantrefused appear nd court
+0,clinton charities raked in taxpayer dollars in the millions,clinton charity raked taxpayer dollar million
+1,trump's tougher stance could backfire by boosting iran's guards,trump tougher stance could backfire boosting iran guard
+1,us coalition airstrike on syrian army in al-tanf is another calculated war crime,u coalition airstrike syrian army altanf another calculated war crime
+0,breaking: wikileaks to give tech companies exclusive access to cia hack tools,breaking wikileaks give tech company exclusive access cia hack tool
+0,hilarious video shows reddit user apologizing to ‚terror organization‚ cnn after they threatened to ‚out‚ him to public,hilarious video show reddit user apologizing terror organization cnn threatened public
+1,peru congress passes bill to legalize medical marijuana,peru congress pass bill legalize medical marijuana
+0,wow! sean spicer destroys bbc,wow sean spicer destroys bbc
+0,syrian muslim man whose family perished on trip so he could get free dental care has new spokesperson role,syrian muslim man whose family perished trip could get free dental care new spokesperson role
+1,go-go going as chinese women fuel thai tourism boom,gogo going chinese woman fuel thai tourism boom
+0,hillary calls on cranky socialist she stole election from to sway free sh*t voters [video],hillary call cranky socialist stole election sway free sht voter video
+0,why do hillary and barack choose islam over christianity every time?,hillary barack choose islam christianity every time
+1,race obsessed democrat congressman caught allowing daughter to use vehicle with congressional plates as taxi for hire,race obsessed democrat congressman caught allowing daughter use vehicle congressional plate taxi hire
+0,wow! russian lawyer who met with donald trump jr. seen in photo with person tied to obama only 8 days after meeting,wow russian lawyer met donald trump jr seen photo person tied obama day meeting
+1,north korea's kim jong un fetes nuclear scientists holds celebration bash,north korea kim jong un fete nuclear scientist hold celebration bash
+1,ten million australians vote so far in same-sex marriage poll,ten million australian vote far samesex marriage poll
+0,granny clinton goes way left: fear mongering on the cause of hurricane hermine,granny clinton go way left fear mongering cause hurricane hermine
+1,russia's putin says we will be able to solve the north korea crisis by diplomatic means,russia putin say able solve north korea crisis diplomatic mean
+0,indoctrinated college students are stunned by ugly truth about hillary: ‚which candidate said this?‚,indoctrinated college student stunned ugly truth hillary candidate said
+1,italy court deals blow to 5-star ahead of sicily vote,italy court deal blow star ahead sicily vote
+1,hawkish dove: the enigma of donald trump in volatile race to the white house,hawkish dove enigma donald trump volatile race white house
+1,myanmar says bodies of 28 hindu villagers found in rakhine state,myanmar say body hindu villager found rakhine state
+1,france says turkish-russia missile deal a sovereign decision,france say turkishrussia missile deal sovereign decision
+0,colin powell says hillary lying about private email server conversation: ‚has no recollection of the dinner conversation‚ [video],colin powell say hillary lying private email server conversation recollection dinner conversation video
+0,triggered? police officer kicked out of event for wearing uniform,triggered police officer kicked event wearing uniform
+1,brazil congress advances bill to curb party proliferation,brazil congress advance bill curb party proliferation
+0,media tripwire? ping pong pizza conspiracy propels internet censorship amid ‚fake news‚ witch-hunt,medium tripwire ping pong pizza conspiracy propels internet censorship amid fake news witchhunt
+0,ceo who threatened to kill trump with sniper rifle says life has been turned upside down [video],ceo threatened kill trump sniper rifle say life turned upside video
+0,disgrace: obama regime caught wasting $25 million us tax dollars on phony climate change in country where citizens are starving [video],disgrace obama regime caught wasting million u tax dollar phony climate change country citizen starving video
+0,gwenyth paltrow can‚t understand why she was named ‚most hated celebrity‚,gwenyth paltrow cant understand named hated celebrity
+0,libertarian gary johnson endorses black lives matter,libertarian gary johnson endorses black life matter
+0,kimberly guilfoyle: serious legal issues surround rachel maddow report on trump‚s 2005 tax return [video],kimberly guilfoyle serious legal issue surround rachel maddow report trump tax return video
+1,provocation? republican senators introduce new bill to move us embassy in israel to jerusalem,provocation republican senator introduce new bill move u embassy israel jerusalem
+0,meet the leftist assistant professor who made up bogus list of ‚fake‚ conservative websites that went viral,meet leftist assistant professor made bogus list fake conservative website went viral
+0,new low: nyt‚s and cbs used fake news to smear wounded warrior project‚triple amputee vet and freedom daily expose them,new low nyts cbs used fake news smear wounded warrior projecttriple amputee vet freedom daily expose
+0,donna brazile finally admits to giving hillary questions before debate‚will media hold crooked hillary accountable for accepting questions? [video],donna brazile finally admits giving hillary question debatewill medium hold crooked hillary accountable accepting question video
+1,explosions rock myanmar area near bangladesh border amid rohingya exodus,explosion rock myanmar area near bangladesh border amid rohingya exodus
+0,holy moly! trump gives epic news conference‚slays press‚dresses down cnn‚‚your ratings are lower than congress‚network is all about ‚hate‚ [video],holy moly trump give epic news conferenceslays pressdresses cnnyour rating lower congressnetwork hate video
+1,cyprus president to seek second five-year term in jan '18 vote,cyprus president seek second fiveyear term jan vote
+1,new kosovo pm pledges dialogue with serbia graft fight,new kosovo pm pledge dialogue serbia graft fight
+1,u.s. to maintain cuba venezuela sanctions until freedoms restored: trump,u maintain cuba venezuela sanction freedom restored trump
+1,spanish foreign minister calls catalonia's leader speech a 'trick',spanish foreign minister call catalonia leader speech trick
+0,whoa! first lady melania makes classy,whoa first lady melania make classy
+0,speaker scheduled to praise hillary totally trashes her‚taken off stage by security [video],speaker scheduled praise hillary totally trash hertaken stage security video
+0,spirit halloween caves to trans mafia: takes ‚offensive‚ caitlyn jenner costume off website,spirit halloween cave trans mafia take offensive caitlyn jenner costume website
+0,az ranchers living on us-mexico border destroy nancy pelosi‚s claim about trump being ‚weak‚ for wanting border wall [video],az rancher living usmexico border destroy nancy pelosis claim trump weak wanting border wall video
+0,violence didn‚t have to escalate: chicago police chief told officers to ‚stand down‚ at trump rally [video],violence didnt escalate chicago police chief told officer stand trump rally video
+0,the ‚safe welfare state‚ of sweden descends into anarchy‚muslim refugee situation out of control,safe welfare state sweden descends anarchymuslim refugee situation control
+1,hope evaporating a grim wait for relatives after mexico quake,hope evaporating grim wait relative mexico quake
+0,democrat mocks americans for believing ‚climate change‚ is part of obamatrade: two weeks later‚obama announces ‚climate change‚ is part of obamatrade,democrat mock american believing climate change part obamatrade two week laterobama announces climate change part obamatrade
+1,ireland calls for realism from uk on border issue in latest brexit talks,ireland call realism uk border issue latest brexit talk
+0,fox news freefall? bill o‚reilly loses kids for allegedly choking wife‚trump hater,fox news freefall bill oreilly loses kid allegedly choking wifetrump hater
+0,police dept cancels ‚high-five‚ a cop at elementary school over concerns of offending ‚undocumented children‚kids of color‚,police dept cancel highfive cop elementary school concern offending undocumented childrenkids color
+0,melania wins huge settlement from tabloid over fake and ‚embarrassing claims‚,melania win huge settlement tabloid fake embarrassing claim
+0,obama‚s communist crony van jones worries about what he‚ll ‚tell his children‚ now that america won! [video],obamas communist crony van jones worry hell tell child america video
+0,thug anniversary gets violent in ferguson: cellphone captures shocking video of protester blocking traffic being mowed down by car‚shots erupt [video],thug anniversary get violent ferguson cellphone capture shocking video protester blocking traffic mowed carshots erupt video
+0,broke city of chicago spends taxpayer money sticking it to trump with huge ‚f you‚ installed right outside his luxury hotel,broke city chicago spends taxpayer money sticking trump huge f installed right outside luxury hotel
+0,illegals before american citizens: aclu sues 3 missouri colleges for refusing tuition benefits to illegal aliens,illegals american citizen aclu sue missouri college refusing tuition benefit illegal alien
+1,uk parliament to vote on brexit deal before european parliament: may,uk parliament vote brexit deal european parliament may
+1,final assault starts on syria's raqqa as some islamic state fighters quit,final assault start syria raqqa islamic state fighter quit
+0,breaking‚obama‚s war on cops: another cop ambushed and shot 3 times in neck by black man with lengthy criminal history in w. st. louis,breakingobamas war cop another cop ambushed shot time neck black man lengthy criminal history w st louis
+0,liberal imperium: quigley‚s anglo-american establishment ‚ jay dyer (half),liberal imperium quigleys angloamerican establishment jay dyer half
+1,india's modi heads to myanmar as rohingya refugee crisis worsens,india modi head myanmar rohingya refugee crisis worsens
+1,chinese sub docks at malaysian port for second time this year,chinese sub dock malaysian port second time year
+0,shocker! grammy attendee wears ‚make america great again‚ gown‚press goes nuts!,shocker grammy attendee wear make america great gownpress go nut
+0,gun control for kids: [video] 13 yr old told to remove ‚battlefield cross for fallen soldiers‚ t-shirt or face suspension,gun control kid video yr old told remove battlefield cross fallen soldier tshirt face suspension
+0,british woman loses virginity to asylum seeking rapist on her way to church,british woman loses virginity asylum seeking rapist way church
+1,brazil's meirelles has hired media team ahead of 2018 election: sources,brazil meirelles hired medium team ahead election source
+1,japan's aso retracts hitler comment after criticism,japan aso retracts hitler comment criticism
+0,john mccain and the cancer of conflict,john mccain cancer conflict
+1,kurd forces move back defense line around kirkuk in disengagement effort,kurd force move back defense line around kirkuk disengagement effort
+0,the benghazi liars are back: susan rice and adam schiff are once again caught in another huge scandal‚only this time their target is president trump [video],benghazi liar back susan rice adam schiff caught another huge scandalonly time target president trump video
+1,ghana fuel site blast kills at least 7 injures dozens,ghana fuel site blast kill least injures dozen
+0,cherokee people express disgust over ‚lying‚ elizabeth warren faking ‚native american heritage‚ to get prestigious law professor job,cherokee people express disgust lying elizabeth warren faking native american heritage get prestigious law professor job
+1,pope urges skeptical colombians to accept peace with guerrillas,pope urge skeptical colombian accept peace guerrilla
+0,wow! leftist bully rosie o‚donnell pushes horrible rumor on social media‚suggests barron trump has mental disorder [video],wow leftist bully rosie odonnell push horrible rumor social mediasuggests barron trump mental disorder video
+0,obama dances at last-ever white house gig to drake‚s ‚hotline bling‚ [video],obama dance lastever white house gig drake hotline bling video
+0,flashback: uncovered video shows hypocrite harry reid telling congress ‚no sane country would have birthright citizenship‚,flashback uncovered video show hypocrite harry reid telling congress sane country would birthright citizenship
+1,turkey issues arrest warrants for 25 soldiers in post-coup probe - sources,turkey issue arrest warrant soldier postcoup probe source
+1,keeping the competition out: iran startups thrive despite sanctions,keeping competition iran startup thrive despite sanction
+1,uk police say cordon in bolton lifted package not suspicious,uk police say cordon bolton lifted package suspicious
+0,boiler room ep #85.5 ‚ who‚s watching the watchers?,boiler room ep who watching watcher
+1,u.s. condemns killing of malta journalist says fbi assisting probe,u condemns killing malta journalist say fbi assisting probe
+0,dyer: ‚la times ‚fake news‚ article is an attack on independent media‚,dyer la time fake news article attack independent medium
+0,reflections on a world gone mad and pushing back against neocolonialist thuggery,reflection world gone mad pushing back neocolonialist thuggery
+1,germany watching trump's iran decision with 'great concern',germany watching trump iran decision great concern
+1,iraqi prime minister declares victory over is in tal afar,iraqi prime minister declares victory tal afar
+1,exclusive: displaced rohingya in camps face aid crisis after myanmar violence,exclusive displaced rohingya camp face aid crisis myanmar violence
+1,palestinian protesters attack us embassy in lebanon,palestinian protester attack u embassy lebanon
+0,declassified us intel report used to discredit trump is huge embarrassment‚evidence was compiled in 2012 after obama‚s reelection,declassified u intel report used discredit trump huge embarrassmentevidence compiled obamas reelection
+0,buried by media: aide to leftist us congressman sander levin (d-mi) arrested for brutally beating male lover with shovel‚ ‚i want to kill you. die dirty faggy‚,buried medium aide leftist u congressman sander levin dmi arrested brutally beating male lover shovel want kill die dirty faggy
+0,barack obama shows he‚s serious about fighting terrorism‚releases osama bin laden‚s bodyguard from gitmo,barack obama show he serious fighting terrorismreleases osama bin ladens bodyguard gitmo
+1,exclusive: mexico unlikely to find more quake survivors emergency chief says,exclusive mexico unlikely find quake survivor emergency chief say
+0,black racists tried to shut her up by threatening and intimidating her‚big mistake! [video],black racist tried shut threatening intimidating herbig mistake video
+0,minorities turn on obama‚blast his ‚legacy‚: ‚i voted for your black ass‚is that your legacy‚obamaphones‚transgendered toilets?‚ [video],minority turn obamablast legacy voted black assis legacyobamaphonestransgendered toilet video
+1,moon abe agree to pursue strong u.n. sanctions against north korea: blue house,moon abe agree pursue strong un sanction north korea blue house
+0,crazy video! mayor of baltimore: we gave rioters ‚space to destroy‚,crazy video mayor baltimore gave rioter space destroy
+0,non-profit violent berkeley bamn leader surprised when tables are turned on him during interview [video],nonprofit violent berkeley bamn leader surprised table turned interview video
+0,macron convinced trump will see u.s. interests lie inside paris climate deal,macron convinced trump see u interest lie inside paris climate deal
+0,party girl malia obama caught on camera rolling and pounding fists into the ground at wild chicago lallapalooza festival,party girl malia obama caught camera rolling pounding fist ground wild chicago lallapalooza festival
+1,trump says to approve lifting restrictions on south korea missile payload limits,trump say approve lifting restriction south korea missile payload limit
+0,pc world gone mad: harvard business school grad runs marathon without tampon to highlight the sentiment of period-shaming,pc world gone mad harvard business school grad run marathon without tampon highlight sentiment periodshaming
+1,thousands of rohingya flee for bangladesh as fresh violence erupts in myanmar,thousand rohingya flee bangladesh fresh violence erupts myanmar
+1,south african supreme court upholds reinstating 783 corruption charges against zuma,south african supreme court upholds reinstating corruption charge zuma
+1,catalans occupy voting stations to defy madrid's order to stop referendum,catalan occupy voting station defy madrid order stop referendum
+1,uk's boris johnson reignites leadership speculation with brexit plans,uk boris johnson reignites leadership speculation brexit plan
+0,not every hollywood actor approved of meryl streep‚s anti-trump rant last night‚check out vince vaughn and mel gibson‚s reactions,every hollywood actor approved meryl streep antitrump rant last nightcheck vince vaughn mel gibson reaction
+0,watch insane videos‚chicago cop spills the beans about what really happened in chicago,watch insane videoschicago cop spill bean really happened chicago
+1,world bank approves $150 million disaster fund for dominican republic,world bank approves million disaster fund dominican republic
+1,petrol bombs and tear gas in athens rally to mark rapper killing,petrol bomb tear gas athens rally mark rapper killing
+0,boiler room #103 ‚ smoking gunz,boiler room smoking gunz
+1,catalan leader casts vote in banned independence referendum,catalan leader cast vote banned independence referendum
+0,[video] leftist cnn anchor tells racist us rep the #baltimoreriots are vets fault ‚they come back from war‚and they‚re ready to do battle‚,video leftist cnn anchor tell racist u rep baltimoreriots vet fault come back warand theyre ready battle
+0,which is it? did susan rice lie to andrea mitchell or judy woodruff two weeks ago? [video],susan rice lie andrea mitchell judy woodruff two week ago video
+0,congress is about to deal a knock-out punch to obama‚s ‚back door‚ gun grab‚gun owners are cheering!,congress deal knockout punch obamas back door gun grabgun owner cheering
+1,iran halts flights to iraq's kurdish region in retaliation for independence vote,iran halt flight iraq kurdish region retaliation independence vote
+1,ugandan mps cite intimidation ahead of move to extend museveni rule,ugandan mp cite intimidation ahead move extend museveni rule
+1,defeat of islamic state in raqqa may herald wider struggle for u.s.,defeat islamic state raqqa may herald wider struggle u
+1,catalan standoff touches separatist hearts beyond spain,catalan standoff touch separatist heart beyond spain
+0,bill clinton caught groping flight attendant on plane until he realized camera was recording him [video],bill clinton caught groping flight attendant plane realized camera recording video
+0,family of australian woman fatally shot wants minnesota cop charged,family australian woman fatally shot want minnesota cop charged
+0,hey voters‚it‚s not over! pay-to-play hillary and her ‚non-profit‚ foundation are still under fbi investigation,hey votersits paytoplay hillary nonprofit foundation still fbi investigation
+0,radical nyc mayor skips nypd swearing in ceremony to join violent g-20 protesters in germany‚gop mayoral candidate slams him on social media,radical nyc mayor skip nypd swearing ceremony join violent g protester germanygop mayoral candidate slam social medium
+1,islamic state families moved to site north of mosul iraq confirms,islamic state family moved site north mosul iraq confirms
+0,watch trump supporters crash pro-sanctuary city press conference where radicals call for open borders [video],watch trump supporter crash prosanctuary city press conference radical call open border video
+1,reopen the kurt cobain case? [poll],reopen kurt cobain case poll
+1,japan pm abe says aims to increase missile defense capabilities,japan pm abe say aim increase missile defense capability
+1,germany's schaeuble elected bundestag speaker to tackle far right,germany schaeuble elected bundestag speaker tackle far right
+0,british mp nigel evans shames anti-trump parliament: ‚he is going to go down in history as being roundly condemned for being the only politician to keep his promises‚ [video],british mp nigel evans shame antitrump parliament going go history roundly condemned politician keep promise video
+0,nyc anti-trump rally: [video] dad tells little kids to look vets ‚in the eye‚we‚re gonna be fighting against them‚‚[video] brave trump supporter follows rally with ‚soros funded‚ sign,nyc antitrump rally video dad tell little kid look vet eyewere gon na fighting themvideo brave trump supporter follows rally soros funded sign
+1,china southeast asia aim to build trust with sea drills singapore says,china southeast asia aim build trust sea drill singapore say
+0,cities across america are replacing columbus day with indigenous people‚s day,city across america replacing columbus day indigenous people day
+1,turkish measures against northern iraq won't target civilians pm says,turkish measure northern iraq wont target civilian pm say
+1,trumpdom: the curious world of trump‚s foreign policy explained,trumpdom curious world trump foreign policy explained
+1,italy lower house passes new electoral law moves on to senate,italy lower house pass new electoral law move senate
+0,pakistani court sentences christian man to death for blasphemy,pakistani court sentence christian man death blasphemy
+0,meet the ca sheriff who won‚t be bullied by obama and illegal immigrant activists who believe the laws don‚t apply to lawbreakers,meet ca sheriff wont bullied obama illegal immigrant activist believe law dont apply lawbreaker
+1,kenyan police not cooperating with watchdog over election-related deaths: sources,kenyan police cooperating watchdog electionrelated death source
+0,must watch video: watch what track & field olympian does when our national anthem is played [video],must watch video watch track field olympian national anthem played video
+0,liberal journalist goes to border gets shocking answers about wall with mexico [video],liberal journalist go border get shocking answer wall mexico video
+0,oops! mit researchers debunk global warming data‚report confirms president trump was right to pull out of paris climate agreement,oops mit researcher debunk global warming datareport confirms president trump right pull paris climate agreement
+0,oops! list of top 10 corporate tax dodgers are all hillary donors‚compliments of bernie sanders,oops list top corporate tax dodger hillary donorscompliments bernie sander
+1,ugandan special forces accused of ejecting mps from parliament,ugandan special force accused ejecting mp parliament
+0,media ignores time that bill clinton fired his fbi director on day before vince foster was found dead,medium ignores time bill clinton fired fbi director day vince foster found dead
+0,the pope is writing a document on fake news - and that's the truth,pope writing document fake news thats truth
+1,hungary's fidesz prepares campaign against 'soros plan' for migrants,hungary fidesz prepares campaign soros plan migrant
+0,hungarians find shocking videos on phones left behind by muslim migrants,hungarian find shocking video phone left behind muslim migrant
+0,message to president trump from syria‚s assad: ‚you also need our help to defeat terrorism‚,message president trump syria assad also need help defeat terrorism
+0,hillary panders for black vote: busts out in awkard,hillary pander black vote bust awkard
+0,episode #153 ‚ sunday wire: ‚the nuremberg syndrome‚ with guests mother agnes,episode sunday wire nuremberg syndrome guest mother agnes
+0,madness in berkeley: anarchists clash with trump supporters at pro-trump rally: ‚that guy got hit in the head really hard‚ [video],madness berkeley anarchist clash trump supporter protrump rally guy got hit head really hard video
+1,u.s. wants u.n. vote on new north korea sanctions next monday,u want un vote new north korea sanction next monday
+0,encryption truth: what the fbi aren‚t telling you about their battle with apple and san bernardino,encryption truth fbi arent telling battle apple san bernardino
+0,undercover video exposes obama‚s lies about ‚gun show loopholes‚,undercover video expose obamas lie gun show loophole
+0,how trump is accelerating the decline of us global influence,trump accelerating decline u global influence
+1,portugal government survives no confidence vote over fires,portugal government survives confidence vote fire
+1,berlin votes to keep cold war era tegel airport open,berlin vote keep cold war era tegel airport open
+0,bigger than snowden: wikileaks ‚vault 7‚ classified cia leak ‚ what does it mean?,bigger snowden wikileaks vault classified cia leak mean
+1,mattis slams 'false' reports on trump request for nuclear arms hike,mattis slam false report trump request nuclear arm hike
+1,as congo refugees pour over border angola's backing for kabila in doubt,congo refugee pour border angola backing kabila doubt
+0,usa today article blames whites for mlk murder: whites killed mlk. now we honor him‚centuries of kidnapping,usa today article blame white mlk murder white killed mlk honor himcenturies kidnapping
+1,trump resists pressure to soften stance on iran nuclear deal,trump resists pressure soften stance iran nuclear deal
+0,proof they know she‚s losing‚hillary‚s campaign spokesman tells trump: ‚go f*ck yourself‚ during debate,proof know shes losinghillarys campaign spokesman tell trump go fck debate
+1,nigerian military labels biafra separatist group a terrorist organization,nigerian military label biafra separatist group terrorist organization
+0,epic liberal smackdown: ‚burning up the streets,epic liberal smackdown burning street
+0,bikers for trump will travel to future rallies to ‚provide outside security‚ against paid soros thugs for hillary and bernie sanders,bikers trump travel future rally provide outside security paid soros thug hillary bernie sander
+1,white house to request $29 billion for hurricane relief,white house request billion hurricane relief
+1,germany approves sale of three thyssenkrupp submarines to israel,germany approves sale three thyssenkrupp submarine israel
+1,vice president pence: trump greatly concern about irma after briefing,vice president penny trump greatly concern irma briefing
+1,malaysia identifies victims of religious school fire amid outrage over safety,malaysia identifies victim religious school fire amid outrage safety
+0,doj continues obsession with discrediting ferguson police with this ridiculous new report,doj continues obsession discrediting ferguson police ridiculous new report
+0,major cosmetic company announces plans to release anti-trump hair product‚#boycott,major cosmetic company announces plan release antitrump hair productboycott
+0,brilliant trump adviser: ‚the extreme media‚ has gotten donald trump wrong since he announced [video],brilliant trump adviser extreme medium gotten donald trump wrong since announced video
+1,pakistan bars a militant-linked group from forming new political party,pakistan bar militantlinked group forming new political party
+0,breaking: courageous federal judge denies obama‚s request to lift stay on executive amnesty,breaking courageous federal judge denies obamas request lift stay executive amnesty
+0,planned parenthood fundraises over shooting‚only problem is,planned parenthood fundraises shootingonly problem
+1,hong kong's vanishing archives and the battle to preserve history,hong kongs vanishing archive battle preserve history
+1,daily shooter academy: florida woman shot dead by police during ‚roleplay‚ drill,daily shooter academy florida woman shot dead police roleplay drill
+1,turkey kills 99 kurdish militants in latest operations: military,turkey kill kurdish militant latest operation military
+1,field commander in u.s.-backed sdf expects raqqa fight to end monday,field commander usbacked sdf expects raqqa fight end monday
+0,patrick henningsen live with guest sean stone ‚ ‚project for a new global government?‚,patrick henningsen live guest sean stone project new global government
+1,iraqi forces take control of kurdish-held areas in mosul's niveveh's province,iraqi force take control kurdishheld area mosul nivevehs province
+0,mass nye sexual assaults in europe explained: [video] just an innocent rape game played by muslims in arab nations,mass nye sexual assault europe explained video innocent rape game played muslim arab nation
+1,merkel backs tougher u.n. sanctions against north korea call with putin,merkel back tougher un sanction north korea call putin
+0,serial plagiarist does victory dance over white people dying,serial plagiarist victory dance white people dying
+0,the young girl the clintons destroyed‚monica lewinsky: ‚i‚m probably the only 41 year old who doesn‚t want to be 22 again‚,young girl clinton destroyedmonica lewinsky im probably year old doesnt want
+1,elite nazi-allied order from hungary claims trump adviser sebastian gorka is sworn member,elite naziallied order hungary claim trump adviser sebastian gorka sworn member
+0,outrageous video! obama keeps stirring the flames of division and hate,outrageous video obama keep stirring flame division hate
+1,baghdad piles pressure on iraqi kurds to reverse overwhelming independence vote,baghdad pile pressure iraqi kurd reverse overwhelming independence vote
+1,seven miners killed one missing in coal mine collapse in turkey,seven miner killed one missing coal mine collapse turkey
+1,u.s. calls on myanmar to stop violence displacement of rohingya,u call myanmar stop violence displacement rohingya
+1,trump expected to pressure china's xi to rein in north korea: officials,trump expected pressure china xi rein north korea official
+1,germany's greens want power plants shut as price of coalition,germany green want power plant shut price coalition
+1,northern ireland leaders appeal to vp pence on bombardier challenge,northern ireland leader appeal vp penny bombardier challenge
+1,south african minister calls for anc to discipline zuma: report,south african minister call anc discipline zuma report
+1,rohingya muslims trapped after myanmar violence told to stay put,rohingya muslim trapped myanmar violence told stay put
+1,kenya officials change way of announcing election results,kenya official change way announcing election result
+0,bundy case ruled a mistrial ‚ will federal case soon crumble?,bundy case ruled mistrial federal case soon crumble
+0,you‚re fired! mitt romney‚s niece tells mi gop grassroots chair and former ted cruz state director‚get behind trump or get lost,youre fired mitt romneys niece tell mi gop grassroots chair former ted cruz state directorget behind trump get lost
+1,schaeuble to head german parliament unblocking coalition talks,schaeuble head german parliament unblocking coalition talk
+1,at least four killed in british motorway crash: police,least four killed british motorway crash police
+1,erdogan adviser sees recovery in turkey ties with germany eu,erdogan adviser see recovery turkey tie germany eu
+1,france to skip 2018 winter games if security not assured,france skip winter game security assured
+1,group with terror ties encourages muslims to swing u.s. presidential elections: ‚turn your islamic centers,group terror tie encourages muslim swing u presidential election turn islamic center
+1,britain will leave eu single market customs union as one nation-minister,britain leave eu single market custom union one nationminister
+0,take our poll: who do you think president trump should pick to replace james comey?,take poll think president trump pick replace james comey
+1,london ambulance service sends hazardous area response team to station incident,london ambulance service sends hazardous area response team station incident
+0,party corruption: clinton campaign directly tied to disgraced dnc consultant,party corruption clinton campaign directly tied disgraced dnc consultant
+0,meredith corp. and koch money buys time inc.,meredith corp koch money buy time inc
+0,how tyson foods is destroying small towns‚forcing taxpayers to pick up housing,tyson food destroying small townsforcing taxpayer pick housing
+1,spanish auditors demand catalan leaders pay for previous independence vote: el pais,spanish auditor demand catalan leader pay previous independence vote el pais
+1,the rocky history of nafta,rocky history nafta
+0,marine arrested for complaining about government on facebook is suing government [video],marine arrested complaining government facebook suing government video
+1,may's conservatives win vote to bolster party's numbers on committees,may conservative win vote bolster party number committee
+1,it‚s official: trump is potus 45,official trump potus
+1,exclusive post-election,exclusive postelection
+0,hillary flip-flop highlight reel,hillary flipflop highlight reel
+1,cult crimes,cult crime
+1,eu refugee court ruling triggers new east-west feuding,eu refugee court ruling trigger new eastwest feuding
+0,oops! trump-hating dem senator caught in huge lie: claimed she never met or spoke with russian ambassador‚forgot about time she had dinner at his home,oops trumphating dem senator caught huge lie claimed never met spoke russian ambassadorforgot time dinner home
+0,students sent home from school for wearing traditional swiss clothing considered ‚racist‚,student sent home school wearing traditional swiss clothing considered racist
+1,catalans have no choice but to delay says former adviser,catalan choice delay say former adviser
+0,crocodile tears: watch obama use phony outrage to gain sympathy for gun control,crocodile tear watch obama use phony outrage gain sympathy gun control
+0,anti-trump protesters applaud hitler speech given by undercover trump supporter at #resisttrump rally [video],antitrump protester applaud hitler speech given undercover trump supporter resisttrump rally video
+0,flashback video: jesse jackson praises donald trump for his commitment to bringing blacks,flashback video jesse jackson praise donald trump commitment bringing black
+0,peggy hubbard defends trump‚talks about being attacked because she defended confederate statues: ‚antifa and black lives matter showed up with weapons,peggy hubbard defends trumptalks attacked defended confederate statue antifa black life matter showed weapon
+0,paul joseph watson exposes media‚s obsession with trump‚s call from taiwan leader in 14 seconds [video],paul joseph watson expose medias obsession trump call taiwan leader second video
+1,putin calls tougher north korea sanctions senseless warns of 'global catastrophe',putin call tougher north korea sanction senseless warns global catastrophe
+0,get out of jail free: how obama‚s race war is quietly being funded by jay z,get jail free obamas race war quietly funded jay z
+1,exiled venezuelan opposition magistrates resurface in chile,exiled venezuelan opposition magistrate resurface chile
+1,britain's queen elizabeth opens scotland's third forth bridge,britain queen elizabeth open scotland third forth bridge
+0,democrat mayor proclaims he‚s barring trump from entering st petersburg,democrat mayor proclaims he barring trump entering st petersburg
+1,give us some clarity on brexit french minister griveaux tells uk,give u clarity brexit french minister griveaux tell uk
+0,breaking: man rushes to paris police station doors with knife screaming ‚allahu akbar‚‚was he another ‚muslim clock boy?‚,breaking man rush paris police station door knife screaming allahu akbarwas another muslim clock boy
+0,priceless: watch bill clinton‚s awkward response when asked if his perverted past is ‚fair game‚,priceless watch bill clinton awkward response asked perverted past fair game
+1,india eyes airport in sri lanka near chinese belt and road outpost,india eye airport sri lanka near chinese belt road outpost
+1,turkey opens military base in mogadishu to train somali soldiers,turkey open military base mogadishu train somali soldier
+0,hillary clinton‚s ‚presidency‚ has already begun as lame ducks promote her war on syria,hillary clinton presidency already begun lame duck promote war syria
+1,sudan regrets u.s. putting it on trafficking list before sanctions decision,sudan regret u putting trafficking list sanction decision
+1,putin dials up anti-u.s. rhetoric keeps mum on re-election,putin dial antius rhetoric keep mum reelection
+0,boiler room ep #127 ‚ the oppression commiseration (and similar topics),boiler room ep oppression commiseration similar topic
+1,british police 'chasing down suspects' after train bombing,british police chasing suspect train bombing
+1,greece overcomes forestry setback to develop athens coastal resort,greece overcomes forestry setback develop athens coastal resort
+0,facebook hires porn star and husband accused of defrauding ‚snopes‚ website to ‚fact-check‚ mostly conservative websites,facebook hire porn star husband accused defrauding snopes website factcheck mostly conservative website
+1,samsung leader jay y. lee given five-year jail sentence for bribery,samsung leader jay lee given fiveyear jail sentence bribery
+0,hulk hogan is kicked to curb by wwe for speculation over racist comments,hulk hogan kicked curb wwe speculation racist comment
+1,with trump meeting malaysia's pm seeks to put 1mdb scandal behind him,trump meeting malaysia pm seek put mdb scandal behind
+1,few ideas less hope leave syria crisis on back burner at u.n.,idea less hope leave syria crisis back burner un
+0,another american known wolf? fort lauderdale shooter known to fbi,another american known wolf fort lauderdale shooter known fbi
+1,russia's lavrov and tillerson talk syria after bombing allegations,russia lavrov tillerson talk syria bombing allegation
+0,hilarious! watch what happens when campus cops try to kick ‚students for trump‚ off campus for building trump wall [video],hilarious watch happens campus cop try kick student trump campus building trump wall video
+1,bosnia's serb region declares neutrality in bid to block nato membership,bosnia serb region declares neutrality bid block nato membership
+1,malaysia's royals call for religious tolerance in rare public intervention,malaysia royal call religious tolerance rare public intervention
+1,fewer babies born in singapore last year despite incentives,fewer baby born singapore last year despite incentive
+0,fbi director confirms hillary‚s worst nightmare was found on this creep‚s laptop [video],fbi director confirms hillary worst nightmare found creep laptop video
+0,wow! hillary took state department furniture to furnish residence,wow hillary took state department furniture furnish residence
+1,kenya to hold new presidential vote on oct. 17: electoral commission,kenya hold new presidential vote oct electoral commission
+0,watch! trump supporter ‚big joe‚ surrounded by women‚s march in los angeles: ‚political correctness is a disease!‚ [video],watch trump supporter big joe surrounded womens march los angeles political correctness disease video
+0,boiler room ep #124 ‚ weather warfare & cnn goblin pits,boiler room ep weather warfare cnn goblin pit
+0,anonymous video of bill clinton raping 13 yr old could end it all for crooked hillary,anonymous video bill clinton raping yr old could end crooked hillary
+0,dem rep,dem rep
+0,violent riot shuts down free speech of breitbart‚s #miloyiannopoulos #berkeley [video],violent riot shuts free speech breitbarts miloyiannopoulos berkeley video
+0,a must watch video: steve bannon ‚if you think they‚re going to give you your country back without a fight,must watch video steve bannon think theyre going give country back without fight
+0,breaking: crooked sec of state hillary knew taking $12 million from king mohammed vi of ‚corrupt‚ morocco might hurt campaign‚took it anyway [video],breaking crooked sec state hillary knew taking million king mohammed vi corrupt morocco might hurt campaigntook anyway video
+0,breaking: trump announces nominee for secretary of state‚liberal heads explode!,breaking trump announces nominee secretary stateliberal head explode
+1,transylvanian dream: juncker's antidote to 'brexit nightmare',transylvanian dream junckers antidote brexit nightmare
+1,france's macron says euro zone needs its own budget a finance minister,france macron say euro zone need budget finance minister
+0,boiler room ep #71: ‚one million mark‚,boiler room ep one million mark
+1,mexico politicians fear flunking quake test before 2018 vote,mexico politician fear flunking quake test vote
+1,echoing france germany says may offered 'nothing concrete' on brexit,echoing france germany say may offered nothing concrete brexit
+1,four nations meet to resume stalled afghan peace talks in oman,four nation meet resume stalled afghan peace talk oman
+1,polish legal experts say poland can demand german reparations,polish legal expert say poland demand german reparation
+1,star wars 2.0: washington‚s battle to fund space warfare,star war washington battle fund space warfare
+1,egypt court sentences mursi to 25 years in qatar spy case,egypt court sentence mursi year qatar spy case
+0,watch what happens when random people are asked to sign petition allowing all illegal alien murderers,watch happens random people asked sign petition allowing illegal alien murderer
+1,belgian mayor is threatened by islamists: convert to islam or die,belgian mayor threatened islamist convert islam die
+0,leftist alan colmes thinks we should stop ‚using‚ the national anthem at sporting events,leftist alan colmes think stop using national anthem sporting event
+0,king obama threatens congress to not mess with iran deal: will congress have will to pull white flag from obama‚s hands? [video],king obama threatens congress mess iran deal congress pull white flag obamas hand video
+0,former clinton political advisor: ‚i left when hillary hired secret police to go after woman victimized by bill‚ [video],former clinton political advisor left hillary hired secret police go woman victimized bill video
+0,church replaces jesus in nativity scene with drowned muslim syrian boy,church replaces jesus nativity scene drowned muslim syrian boy
+1,fear driving cambodian opposition mps abroad party says,fear driving cambodian opposition mp abroad party say
+1,china offers support to myanmar at u.n. amid rohingya crisis,china offer support myanmar un amid rohingya crisis
+0,pope francis worries usa has ‚distorted vision of the world‚,pope francis worry usa distorted vision world
+1,china welcomes myanmars efforts to alleviate situation in rakhine,china welcome myanmar effort alleviate situation rakhine
+1,police order berlin district evacuation after ww2 bomb find,police order berlin district evacuation ww bomb find
+0,mass exodus from democrat party in liberal massachusetts‚trump effect?,mass exodus democrat party liberal massachusettstrump effect
+1,false alarm or psy-op? lax ‚active shooter‚ spectacle,false alarm psyop lax active shooter spectacle
+1,indonesia tightens rules to curb money laundering terror funding,indonesia tightens rule curb money laundering terror funding
+1,lexisnexis withdrew two products from chinese market,lexisnexis withdrew two product chinese market
+1,former iraqi president talabani buried in kurdish home region,former iraqi president talabani buried kurdish home region
+0,remember when democrats,remember democrat
+1,russia and north korea to discuss nuclear crisis in moscow,russia north korea discus nuclear crisis moscow
+1,young chinese woman chases dream abroad but looks wistfully home,young chinese woman chase dream abroad look wistfully home
+0,how the fbi cracked a terror plot on black friday that may have been worse than 9-11,fbi cracked terror plot black friday may worse
+1,china says it has freed swedish bookseller his whereabouts still unknown,china say freed swedish bookseller whereabouts still unknown
+0,the new cold war: a chilling prospect for the world,new cold war chilling prospect world
+0,breaking: ford announces $700 million u.s. investment‚jobs,breaking ford announces million u investmentjobs
+0,laura ingraham‚s brilliant idea on how to shake up liberal college campuses [video],laura ingrahams brilliant idea shake liberal college campus video
+1,casting crisis: orlando‚s actors,casting crisis orlando actor
+1,catalan leader puigdemont to speak in catalan parliament on tuesday,catalan leader puigdemont speak catalan parliament tuesday
+1,uk government confident of winning vote on brexit legislation: spokesman,uk government confident winning vote brexit legislation spokesman
+0,breaking: ecuadorian embassy admits they cut wikileaks internet after pressure from john kerry,breaking ecuadorian embassy admits cut wikileaks internet pressure john kerry
+1,kenya not at risk of constitutional crisis ahead of election re-run: top legal official,kenya risk constitutional crisis ahead election rerun top legal official
+1,britain says window to restore northern ireland devolution closing rapidly,britain say window restore northern ireland devolution closing rapidly
+0,ep #11: patrick henningsen live ‚ ‚top trump trends for 2017‚ with guest gerald celente,ep patrick henningsen live top trump trend guest gerald celente
+0,boiler room ep #70 ‚ sticks,boiler room ep stick
+0,hillary clinton jumps the shark with ‚trump‚s secret russian server‚ conspiracy theory,hillary clinton jump shark trump secret russian server conspiracy theory
+0,remember when democrat operatives were caught bragging about their voter fraud operation in wi? [video],remember democrat operative caught bragging voter fraud operation wi video
+1,rohingya insurgents declare temporary ceasefire amid humanitarian crisis,rohingya insurgent declare temporary ceasefire amid humanitarian crisis
+1,spain to suspend catalonia's autonomy in response to independence threat,spain suspend catalonia autonomy response independence threat
+1,britain says syrian reconstruction only after political transition 'away from assad',britain say syrian reconstruction political transition away assad
+0,the democrat who wrote a paper about how women fantasize about being gang raped draws larger crowds than gop presidential candidates,democrat wrote paper woman fantasize gang raped draw larger crowd gop presidential candidate
+0,not to be missed! the brilliant daniel hannan on socialism versus liberty: ‚hitler was a socialist‚ [video],missed brilliant daniel hannan socialism versus liberty hitler socialist video
+1,activist: ‚this is where you can make the most impact‚,activist make impact
+1,kenyan election head: no guarantee vote will be free and fair,kenyan election head guarantee vote free fair
+1,one french soldier killed in iraq-syria area: french presidency,one french soldier killed iraqsyria area french presidency
+0,cloaked in conspiracy: overview of jfk files reopens door to coup d‚√©tat claims & cold war era false flag terror,cloaked conspiracy overview jfk file reopens door coup dtat claim cold war era false flag terror
+0,a dead dictator his rusting boat and a fight for history,dead dictator rusting boat fight history
+1,facing potential wheat crisis egypt plays down poppy seed risk,facing potential wheat crisis egypt play poppy seed risk
+0,detroit free press editor calls for gruesome murder of mi gop lawmakers,detroit free press editor call gruesome murder mi gop lawmaker
+0,sex roulette parties on the rise‚one person is secretly hiv‚entertained by ‚thrill‚ of not knowing [video],sex roulette party riseone person secretly hiventertained thrill knowing video
+0,hollywood hip to al qaeda: ‚and the oscar for best documentary short goes to‚‚,hollywood hip al qaeda oscar best documentary short go
+1,rohingyas must go home but to safety bangladesh says,rohingyas must go home safety bangladesh say
+0,media ignores time that bill clinton fired his fbi director on day before vince foster was found dead,medium ignores time bill clinton fired fbi director day vince foster found dead
+0,patriots owner on trump: ‚in the toughest time in my life,patriot owner trump toughest time life
+0,whoa! flashback video of andrew breitbart: ‚what‚s in your closet john podesta?‚,whoa flashback video andrew breitbart whats closet john podesta
+0,senator elizabeth warren tries to trash republicans with latest tweet‚but it‚s what‚s sitting on her desk that has everyone laughing,senator elizabeth warren try trash republican latest tweetbut whats sitting desk everyone laughing
+0,muslim teen who wrote 3 radical words over and over again on college application has been accepted to prestigious stanford university,muslim teen wrote radical word college application accepted prestigious stanford university
+1,thousands queue to pay last respects to thailand's late king bhumibol,thousand queue pay last respect thailand late king bhumibol
+0,how paul ryan just made a mockery of trump‚s promise to protect blue-collar jobs from foreign workers,paul ryan made mockery trump promise protect bluecollar job foreign worker
+0,exposed: how us-backed war on syria helped isis to expand their operations,exposed usbacked war syria helped isi expand operation
+1,south african supreme court upholds reinstating 783 corruption charges against zuma,south african supreme court upholds reinstating corruption charge zuma
+0,bombshell: clinton wikileak exposes entire ‚shadow government‚ ‚ jay dyer (vid),bombshell clinton wikileak expose entire shadow government jay dyer vid
+1,media links domestic drone surveillance to trump with zero evidence,medium link domestic drone surveillance trump zero evidence
+1,turks safe in germany merkel says dismissing ankara's warning,turk safe germany merkel say dismissing ankara warning
+0,alt-left attacks phoenix police‚karma hits back where it hurts [video],altleft attack phoenix policekarma hit back hurt video
+1,another known wolf? nyc bombing suspect probed by fbi,another known wolf nyc bombing suspect probed fbi
+0,wow! russian hacker gives stunning details of deal fbi offered him to falsely claim he hacked hillary‚s email on behalf of putin for trump,wow russian hacker give stunning detail deal fbi offered falsely claim hacked hillary email behalf putin trump
+1,'russia's version of paris hilton' announces presidential bid,russia version paris hilton announces presidential bid
+0,nj gov chris christie gets in cubs fan‚s face at baseball game‚not pretty [video],nj gov chris christie get cub fan face baseball gamenot pretty video
+1,exclusive: bloomberg charity scrutinized by india for anti-tobacco funding lobbying - documents,exclusive bloomberg charity scrutinized india antitobacco funding lobbying document
+1,turkey could look elsewhere if russia won't share missile technology: minister,turkey could look elsewhere russia wont share missile technology minister
+0,tough texas mayor who fought back against implementation of sharia law in her city will join trump team [video],tough texas mayor fought back implementation sharia law city join trump team video
+0,breaking: brazil detains two us olympic swimmers in robbery investigation‚let our swimmers go!,breaking brazil detains two u olympic swimmer robbery investigationlet swimmer go
+0,hillary uses fake accent in ‚victory‚ speech to attack police‚wants to ‚build on record and accomplishments of president obama‚,hillary us fake accent victory speech attack policewants build record accomplishment president obama
+0,the ultimate community organizer: is your neighborhood too white? is it too rich? obama plans to ‚fix‚ them using government to force diversity,ultimate community organizer neighborhood white rich obama plan fix using government force diversity
+0,can hillary lie her way out of this one? physician says hillary has parkinson‚s disease‚hillary admits she couldn‚t even ‚get up‚ after convention,hillary lie way one physician say hillary parkinson diseasehillary admits couldnt even get convention
+1,merkel's bavarian allies insist on conservative unity before coalition talks,merkels bavarian ally insist conservative unity coalition talk
+1,catalan mayors exercise right to remain silent in referendum questioning,catalan mayor exercise right remain silent referendum questioning
+1,hezbollah says bulk of is convoy has left syrian government area,hezbollah say bulk convoy left syrian government area
+0,nfl legend who supported hillary leaves cnn host speechless over praise for trump‚people who ‚called him names when he won‚‚‚he reached back and brought them along with him. he held no grudges‚[video],nfl legend supported hillary leaf cnn host speechless praise trumppeople called name wonhe reached back brought along held grudgesvideo
+0,[video] our racist president invites muslims to join blacks in victim pool while celebrating ramadan at white house,video racist president invite muslim join black victim pool celebrating ramadan white house
+0,julian assange reveals john podesta‚s hilarious email password‚‚a 14 year old kid could‚ve hacked podesta‚ [video],julian assange reveals john podestas hilarious email passworda year old kid couldve hacked podesta video
+1,u.s. calls on russia to release crimean dissident: state dept,u call russia release crimean dissident state dept
+1,utah ranchers vow to stand up to government abuse despite oregon arrests,utah rancher vow stand government abuse despite oregon arrest
+1,nato launches black sea force as latest counter to russia,nato launch black sea force latest counter russia
+0,convenient? ‚active shooter‚ kills 5 in fort lauderdale,convenient active shooter kill fort lauderdale
+1,lawmakers urge u.s. to craft targeted sanctions on myanmar military,lawmaker urge u craft targeted sanction myanmar military
+0,national security for sale: univision chair gives hillary $7 million to keep borders open,national security sale univision chair give hillary million keep border open
+0,nails it! mike rowe on why trump won‚hillary supporters won‚t like this! [video],nail mike rowe trump wonhillary supporter wont like video
+0,say what? obama gives go ahead for new un ‚regional hub‚ in washington dc‚what they plan to use center for is disturbing,say obama give go ahead new un regional hub washington dcwhat plan use center disturbing
+0,frankfurt to evacuate 60000 people to defuse british wwii bomb,frankfurt evacuate people defuse british wwii bomb
+0,dingbat maxine waters tells islamic society republicans trying to prevent sharia law from being enforced in america is ‚contrary to american values‚threatens national security‚ [video],dingbat maxine water tell islamic society republican trying prevent sharia law enforced america contrary american valuesthreatens national security video
+0,myriad of ways the cia tried (and failed) to assassinate fidel castro,myriad way cia tried failed assassinate fidel castro
+1,britain saudi arabia sign military cooperation deal: state media,britain saudi arabia sign military cooperation deal state medium
+0,unreal! new york times blames conservatives for berkeley violence‚watch this video for the truth! [video],unreal new york time blame conservative berkeley violencewatch video truth video
+0,cia official tells jury about day 'all hell broke loose' in benghazi,cia official tell jury day hell broke loose benghazi
+1,india struggles to rein in border flows of cattle and rohingya,india struggle rein border flow cattle rohingya
+1,german parties in coalition talks agree to stick to balanced budget,german party coalition talk agree stick balanced budget
+0,update: under pressure? miss usa just flip flopped on healthcare [video],update pressure miss usa flip flopped healthcare video
+0,video: black man tells reporter they‚re taking protests to charlotte suburbs,video black man tell reporter theyre taking protest charlotte suburb
+1,british pm expected to offer to fill post-brexit eu budget hole: ft,british pm expected offer fill postbrexit eu budget hole ft
+1,russia says iraqi kurds must act in concert with baghdad,russia say iraqi kurd must act concert baghdad
+1,german citizen on trial in turkey on political charges: media,german citizen trial turkey political charge medium
+0,mike huckabee defends daughter sarah‚makes hilarious comparison to media and preschool age grandchildren,mike huckabee defends daughter sarahmakes hilarious comparison medium preschool age grandchild
+1,syria: us peace council addresses united nations in nyc,syria u peace council address united nation nyc
+1,head of germany's fdp offers macron 'bittersweet' euro zone deal,head germany fdp offer macron bittersweet euro zone deal
+1,opposition challenges venezuelan socialists' vote win urges protests,opposition challenge venezuelan socialist vote win urge protest
+0,cnn‚s fareed zarakia: trump won because his supporters are stupid racists [video],cnns fareed zarakia trump supporter stupid racist video
+1,raqqa tribal chiefs say sdf agrees to let syrian is fighters leave city: statement,raqqa tribal chief say sdf agrees let syrian fighter leave city statement
+1,thousands of indonesians join anti-myanmar rally in jakarta,thousand indonesian join antimyanmar rally jakarta
+1,fire in bangladesh textile factory kills six,fire bangladesh textile factory kill six
+0,hurricane irma kills five as it sweeps through island of saint martin,hurricane irma kill five sweep island saint martin
+0,obama floods america with illegal aliens,obama flood america illegal alien
+0,list of 24 republicans who voted ‚yes‚ to keep obama‚s taxpayer-funded sex-change surgeries in place for transgenders in military,list republican voted yes keep obamas taxpayerfunded sexchange surgery place transgenders military
+0,the tea party is making a comeback! conservatives reorganize‚mobilize to fight back against rent-a-mob democrats,tea party making comeback conservative reorganizemobilize fight back rentamob democrat
+0,communist sympathizer nyc mayor deblasio encourages anti-trump protesters to keep going: ‚the more people fight back,communist sympathizer nyc mayor deblasio encourages antitrump protester keep going people fight back
+0,active shooter drill suddenly ‚goes live‚ at joint base andrews in maryland,active shooter drill suddenly go live joint base andrew maryland
+1,turkey should follow west's lead on rights: author orhan pamuk,turkey follow west lead right author orhan pamuk
+0,dear mr. president‚when we said ‚lock her up‚ we weren‚t asking [video],dear mr presidentwhen said lock werent asking video
+1,german wage talks to include new focus: reduced working hours,german wage talk include new focus reduced working hour
+1,china says 'good preparations' should be made for trump's visit,china say good preparation made trump visit
+0,hillary clinton crashing in polls: moves to obama strategy‚using taxpayer money to give away free sh*t,hillary clinton crashing poll move obama strategyusing taxpayer money give away free sht
+0,us media hyped ‚active shooter‚ drill at andrews base as real event,u medium hyped active shooter drill andrew base real event
+1,russian presidential hopeful says she won't sling mud at putin,russian presidential hopeful say wont sling mud putin
+0,joe biden‚s shocking announcement: ‚what the hell,joe bidens shocking announcement hell
+0,sick trend: ‚sologamist‚ describes what it‚s like to be the bride and the groom: ‚i‚m worth it!‚ [video],sick trend sologamist describes like bride groom im worth video
+1,mattis looking to see if changes need to be made after niger ambush,mattis looking see change need made niger ambush
+0,another soldier in obama‚s race war: 4 white people shot in tn ambush,another soldier obamas race war white people shot tn ambush
+0,democrat senator makes up fake anti-trump story during cnn interview [video],democrat senator make fake antitrump story cnn interview video
+0,retired cop pens gut-wrenching viral letter to 49er‚s qb colin kaepernick‚this is a must read!,retired cop pen gutwrenching viral letter er qb colin kaepernickthis must read
+1,austria‚s not playing games: bans face-concealing islamic dress‚mandates ‚integration‚ course‚or else,austria playing game ban faceconcealing islamic dressmandates integration courseor else
+0,as predicted,predicted
+1,trump conducts sting operation on us intelligence services,trump conduct sting operation u intelligence service
+1,china's fuel exports to north korea slow further - customs,china fuel export north korea slow custom
+1,france opens door to strengthen iran nuclear deal for post-2025,france open door strengthen iran nuclear deal post
+0,boom! small alabama town takes on target: any man using women‚s restroom,boom small alabama town take target man using womens restroom
+1,trump to nominate juster to be ambassador to india: white house,trump nominate juster ambassador india white house
+0,windows 10 is stealing your bandwidth (you might want to delete it),window stealing bandwidth might want delete
+1,istanbul's ataturk airport reopens after jet crash turkish airlines ceo says,istanbul ataturk airport reopens jet crash turkish airline ceo say
+1,china urges restraint amid war of words between trump and north korea,china urge restraint amid war word trump north korea
+1,romania's ruling party endorses government reshuffle plan,romania ruling party endorses government reshuffle plan
+1,putin says military strike against north korea not sure to succeed,putin say military strike north korea sure succeed
+0,panhandler confronted by outraged man [video],panhandler confronted outraged man video
+1,if trump says iran violating nuclear deal does not mean u.s. withdrawal: haley,trump say iran violating nuclear deal mean u withdrawal haley
+1,hoyer asked on german finmin post says 'extremely happy' at eib,hoyer asked german finmin post say extremely happy eib
+1,shrillary gives bitter concession speech in new hampshire,shrillary give bitter concession speech new hampshire
+1,putin watches as russia intensifies war games that have rattled west,putin watch russia intensifies war game rattled west
+0,boom! marco rubio has best line of the day at comey hearings [video],boom marco rubio best line day comey hearing video
+0,episode #199 ‚ sunday wire: ‚trigger warning: id politics‚ with gilad atzmon and jay dyer,episode sunday wire trigger warning id politics gilad atzmon jay dyer
+1,u.s. will not interfere in eu trade with iran: tillerson,u interfere eu trade iran tillerson
+0,shocker! cnn panel rips on dnc chair for his disgusting profanity laden speeches [video],shocker cnn panel rip dnc chair disgusting profanity laden speech video
+0,russian street preacher vs. american students,russian street preacher v american student
+1,saudi arabia seeks islamic tourism boost in test for heritage tradition,saudi arabia seek islamic tourism boost test heritage tradition
+0,e.t. williams: ‚anti trump protesters,et williams anti trump protester
+1,boiler room ‚ ep #48 ‚ agenda 2030 and beyond with branko maliƒá,boiler room ep agenda beyond branko mali
+0,al sharpton blames racism for trump victory,al sharpton blame racism trump victory
+1,ukraine says ammo depot explosions huge blow to combat capability,ukraine say ammo depot explosion huge blow combat capability
+1,syria fighting worst since aleppo air strikes deadly: aid agencies,syria fighting worst since aleppo air strike deadly aid agency
+0,new york times is advocating for internet censorship (controlled by them and other ‚approved‚ agents),new york time advocating internet censorship controlled approved agent
+1,kenya police shoot dead two during opposition protest: commissioner,kenya police shoot dead two opposition protest commissioner
+0,trey gowdy reminds comey it‚s 10 years in jail for obama officials who leaked info [video],trey gowdy reminds comey year jail obama official leaked info video
+1,factbox: catalonia-spain crisis - what happens next?,factbox cataloniaspain crisis happens next
+1,iraq pm abadi expects islamic state's complete defeat in iraq this year,iraq pm abadi expects islamic state complete defeat iraq year
+0,hillary clinton: ‚victory fund‚ gets massive cash injection from hedge fund management (soros),hillary clinton victory fund get massive cash injection hedge fund management soros
+0,thanksgiving day fake news turkey shoot: boiler room ‚ special holiday event,thanksgiving day fake news turkey shoot boiler room special holiday event
+0,obama joins comedy central host to push ‚laughable‚ establishment conspiracy theory on dnc leaks,obama join comedy central host push laughable establishment conspiracy theory dnc leak
+1,four britons kidnapped in nigeria's delta state: police,four briton kidnapped nigeria delta state police
+1,j&f calls brazil judge decision to freeze assets 'legally fragile',jf call brazil judge decision freeze asset legally fragile
+1,syrian army allies seize more of jordanian frontier: report,syrian army ally seize jordanian frontier report
+1,uk top court seeks clarity on how to handle eu rulings after brexit,uk top court seek clarity handle eu ruling brexit
+1,britain worried by violence in catalonia but says vote was not constitutional: johnson,britain worried violence catalonia say vote constitutional johnson
+1,tillerson to visit saudi arabia qatar pakistan india switzerland,tillerson visit saudi arabia qatar pakistan india switzerland
+1,ex-soccer star 'king george' nears goal of liberia presidency,exsoccer star king george nears goal liberia presidency
+0,breaking report: antifa thugs place bounty on head of black patriot defending confederate monuments [video],breaking report antifa thug place bounty head black patriot defending confederate monument video
+1,u.s. special envoy encouraged that kurds could embrace plan to delay referendum,u special envoy encouraged kurd could embrace plan delay referendum
+0,evil hillary supporters yell ‚f*ck trump‚‚burn truck of daddy fishing with 2 yr son over of trump bumper-stickers [video],evil hillary supporter yell fck trumpburn truck daddy fishing yr son trump bumperstickers video
+0,wow! watch obama‚s 5 most threatening comments against americans,wow watch obamas threatening comment american
+1,'mad dog' anti-trump leaflets suspected floated in from north korea turn up in seoul,mad dog antitrump leaflet suspected floated north korea turn seoul
+1,philippine military chief says 'matter of days' before marawi liberated,philippine military chief say matter day marawi liberated
+0,navy seals ‚forced to spend their own money on combat gear‚‚while u.s. marines will spend $50 million to save desert tortoises,navy seal forced spend money combat gearwhile u marine spend million save desert tortoise
+1,u.n. panel urges russia to fight racism by neo-nazis in sports,un panel urge russia fight racism neonazis sport
+0,liberal lunacy: a real tom turkey you‚ll get a kick out of!,liberal lunacy real tom turkey youll get kick
+1,kurdish forces pullout from khanaqin area on iraq-iran border security sources say,kurdish force pullout khanaqin area iraqiran border security source say
+0,finally! fed up princeton students fight back against black lives matter terrorists‚ demands,finally fed princeton student fight back black life matter terrorist demand
+0,sunday screening: overpill (2017),sunday screening overpill
+0,live electoral vote count tallies‚update: trump 306,live electoral vote count talliesupdate trump
+0,outrage! obama‚s federal wildlife officers (?) arrest journalists for videotaping open borders [video],outrage obamas federal wildlife officer arrest journalist videotaping open border video
+1,active shooter or drill? the cascade mall shooting,active shooter drill cascade mall shooting
+1,liberty report talks to vanessa beeley: ‚everything the us media says about aleppo is wrong‚,liberty report talk vanessa beeley everything u medium say aleppo wrong
+1,u.s.'s mattis says eyeing provocative iran actions after trump speech,us mattis say eyeing provocative iran action trump speech
+0,london‚s mayor has harsh words for our community organizer in chief: ‚butt out,london mayor harsh word community organizer chief butt
+1,new bill gates ai-powered ‚evolv‚ body scanners will ‚inspect‚ americans in public spaces,new bill gate aipowered evolv body scanner inspect american public space
+1,trump denies seeking nearly tenfold increase in u.s. nuclear arsenal,trump denies seeking nearly tenfold increase u nuclear arsenal
+1,tunisia parliament approves controversial amnesty for ben ali-era corruption,tunisia parliament approves controversial amnesty ben aliera corruption
+0,post-trump liberal meltdown: counseling,posttrump liberal meltdown counseling
+1,spanish flag-waving underpins rajoy's tough line on catalonia,spanish flagwaving underpins rajoys tough line catalonia
+1,poland says full protection of eu citizens' rights in uk key in brexit,poland say full protection eu citizen right uk key brexit
+0,dem party official,dem party official
+1,media immediately reports alleged killer of imam,medium immediately report alleged killer imam
+0,breaking news: obama‚s ag loretta lynch ordered manafort‚s phone tapped during meeting with russian lawyer,breaking news obamas ag loretta lynch ordered manaforts phone tapped meeting russian lawyer
+0,pulitzer prize winning author toni morrison: ‚i want to see a cop shoot a white unarmed teenager in the back‚,pulitzer prize winning author toni morrison want see cop shoot white unarmed teenager back
+0,wow! ‚we mexicans need to kill donald trump before he becomes president‚cross the border and go and kill trump and his supporters‚ [video],wow mexican need kill donald trump becomes presidentcross border go kill trump supporter video
+1,buddhist mistrust of foreign aid workers hampers relief for myanmar's rohingya,buddhist mistrust foreign aid worker hamper relief myanmar rohingya
+0,why decision liberal judge in connecticut is about to make could be huge threat to our second amendment,decision liberal judge connecticut make could huge threat second amendment
+1,heavy civilian casualties in raqqa from air strikes: u.n.,heavy civilian casualty raqqa air strike un
+1,turkey to investigate galatasaray's 'rocky' poster over coup links,turkey investigate galatasarays rocky poster coup link
+0,is tim allen‚s ‚last man standing‚ about to be revived after ‚passionate‚ conservatives express outrage over abc‚s decision to cancel show?,tim allen last man standing revived passionate conservative express outrage abc decision cancel show
+1,myanmar faces 'defining moment' must stop the violence: u.s.,myanmar face defining moment must stop violence u
+0,epic response after the boston globe runs fake cover bashing trump‚this is great!,epic response boston globe run fake cover bashing trumpthis great
+1,trump says north korea's kim 'will be tested like never before',trump say north korea kim tested like never
+0,cheerleading assassination: are hollywood and politicians going too far?,cheerleading assassination hollywood politician going far
+1,two rich italian regions vote for more autonomy - prelim results,two rich italian region vote autonomy prelim result
+1,u.s. deaths in niger highlight africa military mission creep,u death niger highlight africa military mission creep
+1,striking french workers disrupt flights schools,striking french worker disrupt flight school
+0,liberal lunatic chris matthews scolded by piers morgan for trashing trump family [video],liberal lunatic chris matthew scolded pier morgan trashing trump family video
+0,beyond evil: 8th planned parenthood video stem cell ceo laughs about intact babies shocking lab workers when opening shipments [video],beyond evil th planned parenthood video stem cell ceo laugh intact baby shocking lab worker opening shipment video
+1,polish president says 'multi-speed' eu will lead to break-up of bloc,polish president say multispeed eu lead breakup bloc
+0,exposed: facebook blacklists conservative news & falsified ‚black lives matter‚ trend,exposed facebook blacklist conservative news falsified black life matter trend
+1,boiler room ep #76 ‚ resign,boiler room ep resign
+0,update: transgender target boycott reaches boiling point‚loses $4 billion in 30 days‚ceo defends dangerous bathroom position,update transgender target boycott reach boiling pointloses billion daysceo defends dangerous bathroom position
+0,kabul mosque attack: four-year-old called to safety,kabul mosque attack fouryearold called safety
+1,fatah hamas to discuss security in gaza under unity deal,fatah hamas discus security gaza unity deal
+1,dozens of prisoners on the run in central ivory coast,dozen prisoner run central ivory coast
+1,u.s. special envoy says kurdish referendum has 'a lot of risks',u special envoy say kurdish referendum lot risk
+1,new zealand calls in navy to beat jet fuel shortage before vote,new zealand call navy beat jet fuel shortage vote
+1,japan's abe says time for talk is over on north korea,japan abe say time talk north korea
+0,have the us,u
+0,why americans should care that facebook‚s ceo is threatening users against muslim refugee ‚hate speech‚,american care facebooks ceo threatening user muslim refugee hate speech
+0,chicago community organizers mobilize flash mobs to shut down trump campaign rally,chicago community organizer mobilize flash mob shut trump campaign rally
+1,anarchy by design: ‚anti-trump‚ flash mobs,anarchy design antitrump flash mob
+1,britain still committed to unesco pm may's spokesman says,britain still committed unesco pm may spokesman say
+1,syria investigator del ponte signs off with a sting,syria investigator del ponte sign sting
+0,breaking bombshell: undercover video shows ny dem elections official explain stunning voter fraud scams in minority areas‚no id‚s‚absentee votes,breaking bombshell undercover video show ny dem election official explain stunning voter fraud scam minority areasno idsabsentee vote
+1,maltese journalist probably killed by remotely detonated bomb government says,maltese journalist probably killed remotely detonated bomb government say
+1,myanmar says security forces told to avoid collateral damage in rakhine,myanmar say security force told avoid collateral damage rakhine
+0,hillary supporters launch vile attack on woman hillary ‚threatened‚ for coming forward with rape allegations against bill clinton: ‚hillary should have beat her up,hillary supporter launch vile attack woman hillary threatened coming forward rape allegation bill clinton hillary beat
+0,facebook now decides what is branded fake news,facebook decides branded fake news
+1,britain's labour says cannot vote for eu withdrawal bill unless amended,britain labour say vote eu withdrawal bill unless amended
+0,white washed? trump claims classified jfk files will be released,white washed trump claim classified jfk file released
+1,poland asks eu to drop legal case against warsaw over migrant quotas,poland asks eu drop legal case warsaw migrant quota
+1,competing efforts to end south sudan's war prolong conflict: u.n. panel,competing effort end south sudan war prolong conflict un panel
+0,boiler room ‚ ep #45 ‚ horror hotel,boiler room ep horror hotel
+1,fighting in libyan capital closes airport,fighting libyan capital close airport
+1,u.s. drone strike kills militant whose group killed 250 in pakistan,u drone strike kill militant whose group killed pakistan
+1,merkel emerges as clear winner of only tv debate: poll,merkel emerges clear winner tv debate poll
+1,majority of people in france now dissatisfied with macron: poll,majority people france dissatisfied macron poll
+1,macron assures iran's rouhani of france's commitment to nuclear deal,macron assures iran rouhani france commitment nuclear deal
+1,daily shooter academy: florida woman shot dead by police during ‚roleplay‚ drill,daily shooter academy florida woman shot dead police roleplay drill
+0,us delta force begins targeting isis in iraq,u delta force begin targeting isi iraq
+1,factbox: japan main parties' key election pledges ahead of october 22 vote,factbox japan main party key election pledge ahead october vote
+0,white student union at ca university mocks #blm terror group‚publishes list of their demands,white student union ca university mock blm terror grouppublishes list demand
+0,michelle and barack obama had time for this ‚circus‚ but no time for justice scalia? [video],michelle barack obama time circus time justice scalia video
+0,embarrassing picture shows giddy obama bowing to communist cuban dictator raul castro,embarrassing picture show giddy obama bowing communist cuban dictator raul castro
+0,jesse jackson style shakedown: naacp president caught selling endorsements for political candidates,jesse jackson style shakedown naacp president caught selling endorsement political candidate
+1,new zealand national leader says will speak with kingmaker peters in the next few days,new zealand national leader say speak kingmaker peter next day
+0,this one creepy tweet from hillary should have parents saying: ‚hands off my kids!‚,one creepy tweet hillary parent saying hand kid
+1,senior chinese military officer questioned over suspected graft: sources,senior chinese military officer questioned suspected graft source
+0,second major makeup manufacturer chooses man with razor stubble to be face for their products,second major makeup manufacturer chooses man razor stubble face product
+1,anti-nuclear campaign group wins 2017 nobel peace prize,antinuclear campaign group win nobel peace prize
+0,tucker carlson exposes radical middle school teacher who organizes violent protesters to shut down free speech[video],tucker carlson expose radical middle school teacher organizes violent protester shut free speechvideo
+0,will american law enforcement lie,american law enforcement lie
+0,unreal! senior veteran randomly attacked repeatedly by thug as onlookers did nothing [video],unreal senior veteran randomly attacked repeatedly thug onlooker nothing video
+1,trump says 'only one thing will work' with north korea,trump say one thing work north korea
+1,genocide trial against ex-guatemalan dictator rios montt to restart,genocide trial exguatemalan dictator rio montt restart
+0,john mccain throws tantrum,john mccain throw tantrum
+0,lol! joe biden flies to serbia‚is greeted with massive rally for trump [video],lol joe biden fly serbiais greeted massive rally trump video
+0,boiler room ‚ #unitetheright coverage with hesher,boiler room unitetheright coverage hesher
+0,no joke! the epa sticks its nose into the nail salon business,joke epa stick nose nail salon business
+1,swedish court sentences syrian asylum seeker to prison for posing with war dead,swedish court sentence syrian asylum seeker prison posing war dead
+1,spain reluctantly forced to act in catalan vote official says,spain reluctantly forced act catalan vote official say
+1,iraq increases oil exports from south to make up for kirkuk shortfall,iraq increase oil export south make kirkuk shortfall
+0,boiler room ep #69 ‚ culture club,boiler room ep culture club
+0,is an ugly revolt inevitable? bernie sanders supporters are asked if they‚ll vote for hillary if bernie loses nomination [video],ugly revolt inevitable bernie sander supporter asked theyll vote hillary bernie loses nomination video
+1,u.s. air strike causes casualties as mattis visits afghan capital,u air strike cause casualty mattis visit afghan capital
+1,furious philippines decries west's joint stand on drug war killings,furious philippine decries west joint stand drug war killing
+1,trump lays out new iran strategy friday complicating european ties,trump lay new iran strategy friday complicating european tie
+1,us middle class still suffering from rockefeller-kissinger industrial transfer scheme to china,u middle class still suffering rockefellerkissinger industrial transfer scheme china
+0,"epic fail: anti-trump movement spent $75 million on 64000 ads""",epic fail antitrump movement spent million ad
+1,five things to look out for with trump‚s pentagon,five thing look trump pentagon
+0,inside trump‚s charity ball tonight at beautiful mar-a-lago‚protests outside [video],inside trump charity ball tonight beautiful maralagoprotests outside video
+1,it‚s more likely that a us insider,likely u insider
+0,german official warns of civil war between muslims and non-muslims: ‚somewhere at the edge of anarchy and sliding towards civil war‚,german official warns civil war muslim nonmuslims somewhere edge anarchy sliding towards civil war
+1,globalization migration fears reawaken germans' interest in 'heimat',globalization migration fear reawaken german interest heimat
+1,eu's barnier worried by uk's post-brexit plan for irish border,eu barnier worried uk postbrexit plan irish border
+0,congressman jim jordan stops cnn gatekeeper chris cuomo on benghazi cover-up,congressman jim jordan stop cnn gatekeeper chris cuomo benghazi coverup
+0,neil cavuto gives a huge reality check to college activist who wants free college [video],neil cavuto give huge reality check college activist want free college video
+1,police fire tear gas at congo opposition leader's supporters,police fire tear gas congo opposition leader supporter
+1,indian priest kidnapped in yemen has been freed: oman,indian priest kidnapped yemen freed oman
+0,two somali muslim men arrested for daytime gun fight in olive garden parking lot in city ranked ‚#2 best place to live in america‚,two somali muslim men arrested daytime gun fight olive garden parking lot city ranked best place live america
+1,election campaigning underway in japan as abe takes on hope,election campaigning underway japan abe take hope
+1,malta offers 1 million-euro reward to find journalist's killers,malta offer millioneuro reward find journalist killer
+1,japan's abe uk may pledge cooperation on north korea threat,japan abe uk may pledge cooperation north korea threat
+0,hillary‚s horrifying answer to this question might be the best reason ever to not vote for her [video],hillary horrifying answer question might best reason ever vote video
+1,argentina midterm vote leaves peronism divided leaderless,argentina midterm vote leaf peronism divided leaderless
+0,college students asked to sign a petition canceling christmas‚did they agree? [video],college student asked sign petition canceling christmasdid agree video
+0,socialist bernie sanders praises castro [video],socialist bernie sander praise castro video
+0,did hillary really think she‚d get away with telling big fat lie about obama‚s ‚red line‚ comment?,hillary really think shed get away telling big fat lie obamas red line comment
+1,zimbabwe first lady sues in dispute over $1.35 million ring: state media,zimbabwe first lady sue dispute million ring state medium
+1,syrian army strikes rebels near hama: monitor,syrian army strike rebel near hama monitor
+1,diplomatic frauds: kerry,diplomatic fraud kerry
+0,out in the open: ‚9/11‚ 15 years of a transparent lie,open year transparent lie
+1,u.s. says countries should suspend providing weapons to myanmar,u say country suspend providing weapon myanmar
+1,new york city values? ‚masturbation stations‚ sets up for men to ‚relieve stress‚ midday,new york city value masturbation station set men relieve stress midday
+0,episode #120 ‚ sunday wire: ‚crisis of liberty‚ with guests jason casella and kim upton,episode sunday wire crisis liberty guest jason casella kim upton
+1,uk's may needs parliament to back deal with n.irish party - campaigner,uk may need parliament back deal nirish party campaigner
+1,somali army repels al shabaab after attack at least 17 killed,somali army repels al shabaab attack least killed
+1,iraq launches offensive on hawija an islamic state-held region near oil city kirkuk,iraq launch offensive hawija islamic stateheld region near oil city kirkuk
+0,fake news week: exposing the mainstream consensus reality complex,fake news week exposing mainstream consensus reality complex
+0,author of children‚s books brags about giving $1 million to baby body parts harvester,author childrens book brag giving million baby body part harvester
+0,ben carson destroys interrupting anti-trump msnbc host: ‚can you turn her microphone off please?‚ [video],ben carson destroys interrupting antitrump msnbc host turn microphone please video
+1,u.n. condemns attack on myanmar security forces calls for calm,un condemns attack myanmar security force call calm
+1,kenyan opposition leader odinga who withdrew from vote re-run calls for protests,kenyan opposition leader odinga withdrew vote rerun call protest
+0,judge jeanine is furious! ‚hillary won‚t stop lying!‚ [video],judge jeanine furious hillary wont stop lying video
+1,georgia judge suspended for comparing attack on us monuments to isis actions,georgia judge suspended comparing attack u monument isi action
+0,agent angelina: are cia using hollywood‚s jolie as soft power operative?,agent angelina cia using hollywood jolie soft power operative
+1,'even more concerned' after may brexit speech: senior eu lawmaker,even concerned may brexit speech senior eu lawmaker
+1,bulgaria deputy pm wants new laws to stifle radical islam,bulgaria deputy pm want new law stifle radical islam
+1,shout! poll: should protesters be allowed to shut down political rallies?,shout poll protester allowed shut political rally
+0,breaking: hispanic men (cowards) beat woman in front yard‚steal yard sign‚post sickening video online,breaking hispanic men coward beat woman front yardsteal yard signpost sickening video online
+1,lame duck: new obama executive action opens door to unlimited arms for salafist terrorists in syria,lame duck new obama executive action open door unlimited arm salafist terrorist syria
+0,u.s. mosque linked to terrorist group received $2.7 million in federal funding,u mosque linked terrorist group received million federal funding
+0,u.s. news and world report publishes list of top 10 most popular nations where refugees want to live,u news world report publishes list top popular nation refugee want live
+1,syrian army cuts islamic state's main deir al-zor supply line: ria,syrian army cut islamic state main deir alzor supply line ria
+0,katy perry,katy perry
+1,pakistan afghanistan in angry tangle over border fence to keep out militants,pakistan afghanistan angry tangle border fence keep militant
+0,wow! kellyanne conway‚s ‚mistake‚ forced leftist media to expose what really happened in bowling green‚and the truth about these iraqi ‚refugees‚ is p.r. nightmare for the left [video],wow kellyanne conways mistake forced leftist medium expose really happened bowling greenand truth iraqi refugee pr nightmare left video
+1,najib will aim to win over voters in last budget before elections,najib aim win voter last budget election
+0,breaking: democrats get bad news‚why pa recount case won‚t be so easy to pull off,breaking democrat get bad newswhy pa recount case wont easy pull
+1,'let's get emotional' says german spd struggling to oust merkel,let get emotional say german spd struggling oust merkel
+1,european courts could decide trade disputes during transition period: pm may,european court could decide trade dispute transition period pm may
+1,trump slaps travel restrictions on n.korea venezuela in sweeping new ban,trump slap travel restriction nkorea venezuela sweeping new ban
+1,avocet's convoy in burkina faso strikes landmine killing two,avocet convoy burkina faso strike landmine killing two
+0,trump‚s brilliant director of communications omarosa absolutely destroys joy behar on the view‚and it‚s hilarious! [video],trump brilliant director communication omarosa absolutely destroys joy behar viewand hilarious video
+1,eleven killed in clashes in ethiopia's oromiya region official says,eleven killed clash ethiopia oromiya region official say
+1,wmd fraud: sexed-up un ‚chemical weapons‚ report on syria contrived to trigger more sanctions,wmd fraud sexedup un chemical weapon report syria contrived trigger sanction
+1,vote may have put independence out of reach for iraqi kurds,vote may put independence reach iraqi kurd
+1,taiwan suspends oil exports to north korea imports of clothing,taiwan suspends oil export north korea import clothing
+1,huge ww2 bomb to be defused close to german gold reserves,huge ww bomb defused close german gold reserve
+0,the changing face of mainstream media?,changing face mainstream medium
+1,uk 'not ramping up for no brexit deal' says pm may,uk ramping brexit deal say pm may
+0,question: which presidential candidate spent the most on their campaign so far? the answer may surprise you‚,question presidential candidate spent campaign far answer may surprise
+0,[video] obama tells hometown kenyans: ‚i‚m a pretty good president,video obama tell hometown kenyan im pretty good president
+0,revealed: how us government-media complex are the masters of ‚fake news‚,revealed u governmentmedia complex master fake news
+1,uk pm may will chair meeting of emergency committee after west london incident,uk pm may chair meeting emergency committee west london incident
+1,macedonia wants eu membership process greek talks to run in tandem,macedonia want eu membership process greek talk run tandem
+1,new zealand's kingmaker party to make announcement on government formation on thursday,new zealand kingmaker party make announcement government formation thursday
+1,seven arrested in egypt after raising rainbow flag at concert,seven arrested egypt raising rainbow flag concert
+1,eleven injured in car crash near london museum terrorism ruled out,eleven injured car crash near london museum terrorism ruled
+1,panama's president says switching china ties not 'checkbook diplomacy',panama president say switching china tie checkbook diplomacy
+1,u.s. diplomatic tiff with russia should not be escalated: state department,u diplomatic tiff russia escalated state department
+1,pay 2 play: democratic convention ends amid controversy,pay play democratic convention end amid controversy
+1,britain says northern irish parties running out of time to save devolution,britain say northern irish party running time save devolution
+0,more transparency: clinton‚s refuse to release hillary‚s health records,transparency clinton refuse release hillary health record
+0,ferguson flamethrower comes out of hiding: slams fbi director for blaming ‚ferguson effect‚ on rise in crime,ferguson flamethrower come hiding slam fbi director blaming ferguson effect rise crime
+1,more than 300 syrian refugees rescued arrive in cyprus,syrian refugee rescued arrive cyprus
+0,california protests heat up: students walk out of class claim ‚trump isn‚t our president‚,california protest heat student walk class claim trump isnt president
+1,grave digging protesters start to dig up confederate general‚s grave‚threaten to go deeper,grave digging protester start dig confederate general gravethreaten go deeper
+1,rockets hit damascus airport area in probable israeli attack: report,rocket hit damascus airport area probable israeli attack report
+1,japan accepts 3 refugees in first half of 2017 despite record asylum seekers,japan accepts refugee first half despite record asylum seeker
+1,turkey iran iraq may meet to discuss kurdish iraqi referendum: turkey pm,turkey iran iraq may meet discus kurdish iraqi referendum turkey pm
+1,bangladesh seeks support to move fleeing rohingya to remote flood-prone island,bangladesh seek support move fleeing rohingya remote floodprone island
+1,myanmar journalists fly home as bangladesh drops charges,myanmar journalist fly home bangladesh drop charge
+0,trump delivers barn burner of a speech: ‚media outlets like cnn and msnbc are fake news‚ [video],trump delivers barn burner speech medium outlet like cnn msnbc fake news video
+0,an american tragedy: who really killed jonbenét ramsey?,american tragedy really killed jonbent ramsey
+0,lol! leftist rag publishes story about how president trump will use racist #hurricaneharvey to harm blacks,lol leftist rag publishes story president trump use racist hurricaneharvey harm black
+1,merkel has no doubts uk eu will achieve good brexit result,merkel doubt uk eu achieve good brexit result
+1,turkish u.s. foreign ministers speak by phone amid visa dispute: sources,turkish u foreign minister speak phone amid visa dispute source
+1,peruvians take glencore to court over police abuse allegations,peruvian take glencore court police abuse allegation
+1,uk business unions ally to urge brexit citizenship deal,uk business union ally urge brexit citizenship deal
+1,mattis says will try to work with pakistan 'one more time',mattis say try work pakistan one time
+1,u.s. navy carrier drills with japanese navy amid north korean tension,u navy carrier drill japanese navy amid north korean tension
+1,nigeria jails 45 boko haram suspects in mass trial held in secret,nigeria jail boko haram suspect mass trial held secret
+0,college students express disgust in trump‚s ‚first 100 days‚‚until they find out interviewer was talking about obama [video],college student express disgust trump first daysuntil find interviewer talking obama video
+0,msnbc‚s chris matthews compares ivanka trump,msnbcs chris matthew compare ivanka trump
+0,sunday screening: ‚in debt we trust‚ (2007),sunday screening debt trust
+1,pakistani anti-corruption court indicts ousted pm sharif,pakistani anticorruption court indicts ousted pm sharif
+1,problems pile up for unlucky village near epicenter of mexican quake,problem pile unlucky village near epicenter mexican quake
+0,boiler room ‚ ep #43 ‚ cloppers,boiler room ep cloppers
+1,somalia's top military chiefs resign no reason given,somalia top military chief resign reason given
+1,'disastrous' conditions for migrants displaced by libya clashes official says,disastrous condition migrant displaced libya clash official say
+0,flashback: female terrorist who planned to blow up nyc police funeral was a pre-school teacher [video],flashback female terrorist planned blow nyc police funeral preschool teacher video
+1,turkey to close border gates with northern iraq in coordination with baghdad tehran: erdogan spox,turkey close border gate northern iraq coordination baghdad tehran erdogan spox
+1,undercutting the nation state? chicago group suggests ‚global cities‚ should run world affairs,undercutting nation state chicago group suggests global city run world affair
+1,falling apart: west‚s media-driven deception in syria,falling apart west mediadriven deception syria
+0,washington post attempts to smear ron paul institute and others,washington post attempt smear ron paul institute others
+0,here‚s what feminists left behind after their day-long hissy fit‚clearly they‚re not too worried about the environment,here feminist left behind daylong hissy fitclearly theyre worried environment
+0,trump supporters attacked by liberal protesters: taking political violence to new level,trump supporter attacked liberal protester taking political violence new level
+1,papuan separatists to petition u.n. against indonesian rule,papuan separatist petition un indonesian rule
+1,tokyo governor launches new party won't run for election herself,tokyo governor launch new party wont run election
+1,amsterdam mayor van der laan who once snubbed putin dies of cancer,amsterdam mayor van der laan snubbed putin dy cancer
+0,obama tells troops to rise up against trump‚protest his authority‚feel free to criticize him [video],obama tell troop rise trumpprotest authorityfeel free criticize video
+1,southern yemen leader sees independence referendum parliament body,southern yemen leader see independence referendum parliament body
+1,what‚s the leading killer of american adults under 50? drug overdose.,whats leading killer american adult drug overdose
+1,myanmar army facebook posts covering key period of offensive 'hidden',myanmar army facebook post covering key period offensive hidden
+0,the purge: nyc mayor de blasio to review ‚all symbols of hate‚ on city property,purge nyc mayor de blasio review symbol hate city property
+1,survey: top ten fears of 2015,survey top ten fear
+1,trapped by landmines and a creek rohingya languish in no-man's land,trapped landmines creek rohingya languish nomans land
+0,has face book sided with muslim jihadists against free speech? muhammed cartoon contest winner is removed from social media site,face book sided muslim jihadist free speech muhammed cartoon contest winner removed social medium site
+1,israel says it will intensify response to syrian fire,israel say intensify response syrian fire
+1,trump says puerto rico in trouble after hurricane debt 'must be dealt with',trump say puerto rico trouble hurricane debt must dealt
+0,breaking: video of young obama emerges discussing mentor frank marshall davis‚ advice about growing up in a white racist world,breaking video young obama emerges discussing mentor frank marshall davis advice growing white racist world
+0,full video: the blockbuster investigation into clinton cash,full video blockbuster investigation clinton cash
+1,eu parliament mauls uk's brexit progress may urged to 'sack boris',eu parliament maul uk brexit progress may urged sack boris
+1,tillerson lands in riyadh at start of gulf south asia tour,tillerson land riyadh start gulf south asia tour
+0,hollywood witchcraft: the dark side revealed in the witch (2016),hollywood witchcraft dark side revealed witch
+0,dallas ‚attack‚ dialectics: summer of uncle sam,dallas attack dialectic summer uncle sam
+1,eu will lose credibility if it tolerates direct rule of catalonia by madrid: regional official,eu lose credibility tolerates direct rule catalonia madrid regional official
+1,china names new commanders for army air force in reshuffle,china name new commander army air force reshuffle
+1,russia denies it bombed u.s.-backed militias in syria - ria,russia denies bombed usbacked militia syria ria
+0,breaking: sean hannity interviews wikileaks‚ julian assange‚proves he‚s still alive: ‚our source is not the russian government‚,breaking sean hannity interview wikileaks julian assangeproves he still alive source russian government
+0,watch protesters at dnc: ‚i‚ll take trump over hillary any day‚she won‚t win if it comes to black votes‚ crowd shouts: ‚don‚t vote for hillary,watch protester dnc ill take trump hillary dayshe wont win come black vote crowd shout dont vote hillary
+1,may's government pushes brexit bill to avoid 'chaotic' departure,may government push brexit bill avoid chaotic departure
+1,after euro zone germany's schaeuble faces new challenge in far-right,euro zone germany schaeuble face new challenge farright
+1,'i am sorry' british pm may says of botched election,sorry british pm may say botched election
+1,clinton‚s ‚no-fly zone‚ over syria will not ‚save lives‚ ‚ it will lead to war with russia,clinton nofly zone syria save life lead war russia
+1,factbox: business empire of czech election front-runner babis,factbox business empire czech election frontrunner babis
+1,iraq reconstruction conference in kuwait planned for early 2018,iraq reconstruction conference kuwait planned early
+0,cnn is evil: carol costello fails when benghazi dad flips script on her‚#boycottcnn,cnn evil carol costello fails benghazi dad flip script herboycottcnn
+0,why decision to cut off gas deliveries to trump supporters by gas co owner in maine will probably destroy his business [audio],decision cut gas delivery trump supporter gas co owner maine probably destroy business audio
+1,orlando mass shooting & the accelerated police state ‚ uk column ‚ june 13,orlando mass shooting accelerated police state uk column june
+1,turkey to retry opposition lawmaker jailed on espionage charges: ntv,turkey retry opposition lawmaker jailed espionage charge ntv
+0,nation of islam joins #blacklivesmatter terrorists to shut down chicago‚s popular ‚miracle mile‚ on busiest shopping day of year [videos and photos],nation islam join blacklivesmatter terrorist shut chicago popular miracle mile busiest shopping day year video photo
+1,csx resumes normal train operations into parts of georgia: statement,csx resume normal train operation part georgia statement
+0,great answer! trump‚s response to question from bbc reporter: ‚this was your choice of a question,great answer trump response question bbc reporter choice question
+0,[video] carly takes on the view hacks only days after saying she has a ‚demented face‚ and a ‚halloween mask‚,video carly take view hack day saying demented face halloween mask
+1,pakistan pm tells tillerson it has 'produced results' in fighting terrorism,pakistan pm tell tillerson produced result fighting terrorism
+1,inspired by 'blasphemy killer' new pakistani party eyes 2018 vote,inspired blasphemy killer new pakistani party eye vote
+1,u.n. tribunal schedules verdict in mladic war crimes trial for nov. 22,un tribunal schedule verdict mladic war crime trial nov
+0,more fake news: mainstream media lies about trump ‚evicting‚ white house press corp,fake news mainstream medium lie trump evicting white house press corp
+0,boiler room ep #128 ‚ ‚free speech‚ not without a war‚,boiler room ep free speech without war
+1,arab rivalries exposed as egypt targets qatar in unesco vote,arab rivalry exposed egypt target qatar unesco vote
+1,britain lifts electronic device ban on flights from cairo: ministry,britain lift electronic device ban flight cairo ministry
+0,election whistleblower: doj in cahoots with dems‚4 million dead on voter rolls‚trump is right! [video],election whistleblower doj cahoot dems million dead voter rollstrump right video
+0,unreal! sheila jackson lee demands that trump resign: goes at it with neil cavuto: ‚you‚ve come to the conclusion he‚s guilty as sin‚ [video],unreal sheila jackson lee demand trump resign go neil cavuto youve come conclusion he guilty sin video
+1,british spy boss says cyber security as important as fighting terrorism,british spy bos say cyber security important fighting terrorism
+0,it begins: anthony scaramucci fires suspected leaker,begin anthony scaramucci fire suspected leaker
+1,juncker says does not want catalan independence,juncker say want catalan independence
+0,breaking: fbi director james comey re-opens investigation of hillary‚s private server,breaking fbi director james comey reopens investigation hillary private server
+0,wow! pro-castro leftist: cubans fled castro to escape annoying wife and family [video],wow procastro leftist cuban fled castro escape annoying wife family video
+1,iraqi forces take control of kirkuk governorate building unopposed: security sources,iraqi force take control kirkuk governorate building unopposed security source
+1,facebook federal spy agency,facebook federal spy agency
+0,stunning video: 80-yr old man forced by police to provide asylum for refugees in italian hotel against his will,stunning video yr old man forced police provide asylum refugee italian hotel
+1,ukraine's poroshenko rejects russia's 'hybrid' peackeeping offer,ukraine poroshenko reject russia hybrid peackeeping offer
+0,us-uk dirty war: ‚latin american-style‚ death squads in iraq revealed through chilcot,usuk dirty war latin americanstyle death squad iraq revealed chilcot
+0,an inside look at obama‚s 5-star summer vacation retreat: meanwhile‚62% of americans won‚t be taking a vacation this summer,inside look obamas star summer vacation retreat meanwhile american wont taking vacation summer
+1,tanzania president names tax expert as central bank governor,tanzania president name tax expert central bank governor
+1,britain to study effect of foreign students on economy,britain study effect foreign student economy
+0,illegal immigrants destroy italy‚open borders have terrible consequences! [video],illegal immigrant destroy italyopen border terrible consequence video
+1,tropical storm lidia leaves seven dead in mexico's baja california peninsula,tropical storm lidia leaf seven dead mexico baja california peninsula
+1,britain says chances of resolving northern ireland impasse 'not positive',britain say chance resolving northern ireland impasse positive
+1,media says trump cannot use anonymous sources,medium say trump use anonymous source
+1,factbox: policies of austria's main parties in sunday's election,factbox policy austria main party sunday election
+0,bombshell: hillary‚s democrat niece is ‚100 percent‚ behind her choice for president‚and it‚s not her ‚selfish‚ aunt hillary,bombshell hillary democrat niece percent behind choice presidentand selfish aunt hillary
+0,numerous public rapes of teenage girls reported at swedish music festivals: ‚rapes at swedish festivals are not really news anymore‚,numerous public rape teenage girl reported swedish music festival rape swedish festival really news anymore
+0,watch obama mention himself 119 times during hillary endorsement speech‚and then i parted the red sea‚lol!,watch obama mention time hillary endorsement speechand parted red sealol
+1,puerto rico power grid faces generational threat in hurricane maria,puerto rico power grid face generational threat hurricane maria
+1,chinese government advisor says more mandarin needed to fight poverty,chinese government advisor say mandarin needed fight poverty
+1,french troops conducting operations on niger-mali border after attack,french troop conducting operation nigermali border attack
+0,hillary clinton‚s ‚kkk‚ smear against trump was democrat strategy,hillary clinton kkk smear trump democrat strategy
+0,walmart will melt class rings with confederate flag: [video] refuses to fulfill order for arkansas woman‚will refund payment,walmart melt class ring confederate flag video refuse fulfill order arkansas womanwill refund payment
+0,teachers give students outrageous religious ed assignment: write letter to parents saying you‚ve converted to islam,teacher give student outrageous religious ed assignment write letter parent saying youve converted islam
+1,united states says cambodian accusations all false,united state say cambodian accusation false
+1,philippines vows to crush pro-islamic state groups after two leaders killed,philippine vow crush proislamic state group two leader killed
+1,uk pm may: we will not revoke article 50 eu exit process,uk pm may revoke article eu exit process
+0,u.s. carrier patrols off korean peninsula in warning to pyongyang,u carrier patrol korean peninsula warning pyongyang
+0,meredith corp. and koch money buys time inc.,meredith corp koch money buy time inc
+1,potential shift: trump warns israel,potential shift trump warns israel
+1,support for nz's labour party improves position as frontrunner in election race,support nzs labour party improves position frontrunner election race
+1,russia tell u.s. to step back from dispute over military observation flights,russia tell u step back dispute military observation flight
+0,easily duped: trump surpasses bush,easily duped trump surpasses bush
+0,naive news anchor reporting on ‚refugees‚ gets shocking reality check during live broadcast [video],naive news anchor reporting refugee get shocking reality check live broadcast video
+1,russia's putin accuses u.s. of failing nuclear chemical weapons treaties obligations,russia putin accuses u failing nuclear chemical weapon treaty obligation
+0,former head of muslim brotherhood dies in hospital: lawyer,former head muslim brotherhood dy hospital lawyer
+1,venezuela blasts spain's rajoy over 'repression' in catalonia,venezuela blast spain rajoy repression catalonia
+0,sopa false flag? alleged ‚hack‚ on netflix,sopa false flag alleged hack netflix
+0,boiler room #62 ‚ fatal illusions,boiler room fatal illusion
+0,tucker carlson: why brutal ms-13 gang (obama‚s ‚undocumented children‚) is far greater threat than isis [video],tucker carlson brutal m gang obamas undocumented child far greater threat isi video
+0,extortion? how iran used nuke deal to force obama to retreat from embarrassing ‚red line‚ threat to syria,extortion iran used nuke deal force obama retreat embarrassing red line threat syria
+0,latest poll: bernie sanders is the only candidate who beats trump,latest poll bernie sander candidate beat trump
+0,high-level whistleblower exposes astonishing evidence of exaggerated global warming data used to dupe world leaders into investing billions,highlevel whistleblower expose astonishing evidence exaggerated global warming data used dupe world leader investing billion
+0,cowardly ‚cbs,cowardly cbs
+1,u.s. commerce secretary says market access protectionism top china issues,u commerce secretary say market access protectionism top china issue
+0,saudi man arrested after threatening women drivers,saudi man arrested threatening woman driver
+0,say ‚hello‚ to your new neighbors! clooney begged for open borders‚now massive refugee camp is erected in his front yard,say hello new neighbor clooney begged open bordersnow massive refugee camp erected front yard
+0,wow! suppression of free speech and gun control for 2nd graders upheld by circuit court judge,wow suppression free speech gun control nd grader upheld circuit court judge
+0,boiler room #93 ‚ the outgoing head of hydra,boiler room outgoing head hydra
+0,family living ‚traditional lifestyle‚ torn apart: police seize 10 homeschooled ‚off grid‚ children from their family,family living traditional lifestyle torn apart police seize homeschooled grid child family
+1,trump says he has made decision on iran deal declines to say what it is,trump say made decision iran deal decline say
+1,north korea rejects direct talks with south korea in russia: ria,north korea reject direct talk south korea russia ria
+0,wow! hillary‚s vp pick tim kaine gets only 30 people at rally [video],wow hillary vp pick tim kaine get people rally video
+0,tj maxx and marshalls tell employees to trash signs for ivanka trump line,tj maxx marshall tell employee trash sign ivanka trump line
+0,male pakistani immigrant dresses as woman in burqa‚lures 11 yr old boy from mosque‚rapes,male pakistani immigrant dress woman burqalures yr old boy mosquerapes
+1,germany's surging far-right promises to disrupt cozy parliament,germany surging farright promise disrupt cozy parliament
+1,liberia party submits complaint over alleged vote fraud,liberia party submits complaint alleged vote fraud
+1,u.s. navy fires two commanders after asia sea accidents,u navy fire two commander asia sea accident
+0,man robs taxpayers of $1.4 million in food stamp scam‚using fish!,man robs taxpayer million food stamp scamusing fish
+0,crosstalk: wikileaks vault 7 with guests patrick henningsen,crosstalk wikileaks vault guest patrick henningsen
+1,nz green party leader in talks with labour-led coalition government,nz green party leader talk labourled coalition government
+0,fraternity brothers build ‚make america great again‚ trump wall on private property‚thug students tear it down,fraternity brother build make america great trump wall private propertythug student tear
+0,obama‚s army: black lives matter terrorist shouts,obamas army black life matter terrorist shout
+0,fox news anchor shepard smith goes on a huge anti-christian rant during kim davis rally,fox news anchor shepard smith go huge antichristian rant kim davis rally
+0,obama‚s open borders crisis just got real‚who warns of ‚explosive spread‚ of dangerous virus [video],obamas open border crisis got realwho warns explosive spread dangerous virus video
+0,[video] obama takes advantage of opportunity to speak in front of communists in panama about racist america: ‚there are dark chapters in our own history‚,video obama take advantage opportunity speak front communist panama racist america dark chapter history
+1,say what? trump-hater,say trumphater
+0,hysterical liberals cheer for john kerry‚he came to protest something‚he‚s not sure what it is [video],hysterical liberal cheer john kerryhe came protest somethinghes sure video
+0,crooked hillary‚s campaign manager won‚t rule out 2020 run for president‚she‚s focused on tackling worldwide challenges right now‚lol!,crooked hillary campaign manager wont rule run presidentshes focused tackling worldwide challenge right nowlol
+0,why this american feels safer with an isis flag than a confederate flag on his front porch,american feel safer isi flag confederate flag front porch
+1,islamic state claims responsibility for rocket mortar fire on kabul airport,islamic state claim responsibility rocket mortar fire kabul airport
+1,egypt's hasm militants claim attack targeting myanmar embassy,egypt hasm militant claim attack targeting myanmar embassy
+1,indian journalist shot dead at her residence,indian journalist shot dead residence
+1,over $500 million in thai bank shares transferred on behalf of king: sec,million thai bank share transferred behalf king sec
+1,australia to allow more pacific islands workers patrol fisheries,australia allow pacific island worker patrol fishery
+0,how failed democrat leadership is taking nyc back to pre-[rudy] gilliani era,failed democrat leadership taking nyc back prerudy gilliani era
+0,busted: [video] man attempts to tape ‚gotcha‚ video of cops ‚abusing their powers‚ and gets unexpected challenge from local news,busted video man attempt tape gotcha video cop abusing power get unexpected challenge local news
+0,five things you need to know about crowdstrike,five thing need know crowdstrike
+1,factbox: humanitarian crisis worsens in bangladesh as many rohingya flee myanmar,factbox humanitarian crisis worsens bangladesh many rohingya flee myanmar
+1,germany disputes size of russian wargames predicts 100000 troops,germany dispute size russian wargames predicts troop
+1,u.n. says sri lanka's delay in post-war reconciliation involves risks,un say sri lankas delay postwar reconciliation involves risk
+1,full-frontal assault on censorship: canada‚s post office refuses to deliver satirical newspaper because it‚s ‚offensive‚,fullfrontal assault censorship canada post office refuse deliver satirical newspaper offensive
+1,turkey summons german ambassador as tensions mount,turkey summons german ambassador tension mount
+1,woman charged after trying to scale buckingham palace gates,woman charged trying scale buckingham palace gate
+1,russia regrets israeli pullout from unesco,russia regret israeli pullout unesco
+0,holy freedom of speech! obama‚s attorney general promises to punish americans for anti-muslim speech‚update: why lynch may be ‚most likely candidate‚ to quickly push through supreme court justice nomination process,holy freedom speech obamas attorney general promise punish american antimuslim speechupdate lynch may likely candidate quickly push supreme court justice nomination process
+1,the basque country: spain's effective but expensive antidote to secession,basque country spain effective expensive antidote secession
+0,breaking: car plows into #charlottesville protesters‚several injured,breaking car plow charlottesville protestersseveral injured
+1,the 2016 presidential race: do our votes really matter?,presidential race vote really matter
+0,cuba still a commie hellhole after obama‚s ‚normalization‚: 4 years in the slammer for ‚social dangerousness‚,cuba still commie hellhole obamas normalization year slammer social dangerousness
+1,helicopter mistakenly fires on parked vehicles in russia war games: media,helicopter mistakenly fire parked vehicle russia war game medium
+0,democrat clerk claims election ‚not rigged‚ but ‚bungled beyond belief‚,democrat clerk claim election rigged bungled beyond belief
+1,one of liberia's main parties calls for halt to election results,one liberia main party call halt election result
+1,russia's lavrov says russia committed to iraq territorial integrity: ria,russia lavrov say russia committed iraq territorial integrity ria
+0,chelsea clinton criticizes president trump over policy on transgenders in military‚forgot whose policy banned openly gay soldiers from serving in our military,chelsea clinton criticizes president trump policy transgenders militaryforgot whose policy banned openly gay soldier serving military
+0,second twin falls sexual assault case‚mohammed hussein i. eldai faces felony charges for sexual assault of ‚mentally retarded‚ woman,second twin fall sexual assault casemohammed hussein eldai face felony charge sexual assault mentally retarded woman
+1,syria ceasefire? lavrov,syria ceasefire lavrov
+1,qatar emir says open to dialogue to resolve gulf crisis,qatar emir say open dialogue resolve gulf crisis
+0,cnn‚s don lemon tries to downplay horrific ‚anti-trump‚ torture of mentally disabled man,cnns lemon try downplay horrific antitrump torture mentally disabled man
+1,brexit talks put back a week eu expects may speech,brexit talk put back week eu expects may speech
+0,boiler room ep #87,boiler room ep
+1,prankster interrupts british pm may's keynote party speech,prankster interrupt british pm may keynote party speech
+0,one woman reports the weather in sweden,one woman report weather sweden
+0,a must read: obama‚s treason goes into overdrive,must read obamas treason go overdrive
+1,anti-trump communications specialist for un arrested in nyc for robbing banks during lunch,antitrump communication specialist un arrested nyc robbing bank lunch
+1,rwanda arrests supporters of jailed opposition figure,rwanda arrest supporter jailed opposition figure
+1,spain to present measures to impose direct rule on october 21: pm rajoy,spain present measure impose direct rule october pm rajoy
+0,climate march lefty: ‚we‚re under threat of flooding and can‚t escape‚in the bronx?‚ [video],climate march lefty threat flooding cant escapein bronx video
+0,you lie! obama secretly paid $400 million ransom to iran for release of americans‚bragged about ‚diplomatic breakthrough‚ with iran,lie obama secretly paid million ransom iran release americansbragged diplomatic breakthrough iran
+1,u.s. must consider broader iran threats when formulating new strategy: tillerson,u must consider broader iran threat formulating new strategy tillerson
+1,winnie mandela 'in high spirits' after minor surgery: spokesman,winnie mandela high spirit minor surgery spokesman
+1,kidnapped red cross staff released in afghanistan after seven months,kidnapped red cross staff released afghanistan seven month
+0,[video] #blacklivesmatter terrorists storm dartmouth library,video blacklivesmatter terrorist storm dartmouth library
+0,isis animal executes mom in front of hundreds: claims she asked him to do the unthinkable [video],isi animal executes mom front hundred claim asked unthinkable video
+0,nails it! this list describes perfectly the damage the democrats have done to america,nail list describes perfectly damage democrat done america
+1,revealed: the cia ran lsd sex houses in san francisco in 1950s and 60s,revealed cia ran lsd sex house san francisco
+0,obama‚s soldiers cause 5-hour shut down on st paul,obamas soldier cause hour shut st paul
+1,pope says humanity will 'go down' if it does not address climate change,pope say humanity go address climate change
+0,flashback 2015: anti-gun obsessed white house gives tips on how to talk about ‚gun control‚ at thanksgiving [video],flashback antigun obsessed white house give tip talk gun control thanksgiving video
+0,not-impartial debate moderator martha raddatz sat on whistleblower story that could‚ve ended obama‚s chances in 2008 [video],notimpartial debate moderator martha raddatz sat whistleblower story couldve ended obamas chance video
+1,u.s. steps up pressure on hezbollah offers reward for two operatives,u step pressure hezbollah offer reward two operative
+1,patrick henningsen and don debar discuss trump‚s ‚immigration ban‚ and the media reaction,patrick henningsen debar discus trump immigration ban medium reaction
+1,puigdemont says catalonia to declare independence in 'matter of days': bbc,puigdemont say catalonia declare independence matter day bbc
+0,the existential question of whom to trust,existential question trust
+1,law to let museveni extend rule brought to ugandan parliament,law let museveni extend rule brought ugandan parliament
+0,gop majority senate finally gets it right: votes to gut obamacare and defund planned parenthood,gop majority senate finally get right vote gut obamacare defund planned parenthood
+0,hillary worker from california caught on video committing voter fraud in nevada,hillary worker california caught video committing voter fraud nevada
+0,boiler room #96 ‚ the great lobster degeneracy & the art of debate,boiler room great lobster degeneracy art debate
+0,lol! obama warns voters donald trump is unvetted,lol obama warns voter donald trump unvetted
+1,macedonian nationals arrested in greece over wiretap scandal: police source,macedonian national arrested greece wiretap scandal police source
+0,busted! washington post skips maxine waters‚ admission of no guilt found in trump/russia collusion [podcast],busted washington post skip maxine water admission guilt found trumprussia collusion podcast
+1,former uzbek leader's daughter to resign as ambassador,former uzbek leader daughter resign ambassador
+0,disney owned abc show ‚scandal‚ shows actress having abortion while ‚silent night‚ plays and narrator says: ‚family doesn‚t complete you‚it destroys you‚ [video] update: ‚scandal‚ producer sits on planned parenthood board,disney owned abc show scandal show actress abortion silent night play narrator say family doesnt complete youit destroys video update scandal producer sits planned parenthood board
+0,obama gives illegal aliens in flint,obama give illegal alien flint
+1,this may be the clinton‚s most deplorable act ever: ‚the question becomes,may clinton deplorable act ever question becomes
+1,iraqi forces in final assault to take hawija from islamic state,iraqi force final assault take hawija islamic state
+0,why trump supporters are laughing after wikileaks founder julian assange announces what he has on trump,trump supporter laughing wikileaks founder julian assange announces trump
+1,hud official spends $366000 in fed funds on booze,hud official spends fed fund booze
+0,wow! democrats offer tips on how to convince friends christians are more likely to commit acts of terrorism than muslims,wow democrat offer tip convince friend christian likely commit act terrorism muslim
+1,u.s. urges myanmar to stop offensive allow civilians to return,u urge myanmar stop offensive allow civilian return
+1,vw's catalonia-based unit says will move hq if legal security in doubt,vws cataloniabased unit say move hq legal security doubt
+0,stunning disregard for law: 11 ca counties have more registered voters than voting age citizens‚look who they voted for in last election,stunning disregard law ca county registered voter voting age citizenslook voted last election
+0,tomi lahren blasts the left for attacking trump‚s grandson‚yes,tomi lahren blast left attacking trump grandsonyes
+0,boiler room ‚ ep #46 ‚ murder,boiler room ep murder
+0,john mcafee on hacking smartphones and why bitcoin is here to stay,john mcafee hacking smartphones bitcoin stay
+0,hidden order: was the death of justice scalia linked to ‚secret society‚ at cibolo ranch?,hidden order death justice scalia linked secret society cibolo ranch
+0,polish cut in retirement age comes into force bucking european trend,polish cut retirement age come force bucking european trend
+0,judge jeanine sounds free speech alarm: ‚they are trying to silence you‚it‚s time to fight back!‚ [video],judge jeanine sound free speech alarm trying silence youits time fight back video
+0,watch what happens when college students are asked ‚are you ready for hillary‚,watch happens college student asked ready hillary
+1,exclusive: european envoys take fight for iran nuclear deal to u.s. congress,exclusive european envoy take fight iran nuclear deal u congress
+1,exclusive: crowded bangladesh revives plan to settle rohingya on isolated island,exclusive crowded bangladesh revives plan settle rohingya isolated island
+1,cambodian opposition blocked from holding memorial service,cambodian opposition blocked holding memorial service
+1,germany suspends training of kurdish fighters in northern iraq,germany suspends training kurdish fighter northern iraq
+0,jesus christ is stripped from christmas celebrations in u.s. schools,jesus christ stripped christmas celebration u school
+1,in new hampshire indonesian christians caught in trump immigration crackdown,new hampshire indonesian christian caught trump immigration crackdown
+1,at least 13 killed during prison fight in northern mexico,least killed prison fight northern mexico
+1,syrian army fights is in deir al-zor as u.s.-backed forces loom,syrian army fight deir alzor usbacked force loom
+1,eyewitness says feds ambushed bundys,eyewitness say fed ambushed bundys
+0,alabama: middle class white woman rejected for jobs in city filled illegal immigrants‚‚i can‚t find a job because i don‚t speak spanish‚,alabama middle class white woman rejected job city filled illegal immigrantsi cant find job dont speak spanish
+0,arrogant democrat billionaire whose father co-founded hyatt hotels,arrogant democrat billionaire whose father cofounded hyatt hotel
+0,hilarious! look who liberal middlebury professor is blaming after she was sent to hospital by angry mob of leftist students,hilarious look liberal middlebury professor blaming sent hospital angry mob leftist student
+1,iceland sets snap election for oct. 28: president,iceland set snap election oct president
+0,the demise of progressive democrats: ‚resist and submit,demise progressive democrat resist submit
+1,syrian refugees should return to calmer areas: lebanon president,syrian refugee return calmer area lebanon president
+1,israel sees assad winning syria war urges more u.s. involvement,israel see assad winning syria war urge u involvement
+1,turkey's erdogan targets u.s. ambassador over visa dispute,turkey erdogan target u ambassador visa dispute
+1,iran's larijani says tehran has a plan if u.s. withdraws from nuclear pact: ifax,iran larijani say tehran plan u withdraws nuclear pact ifax
+0,how obama is putting terrorist boots on the ground,obama putting terrorist boot ground
+1,china's richest man built fortune even as debt mountain climbed,china richest man built fortune even debt mountain climbed
+0,dwayne ‚the rock‚ johnson‚s awesome message to americans after the election: ‚lead by example‚we got this!‚,dwayne rock johnson awesome message american election lead examplewe got
+1,man found guilty under uk terrorism laws after refusing to reveal passwords,man found guilty uk terrorism law refusing reveal password
+0,russian hackers stole u.s. cyber secrets from nsa: media reports,russian hacker stole u cyber secret nsa medium report
+1,spain's colonial calls board meeting for monday to discuss moving head office from catalonia-source,spain colonial call board meeting monday discus moving head office cataloniasource
+0,breaking: freddie gray head injury matches bolt on door of transport van,breaking freddie gray head injury match bolt door transport van
+1,venezuela slams canada sanctions says ottawa submitting to trump,venezuela slam canada sanction say ottawa submitting trump
+1,china's most-wanted fugitive jailed for eight years for graft,china mostwanted fugitive jailed eight year graft
+1,france appoints envoy to mediate between qatar arab states,france appoints envoy mediate qatar arab state
+0,boom! poll shows support for trump with blacks surges‚destroys romney‚s numbers with latino voters [video],boom poll show support trump black surgesdestroys romneys number latino voter video
+1,boiler room ‚ ep #53 ‚ say bye bye to culture,boiler room ep say bye bye culture
+1,u.s. 'not taking sides' in iraqi-kurdish dispute: trump,u taking side iraqikurdish dispute trump
+1,thousands rally in philippines warn of duterte 'dictatorship',thousand rally philippine warn duterte dictatorship
+0,boiler room: as the frogs slowly boil ‚ ep #40,boiler room frog slowly boil ep
+1,canada finance minister says will adopt blind trust divest assets,canada finance minister say adopt blind trust divest asset
+0,one person murdered every 14 hours in obama‚s gun-free hometown‚black chicago residents speak out: ‚my life has been hurt by democrats‚ [video],one person murdered every hour obamas gunfree hometownblack chicago resident speak life hurt democrat video
+1,thai junta leader backers fuel suspicions of plans to stay in power,thai junta leader backer fuel suspicion plan stay power
+1,britain will diverge from eu regulations post-brexit: minister,britain diverge eu regulation postbrexit minister
+0,will julian assange be assassinated before he releases ‚october surprise‚ he‚s threatened for hillary [video],julian assange assassinated release october surprise he threatened hillary video
+0,only days ago‚baton rouge thug,day agobaton rouge thug
+0,wow! black lives matter mob celebrating nyc police commissioner‚s announcement to step down attacks trump supporter while police watch [video],wow black life matter mob celebrating nyc police commissioner announcement step attack trump supporter police watch video
+0,dear america: stop supporting terrorists in syria,dear america stop supporting terrorist syria
+1,germany says worried about new generation of islamic state recruits,germany say worried new generation islamic state recruit
+0,bombshell: comey wanted to expose russian meddling months before election‚obama regime barred him from telling public [video],bombshell comey wanted expose russian meddling month electionobama regime barred telling public video
+1,venezuela's maduro approval rises to 23 percent after trump sanctions: poll,venezuela maduro approval rise percent trump sanction poll
+1,germany seeks to take heat out of turkey eu accession question,germany seek take heat turkey eu accession question
+1,florida insurers shares tumble as hurricane irma looms,florida insurer share tumble hurricane irma loom
+0,thanksgiving day fake news turkey shoot: boiler room ‚ special holiday event,thanksgiving day fake news turkey shoot boiler room special holiday event
+1,congo military plane crashes in kinshasa killing 12: minister,congo military plane crash kinshasa killing minister
+0,tiffany & co. takes big risk‚sides against trump on very controversial issue,tiffany co take big risksides trump controversial issue
+0,yikes! hillary still needs help walking on stage‚walks gingerly to microphone [video],yikes hillary still need help walking stagewalks gingerly microphone video
+1,transgender prisoner in ca jail for murder is granted parole for sex change,transgender prisoner ca jail murder granted parole sex change
+1,activists set talks with chevron on myanmar rights concerns,activist set talk chevron myanmar right concern
+1,sudan expects u.s. to lift sanctions conditions met: state minister,sudan expects u lift sanction condition met state minister
+1,japan's abe says won't delay tax hike unless big shock hits economy,japan abe say wont delay tax hike unless big shock hit economy
+0,southside chicago blacks fight against liberal elites on removing statues: ‚leave that statue alone!‚ [video],southside chicago black fight liberal elite removing statue leave statue alone video
+0,blogger comes clean about hannity sexual harassment claim‚hannity‚s former producer publicly calls her out on lie about why she quit,blogger come clean hannity sexual harassment claimhannitys former producer publicly call lie quit
+0,invited pop star says she‚ll perform at trump inauguration only if she can sing song about lynching blacks,invited pop star say shell perform trump inauguration sing song lynching black
+1,florida keys hit by near-hurricane winds from irma - nhc,florida key hit nearhurricane wind irma nhc
+1,iraqi kurdish official says iraqi vote rejecting kurdish independence referendum is non-binding,iraqi kurdish official say iraqi vote rejecting kurdish independence referendum nonbinding
+0,good riddance: james clapper resigns as director of us intelligence,good riddance james clapper resigns director u intelligence
+1,georgia governor orders evacuation of savannah coast ahead of irma,georgia governor order evacuation savannah coast ahead irma
+0,here‚s the list of people we elected who just made our nation less safe while adding $1.1 trillion to the taxpayer‚s tab,here list people elected made nation less safe adding trillion taxpayer tab
+0,"students threaten yale president: give us $8 million in demands to ‚reduce the intolerable racism‚ or else""",student threaten yale president give u million demand reduce intolerable racism else
+1,eating leaves to survive in myanmar's 'ethnic cleansing' zone,eating leaf survive myanmar ethnic cleansing zone
+0,sunday screening: ‚a noble lie‚ (2011),sunday screening noble lie
+1,guatemala lawmakers curb penalties for illegal election financing,guatemala lawmaker curb penalty illegal election financing
+1,britain rejects irish call for role in northern ireland rule,britain reject irish call role northern ireland rule
+1,fbi redux: what‚s behind new probe into hillary clinton emails?,fbi redux whats behind new probe hillary clinton email
+1,after insurgents' truce myanmar says 'we don't negotiate with terrorists',insurgent truce myanmar say dont negotiate terrorist
+1,uk still hopeful of moving eu talks onto future ties: junior minister,uk still hopeful moving eu talk onto future tie junior minister
+0,stunning story the media and democrats hid from public: how obama‚s ag eric holder used taxpayer dollars to organize street mobs against george zimmerman,stunning story medium democrat hid public obamas ag eric holder used taxpayer dollar organize street mob george zimmerman
+1,lavrov to trump: ‚do not attack venezuela‚,lavrov trump attack venezuela
+1,china banking regulator hubei chief front runners to head central bank: sources,china banking regulator hubei chief front runner head central bank source
+1,france's macron says eu all united on brexit talks,france macron say eu united brexit talk
+0,wow! did ‚open borders‚ paul ryan‚s top advisor leak trump tapes to liberal press‚is gop setting up ryan and romney for presidential bid in 2020?,wow open border paul ryans top advisor leak trump tape liberal pressis gop setting ryan romney presidential bid
+0,eye-opening video: rape epidemic in sweden‚‚the rape problem is primarily about muslim men raping non-muslim women‚,eyeopening video rape epidemic swedenthe rape problem primarily muslim men raping nonmuslim woman
+0,scoundrel hillary supporter starts ‚trumpleaks‚ campaign‚desperate move!,scoundrel hillary supporter start trumpleaks campaigndesperate move
+0,us hostage survives terrorist ordeal in syria to deliver a stunning message to us-uk ‚regime change‚ crowd,u hostage survives terrorist ordeal syria deliver stunning message usuk regime change crowd
+1,ugandan opposition leader held on murder charge after protests,ugandan opposition leader held murder charge protest
+0,whoa! melania trump breaks her silence‚fires back at trump accusers [video],whoa melania trump break silencefires back trump accuser video
+1,iceland president accepts request for early vote nov. 4 possible date: pm,iceland president accepts request early vote nov possible date pm
+1,russia's putin eyeing election next year pledges to prosecute vote violations,russia putin eyeing election next year pledge prosecute vote violation
+1,brazil prosecutor says new audio threatens batista leniency deal,brazil prosecutor say new audio threatens batista leniency deal
+1,india at u.n. calls pakistan 'pre-eminent export factory for terror',india un call pakistan preeminent export factory terror
+1,toll of u.s. staff hurt in mysterious cuba incidents now 21: official,toll u staff hurt mysterious cuba incident official
+1,amid visa row turkey's justice ministry cancels u.s. visit,amid visa row turkey justice ministry cancel u visit
+0,trump leaves clinton puppet george stephanopoulos wishing he wouldn‚t have asked that question‚[video],trump leaf clinton puppet george stephanopoulos wishing wouldnt asked questionvideo
+1,iran still trying to buy items for missile development: germany,iran still trying buy item missile development germany
+1,trump talks paris agreement iran with france's macron: official,trump talk paris agreement iran france macron official
+0,iran makes major announcement about how they plan to use billions in ‚obama-buck$‚ [video],iran make major announcement plan use billion obamabuck video
+1,trump says he expects qatar arab neighbors to quickly resolve dispute,trump say expects qatar arab neighbor quickly resolve dispute
+0,patrick henningsen live with guest ray mcgovern ‚ podesta emails leaked,patrick henningsen live guest ray mcgovern podesta email leaked
+1,south korea sees more possible north korea ballistic missile tests: defense ministry,south korea see possible north korea ballistic missile test defense ministry
+0,hurricane maria regains category 5 hurricane strength: nhc,hurricane maria regains category hurricane strength nhc
+1,south korea's moon says north korean provocations complicate situation on korean peninsula,south korea moon say north korean provocation complicate situation korean peninsula
+0,windows 10 is stealing your bandwidth (you might want to delete it),window stealing bandwidth might want delete
+0,last minute gov‚t grab: obama admin decrees dhs will ‚take control‚ of us election systems,last minute govt grab obama admin decree dhs take control u election system
+1,lame duck: new obama executive action opens door to unlimited arms for salafist terrorists in syria,lame duck new obama executive action open door unlimited arm salafist terrorist syria
+0,breaking bad: john mccain‚s campaign rocked by meth lab scandal,breaking bad john mccains campaign rocked meth lab scandal
+0,boiler room #101 ‚ st. patrick‚s cyber-pocalypse with john mcafee,boiler room st patrick cyberpocalypse john mcafee
+1,macron's sharp tongue throws french twitter into a frenzy,macron sharp tongue throw french twitter frenzy
+1,dubai frees briton sentenced for touching another man: advocacy group,dubai free briton sentenced touching another man advocacy group
+0,fake news week: electronic voting ‚ the big lie that just won‚t die,fake news week electronic voting big lie wont die
+0,mexico‚s richest oligarch loses billions on news of trump victory,mexico richest oligarch loses billion news trump victory
+1,cia chief says u.s.-canadian couple held for five years in pakistan,cia chief say uscanadian couple held five year pakistan
+1,dutch government: 2 dead 43 wounded on saint martin,dutch government dead wounded saint martin
+1,britain's may presses northern ireland leaders to restore power-sharing government,britain may press northern ireland leader restore powersharing government
+1,japan's emperor akihito likely to abdicate at end-march 2019: asahi,japan emperor akihito likely abdicate endmarch asahi
+0,urban terrorists: horrific new video emerges of huge mob dragging and beating white man from inside baltimore liquor store to street,urban terrorist horrific new video emerges huge mob dragging beating white man inside baltimore liquor store street
+1,schaeuble warns against divisions in europe after brexit 'nonsense',schaeuble warns division europe brexit nonsense
+1,at u.n. trump's tough talk opens door for macron's diplomacy,un trump tough talk open door macron diplomacy
+0,boiler room ‚ ep #56 ‚ pharmacological nightmare,boiler room ep pharmacological nightmare
+0,catholics should be singing donald trump‚s praises after he boldly defended life,catholic singing donald trump praise boldly defended life
+1,boiler room #65 ‚ bernie says vote neocon ‚ pokemon no!,boiler room bernie say vote neocon pokemon
+1,no evidence to link london attack directly to militant groups: u.s. sources,evidence link london attack directly militant group u source
+0,obama‚s mexico gun-running,obamas mexico gunrunning
+1,defense secretary mattis promises support to ukraine says reviewing lethal aid,defense secretary mattis promise support ukraine say reviewing lethal aid
+1,macron may see 'slackers' become protest rallying cry in france,macron may see slacker become protest rallying cry france
+0,you‚re fired! pres trump fires obama‚s partisan acting attorney general after she refuses to enforce travel ban,youre fired pres trump fire obamas partisan acting attorney general refuse enforce travel ban
+0,doj monitors patriot gun-range owner who banned muslims from her gun range,doj monitor patriot gunrange owner banned muslim gun range
+1,second group of refugees to leave australian camp for u.s. resettlement,second group refugee leave australian camp u resettlement
+0,us presidential debates much more corrupt than you might think,u presidential debate much corrupt might think
+0,karma! ag jeff sessions fires obama-appointed doj lawyer who targeted dinesh d‚souza,karma ag jeff session fire obamaappointed doj lawyer targeted dinesh dsouza
+1,gbagbo allies behind attacks in ivory coast: interior minister,gbagbo ally behind attack ivory coast interior minister
+0,defying warnings residents refuse to leave mumbai's crumbling buildings,defying warning resident refuse leave mumbai crumbling building
+1,libyan forces attack islamic state near former stronghold,libyan force attack islamic state near former stronghold
+1,uk foreign minister johnson says he will not resign: sky,uk foreign minister johnson say resign sky
+1,u.n. brands myanmar violence a 'textbook' example of ethnic cleansing,un brand myanmar violence textbook example ethnic cleansing
+1,american mccarthyism: neocon warhawks‚ plan to kill antiwar dissent in media,american mccarthyism neocon warhawks plan kill antiwar dissent medium
+0,oops! secret service opens investigation after madonna tells thousands of angry liberals she‚d like to ‚blow up white house‚,oops secret service open investigation madonna tell thousand angry liberal shed like blow white house
+1,boiler room #92 ‚ the (hollywood) hills have eyes,boiler room hollywood hill eye
+0,breaking: federal court rules on nsa‚s warrantless collection of data‚,breaking federal court rule nsa warrantless collection data
+1,north korea tests short-range missiles as south korea u.s. conduct drills,north korea test shortrange missile south korea u conduct drill
+1,german police arrest man after posting photo of child abuse victim,german police arrest man posting photo child abuse victim
+0,body language expert gives clear examples of susan rice lying about trump surveillance during interview [video],body language expert give clear example susan rice lying trump surveillance interview video
+0,[video] police have very good reason for blocking newly ‚elected‚mayor from entering city hall office,video police good reason blocking newly electedmayor entering city hall office
+0,badass israeli stabbed by palestinian‚pulls knife from neck‚what he did next is stunning!,badass israeli stabbed palestinianpulls knife neckwhat next stunning
+0,episode #174 ‚ sunday wire: ‚fake news‚ week in review,episode sunday wire fake news week review
+1,colombia's defense minister says drug policy must be long-term,colombia defense minister say drug policy must longterm
+1,merkel can well imagine a european finance minister,merkel well imagine european finance minister
+1,kurdish independence vote damages u.s. efforts to preserve unified iraq,kurdish independence vote damage u effort preserve unified iraq
+1,graveyard killing of belgian mayor was 'revenge': media,graveyard killing belgian mayor revenge medium
+1,on tv france's macron looks to style viewers question substance,tv france macron look style viewer question substance
+0,breaking: crooked va governor,breaking crooked va governor
+1,blast at tupras refinery in turkey kills four production unaffected,blast tupras refinery turkey kill four production unaffected
+0,irs chief: okay for illegal aliens to use stolen social security numbers [video],irs chief okay illegal alien use stolen social security number video
+0,hillary rodham nixon: a candidate with more baggage than a samsonite factory,hillary rodham nixon candidate baggage samsonite factory
+1,capitalism is the only way uk finance minister says in challenge to labour,capitalism way uk finance minister say challenge labour
+0,flashback: bill clinton had 93 of 94 u.s. attorneys fired in one day‚no media outrage [video],flashback bill clinton u attorney fired one dayno medium outrage video
+0,top democrat activist who launched online campaign to threaten and bully 12 yr old conservative is facing charges [video],top democrat activist launched online campaign threaten bully yr old conservative facing charge video
+0,hundreds voting from the grave in this california county stirs investigation [video],hundred voting grave california county stir investigation video
+1,japan seeks funds to boost missile ranges days after north korea threat,japan seek fund boost missile range day north korea threat
+1,canada‚s immigration website crashes after trump pulls ahead,canada immigration website crash trump pull ahead
+1,transport minister doesn't think britain will leave eu without a deal,transport minister doesnt think britain leave eu without deal
+1,mexico attorney general resigns amid debate on new top prosecutor,mexico attorney general resigns amid debate new top prosecutor
+1,uk police evacuate search properties in london train bomb investigation,uk police evacuate search property london train bomb investigation
+0,rex tillerson and nikki haley ‚ who can ‚flip flop‚ the most,rex tillerson nikki haley flip flop
+1,irish student ibrahim halawa freed after four years in egypt jail,irish student ibrahim halawa freed four year egypt jail
+1,iranian general assad discuss joint military strategy: report,iranian general assad discus joint military strategy report
+1,united arab emirates says to announce government reshuffle on thursday,united arab emirate say announce government reshuffle thursday
+1,the u.s. has no legal standing in its involvement in the war on yemen,u legal standing involvement war yemen
+0,why mom employed by disney is calling them ‚bullies‚‚voting for trump to stand up to them,mom employed disney calling bulliesvoting trump stand
+1,china's communist party makes final preparations for key congress,china communist party make final preparation key congress
+0,black lives matter thugs loot 7-eleven store after cop shootings‚taunt,black life matter thug loot eleven store cop shootingstaunt
+0,malia obama flashes her booty in front of huge crowd at chicago concert,malia obama flash booty front huge crowd chicago concert
+0,what? democrat congresswoman calls violent riots at berkeley a ‚beautiful thing‚ [video],democrat congresswoman call violent riot berkeley beautiful thing video
+1,south korea's moon says north korea crisis must be handled in 'stable' manner,south korea moon say north korea crisis must handled stable manner
+0,this one picture tells you everything you need to know about the muslim refugee invasion,one picture tell everything need know muslim refugee invasion
+0,watch susan rice lie about spying on trump: ‚i know nothing about this‚‚white house computer logs say she‚s lying! [video],watch susan rice lie spying trump know nothing thiswhite house computer log say shes lying video
+0,syrian drops truth bomb: germany asked ‚refugees‚ [on internet] to come‚‚none of us had to flee‚we didn‚t want to go to the army‚easier to get a good job and earn money in europe‚,syrian drop truth bomb germany asked refugee internet comenone u fleewe didnt want go armyeasier get good job earn money europe
+0,watters‚ world: what word offends princeton ‚snowflakes‚ [video],watters world word offends princeton snowflake video
+1,putin says doubts u.s. strike on north korea would destroy arsenal,putin say doubt u strike north korea would destroy arsenal
+1,"preparing to invade: us deploys additional 2500 soldiers for ‚syria and iraq‚""",preparing invade u deploys additional soldier syria iraq
+0,comedian shocks leftist college students with best liberal smackdown you have ever seen!‚must watch video!,comedian shock leftist college student best liberal smackdown ever seenmust watch video
+0,caribbean faces hard road to recovery after irma's ravages,caribbean face hard road recovery irmas ravage
+0,is hillary‚s meltdown real,hillary meltdown real
+0,four-time deported illegal alien gang member sexually assaults 2-yr old girl in front of 4-yr old brother‚violently stabs mother,fourtime deported illegal alien gang member sexually assault yr old girl front yr old brotherviolently stab mother
+0,epic! commie obama pictured with vietnam president in front of this!,epic commie obama pictured vietnam president front
+1,north korea threat is 'critical imminent' japan tells u.s. south korea,north korea threat critical imminent japan tell u south korea
+0,is law and order svu pandering to cop hating millennials and black lives matter terrorists? [video],law order svu pandering cop hating millennials black life matter terrorist video
+1,despite apology indonesia asks why u.s. blocked military chief's travel,despite apology indonesia asks u blocked military chief travel
+1,more than 60 years on japan's mercury-poison victims fight to be heard,year japan mercurypoison victim fight heard
+1,erdogan says turkey will close iraq border and air space soon,erdogan say turkey close iraq border air space soon
+1,suu kyi says myanmar trying to protect all citizens in strife-torn state,suu kyi say myanmar trying protect citizen strifetorn state
+1,multinationals in puerto rico respond to hurricane maria,multinationals puerto rico respond hurricane maria
+0,breaking news: susan rice admits to unmasking ‚us persons‚ during interview with msnbc media ally andrea mitchell [video],breaking news susan rice admits unmasking u person interview msnbc medium ally andrea mitchell video
+0,ron paul: syria has been in chaos ever since obama said ‚assad must go‚,ron paul syria chaos ever since obama said assad must go
+1,turkey says kurdish militant banner in raqqa shows u.s. sided with terrorists,turkey say kurdish militant banner raqqa show u sided terrorist
+0,vice president pence breaks tie in bill allowing states to deny federal funds for killing babies,vice president penny break tie bill allowing state deny federal fund killing baby
+0,every u.s. citizen taken hostage in iran to be awarded millions‚with a catch‚iran‚s not paying‚you are!,every u citizen taken hostage iran awarded millionswith catchirans payingyou
+1,turkey starts trial of 30 newspaper staff for links to coup attempt,turkey start trial newspaper staff link coup attempt
+1,new zealand labour leader says will not yet concede election,new zealand labour leader say yet concede election
+1,russia's lavrov tillerson to meet at u.n. general assembly: tass,russia lavrov tillerson meet un general assembly tass
+0,black muslim chases and tackles young white trump supporter [video],black muslim chase tackle young white trump supporter video
+0,in liberian slum residents demand change from next president,liberian slum resident demand change next president
+1,sunday screening: counter intelligence ‚ ‚the strategy of tension‚,sunday screening counter intelligence strategy tension
+1,syria's deir al-zor air base working again: state media monitors,syria deir alzor air base working state medium monitor
+0,donald trump strikes back: reminds american voters bernie sanders is ‚a communist‚‚and a coward [video],donald trump strike back reminds american voter bernie sander communistand coward video
+0,breaking: obama successfully whitewashes american history‚‚racist‚ president andrew jackson to be replaced with harriet tubman on $20 bill,breaking obama successfully whitewash american historyracist president andrew jackson replaced harriet tubman bill
+0,obama and valerie jarrett finalize executive action gun control proposal,obama valerie jarrett finalize executive action gun control proposal
+1,post-election critics hope germany's hate speech law can be revised,postelection critic hope germany hate speech law revised
+1,rohingya say their village is lost to myanmar's spiraling conflict,rohingya say village lost myanmar spiraling conflict
+0,legendary actor kurt russell hammers anti-gun interviewer: ‚absolutely insane‚ to believe more gun control will curb terrorist attacks,legendary actor kurt russell hammer antigun interviewer absolutely insane believe gun control curb terrorist attack
+0,cover-up: both obama and clinton lied about trading classified emails,coverup obama clinton lied trading classified email
+1,u.s.-led anti-islamic state coalition says iraqi-kurdish clash in kirkuk is misunderstanding,usled antiislamic state coalition say iraqikurdish clash kirkuk misunderstanding
+1,may calls for brexit talks progress at eu summit,may call brexit talk progress eu summit
+1,catalan leader calls for calm ahead of madrid deadline,catalan leader call calm ahead madrid deadline
+1,deadly riots block mining operations in guinea bauxite town,deadly riot block mining operation guinea bauxite town
+1,hurricane max downgraded to tropical storm moves inland over mexico,hurricane max downgraded tropical storm move inland mexico
+0,rush limbaugh destroys hillary with montage of lies in viral video after she blamed ‚fake news‚ for her loss,rush limbaugh destroys hillary montage lie viral video blamed fake news loss
+0,george washington professor on soros activists shutting down roads: why it‚s time to start ‚suing the bastards‚,george washington professor soros activist shutting road time start suing bastard
+0,obama‚s race war spreads like cancer to london: famous blind musician weighs in [video],obamas race war spread like cancer london famous blind musician weighs video
+0,wow! ky dem house speaker makes insane speech following crushing defeat in gov race [video],wow ky dem house speaker make insane speech following crushing defeat gov race video
+0,revealed: loretta lynch given talking points for secret clinton ‚tarmac meeting‚,revealed loretta lynch given talking point secret clinton tarmac meeting
+0,episode #159 ‚ sunday wire: ‚tick-tock usa‚ with guests dr marcus papadopoulos,episode sunday wire ticktock usa guest dr marcus papadopoulos
+1,final assault on islamic state in raqqa to start on sunday -commander,final assault islamic state raqqa start sunday commander
+1,hungarian villagers in backlash against holiday for migrants,hungarian villager backlash holiday migrant
+1,israel strikes hamas post after gaza rocket fire,israel strike hamas post gaza rocket fire
+0,why trump‚s doj gets asian support in fight against ‚race-based college admissions policies‚,trump doj get asian support fight racebased college admission policy
+1,eu calls report on may-juncker talks a smear,eu call report mayjuncker talk smear
+1,uk foreign minister criticized for resurrecting 'brexit benefit' mantra,uk foreign minister criticized resurrecting brexit benefit mantra
+1,turkey's erdogan says kurdish independence vote risks regional crisis,turkey erdogan say kurdish independence vote risk regional crisis
+0,breaking: [audio] chilling 911 call threatens lives of police officers in aurora,breaking audio chilling call threatens life police officer aurora
+1,iran says will respond strongly to any action against its military forces: tv,iran say respond strongly action military force tv
+0,not kidding! hillary‚s state department blocked investigation into muslim terrorist‚s florida mosque because ‚it unfairly targeted muslims‚,kidding hillary state department blocked investigation muslim terrorist florida mosque unfairly targeted muslim
+0,why it‚s good news for conservatives that bitter hillary can‚t shut up about losing [video],good news conservative bitter hillary cant shut losing video
+1,britain's m1 motorway partially closed after suspicious object discovered,britain motorway partially closed suspicious object discovered
+0,hell-bent on a conviction: is the pentagon‚s third attempt at convicting a marine for the death of an iraqi citizen politically motivated?,hellbent conviction pentagon third attempt convicting marine death iraqi citizen politically motivated
+0,"obama‚s backdoor gun confiscation: 260000 veterans stripped of second amendment rights""",obamas backdoor gun confiscation veteran stripped second amendment right
+0,msnbc #fakenews fail: desperate rachel maddow springs trump‚s tax trap,msnbc fakenews fail desperate rachel maddow spring trump tax trap
+0,boiler room #94 ‚ president trump & the great neo-liberal freakout of 2017,boiler room president trump great neoliberal freakout
+0,new york gov cuomo thinks he‚s the boss of you: bans travel to mississippi!,new york gov cuomo think he bos ban travel mississippi
+1,japan's dentsu gets only small fine for overtime breaches despite outcry,japan dentsu get small fine overtime breach despite outcry
+1,slovenian pm cancels croatia visit over maritime dispute,slovenian pm cancel croatia visit maritime dispute
+0,nordstrom discontinues ivanka trump brand after boycott threats‚continues to sell line by trashy,nordstrom discontinues ivanka trump brand boycott threatscontinues sell line trashy
+0,the left loses again: third quarter economic estimate explodes!,left loses third quarter economic estimate explodes
+0,the best anti-hillary ad ever made‚you‚ll want to watch this brutal video more than once,best antihillary ad ever madeyoull want watch brutal video
+1,hungary pm warns against eroding free movement for eu citizens,hungary pm warns eroding free movement eu citizen
+1,u.s. north korea clash at u.n. forum over nuclear weapons,u north korea clash un forum nuclear weapon
+1,austria's conservatives show few qualms about teaming up with far right,austria conservative show qualm teaming far right
+0,cnn liberal anchor freaks out at navy seal when he asks for truth‚.you won‚t believe the reaction! [video],cnn liberal anchor freak navy seal asks truthyou wont believe reaction video
+1,french minister calls out trump on climate change as irma wreaks havoc,french minister call trump climate change irma wreaks havoc
+1,uk prince charles's tour of southeast asia leaves out myanmar,uk prince charles tour southeast asia leaf myanmar
+1,nine killed as rohingya aid truck crashes in bangladesh,nine killed rohingya aid truck crash bangladesh
+1,incensed over refugees east germans punish easterner merkel,incensed refugee east german punish easterner merkel
+0,no toilet paper?! socialism is in its final stages for venezuela so byotp,toilet paper socialism final stage venezuela byotp
+0,muslim pilgrims converge on jamarat for symbolic stoning of the devil,muslim pilgrim converge jamarat symbolic stoning devil
+0,fbi director james comey: ‚trust,fbi director james comey trust
+0,breaking: democrat makes shocking statement regarding dnc pick keith ellison [video],breaking democrat make shocking statement regarding dnc pick keith ellison video
+0,american owned dunkin‚ donuts bans women not accompanied by a man from stores in saudi arabia,american owned dunkin donut ban woman accompanied man store saudi arabia
+0,smashed windows and death threats: liberal couple reveals horrific experience after opening up farm to muslim ‚refugees‚,smashed window death threat liberal couple reveals horrific experience opening farm muslim refugee
+1,juncker wants eu finance minister no separate euro budget or parliament,juncker want eu finance minister separate euro budget parliament
+0,censored: cranky bernie calls cnn ‚fake news‚ during interview‚cnn cuts mic: ‚are we on?‚ [video],censored cranky bernie call cnn fake news interviewcnn cut mic video
+0,progressive lunacy: peta claims indonesian monkey owns ‚selfie‚ copyright,progressive lunacy peta claim indonesian monkey owns selfie copyright
+1,britain will meet its brexit financial obligations: minister,britain meet brexit financial obligation minister
+1,presumed new swiss foreign minister seeks fresh start in eu talks,presumed new swiss foreign minister seek fresh start eu talk
+0,muslim brotherhood affiliate invited to obama‚s state of the union‚will this terror group also be invited?,muslim brotherhood affiliate invited obamas state unionwill terror group also invited
+0,breaking: benghazi report shows state department withheld weapons to agents because they were not ‚aesthetically pleasing‚,breaking benghazi report show state department withheld weapon agent aesthetically pleasing
+1,defense chief mattis in asia will discuss north korea crisis with allies,defense chief mattis asia discus north korea crisis ally
+1,u.s. bombers drill over korean peninsula after latest north korea launch,u bomber drill korean peninsula latest north korea launch
+0,trump put jennifer hudson and relatives up rent-free in trump towers after her family was murdered‚so why isn‚t she performing at his inauguration?,trump put jennifer hudson relative rentfree trump tower family murderedso isnt performing inauguration
+0,karma? podium collapses at hillary rally [video],karma podium collapse hillary rally video
+1,egypt authorities challenge reuters on casualties in western desert attack,egypt authority challenge reuters casualty western desert attack
+1,brazil senate to vote on fiscal package on tuesday oliveira says,brazil senate vote fiscal package tuesday oliveira say
+1,"merkel welcomes ""a lot of material"" from macron on eu reform",merkel welcome lot material macron eu reform
+1,fragment of florence basilica falls and kills tourist: official,fragment florence basilica fall kill tourist official
+0,farrakhan devotee,farrakhan devotee
+1,syria: us peace council addresses united nations in nyc,syria u peace council address united nation nyc
+0,trump gets hammered [video] for not condemning question at town hall about muslim training camps in us‚but he was right‚and here‚s the proof,trump get hammered video condemning question town hall muslim training camp usbut rightand here proof
+0,fbi arrest cliven bundy at portland airport ‚ charged with federal conspiracy,fbi arrest cliven bundy portland airport charged federal conspiracy
+0,syrian muslim immigrant hairdresser slits female employer‚s throat after media hailed him as ‚example of successful integration‚,syrian muslim immigrant hairdresser slit female employer throat medium hailed example successful integration
+0,face book‚s ‚open-borders‚ mark zuckerberg builds ‚oppressive‚ ‚immense‚ wall around hawaii home,face book openborders mark zuckerberg build oppressive immense wall around hawaii home
+1,iraq orders arrest of kurdistan vice president for saying iraqi forces in kirkuk are 'occupiers',iraq order arrest kurdistan vice president saying iraqi force kirkuk occupier
+1,north korea: will world war iii kick off this week?,north korea world war iii kick week
+1,ninety percent of raqqa retaken from islamic state - u.s. military,ninety percent raqqa retaken islamic state u military
+1,court ruling favors ghana in ocean border dispute with ivory coast,court ruling favor ghana ocean border dispute ivory coast
+0,college student suspended for saying he thinks black women are: ‚not hot‚,college student suspended saying think black woman hot
+0,rhodes is wrong and trump could have the last laugh,rhodes wrong trump could last laugh
+0,breaking: 5 people shot at anti-trump protest‚all are in critical condition [video],breaking people shot antitrump protestall critical condition video
+0,boiler room ep #78,boiler room ep
+1,trump to host thai prime minister on october 2: white house,trump host thai prime minister october white house
+1,mexicans turn to church as earthquake death toll hits 320,mexican turn church earthquake death toll hit
+1,charlottesville: far left vs far right clashes,charlottesville far left v far right clash
+0,black conservative student destroys black lives crybabies: ‚i am katie danforth and i am working my a*s off to become something‚ [video],black conservative student destroys black life crybaby katie danforth working become something video
+1,france's macron urges continued eu ties with turkey,france macron urge continued eu tie turkey
+0,episode #153 ‚ sunday wire: ‚the nuremberg syndrome‚ with guests mother agnes,episode sunday wire nuremberg syndrome guest mother agnes
+1,hong kong leader says asian financial hub faces 'grave' challenges,hong kong leader say asian financial hub face grave challenge
+1,uzbek dissident denies anti-government propaganda charges,uzbek dissident denies antigovernment propaganda charge
+0,unreal! elderly hispanic trump supporter pepper sprayed by liberal thug [video],unreal elderly hispanic trump supporter pepper sprayed liberal thug video
+1,east timor president says to swear in mari alkatiri as pm,east timor president say swear mari alkatiri pm
+0,bloody 4th of july weekend update: obama‚s hometown of chicago‚64 shot,bloody th july weekend update obamas hometown chicago shot
+1,hurricane relief efforts delay deployment of u.s. troops to afghanistan,hurricane relief effort delay deployment u troop afghanistan
+1,erdogan says u.s. sacrificing strategic ally turkey,erdogan say u sacrificing strategic ally turkey
+1,turkey summons u.s. consulate worker for questioning: anadolu,turkey summons u consulate worker questioning anadolu
+0,watch! anti-trump hag gets kicked off flight after threatening trump supporter‚passengers clap! [video],watch antitrump hag get kicked flight threatening trump supporterpassengers clap video
+0,how obama‚s new doj plans to bypass congress to implement gun control,obamas new doj plan bypass congress implement gun control
+1,extortionist seeking millions by poisoning supermarket food: german police,extortionist seeking million poisoning supermarket food german police
+1,denmark to send 55 soldiers to kabul after deadly attack on convoy,denmark send soldier kabul deadly attack convoy
+0,americans furious,american furious
+0,trump supporters in virginia beach shout down cnn aka clinton news network,trump supporter virginia beach shout cnn aka clinton news network
+1,mockingbird mirror: declassified docs depict deeper link between the cia and american media,mockingbird mirror declassified doc depict deeper link cia american medium
+1,czech ano party dips but keeps commanding lead before vote: poll,czech ano party dip keep commanding lead vote poll
+1,juncker chides eu candidate turkey upbeat on western balkans,juncker chides eu candidate turkey upbeat western balkan
+0,oops! gop governor who called for trump to ‚step aside‚ after taped sexual remarks forced to resign after embarrassing audio tape proves involvement in sex scandal,oops gop governor called trump step aside taped sexual remark forced resign embarrassing audio tape prof involvement sex scandal
+1,syrian army allies thrust east to break siege in deir al-zor city,syrian army ally thrust east break siege deir alzor city
+0,shocking: univ of hawaii recruits girls as young as 14 years old for 2nd trimester abortion experiments,shocking univ hawaii recruit girl young year old nd trimester abortion experiment
+1,cambodian leader threatens ban on opposition party,cambodian leader threatens ban opposition party
+1,chastened merkel faces pressure to embrace macron on europe,chastened merkel face pressure embrace macron europe
+0,hilarious! feminist goes nuts over trump win in coffee shop‚projects every whacked-out liberal emotion known to man on black barista [video],hilarious feminist go nut trump win coffee shopprojects every whackedout liberal emotion known man black barista video
+0,australian senator forced to resign only two days after video of her breastfeeding while giving speech in parliament goes viral,australian senator forced resign two day video breastfeeding giving speech parliament go viral
+0,swedish citizens get disturbing news about likely punishment for asylum seekers who live-streamed rape of swedish girl on facebook,swedish citizen get disturbing news likely punishment asylum seeker livestreamed rape swedish girl facebook
+0,obama commuted manning‚s sentence,obama commuted mannings sentence
+0,hillary clinton: neocon war-hawk in waiting,hillary clinton neocon warhawk waiting
+1,wild elephants trample to death four rohingya refugees in bangladesh,wild elephant trample death four rohingya refugee bangladesh
+0,arrogant illegal alien who voted 5 times in 2016 election gets 8 years‚lawyers call sentence ‚harsh‚‚blame trump‚lol! [video],arrogant illegal alien voted time election get yearslawyers call sentence harshblame trumplol video
+1,darpa spending $62 million to create military cyborgs,darpa spending million create military cyborg
+1,islamic state hostages strongholds stand between u.s.-backed forces and raqqa's capture,islamic state hostage stronghold stand usbacked force raqqas capture
+1,thousands rally for gay marriage before australian postal vote closes,thousand rally gay marriage australian postal vote close
+0,consequences of open borders: 15 heavily armed men break into texas border home with 9 yr old boy and open fire,consequence open border heavily armed men break texas border home yr old boy open fire
+0,boom! donald trump hammers bernie sanders with this one question,boom donald trump hammer bernie sander one question
+0,here‚s how the clintons‚ free private jet scam works: ‚it‚s highly illegal‚,here clinton free private jet scam work highly illegal
+1,netanyahu muzzles israeli officials on kurdish referendum,netanyahu muzzle israeli official kurdish referendum
+1,ending iran nuclear deal would worsen north korea situation: kerry,ending iran nuclear deal would worsen north korea situation kerry
+0,illegal alien gets full-ride to prestigious harvard medical school,illegal alien get fullride prestigious harvard medical school
+1,merkel bavaria allies agree on migrant policy: sources,merkel bavaria ally agree migrant policy source
+0,illegal alien smiles for mug shot after stabbing father of two ‚at least‚ 89 times‚saws liver out,illegal alien smile mug shot stabbing father two least timessaws liver
+0,must watch trump ad highlights hillary‚s war on women: bill,must watch trump ad highlight hillary war woman bill
+1,nigeria's cabinet meeting canceled for second time since buhari's return,nigeria cabinet meeting canceled second time since buharis return
+0,oliver stone: pok√©mon go is ‚surveillance capitalism‚ for a robotic society,oliver stone pokmon go surveillance capitalism robotic society
+0,minnesota: first female muslim legislator votes to make life insurance companies do the unthinkable for dead terrorists [video],minnesota first female muslim legislator vote make life insurance company unthinkable dead terrorist video
+1,russia's air force killed 850 militants in syria in last 24 hours: interfax,russia air force killed militant syria last hour interfax
+1,power crews scramble to puerto rico after maria smashes its grid,power crew scramble puerto rico maria smash grid
+0,henningsen on crosstalk: american foreign policy ‚dumbed down‚,henningsen crosstalk american foreign policy dumbed
+0,hillary clinton ponders halloween costume,hillary clinton ponders halloween costume
+0,breaking news: vladimir putin retaliates after new sanctions are slapped on russia,breaking news vladimir putin retaliates new sanction slapped russia
+1,new zealand's populist peters garners attention as kingmaker in heated election debate,new zealand populist peter garner attention kingmaker heated election debate
+1,may says will 'honor commitments' to eu,may say honor commitment eu
+1,islamic state set up libyan desert army after losing sirte: prosecutor,islamic state set libyan desert army losing sirte prosecutor
+1,kosovo parties sign deal to form government end political deadlock,kosovo party sign deal form government end political deadlock
+0,statue of liberty as a muslim? congressman sparks protest after hanging painting in office,statue liberty muslim congressman spark protest hanging painting office
+0,boiler room ep #123 ‚ right vs. left,boiler room ep right v left
+1,japan's abe to launch $17-billion indian bullet train project as ties deepen,japan abe launch billion indian bullet train project tie deepen
+1,false profits: the u.s. military‚s war over russia,false profit u military war russia
+0,espionage act violation? hillary exposes names of hidden intelligence officials in emails through ‚gross negligence‚,espionage act violation hillary expose name hidden intelligence official email gross negligence
+1,u.s. wants stronger india economic defense ties given china's rise: tillerson,u want stronger india economic defense tie given china rise tillerson
+1,wife of ousted pm sharif wins by-election in test of support for ruling party,wife ousted pm sharif win byelection test support ruling party
+0,frightening observations by a 75 year old american‚all of a sudden america‚s becoming an islamic state,frightening observation year old americanall sudden america becoming islamic state
+0,breaking bombshell: obama‚s foreign policy guru admits to shocking lies obama told to sell americans on iran deal,breaking bombshell obamas foreign policy guru admits shocking lie obama told sell american iran deal
+1,ex-minister accuses former brazil president lula of accepting bribes,exminister accuses former brazil president lula accepting bribe
+1,afghan air force receives first black hawk helicopters,afghan air force receives first black hawk helicopter
+1,moscow may demand u.s. cut diplomatic staff in russia to 300 or below: ria,moscow may demand u cut diplomatic staff russia ria
+1,swiss ready to mediate in north korea crisis,swiss ready mediate north korea crisis
+0,wow! hillary pretended to be relaxing‚but she‚s been scheming to steal presidency from trump since morning after election,wow hillary pretended relaxingbut shes scheming steal presidency trump since morning election
+1,armed us immigration officers to be stationed in uk airports,armed u immigration officer stationed uk airport
+0,obama‚s america: cliven bundy,obamas america cliven bundy
+1,u.s. and britain begin dialogue on post-brexit farm deal,u britain begin dialogue postbrexit farm deal
+0,boiler room ‚ ep #52 ‚ never ending chaos,boiler room ep never ending chaos
+0,ouch! things take ugly turn for matt lauer when he tries to get george w. bush to blame trump for division: ‚when i was president,ouch thing take ugly turn matt lauer try get george w bush blame trump division president
+0,border patrol agents rat out dhs: government secretly puts illegal aliens on busses‚dumps them off into unsuspecting communities across america,border patrol agent rat dhs government secretly put illegal alien bussesdumps unsuspecting community across america
+1,diplomatic frauds: kerry,diplomatic fraud kerry
+0,oklahoma lawmaker blasted for saying: ‚shouldn‚t mosques be removed after 911 by antifa logic?‚ [video],oklahoma lawmaker blasted saying shouldnt mosque removed antifa logic video
+0,obama uses speech on foreign soil to disparage half of america: ted cruz eviscerates jv president with this brutal response [video],obama us speech foreign soil disparage half america ted cruz eviscerates jv president brutal response video
+0,revealed: how us government-media complex are the masters of ‚fake news‚,revealed u governmentmedia complex master fake news
+1,ukraine president says trump shares vision on 'new level' of defense cooperation,ukraine president say trump share vision new level defense cooperation
+0,the las vegas and weinstein cover-ups: boiler room ep #132,la vega weinstein coverups boiler room ep
+0,iranian scientist hanged for ‚revealing [nuclear weapons] secrets to the enemy‚ after hillary revealed top secret intel about him through unsecured email,iranian scientist hanged revealing nuclear weapon secret enemy hillary revealed top secret intel unsecured email
+1,expelled refugee student kills seven in kenyan school,expelled refugee student kill seven kenyan school
+0,wow! watch journalist cassandra fairbanks: ‚why i,wow watch journalist cassandra fairbanks
+1,australia to tighten airport security further after foiled attack,australia tighten airport security foiled attack
+1,myanmar takes first step to ease buddhist-muslim tension,myanmar take first step ease buddhistmuslim tension
+0,spectre of benghazi: doj drops charges against alleged arms dealer of libyan weapons,spectre benghazi doj drop charge alleged arm dealer libyan weapon
+0,airport passenger ‚pat downs‚ get more intrusive with new full-body groping procedures,airport passenger pat down get intrusive new fullbody groping procedure
+1,china says hopes u.s. can abandon bias view china objectively,china say hope u abandon bias view china objectively
+0,busted! liberal brainiacs steal trump sign‚in company truck! [video],busted liberal brainiac steal trump signin company truck video
+1,u.n. agrees new team of experts for burundi but eu and u.s. decry move,un agrees new team expert burundi eu u decry move
+1,france would not recognize unilateral catalan declaration: minister,france would recognize unilateral catalan declaration minister
+1,france offers to mediate between baghdad and kurds,france offer mediate baghdad kurd
+1,putin says russia will respond if russian media under pressure in u.s.,putin say russia respond russian medium pressure u
+0,size of crowds trump is drawing vs hillary proves she‚s toast [video],size crowd trump drawing v hillary prof shes toast video
+0,female university employee assaults white male student for wearing hairstyle belonging to black culture,female university employee assault white male student wearing hairstyle belonging black culture
+0,cries of racism after nyc museum kicks out rowdy high schoolers,cry racism nyc museum kick rowdy high schoolers
+1,battle over privacy: why the fbi‚s case against apple is falling apart,battle privacy fbi case apple falling apart
+0,nfl denies dallas cowboys‚ request to honor slain police officers‚ignores nfl player who posted pic of cop‚s neck being slit on social media,nfl denies dallas cowboy request honor slain police officersignores nfl player posted pic cop neck slit social medium
+1,erdogan says will discuss case of ex-turkish minister with trump during visit,erdogan say discus case exturkish minister trump visit
+0,obama commencement speech to black graduates: you‚re just lucky,obama commencement speech black graduate youre lucky
+1,malawi ministers to testify against cabinet colleague in maize graft trial,malawi minister testify cabinet colleague maize graft trial
+1,rome's 5-star mayor launches bid to save ailing city transport firm,rome star mayor launch bid save ailing city transport firm
+0,new biography exposes barack obama‚s dream of becoming donald trump,new biography expose barack obamas dream becoming donald trump
+1,tillerson says north korea's aggression endangers 'entire world',tillerson say north korea aggression endangers entire world
+1,german fdp reject macron's call to create joint euro zone budget,german fdp reject macron call create joint euro zone budget
+0,yes! newt gingrich rips into abc anchor over anti-trump coverage [video],yes newt gingrich rip abc anchor antitrump coverage video
+1,bilderberg to meet next week in chantilly,bilderberg meet next week chantilly
+1,taliban attacks kill at least 69 across afghanistan,taliban attack kill least across afghanistan
+1,qatar says trump wants to fix gulf crisis with dialogue,qatar say trump want fix gulf crisis dialogue
+1,venezuela ex-prosecutor says she has evidence of maduro corruption,venezuela exprosecutor say evidence maduro corruption
+1,saudi arabia says it dismantles islamic state cell in riyadh,saudi arabia say dismantles islamic state cell riyadh
+1,fruit prawns off the menu at china's austere party congress,fruit prawn menu china austere party congress
+1,spain will not rule out exceptional measures over catalonia,spain rule exceptional measure catalonia
+1,china combat veteran close ally of xi to get promotion: sources,china combat veteran close ally xi get promotion source
+0,bwah-ha-ha! artist brilliantly captures hillary‚s reaction to her fear of ‚alt-right‚ media,bwahhaha artist brilliantly capture hillary reaction fear altright medium
+1,kenyan president says supreme court election ruling was 'coup',kenyan president say supreme court election ruling coup
+0,[video] shocking ‚silence of the lambs‚ like interview with serial murderer,video shocking silence lamb like interview serial murderer
+1,germany warns against turkey travel after spate of arrests,germany warns turkey travel spate arrest
+1,philippine congress backs annual budget of just $20 for agency probing drugs war,philippine congress back annual budget agency probing drug war
+1,in rightward shift dutch pm seals new government pact,rightward shift dutch pm seal new government pact
+1,kenya parliament passes controversial election law amendment,kenya parliament pass controversial election law amendment
+1,iraqi pm's office says turkey agrees to deal only with baghdad on oil exports,iraqi pm office say turkey agrees deal baghdad oil export
+1,scotland can still offer choice on independence from uk: sturgeon,scotland still offer choice independence uk sturgeon
+0,after the 2016 election: a gullible and shattered america,election gullible shattered america
+0,msm fake news: how washington post sexed-up its ‚facebook russian bot‚ conspiracy,msm fake news washington post sexedup facebook russian bot conspiracy
+1,father of orlando shooter is long-time cia asset,father orlando shooter longtime cia asset
+1,several wounded after blast hits bus in turkey's izmir,several wounded blast hit bus turkey izmir
+0,kellyanne conway: ‚presidents aren‚t judged by crowd sizes,kellyanne conway president arent judged crowd size
+1,former soccer star kaladze runs for mayor in georgia's capital,former soccer star kaladze run mayor georgia capital
+1,colombia protests what it says was venezuelan military incursion over border,colombia protest say venezuelan military incursion border
+1,three suicide bombers kill 12 in nigeria emergency agency says,three suicide bomber kill nigeria emergency agency say
+1,north korea threatens to 'sink' japan reduce u.s. to 'ashes and darkness',north korea threatens sink japan reduce u ash darkness
+0,powerful! formerly oppressed ex- muslim warns ignorant americans about danger of ‚welcoming the people i fled from‚ [video],powerful formerly oppressed ex muslim warns ignorant american danger welcoming people fled video
+0,"int‚l leaders can‚t hide disrespect for obama at final g20: philippines leader calls barack obama‚son of a bitch‚‚china makes him exit ‚ass‚ of air force one‚putin has tense meeting with him [video]""",intl leader cant hide disrespect obama final g philippine leader call barack obamason bitchchina make exit as air force oneputin tense meeting video
+0,wow! liberal election fraud expert: trump landslide was enough to counter potential massive voter fraud effort by hillary campaign [video],wow liberal election fraud expert trump landslide enough counter potential massive voter fraud effort hillary campaign video
+1,india prime minister modi inaugurates controversial dam project,india prime minister modi inaugurates controversial dam project
+0,flashback [video]: libertarian gary johnson discusses solutions to syrian conflict‚today on msnbc: gives embarrassing answer to basic question about syrian war,flashback video libertarian gary johnson discusses solution syrian conflicttoday msnbc give embarrassing answer basic question syrian war
+0,the 1 percenter baby: chelsea‚s daughter is clearly not one of those ‚everyday people‚ her ‚dead broke‚ granny is championing,percenter baby chelseas daughter clearly one everyday people dead broke granny championing
+1,government will take over burned myanmar land: minister,government take burned myanmar land minister
+0,anti-trump protestors prove they have no basis for their hateful claims against ‚the donald‚ [video],antitrump protestors prove basis hateful claim donald video
+0,bette midler asks obama to release violent black panthers from prison‚gets hammered on social media,bette midler asks obama release violent black panther prisongets hammered social medium
+1,hurricane irma kills 10 in cuba castro calls for unity,hurricane irma kill cuba castro call unity
+1,german foreign minister equates far-right afd party with nazis,german foreign minister equates farright afd party nazi
+1,as battle rages devastated philippine city starts its long cleanup,battle rage devastated philippine city start long cleanup
+0,holy rigged election! obama regime considers special declaration to take charge of elections! [video],holy rigged election obama regime considers special declaration take charge election video
+0,super bowl champ player busts into wh press briefing: ‚need any help?‚‚liberal snowflakes have a meltdown! [video],super bowl champ player bust wh press briefing need helpliberal snowflake meltdown video
+1,from nursery to university: emerging market investors buy into education,nursery university emerging market investor buy education
+0,ammon and ryan bundy found ‚not guilty‚ in oregon federal case,ammon ryan bundy found guilty oregon federal case
+1,uk says world will stand together against north korea after missile launch,uk say world stand together north korea missile launch
+0,obama signs star wars ii defense bill: hypocrisy of blaming trump for ‚arms race‚,obama sign star war ii defense bill hypocrisy blaming trump arm race
+1,sen. mcconnell says expects puerto rico funding request by mid-october,sen mcconnell say expects puerto rico funding request midoctober
+0,taxpayer funded operation conservative take down : doj awards mi state univ huge grant to study ‚far right‚ groups use of social media,taxpayer funded operation conservative take doj award mi state univ huge grant study far right group use social medium
+0,clinton emails: how google worked with hillary to try and overthrow syria‚s assad,clinton email google worked hillary try overthrow syria assad
+1,trump calls egypt's sisi says keen to overcome obstacles,trump call egypt sisi say keen overcome obstacle
+1,kurdish leader barzani condemns iraqi parliament vote to remove kirkuk governor: kurdish media,kurdish leader barzani condemns iraqi parliament vote remove kirkuk governor kurdish medium
+0,obama fan club president george clooney tells france: ‚there‚s not going to be a president trump‚ [video],obama fan club president george clooney tell france there going president trump video
+0,andrew breitbart: ‚i don‚t care who our candidate is‚i will march behind whoever our candidate is,andrew breitbart dont care candidate isi march behind whoever candidate
+0,vocal critic of tanzanian president seriously hurt in gun attack,vocal critic tanzanian president seriously hurt gun attack
+0,elementary school plans ‚blacks only‚ field trip to college for third graders,elementary school plan black field trip college third grader
+0,judge napolitano: samsung allowed british intelligence to spy on americans through their tv‚s [video],judge napolitano samsung allowed british intelligence spy american tv video
+1,disclose your donors south african court tells political parties,disclose donor south african court tell political party
+1,lebanese army to deploy along entire eastern border: army chief,lebanese army deploy along entire eastern border army chief
+1,saudi arabia condemns myanmar government 'policy of repression',saudi arabia condemns myanmar government policy repression
+0,hollywood blvd: pro-trump #oscar rally gets ugly when punches start flying‚trump hating female picks on wrong woman! [video],hollywood blvd protrump oscar rally get ugly punch start flyingtrump hating female pick wrong woman video
+0,another revision¬†in las vegas mass shooting ‚ amid mandalay bay security guard‚s media silence,another revisionin la vega mass shooting amid mandalay bay security guard medium silence
+1,canada's trudeau shuffles cabinet focuses on aboriginal woes,canada trudeau shuffle cabinet focus aboriginal woe
+1,sri lanka court jails top former senior officials for graft,sri lanka court jail top former senior official graft
+0,more jobs! dow company ceo at mi trump rally: announces new mi plant: ‚we‚re not a ‚red tape‚ company,job dow company ceo mi trump rally announces new mi plant red tape company
+1,merkel optimistic eu dispute over refugee distribution will soon end,merkel optimistic eu dispute refugee distribution soon end
+1,canada deported hundreds to war-torn countries: government data,canada deported hundred wartorn country government data
+1,trump administration proposes to cut refugee cap to 45000,trump administration proposes cut refugee cap
+0,parent furious after 4th grade class joins hateful protestors and teacher in chant on capitol steps: ‚[governor] walker sucks!‚,parent furious th grade class join hateful protestors teacher chant capitol step governor walker suck
+1,german prosecutor demands life for neo-nazi suspect zschaepe,german prosecutor demand life neonazi suspect zschaepe
+0,yikes! trump announces ‚major speech‚ about hillary on monday: ‚i think you‚re going to find it very informative and very,yikes trump announces major speech hillary monday think youre going find informative
+0,juan hernandez tells how he was chased and beaten by anti-trump cowards who sucker punch people and run in packs,juan hernandez tell chased beaten antitrump coward sucker punch people run pack
+1,nigeria's buhari to pass through london after u.n. general assembly trip,nigeria buhari pas london un general assembly trip
+0,king obama just proclaimed the month of june will be dedicated to celebrating homosexuality,king obama proclaimed month june dedicated celebrating homosexuality
+1,us advising soldiers to be ‚less masculine‚ as military tries to curb flood of sexual harassment cases,u advising soldier less masculine military try curb flood sexual harassment case
+1,"u.s. ""probing"" to see if north korea interested in dialogue: tillerson",u probing see north korea interested dialogue tillerson
+1,dozens killed wounded by car bomb in afghan province,dozen killed wounded car bomb afghan province
+1,defense disputes nerve agent used to kill north korean leader's half-brother,defense dispute nerve agent used kill north korean leader halfbrother
+1,trump to press china on north korea trade on beijing visit,trump press china north korea trade beijing visit
+1,one dead after light aircraft collides on caernarfon runway,one dead light aircraft collides caernarfon runway
+1,austrian president tells kurz to heed 'european values' on coalition,austrian president tell kurz heed european value coalition
+1,u.s. officials say about 5-6 million customers without power after irma,u official say million customer without power irma
+0,boiler room ep #131 ‚ gender fluid scouts,boiler room ep gender fluid scout
+1,"lake oroville dam spillway damage results in evacuation orders to 188000 people""",lake oroville dam spillway damage result evacuation order people
+1,people smugglers test new migrant sea route through romania,people smuggler test new migrant sea route romania
+0,third degree ‚bern!‚ why denmark is telling marxist,third degree bern denmark telling marxist
+1,south korea to resume building two new nuclear reactors but scraps plans for 6 others,south korea resume building two new nuclear reactor scrap plan others
+0,politico writer suggests trump is having sex with daughter ivanka‚shows no remorse‚politico fires her,politico writer suggests trump sex daughter ivankashows remorsepolitico fire
+1,opposition stays away as kenyatta warns against 'destructive division',opposition stay away kenyatta warns destructive division
+0,american tourists attacked with acid at french train station,american tourist attacked acid french train station
+0,liberals are afraid of kid rock running for u.s. senate‚elizabeth warren‚s panicked email proves it,liberal afraid kid rock running u senateelizabeth warren panicked email prof
+1,china says wants deeper singapore military ties raps taiwan relations,china say want deeper singapore military tie rap taiwan relation
+0,"britain‚s islamic realist tommy robinson tears into leftist reporter: ‚50000 british muslims downloaded a terrorist magazine last year‚these people are waging war on us!‚ [video]""",britain islamic realist tommy robinson tear leftist reporter british muslim downloaded terrorist magazine last yearthese people waging war u video
+0,engdahl: ‚trump is a puppet of the deep state‚,engdahl trump puppet deep state
+0,breaking: female law student busts hillary‚s ‚oh sh*t‚ it guy who was seeking help to scrub hillary‚s name from emails‚wikileaks applauds!,breaking female law student bust hillary oh sht guy seeking help scrub hillary name emailswikileaks applauds
+0,college republicans president attacked by antifa : ‚like a pack of wolves‚,college republican president attacked antifa like pack wolf
+0,nfl gives beyonce super bowl half-time slot to promote cop hate,nfl give beyonce super bowl halftime slot promote cop hate
+0,global climate change liars ignore truth about earth day founder: murdered girlfriend‚turned her into compost,global climate change liar ignore truth earth day founder murdered girlfriendturned compost
+1,we can make brexit a success if we are creative pm may tells eu's tusk,make brexit success creative pm may tell eu tusk
+1,sore at macron's 'dictatorship' criticism venezuela blasts france,sore macron dictatorship criticism venezuela blast france
+1,conditions not ripe for role in spain-catalonia talks: swiss,condition ripe role spaincatalonia talk swiss
+0,no kidding! here‚s why hillary supporters will get us all killed [video],kidding here hillary supporter get u killed video
+1,target caves after customers boycott of transgender bathroom policy takes toll bottom line,target cave customer boycott transgender bathroom policy take toll bottom line
+1,spanish police fire rubber bullets in barcelona: media,spanish police fire rubber bullet barcelona medium
+0,about time! house republicans move to charge hillary with perjury for lying under oath before congress [video],time house republican move charge hillary perjury lying oath congress video
+0,episode #152 ‚ sunday wire: ‚from ground zero to syria‚ with guests tom duggan,episode sunday wire ground zero syria guest tom duggan
+1,exposing the shakespearean tragedy of the ‚russia hacking‚ hoax,exposing shakespearean tragedy russia hacking hoax
+1,what austria's election says about europe's political landscape,austria election say europe political landscape
+1,armed us immigration officers to be stationed in uk airports,armed u immigration officer stationed uk airport
+1,with far-right in turmoil france's le pen softens anti-eu stance,farright turmoil france le pen softens antieu stance
+1,three policemen killed in peru in drug-trafficking region: government,three policeman killed peru drugtrafficking region government
+1,rohingya refugees tell of new violence; call for myanmar sanctions,rohingya refugee tell new violence call myanmar sanction
+1,part of west london metro line closed due to earlier bomb,part west london metro line closed due earlier bomb
+1,syria: british and american presence directly escalating conflict near al-tanf,syria british american presence directly escalating conflict near altanf
+1,brazil congressional report recommends shelving temer charges,brazil congressional report recommends shelving temer charge
+1,mexico president leads government response in quake zone,mexico president lead government response quake zone
+1,russia supports iraq's territorial integrity: lavrov,russia support iraq territorial integrity lavrov
+0,two muslim uber drivers charged with multiple sex assaults of college students,two muslim uber driver charged multiple sex assault college student
+0,breaking: wikileaks releases hillary‚s speech to brazilian bankers: ‚my dream is open borders‚,breaking wikileaks release hillary speech brazilian banker dream open border
+1,islamic state claims responsibility for attack on shi'ite mosque in kabul: statement,islamic state claim responsibility attack shiite mosque kabul statement
+1,japan pm says u.n. sanctions on north korea must be firmly imposed,japan pm say un sanction north korea must firmly imposed
+0,anti-gun rapper,antigun rapper
+0,cops ask mayor to remove ‚black lives matter‚ banner hanging at city hall‚his response is astounding!,cop ask mayor remove black life matter banner hanging city hallhis response astounding
+0,hillary‚s ‚russian hack‚ hoax: the biggest lie of this election season,hillary russian hack hoax biggest lie election season
+0,breaking: ny imam and assistant shot and killed outside mosque‚witnesses say killer was tall hispanic man‚guess who crowd of angry muslims blame? [video],breaking ny imam assistant shot killed outside mosquewitnesses say killer tall hispanic manguess crowd angry muslim blame video
+1,turkish hunger striker released for remainder of trial,turkish hunger striker released remainder trial
+1,trump speaks to qatar emir on gulf unity terrorism fight: white house,trump speaks qatar emir gulf unity terrorism fight white house
+0,transgender target suing good samaritan who saved girl from being stabbed to death [video],transgender target suing good samaritan saved girl stabbed death video
+1,uk pm may to travel to brussels for meetings with eu's barnier and juncker,uk pm may travel brussels meeting eu barnier juncker
+0,freshman orientation: it‚s racist to ask asian students for math help‚don‚t ask black students if they play basketball‚and more insanity you won‚t believe!,freshman orientation racist ask asian student math helpdont ask black student play basketballand insanity wont believe
+0,pay off: the establishment rewards comey with $2 million book deal,pay establishment reward comey million book deal
+1,israel says hezbollah runs lebanese army signaling both are foes,israel say hezbollah run lebanese army signaling foe
+1,europe rights watchdog says turkey's emergency laws go too far,europe right watchdog say turkey emergency law go far
+0,should we worry about mcmaster as trump‚s national security advisor?,worry mcmaster trump national security advisor
+1,officials found list of targets with 5000 names in east german raid: media,official found list target name east german raid medium
+1,u.s. senate passes bipartisan bill claims to facilitate ‚better public access‚ to gov‚t records,u senate pass bipartisan bill claim facilitate better public access govt record
+1,exclusive: trump to weigh more aggressive u.s. strategy on iran - sources,exclusive trump weigh aggressive u strategy iran source
+1,spain's pm says could use constitutional powers to stop catalan independence,spain pm say could use constitutional power stop catalan independence
+1,china's cyber watchdog imposes top fines on tech firms over censorship,china cyber watchdog imposes top fine tech firm censorship
+1,iran's khamenei warns u.s. against 'wrong move' on nuclear deal,iran khamenei warns u wrong move nuclear deal
+0,awesome letter to obama: who is unfit to be president?,awesome letter obama unfit president
+1,amid tension trump and turkey's erdogan agree to strengthen ties,amid tension trump turkey erdogan agree strengthen tie
+0,one brilliant meme exposes the truth about islam and why muslims are leaving the middle east,one brilliant meme expose truth islam muslim leaving middle east
+1,exclusive: india and pakistan hit by spy malware - cybersecurity firm,exclusive india pakistan hit spy malware cybersecurity firm
+0,embarrassing: obama spends final hours with troops defending his failure as commander in chief‚bashing trump [video],embarrassing obama spends final hour troop defending failure commander chiefbashing trump video
+0,u.s. airlines brace themselves passengers for hurricane irma,u airline brace passenger hurricane irma
+1,cuban dissidents in electoral challenge as castro era nears end,cuban dissident electoral challenge castro era nears end
+1,thousands more rohingya flee to border as myanmar violence flares,thousand rohingya flee border myanmar violence flare
+0,megyn kelly sets a confused liberal straight on free speech,megyn kelly set confused liberal straight free speech
+1,u.s. envoy slams russia for bid to shield iran from iaea inspections,u envoy slam russia bid shield iran iaea inspection
+0,episode #119 ‚ sunday wire: ‚you know the drill‚ with guests robert singer and jay dyer,episode sunday wire know drill guest robert singer jay dyer
+1,rival tuaregs sign deal to end years of mali fighting,rival tuareg sign deal end year mali fighting
+0,detroit: immigrant steals $132 million from medicare‚owns $7 million mansion with indoor basketball court‚defense lawyer mohammed nasser says he‚s ‚not a flight risk‚,detroit immigrant steal million medicareowns million mansion indoor basketball courtdefense lawyer mohammed nasser say he flight risk
+1,likely successor to cuba's castro rejects u.s. demands for change,likely successor cuba castro reject u demand change
+1,italian parliament votes to toughen laws against fascist propaganda,italian parliament vote toughen law fascist propaganda
+0,flashback: hillary courts illegal alien vote by lying about her three ‚immigrant‚ grandparents,flashback hillary court illegal alien vote lying three immigrant grandparent
+1,top indian court to hear rohingya deportation case amid myanmar violence,top indian court hear rohingya deportation case amid myanmar violence
+0,hillary‚s thugs spray paint 20 cars outside trump rally [video],hillary thug spray paint car outside trump rally video
+1,u.n. seeks to rally foreign backing for new libyan peace plan,un seek rally foreign backing new libyan peace plan
+1,trump executive order on ethics commitments bans lobbying for executive branch employees,trump executive order ethic commitment ban lobbying executive branch employee
+0,have americans had enough yet? anti-trump protesters block ambulance with critically ill patient inside [video],american enough yet antitrump protester block ambulance critically ill patient inside video
+1,cambodian government files lawsuit to dissolve main opposition party,cambodian government file lawsuit dissolve main opposition party
+1,bali's rumbling volcano spurs travel warnings from australia singapore,bali rumbling volcano spur travel warning australia singapore
+1,austrian conservative kurz and far right to hold coalition talks,austrian conservative kurz far right hold coalition talk
+1,north korea warns of 'more gift packages' for united states,north korea warns gift package united state
+0,episode #149 ‚ sunday wire: ‚part ii: another road to damascus‚ with guests vanessa beeley,episode sunday wire part ii another road damascus guest vanessa beeley
+0,why these army rotc cadets were pressured into wearing heels will have you seeing red‚,army rotc cadet pressured wearing heel seeing red
+0,flashback: malcolm x on blacks who keep voting for democrats who lie to them: you‚re not only a chump,flashback malcolm x black keep voting democrat lie youre chump
+1,dominican republic shuts most ports ahead of hurricane maria,dominican republic shuts port ahead hurricane maria
+1,merkel on track for fourth term after german election: exit poll,merkel track fourth term german election exit poll
+0,obama sidekick valerie jarrett in hot water over speaking fee at broke public university,obama sidekick valerie jarrett hot water speaking fee broke public university
+1,turkey orders detention of 133 ministry workers in post-coup probe: anadolu,turkey order detention ministry worker postcoup probe anadolu
+0,rachel maddow tries to embarrass trump by exposing 2005 tax returns‚backfires big-time..gets destroyed on twitter!,rachel maddow try embarrass trump exposing tax returnsbackfires bigtimegets destroyed twitter
+1,with budapest closer to moscow orban grants money to russian orthodox churches,budapest closer moscow orban grant money russian orthodox church
+1,french army charter plane crashes in ivory coast four moldovans killed,french army charter plane crash ivory coast four moldovans killed
+0,updated video: is this america? conservatives and their families experience shocking abuse and shaming in their homes ordered by leftist da as part of insane vendetta,updated video america conservative family experience shocking abuse shaming home ordered leftist da part insane vendetta
+1,china says war on korean peninsula will have no winner,china say war korean peninsula winner
+1,islamic state driven out of last stronghold in northern iraq,islamic state driven last stronghold northern iraq
+1,teenager appears in uk court charged with london bomb attack,teenager appears uk court charged london bomb attack
+0,best bernie sanders yard sign you will ever see!,best bernie sander yard sign ever see
+1,fake letters tell germans the web has worked out their vote,fake letter tell german web worked vote
+1,merkel wants clear line on eurozone reform in german coalition talks,merkel want clear line eurozone reform german coalition talk
+0,lol! dem senator dick durbin voted to confirm circuit judge gorsuch in 2006‚tells cnn host ‚he can‚t remember‚ how he voted [video],lol dem senator dick durbin voted confirm circuit judge gorsuch tell cnn host cant remember voted video
+1,tokyo governor koike leaves door open for ruling party pm post election,tokyo governor koike leaf door open ruling party pm post election
+0,"first ""i do"" as same-sex marriage comes to germany",first samesex marriage come germany
+0,explain your results beaten angola party head tells electoral commission,explain result beaten angola party head tell electoral commission
+1,police state end-run: dhs wants control of u.s. elections,police state endrun dhs want control u election
+1,was gaddafi right about jfk?,gaddafi right jfk
+0,sunday screening: 24 hours after hiroshima (2010),sunday screening hour hiroshima
+0,sunday screening: ‚in debt we trust‚ (2007),sunday screening debt trust
+1,spain urges catalonia secessionists to obey madrid,spain urge catalonia secessionist obey madrid
+0,[video] black chamber of commerce president says obama‚s ‚clean power plan‚ will increase black poverty by 23 percent,video black chamber commerce president say obamas clean power plan increase black poverty percent
+1,germany says hopes to resume training of kurdish fighters in northern iraq,germany say hope resume training kurdish fighter northern iraq
+1,boiler room ‚ ep #51 ‚ social rejects & political pessimists club,boiler room ep social reject political pessimist club
+1,china says made representations to north korea over nuclear test,china say made representation north korea nuclear test
+1,togo security forces clash with protesters in north boy killed,togo security force clash protester north boy killed
+0,us delta force begins targeting isis in iraq,u delta force begin targeting isi iraq
+1,most germans want three-way coalition of conservatives fdp and greens: poll,german want threeway coalition conservative fdp green poll
+0,irony: [video] flag stompin‚ rapper,irony video flag stompin rapper
+1,no 'fire and fury' as trump team talks north korea with congress,fire fury trump team talk north korea congress
+0,[video] mooch will give barack work out gear‚you know,video mooch give barack work gearyou know
+0,university warns: make sure your holiday party is not a ‚christmas party‚ in disguise,university warns make sure holiday party christmas party disguise
+1,turkey to close iraq border air space will open new gate with baghdad,turkey close iraq border air space open new gate baghdad
+0,breaking fl voter fraud alert: ‚tens of thousands‚ of mail-in ballots have illegally been opened and counted before they‚ve been verified [video],breaking fl voter fraud alert ten thousand mailin ballot illegally opened counted theyve verified video
+1,malawi vigilante arrests rise to 200 in vampire scare,malawi vigilante arrest rise vampire scare
+0,us presidential debates much more corrupt than you might think,u presidential debate much corrupt might think
+1,u.s. air force runs out of bombs to drop on isis‚don‚t worry though,u air force run bomb drop isisdont worry though
+0,drain the swamp! epa wastes millions to make sure employees feel ‚included‚‚‚advisory bodies‚ = scam,drain swamp epa waste million make sure employee feel includedadvisory body scam
+0,mark steyn hammers democrats on climate change scam: ‚you‚re effectively enforcing a state ideology‚,mark steyn hammer democrat climate change scam youre effectively enforcing state ideology
+1,russian radio station says intruder stabs presenter in neck,russian radio station say intruder stab presenter neck
+0,wow! new batch of emails show hillary‚s state department was ‚corruption central‚ for obama regime‚reveals favors huma did for clinton foundation insiders,wow new batch email show hillary state department corruption central obama regimereveals favor huma clinton foundation insider
+0,disgusting: anarchist punk calls u.s. veteran ‚anti-american‚‚veteran yells back ‚i‚m a patriot!‚ [video],disgusting anarchist punk call u veteran antiamericanveteran yell back im patriot video
+1,unacknowledged secret access projects: the black budget & military industrial complex,unacknowledged secret access project black budget military industrial complex
+0,hillary supporter says murders will happen at anti-trump riots: ‚there will be casualties on both sides‚.people have to die to make a change‚‚ [video],hillary supporter say murder happen antitrump riot casualty sidespeople die make change video
+0,legal fears push newsweek to delete eichenwald‚s articles used to smear sputnik news,legal fear push newsweek delete eichenwalds article used smear sputnik news
+1,catalan mayors defy spanish courts ahead of independence vote,catalan mayor defy spanish court ahead independence vote
+1,germany's schaeuble ready to leave finance minister job head bundestag: cdu,germany schaeuble ready leave finance minister job head bundestag cdu
+1,aid groups seek $434 million to help up to 1.2 million rohingya muslims fleeing myanmar,aid group seek million help million rohingya muslim fleeing myanmar
+0,rubio doubles down on putting illegal aliens before americans,rubio double putting illegal alien american
+1,u.s. will phase out program for central american child refugees,u phase program central american child refugee
+1,pm praises italy's migrant policy as u.n. cites humanitarian crisis,pm praise italy migrant policy un cite humanitarian crisis
+1,trump says puerto rico has thrown budget 'out of whack',trump say puerto rico thrown budget whack
+0,antifa beware! bikers for trump makes huge announcement on tonight‚s phoenix rally [video],antifa beware bikers trump make huge announcement tonight phoenix rally video
+0,boiler room #63 ‚ us and them!,boiler room u
+0,watch:black customer threatens store manager because he doesn‚t employ any blacks: ‚ i‚m tired of this,watchblack customer threatens store manager doesnt employ black im tired
+1,soldier: ‚here‚s why trump‚s transgender military ban makes sense‚,soldier here trump transgender military ban make sense
+1,syria: nikki haley threatens to ‚do more‚ despite international outrage at us criminal act of aggression,syria nikki haley threatens despite international outrage u criminal act aggression
+0,keiser report: the ‚gaddafi-like‚ political career death of hillary clinton,keiser report gaddafilike political career death hillary clinton
+0,msnbc #fakenews fail: desperate rachel maddow springs trump‚s tax trap,msnbc fakenews fail desperate rachel maddow spring trump tax trap
+1,saudi arabia agrees to buy russian s-400 air defense system: arabiya tv,saudi arabia agrees buy russian air defense system arabiya tv
+1,turkey's erdogan to discuss response to iraqi referendum during iran visit: pm,turkey erdogan discus response iraqi referendum iran visit pm
+0,lol! dem operative tied to hillary quits after he‚s caught discussing voter fraud efforts on undercover tape [video],lol dem operative tied hillary quits he caught discussing voter fraud effort undercover tape video
+0,cafe owner reacts in awesome way after town told her to remove ‚god bless america‚ banner from front of restaurant,cafe owner reacts awesome way town told remove god bless america banner front restaurant
+0,germany‚s angela merkel makes incredibly naive announcement: every migrant must leave‚after this one condition is met‚,germany angela merkel make incredibly naive announcement every migrant must leaveafter one condition met
+1,washington post deceives public & profits from fake news,washington post deceives public profit fake news
+0,huffing ton post won‚t cover republican frontrunner donald trump‚s campaign,huffing ton post wont cover republican frontrunner donald trump campaign
+1,reborn german liberals could spell trouble for merkel,reborn german liberal could spell trouble merkel
+0,ep 5: patrick henningsen live with guest daniel faraci ‚ on trump,ep patrick henningsen live guest daniel faraci trump
+1,kremlin after kurdish vote says supports integrity of regional states,kremlin kurdish vote say support integrity regional state
+0,hammered by andrew florida town's rebuilding tested by irma,hammered andrew florida town rebuilding tested irma
+0,donald trump‚s trillion dollar bombshell,donald trump trillion dollar bombshell
+0,update on 9/11 memorial banned for ‚triggering‚ college snowflakes,update memorial banned triggering college snowflake
+1,spain's abertis board to discuss moving head office from catalonia on monday: source,spain abertis board discus moving head office catalonia monday source
+1,kaspersky works with interpol; kremlin dismisses claims against firm,kaspersky work interpol kremlin dismisses claim firm
+1,what‚s really behind the senate‚s override of obama veto of saudi 9/11 lawsuit bill?,whats really behind senate override obama veto saudi lawsuit bill
+0,obama‚s radical dhs chief vows to ‚protect‚ muslims from americans during speech at dc mosque,obamas radical dhs chief vow protect muslim american speech dc mosque
+0,boom! trey gowdy hammers ex-cia chief [video],boom trey gowdy hammer excia chief video
+0,in 2017,
+1,china's xi demands 'strong hands' to maintain stability ahead of congress,china xi demand strong hand maintain stability ahead congress
+0,barack obama finds friend in ‚fundamental transformation of america‚: shocking way ryan betrayed americans with $1.1 trillion bill,barack obama find friend fundamental transformation america shocking way ryan betrayed american trillion bill
+1,four other suspects in killing of north korean kim jong nam named in court,four suspect killing north korean kim jong nam named court
+1,in south korea daily stresses outweigh north korea missile worries,south korea daily stress outweigh north korea missile worry
+1,south african court ruling delivers setback to zuma allies,south african court ruling delivers setback zuma ally
+0,democrat underbelly exposed: out-of-control violence erupts‚anti-trump rioters deliver on threat to turn up heat,democrat underbelly exposed outofcontrol violence eruptsantitrump rioter deliver threat turn heat
+0,stunner: donald trump is next president of united states,stunner donald trump next president united state
+0,wolf in sheep‚s clothing: katie couric would like americans to know that gun owners actually want gun control,wolf sheep clothing katie couric would like american know gun owner actually want gun control
+1,raqqa campaign in final stages sdf says,raqqa campaign final stage sdf say
+0,listen to them laugh! undercover video captures diabolical remarks at national abortion federation conference‚‚an eyeball just fell into my lap..and that‚s gross‚,listen laugh undercover video capture diabolical remark national abortion federation conferencean eyeball fell lapand thats gross
+1,u.s. senator graham agrees with putin that more north korea sanctions won't work,u senator graham agrees putin north korea sanction wont work
+1,china arrests japanese citizen suspected of spying,china arrest japanese citizen suspected spying
+0,sarah palin asks azealia banks to join her to fight racism after rapper says palin should be ‚gang raped‚‚azealia‚s response is pure hatred,sarah palin asks azealia bank join fight racism rapper say palin gang rapedazealias response pure hatred
+1,catalonia baulks at formal independence declaration to allow talks,catalonia baulk formal independence declaration allow talk
+1,'lips and teeth' no more as china's ties with north korea fray,lip teeth china tie north korea fray
+0,this is not a joke! soros-linked group has plan to destroy trump‚will register 8 million ‚global voters‚ for hillary [video],joke soroslinked group plan destroy trumpwill register million global voter hillary video
+0,episode #160 ‚ sunday wire: ‚hail to the deplorables‚ with special guest randy j,episode sunday wire hail deplorables special guest randy j
+0,busted: young nj democrat chairman caught punching 75 yr old blind veteran volunteering at polls [video],busted young nj democrat chairman caught punching yr old blind veteran volunteering poll video
+0,breaking: watch live feed from ‚freedom of speech rally ii‚ in front of phoenix mosque,breaking watch live feed freedom speech rally ii front phoenix mosque
+1,austria's conservatives social democrats to sue each other ahead of vote,austria conservative social democrat sue ahead vote
+0,king obama plans to finish term traveling around the world,king obama plan finish term traveling around world
+1,skirting kurdish issue france says iraq's abadi paris visit to boost ties,skirting kurdish issue france say iraq abadi paris visit boost tie
+1,britain could still reverse brexit former minister heseltine says,britain could still reverse brexit former minister heseltine say
+0,mo democrat lawmaker under investigation by secret service for saying: ‚i hope trump is assassinated‚ on facebook‚but response by man who claims cousin is on trump‚s secret service detail could be more serious threat,mo democrat lawmaker investigation secret service saying hope trump assassinated facebookbut response man claim cousin trump secret service detail could serious threat
+0,[video] fed up driver in suv plows through ferguson protesters blocking busy highway‚ #dontplayinthestreets,video fed driver suv plow ferguson protester blocking busy highway dontplayinthestreets
+0,must kellyanne conway punches back after juan williams questioned how she could work and raise 4 kids: ‚i don‚t play golf and i don‚t have a mistress‚ [video],must kellyanne conway punch back juan williams questioned could work raise kid dont play golf dont mistress video
+0,is this the terrorist who inspired dallas cop killer? ‚we must kill all white police officers across the country‚we‚re asking that all black police officers take a leave of absence‚,terrorist inspired dallas cop killer must kill white police officer across countrywere asking black police officer take leave absence
+0,has bill clinton lost it? watch him yank balloon from little girl at dnc celebration‚and more super senior moments [video],bill clinton lost watch yank balloon little girl dnc celebrationand super senior moment video
+1,german court rules public should have free access to beaches,german court rule public free access beach
+1,indonesian police detain 22 over violent anti-communist protest,indonesian police detain violent anticommunist protest
+0,astroturfing: journalist reveals brainwashing tactic uses to manipulate public opinion,astroturfing journalist reveals brainwashing tactic us manipulate public opinion
+1,exclusive: trump's afghan decision may increase u.s. air power training,exclusive trump afghan decision may increase u air power training
+0,cheerleading assassination: are hollywood and politicians going too far?,cheerleading assassination hollywood politician going far
+0,boiler room #105 ‚ quantum swamp chess,boiler room quantum swamp chess
+0,episode #205 ‚ sunday wire: ‚dirty vegas‚ with jay dyer,episode sunday wire dirty vega jay dyer
+0,champion of women? how hillary used private investigators to destroy women her political prize husband was sleeping with: ‚we have to destroy her story‚,champion woman hillary used private investigator destroy woman political prize husband sleeping destroy story
+0,clueless anti-trump protesters asked why they oppose trump [video],clueless antitrump protester asked oppose trump video
+1,rohingya refugee children in bangladesh in dire state: unicef,rohingya refugee child bangladesh dire state unicef
+0,hurricane irma threatens luxury trump properties,hurricane irma threatens luxury trump property
+1,suspected u.s. drone strike targets militants in pakistan regional official says,suspected u drone strike target militant pakistan regional official say
+1,al qaeda warns myanmar of 'punishment' over rohingya,al qaeda warns myanmar punishment rohingya
+1,iran may drop nuclear deal if u.s. withdraws foreign minister tells al jazeera,iran may drop nuclear deal u withdraws foreign minister tell al jazeera
+0,tucker carlson embarrasses colby professor who says colleges should be able to shut down free speech [video],tucker carlson embarrasses colby professor say college able shut free speech video
+1,peru's congress ousts cabinet as political crisis deepens,peru congress ousts cabinet political crisis deepens
+1,may's party suspends two eu lawmakers over brexit vote,may party suspends two eu lawmaker brexit vote
+1,kenya election campaigns turn personal after court orders fresh polls,kenya election campaign turn personal court order fresh poll
+0,muslim preacher charged after ranting,muslim preacher charged ranting
+1,five crew missing after dredger collides with tanker off singapore,five crew missing dredger collides tanker singapore
+1,revealed: the cia ran lsd sex houses in san francisco in 1950s and 60s,revealed cia ran lsd sex house san francisco
+0,how did an illegal immigrant who said she wanted to eat ‚white invaders‚ become a lawyer in u.s.?,illegal immigrant said wanted eat white invader become lawyer u
+1,british police say suspect package in london's holborn was false alarm,british police say suspect package london holborn false alarm
+0,snopes implodes! liberal ‚fact-checker‚ turns to gofundme to keep business alive‚lol!,snopes implodes liberal factchecker turn gofundme keep business alivelol
+1,car bomb kills one wounds 10 in disputed iraqi oil city,car bomb kill one wound disputed iraqi oil city
+1,factbox: raqqa - islamic state's syrian hq has fallen,factbox raqqa islamic state syrian hq fallen
+0,globalization‚s inside man: the problem with david petraeus in trump‚s cabinet,globalization inside man problem david petraeus trump cabinet
+1,china says situation on korean peninsula very dangerous,china say situation korean peninsula dangerous
+0,cointel pro: are ‚anti-fascist‚ media personalities playing to the cameras?,cointel pro antifascist medium personality playing camera
+1,shelling across pakistan-india border kills six civilians wounds 30,shelling across pakistanindia border kill six civilian wound
+0,breaking: muslim opens fire on journalists [video],breaking muslim open fire journalist video
+0,al sharpton uses prince‚s death to fill seats at race baiting rally for another thug killed by cops,al sharpton us prince death fill seat race baiting rally another thug killed cop
+1,republican proposes house bill to force supreme court justices and employees to join obamacare,republican proposes house bill force supreme court justice employee join obamacare
+0,whoa! did donald trump just imply obama is working on behalf of muslim terrorists? [video],whoa donald trump imply obama working behalf muslim terrorist video
+1,mattis says u.s. will work to stay aligned with turkey despite diplomatic tensions,mattis say u work stay aligned turkey despite diplomatic tension
+0,leftist prof who wants ‚earth constitution‚ will speak at vatican rollout of papal document on phony ‚global warming‚,leftist prof want earth constitution speak vatican rollout papal document phony global warming
+1,pentagon says fourth u.s. soldier killed in niger ambush,pentagon say fourth u soldier killed niger ambush
+0,boiler room #91 ‚ the swear jar overfloweth,boiler room swear jar overfloweth
+1,boiler room ep #119 ‚ zombie disneyland & the decline of western society,boiler room ep zombie disneyland decline western society
+0,not so ‚funny guys‚ carl reiner and ‚meathead‚ son ‚feel sorry for obama‚ after ‚racist‚ americans elected president trump [video],funny guy carl reiner meathead son feel sorry obama racist american elected president trump video
+1,islamic state claims responsibility for attack in libyan city of misrata: statement,islamic state claim responsibility attack libyan city misrata statement
+0,mainstream media stands down: fire alarm pulled during conservative ‚when diversity becomes a problem‚ speech‚150+ free speech terrorists threaten,mainstream medium stand fire alarm pulled conservative diversity becomes problem speech free speech terrorist threaten
+1,vietnam jails dissident for five years in crackdown on activists,vietnam jail dissident five year crackdown activist
+1,us boots: us marines deployed for ground combat in iraq (to defend oil fields),u boot u marine deployed ground combat iraq defend oil field
+1,iran aircraft deals hang by thread as trump targets tehran,iran aircraft deal hang thread trump target tehran
+1,peru opposition-ruled congress approves kuczynski's new cabinet,peru oppositionruled congress approves kuczynskis new cabinet
+0,[video] sheriff clarke exposes the left: ‚this (ferguson protests) is nothing more than an attempt to try to energize and mobilize the black vote through the 2016 election‚,video sheriff clarke expose left ferguson protest nothing attempt try energize mobilize black vote election
+0,david letterman offers advice to crybaby comrades: ‚stop whining‚figure out a way to remove trump‚,david letterman offer advice crybaby comrade stop whiningfigure way remove trump
+1,uber,uber
+0,sunday screening: counter intelligence ‚ the deep state,sunday screening counter intelligence deep state
+1,egypt's sisi urges palestinians to unite co-exist with israelis,egypt sisi urge palestinian unite coexist israeli
+0,whoa! new disturbing video shows hillary‚s campaign likely faked her audience at nc rally,whoa new disturbing video show hillary campaign likely faked audience nc rally
+1,catalonia asks spain for dialogue as independence struggle intensifies,catalonia asks spain dialogue independence struggle intensifies
+0,scary! leaked email proves radical billionaire donor george soros was pulling sec of state hillary clinton‚s strings on foreign policy,scary leaked email prof radical billionaire donor george soros pulling sec state hillary clinton string foreign policy
+1,cover-up? new details from orlando shooter‚s crisis call casts light on fbi,coverup new detail orlando shooter crisis call cast light fbi
+1,soldier: ‚here‚s why trump‚s transgender military ban makes sense‚,soldier here trump transgender military ban make sense
+0,the moment ben affleck realized that ‚batman v superman‚ was a $400 million flop,moment ben affleck realized batman v superman million flop
+1,u.n. offers to help resolve baghdad kurdistan region crisis: iraq foreign ministry,un offer help resolve baghdad kurdistan region crisis iraq foreign ministry
+0,boiler room #64 ‚ gladio! come out and play!,boiler room gladio come play
+1,u.s. retaliates against russia orders closure of consulate annexes,u retaliates russia order closure consulate annex
+0,oops! here‚s proof the left used ‚schlonged‚ when referring to one of their own in 2011 [video],oops here proof left used schlonged referring one video
+1,u.s.-backed sdf launch final assault in syria's raqqa city,usbacked sdf launch final assault syria raqqa city
+1,uk doesn't need brexit to curb eu immigration says former pm blair,uk doesnt need brexit curb eu immigration say former pm blair
+1,suspected u.s. drone strikes kill 31 on pakistan-afghanistan frontier,suspected u drone strike kill pakistanafghanistan frontier
+1,factbox: what do laws say about catalan self-determination?,factbox law say catalan selfdetermination
+0,donald trump jr. releases emails related to russian lawyer meeting‚here are the nothing burger emails the media was salivating over,donald trump jr release email related russian lawyer meetinghere nothing burger email medium salivating
+1,macron avoids 'lecturing' egypt on rights sisi defends his record,macron avoids lecturing egypt right sisi defends record
+1,russia investigating is claim about russian hostages: ria,russia investigating claim russian hostage ria
+1,military option must remain on the table with north korea: johnson,military option must remain table north korea johnson
+0,comcast gives employees day off to protest trump‚s pro-american immigration policy‚cto compares trump to venezuelan dictator hugo chavez,comcast give employee day protest trump proamerican immigration policycto compare trump venezuelan dictator hugo chavez
+0,wow! this video might explain why #unfithillary is taking weekends off from campaigning‚caught grasping for railings,wow video might explain unfithillary taking weekend campaigningcaught grasping railing
+1,death toll from worst vietnam floods in years rises to 54,death toll worst vietnam flood year rise
+0,michelle obama comes out of hiding to accuse president trump of ‚not caring about your kids‚ wants them to eat ‚crap‚ [video],michelle obama come hiding accuse president trump caring kid want eat crap video
+0,watch what happens when christian man asks 13 gay bakeries to make pro-traditional marriage cake [video],watch happens christian man asks gay bakery make protraditional marriage cake video
+1,post-election conundrum awaits germany's merkel,postelection conundrum awaits germany merkel
+1,police to remove people from catalan voting stations on sunday: government source,police remove people catalan voting station sunday government source
+0,isis is on the march,isi march
+1,lavrov: russia-u.s. cooperation on syria 'not without problems',lavrov russiaus cooperation syria without problem
+1,guatemala political crisis may affect growth: central bank,guatemala political crisis may affect growth central bank
+1,swiss strip refugee status from libyan preacher,swiss strip refugee status libyan preacher
+1,u.s. struggles to convince iraqis that washington doesn‚t support isis,u struggle convince iraqi washington doesnt support isi
+0,oregon: feds cover-up foul play in finicum death,oregon fed coverup foul play finicum death
+1,france's le pen: far-right will rebuild continue fight against eu,france le pen farright rebuild continue fight eu
+1,eu urges spain to talk to catalans condemns violence,eu urge spain talk catalan condemns violence
+0,how people magazine cover proves hillary has always been wildly unpopular with women,people magazine cover prof hillary always wildly unpopular woman
+0,must watch! new video emerges of hillary leaving nyc after finally losing the election for the last time,must watch new video emerges hillary leaving nyc finally losing election last time
+0,[video] should rinos and democrats fear trump‚s presidential bid? ‚i would build a great,video rinos democrat fear trump presidential bid would build great
+1,dutch far-right politician wilders appeals discrimination verdict,dutch farright politician wilder appeal discrimination verdict
+0,heartless democrats invite illegals to taunt trump during policy speech while trump‚s guests,heartless democrat invite illegals taunt trump policy speech trump guest
+0,fidel castro mocks president obama‚blasts him for meddling in communist country‚s affairs,fidel castro mock president obamablasts meddling communist country affair
+1,turkish and iraqi militaries discuss kurdish independence vote,turkish iraqi military discus kurdish independence vote
+1,france eyes legalizing assisted reproduction for gay women in 2018,france eye legalizing assisted reproduction gay woman
+0,holy contraception! pope francis tells latin americans to use condoms‚‚lesser of two evils‚,holy contraception pope francis tell latin american use condomslesser two evil
+1,u.s. says myanmar should respond responsibly to attacks on security forces,u say myanmar respond responsibly attack security force
+1,japan's defense chief warns of possible north korea provocation on october 10,japan defense chief warns possible north korea provocation october
+0,mi board of education will allow students to choose gender,mi board education allow student choose gender
+0,how colleges are destroying free speech: ‚emergency counseling sessions‚ offered after ‚trump‚ word was written on sidewalk in chalk,college destroying free speech emergency counseling session offered trump word written sidewalk chalk
+1,"indonesia police detain 51 men in jakarta ""gay spa"" raid",indonesia police detain men jakarta gay spa raid
+0,obama made christian pastor pay for his own ticket home after iran got secret $1.7 billion ransom for his release,obama made christian pastor pay ticket home iran got secret billion ransom release
+1,biafra separatists nigerian army disagree over siege allegations,biafra separatist nigerian army disagree siege allegation
+1,turkey urges iraqi kurds to drop referendum cites sanctions,turkey urge iraqi kurd drop referendum cite sanction
+1,support for austrian ruling party slips ahead of oct. 15 vote: poll,support austrian ruling party slip ahead oct vote poll
+1,police have thwarted seven attacks since march: london mayor,police thwarted seven attack since march london mayor
+1,caribbean islands fear grim tourist season in irma's wake,caribbean island fear grim tourist season irmas wake
+1,britain's boris johnson says completely loyal to pm may,britain boris johnson say completely loyal pm may
+1,german industry see fdp revival boosting digital transition,german industry see fdp revival boosting digital transition
+1,ukraine passes long-delayed health reforms praised by west,ukraine pass longdelayed health reform praised west
+1,obama pokes the bear: ‚we will‚ retaliate against russia for ‚election hacking‚‚runs off on 5-star family vacation to hawaii,obama poke bear retaliate russia election hackingruns star family vacation hawaii
+0,alabama takes bold steps to protect confederate monuments after new orleans‚ shameful monument removal,alabama take bold step protect confederate monument new orleans shameful monument removal
+1,independence or bust: catalan leader boxed in by his own angry base,independence bust catalan leader boxed angry base
+0,boiler room ep #117 ‚ straight outta tavistock & the woke af zombie apocalypse,boiler room ep straight outta tavistock woke af zombie apocalypse
+0,bill clinton appears bewildered when coal miners boo him in west va: ‚mrs. clinton‚s anti-coal messages are the last thing our suffering town needs at this point‚ [video],bill clinton appears bewildered coal miner boo west va mr clinton anticoal message last thing suffering town need point video
+0,best 10 seconds of your day: watch al sharpton say he‚ll leave the u.s. if trump is elected,best second day watch al sharpton say hell leave u trump elected
+0,mike huckabee: ‚somebody needs to go to prison over this‚worse than a mafia shakedown‚‚how obama funneled billions of your tax dollars to radical liberal groups [video],mike huckabee somebody need go prison thisworse mafia shakedownhow obama funneled billion tax dollar radical liberal group video
+1,u.s.-led coalition says still monitoring is convoy in syria,usled coalition say still monitoring convoy syria
+1,russia says regrets over u.s. moves on consulate closure,russia say regret u move consulate closure
+0,obama is funding nuclear weapons that will be used against u.s‚retired air force general exposes danger obama poses to security of u.s. [video],obama funding nuclear weapon used usretired air force general expose danger obama pose security u video
+1,turkish tanks drill on iraqi border week before kurdish vote,turkish tank drill iraqi border week kurdish vote
+0,good riddance: james clapper resigns as director of us intelligence,good riddance james clapper resigns director u intelligence
+0,globalization‚s inside man: the problem with david petraeus in trump‚s cabinet,globalization inside man problem david petraeus trump cabinet
+1,exclusive: faulty devices help keep iran in nuclear deal limits - report,exclusive faulty device help keep iran nuclear deal limit report
+0,advocates for americans held in iran worried by trump's hard line,advocate american held iran worried trump hard line
+0,this is huge! trump suspends expedited h1-b visas for foreign workers‚america first! [video],huge trump suspends expedited hb visa foreign workersamerica first video
+1,colombia urges eln rebels to turn over body of russian hostage,colombia urge eln rebel turn body russian hostage
+1,yemeni pm says fishermen have seized iranian vessel sailors,yemeni pm say fisherman seized iranian vessel sailor
+1,moscow gives green light to cnn international broadcasting in russia,moscow give green light cnn international broadcasting russia
+1,france's national front number two quits; far-right opposition in turmoil,france national front number two quits farright opposition turmoil
+1,u.n. torture watchdog ends trip to rwanda citing obstruction,un torture watchdog end trip rwanda citing obstruction
+1,western sahara independence emissary refuses to leave lima airport,western sahara independence emissary refuse leave lima airport
+1,exclusive: returning rohingya may lose land crops under myanmar plans,exclusive returning rohingya may lose land crop myanmar plan
+0,third grade boys complain about 9 year old girl using boys‚ bathroom‚boys told to stand closer to urinals,third grade boy complain year old girl using boy bathroomboys told stand closer urinal
+1,former leader of germany's far-right planning to found new party,former leader germany farright planning found new party
+1,islamic state claims marseille knife attack that killed two people,islamic state claim marseille knife attack killed two people
+1,russia says is attacks in syria come from location near u.s. forces,russia say attack syria come location near u force
+0,boom! clock boy‚s dad loses defamation case in district court: ‚the lawsuit filed by clock boy‚s father is yet another example of islamist law fare‚ [video],boom clock boy dad loses defamation case district court lawsuit filed clock boy father yet another example islamist law fare video
+1,ukraine airport says tightened security after cyber attack,ukraine airport say tightened security cyber attack
+0,drudge threatens hillary‚he‚s about to drop bombshell about her ‚sex stuff‚,drudge threatens hillaryhes drop bombshell sex stuff
+0,taxpayers paid same women who crushed babies‚ skulls for living and sold their lungs to advise obama admin on ‚healthy baby‚ births,taxpayer paid woman crushed baby skull living sold lung advise obama admin healthy baby birth
+1,after 'bloody mess' jab macron eyes training job insurance reform,bloody mess jab macron eye training job insurance reform
+0,charlie daniels sends a message to bruce springsteen and other spineless rockers who‚re canceling shows,charlie daniel sends message bruce springsteen spineless rocker whore canceling show
+1,saudi king leaves for moscow crown prince in charge,saudi king leaf moscow crown prince charge
+1,eu executive not assessing impact of catalan crisis on spanish economy,eu executive assessing impact catalan crisis spanish economy
+0,breaking: ga,breaking ga
+1,in a first myanmar's 'ethnic cleansing' unites suu kyi's party army and public,first myanmar ethnic cleansing unites suu kyis party army public
+1,new zealand's 'first bloke' hooks into new role,new zealand first bloke hook new role
+1,turkey says hopes u.s. will lift decision on visa embargo soon,turkey say hope u lift decision visa embargo soon
+0,monument to designer of ak-47 rifle scarred by sculptor's lapse,monument designer ak rifle scarred sculptor lapse
+0,watch reagan warn us and draw battle lines‚trump is finishing the battle against the ‚liberal fascists‚ [video],watch reagan warn u draw battle linestrump finishing battle liberal fascist video
+0,election fraud: if it happened in michigan,election fraud happened michigan
+1,syrian army seizes oilfield from islamic state in east: state tv,syrian army seizes oilfield islamic state east state tv
+0,alarming: nsa refuses to release clinton-lynch tarmac transcript with lame excuse,alarming nsa refuse release clintonlynch tarmac transcript lame excuse
+1,request to halt construction of dapl declined,request halt construction dapl declined
+1,syrian army fights to secure corridor into deir al-zor,syrian army fight secure corridor deir alzor
+0,video shows stunning damage to streets of historic hamburg after soros‚ anti-capitalism cockroaches cleared out of g20 [video],video show stunning damage street historic hamburg soros anticapitalism cockroach cleared g video
+1,mexicans respond with faith and charity as hope fades for quake survivors,mexican respond faith charity hope fade quake survivor
+0,teacher‚s lecture sparks outrage: ‚to be white is to be racist‚ [video],teacher lecture spark outrage white racist video
+1,u.s. expulsion of cuban diplomats includes all business officers,u expulsion cuban diplomat includes business officer
+1,turkey ready to cooperate with iraq against kurdish militants: foreign ministry,turkey ready cooperate iraq kurdish militant foreign ministry
+1,venezuela governors sworn in showing opposition disunity,venezuela governor sworn showing opposition disunity
+0,changing his tune: the man who was in the police van with freddie gray breaks his silence,changing tune man police van freddie gray break silence
+0,how many different ways can arrogant liberals say donald trump will never be elected as our president? [video],many different way arrogant liberal say donald trump never elected president video
+1,bolivia's morales leads 'che' homage 50 years after execution,bolivia morale lead che homage year execution
+0,newt gingrich punches back at democrats with mega doses of truth on the bogus russia scandal: ‚this is a cultural civil war‚ [video],newt gingrich punch back democrat mega dos truth bogus russia scandal cultural civil war video
+1,roadside bomb kills four in thailand's troubled south: security official,roadside bomb kill four thailand troubled south security official
+1,saudi says iranian talk of rapprochement is laughable,saudi say iranian talk rapprochement laughable
+0,what‚s so wrong with transgender bathrooms? this guy has the awesome answer!,whats wrong transgender bathroom guy awesome answer
+1,russia china call for restraint after trump comment on north korea,russia china call restraint trump comment north korea
+0,obama‚s racism czar,obamas racism czar
+0,new 9/11 trailer ‚ featuring charlie sheen and whoopi goldberg,new trailer featuring charlie sheen whoopi goldberg
+0,wow! another young man found dead after serving dnc with papers in fraud suit on behalf of bernie sanders [video],wow another young man found dead serving dnc paper fraud suit behalf bernie sander video
+0,syria strikes: this is not the donald trump we wanted,syria strike donald trump wanted
+1,trump asks congress to investigate former obama administration,trump asks congress investigate former obama administration
+0,racism much? black cornell students protest a pro-black protest led by white students,racism much black cornell student protest problack protest led white student
+1,business as usual for thai tourism despite royal funeral this month,business usual thai tourism despite royal funeral month
+0,furious customers respond to home depot cashier‚s ‚america was never great‚ anti-trump hat [video],furious customer respond home depot cashier america never great antitrump hat video
+1,netanyahu to putin: israel may act to curb iran's clout in syria,netanyahu putin israel may act curb iran clout syria
+0,watch hilarious snl ‚draw muhammed‚ contest skit‚,watch hilarious snl draw muhammed contest skit
+1,the jerusalem decision: from creative chaos to effective turmoil,jerusalem decision creative chaos effective turmoil
+1,israeli minister says trump speech may start war with iran,israeli minister say trump speech may start war iran
+1,china's probes of rights lawyers 'alarming': human rights watch,china probe right lawyer alarming human right watch
+0,wow! house intelligence chair confirms trump was correct‚trump transition team was surveilled by obama [video],wow house intelligence chair confirms trump correcttrump transition team surveilled obama video
+1,u.s. congress tangles with facebook other social media firms over russia probe,u congress tangle facebook social medium firm russia probe
+1,saudi king salman demands iran stop meddling in middle east: ifax,saudi king salman demand iran stop meddling middle east ifax
+1,spain to make it easier for firms to move base from catalonia as business alarm deepens,spain make easier firm move base catalonia business alarm deepens
+1,eighty percent of puerto rico power lines down: prepa,eighty percent puerto rico power line prepa
+1,catalan parliament to meet on thursday to decide response to madrid,catalan parliament meet thursday decide response madrid
+0,breaking: gun used by 5 time deported illegal alien belonged to federal agent,breaking gun used time deported illegal alien belonged federal agent
+0,shocking video: chicago reporters infiltrate violent leftist protests against donald trump,shocking video chicago reporter infiltrate violent leftist protest donald trump
+0,new york times is advocating for internet censorship (controlled by them and other ‚approved‚ agents),new york time advocating internet censorship controlled approved agent
+0,protesters call for justice after maltese journalist's killing,protester call justice maltese journalist killing
+1,top austrian social democrat steps down over election smear campaign,top austrian social democrat step election smear campaign
+0,whoa! new evidence shows supreme court chief justice roberts was ‚hacked‚ by obama regime in same surveillance program that spied on private citizen donald trump,whoa new evidence show supreme court chief justice robert hacked obama regime surveillance program spied private citizen donald trump
+1,brexit talks warmer after may's speech but no closure,brexit talk warmer may speech closure
+0,farmer fined a whopping $2.8 million asks president trump for help,farmer fined whopping million asks president trump help
+0,media freak out! watch msnbc cut mic of black trump supporter‚mention bogus kkk scandal 6 times in 3 minute segment,medium freak watch msnbc cut mic black trump supportermention bogus kkk scandal time minute segment
+0,boom! trump drains obama swamp‚mandates all ambassadors vacate positions ‚without exceptions‚ by inauguration day,boom trump drain obama swampmandates ambassador vacate position without exception inauguration day
+0,"trump: hurricane irma has ""absolutely historic destructive potential""",trump hurricane irma absolutely historic destructive potential
+1,fighting in southern philippine city may end imminently - military,fighting southern philippine city may end imminently military
+1,in mexican town women and 'muxes' take charge after massive quake,mexican town woman muxes take charge massive quake
+0,heated! maria bartiromo goes at it with john podesta on russia probe ‚get your facts straight!‚ [video],heated maria bartiromo go john podesta russia probe get fact straight video
+0,mooch cries victim (again) in speech to argentinian girls: ‚men would whistle at me as i walked down the street,mooch cry victim speech argentinian girl men would whistle walked street
+1,qatar must protect workers from lethal heat rights group says,qatar must protect worker lethal heat right group say
+0,boiler room ep #120 ‚ scorched earth media: from russiagate to hillarygate,boiler room ep scorched earth medium russiagate hillarygate
+1,show #137 ‚ sunday wire: ‚eyes on the matrix‚ with acr‚s hesher and shawn helton,show sunday wire eye matrix acrs hesher shawn helton
+0,another revision¬†in las vegas mass shooting ‚ amid mandalay bay security guard‚s media silence,another revisionin la vega mass shooting amid mandalay bay security guard medium silence
+1,leaders of far-right uk group charged with religiously aggravated harassment,leader farright uk group charged religiously aggravated harassment
+0,sheriff clarke destroys idiocy of gun control in democrat ghetto hell-holes like blood-soaked chicago,sheriff clarke destroys idiocy gun control democrat ghetto hellhole like bloodsoaked chicago
+1,saudi clerics detained in apparent bid to silence dissent,saudi cleric detained apparent bid silence dissent
+0,this is great! one brutal image perfectly captures the hypocrisy of the left,great one brutal image perfectly capture hypocrisy left
+0,former nazi death camp guard charged with accessory to murder,former nazi death camp guard charged accessory murder
+1,u.s. mulls south sudan pressure cutting aid may not work: u.n. envoy,u mull south sudan pressure cutting aid may work un envoy
+0,mn taxpayers to pay rent for african refugees while visiting homeland‚freeing them from financial burden,mn taxpayer pay rent african refugee visiting homelandfreeing financial burden
+1,new zealand first leader says his party holds balance of power in new zealand elections,new zealand first leader say party hold balance power new zealand election
+1,forsaken sultan: erdogan isolated ahead trump meeting in washington,forsaken sultan erdogan isolated ahead trump meeting washington
+1,hostile same-sex marriage vote spurs australia to amend anti-hate law,hostile samesex marriage vote spur australia amend antihate law
+1,austria election victor calls for end to turkey's eu entry talks,austria election victor call end turkey eu entry talk
+1,china complains after u.s. destroyer sails through south china sea,china complains u destroyer sail south china sea
+1,hard choices for syrian industrialists in ruins of aleppo,hard choice syrian industrialist ruin aleppo
+0,crazed protesters pull down confederate statue in durham‚what‚s next,crazed protester pull confederate statue durhamwhats next
+0,disgusting! usa today video suggests ‚trump era‚ will make traveling unsafe‚rebuttal video already out! [video],disgusting usa today video suggests trump era make traveling unsaferebuttal video already video
+1,suicide attacks on restaurants checkpoint kill 60 in southern iraq,suicide attack restaurant checkpoint kill southern iraq
+1,scenting power potential merkel coalition partners edge closer on europe,scenting power potential merkel coalition partner edge closer europe
+0,shocking summary of the dnc convention so far‚did we leave anything out?,shocking summary dnc convention fardid leave anything
+0,europe crashes and burns,europe crash burn
+0,transexual michelle obama look-alike kicked out of girls bathroom by security guard‚presses charges,transexual michelle obama lookalike kicked girl bathroom security guardpresses charge
+1,italy calls confidence vote on contested electoral law,italy call confidence vote contested electoral law
+1,menacing bali volcano throws tourists' plans into jeopardy,menacing bali volcano throw tourist plan jeopardy
+0,liberal huffington post headline: ‚man,liberal huffington post headline man
+0,ohio loser brags about abandoning motorist in snowstorm on social media over trump bumper sticker on car‚goes viral,ohio loser brag abandoning motorist snowstorm social medium trump bumper sticker cargo viral
+0,episode #172 ‚ sunday wire: ‚trumpe le monde‚ with guests trog lodyte,episode sunday wire trumpe le monde guest trog lodyte
+0,swanky nyc hotel turns away navy officer for wearing uniform [video],swanky nyc hotel turn away navy officer wearing uniform video
+1,brexit bill gives uk ministers 'excessively wide' powers parliament committee says,brexit bill give uk minister excessively wide power parliament committee say
+0,breaking: obama appointed judge demands rnc reveal trump‚s plans to prevent voter fraud,breaking obama appointed judge demand rnc reveal trump plan prevent voter fraud
+1,exclusive: at a russian polling station phantom voters cast ballots for the 'tsar',exclusive russian polling station phantom voter cast ballot tsar
+0,did iran release this footage of captured u.s. sailor apologizing to humiliate america?,iran release footage captured u sailor apologizing humiliate america
+1,irma to stress-test florida insurers reinsurers: rating agencies,irma stresstest florida insurer reinsurers rating agency
+1,coming of age in an era of prosperity: meet china's 'bubble generation',coming age era prosperity meet china bubble generation
+0,pedophile pigs send teenage migrant boys to surgery after out-of-control rape in refugee camps [video],pedophile pig send teenage migrant boy surgery outofcontrol rape refugee camp video
+1,iran nuclear deal must change if u.s. to stay: tillerson,iran nuclear deal must change u stay tillerson
+0,florida car dealer threatened with fines for displaying american flags [video],florida car dealer threatened fine displaying american flag video
+1,russia reopens ferry route to north korea,russia reopens ferry route north korea
+0,students use ‚free speech‚ wall to paint ‚offensive,student use free speech wall paint offensive
+0,austrian parents and teachers sacrifice young girls at liberal altar: teen refugees sexually abuse school girls for months,austrian parent teacher sacrifice young girl liberal altar teen refugee sexually abuse school girl month
+1,u.s. tillerson assures washington's only goal in syria is fighting is: tass cites lavrov,u tillerson assures washington goal syria fighting tass cite lavrov
+0,somali refugee faces terror charges in canada stabbing car attacks,somali refugee face terror charge canada stabbing car attack
+1,romanian defense minister quits over communications mixup,romanian defense minister quits communication mixup
+1,kurdistan supervisors begin counting votes in independence referendum,kurdistan supervisor begin counting vote independence referendum
+1,trump‚s foreign policy: promote stability not change,trump foreign policy promote stability change
+1,factbox: key railroad assets in hurricane irma's path,factbox key railroad asset hurricane irmas path
+1,husband of far-right afd co-leader to quit party lawmaker says,husband farright afd coleader quit party lawmaker say
+1,china's u.n. envoy says north korea u.s. rhetoric 'too dangerous',china un envoy say north korea u rhetoric dangerous
+0,professor: political ignorance is ‚going to have consequences‚,professor political ignorance going consequence
+1,factbox: oil companies in caribbean southeast u.s. continue restart after irma,factbox oil company caribbean southeast u continue restart irma
+1,spanish court blocks second law linked to catalan referendum,spanish court block second law linked catalan referendum
+0,revealed: fbi aided,revealed fbi aided
+1,eu maintains summit gesture to may with conditions,eu maintains summit gesture may condition
+1,australian police charge man for attacking former pm abbott,australian police charge man attacking former pm abbott
+0,department of justice fines sheriff for excluding illegals when hiring,department justice fine sheriff excluding illegals hiring
+1,boiler room ‚ ep #51 ‚ social rejects & political pessimists club,boiler room ep social reject political pessimist club
+0,unbelievable photos show how the media is hiding the biggest story of our time: the rise of the violent,unbelievable photo show medium hiding biggest story time rise violent
+0,wow! hillary‚s rapist husband has to hold her up as she makes way to vehicle after devastating debate [video],wow hillary rapist husband hold make way vehicle devastating debate video
+1,merkel says to begin three-way german coalition talks next week,merkel say begin threeway german coalition talk next week
+0,brutal meme shows exactly what a hillary presidency would look like,brutal meme show exactly hillary presidency would look like
+1,saudi arabia suspends any dialogue with qatar: spa,saudi arabia suspends dialogue qatar spa
+0,trump team didn‚t just collude with israel,trump team didnt collude israel
+1,japan's abe to push pacifist constitution reform after strong election win,japan abe push pacifist constitution reform strong election win
+0,trump isn‚t going to invade venezuela,trump isnt going invade venezuela
+1,venezuela maduro warns of repeat elections in states won by opposition,venezuela maduro warns repeat election state opposition
+0,leftist legal expert dershowitz calls out 9th circuit for playing politics: ‚not a solid decision‚ [video],leftist legal expert dershowitz call th circuit playing politics solid decision video
+0,judge napolitano: ‚we are in danger of losing free speech‚ after berkeley travesty,judge napolitano danger losing free speech berkeley travesty
+0,active shooter drill suddenly ‚goes live‚ at joint base andrews in maryland,active shooter drill suddenly go live joint base andrew maryland
+1,moscow seoul closer on north korea after their leaders meet: ria cites kremlin,moscow seoul closer north korea leader meet ria cite kremlin
+1,thailand rehearses lavish $90 million funeral for late king,thailand rehearses lavish million funeral late king
+0,james clapper himself debunks ‚russia hacked us election‚ meme,james clapper debunks russia hacked u election meme
+0,co judge removes daughter from mother‚s care for making comments to other adults about chemtrails: ‚she is a danger to her daughter‚,co judge remove daughter mother care making comment adult chemtrails danger daughter
+0,the cia doesn‚t need to spy on free thinkers,cia doesnt need spy free thinker
+0,boiler room ep #86 ‚ kek comes to pizzatown,boiler room ep kek come pizzatown
+0,holy cash cow! check out how much wall street funneled into hillary‚s foundation/slush fund,holy cash cow check much wall street funneled hillary foundationslush fund
+1,overcrowded greek refugee camps ill-prepared for winter: unhcr,overcrowded greek refugee camp illprepared winter unhcr
+1,uk terrorism arrests soar to record level after attacks this year,uk terrorism arrest soar record level attack year
+1,turkish u.s. businesses call for resolution of diplomatic rows,turkish u business call resolution diplomatic row
+0,a brutally honest message to black american men from a conservative black american,brutally honest message black american men conservative black american
+1,ecuador president replaces vice president jailed in odebrecht probe,ecuador president replaces vice president jailed odebrecht probe
+1,austria will stay pro-european election victor tells brussels,austria stay proeuropean election victor tell brussels
+0,trump brings love for america back to dc! president-elect trump wows crowd with awesome speech at union station [video],trump brings love america back dc presidentelect trump wow crowd awesome speech union station video
+0,nc taxpayers unknowingly fund stunning communist guide at unc: why students are told not to use ‚christmas vacation‚ or ‚golf outings‚ will make your blood boil,nc taxpayer unknowingly fund stunning communist guide unc student told use christmas vacation golf outing make blood boil
+0,one democrat who refuses to cast electoral vote for crooked hillary could end it all for her [video],one democrat refuse cast electoral vote crooked hillary could end video
+1,iraqi kurdish referendum to trigger new crises says turkish official,iraqi kurdish referendum trigger new crisis say turkish official
+0,nfl star delivers tough message about ‚exterminating blacks‚ for any voter who supports hillary [video],nfl star delivers tough message exterminating black voter support hillary video
+1,two-thirds of us navy strike fighter jets grounded: navy claims no money to fix them,twothirds u navy strike fighter jet grounded navy claim money fix
+1,u.s. air strike kills 'several' islamic state militants in libya,u air strike kill several islamic state militant libya
+0,watch and laugh: sebastian gorka tells cnn‚s camerota that more people watch cartoons than them [video],watch laugh sebastian gorka tell cnns camerota people watch cartoon video
+1,east libyan government issues retaliatory entry ban against u.s. citizens,east libyan government issue retaliatory entry ban u citizen
+0,the real truth about why obama is planting muslim refugees in small towns across america,real truth obama planting muslim refugee small town across america
+0,yikes! just when everyone thought things couldn‚t get much worse for united airlines‚this happened,yikes everyone thought thing couldnt get much worse united airlinesthis happened
+0,fearing russia sweden holds biggest war games in 20 years,fearing russia sweden hold biggest war game year
+1,russia rejects allegation it bombed u.s.-backed fighters in syria,russia reject allegation bombed usbacked fighter syria
+1,wild elephants trample two rohingya refugees in bangladesh: police,wild elephant trample two rohingya refugee bangladesh police
+1,trump halts travel in new executive order,trump halt travel new executive order
+1,macron lawmaker wants 'rich list' study amid wealth tax unease,macron lawmaker want rich list study amid wealth tax unease
+0,marine‚s awesome response to college kids who want you to pay for their education goes viral,marine awesome response college kid want pay education go viral
+1,turkish court releases jailed journalist in opposition newspaper case,turkish court release jailed journalist opposition newspaper case
+0,sean spicer calls out race baiting journalist: ‚stop shaking your head again‚ [video],sean spicer call race baiting journalist stop shaking head video
+1,ruling nationals recover support in jittery new zealand election campaign,ruling national recover support jittery new zealand election campaign
+1,u.s. officials cite need for caution in addressing rohingya crisis,u official cite need caution addressing rohingya crisis
+0,valerie jarrett just moved into barack and michelle obama‚s dc home‚plans to help oust trump‚eric holder warns: ‚it‚s coming‚he‚s coming‚he‚s ready to roll‚,valerie jarrett moved barack michelle obamas dc homeplans help oust trumperic holder warns cominghes cominghes ready roll
+0,msnbc admits plan to suppress bernie sanders voters in california,msnbc admits plan suppress bernie sander voter california
+0,disturbing uncovered emails from huma abedin bring hillary‚s mental health into question: ‚often confused‚,disturbing uncovered email huma abedin bring hillary mental health question often confused
+1,politics: xi jinping's compliant generation,politics xi jinpings compliant generation
+0,ep #8: patrick henningsen live with guest shawn helton ‚ ‚2017 predictions & trends‚,ep patrick henningsen live guest shawn helton prediction trend
+1,armed attack kills at least six soldiers in egypt's sinai,armed attack kill least six soldier egypt sinai
+1,vietnam protests over chinese military drill in south china sea,vietnam protest chinese military drill south china sea
+1,u.s.-backed forces syrian army advance separately on islamic state in deir al-zor,usbacked force syrian army advance separately islamic state deir alzor
+1,airbus issues safety advice on tiger helicopters flying in turbulence,airbus issue safety advice tiger helicopter flying turbulence
+0,dallas ‚attack‚ dialectics: summer of uncle sam,dallas attack dialectic summer uncle sam
+1,banks won't be allowed to do business with both u.s. and north korea: mnuchin,bank wont allowed business u north korea mnuchin
+1,britain's boris johnson accused of brexit 'backseat driving',britain boris johnson accused brexit backseat driving
+1,iran says missile program non-negotiable denies reuters report: agency,iran say missile program nonnegotiable denies reuters report agency
+1,talks on future eu-uk ties before divorce settled would weaken eu: macron,talk future euuk tie divorce settled would weaken eu macron
+0,boiler room #96 ‚ the great lobster degeneracy & the art of debate,boiler room great lobster degeneracy art debate
+1,'no rules': russian activist's death a symbol of pre-election violence,rule russian activist death symbol preelection violence
+0,boom! trump exposes phony michelle obama‚when she went low with oprah‚trump went high‚very high [video],boom trump expose phony michelle obamawhen went low oprahtrump went highvery high video
+1,russia says u.s. military in baltic contradicts russia-nato agreement: ria,russia say u military baltic contradicts russianato agreement ria
+0,why picture of che-obama was much worse than anyone imagined,picture cheobama much worse anyone imagined
+0,racist liberal reporter arrested in connection with 8 jewish community center bomb threats‚blames ‚nasty/racist white girl‚ [video],racist liberal reporter arrested connection jewish community center bomb threatsblames nastyracist white girl video
+0,lol! new video emerges of central park trump assassination play with cnn logo covering trump‚s head [video],lol new video emerges central park trump assassination play cnn logo covering trump head video
+1,as tillerson heads to pakistan islamabad wary of deepening u.s.-india ties,tillerson head pakistan islamabad wary deepening usindia tie
+0,isis supporter responds to killing of top isis operative: ‚if they took abu sayyaf,isi supporter responds killing top isi operative took abu sayyaf
+0,naacp chief asks blm rioters to ‚show up en masse at polls‚need to ensure that every demonstrator is a vote‚ [video],naacp chief asks blm rioter show en masse pollsneed ensure every demonstrator vote video
+1,guantanamo jihadist freed after murder of sfc christopher speer,guantanamo jihadist freed murder sfc christopher speer
+0,uk diplomat says he‚s met with dnc leaker‚they‚re not russian‚they‚re an insider [video],uk diplomat say he met dnc leakertheyre russiantheyre insider video
+1,danish minister republishes controversial prophet cartoon on facebook,danish minister republishes controversial prophet cartoon facebook
+0,obama blames russia for hillary‚s loss,obama blame russia hillary loss
+1,eu to review brexit approach if no deal by december: tusk,eu review brexit approach deal december tusk
+0,cnn posts truth about trump polls‚then immediately regrets it‚we have screen shots!,cnn post truth trump pollsthen immediately regret itwe screen shot
+1,german minister urges eu to standardize asylum seeker benefits,german minister urge eu standardize asylum seeker benefit
+1,lebanon parliament speaker proposes vote by year-end,lebanon parliament speaker proposes vote yearend
+1,turkey's erdogan says major operation in syria's idlib,turkey erdogan say major operation syria idlib
+1,turkey will take two steps if germany takes one to normalize relations - foreign minister,turkey take two step germany take one normalize relation foreign minister
+0,watch! fox news on high anti-trump propaganda mission: obama/clinton stooge masquerades as unbiased pundit [video],watch fox news high antitrump propaganda mission obamaclinton stooge masquerade unbiased pundit video
+1,uk's may sets out transition plan in bid to unlock brexit talks,uk may set transition plan bid unlock brexit talk
+1,motorbike explosion in syrian city kills child monitors say,motorbike explosion syrian city kill child monitor say
+1,around one million rally for catalan independence from spain,around one million rally catalan independence spain
+0,plane forced to turn around,plane forced turn around
+1,south korea's moon welcomes talks with north korea but now is not the time: media,south korea moon welcome talk north korea time medium
+1,federal showdown looms in oregon after blm abuse of local ranching family ‚ bundys lead protest,federal showdown loom oregon blm abuse local ranching family bundys lead protest
+1,u.s. expels 15 cuban diplomats fuelling tensions with havana,u expels cuban diplomat fuelling tension havana
+0,priceless! bernie sanders tells msnbc host he‚s not a democrat while touring with dnc chair to promote dem party [video],priceless bernie sander tell msnbc host he democrat touring dnc chair promote dem party video
+0,boiler room #63 ‚ us and them!,boiler room u
+1,uk brexit minister says 'good prospect' of agreeing transitional deal with eu,uk brexit minister say good prospect agreeing transitional deal eu
+0,obama makes stunning 11th hour gift of massive uranium shipment to iran‚as iran develops long-range missile plan,obama make stunning th hour gift massive uranium shipment iranas iran develops longrange missile plan
+0,russia mocks sore loser obama for trying to destroy u.s.-russian relations before trump takes office [video],russia mock sore loser obama trying destroy usrussian relation trump take office video
+0,wikileaks reminds the world: ‚obama has a history of tapping & hacking his friends and rivals‚,wikileaks reminds world obama history tapping hacking friend rival
+0,only 25% of down syndrome babies are allowed to be born‚this ‚flying baby‚ might make some people re-think that decision,syndrome baby allowed bornthis flying baby might make people rethink decision
+0,sharpton shakes down pastors for donations at memorial for black youths: black pastor calls sharpton a ‚pimp‚,sharpton shake pastor donation memorial black youth black pastor call sharpton pimp
+0,leftist bully artists tell ivanka trump: ‚get my artwork off your walls‚‚‚i am embarrassed to be seen with you‚,leftist bully artist tell ivanka trump get artwork wallsi embarrassed seen
+0,will ‚trumponomics‚ bankrupt america?,trumponomics bankrupt america
+1,south korea deploys u.s. anti-missile launchers amid clashes with protesters,south korea deploys u antimissile launcher amid clash protester
+1,south africa tax agency wants parliament to probe kpmg,south africa tax agency want parliament probe kpmg
+1,raqqa to be part of 'federal syria' u.s.-backed militia says,raqqa part federal syria usbacked militia say
+1,migrant smuggling crackdown triggered clashes in libyan city: armed group head,migrant smuggling crackdown triggered clash libyan city armed group head
+0,the view brings on bill o‚reilly‚s sexual harassment accuser‚is this really sexual harassment? [video],view brings bill oreillys sexual harassment accuseris really sexual harassment video
+1,'vanishing village' looks to japan's ldp for survival,vanishing village look japan ldp survival
+0,refugee students sue pa school district because school isn‚t good enough for them,refugee student sue pa school district school isnt good enough
+0,did beyonce and jay z‚s ‚vacation‚ to communist cuba set stage for obama to pardon fugitive,beyonce jay z vacation communist cuba set stage obama pardon fugitive
+0,dinesh d‚souza brilliantly schools hollywood reporter on why racist democrats keep minorities on the plantation [video],dinesh dsouza brilliantly school hollywood reporter racist democrat keep minority plantation video
+1,macron's invitation to visit france not related to kurdish referendum - iraqi pm,macron invitation visit france related kurdish referendum iraqi pm
+0,boiler room #97 ‚ mermaids and swamp life,boiler room mermaid swamp life
+0,boiler room #99 ‚ almost to 100!,boiler room almost
+0,rosie o‚donnell gets a tongue lashing for her attack on barron trump: ‚why don‚t you worry about your own children,rosie odonnell get tongue lashing attack barron trump dont worry child
+1,croatian police detain eight former executives at agrokor,croatian police detain eight former executive agrokor
+0,record number of states punishing human rights activism: u.n,record number state punishing human right activism un
+0,episode #152 ‚ sunday wire: ‚from ground zero to syria‚ with guests tom duggan,episode sunday wire ground zero syria guest tom duggan
+1,wmd fraud: sexed-up un ‚chemical weapons‚ report on syria contrived to trigger more sanctions,wmd fraud sexedup un chemical weapon report syria contrived trigger sanction
+1,unlikely allies eye vote to legalize cannabis in new zealand,unlikely ally eye vote legalize cannabis new zealand
+0,germany election bombshell: open borders angela merkel clobbered at polls‚party that suggested germany may need to start shooting migrants at border wins by double digits,germany election bombshell open border angela merkel clobbered pollsparty suggested germany may need start shooting migrant border win double digit
+1,catalan secessionists mull snap election as madrid hangs tough,catalan secessionist mull snap election madrid hang tough
+1,spain blocks catalan independence vote threatens charges,spain block catalan independence vote threatens charge
+1,britain germany committed to iran nuclear deal: may's office,britain germany committed iran nuclear deal may office
+1,venezuela vote dispute escalates foreign sanctions threat,venezuela vote dispute escalates foreign sanction threat
+1,india's gandhi scion seeks revival in pm modi's backyard,india gandhi scion seek revival pm modis backyard
+0,hillary tries to inject social class and race into flint water crisis.. immediately regrets it,hillary try inject social class race flint water crisis immediately regret
+1,typhoon batters hong kong and south china three dead in macau,typhoon batter hong kong south china three dead macau
+0,irony! watch what happens when female reporter punched in the face at women‚s march‚find this man! [video],irony watch happens female reporter punched face womens marchfind man video
+0,william shatner blasts ‚social justice warriors‚ who criticize trump,william shatner blast social justice warrior criticize trump
+1,spain's king condemns catalan leaders as thousands take to streets,spain king condemns catalan leader thousand take street
+1,uk pm may tightens grip over brexit talks appoints official as eu adviser,uk pm may tightens grip brexit talk appoints official eu adviser
+1,u.s. senate passes bipartisan bill claims to facilitate ‚better public access‚ to gov‚t records,u senate pass bipartisan bill claim facilitate better public access govt record
+1,maltese prime minister promises reward to uncover journalist killer,maltese prime minister promise reward uncover journalist killer
+0,watch young teenage thugs as they rob female reporter filming #baltimoreriots,watch young teenage thug rob female reporter filming baltimoreriots
+0,srebrenica's muslim defender cleared of crimes serbs protest,srebrenicas muslim defender cleared crime serb protest
+0,stuck on stupid: why is america starting ww3?,stuck stupid america starting ww
+1,spanish court suspends catalan parliament session throwing independence call in doubt,spanish court suspends catalan parliament session throwing independence call doubt
+1,kremlin says in touch with france over possible macron visit to russia,kremlin say touch france possible macron visit russia
+0,professor who called election of president trump an ‚act of terrorism‚ is chosen for ‚professor of the year‚ [video],professor called election president trump act terrorism chosen professor year video
+1,why hillary clinton is responsible for us failures in libya and syria,hillary clinton responsible u failure libya syria
+0,cnn fires black dem party chair: new wikileaks email exposes second question donna brazile gave to crooked hillary in advance of debate,cnn fire black dem party chair new wikileaks email expose second question donna brazile gave crooked hillary advance debate
+0,whoa! paul ryan just lied to o‚reilly about bill house passed to pause somali refugee program [video],whoa paul ryan lied oreilly bill house passed pause somali refugee program video
+1,new 'walls' now divide germany president says,new wall divide germany president say
+1,young conservative kurz on track to be austrian leader: vote projections,young conservative kurz track austrian leader vote projection
+1,father of orlando shooter is long-time cia asset,father orlando shooter longtime cia asset
+1,compromise sought on u.n. yemen inquiry as saudi pressure mounts,compromise sought un yemen inquiry saudi pressure mount
+1,powerful hurricanes to fuel demands from island nations at climate talks,powerful hurricane fuel demand island nation climate talk
+0,boiler room ‚ ep #54 ‚ america‚ the end is nigh,boiler room ep america end nigh
+1,france discusses increased pressure on north korea with trump abe,france discusses increased pressure north korea trump abe
+0,how to blow $700 million: al jazeera america finally calls it quits,blow million al jazeera america finally call quits
+0,ted cruz: vilification of law enforcement coming from top‚all the way to president of united states,ted cruz vilification law enforcement coming topall way president united state
+1,british police make sixth arrest in tube bomb investigation,british police make sixth arrest tube bomb investigation
+1,uk finance minister's future questioned by pm may's allies as budget nears,uk finance minister future questioned pm may ally budget nears
+0,cuomo outraged that iowans cheered when trump said he doesn‚t want a poor person as commerce secretary,cuomo outraged iowan cheered trump said doesnt want poor person commerce secretary
+0,boiler room ep #125 ‚ live from the swamp train with funksoul,boiler room ep live swamp train funksoul
+1,n.y. power company sends crew to aid puerto rico after hurricane,ny power company sends crew aid puerto rico hurricane
+1,the corporate plantation: ncaa college sports oligopoly,corporate plantation ncaa college sport oligopoly
+1,magnitude 5.4 quake rumbles southern mexico no reports of damage,magnitude quake rumble southern mexico report damage
+1,spanish high court remands in custody two catalan separatist leaders,spanish high court remand custody two catalan separatist leader
+1,britain's may wins brexit reprieve faces tough weeks ahead,britain may win brexit reprieve face tough week ahead
+1,at least 71 killed in myanmar as rohingya insurgents stage major attack,least killed myanmar rohingya insurgent stage major attack
+1,munich prosecutors say nearing end of austrian eurofighter probe,munich prosecutor say nearing end austrian eurofighter probe
+0,hiv positive,hiv positive
+1,trump dismisses facebook ads controversy as part of 'russia hoax',trump dismisses facebook ad controversy part russia hoax
+1,death toll from blasts in somalia's capital mogadishu tops 200,death toll blast somalia capital mogadishu top
+1,spanish pm rajoy to ask court to revoke catalan referendum law,spanish pm rajoy ask court revoke catalan referendum law
+0,here‚s the list of 25 governors who have told obama muslim refugees from syria are not welcome in their states,here list governor told obama muslim refugee syria welcome state
+1,trump announces transgender ban for us military,trump announces transgender ban u military
+0,why did 14 massive teen mall brawls,massive teen mall brawl
+0,busted! main political ‚fact‚ checker for snopes is finally exposed as liberal hack,busted main political fact checker snopes finally exposed liberal hack
+1,syrian army encircles is in al-mayadin: syrian military source,syrian army encircles almayadin syrian military source
+0,if these celebrities are ‚with her‚ then why is hillary paying them big bucks after performing at fundraisers?,celebrity hillary paying big buck performing fundraiser
+1,nudging to war: u.s. shoots down syrian army fighter jet,nudging war u shoot syrian army fighter jet
+0,police in germany begin raids on homes of facebook users who post ‚hate speech‚ against refugees,police germany begin raid home facebook user post hate speech refugee
+0,shock to the system: new poll says trump can beat hillary,shock system new poll say trump beat hillary
+1,uk says needs 1200 officials to register eu nationals after brexit,uk say need official register eu national brexit
+1,russia saudi arabia close to sign s-400 missile deal: ifax cites putin aide,russia saudi arabia close sign missile deal ifax cite putin aide
+0,hungary eases pressure on international universities in soros row,hungary eas pressure international university soros row
+0,activist judge just blocked trump‚s effort to cut off funding to sanctuary cities harboring illegals,activist judge blocked trump effort cut funding sanctuary city harboring illegals
+1,france criticizes russian stance on syria toxic gas probe,france criticizes russian stance syria toxic gas probe
+1,turkey remains dependable ally in nato erdogan spokesman says,turkey remains dependable ally nato erdogan spokesman say
+1,u.s. allied syrian groups form civilian council to run deir al-zor,u allied syrian group form civilian council run deir alzor
+1,argentina's macri almost certain to run for re-election: adviser,argentina macri almost certain run reelection adviser
+1,france gets serious over sexual harassment after weinstein scandal: minister,france get serious sexual harassment weinstein scandal minister
+0,trump comes out swinging: new ad features one of bill‚s rape victims‚with surprise ending [video],trump come swinging new ad feature one bill rape victimswith surprise ending video
+1,u.n. chief security council call on myanmar to end violence,un chief security council call myanmar end violence
+1,u.s. debt decreased by $68 billion in first month of trump presidency‚guess who doubled u.s. debt during 8 years in office?,u debt decreased billion first month trump presidencyguess doubled u debt year office
+0,wow! 60 yr old black vietnam veteran shot for supporting trump [video],wow yr old black vietnam veteran shot supporting trump video
+0,mark levin outlines evidence of spying by obama on trump: ‚the evidence is overwhelming!‚ [video],mark levin outline evidence spying obama trump evidence overwhelming video
+1,islamic state cleared from syria's raqqa: monitor,islamic state cleared syria raqqa monitor
+1,u.s. 'strongly opposes' iraqi kurdish independence vote: state department,u strongly opposes iraqi kurdish independence vote state department
+1,clinton‚s ‚no-fly zone‚ over syria will not ‚save lives‚ ‚ it will lead to war with russia,clinton nofly zone syria save life lead war russia
+1,russia says close to syria deal with turkey iran,russia say close syria deal turkey iran
+1,florida crowd attacks police officer attempting to make arrest,florida crowd attack police officer attempting make arrest
+1,ypg fighters credit ocalan with syria victory,ypg fighter credit ocalan syria victory
+0,megyn kelly continues her obsession with trump‚angry he won‚t apologize to hillary‚s ‚khan man‚ [video],megyn kelly continues obsession trumpangry wont apologize hillary khan man video
+1,rights group accuses myanmar of crimes against humanity,right group accuses myanmar crime humanity
+0,report: ‚federal government escalated the violence in oregon‚,report federal government escalated violence oregon
+1,haley says new north korea sanctions unlikely to change behavior,haley say new north korea sanction unlikely change behavior
+0,home depot lowe's ship emergency material to florida ahead of hurricane,home depot lowes ship emergency material florida ahead hurricane
+1,crowds hurl abuse at south african cannibalism suspects,crowd hurl abuse south african cannibalism suspect
+1,french unions and left-wing plan 10 days of action to rattle macron,french union leftwing plan day action rattle macron
+0,watch how young hillary supporters react when they see actual photos of her ‚everyday american‚ homes [video],watch young hillary supporter react see actual photo everyday american home video
+1,police questioned suspect in marseille knife killings prior to attack,police questioned suspect marseille knife killing prior attack
+0,trump and secret service forced to take last minute escape route to avoid violent liberal thug protesters [video],trump secret service forced take last minute escape route avoid violent liberal thug protester video
+1,supporters of south korea ex-leader park ask u.n. body to probe her detention conditions,supporter south korea exleader park ask un body probe detention condition
+0,hasta la vista arnold! guy whose affair with housekeeper produced son,hasta la vista arnold guy whose affair housekeeper produced son
+1,facing far-right gains merkel schulz urge undecided germans to vote,facing farright gain merkel schulz urge undecided german vote
+0,father of high school football star shot and killed by illegal alien introduces trump to thousands in az [video],father high school football star shot killed illegal alien introduces trump thousand az video
+0,homepage,homepage
+1,billionaire's ano party holding big lead in czech election: partial results,billionaire ano party holding big lead czech election partial result
+0,cop launches bike at anti-trump terrorist in philadelphia,cop launch bike antitrump terrorist philadelphia
+1,now talk nice: eu script to help may settle brexit bill,talk nice eu script help may settle brexit bill
+0,should we worry about mcmaster as trump‚s national security advisor?,worry mcmaster trump national security advisor
+1,france sees talks on post-iran nuclear deal ballistic missile use,france see talk postiran nuclear deal ballistic missile use
+0,rapper makes video shows white police officer being tortured,rapper make video show white police officer tortured
+0,no police in sight: large group of masked antifa cowards take on trump supporters in berkeley‚chaos erupts [video],police sight large group masked antifa coward take trump supporter berkeleychaos erupts video
+1,uk pm may could have more to say on brexit money at eu summit: spokeswoman,uk pm may could say brexit money eu summit spokeswoman
+0,it‚s time to stop the lies! are you sick and tired of the false ‚hands up don‚t shoot‚ narrative?,time stop lie sick tired false hand dont shoot narrative
+0,obama criticizes trump for comments about illegals and muslim refugees‚but what about this video of obama‚s top 5 most violent quotes about american citizens?,obama criticizes trump comment illegals muslim refugeesbut video obamas top violent quote american citizen
+1,south korea says strongly condemns north korea missile launch,south korea say strongly condemns north korea missile launch
+0,secret dumps of toxic waste on private property by epa: will the government bullies at the epa finally be exposed?,secret dump toxic waste private property epa government bully epa finally exposed
+0,trump says ‚yes‚ to federal funding for planned parenthood‚under one condition‚and you‚re gonna love it!,trump say yes federal funding planned parenthoodunder one conditionand youre gon na love
+1,there was no independence referendum in catalonia today: spain pm,independence referendum catalonia today spain pm
+0,obama inspired cop hate update: tx restaurant manager writes ‚fck u‚ on sheriff‚s receipt,obama inspired cop hate update tx restaurant manager writes fck u sheriff receipt
+0,city of chicago forcing out homeless veterans group to make space for restaurants,city chicago forcing homeless veteran group make space restaurant
+1,india appoints new defence minister rejigs cabinet to refocus on economy,india appoints new defence minister rejigs cabinet refocus economy
+1,bombardier dispute risks northern irish peace ireland to tell u.s.,bombardier dispute risk northern irish peace ireland tell u
+1,germany's fdp says won't agree to 'jamaica' coalition at any price,germany fdp say wont agree jamaica coalition price
+1,slovakia delays decision to replace russian fighter jets,slovakia delay decision replace russian fighter jet
+0,dirty jobs‚ mike rowe: great opportunities out there that people don‚t know exist [video],dirty job mike rowe great opportunity people dont know exist video
+1,philippines: 2016 washington‚s fury as philippine‚s elections threaten us anti-china policy,philippine washington fury philippine election threaten u antichina policy
+1,macron vows caribbean rebuild as anger rises against european powers,macron vow caribbean rebuild anger rise european power
+0,chicago thugs watched 9 yr old play on swings before carrying out his brutal murder in retaliation against dad‚s gang,chicago thug watched yr old play swing carrying brutal murder retaliation dad gang
+0,boiler room ep #110 ‚ a deeper game: masters of chaos strike again,boiler room ep deeper game master chaos strike
+0,hillary offended by trump‚s words‚caught on tape threatening women who dared to come forward about bill clinton raping,hillary offended trump wordscaught tape threatening woman dared come forward bill clinton raping
+0,murderers and rapists for hillary: va governor,murderer rapist hillary va governor
+0,in a show of weakness‚obama will not provide this list of political prisoners to human rights violator raul castro,show weaknessobama provide list political prisoner human right violator raul castro
+0,violent left exposed: anti-trump latino sprays pepper spray in faces of pro-trump women and children,violent left exposed antitrump latino spray pepper spray face protrump woman child
+1,rights group questions italy's work with libya stopping migrants,right group question italy work libya stopping migrant
+0,new video: nice terror attack‚what the media‚s not telling you,new video nice terror attackwhat medias telling
+1,yrc worldwide says multiple terminals closed in u.s. southeast,yrc worldwide say multiple terminal closed u southeast
+1,malaysia says foils hijacking of thai tanker 10 pirates arrested,malaysia say foil hijacking thai tanker pirate arrested
+0,feel the bern! watch bernie sanders‚ supporters embarrassed by their own hypocrisy in hysterical ‚gotcha‚ video,feel bern watch bernie sander supporter embarrassed hypocrisy hysterical gotcha video
+0,baltimore purges confederate statues in dark of night‚mayor explains: ‚i did not want to endanger people in my own city‚,baltimore purge confederate statue dark nightmayor explains want endanger people city
+0,ny times releases dramatic video of keith scott shooting: ‚drop the gun‚drop the f*#king gun!‚,ny time release dramatic video keith scott shooting drop gundrop fking gun
+0,if threatened u.s. will 'totally destroy' north korea trump vows,threatened u totally destroy north korea trump vow
+1,iraq plans to take control of kurdistan region's border 'in coordination' with iran turkey,iraq plan take control kurdistan region border coordination iran turkey
+0,boiler room ep #118,boiler room ep
+1,german lawmakers visit turkish air base but dispute unresolved,german lawmaker visit turkish air base dispute unresolved
+0,as jihadi‚s ties to isis are exposed‚obama‚s doj tells muslims: ‚we stand with you in this‚,jihadis tie isi exposedobamas doj tell muslim stand
+1,french pm shrugs off labor protests truckers call strike,french pm shrug labor protest trucker call strike
+1,sinn fein's adams to outline succession plan in november,sinn feins adam outline succession plan november
+0,boiler room #95 ‚ weapons of mass penetration,boiler room weapon mass penetration
+0,hysterical! comedian joe piscopo imitates maxine waters,hysterical comedian joe piscopo imitates maxine water
+0,father of student released from n. korean prison slams obama‚uses one word to describe president trump that will make liberals cringe [video],father student released n korean prison slam obamauses one word describe president trump make liberal cringe video
+1,malaysia in talks with u.s. firm ocean infinity to resume mh370 search,malaysia talk u firm ocean infinity resume mh search
+0,hurricane irma threatens power losses for millions in florida,hurricane irma threatens power loss million florida
+0,where was media outrage after this woman deliberately plowed car into las vegas crowd‚killing one,medium outrage woman deliberately plowed car la vega crowdkilling one
+0,ep #7: patrick henningsen live with guest shawn helton ‚ ‚top conspiracies of 2016‚,ep patrick henningsen live guest shawn helton top conspiracy
+0,president trump retrieves marine‚s hat and places it back on his head after it blows off‚ oorah! [video],president trump retrieves marine hat place back head blow oorah video
+1,u.s. air strikes kill 17 islamic state militants in libya: u.s. military,u air strike kill islamic state militant libya u military
+0,obama defends kaepernick‚s decision to disrespect american flag: ‚he‚s generated more interest in something that needs to be talked about‚,obama defends kaepernicks decision disrespect american flag he generated interest something need talked
+0,whoa! did hillary just have a seizure on camera? [video],whoa hillary seizure camera video
+1,shout poll: should apple give fbi backdoor access to iphones?,shout poll apple give fbi backdoor access iphones
+1,dallas maidan: staged snipers designed to inflict 7/7 ‚strategy of tension‚,dallas maidan staged sniper designed inflict strategy tension
+0,whose convention speech had more viewers?‚the answer may surprise you [video],whose convention speech viewersthe answer may surprise video
+1,trump may have to settle for deterring not disarming north korea,trump may settle deterring disarming north korea
+0,boiler room ep #87,boiler room ep
+1,israel approves building plans for 31 settler homes in west bank's hebron,israel approves building plan settler home west bank hebron
+0,lol! chuckie schumer warns trump is ‚in trouble‚ for accusing obama of wiretapping trump towers‚what schumer says next is hilarious!,lol chuckie schumer warns trump trouble accusing obama wiretapping trump towerswhat schumer say next hilarious
+1,trump says fresh north korea sanctions 'nothing' compared to what needs to happen,trump say fresh north korea sanction nothing compared need happen
+0,boiler room ‚ ep #45 ‚ horror hotel,boiler room ep horror hotel
+0,michael flynn‚s lawyer releases statement scorching ‚highly politicized witch hunt‚,michael flynns lawyer release statement scorching highly politicized witch hunt
+1,mexican presidential hopeful lopez obrador says he would revise oil contracts,mexican presidential hopeful lopez obrador say would revise oil contract
+0,lock him up! ceo threatens to assassinate trump with sniper rifle at white house,lock ceo threatens assassinate trump sniper rifle white house
+1,china's xi looks set to keep right-hand man on despite age,china xi look set keep righthand man despite age
+1,iaea chief calls for clarity on disputed section of iran nuclear deal,iaea chief call clarity disputed section iran nuclear deal
+1,tax march: where were you as obama wrecked libya?,tax march obama wrecked libya
+1,u.s. keeps up diplomatic efforts to deal with north korea crisis,u keep diplomatic effort deal north korea crisis
+0,a picture and its story: tear gas in nairobi,picture story tear gas nairobi
+0,angry black activists start vile social media campaign over public sympathy for paris terror victims,angry black activist start vile social medium campaign public sympathy paris terror victim
+0,the changing face of mainstream media?,changing face mainstream medium
+1,uk lawmakers ask facebook for any evidence of russian-linked brexit activity,uk lawmaker ask facebook evidence russianlinked brexit activity
+0,trump slams abc for ignoring pro-life march while salivating over radical women‚s march‚abc cuts conversation from transcripts [video],trump slam abc ignoring prolife march salivating radical womens marchabc cut conversation transcript video
+1,catalans start to form queues to vote in independence referendum: witnesses,catalan start form queue vote independence referendum witness
+1,south korea to announce approval of environment report for thaad deployment on monday: official,south korea announce approval environment report thaad deployment monday official
+0,what a wonderful world ‚ us saviour complex,wonderful world u saviour complex
+0,jill stein believes north korea is victim of u.s‚north korea ‚feels cornered‚,jill stein belief north korea victim usnorth korea feel cornered
+1,iran bans oil refinery products traffic with iraqi kurdistan: report,iran ban oil refinery product traffic iraqi kurdistan report
+1,trump blasts democrats: a ‚disgrace‚ that full cabinet not in place,trump blast democrat disgrace full cabinet place
+1,germany‚s defense minister refuses to wear hijab during saudi arabia visit‚says trump‚s election proves political correctness has been rejected,germany defense minister refuse wear hijab saudi arabia visitsays trump election prof political correctness rejected
+1,north korea's 'princess' now one of the secretive state's top policy makers,north korea princess one secretive state top policy maker
+0,the list of 65 mainstream media ‚journalists‚ you should never trust: wikileaks busts media hacks working with hillary‚s top advisors,list mainstream medium journalist never trust wikileaks bust medium hack working hillary top advisor
+0,hysterical! msnbc host gets rapists confused‚calls bill cosby ‚bill clinton‚ [video],hysterical msnbc host get rapist confusedcalls bill cosby bill clinton video
+0,hurricane irma likely to drop to category 4 upon landfall in florida: nhc,hurricane irma likely drop category upon landfall florida nhc
+0,breaking: no charges for police officer in shooting death of #keithscott‚ex-con muslim who beat wife,breaking charge police officer shooting death keithscottexcon muslim beat wife
+0,real-time debate graph shows trump crushed hillary with independent voters‚a must watch!,realtime debate graph show trump crushed hillary independent votersa must watch
+0,neil cavuto and young commie clash: ‚the capitalist system is illegitimate‚ [video],neil cavuto young commie clash capitalist system illegitimate video
+0,"outrage and desperation: video captures american company telling 1400 workers their jobs are going to mexico""",outrage desperation video capture american company telling worker job going mexico
+0,lol! trump responds to race-obsessed congressman lewis after calling him an ‚illegitimate president‚‚media attacks ‚loathsome‚ trump [video],lol trump responds raceobsessed congressman lewis calling illegitimate presidentmedia attack loathsome trump video
+0,"open-border liberals put entire nation on high alert: german spy chief warns 1000+ radical islamists ready to attack‚over 100 isis members among refugees""",openborder liberal put entire nation high alert german spy chief warns radical islamist ready attackover isi member among refugee
+0,msnbc cuts mic of gop senator lindsey graham when he brings up hillary‚s campaign during interview about donald trump jr.,msnbc cut mic gop senator lindsey graham brings hillary campaign interview donald trump jr
+1,uzbek dissident released from jail still faces charges,uzbek dissident released jail still face charge
+1,egypt blocks human rights watch website amid widespread media blockade,egypt block human right watch website amid widespread medium blockade
+1,saudi king salman to visit white house early next year: white house,saudi king salman visit white house early next year white house
+0,tv host cracks up as protester shows up during live segment‚screams ‚bill clinton is a rapist!‚ [video],tv host crack protester show live segmentscreams bill clinton rapist video
+1,tillerson to visit pakistan as well as india: senior u.s. official,tillerson visit pakistan well india senior u official
+0,employees say facebook is suppressing conservative news‚pushing black lives matter‚artificially ordering ‚trending news‚,employee say facebook suppressing conservative newspushing black life matterartificially ordering trending news
+1,nothing formally agreed on moving next round of brexit talks -uk pm may's spokeswoman,nothing formally agreed moving next round brexit talk uk pm may spokeswoman
+1,ex-nusra vows to fight on in syria denounces de-escalation deal,exnusra vow fight syria denounces deescalation deal
+0,watch cbs host embarrass dingbat pelosi after claiming ‚too much being made about hillary emails‚‚it‚s a distraction from zika [video],watch cbs host embarrass dingbat pelosi claiming much made hillary emailsits distraction zika video
+1,at least 33 people died in police crackdown in nairobi -rights groups,least people died police crackdown nairobi right group
+1,russia saudi arabia cement new friendship with king's visit,russia saudi arabia cement new friendship king visit
+1,may macron gentiloni push for quick removal of extremist online content,may macron gentiloni push quick removal extremist online content
+1,india pm plans cabinet revamp some ministers offer to quit: sources,india pm plan cabinet revamp minister offer quit source
+1,syria,syria
+1,u.s. puts more pressure on pakistan to help with afghan war,u put pressure pakistan help afghan war
+0,leftist resentment peddler,leftist resentment peddler
+0,emails show obama‚s epa planned to let flint residents drink poison water until 2016,email show obamas epa planned let flint resident drink poison water
+0,female muslim ‚feminist‚ linda sarsour calls for ‚jihad‚ against president trump,female muslim feminist linda sarsour call jihad president trump
+0,if you cross our borders illegally‚.you can now land a job teaching in this state,cross border illegallyyou land job teaching state
+1,mexico's quake killed at least 26 people authorities,mexico quake killed least people authority
+1,mexico to receive $150 million from catastrophe bond after quake,mexico receive million catastrophe bond quake
+1,factbox: passport to catalonia - how to achieve independence,factbox passport catalonia achieve independence
+0,muslim mayor of rotterdam,muslim mayor rotterdam
+0,university president apologizes to traumatized students for allowing cops to sleep in campus housing during rnc‚makes them feel ‚unsafe‚,university president apologizes traumatized student allowing cop sleep campus housing rncmakes feel unsafe
+0,no passport necessary: tunnels made by drug cartels along obama‚s open borders make it easy for isis to enter us [video],passport necessary tunnel made drug cartel along obamas open border make easy isi enter u video
+1,uk lawmakers vent anger at pm may's fragile government over welfare reform,uk lawmaker vent anger pm may fragile government welfare reform
+1,'big question' is whether rohingya can go home: u.n. refugee chief,big question whether rohingya go home un refugee chief
+1,trump thanks putin for slashing us embassy staff: ‚it cut our payroll‚,trump thanks putin slashing u embassy staff cut payroll
+0,neocon files: the kagans are back ‚ wars to follow,neocon file kagans back war follow
+0,socialist bernie sanders asks trump‚s pick for education sec if she‚ll agree to free college‚gets embarrassing public smack down [video],socialist bernie sander asks trump pick education sec shell agree free collegegets embarrassing public smack video
+0,breaking: photo of terrorist who threatened to kill 16 ‚white devils‚ at u of chicago is released,breaking photo terrorist threatened kill white devil u chicago released
+0,trump‚s latest tease pales next to bush and gore‚s election war in 2000,trump latest tease pale next bush gore election war
+0,hypocrites! check out massive structure party of open-borders built to keep legal citizens out of dnc,hypocrite check massive structure party openborders built keep legal citizen dnc
+0,expose the left! doj digs into anti-trump website to expose violent rent-a-mob organizers,expose left doj dig antitrump website expose violent rentamob organizer
+0,wow! one courageous man stands against rioters holding best sign ever!,wow one courageous man stand rioter holding best sign ever
+0,breaking: michael flynn resigns as trump‚s national security advisor,breaking michael flynn resigns trump national security advisor
+0,busted! one of nation‚s biggest political donors caught funneling money to hillary,busted one nation biggest political donor caught funneling money hillary
+1,spain's socialist leader to meet pm as catalonia signs independence document,spain socialist leader meet pm catalonia sign independence document
+0,"this is okay? loudmouth entertainer who got milo kicked off twitter: ‚if i see another 45-year-old white woman from williamsburg saying ‚black lives matter‚ i‚m going to punch you in the mouth‚""",okay loudmouth entertainer got milo kicked twitter see another yearold white woman williamsburg saying black life matter im going punch mouth
+0,wow! national geographic gets hammered with explosive reactions to latest cover featuring 9 yr old transgender,wow national geographic get hammered explosive reaction latest cover featuring yr old transgender
+0,spectacular! kid rock blows up ‚made in china‚ grills in new marketing campaign for ‚american badass grill‚ [video],spectacular kid rock blow made china grill new marketing campaign american badass grill video
+0,trump‚s latest tease pales next to bush and gore‚s election war in 2000,trump latest tease pale next bush gore election war
+1,after year of 'repression' in bahrain west remains silent amnesty says,year repression bahrain west remains silent amnesty say
+0,professor gives instruction for what‚s acceptable after mass migration and conquering of a nation [video],professor give instruction whats acceptable mass migration conquering nation video
+0,"senior writer for newsweek hopes gop family members ‚lose insurance‚ be ‚tortured‚ and ‚die‚‚suggests people drop off dead bodies at fox news""",senior writer newsweek hope gop family member lose insurance tortured diesuggests people drop dead body fox news
+0,robert deniro wanted ‚to punch trump in the face‚‚supports anti-trump rioters‚now wants americans to support his new movie [video],robert deniro wanted punch trump facesupports antitrump riotersnow want american support new movie video
+0,dear democrats and liberals‚stop complaining about the election‚you‚re the ones who created ‚us‚,dear democrat liberalsstop complaining electionyoure one created u
+0,moore: why millions of americans are voting trump,moore million american voting trump
+1,bangladesh destroys boats ferrying rohingya from myanmar,bangladesh destroys boat ferrying rohingya myanmar
+1,swedish train derails after hitting armored vehicle four injured,swedish train derails hitting armored vehicle four injured
+1,episode #9 ‚ on the qt: ‚cozy bears & eggnog‚ ‚ sober analysis of russian hack hysteria,episode qt cozy bear eggnog sober analysis russian hack hysteria
+1,kurdish officials say thousands flee kirkuk since iraqi army takeover,kurdish official say thousand flee kirkuk since iraqi army takeover
+0,trump supporters fight back! ca congresswoman walks off stage after trump supporters shout ‚we love trump‚‚‚respect our president‚ [video],trump supporter fight back ca congresswoman walk stage trump supporter shout love trumprespect president video
+1,iraq kurdish vote may benefit syrian kurds say their leaders,iraq kurdish vote may benefit syrian kurd say leader
+1,austrian chancellor pledges to get to the bottom of smear campaign,austrian chancellor pledge get bottom smear campaign
+0,sheriff won‚t enforce gun control law he calls ‚borderline treasonous‚,sheriff wont enforce gun control law call borderline treasonous
+1,south african reshuffle irks anc allies zuma confidant to oversee nuclear deal,south african reshuffle irks anc ally zuma confidant oversee nuclear deal
+1,u.s. renews call for cambodia to release opposition leader from prison,u renews call cambodia release opposition leader prison
+0,boiler room ‚ ep #58 ‚ lord of the pedo rings,boiler room ep lord pedo ring
+0,the state that gets more refugees than any other in america may surprise you,state get refugee america may surprise
+1,zimbabwean activist pastor arrested for criticizing mugabe government,zimbabwean activist pastor arrested criticizing mugabe government
+1,gibraltar very concerned by violence in catalonia chief minister says,gibraltar concerned violence catalonia chief minister say
+1,turkey to form closer ties with iraqi central government after referendum pm says,turkey form closer tie iraqi central government referendum pm say
+1,uzbekistan pulls students teachers nurses from cotton fields: sources,uzbekistan pull student teacher nurse cotton field source
+1,north korea's nuclear scientists take center stage with h-bomb test,north korea nuclear scientist take center stage hbomb test
+1,china's communist party says still talking to north korean counterpart,china communist party say still talking north korean counterpart
+0,black lives matter organizers hacked messages show plans for ‚shutting down gop convention‚‚ ‚disrupting trump‚ and ‚martial law‚,black life matter organizer hacked message show plan shutting gop convention disrupting trump martial law
+0,let the reparations begin: rahm emanuel uses $5.5 million taxpayer dollars to gain favor with chicago‚s black voters,let reparation begin rahm emanuel us million taxpayer dollar gain favor chicago black voter
+0,epic! check out the t-shirts two guys wore behind hillary during a town hall,epic check tshirts two guy wore behind hillary town hall
+1,turkey's erdogan says military economic options on table over iraqi kurdish referendum,turkey erdogan say military economic option table iraqi kurdish referendum
+0,the secret society that ruined the world: rhodes,secret society ruined world rhodes
+1,turkey to take stronger steps in response to iraqi kurdish referendum: erdogan,turkey take stronger step response iraqi kurdish referendum erdogan
+0,mike huckabee scorches the press: ‚grow up!‚start acting like journalists‚ [video],mike huckabee scorch press grow upstart acting like journalist video
+1,spanish government says catalan response not valid: media,spanish government say catalan response valid medium
+0,fiore: bundy ranch case drags on because ‚fbi has no evidence to prosecute them with‚,fiore bundy ranch case drag fbi evidence prosecute
+1,outgoing leader's protege set to win kyrgyz presidential election,outgoing leader protege set win kyrgyz presidential election
+1,central african republic risks return to major conflict: u.n. report,central african republic risk return major conflict un report
+1,false flag attack against cuba: a plan hatched by the pentagon,false flag attack cuba plan hatched pentagon
+0,watch responses by nh focus group to questions about trump shock msnbc hosts,watch response nh focus group question trump shock msnbc host
+0,boiler room ‚ ep #43 ‚ cloppers,boiler room ep cloppers
+0,july 4th schoolhouse rock: ‚preamble to the us constitution‚,july th schoolhouse rock preamble u constitution
+0,"40000 boy scouts boo barack obama‚go crazy‚chant ‚we love trump‚ during president trump‚s visit to national scout jamboree""",boy scout boo barack obamago crazychant love trump president trump visit national scout jamboree
+1,eu: spot checks show confusion not conspiracy in kenyan election,eu spot check show confusion conspiracy kenyan election
+1,catalonia will apply referendum law calling for independence declaration: leader,catalonia apply referendum law calling independence declaration leader
+1,chance of 'no deal' brexit rises to 1-in-4: jpmorgan,chance deal brexit rise jpmorgan
+1,u.n. chief warns myanmar violence could destabilize region,un chief warns myanmar violence could destabilize region
+1,venezuela defends rights record at u.n. says opposition 'back on path of rule of law',venezuela defends right record un say opposition back path rule law
+1,china's xi says brics countries should deepen coordination quicken reform of global economic governance,china xi say brics country deepen coordination quicken reform global economic governance
+0,breaking: wikileaks e-mails: soros and clinton working together on ‚police reform‚ and blm‚remember ‚implicit bias‚?,breaking wikileaks email soros clinton working together police reform blmremember implicit bias
+0,community agitator in chief warns republicans: ‚we don‚t need inflammatory rhetoric‚,community agitator chief warns republican dont need inflammatory rhetoric
+1,kyrgyzstan in talks on hosting second russian military base: pm to agency,kyrgyzstan talk hosting second russian military base pm agency
+1,grizzly miss-steppe: how washington post rewrote its fake news story on ‚russian hack‚ of vermont power grid,grizzly misssteppe washington post rewrote fake news story russian hack vermont power grid
+1,brazilian police raid home of farm minister in graft probe,brazilian police raid home farm minister graft probe
+0,here‚s a perfect example of why people don‚t trust muslims living in their communities,here perfect example people dont trust muslim living community
+1,nz kingmaker calls for inquiry over china spy report,nz kingmaker call inquiry china spy report
+0,b*tch of benghazi wins democrat nomination‚ i‚m encouraged by extraordinary conviction‚ of her supporters,btch benghazi win democrat nomination im encouraged extraordinary conviction supporter
+1,arrested u.s. consulate worker in turkey will meet lawyer on friday: minister,arrested u consulate worker turkey meet lawyer friday minister
+1,brazil police suspect temer aides involved in corruption,brazil police suspect temer aide involved corruption
+1,armed faction takes over protection of libyan oil and gas complex fresh concern over migrants,armed faction take protection libyan oil gas complex fresh concern migrant
+1,u.n. chief condemns n.korea nuclear test says it is 'profoundly destabilizing',un chief condemns nkorea nuclear test say profoundly destabilizing
+0,breaking: angry black lives matter activist admits to starting massive la apartment complex fire as pay back for death of thug michael brown,breaking angry black life matter activist admits starting massive la apartment complex fire pay back death thug michael brown
+1,syrian rebels say u.s. allies push for retreat from southeast syria,syrian rebel say u ally push retreat southeast syria
+0,boiler room #105 ‚ quantum swamp chess,boiler room quantum swamp chess
+0,absolute submission: trump bows to neocon orthodoxy,absolute submission trump bow neocon orthodoxy
+0,flashback: florida couple nearly ‚forecloses‚ on bank of america,flashback florida couple nearly forecloses bank america
+0,lol! obama‚s radical epa chief says there was no ‚war on coal‚‚but oops‚that‚s not what the poster behind her says!,lol obamas radical epa chief say war coalbut oopsthats poster behind say
+1,"indonesia considers ban on ""destructive"" lgbt-related tv content",indonesia considers ban destructive lgbtrelated tv content
+1,new jakarta governor faces backlash for racially tinged speech,new jakarta governor face backlash racially tinged speech
+0,hollywood ‚has been‚ hypocrite danny devito tells america: ‚we are a bunch of racists‚ [video],hollywood hypocrite danny devito tell america bunch racist video
+0,mueller team uniform? ‚democratic donkey jerseys‚ and ‚i‚m with hillary t-shirts‚ says congressman,mueller team uniform democratic donkey jersey im hillary tshirts say congressman
+0,microsoft pulls new a.i. robot after it went on pro-hitler twitter rant,microsoft pull new ai robot went prohitler twitter rant
+0,muslim woman busted buying soda with food stamps for her store: ‚my name is f*ck america!‚ [video],muslim woman busted buying soda food stamp store name fck america video
+0,how the clinton foundation ripped off haiti‚stunning video that exposes america‚s most selfish couple,clinton foundation ripped haitistunning video expose america selfish couple
+1,pakistan militant group finds likely replacement after u.s. drone kills leader,pakistan militant group find likely replacement u drone kill leader
+0,would you like to live for free on a luxury cruise ship?‚you only have to be a muslim refugee to qualify,would like live free luxury cruise shipyou muslim refugee qualify
+0,boom! dodgers baseball radio legend drops a mid-game rant on socialism [video],boom dodger baseball radio legend drop midgame rant socialism video
+0,watch chuck schumer fake cry over muslim policy‚don‚t forget he voted to bomb libya killing thousands of muslims [video],watch chuck schumer fake cry muslim policydont forget voted bomb libya killing thousand muslim video
+0,us gov‚t war on rt: imperial media ‚truth‚ monopoly threatens press diversity,u govt war rt imperial medium truth monopoly threatens press diversity
+1,german conservative suggests job move for veteran finance min schaeuble,german conservative suggests job move veteran finance min schaeuble
+0,brilliant! liberal senator tries to embarrass priest‚gets schooled by him on climate change [video],brilliant liberal senator try embarrass priestgets schooled climate change video
+1,kyrgyzstan accuses kazakhstan of backing opposition presidential candidate,kyrgyzstan accuses kazakhstan backing opposition presidential candidate
+1,in call with saudi king trump urges end to qatar dispute: white house,call saudi king trump urge end qatar dispute white house
+0,pregnant chelsea clinton makes disturbing confession about why she left church at 6 years old,pregnant chelsea clinton make disturbing confession left church year old
+0,chicago trump rally cancelled: radicals and blm came out to riot against the free speech of anyone but them,chicago trump rally cancelled radical blm came riot free speech anyone
+1,armed force claims victory in libyan migrant smuggling hub,armed force claim victory libyan migrant smuggling hub
+0,charles barkley drops truth-bomb: blacks,charles barkley drop truthbomb black
+1,rajoy: spain will not be divided national unity will be preserved,rajoy spain divided national unity preserved
+0,ca democrats have solution to massive health care costs‚assisted suicide,ca democrat solution massive health care costsassisted suicide
+0,digital tabloids,digital tabloid
+1,brics countries deplore north korean nuclear test oppose protectionism: draft communique,brics country deplore north korean nuclear test oppose protectionism draft communique
+0,anyone who still supports hillary after they see this video should forfeit their right to vote,anyone still support hillary see video forfeit right vote
+0,sunday screening: psywar (2010),sunday screening psywar
+0,whoa! is george soros secretly funding jill stein‚s [hillary‚s] recount effort to steal the presidency from trump?,whoa george soros secretly funding jill stein hillary recount effort steal presidency trump
+0,breaking: wdbj killer was angry black democrat‚reprimanded for wearing obama sticker at work,breaking wdbj killer angry black democratreprimanded wearing obama sticker work
+1,heavy squalls with tornadoes from irma sweep south florida: nhc,heavy squall tornado irma sweep south florida nhc
+0,sunday screening: the deep state: hiding in plain sight (2014),sunday screening deep state hiding plain sight
+1,trump says puerto rico obliterated by hurricane maria,trump say puerto rico obliterated hurricane maria
+1,conservative plotters told to get behind uk's may amid brexit fears,conservative plotter told get behind uk may amid brexit fear
+1,soccer star weah leads most counties in liberia presidential election vote,soccer star weah lead county liberia presidential election vote
+0,toxic culture: ‚suicide (skank) squad‚ film,toxic culture suicide skank squad film
+0,black men for bernie founder campaigns in swing states for trump: ‚bill and hillary did major damage to our communities last time in white house‚ [video],black men bernie founder campaign swing state trump bill hillary major damage community last time white house video
+0,why taxpayer funded food trucks plan to stalk kids this summer,taxpayer funded food truck plan stalk kid summer
+1,u.s. russia in extradition tug-of-war over bitcoin fraud suspect in greece,u russia extradition tugofwar bitcoin fraud suspect greece
+1,ryanair loses eu court battle to keep irish law for crew abroad,ryanair loses eu court battle keep irish law crew abroad
+0,tucker tries to reason with a crazy feminist inserting gender politics onto newborn care [video],tucker try reason crazy feminist inserting gender politics onto newborn care video
+0,watch tucker carlson‚s heated debate with delusional illegal activist: ‚i am here illegally . . . but i,watch tucker carlsons heated debate delusional illegal activist illegally
+1,u.s. intel official: no doubt north korea tested advanced device,u intel official doubt north korea tested advanced device
+0,mattel features boy in girly barbie commercial‚doing their part to help letists blur the gender lines [video],mattel feature boy girly barbie commercialdoing part help letists blur gender line video
+1,germany will await prosecution 'ok' before delivering israeli subs: spiegel,germany await prosecution ok delivering israeli sub spiegel
+0,fbi files revealed: valerie jarrett‚s family ties to communism run deep,fbi file revealed valerie jarretts family tie communism run deep
+0,conservative firebrand ann coulter destroys delta airlines on twitter for kicking her out of reserved seat,conservative firebrand ann coulter destroys delta airline twitter kicking reserved seat
+0,as predicted,predicted
+1,guatemala supreme court will not probe president's salary bonus,guatemala supreme court probe president salary bonus
+0,happy mother‚s day‚your first grader just rated your mommy skills for her public school teacher,happy mother dayyour first grader rated mommy skill public school teacher
+1,australia east timor reach agreement on maritime border,australia east timor reach agreement maritime border
+1,china busts underground bank in guangzhou: china daily,china bust underground bank guangzhou china daily
+1,casting crisis: orlando‚s actors,casting crisis orlando actor
+0,pope francis consulted psychoanalyst in 1970s: book,pope francis consulted psychoanalyst book
+1,after bloodshed venezuelan government and foes battle for votes,bloodshed venezuelan government foe battle vote
+1,three theories on why fbi‚s comey reopened clinton email probe‚why now?,three theory fbi comey reopened clinton email probewhy
+0,liberals attack rob lowe after he offers perfect solution for #nfl athletes disrespecting national anthem,liberal attack rob lowe offer perfect solution nfl athlete disrespecting national anthem
+0,watch! clueless anti-trump ‚protesters‚ asked why they‚re protesting give hysterical answers [video],watch clueless antitrump protester asked theyre protesting give hysterical answer video
+0,liz warren called out for crazy claim steve bannon is a ‚white supremacist‚ [video],liz warren called crazy claim steve bannon white supremacist video
+0,chevy chase admits to using position at snl to push democrats over republicans to millions of viewers,chevy chase admits using position snl push democrat republican million viewer
+0,while obama vacations and hands out a billion dollar gift to kenyans,obama vacation hand billion dollar gift kenyan
+1,world food programme cuts rations for refugees in kenya,world food programme cut ration refugee kenya
+0,bezos-owned washington post running pr for bezos-owned amazon ‚hq2‚,bezosowned washington post running pr bezosowned amazon hq
+1,sunnistan: us and allied ‚safe zone‚ plan to take territorial booty in northern syria,sunnistan u allied safe zone plan take territorial booty northern syria
+0,gunfight erupts: muslim migrants fight to keep minority christians out of camp in northern france,gunfight erupts muslim migrant fight keep minority christian camp northern france
+0,pilger interview: julian assange lifts the veil on hillary clinton and the globalist conspiracy,pilger interview julian assange lift veil hillary clinton globalist conspiracy
+1,mattis says iran 'fundamentally' in compliance with nuclear deal,mattis say iran fundamentally compliance nuclear deal
+1,italian regions start pursuing greater autonomy in shadow of catalonia crisis,italian region start pursuing greater autonomy shadow catalonia crisis
+0,breaking news #portland : violent anti-trump terrorists caught on video destroying everything in their path [video],breaking news portland violent antitrump terrorist caught video destroying everything path video
+0,how hillary clinton has secured her husband‚s legacy as ‚a rapist‚ and hers as an ‚enabler‚ [video],hillary clinton secured husband legacy rapist enabler video
+1,uk's may urges eu to respond in kind to new tone on brexit talks,uk may urge eu respond kind new tone brexit talk
+0,radical leftist who dismissed charges against muslim terrorist shooter is potential supreme court nominee,radical leftist dismissed charge muslim terrorist shooter potential supreme court nominee
+0,wife of muslim immigrant screams: ‚f*ck america!‚ after husband is threatened with deportation for major food stamp fraud in ny [video],wife muslim immigrant scream fck america husband threatened deportation major food stamp fraud ny video
+1,uk's may signals foreign minister johnson could be sacked,uk may signal foreign minister johnson could sacked
+0,boiler room ‚ ep #58 ‚ lord of the pedo rings,boiler room ep lord pedo ring
+1,u.n. security council condemns excessive violence in myanmar,un security council condemns excessive violence myanmar
+1,eu should enforce rules to prevent vetoes on tax reforms: juncker,eu enforce rule prevent veto tax reform juncker
+0,watch relatives speak out after teen caught in robbery is shot and killed: ‚how he going to get his money to have clothes to go to school?‚,watch relative speak teen caught robbery shot killed going get money clothes go school
+1,iran says trump's u.n. remarks 'shameless ignorant': fars news agency,iran say trump un remark shameless ignorant far news agency
+0,breitbart‚s joel pollack brilliantly shuts down ‚the view‚ lunatics [video],breitbarts joel pollack brilliantly shuts view lunatic video
+0,cia claims of russian intervention in us election fall flat,cia claim russian intervention u election fall flat
+1,brussels steps up legal case against poland over courts overhaul,brussels step legal case poland court overhaul
+0,us thanksgiving guide: how to celebrate a sordid and genocidal history,u thanksgiving guide celebrate sordid genocidal history
+0,new evidence shows foul play,new evidence show foul play
+0,whoa! college snowflake freaks out: screams for two minutes over a trump sign on campus,whoa college snowflake freak scream two minute trump sign campus
+1,hungary calls eu court's refugee ruling 'appalling',hungary call eu court refugee ruling appalling
+0,spectacular! leftist media melts down when they realize america didn‚t buy their lies‚elected trump anyhow [video],spectacular leftist medium melt realize america didnt buy lieselected trump anyhow video
+0,watch as trump gatecrashes glenn beck‚s cruz caucus event in nevada,watch trump gatecrashes glenn beck cruz caucus event nevada
+0,can you hear him now? president trump doubles down: condemns ‚evil‚ kkk,hear president trump double condemns evil kkk
+1,iran saudi arabia to exchange diplomatic visits: iranian foreign minister,iran saudi arabia exchange diplomatic visit iranian foreign minister
+1,two women deny murdering north korean leader's half-brother,two woman deny murdering north korean leader halfbrother
+1,israeli jets break sound barrier in south lebanon causing damage,israeli jet break sound barrier south lebanon causing damage
+0,the demise of progressive democrats: ‚resist and submit,demise progressive democrat resist submit
+1,london police arrest woman after incident at prince george's school,london police arrest woman incident prince george school
+1,norway to appoint first woman foreign minister: reports,norway appoint first woman foreign minister report
+1,tokyo's koike reaches deal with opposition party ahead of japan poll,tokyo koike reach deal opposition party ahead japan poll
+1,factbox: trump on twitter (september 18) - cia u.n. macron netanyahu,factbox trump twitter september cia un macron netanyahu
+0,nancy pelosi screws up the oath of office while lecturing reporters on the seriousness of her job [video],nancy pelosi screw oath office lecturing reporter seriousness job video
+0,syrian refugee receives ridiculous sentence for trafficking 13 and 14-yr old girls while on bail for raping 17-yr old,syrian refugee receives ridiculous sentence trafficking yr old girl bail raping yr old
+1,swiss say to expel two tunisians with link to marseille attacker,swiss say expel two tunisian link marseille attacker
+0,delegates for dummies: how they‚re awarded‚and how many your candidate needs to win [video],delegate dummy theyre awardedand many candidate need win video
+0,hilarious! #blacklivesmatter protest hillary at #dnc: carry ‚hillary,hilarious blacklivesmatter protest hillary dnc carry hillary
+1,qatar foreign minister: blockade pushing it closer to iran economically,qatar foreign minister blockade pushing closer iran economically
+1,trump praises turkey's erdogan as a friend,trump praise turkey erdogan friend
+1,kenya to charge opposition leader's sister with incitement to violence,kenya charge opposition leader sister incitement violence
+0,unreal! cnn panel laughs and mocks dr. ben carson over trump nomination [video],unreal cnn panel laugh mock dr ben carson trump nomination video
+0,why obama ignored murder by illegal alien in sanctuary city: you have never seen megyn kelly this mad before!,obama ignored murder illegal alien sanctuary city never seen megyn kelly mad
+1,u.s. treasury sanctions 26 individuals nine banks over north korea,u treasury sanction individual nine bank north korea
+1,trump‚s first government agency visit: cia,trump first government agency visit cia
+0,video: the dallas shooting agenda,video dallas shooting agenda
+1,on visit to cartagena pope to honor 'slave of slaves' role model,visit cartagena pope honor slave slave role model
+1,trump revives keystone and dakota access pipelines,trump revives keystone dakota access pipeline
+0,wow! black dallas police sergeant sues obama,wow black dallas police sergeant sue obama
+1,as germans clip merkel's wings brussels braces for turbulence,german clip merkels wing brussels brace turbulence
+1,argentina judges seek detention of fernandez ally,argentina judge seek detention fernandez ally
+0,mother outraged over daughter being asked to arrive nude to exam by radical college prof whose past includes aiding illegals to cross border into us,mother outraged daughter asked arrive nude exam radical college prof whose past includes aiding illegals cross border u
+1,city of oxford strips aung san suu kyi of human rights award,city oxford strip aung san suu kyi human right award
+1,pope to see a medellin that has put drug wars in its past,pope see medellin put drug war past
+0,national security advisor calls out liberal press for fake news: ‚the story‚is false‚ [video],national security advisor call liberal press fake news storyis false video
+1,nafta envoys lay out proposals try to block trump noise,nafta envoy lay proposal try block trump noise
+1,canadian says child killed u.s. wife raped during afghan kidnapping,canadian say child killed u wife raped afghan kidnapping
+0,democrats caught paying halfway house patients $300 to vote for hillary [video],democrat caught paying halfway house patient vote hillary video
+1,cubans are heartbroken angry can't seek u.s. visas in havana,cuban heartbroken angry cant seek u visa havana
+1,the jerusalem decision: from creative chaos to effective turmoil,jerusalem decision creative chaos effective turmoil
+1,brazil's lula says party may field someone else in 2018,brazil lula say party may field someone else
+1,auditor says he was forced to quit vatican after finding irregularities,auditor say forced quit vatican finding irregularity
+1,swedish opposition party to call vote of no-confidence in pm,swedish opposition party call vote noconfidence pm
+1,german chinese leaders agree on need to tighten north korea sanctions,german chinese leader agree need tighten north korea sanction
+0,fake news week: truth,fake news week truth
+0,comey responds to firing‚what he said will make liberal heads explode,comey responds firingwhat said make liberal head explode
+0,breaking: wikileaks releases ‚vault 7‚ part 1 ‚ ‚year zero‚,breaking wikileaks release vault part year zero
+0,watch cnn host freak after on-air ‚fact-check‚ proves all 13 of hillary‚s mobile devices destroyed with hammers [video],watch cnn host freak onair factcheck prof hillary mobile device destroyed hammer video
+1,factbox: top agricultural exports vulnerable to irma,factbox top agricultural export vulnerable irma
+0,pro abortion pac,pro abortion pac
+1,london art auction raises $2.5 million for survivors of deadly grenfell tower blaze,london art auction raise million survivor deadly grenfell tower blaze
+1,france unveils labor reforms in first step to re-shaping economy,france unveils labor reform first step reshaping economy
+1,china enshrines 'xi jinping thought' key xi ally to step down,china enshrines xi jinping thought key xi ally step
+0,illegal aliens who lied to court,illegal alien lied court
+0,engdahl: ‚trump is a puppet of the deep state‚,engdahl trump puppet deep state
+0,nyc cop congratulates trump supporter for educating young girl on truth about communism‚‚facts hurt people‚s feelings‚ [video],nyc cop congratulates trump supporter educating young girl truth communismfacts hurt people feeling video
+1,pakistan ministry seeks ban on new party backed by prominent islamist,pakistan ministry seek ban new party backed prominent islamist
+1,swiss woman abducted in sudan by criminal gang for ransom: official,swiss woman abducted sudan criminal gang ransom official
+1,uk police release new image of jogger in london bus mystery,uk police release new image jogger london bus mystery
+0,georgetown university will track down,georgetown university track
+0,the real reason joe biden hasn‚t announced he‚s running yet: reliable investigative reporter shares the disturbing inside scoop,real reason joe biden hasnt announced he running yet reliable investigative reporter share disturbing inside scoop
+1,no decision yet on whether to go ahead with monday's catalan parliament session: speaker,decision yet whether go ahead monday catalan parliament session speaker
+0,the most corrupt woman in politics calls trumps success ‚pretend‚ [video],corrupt woman politics call trump success pretend video
+0,art contest winner disqualified for being a trump supporter‚what happened to the ‚tolerant‚ and ‚accepting‚ left?,art contest winner disqualified trump supporterwhat happened tolerant accepting left
+1,trump malaysian pm discuss trade deals boeing jets,trump malaysian pm discus trade deal boeing jet
+0,[video] rudy giuliani: ‚outrageous‚ beyonc√© gets police escort to super bowl‚uses halftime show to trash cops and promote racial tension,video rudy giuliani outrageous beyonc get police escort super bowluses halftime show trash cop promote racial tension
+0,boiler room ep #116 ‚ trigger gifs,boiler room ep trigger gifs
+1,german police arrest suspect over alleged supermarket extortion attempts,german police arrest suspect alleged supermarket extortion attempt
+0,hillary mentions support for country she and bill screwed‚starts coughing again‚‚it chokes me up‚ [video],hillary mention support country bill screwedstarts coughing againit choke video
+0,mind-blowing interactive map shows where muslim refugees are coming from and where they‚re going,mindblowing interactive map show muslim refugee coming theyre going
+1,factbox: about 6.1 million without power in u.s. southeast after irma: utilities,factbox million without power u southeast irma utility
+0,oops! donald trump‚s name missing from ballots in florida,oops donald trump name missing ballot florida
+0,wow! sara huckabee-sanders drops mother of all verbal bombs on media over hypocrisy on comey firing [video],wow sara huckabeesanders drop mother verbal bomb medium hypocrisy comey firing video
+0,hillary lies again‚she‚s not the first female presidential nominee ‚she‚s not even the first female communist nominee ‚here‚s proof,hillary lie againshes first female presidential nominee shes even first female communist nominee here proof
+1,erdogan urges u.s. to review 'political' charges against turkish ex-minister,erdogan urge u review political charge turkish exminister
+0,sean spicer hits lame cnn: ‚let‚s actually look at what cnn reported.‚ [video],sean spicer hit lame cnn let actually look cnn reported video
+1,trump urges 'strong and swift' u.n. action to end rohingya crisis,trump urge strong swift un action end rohingya crisis
+0,breaking: death for welfare leech and boston jihadist‚ jury gives muslim terrorist first class ticket to hell‚,breaking death welfare leech boston jihadist jury give muslim terrorist first class ticket hell
+1,fear of volcanic eruption on bali forces nearly 135000 to flee to shelters,fear volcanic eruption bali force nearly flee shelter
+0,steve jobs‚ widow announces support for ‚revolutionary‚ hillary on same day hillary‚s busted for faking this‚,steve job widow announces support revolutionary hillary day hillary busted faking
+0,[video] black two-time obama voter lashes out: ‚i got tricked,video black twotime obama voter lash got tricked
+1,segregation fans fears of fresh 'cleansing' in myanmar's rakhine,segregation fan fear fresh cleansing myanmar rakhine
+1,boiler room ‚ presidential debate simulcast special,boiler room presidential debate simulcast special
+0,factbox: irma vs andrew: how 2017's big hurricane compares with 1992,factbox irma v andrew big hurricane compare
+1,turkey will take its own security measures after russia defense deal: erdogan,turkey take security measure russia defense deal erdogan
+1,the 2016 presidential race: do our votes really matter?,presidential race vote really matter
+0,hell freezes over‚or does it? [video] hundreds of muslims in dearborn,hell freeze overor video hundred muslim dearborn
+0,wow! us marine and navy veteran writes blistering open letter to khizr khan: ‚does it matter whether mr. trump has ‚sacrificed‚? has ms. clinton ‚sacrificed‚ for this nation? how about mr. obama?‚,wow u marine navy veteran writes blistering open letter khizr khan matter whether mr trump sacrificed m clinton sacrificed nation mr obama
+0,germany kicking residents out to make way for refugees: nurse shocked after being kicked out of same flat for 16 years,germany kicking resident make way refugee nurse shocked kicked flat year
+0,watch ‚architect‚ of obamacare lie and spin his way out of taking responsibility for failure‚a real putz! [video],watch architect obamacare lie spin way taking responsibility failurea real putz video
+0,obama‚s illegals to get retro tax credits for time they worked in us illegally with no requirement to file,obamas illegals get retro tax credit time worked u illegally requirement file
+1,islamic state killed more than 60 dozens missing in syrian town: governor,islamic state killed dozen missing syrian town governor
+0,michelle,michelle
+1,u.n. security council to meet on north korea missile test on friday,un security council meet north korea missile test friday
+0,hidden order: was the death of justice scalia linked to ‚secret society‚ at cibolo ranch?,hidden order death justice scalia linked secret society cibolo ranch
+1,russia's lavrov and u.s. tillerson discuss syria: russia,russia lavrov u tillerson discus syria russia
+1,london's east croydon station to reopen after security check: police,london east croydon station reopen security check police
+0,boom! 4 venues cancel kathy griffin appearances after she blames trump for her career ending decision to pose with his severed head,boom venue cancel kathy griffin appearance blame trump career ending decision pose severed head
+1,philippines' duterte wants u.s. help in fighting drugs blames triads,philippine duterte want u help fighting drug blame triad
+1,u.s.-backed forces capture big gas field in syria's deir al-zor: senior commander,usbacked force capture big gas field syria deir alzor senior commander
+1,eyes on odinga as kenya election board ceo takes leave before vote,eye odinga kenya election board ceo take leave vote
+1,eu tells britain to protect data or delete them after brexit,eu tell britain protect data delete brexit
+1,germany should be proud of its ww2 soldiers far-right candidate says,germany proud ww soldier farright candidate say
+1,israel says it foiled planned isis-inspired attack at jerusalem holy site,israel say foiled planned isisinspired attack jerusalem holy site
+0,british man goes undercover,british man go undercover
+0,year in review: 2017 top ten conspiracies,year review top ten conspiracy
+1,eu's barnier says wants proposal from may on eu citizens' rights in britain,eu barnier say want proposal may eu citizen right britain
+0,family threatened at gunpoint for displaying confederate flag on private property‚police let suspect go [video],family threatened gunpoint displaying confederate flag private propertypolice let suspect go video
+0,funerals crowd cemetery of dead from massive mexico quake,funeral crowd cemetery dead massive mexico quake
+1,putin rues awarding u.s. top diplomat tillerson russian state honor,putin rue awarding u top diplomat tillerson russian state honor
+1,brexit negotiations not ready for next stage yet eu's tusk says,brexit negotiation ready next stage yet eu tusk say
+1,two arrested after french counter-terrorism raid near paris,two arrested french counterterrorism raid near paris
+1,merkel's conservatives tied with spd ahead of state vote: poll,merkels conservative tied spd ahead state vote poll
+1,google is the engine of censorship,google engine censorship
+0,leftist antifa attacks boston police‚shows their true colors in violent display against free speech [video],leftist antifa attack boston policeshows true color violent display free speech video
+0,conservative social media giant announces,conservative social medium giant announces
+1,france's cgt calls another strike against labor reform others refuse,france cgt call another strike labor reform others refuse
+1,fewer migrants entitled to join family in germany: study,fewer migrant entitled join family germany study
+1,japan's 'dennis rodman' ex-wrestler inoki urges lower tensions over north korea,japan dennis rodman exwrestler inoki urge lower tension north korea
+1,trump top defense officials discuss north korea options: white house,trump top defense official discus north korea option white house
+1,india's push to broaden use of its biometric database,india push broaden use biometric database
+1,most eu states push reform of labor rules sought by france's macron,eu state push reform labor rule sought france macron
+0,hillary scolds major contributors to terrorist groups‚doesn‚t mention they gave over $67 million to clinton slush fund,hillary scold major contributor terrorist groupsdoesnt mention gave million clinton slush fund
+0,[video] 16 yr old arrested for violent gang beating in mcdonalds‚15 yr old victim brags about new found fame,video yr old arrested violent gang beating mcdonalds yr old victim brag new found fame
+0,crybaby ‚safe space‚ students are put on notice with amazing letter from university president: ‚this is not a daycare!‚,crybaby safe space student put notice amazing letter university president daycare
+0,hillary clinton: ‚victory fund‚ gets massive cash injection from hedge fund management (soros),hillary clinton victory fund get massive cash injection hedge fund management soros
+0,breaking: michigan native kid rock announces he‚s running for us senate,breaking michigan native kid rock announces he running u senate
+1,may to pitch on brexit at eu summit dinner,may pitch brexit eu summit dinner
+0,while #unfithillary rests and parties with donors‚key swing state polls show trump‚s hard work is paying off,unfithillary rest party donorskey swing state poll show trump hard work paying
+1,factbox: quotes on suu kyi's handling of myanmar's rohingya crisis,factbox quote suu kyis handling myanmar rohingya crisis
+0,ep #9: patrick henningsen live ‚ ‚our western lands‚ with guest doyel shamley,ep patrick henningsen live western land guest doyel shamley
+1,pro-life license plate deemed ‚patently offensive‚ by federal appeals court,prolife license plate deemed patently offensive federal appeal court
+1,eu says wants clear brexit commitments from britain,eu say want clear brexit commitment britain
+0,donald trump jr. wrecks ‚fake indian‚ elizabeth warren on twitter‚conservatives cheer!,donald trump jr wreck fake indian elizabeth warren twitterconservatives cheer
+1,typhoon bears down on japan will hinder voting in national election,typhoon bear japan hinder voting national election
+1,u.s. citizen fighting for islamic state surrenders in syria: pentagon,u citizen fighting islamic state surrender syria pentagon
+1,catalonia's independence leader wages his own battle for unity,catalonia independence leader wage battle unity
+0,kellyanne conway shuts down abc news hack george stephanopoulos after he tries to convince viewers trump isn‚t legitimate president [video],kellyanne conway shuts abc news hack george stephanopoulos try convince viewer trump isnt legitimate president video
+1,lebanese court issues death sentence over 1982 gemayel assassination,lebanese court issue death sentence gemayel assassination
+0,mock assassination of donald trump sparks outrage at texas school,mock assassination donald trump spark outrage texas school
+0,listen to jeh johnson‚s bizarre reason we must remove confederate statues‚‚homeland security‚ threat? [video],listen jeh johnson bizarre reason must remove confederate statueshomeland security threat video
+1,u.s. navy recovers remains of all sailors missing after uss mccain collision,u navy recovers remains sailor missing us mccain collision
+0,communism 101: ca school district bans all drawings of religious figures‚what prompted the ban is even more disturbing,communism ca school district ban drawing religious figureswhat prompted ban even disturbing
+1,between berlin and bavaria: merkel's uneasy allies,berlin bavaria merkels uneasy ally
+0,jill stein claims recount is about possible foreign interference‚update: citizens petition to halt recount over evidence of foreigners donations to stein‚s recount [video],jill stein claim recount possible foreign interferenceupdate citizen petition halt recount evidence foreigner donation stein recount video
+1,taiwan premier resigns to help shore up president's falling popularity,taiwan premier resigns help shore president falling popularity
+0,illegal alien who murdered innocent woman was deported 3 times: obama‚s solution to increasing crime by illegals‚cut back on deportations,illegal alien murdered innocent woman deported time obamas solution increasing crime illegalscut back deportation
+1,cnn in a panic over assad success,cnn panic assad success
+1,huffington post waves white flag‚calls race for trump‚‚journalists‚ pack for canada,huffington post wave white flagcalls race trumpjournalists pack canada
+1,leftist babysitting service allows parents to riot,leftist babysitting service allows parent riot
+1,hurricane maria now category 4 puerto rico landfall within hours: nhc,hurricane maria category puerto rico landfall within hour nhc
+1,northern ireland: life inside the fountain,northern ireland life inside fountain
+0,shocker: washington post publishes oped critical of pro-israel law which shuts down bds,shocker washington post publishes oped critical proisrael law shuts bd
+1,casualties in explosion at airfield near kabul: u.s. military,casualty explosion airfield near kabul u military
+0,don‚t believe the polls! corruption exposed in phony nbc poll showing hillary beating trump by 11,dont believe poll corruption exposed phony nbc poll showing hillary beating trump
+1,top us spy agency refuses to endorse cia‚s ‚russian hacking‚ assessment due to ‚lack of evidence‚,top u spy agency refuse endorse cia russian hacking assessment due lack evidence
+0,two somali soldiers wounded in gun fight with fellow troops,two somali soldier wounded gun fight fellow troop
+1,britain's may to speak to u.s. president trump on north korea,britain may speak u president trump north korea
+1,mexico el salvador guatemala urge protections for u.s. 'dreamers',mexico el salvador guatemala urge protection u dreamer
+1,'where are the others?': somalia praises 'genuine brother' turkey for bombs response,others somalia praise genuine brother turkey bomb response
+0,black american on how i became a republican: ‚if you‚re voting‚ democrat,black american became republican youre voting democrat
+0,native american tribe will offer cash to schools to stop using indian mascots‚while 1 in 3 native americans live in poverty,native american tribe offer cash school stop using indian mascotswhile native american live poverty
+0,hillary‚s anti-trump muslim dad claims terror has ‚nothing to do with islam‚‚tries to convince americans trump‚s desire to protect us from terror is somehow evil [video],hillary antitrump muslim dad claim terror nothing islamtries convince american trump desire protect u terror somehow evil video
+0,breaking: screen shots of website show bulk discounts on aborted baby parts from planned parenthood partner,breaking screen shot website show bulk discount aborted baby part planned parenthood partner
+0,squeaky-clean zurich's trash department probed for dirty dealings,squeakyclean zurich trash department probed dirty dealing
+1,marseille attacker probably radicalized by brother: police,marseille attacker probably radicalized brother police
+1,britain must be clearer on brexit divorce bill: dutch pm,britain must clearer brexit divorce bill dutch pm
+1,pope to meet top buddhist monks in myanmar address military,pope meet top buddhist monk myanmar address military
+1,austrian chancellor's party sues foreign minister ahead of election,austrian chancellor party sue foreign minister ahead election
+0,parents furious after austrian teacher changes lyrics in christian hymn from ‚god‚s‚ to ‚allah‚s‚ love is so great,parent furious austrian teacher change lyric christian hymn god allah love great
+0,muslim democrat woman is asked how she feels about trump‚s presidency: ‚if arab countries can ban muslim brotherhood why can‚t we?‚,muslim democrat woman asked feel trump presidency arab country ban muslim brotherhood cant
+0,two illegal aliens to become first appointed city commissioners: hope to create more opportunities for illegals,two illegal alien become first appointed city commissioner hope create opportunity illegals
+1,democrats won‚t have a chance in 2018 unless they start to do this,democrat wont chance unless start
+1,japan's suga: government strongly protests latest n korea missile launch,japan suga government strongly protest latest n korea missile launch
+1,on the inside: ex-goldman sachs partner tapped for us treasury ‚ joined by rothschild linked commerce secretary pick,inside exgoldman sachs partner tapped u treasury joined rothschild linked commerce secretary pick
+0,rosie o‚donnell thinks martial law is in order to prevent a trump presidency,rosie odonnell think martial law order prevent trump presidency
+1,kurds block iraqi forces' access to kirkuk oil fields; iran shuts border crossings,kurd block iraqi force access kirkuk oil field iran shuts border crossing
+1,eu's top diplomat defends iran deal after trump speech,eu top diplomat defends iran deal trump speech
+0,breaking news: shooter ambushes gop congressmen‚one congressman,breaking news shooter ambush gop congressmenone congressman
+0,guess who we spotted in the vip section at a clinton rally? hillary‚s campaign couldn‚t get any creepier,guess spotted vip section clinton rally hillary campaign couldnt get creepier
+1,turkey criticizes german 'populism' after merkel shift on eu membership,turkey criticizes german populism merkel shift eu membership
+0,lefty stunt backfires: inflatable ‚trump chicken‚ is a huge hit: ‚i found my spirit animal!‚,lefty stunt backfire inflatable trump chicken huge hit found spirit animal
+0,facebook‚s ceo threatens employees to not express views that oppose his: stop replacing ‚black‚ with ‚all‚ lives matter,facebooks ceo threatens employee express view oppose stop replacing black life matter
+0,hawks double down,hawk double
+1,at least six die during colombia protest over coca crop removal,least six die colombia protest coca crop removal
+0,[video] us veteran finds flag he carrired on tour desecrated in front yard,video u veteran find flag carrired tour desecrated front yard
+1,germany lauds anti-nuclear campaign winning nobel peace prize,germany lauds antinuclear campaign winning nobel peace prize
+1,russia accuses u.s.-led coalition of 'barbaric' bombing of syria's raqqa,russia accuses usled coalition barbaric bombing syria raqqa
+0,best tweet of the day,best tweet day
+1,missing details: orlando shooting 911 transcripts questioned,missing detail orlando shooting transcript questioned
+0,mooch says black kids aren‚t as welcome in museums as white kids,mooch say black kid arent welcome museum white kid
+0,hispanic parents make shocking video teaching 3 yr old to say ‚we have to kill donald trump‚,hispanic parent make shocking video teaching yr old say kill donald trump
+0,shocking video: muslim child bride forced to wed man 20 years older‚you won‚t believe what he trades for her! [video],shocking video muslim child bride forced wed man year olderyou wont believe trade video
+1,facebook to overhaul political ads after threat of u.s. regulation,facebook overhaul political ad threat u regulation
+0,busted! craigslist ad exposes rent-a-mob for phoenix anti-trump thugs,busted craigslist ad expose rentamob phoenix antitrump thug
+0,the woman who moved freedom loving americans to tears with her passionate irs testimony is now asking for our help,woman moved freedom loving american tear passionate irs testimony asking help
+1,at least 19 drown when boat capsizes in northern india: police,least drown boat capsizes northern india police
+0,pa restaurant forced to close after ice sweep nabs illegal workers‚attorney for illegals has unbelievable response,pa restaurant forced close ice sweep nabs illegal workersattorney illegals unbelievable response
+1,cambodia's detained opposition leader denies treason charges,cambodia detained opposition leader denies treason charge
+0,michelle obama to hillary: ‚if you can‚t run your own house‚you certainly can‚t run the white house‚ [video],michelle obama hillary cant run houseyou certainly cant run white house video
+0,valerie jarrett discusses possibility of michelle obama‚s run for office with msnbc media ally,valerie jarrett discusses possibility michelle obamas run office msnbc medium ally
+1,reckless: democratic party creating a ‚russian scarecrow‚ in us media & politics,reckless democratic party creating russian scarecrow u medium politics
+1,uk pm may says brexit talks have been at times tough but made progress,uk pm may say brexit talk time tough made progress
+1,two u.s. b-1 bombers conduct training mission in vicinity of sea of japan,two u b bomber conduct training mission vicinity sea japan
+1,quake pitches past into present in scarred mexico city district,quake pitch past present scarred mexico city district
+1,eu rebuffs british pm may demands more concessions on brexit,eu rebuff british pm may demand concession brexit
+1,uk government softens immigration rules for grenfell fire survivors,uk government softens immigration rule grenfell fire survivor
+0,obama‚s epa gestapo to skip hearing on co mine,obamas epa gestapo skip hearing co mine
+1,the white house and the theatrics of ‚gun control‚,white house theatrics gun control
+0,melania trump in rare one-on-one interview: watch her destroy leftist msnbc hack on immigration‚‚i followed the law!‚,melania trump rare oneonone interview watch destroy leftist msnbc hack immigrationi followed law
+1,locked in power struggle congo army and militia massacred hundreds: report,locked power struggle congo army militia massacred hundred report
+1,'red scare' puts pressure on indonesian president,red scare put pressure indonesian president
+0,oh boy! target customers respond to the new gender neutral toy labeling,oh boy target customer respond new gender neutral toy labeling
+0,report: president trump is ‚odds-on favorite to win re-election‚ in 2020,report president trump oddson favorite win reelection
+0,awesome! hispanic trump supporter rips into pro-sanctuary city officials: ‚i‚m a hard core trump supporter‚ [video],awesome hispanic trump supporter rip prosanctuary city official im hard core trump supporter video
+0,dartmouth #blacklivesmatter terrorists tear down memorial to slain police officers because‚‚white supremacy‚,dartmouth blacklivesmatter terrorist tear memorial slain police officer becausewhite supremacy
+1,china's ruling party expels anti-graft ex-insurance officials citing graft,china ruling party expels antigraft exinsurance official citing graft
+0,what is the deep state?,deep state
+1,russia expresses deep concern about north korea nuclear test,russia express deep concern north korea nuclear test
+1,trumpdom: the curious world of trump‚s foreign policy explained,trumpdom curious world trump foreign policy explained
+1,boiler room #65 ‚ bernie says vote neocon ‚ pokemon no!,boiler room bernie say vote neocon pokemon
+0,flashback: chilling ‚60 minutes‚ interview with george soros nearly 20 years ago,flashback chilling minute interview george soros nearly year ago
+1,james comey‚s legacy: blaming russia rather than saudi arabia and israel,james comeys legacy blaming russia rather saudi arabia israel
+0,my favorite excuses‚featuring hillary rotten clinton [video],favorite excusesfeaturing hillary rotten clinton video
+0,caught on camera: multiple attacks against olympic tourists by brazen thugs in broad daylight in rio di janeiro,caught camera multiple attack olympic tourist brazen thug broad daylight rio di janeiro
+1,former leader of germany's far-right kicks off new 'blue party',former leader germany farright kick new blue party
+0,tim allen uses ‚last man standing‚ episode to mock censorship of speech by snowflake college students‚and it‚s hilarious! [video],tim allen us last man standing episode mock censorship speech snowflake college studentsand hilarious video
+0,shocking report: 50% of babies in 24 states born via medicaid‚is your state on the list?,shocking report baby state born via medicaidis state list
+0,he gave us this warning only 67 years ago‚everyone thought he was crazy,gave u warning year agoeveryone thought crazy
+0,feds: dozens of muslim girls had genitals mutilated at michigan clinic‚the landmark defense is shocking,fed dozen muslim girl genitals mutilated michigan clinicthe landmark defense shocking
+0,osu diversity officer sympathizes with terrorist student‚shames students for sharing his picture‚told them not to share her post,osu diversity officer sympathizes terrorist studentshames student sharing picturetold share post
+1,philippine president's son denies links to $125-million drug shipment,philippine president son denies link million drug shipment
+0,wow! whistleblower tells chilling story of massive voter fraud: trump campaign readies lawsuit against fl sec of elections in critical district [video],wow whistleblower tell chilling story massive voter fraud trump campaign ready lawsuit fl sec election critical district video
+1,weeks after row over academic articles china says imported publications must be legal,week row academic article china say imported publication must legal
+0,awesome! street artist sabo targets hollywood liberals with trump ‚24‚ spoof posters,awesome street artist sabo target hollywood liberal trump spoof poster
+0,eric trump schools liberal hack stephanopoulos with facts‚fantastic! [video],eric trump school liberal hack stephanopoulos factsfantastic video
+0,arrested: muslim us army vet charged with plotting terror attack in us on behalf of isis,arrested muslim u army vet charged plotting terror attack u behalf isi
+0,american university hires former islamic terror recruiter: ‚i trust him‚ [video],american university hire former islamic terror recruiter trust video
+1,jailed british-iranian charity worker faces new charges: family,jailed britishiranian charity worker face new charge family
+0,revealed: the dark agenda behind globalization and open borders,revealed dark agenda behind globalization open border
+0,fbi director comey‚s ‚leaked‚ memo explains why he‚s reopening the clinton email case,fbi director comeys leaked memo explains he reopening clinton email case
+1,in schools and hospitals turkey carves north syria role,school hospital turkey carves north syria role
+1,hillary clinton: ‚israel first‚ (and no peace for middle east),hillary clinton israel first peace middle east
+0,watch a shocking view of a woman‚s life under sharia law‚women‚s march organizer is pro-sharia law! [video],watch shocking view woman life sharia lawwomens march organizer prosharia law video
+1,shot and dumped by a pigsty: a schoolboy killed in philippines drugs war,shot dumped pigsty schoolboy killed philippine drug war
+0,sewer worker dies after muslim doctors refuse to help him,sewer worker dy muslim doctor refuse help
+1,saudi prince lectures america on democracy,saudi prince lecture america democracy
+1,khamenei says iran will 'shred' nuclear deal if u.s. quits it,khamenei say iran shred nuclear deal u quits
+0,julian assange ‚ ‚everything that he has said,julian assange everything said
+0,high school teacher asks students to ‚pretend you are a muslim‚,high school teacher asks student pretend muslim
+1,u.s. to send over 3000 troops to afghanistan: mattis,u send troop afghanistan mattis
+0,with 7.4 million without power utility workers get respect,million without power utility worker get respect
+1,india using chilli sprays stun grenades to dissuade rohingya influx,india using chilli spray stun grenade dissuade rohingya influx
+0,violent democrats punch and harass trump supporters‚burn flags at fundraiser [video],violent democrat punch harass trump supportersburn flag fundraiser video
+1,slovenian president pahor fails to win majority faces runoff,slovenian president pahor fails win majority face runoff
+1,myanmar protesters try to block aid shipment to muslim rohingya,myanmar protester try block aid shipment muslim rohingya
+0,mn: somali man rapes college student‚gets 90-days in jail‚allowed to leave scene of crime without arrest by somali officer,mn somali man rape college studentgets day jailallowed leave scene crime without arrest somali officer
+1,britain will suffer from brexit more than eu: german minister,britain suffer brexit eu german minister
+1,militants attack somali military base kill at least 15,militant attack somali military base kill least
+1,putin's proposed u.n. ukraine peacekeepers must have full access: merkel,putin proposed un ukraine peacekeeper must full access merkel
+0,boiler room #90 ‚ downtown brown and the loss & curse of celebrity,boiler room downtown brown loss curse celebrity
+1,mexico temporarily suspends operations at key refinery after quake,mexico temporarily suspends operation key refinery quake
+1,islamic state's baghdadi in undated audio urges militants to keep fighting,islamic state baghdadi undated audio urge militant keep fighting
+1,china says sanctions won't help as trump targets venezuela,china say sanction wont help trump target venezuela
+0,this isn‚t obama‚s america anymore! women‚s march leader,isnt obamas america anymore womens march leader
+1,south korea police seek arrest warrant for hanjin group chief,south korea police seek arrest warrant hanjin group chief
+0,awesome rant by african-american woman who‚s fed up: ‚sanctuary cities are racist!‚,awesome rant africanamerican woman who fed sanctuary city racist
+1,abe moon to seek chinese russian support for north korea sanctions: kyodo,abe moon seek chinese russian support north korea sanction kyodo
+1,scrapped malaysian beer festival faced threat from militants police say,scrapped malaysian beer festival faced threat militant police say
+0,trump bares himself at unga,trump bares unga
+0,holy muslim indoctrination! sesame street introduces hijab wearing muppet,holy muslim indoctrination sesame street introduces hijab wearing muppet
+1,turkey's erdogan says u.s. decision to suspend visa services 'upsetting',turkey erdogan say u decision suspend visa service upsetting
+1,iran's guards say missile programme will accelerate despite pressure,iran guard say missile programme accelerate despite pressure
+0,trump tells state department to make cut more than 50% of funding to u.n.,trump tell state department make cut funding un
+1,collapsing: why the ‚russia hack‚ witch hunt will not end well for congress,collapsing russia hack witch hunt end well congress
+1,taiwan to allow visa-free entry for visitors from philippines,taiwan allow visafree entry visitor philippine
+1,turkey's erdogan blames u.s. envoy for diplomatic crisis,turkey erdogan blame u envoy diplomatic crisis
+1,illinois man charged with kidnapping death of chinese scholar,illinois man charged kidnapping death chinese scholar
+1,new survey shows no.1 fear of us citizens is government not terrorism,new survey show fear u citizen government terrorism
+0,breaking: peter w. smith,breaking peter w smith
+1,tensions talks courts: three scenarios for spain-catalonia stand-off,tension talk court three scenario spaincatalonia standoff
+0,as guns fall silent benghazi residents return to battered homes,gun fall silent benghazi resident return battered home
+1,putin on phone with south korean president about north korea: kremlin,putin phone south korean president north korea kremlin
+1,thai university removes student leader for defying royalist tradition,thai university remove student leader defying royalist tradition
+1,chances of 'no deal' brexit not rising says uk's hammond,chance deal brexit rising say uk hammond
+1,france to discuss possible new rafale sale with egypt's al-sisi: le maire,france discus possible new rafale sale egypt alsisi le maire
+1,a rare look inside the 'heart of society' for iraq's shi'ites,rare look inside heart society iraq shiite
+1,germany's fdp does not expect coalition to form before christmas,germany fdp expect coalition form christmas
+0,meet conservative muslim steve bannon hired for key position at breitbart: only thing left knows are ‚smears,meet conservative muslim steve bannon hired key position breitbart thing left know smear
+0,megyn kelly reportedly not very popular with fox staff‚book sales are ‚biggest loser since hillary clinton‚s book [hard choices]‚,megyn kelly reportedly popular fox staffbook sale biggest loser since hillary clinton book hard choice
+0,critically wounded gop rep. steve scalise stood by trump when others deserted him‚recently made adorable birthday video message with trump for his daughter [video],critically wounded gop rep steve scalise stood trump others deserted himrecently made adorable birthday video message trump daughter video
+1,open society: soros-backed,open society sorosbacked
+0,"laws are for the common man‚not for barry soetoro: obama gives work permits to 2000 after judge ordered him to stop""",law common mannot barry soetoro obama give work permit judge ordered stop
+0,excluding whites is not racist: racist,excluding white racist racist
+0,unbelievable! vintage video exposes racist first family: michelle obama‚s mom says barack‚s mixed race ‚didn‚t concern me as much as if he was completely white‚,unbelievable vintage video expose racist first family michelle obamas mom say baracks mixed race didnt concern much completely white
+0,texas church shooter: years before ‚soft target‚ attack,texas church shooter year soft target attack
+1,venezuela leader thanks hostile trump for making him 'famous',venezuela leader thanks hostile trump making famous
+0,lol! democrat congressman says best way to fight ‚fake news‚ is to watch msnbc [video],lol democrat congressman say best way fight fake news watch msnbc video
+0,clinton‚s beg for cash as foundation‚s ability to peddle influence has been undermined by trump and russian hackers‚lol!,clinton beg cash foundation ability peddle influence undermined trump russian hackerslol
+1,bodybuilder dies after celebrity muay thai match with ex-singapore idol contestant,bodybuilder dy celebrity muay thai match exsingapore idol contestant
+1,french businesses seek clarity on iran nuclear deal,french business seek clarity iran nuclear deal
+1,"international red cross to ""drastically"" cut afghan operations after attacks",international red cross drastically cut afghan operation attack
+1,florida cites complaints over chevron gas prices as shortages mount,florida cite complaint chevron gas price shortage mount
+0,nc teacher signs up first graders for black lives matter protest with no consent,nc teacher sign first grader black life matter protest consent
+1,iraqi pm rebuffs u.s. decree that ‚foreign shia militias‚ should leave country,iraqi pm rebuff u decree foreign shia militia leave country
+1,philippines' duterte says no peace talks without communists' ceasefire,philippine duterte say peace talk without communist ceasefire
+0,watch nancy pelosi say she‚s ‚heartbroken over death‚ of rep. steve scalise,watch nancy pelosi say shes heartbroken death rep steve scalise
+1,irish postage stamp homage to che guevara stokes criticism,irish postage stamp homage che guevara stokes criticism
+0,chilling: how america looks after 8 long years with an anti-american president,chilling america look long year antiamerican president
+0,hillary appears wearing ‚anti-seizure‚ sunglasses (again) in memorial day parade,hillary appears wearing antiseizure sunglass memorial day parade
+1,citibanamex lowers mexico 2017 gdp to 1.9 percent due to quake,citibanamex lower mexico gdp percent due quake
+0,wow! is sean hannity‚s job with fox news in jeopardy over seth rich investigation?,wow sean hannitys job fox news jeopardy seth rich investigation
+1,the corporate plantation: ncaa college sports oligopoly,corporate plantation ncaa college sport oligopoly
+0,long time democrats,long time democrat
+1,around 30 people injured in swiss train collision: police,around people injured swiss train collision police
+0,racist congresswoman maxine waters won‚t rule out an ‚all-black political party‚‚black people aren‚t ‚strong enough‚ yet to form their own party,racist congresswoman maxine water wont rule allblack political partyblack people arent strong enough yet form party
+0,so stupid it hurts: [video] nyc jogger threatens dad with stroller for bumping into him‚accuses him of ‚white privilege‚‚there‚s only one problem‚,stupid hurt video nyc jogger threatens dad stroller bumping himaccuses white privilegetheres one problem
+1,islamic state flags not flying in bosnia: pm,islamic state flag flying bosnia pm
+0,chick-fil-a caves to gay mafia and does unthinkable in new nyc store,chickfila cave gay mafia unthinkable new nyc store
+1,kenyan opposition chief to focus on corruption in election re-run,kenyan opposition chief focus corruption election rerun
+0,what will happen to your guns under president trump?,happen gun president trump
+0,nordstrom stock takes nosedive after trump tweets about their decision to discontinue ivanka‚s brand,nordstrom stock take nosedive trump tweet decision discontinue ivankas brand
+0,how voting for trump will help america to export our trash [video],voting trump help america export trash video
+1,taliban kill at least 43 afghan troops as they storm base: officials,taliban kill least afghan troop storm base official
+1,brutal myanmar army operation aimed at preventing rohingya return: u.n,brutal myanmar army operation aimed preventing rohingya return un
+1,spaniards use national holiday to show unity amid catalan crisis,spaniard use national holiday show unity amid catalan crisis
+0,anti-government chants ring out on anniversary of ethiopian festival deaths,antigovernment chant ring anniversary ethiopian festival death
+1,czech election winner babis calls minority government 'unrealistic',czech election winner babis call minority government unrealistic
+1,german parties in coalition talks agree on no new debt,german party coalition talk agree new debt
+0,tomi lahren takes a hammer to hillary: the ‚most competent woman in history‚ doesn‚t know what ‚c‚ means? [video],tomi lahren take hammer hillary competent woman history doesnt know c mean video
+0,wow! black power political organization takes credit for dallas cop slayings,wow black power political organization take credit dallas cop slaying
+0,cnn fake news vs real news: first images of abandoned terrorist facilities in east aleppo,cnn fake news v real news first image abandoned terrorist facility east aleppo
+1,pope orthodox leader make climate change appeal to 'heal wounded creation',pope orthodox leader make climate change appeal heal wounded creation
+1,rebels close in on east congo city amid gunfire,rebel close east congo city amid gunfire
+0,is jade helm 15 really about martial law? texas ranger relays what he saw inside military trains,jade helm really martial law texas ranger relay saw inside military train
+1,china tightens control of chat groups ahead of party congress,china tightens control chat group ahead party congress
+1,iran sends tanks to border with iraq's kurdish region kurdish official says,iran sends tank border iraq kurdish region kurdish official say
+1,democrats in congress brace for new iran nuclear fight,democrat congress brace new iran nuclear fight
+0,class act! watch the today show‚s matt lauer get shot down by trump‚s friend new england patriots owner bob craft [video],class act watch today show matt lauer get shot trump friend new england patriot owner bob craft video
+0,nsa ‚ ‚top secret‚ arsenal released in protest of ‚trump betrayal‚,nsa top secret arsenal released protest trump betrayal
+1,turkish asylum applications in germany jump 55 percent this year,turkish asylum application germany jump percent year
+1,u.s. commerce secretary wants nafta autos content above 70 percent: union chief,u commerce secretary want nafta auto content percent union chief
+0,obama‚s dream team: illegal alien drug dealers suspected of killing innocent woman sleeping in apt below illegals [video],obamas dream team illegal alien drug dealer suspected killing innocent woman sleeping apt illegals video
+0,breaking updates: 5th dallas police officer has died‚sniper dead from self-inflicted gun shot‚first dead police officer identified‚‚person of interest‚ is released after questioning,breaking update th dallas police officer diedsniper dead selfinflicted gun shotfirst dead police officer identifiedperson interest released questioning
+0,why donald j. trump is the only one who can defeat an anti-american party that‚s gone unopposed for 50 years¬†,donald j trump one defeat antiamerican party thats gone unopposed year
+0,episode #203 ‚ sunday wire: ‚the dotard effect‚ with guests mike robinson,episode sunday wire dotard effect guest mike robinson
+1,georgian president reluctantly signs new constitution into law,georgian president reluctantly sign new constitution law
+1,germany extends passport controls on austrian border flights from greece,germany extends passport control austrian border flight greece
+1,merkel ally cites thousands of cyber attacks from russian ip addresses,merkel ally cite thousand cyber attack russian ip address
+1,duterte invites u.n. rights body to open philippine office as drug killings climb,duterte invite un right body open philippine office drug killing climb
+0,is the washington post waging a ‚media war‚ on president trump?,washington post waging medium war president trump
+0,breaking: flag dragging protester who rushed stage at trump rally has ties to isis,breaking flag dragging protester rushed stage trump rally tie isi
+0,realist perspective: president trump,realist perspective president trump
+0,humiliating: democrats use russian warships as backdrop for tribute to u.s. veterans at dnc,humiliating democrat use russian warship backdrop tribute u veteran dnc
+0,when diversity trumps all: bishop of london suggests vicars should reach out to muslims by making this major change in their appearance,diversity trump bishop london suggests vicar reach muslim making major change appearance
+1,vatican prepared in case of barcelona-style attack: swiss guard chief,vatican prepared case barcelonastyle attack swiss guard chief
+0,how a simple glass of water could expose the truth about hillary‚s serious health issues and cause her to lose the election [video],simple glass water could expose truth hillary serious health issue cause lose election video
+1,trying to reset agenda uk's may sets out to tackle social injustice,trying reset agenda uk may set tackle social injustice
+0,dnc chair pulls tired race card: claims ‚racism‚ and ‚voter suppression‚ in gop playbook [video],dnc chair pull tired race card claim racism voter suppression gop playbook video
+0,selfie of muslim woman making peace sign goes viral‚twitter account shows she‚s not really so peaceful,selfie muslim woman making peace sign go viraltwitter account show shes really peaceful
+1,lithuania gets minority government as junior partner leaves,lithuania get minority government junior partner leaf
+0,breaking: liberal media‚s worst nightmare comes true‚kellyanne conway lands top position on trump‚s team,breaking liberal medias worst nightmare come truekellyanne conway land top position trump team
+0,devastating 30 second commercial shows scary truth about target‚s dangerous open door bathroom policy [video],devastating second commercial show scary truth target dangerous open door bathroom policy video
+1,britain eu have very different legal stances on brexit bill: uk minister,britain eu different legal stance brexit bill uk minister
+1,tillerson russia's lavrov to meet on sunday: u.s. state dept,tillerson russia lavrov meet sunday u state dept
+0,post-trump liberal meltdown: counseling,posttrump liberal meltdown counseling
+1,japan airlines plane makes emergency landing in tokyo,japan airline plane make emergency landing tokyo
+1,kurdish forces withdraw to june 2014 lines: iraqi army commander,kurdish force withdraw june line iraqi army commander
+1,turkey blocks access from northern iraq at habur border gate: ntv,turkey block access northern iraq habur border gate ntv
+1,russia condemns north korea nuclear tests: agencies,russia condemns north korea nuclear test agency
+1,juncker announces new code of conduct for eu executive members,juncker announces new code conduct eu executive member
+1,factbox - german coalition agreeing on lowest common denominator not enough - greens,factbox german coalition agreeing lowest common denominator enough green
+1,russia says islamic state operates near u.s base in syria unhindered,russia say islamic state operates near u base syria unhindered
+1,swiss war crimes inquiry into assad's uncle stalled rights group says,swiss war crime inquiry assads uncle stalled right group say
+0,hillary supporter mark cuban makes most ignorant statement about trump since election when he claimed stock market would tank [video],hillary supporter mark cuban make ignorant statement trump since election claimed stock market would tank video
+1,tunisia's new government gets party backing for reform push,tunisia new government get party backing reform push
+1,factbox: what trump has said about the united nations,factbox trump said united nation
+1,north korea says more sanctions will spur it to hasten nuclear plans,north korea say sanction spur hasten nuclear plan
+1,spain steps up security at catalan airports rail stations: source,spain step security catalan airport rail station source
+1,factbox: raqqa - battle for islamic state's syrian hq near end,factbox raqqa battle islamic state syrian hq near end
+0,hollywood ‚actress‚ lena dunham: i ‚haven‚t had an abortion,hollywood actress lena dunham havent abortion
+1,two weeks before 1980 election polls showed carter-47 vs reagan-39‚reagan won in landslide‚why trump will likely do the same,two week election poll showed carter v reaganreagan landslidewhy trump likely
+0,anti-trump protester‚s x-rated comment angers msnbc anchor: ‚grow the hell up!‚,antitrump protester xrated comment anger msnbc anchor grow hell
+1,iranian foreign minister urges regional cooperation after returning from oman qatar,iranian foreign minister urge regional cooperation returning oman qatar
+0,e.t. williams: ‚anti trump protesters,et williams anti trump protester
+1,gunman injures bodyguard of kenya's deputy chief justice,gunman injures bodyguard kenya deputy chief justice
+0,mn: mayoral candidate wants to disarm cops after muslim cop kills unarmed woman,mn mayoral candidate want disarm cop muslim cop kill unarmed woman
+0,breaking: trump announces ‚phenomenal‚ tax cut plan for businesses in next 2-3 weeks‚stock markets respond [video],breaking trump announces phenomenal tax cut plan business next weeksstock market respond video
+1,u.s.-backed sdf say attacked by russian jets in east syria,usbacked sdf say attacked russian jet east syria
+0,london marathon water station robbed by group of looters [video],london marathon water station robbed group looter video
+1,germany says putin move on u.n. peacekeepers in ukraine a 'step',germany say putin move un peacekeeper ukraine step
+1,japan pm says it's important to change north korea's policy through stronger pressure,japan pm say important change north korea policy stronger pressure
+1,bangladesh myanmar agree on 'working group' for refugee plan: minister,bangladesh myanmar agree working group refugee plan minister
+0,trey gowdy embarrasses gun-grabbing obama official in brilliant ‚gotcha‚ moment [video],trey gowdy embarrasses gungrabbing obama official brilliant gotcha moment video
+1,may confident of winning brexit deal that works for britain eu,may confident winning brexit deal work britain eu
+1,turkey weighing border air space measures over iraqi kurdish referendum: pm,turkey weighing border air space measure iraqi kurdish referendum pm
+1,exclusive: congo poised to see election pushed back to late 2018 - sources,exclusive congo poised see election pushed back late source
+1,kurds will find it hard to implement independence says iraqi foreign minister,kurd find hard implement independence say iraqi foreign minister
+0,episode #162 ‚ sunday wire: ‚the revolution will not be televised‚ with guest vanessa beeley,episode sunday wire revolution televised guest vanessa beeley
+0,what?! john mccain says rand paul is ‚working for putin‚,john mccain say rand paul working putin
+1,boiler room ep #76 ‚ resign,boiler room ep resign
+1,closely fought election to test kyrgyzstan's fragile stability,closely fought election test kyrgyzstan fragile stability
+1,say what? legally blind barber wins $100k in ‚discrimination‚ lawsuit against employer for wrongful termination,say legally blind barber win k discrimination lawsuit employer wrongful termination
+0,"fox news anchor shepard smith finally ‚comes out‚ admits he‚s gay""",fox news anchor shepard smith finally come admits he gay
+1,nigeria's buhari said he would not seek re-election in 2019: minister,nigeria buhari said would seek reelection minister
+1,britain backs libyan plans to work towards elections next year,britain back libyan plan work towards election next year
+1,egypt signs memo with china on $739 million of funding for new train to capital minister says,egypt sign memo china million funding new train capital minister say
+0,hurricane irma to become tropical storm on monday: nhc,hurricane irma become tropical storm monday nhc
+0,rush limbaugh furious trump is allowing ‚loser‚ democrats to use threat of government shut down to thwart funding for wall [listen],rush limbaugh furious trump allowing loser democrat use threat government shut thwart funding wall listen
+1,zimbabwe ruling party plans vote to strengthen mugabe's hand,zimbabwe ruling party plan vote strengthen mugabes hand
+1,kenya high court rules minor candidate should be on ballot for poll re-run,kenya high court rule minor candidate ballot poll rerun
+0,hillary exposed: watch uncovered video the hillary campaign does not want you to see,hillary exposed watch uncovered video hillary campaign want see
+1,yemen cholera cases could hit 1 million by year-end: red cross,yemen cholera case could hit million yearend red cross
+0,krispy kreme worker refuses to serve cop: ‚ i don‚t do the police‚,krispy kreme worker refuse serve cop dont police
+0,boiler room ep #128 ‚ ‚free speech‚ not without a war‚,boiler room ep free speech without war
+0,must see: house oversight committee releases most damning video of hillary‚s lies to date,must see house oversight committee release damning video hillary lie date
+0,the existential question of whom to trust,existential question trust
+1,while wealthy mexicans swamped by quake aid poor feel abandoned,wealthy mexican swamped quake aid poor feel abandoned
+1,leaders of venezuela's bruised opposition to travel abroad to denounce 'voting fraud',leader venezuela bruised opposition travel abroad denounce voting fraud
+1,exclusive: cambodian opposition leader calls for sanctions on leadership,exclusive cambodian opposition leader call sanction leadership
+1,factbox: over four million lose power in florida from irma utilities say,factbox four million lose power florida irma utility say
+0,chicago community organizers mobilize flash mobs to shut down trump campaign rally,chicago community organizer mobilize flash mob shut trump campaign rally
+0,rosie o‚donnell thinks martial law is in order to prevent a trump presidency,rosie odonnell think martial law order prevent trump presidency
+1,macron says there is eu 'consensus' for new reforms,macron say eu consensus new reform
+1,france condemns latest north korean missile launch,france condemns latest north korean missile launch
+0,sharia law grants muslim man permission to marry 8 year old [video],sharia law grant muslim man permission marry year old video
+1,roma seek luck and love at catholic shrine in hungary,rom seek luck love catholic shrine hungary
+0,democrat congresswoman,democrat congresswoman
+1,colombia's farc political party looks to coalition for 2018 elections,colombia farc political party look coalition election
+1,iraq sends delegation to iran 'to coordinate military efforts',iraq sends delegation iran coordinate military effort
+0,war hawk,war hawk
+1,pope arrives in colombia on mission to promote peace,pope arrives colombia mission promote peace
+0,time traveler nancy pelosi says she just can‚t work with‚president bush??? [video],time traveler nancy pelosi say cant work withpresident bush video
+1,merkel tries to build coalition after vote that puts far right in parliament,merkel try build coalition vote put far right parliament
+0,boiler room #66 ‚ globo-terror & the pokego-pocalypse,boiler room globoterror pokegopocalypse
+1,syrian opposition must accept it has not won the war: u.n.,syrian opposition must accept war un
+1,north korea sentences south korean reporters to death over review of book about country,north korea sentence south korean reporter death review book country
+0,flashback: two muslims living in us with criminal records attack gay med student in dc: if you were ‚in my country‚you‚d be stoned to death‚just like muhammad commanded‚ [video],flashback two muslim living u criminal record attack gay med student dc countryyoud stoned deathjust like muhammad commanded video
+1,turkey's border with northern iraq remains open for now minister says,turkey border northern iraq remains open minister say
+0,you be the judge: watch‚did obama put something in his eye to make it look like he was crying?,judge watchdid obama put something eye make look like cry
+0,islamic terrorist organization joins obama and friends to condemn trump‚s ‚no new muslim immigrants‚ position,islamic terrorist organization join obama friend condemn trump new muslim immigrant position
+0,"epic fail: anti-trump movement spent $75 million on 64000 ads""",epic fail antitrump movement spent million ad
+1,terror-tied group plans in-your-face parade float at tomorrow‚s veterans‚ day parade,terrortied group plan inyourface parade float tomorrow veteran day parade
+1,u.s. weighs whether to stay in iran nuclear deal,u weighs whether stay iran nuclear deal
+1,china is key to resolving north korean nuclear issue: uk defense minister,china key resolving north korean nuclear issue uk defense minister
+0,holy moly! rebel media uncovers illegal usa-canada ‚fake refugee‚ trafficking ring‚wait until you see who‚s vetting them! [video],holy moly rebel medium uncovers illegal usacanada fake refugee trafficking ringwait see who vetting video
+0,trump supporter whose brutal beating by black mob was caught on video asks: ‚what happened to america?‚ [video],trump supporter whose brutal beating black mob caught video asks happened america video
+0,collusion fusion: doj official‚s cia wife was hired to ‚research‚ trump,collusion fusion doj official cia wife hired research trump
+1,trump says he is deeply disturbed by south sudan congo violence,trump say deeply disturbed south sudan congo violence
+0,breaking: putin tired of waiting for obama‚s doj to release hillary‚s highly classified emails‚set to release them in near future,breaking putin tired waiting obamas doj release hillary highly classified emailsset release near future
+1,"turkey's erdogan: iraqi kurds' decision not to postpone referendum ""very wrong""",turkey erdogan iraqi kurd decision postpone referendum wrong
+0,fake news week: electronic voting ‚ the big lie that just won‚t die,fake news week electronic voting big lie wont die
+0,shout! poll: which us oligarch family is more corrupt?,shout poll u oligarch family corrupt
+1,sixteen killed in attacks on remote mozambique port: media,sixteen killed attack remote mozambique port medium
+0,wow! why florida jews deserted hillary‚helped trump to win florida,wow florida jew deserted hillaryhelped trump win florida
+1,czech tycoon babis to be named prime minister but may struggle to find partners,czech tycoon babis named prime minister may struggle find partner
+1,factbox: malaysia 2018 budget seen lifting cash aid making gst change,factbox malaysia budget seen lifting cash aid making gst change
+1,mccain‚s mad world and the cancer of conflict,mccains mad world cancer conflict
+1,trudeau confronts canada's failure of indigenous people in u.n. speech,trudeau confronts canada failure indigenous people un speech
+1,nearly 400 die as myanmar army steps up crackdown on rohingya militants,nearly die myanmar army step crackdown rohingya militant
+0,lol! liberal ohio activist goes to jail for 13 counts of felony voter fraud‚one year after falsely accusing elections board of voter fraud [video],lol liberal ohio activist go jail count felony voter fraudone year falsely accusing election board voter fraud video
+0,out in the open: ‚9/11‚ 15 years of a transparent lie,open year transparent lie
+0,democrat chairman yells ‚all together now‚f*ck donald trump!‚‚crowd shoots middle finger at stage [video],democrat chairman yell together nowfck donald trumpcrowd shoot middle finger stage video
+1,i'm no populist says new leader of italy's 5-star,im populist say new leader italy star
+1,u.s. must suffer 'painful responses' from iran after trump speech: guards chief,u must suffer painful response iran trump speech guard chief
+0,wow! tx congressman on impeachment and removal of hillary if she wins election,wow tx congressman impeachment removal hillary win election
+1,boiler room ep #126 ‚ immigration consternation,boiler room ep immigration consternation
+1,peru's kuczynski swears in new cabinet opposition signals support,peru kuczynski swears new cabinet opposition signal support
+0,liberal trevor noah didn‚t count on conservative tomi lahren destroying him on his own show‚but that‚s exactly what she did! [video],liberal trevor noah didnt count conservative tomi lahren destroying showbut thats exactly video
+1,catalonia refuses to renounce independence separatist protesters rally,catalonia refuse renounce independence separatist protester rally
+0,hey hillary‚who is really behind attempt by party of ‚diversity‚ to use bernie‚s jewish faith to take him down‚ [video],hey hillarywho really behind attempt party diversity use bernies jewish faith take video
+1,tpp countries consider amendments to stalled trade deal: sources,tpp country consider amendment stalled trade deal source
+0,episode #119 ‚ sunday wire: ‚you know the drill‚ with guests robert singer and jay dyer,episode sunday wire know drill guest robert singer jay dyer
+1,u.n. medics see evidence of rape in myanmar army 'cleansing' campaign,un medic see evidence rape myanmar army cleansing campaign
+1,new bill gates ai-powered ‚evolv‚ body scanners will ‚inspect‚ americans in public spaces,new bill gate aipowered evolv body scanner inspect american public space
+1,russia china agree north korea syria crises should be resolved by diplomacy,russia china agree north korea syria crisis resolved diplomacy
+0,stunning vintage video shows barack obama mocking god‚the bible‚where was this 9 years ago?,stunning vintage video show barack obama mocking godthe biblewhere year ago
+0,university of texas warns of 29 offensive halloween costumes not to wear or else!,university texas warns offensive halloween costume wear else
+0,brutally honest billboard turns heads in state with exploding muslim immigrant population,brutally honest billboard turn head state exploding muslim immigrant population
+0,don‚t expect government or black lives matter to help: private citizens,dont expect government black life matter help private citizen
+0,watch veteran embarrass trump hater in kansas city when she can‚t explain her own sign,watch veteran embarrass trump hater kansa city cant explain sign
+1,chile welcomes more than 60 syrian refugees,chile welcome syrian refugee
+0,busted! uncovered 2009 video shows london‚s muslim mayor calling moderate muslims ‚uncle toms‚‚2002 video shows him defending convicted terrorists,busted uncovered video show london muslim mayor calling moderate muslim uncle tom video show defending convicted terrorist
+0,texas pig farmer has brilliant idea after muslims demand he moves so they can build a mosque [video],texas pig farmer brilliant idea muslim demand move build mosque video
+0,trump‚s bi-racial,trump biracial
+1,russia berates german defense minister for war games remarks,russia berates german defense minister war game remark
+1,repeat deceit: how us tries to link iran to al qaeda,repeat deceit u try link iran al qaeda
+1,exclusive: chile expects to soon clinch argentina energy swap deal,exclusive chile expects soon clinch argentina energy swap deal
+1,pope says colombia must confront inequality to secure lasting peace,pope say colombia must confront inequality secure lasting peace
+1,panama authorizes extradition of former mexican governor on corruption charges,panama authorizes extradition former mexican governor corruption charge
+1,thailand approves $2.2 billion in help for rice farmers,thailand approves billion help rice farmer
+1,trump ghani agree u.s. can help develop afghanistan's rare earth minerals,trump ghani agree u help develop afghanistan rare earth mineral
+1,waving german flag far-right and anti-islam groups rally together before vote,waving german flag farright antiislam group rally together vote
+0,wikileaks bombshell release: #unfit hillary‚s advisors contacted nfl commissioner for advice on ‚cracked head‚ [video],wikileaks bombshell release unfit hillary advisor contacted nfl commissioner advice cracked head video
+0,hurricane storm surge warnings issued for florida ahead of irma: nhc,hurricane storm surge warning issued florida ahead irma nhc
+1,austria's leaders reject juncker's vision for euro expansion,austria leader reject junckers vision euro expansion
+1,arson caused fire at kenyan school that killed nine girls: minister,arson caused fire kenyan school killed nine girl minister
+0,brilliant! lt col tony shaffer: how trump should fight back against ‚deep state‚ [video],brilliant lt col tony shaffer trump fight back deep state video
+0,four teens arrested for having sex in front of beachgoers in cape cod,four teen arrested sex front beachgoers cape cod
+1,teachers in peru return to class as strike winds down,teacher peru return class strike wind
+1,episode #6 ‚ drive by wire: ‚syria wmd redux?‚ (part 1),episode drive wire syria wmd redux part
+0,sunday screening: cia secret experiments (2008),sunday screening cia secret experiment
+1,turkey bank regulator dismisses 'rumors' after iran sanctions report,turkey bank regulator dismisses rumor iran sanction report
+1,germany sees no sign of cyber attack before sept. 24 election,germany see sign cyber attack sept election
+1,syrian army nears islamic state stronghold al-mayadin,syrian army nears islamic state stronghold almayadin
+0,thanks obama! half of students in top 700 school districts are from immigrant households‚30% are illegal aliens,thanks obama half student top school district immigrant household illegal alien
+0,wow! fox reporter goes off on seiu thug for telling black protester she wasn‚t allowed to speak! [video],wow fox reporter go seiu thug telling black protester wasnt allowed speak video
+0,disney introduces new marvel comic books: captain america (captain socialist) beats up conservative terrorists defending u.s. borders and more [video],disney introduces new marvel comic book captain america captain socialist beat conservative terrorist defending u border video
+0,tom hanks to join hollywood liberals in facebook live fundraiser for fight against trump agenda,tom hank join hollywood liberal facebook live fundraiser fight trump agenda
+1,juncker to merkel: eu needs stable german government to shape europe,juncker merkel eu need stable german government shape europe
+1,french court jails woman who sent money to son killed in syria,french court jail woman sent money son killed syria
+0,pope francis plane shifts course to avoid hurricane irma,pope francis plane shift course avoid hurricane irma
+1,erdogan putin discuss iraqi kurdish referendum - turkish presidential sources,erdogan putin discus iraqi kurdish referendum turkish presidential source
+0,leaked documents: george soros gave 600k to pro-refugee groups to influence ‚attitudes‚,leaked document george soros gave k prorefugee group influence attitude
+1,secret service laptop reportedly ‚stolen‚ had trump tower layout and clinton email probe details,secret service laptop reportedly stolen trump tower layout clinton email probe detail
+1,spain passes measures to control catalan finances ahead of independence vote,spain pass measure control catalan finance ahead independence vote
+0,reporter interviewing trump refers to ca terrorists as ‚regular people‚‚trump‚s response is nothing short of awesome,reporter interviewing trump refers ca terrorist regular peopletrumps response nothing short awesome
+0,crosstalk: who are the real ‚fake news‚ culprits?,crosstalk real fake news culprit
+1,death toll from somalia bombings rises to 358,death toll somalia bombing rise
+0,conservative pro-free speech activist may go blind after leftist agitators throw acid in his eyes at charlottesville rally‚leftists tweet ‚i hope you go blind‚,conservative profree speech activist may go blind leftist agitator throw acid eye charlottesville rallyleftists tweet hope go blind
+1,china official says lincoln would have approved of freeing tibetan serfs,china official say lincoln would approved freeing tibetan serf
+0,barack and michelle reportedly offered $60 million for memoirs‚wait till you see our exclusive sneak peek,barack michelle reportedly offered million memoirswait till see exclusive sneak peek
+1,utah ranchers vow to stand up to government abuse despite oregon arrests,utah rancher vow stand government abuse despite oregon arrest
+0,hysterical! the guy who‚s spent majority of both terms on golf courses makes this insane demand of congress,hysterical guy who spent majority term golf course make insane demand congress
+1,nusra front islamic state clash in syria's hama province,nusra front islamic state clash syria hama province
+0,israeli nuclear whistleblower gets offer to live with wife in oslo,israeli nuclear whistleblower get offer live wife oslo
+1,french judiciary creaking under weight of terrorism cases,french judiciary creaking weight terrorism case
+1,turkey orders arrest of 110 people over gulen links: media,turkey order arrest people gulen link medium
+1,minor new zealand parties in focus as hotly contested election gets tighter,minor new zealand party focus hotly contested election get tighter
+0,republicans don‚t need a single democrat to fund trump‚s border wall‚so what‚s the holdup?,republican dont need single democrat fund trump border wallso whats holdup
+1,malaysia says no decision yet on new offers to search for missing mh370,malaysia say decision yet new offer search missing mh
+0,hillary clinton supporters now calling for a recount of votes in battleground states,hillary clinton supporter calling recount vote battleground state
+0,oklahoma supreme court rules punishing smokers with cigarette tax ‚unconstitutional‚‚lawmakers forced to fill shocking hole in state budget,oklahoma supreme court rule punishing smoker cigarette tax unconstitutionallawmakers forced fill shocking hole state budget
+0,diamond and silk give it to ‚underhanded‚ meryl streep [video],diamond silk give underhanded meryl streep video
+1,russia's putin says defeat of terror in syria imminent,russia putin say defeat terror syria imminent
+1,syrian opposition leader says u.n. mediation has failed,syrian opposition leader say un mediation failed
+0,hillary shows her true colors in a video she didn‚t think anyone would see,hillary show true color video didnt think anyone would see
+0,left goes nuts after antifa woman attacking trump supporter got punched‚that was before this photo revealed what she had in her hand [video],left go nut antifa woman attacking trump supporter got punchedthat photo revealed hand video
+0,wow! watch side by side comparison of hillary‚s lies next to fbi director‚s report on email scandal [video],wow watch side side comparison hillary lie next fbi director report email scandal video
+0,boiler room ep #111 ‚ build-a-world-order-burger,boiler room ep buildaworldorderburger
+1,russia hands note of protest to u.s. over plans to search trade mission,russia hand note protest u plan search trade mission
+0,hurricane irma may cut power to over 9 million people in florida: utility,hurricane irma may cut power million people florida utility
+1,spain to control catalan spending as long as 'exceptional' situation continues,spain control catalan spending long exceptional situation continues
+1,federal judge steps in to review legroom on commercial flights,federal judge step review legroom commercial flight
+0,ebony magazine editor destroy hillary with one embarrassing question,ebony magazine editor destroy hillary one embarrassing question
+1,britain's may says does not set 'red lines' for ministers' behavior,britain may say set red line minister behavior
+0,moms whose children were killed by illegals to testify before congress today,mom whose child killed illegals testify congress today
+1,secret service laptop reportedly ‚stolen‚ had trump tower layout and clinton email probe details,secret service laptop reportedly stolen trump tower layout clinton email probe detail
+1,false flag attack against cuba: a plan hatched by the pentagon,false flag attack cuba plan hatched pentagon
+0,hilarious! liberals stunned when republican guest won‚t play race-baiting game with msnbc host‚cuts off interview [video],hilarious liberal stunned republican guest wont play racebaiting game msnbc hostcuts interview video
+1,"lake oroville dam spillway damage results in evacuation orders to 188000 people""",lake oroville dam spillway damage result evacuation order people
+1,india presses on with myanmar defense supplies in show of support,india press myanmar defense supply show support
+1,moscow blames 'two-faced u.s. policy' for russian general's syria death: ria,moscow blame twofaced u policy russian general syria death ria
+0,breaking: trump chooses pro-school voucher,breaking trump chooses proschool voucher
+1,commander of lesotho defense force shot dead south africa calls for calm,commander lesotho defense force shot dead south africa call calm
+1,malaysia ready to provide temporary shelter for rohingya fleeing violence,malaysia ready provide temporary shelter rohingya fleeing violence
+1,british police release three more men in london tube attack probe,british police release three men london tube attack probe
+0,what the heck! why was al gore meeting with the trump team today? [video],heck al gore meeting trump team today video
+1,yemen houthis say have shot down u.s. surveillance drone - state news agency,yemen houthis say shot u surveillance drone state news agency
+1,japan ruling bloc heads for big election win despite voter distaste for pm abe: poll,japan ruling bloc head big election win despite voter distaste pm abe poll
+0,god squad: jury finds polygamous mormon towns guilty of discriminating against ‚non-believers‚,god squad jury find polygamous mormon town guilty discriminating nonbeliever
+0,bill o‚reilly is out at fox news over alleged sexual remarks,bill oreilly fox news alleged sexual remark
+0,arizona state univ doubles tuition‚ claims it needs more state funds‚finds $500k to donate to clinton ‚slush fund‚,arizona state univ double tuition claim need state fundsfinds k donate clinton slush fund
+0,hillary gives hilarious reason for losing election: ‚i was on the way to winning‚ [video],hillary give hilarious reason losing election way winning video
+1,france to lead investigation into a380 engine explosion,france lead investigation engine explosion
+1,uk threat level remains at critical: minister,uk threat level remains critical minister
+1,turkey not in direct talks for return of intelligence officers from iraq: minister,turkey direct talk return intelligence officer iraq minister
+1,kremlin: syria peoples' congress being 'actively discussed',kremlin syria people congress actively discussed
+1,brazil police arrest ex-minister vieira lima after cash seizure,brazil police arrest exminister vieira lima cash seizure
+1,mexico foreign minister heads to u.s. to meet with dreamers,mexico foreign minister head u meet dreamer
+1,italy high court upholds four-year sentence on veteran banker geronzi,italy high court upholds fouryear sentence veteran banker geronzi
+0,lgbt volunteers aren‚t waiting to be thrown off a rooftop‚join fight against isis in syria,lgbt volunteer arent waiting thrown rooftopjoin fight isi syria
+1,brazil's top court suspends controversial slavery decree,brazil top court suspends controversial slavery decree
+1,philippine president's senate foes allies vow to block budget cut for rights body,philippine president senate foe ally vow block budget cut right body
+1,new poll shows philippine president still hugely popular,new poll show philippine president still hugely popular
+1,somali pirate posing as a ‚refugee‚ found covered in blood after stabbing roommate 19 times in german government funded housing,somali pirate posing refugee found covered blood stabbing roommate time german government funded housing
+1,mexico in three-day countdown to search for earthquake survivors,mexico threeday countdown search earthquake survivor
+1,brazil top prosecutor requests billionaire batista's arrest -source,brazil top prosecutor request billionaire batistas arrest source
+0,green party dolt struggles to explain wisconsin election recount [video],green party dolt struggle explain wisconsin election recount video
+0,wow! lou dobbs blasts #fakepresident obama: ‚spent 8 years undermining core american values‚‚ now doing his best to ‚undercut president trump‚ by pretending to still be president [video],wow lou dobbs blast fakepresident obama spent year undermining core american value best undercut president trump pretending still president video
+0,why 5 of the wealthiest muslim nations refuse to take a single refugee,wealthiest muslim nation refuse take single refugee
+1,russian military denies report is captured russian soldiers in syria: ifax,russian military denies report captured russian soldier syria ifax
+1,abadi defends role of iranian-backed paramiltaries at meeting with tillerson,abadi defends role iranianbacked paramiltaries meeting tillerson
+1,british pm may says foreign minister johnson supports her brexit plans,british pm may say foreign minister johnson support brexit plan
+0,ma: illegal alien accused of running $1.5 million food stamp scam cuts gps bracelet‚manhunt underway,illegal alien accused running million food stamp scam cut gps braceletmanhunt underway
+1,indian protests after 'godman' convicted of rape kill 29,indian protest godman convicted rape kill
+0,college threatens women who don‚t want to urinate with guys,college threatens woman dont want urinate guy
+1,italy's northern league criticizes magistrates after bank accounts frozen,italy northern league criticizes magistrate bank account frozen
+0,socialist millennial magnet bernie sanders tells supporters how to vote,socialist millennial magnet bernie sander tell supporter vote
+1,uk lawmakers back government's proposed timetable for debate of eu withdrawal bill,uk lawmaker back government proposed timetable debate eu withdrawal bill
+1,syrian army sends more troops across euphrates near u.s.-backed forces,syrian army sends troop across euphrates near usbacked force
+1,parents jam meeting room to denounce false teachings,parent jam meeting room denounce false teaching
+0,feel the bern: this is what your paycheck will look like with bernie as president,feel bern paycheck look like bernie president
+0,trump sounded like a choir boy next to hillary‚s foul-mouthed,trump sounded like choir boy next hillary foulmouthed
+0,breaking: irs will investigate ‚lawless‚ clinton foundation on charges of ‚public corruption‚‚‚pay to play‚ activities,breaking irs investigate lawless clinton foundation charge public corruptionpay play activity
+0,fbi and cia host job fair in u.s. city with 40% muslim population‚feeling safer yet?,fbi cia host job fair u city muslim populationfeeling safer yet
+0,aspirations: young chinese seize the day seize the hour,aspiration young chinese seize day seize hour
+0,bundy case ruled a mistrial ‚ will federal case soon crumble?,bundy case ruled mistrial federal case soon crumble
+1,russian bombers fire cruise missiles at islamic state targets in syria: ria,russian bomber fire cruise missile islamic state target syria ria
+1,balkan police break up turkish migrant smuggling ring,balkan police break turkish migrant smuggling ring
+0,ep #13: patrick henningsen live ‚ ‚fake news,ep patrick henningsen live fake news
+1,body of mexican teenager who vanished after cabify ride found,body mexican teenager vanished cabify ride found
+0,liberal heads explode! trump donates first paycheck‚sends a huge message to cultural marxists,liberal head explode trump donates first paychecksends huge message cultural marxist
+1,peru's kuczynski eyes vp for prime minister after cabinet ousted: sources,peru kuczynski eye vp prime minister cabinet ousted source
+1,former hong kong student leader escapes jail sentence for campus protest,former hong kong student leader escape jail sentence campus protest
+0,cnbc editor: media must remember readers are not ‚as ignorant,cnbc editor medium must remember reader ignorant
+0,boiler room ep #86 ‚ kek comes to pizzatown,boiler room ep kek come pizzatown
+0,us hostage survives terrorist ordeal in syria to deliver a stunning message to us-uk ‚regime change‚ crowd,u hostage survives terrorist ordeal syria deliver stunning message usuk regime change crowd
+0,woman born in nazi germany says trump doesn‚t remind her of hitler‚.rioting leftists trying to shut down free speech does,woman born nazi germany say trump doesnt remind hitlerrioting leftist trying shut free speech
+1,tokyo governor koike to challenge japanese pm abe with new party,tokyo governor koike challenge japanese pm abe new party
+1,fake ‚us embassy‚ bust in ghana exposes danger of eu schengen deal with turkey,fake u embassy bust ghana expose danger eu schengen deal turkey
+0,acting fbi director with ties to hillary campaign under federal investigation [video],acting fbi director tie hillary campaign federal investigation video
+1,region must do more to pressure south sudan leaders to end conflict: u.s. diplomat,region must pressure south sudan leader end conflict u diplomat
+0,house democrats make stunning move to implement sharia law in america,house democrat make stunning move implement sharia law america
+0,tucker carlson to border angels founder: why shouldn‚t borders be protected?,tucker carlson border angel founder shouldnt border protected
+1,some u.s. visitors to cuba complain of symptoms similar to embassy 'attacks': u.s.,u visitor cuba complain symptom similar embassy attack u
+1,somalis defy police to protest against deadly truck bombings,somali defy police protest deadly truck bombing
+0,priorities: #blacklivesmatter terrorists protest cops in gun-free chicago,priority blacklivesmatter terrorist protest cop gunfree chicago
+0,flashback: hillary received $500k in jewelry from king of barbaric nation who brutally oppresses women,flashback hillary received k jewelry king barbaric nation brutally oppresses woman
+1,north korea says trump has 'lit the wick of war:' russia's tass agency,north korea say trump lit wick war russia tass agency
+0,bill o‚reilly is back! tell fans he‚s not going away: ‚i‚m very confident the truth will come out,bill oreilly back tell fan he going away im confident truth come
+1,britain has identified a suspect in london train bomb: sky news,britain identified suspect london train bomb sky news
+1,trial by youtube: mainstream media use second-hand oregon account to cast blame on dead rancher,trial youtube mainstream medium use secondhand oregon account cast blame dead rancher
+1,philippines environment minister hopeful for end to open-pit mining ban,philippine environment minister hopeful end openpit mining ban
+1,zuma spokesman dismisses reports south african deputy president may be sacked,zuma spokesman dismisses report south african deputy president may sacked
+1,u.s. ambassador haley: u.n. has exhausted options on north korea,u ambassador haley un exhausted option north korea
+1,cambodia's opposition puts out banners calling for leader's release,cambodia opposition put banner calling leader release
+1,moldova pm confident of securing eu funding in 2018,moldova pm confident securing eu funding
+0,cindy mccain reportedly accepts trump administration position on same day husband john mccain‚s outrageous pro-obama,cindy mccain reportedly accepts trump administration position day husband john mccains outrageous proobama
+1,iraqi kurdish referendum 'historic mistake': turkey,iraqi kurdish referendum historic mistake turkey
+0,pilger interview: julian assange lifts the veil on hillary clinton and the globalist conspiracy,pilger interview julian assange lift veil hillary clinton globalist conspiracy
+1,toxic fumes keep eu summit venue shut for another week,toxic fume keep eu summit venue shut another week
+1,china offers support to spanish government amid catalonia crisis,china offer support spanish government amid catalonia crisis
+0,president trump fires acting attorney general,president trump fire acting attorney general
+0,bulgarians use 'speed dating' to get know migrants,bulgarian use speed dating get know migrant
+0,trump asks o‚reilly,trump asks oreilly
+1,russian opposition leader's fraud conviction arbitrary europe's top rights court says,russian opposition leader fraud conviction arbitrary europe top right court say
+0,michigan controversy over gun depicted in veterans‚ memorial: ‚we didn‚t win the war by throwing sticks and stones.‚,michigan controversy gun depicted veteran memorial didnt win war throwing stick stone
+1,cambodian pm says main opposition party will be dissolved,cambodian pm say main opposition party dissolved
+0,dem strategist says torture of white special needs teen by black thugs not a hate crime ‚if it was about things trump said‚ [video],dem strategist say torture white special need teen black thug hate crime thing trump said video
+0,death panels? princeton professor wants to kill disabled babies and wants obamacare to pay for it,death panel princeton professor want kill disabled baby want obamacare pay
+0,hilarious video proves cnn doesn‚t even bother to verify identity of ‚expert‚ guests‚interviews fake police chief,hilarious video prof cnn doesnt even bother verify identity expert guestsinterviews fake police chief
+0,afghan taliban deny former hostage's claims of murder rape,afghan taliban deny former hostage claim murder rape
+0,celebrity cruise line ceo makes political statement with stunning open-borders,celebrity cruise line ceo make political statement stunning openborders
+1,germany's far-right afd has more immigrant mps than merkel's conservatives,germany farright afd immigrant mp merkels conservative
+0,the case against sean penn: why do americans who love their country still support him? [video],case sean penn american love country still support video
+1,highlights: reactions to german national election,highlight reaction german national election
+1,china's chongqing vows purge of former leader's 'vile influence',china chongqing vow purge former leader vile influence
+0,breaking update on obama‚s war on cops: ohio police officer murdered by thug ‚looking to kill an officer‚ [video],breaking update obamas war cop ohio police officer murdered thug looking kill officer video
+1,thailand's buddhist monks order reforms ahead of royal transition,thailand buddhist monk order reform ahead royal transition
+0,anti-trump radical taunts trump supporters with isis flag photo and beheading video,antitrump radical taunt trump supporter isi flag photo beheading video
+1,trump to make north korea sanctions announcement not on oil: official,trump make north korea sanction announcement oil official
+0,new age guru dr. deepak chopra says trump may be ‚mentally retarded‚ [video],new age guru dr deepak chopra say trump may mentally retarded video
+0,watch as assad destroys us reporter michael isikoff in interview,watch assad destroys u reporter michael isikoff interview
+0,sunday screening: guns,sunday screening gun
+1,hong kong democracy activists granted bail as they seek to appeal against jail terms,hong kong democracy activist granted bail seek appeal jail term
+0,democrats fuming over vote to keep ‚hurtful‚ word in library of congress,democrat fuming vote keep hurtful word library congress
+0,"fbi: clinton foundation investigation will lead to ‚likely indictment‚ donors funded isis""",fbi clinton foundation investigation lead likely indictment donor funded isi
+1,iraq 1991: us carpet bombs ‚highway of death‚,iraq u carpet bomb highway death
+0,u.s. taxpayers to foot bill for outrageous obama scheme to import and provide housing for relatives of illegal aliens/democrat voters,u taxpayer foot bill outrageous obama scheme import provide housing relative illegal aliensdemocrat voter
+1,generation gap: china's one-child generation grows up,generation gap china onechild generation grows
+1,merkel wants eu to consider halting turkish accession talks after vote,merkel want eu consider halting turkish accession talk vote
+0,plastic persona: behind the scenes of the ted cruz media machine,plastic persona behind scene ted cruz medium machine
+1,boom! fed judge ruling unblocks trump travel ban‚asks aclu lawyer: ‚where does it say muslim countries?‚,boom fed judge ruling unblocks trump travel banasks aclu lawyer say muslim country
+0,verified #fakenews ap attempts to discredit fox news over alleged fake seth rich story‚worries shepard smith‚s reputation could be harmed,verified fakenews ap attempt discredit fox news alleged fake seth rich storyworries shepard smith reputation could harmed
+0,hippie throwback: video and photos emerge of socialist punk,hippie throwback video photo emerge socialist punk
+0,breaking: #crookedhillary told fbi she only deleted personal emails‚fbi just recovered 30 deleted benghazi emails,breaking crookedhillary told fbi deleted personal emailsfbi recovered deleted benghazi email
+1,uk pm may says brexit will not mean a hard border with ireland,uk pm may say brexit mean hard border ireland
+1,el salvador launches commission to find those missing from civil war,el salvador launch commission find missing civil war
+1,moody's downgrades uk's rating on brexit and growth fears,moody downgrade uk rating brexit growth fear
+1,three dead after sudan clashes over bashir visit to south darfur: u.n.,three dead sudan clash bashir visit south darfur un
+0,ex president of vatican hospital convicted of abuse of office,ex president vatican hospital convicted abuse office
+1,brazil supreme court allows congress last word on removal of lawmakers,brazil supreme court allows congress last word removal lawmaker
+0,obama warns: crackdown on terrorism in u.s. would violate iran deal,obama warns crackdown terrorism u would violate iran deal
+1,shout poll: should apple give fbi backdoor access to iphones?,shout poll apple give fbi backdoor access iphones
+0,wikileaks julian assange reveals hillary‚s connection to isis and discusses emails that could put her in jail [video],wikileaks julian assange reveals hillary connection isi discusses email could put jail video
+1,russia‚s red line: moscow announces end to us ‚deconfliction‚ cooperation over syria,russia red line moscow announces end u deconfliction cooperation syria
+1,british police arrest 18-year-old in hunt for london train bomber,british police arrest yearold hunt london train bomber
+1,iran parliament speaker: nuclear deal will collapse if u.s. quits - agencies,iran parliament speaker nuclear deal collapse u quits agency
+0,watch crazed lefties protesting trump shut down syrian refugee who disagrees [video],watch crazed lefty protesting trump shut syrian refugee disagrees video
+0,thailand threatens to prosecute facebook over embarrassing video showing king walking through mall in yellow crop top,thailand threatens prosecute facebook embarrassing video showing king walking mall yellow crop top
+1,mexico plans aid for puerto rico after hurricane maria,mexico plan aid puerto rico hurricane maria
+1,russia vetoes extension of mission probing chemical weapons use in syria,russia veto extension mission probing chemical weapon use syria
+0,boiler room ep #127 ‚ the oppression commiseration (and similar topics),boiler room ep oppression commiseration similar topic
+1,turkey expects visa spat with u.s. to be resolved soon: deputy pm,turkey expects visa spat u resolved soon deputy pm
+0,the las vegas mass shooting ‚ more to the story than we‚ve been told,la vega mass shooting story weve told
+1,pakistan official details car chase that freed kidnapped u.s.-canadian family,pakistan official detail car chase freed kidnapped uscanadian family
+1,turkey's enemy of interest rates targets banks to boost growth,turkey enemy interest rate target bank boost growth
+0,sheriff arpaio bombshell: obama‚s birth certificate is a fake‚turning over evidence to feds [video],sheriff arpaio bombshell obamas birth certificate faketurning evidence fed video
+0,bravo! laura ingraham destroys juan williams on calling trump‚s picks ‚team of radicals‚ [video],bravo laura ingraham destroys juan williams calling trump pick team radical video
+1,eu to launch internal brexit transition work: draft,eu launch internal brexit transition work draft
+1,kenyan court scraps presidential vote kenyatta calls for calm,kenyan court scrap presidential vote kenyatta call calm
+0,saudi arabia to vet use of prophet's sayings to counter extremism,saudi arabia vet use prophet saying counter extremism
+1,youths charged with murder after fatal fire at malaysian school,youth charged murder fatal fire malaysian school
+1,iraqi forces seize oil city kirkuk from kurds in bold advance,iraqi force seize oil city kirkuk kurd bold advance
+1,british pm may should call a leadership contest former party chairman says,british pm may call leadership contest former party chairman say
+0,sub-humans: surveillance video captures 4 black males brutally beating 37-yr old white male,subhumans surveillance video capture black male brutally beating yr old white male
+1,turkish cabinet agrees to close air space to northern iraq,turkish cabinet agrees close air space northern iraq
+0,first female muslim legislator votes to make life insurance companies do the unthinkable for dead terrorists [video],first female muslim legislator vote make life insurance company unthinkable dead terrorist video
+0,nyt‚s race-obsessed liberal columnist goes nuts on cnn when conservative pundit touches his arm [video],nyts raceobsessed liberal columnist go nut cnn conservative pundit touch arm video
+1,ramping up tensions over north korea may have dangerous consequences - kremlin,ramping tension north korea may dangerous consequence kremlin
+1,factbox: conservative liberal progressive: merkel's 'jamaica coalition' puzzle,factbox conservative liberal progressive merkels jamaica coalition puzzle
+1,north korean workers operating in closed south-invested factory zone,north korean worker operating closed southinvested factory zone
+1,israel hits syrian site said to be linked to chemical weapons,israel hit syrian site said linked chemical weapon
+0,scrooge pastor heckles kids waiting in line for santa: ‚santa does not exist!‚ [video],scrooge pastor heckle kid waiting line santa santa exist video
+0,horrific: the humanitarian crisis our ‚open borders‚ president doesn‚t want you to know about,horrific humanitarian crisis open border president doesnt want know
+0,the tally is in: total number of lies told by queen of the clinton crime syndicate during debate,tally total number lie told queen clinton crime syndicate debate
+0,boiler room #100.2 ‚ part duh! wire tapped,boiler room part duh wire tapped
+0,dog lover putin gets top breed pup as gift from turkmen leader,dog lover putin get top breed pup gift turkmen leader
+0,life in the military academy: where donald j. trump played by the rules and learned how to be a winner,life military academy donald j trump played rule learned winner
+0,russia gears up for major war games neighbors watch with unease,russia gear major war game neighbor watch unease
+0,boom! customs agents ignore obama appointed judge‚s court order‚enforce trump‚s travel ban,boom custom agent ignore obama appointed judge court orderenforce trump travel ban
+0,dc women‚s march aftermath: streets littered with trash,dc womens march aftermath street littered trash
+1,warning: don‚t worry if the stock market goes crazy after election,warning dont worry stock market go crazy election
+1,turkey says will not submit to 'impositions' from united states in visa crisis,turkey say submit imposition united state visa crisis
+0,new poll shows democrats under 50 prefer old,new poll show democrat prefer old
+1,greek police cut down to size: eu court rules for women,greek police cut size eu court rule woman
+0,msnbc admits plan to suppress bernie sanders voters in california,msnbc admits plan suppress bernie sander voter california
+0,disrespectful dems exposed! you‚ll never guess who also boycotted george w. bush‚s inauguration [video],disrespectful dems exposed youll never guess also boycotted george w bush inauguration video
+1,fidel castro: patrick henningsen discusses his legacy and cuba‚s future path,fidel castro patrick henningsen discusses legacy cuba future path
+0,judge declares baby name ‚illegal‚ to prevent her from ‚emotional harm‚,judge declares baby name illegal prevent emotional harm
+0,embarrassing!‚obama‚s farewell speech: ‚there have been no terrorist attacks on us soil during my 8 years‚‚except for the ones i‚m about to list [video],embarrassingobamas farewell speech terrorist attack u soil yearsexcept one im list video
+1,air force will ease policy on discharging transgenders,air force ease policy discharging transgenders
+1,turkish court orders release of pro-kurdish party's former spokesman: party official,turkish court order release prokurdish party former spokesman party official
+1,putin to meet south korean president to discuss north korea on sept. 6: kremlin,putin meet south korean president discus north korea sept kremlin
+1,syrian fighter pilot on trial for espionage in turkey returns to syria,syrian fighter pilot trial espionage turkey return syria
+0,powerful: a rape survivor explains why men should never be allowed in women‚s bathrooms and locker rooms,powerful rape survivor explains men never allowed womens bathroom locker room
+0,lol! lifetime politician who got 2% support from voters in gop primaries tells cbs: ‚i don‚t know what ‚america first‚ means‚ [video],lol lifetime politician got support voter gop primary tell cbs dont know america first mean video
+1,spain gives catalan leader five days to clarify independence,spain give catalan leader five day clarify independence
+0,breaking: obama‚s ‚director of diversity‚ donates hundreds of thousands of tax payer dollars to open borders,breaking obamas director diversity donates hundred thousand tax payer dollar open border
+0,us swimmer kicks some russian booty after russian swimmer shakes finger at her,u swimmer kick russian booty russian swimmer shake finger
+1,eu plans brexit summit gesture may hints on cash,eu plan brexit summit gesture may hint cash
+1,a troubled king: chicago‚s rahm emanuel desperate to save his 2020 presidential run,troubled king chicago rahm emanuel desperate save presidential run
+1,coal mine explosion kills nine workers in northern china: xinhua,coal mine explosion kill nine worker northern china xinhua
+0,foul-mouthed model chrissy teigen blames president trump for mental and physical breakdown‚makes hilarious demands of him [video],foulmouthed model chrissy teigen blame president trump mental physical breakdownmakes hilarious demand video
+0,judicial watch email release shows huma was asked to plan ‚healthy‚ hillary‚s funeral,judicial watch email release show huma asked plan healthy hillary funeral
+1,putin: russia-u.s. ties may improve through joint fight against terror,putin russiaus tie may improve joint fight terror
+1,chaotic scenes as suspects wheeled around airport where north korean leader's brother killed,chaotic scene suspect wheeled around airport north korean leader brother killed
+0,colin powell picked on the wrong guy: general flynn rips him to shreds over nasty comments in leaked emails [video],colin powell picked wrong guy general flynn rip shred nasty comment leaked email video
+1,north korea seen moving missiles from development center: south korean broadcaster,north korea seen moving missile development center south korean broadcaster
+1,new zealand labour leader says will reach out to nz first in next couple of days,new zealand labour leader say reach nz first next couple day
+1,sunnistan: us and allied ‚safe zone‚ plan to take territorial booty in northern syria,sunnistan u allied safe zone plan take territorial booty northern syria
+0,boiler room ‚ ep #50 ‚ 1 year anniversary extravaganza!!!,boiler room ep year anniversary extravaganza
+0,hilarious! video shows pattern of cnn cutting news feed when guests share opposing views,hilarious video show pattern cnn cutting news feed guest share opposing view
+1,soccer star weah and vp boakai near liberia presidential run-off,soccer star weah vp boakai near liberia presidential runoff
+1,chemical weapons watchdog to get new leader as it investigates syria,chemical weapon watchdog get new leader investigates syria
+1,africa eyes senior trump envoy visit for u.s. policy hints,africa eye senior trump envoy visit u policy hint
+0,delta to cancel about 800 flights due to irma,delta cancel flight due irma
+1,join nationwide planned parenthood protest saturday,join nationwide planned parenthood protest saturday
+0,black politicians increase attacks on ben carson,black politician increase attack ben carson
+1,strong quake near mexico city kills at least 226 rescuers dig through collapsed buildings,strong quake near mexico city kill least rescuer dig collapsed building
+1,south korea's moon says he and putin share understanding on north korea,south korea moon say putin share understanding north korea
+0,classless hollywood lib addresses thousands at commencement speech‚drops ‚f-bomb‚ in whiny opening line,classless hollywood lib address thousand commencement speechdrops fbomb whiny opening line
+1,france to give 15 million euros in aid for syrian areas freed from islamic state,france give million euro aid syrian area freed islamic state
+0,breaking: victor alonzo majia nunez arrested after attempted drive-by shooting of roswell,breaking victor alonzo majia nunez arrested attempted driveby shooting roswell
+0,boiler room ‚ ep #52 ‚ never ending chaos,boiler room ep never ending chaos
+0,breaking: picture of mother whose boy climbed into gorilla cage is revealed‚angry black twitter users humiliated after blaming ‚white privilege‚ for gorilla‚s death,breaking picture mother whose boy climbed gorilla cage revealedangry black twitter user humiliated blaming white privilege gorilla death
+0,mother's fight to discover fate of dead baby's body finds empty coffin,mother fight discover fate dead baby body find empty coffin
+1,trump‚s awkward first date with frau merkel,trump awkward first date frau merkel
+1,turkish nationalist leader says thousands ready to fight for iraq turkmen,turkish nationalist leader say thousand ready fight iraq turkmen
+0,prominent democrat claims old,prominent democrat claim old
+1,north korea deepening economic diplomatic isolation: mattis,north korea deepening economic diplomatic isolation mattis
+1,congo ban on non-biometric passports sparks outcry,congo ban nonbiometric passport spark outcry
+0,cher attacks trump: compares bill clinton‚s infidelities to trump‚s 3 marriages‚forgets one important fact,cher attack trump compare bill clinton infidelity trump marriagesforgets one important fact
+0,reporter exposes huge reason charlottesville protests got out of control: ‚where you going?‚ [video],reporter expose huge reason charlottesville protest got control going video
+0,the truth about why sore loser obama is using ‚russian hackers‚ story [video],truth sore loser obama using russian hacker story video
+0,gay marriage approved by supreme court with ironic dissenting opinion from justice roberts: ‚but this court is not a legislature‚,gay marriage approved supreme court ironic dissenting opinion justice robert court legislature
+1,world food program seeks 75 million dollars for rohingya crisis,world food program seek million dollar rohingya crisis
+0,michelle obama‚s middle east speech: compares her oppressive childhood to muslim girls living under sharia law [video],michelle obamas middle east speech compare oppressive childhood muslim girl living sharia law video
+1,liberia's ruling party alleges election irregularities,liberia ruling party alleges election irregularity
+1,china says futile to use trial of taiwanese activist to attack chinese law,china say futile use trial taiwanese activist attack chinese law
+0,cnn interview turns into screaming match when activist director argues new ‚irrelevant‚ footage of michael brown is game changer [video],cnn interview turn screaming match activist director argues new irrelevant footage michael brown game changer video
+1,trump's iran plans driving eu toward russia and china: germany,trump iran plan driving eu toward russia china germany
+0,breaking: leftists caught on undercover video planning acts of violence,breaking leftist caught undercover video planning act violence
+1,white house on lockdown after ‚suspicious package‚ ‚ 1 person detained,white house lockdown suspicious package person detained
+1,putin: russia reserves right to cut further u.s. diplomatic mission,putin russia reserve right cut u diplomatic mission
+1,catalan leader to lose all powers once senate approves direct rule,catalan leader lose power senate approves direct rule
+1,kenyan police disperse protests against election commission,kenyan police disperse protest election commission
+0,new orleans sued! new documents support lawsuit over confederate statue removal‚‚bout time!,new orleans sued new document support lawsuit confederate statue removalbout time
+1,kremlin says putin erdogan discuss syria in phone call,kremlin say putin erdogan discus syria phone call
+1,from damascus iran vows to confront israel,damascus iran vow confront israel
+1,syrian democratic forces say reach deir al-zor industrial zone: statement,syrian democratic force say reach deir alzor industrial zone statement
+1,hollywood suffers meltdown over trump‚s withdraw from paris climate deal,hollywood suffers meltdown trump withdraw paris climate deal
+0,breaking: judge ambushed outside courthouse‚shot by waiting gunman [video],breaking judge ambushed outside courthouseshot waiting gunman video
+0,oops! media lied‚transgender surgery for military members cost taxpayers a lot more than #fakenews is telling americans,oops medium liedtransgender surgery military member cost taxpayer lot fakenews telling american
+0,frankfurt defuses massive wwii bomb after evacuating 60000,frankfurt defuses massive wwii bomb evacuating
+1,white house again rejects talks with north korea on nuclear issue,white house reject talk north korea nuclear issue
+1,uk's prince harry says troops need mental as well as physical fitness combat training,uk prince harry say troop need mental well physical fitness combat training
+1,turkey arrests four people over explosion at tupras refinery: anadolu,turkey arrest four people explosion tupras refinery anadolu
+1,british child sex-abuser 102 sentenced for crimes from 1970s,british child sexabuser sentenced crime
+0,obama ready to do battle with america: will ‚aggressively defend‚ bringing muslim refugees to u.s.,obama ready battle america aggressively defend bringing muslim refugee u
+0,unreal! former gitmo detainees protest at u.s. embassy for freebies from the u.s.,unreal former gitmo detainee protest u embassy freebie u
+0,watch maxine waters go ballistic when confronted by a constituent who says ‚i love my president‚ [video],watch maxine water go ballistic confronted constituent say love president video
+0,somali man charged in canada attack was ordered deported from u.s.,somali man charged canada attack ordered deported u
+1,u.n. seeks 'massive' help for rohingya fleeing myanmar 'ethnic cleansing',un seek massive help rohingya fleeing myanmar ethnic cleansing
+0,screaming leftists interrupt trump speech‚crowd goes wild! [video],screaming leftist interrupt trump speechcrowd go wild video
+1,u.n. says still determining if myanmar crisis is genocide,un say still determining myanmar crisis genocide
+0,diamond and silk open up large can of whoop a$$ on maxine waters in painfully funny video,diamond silk open large whoop maxine water painfully funny video
+1,stockholm study: us & europe top arms trade globally ‚ saudi arabia‚s weapons imports skyrocket over 200 percent,stockholm study u europe top arm trade globally saudi arabia weapon import skyrocket percent
+1,spacex: explosion rocks launchpad at firm‚s cape canaveral facility in florida,spacex explosion rock launchpad firm cape canaveral facility florida
+1,catalan separatists take to the streets ahead of referendum,catalan separatist take street ahead referendum
+1,varadkar bounce gives ireland's fine gael eight-point poll lead,varadkar bounce give ireland fine gael eightpoint poll lead
+0,china court releases video of taiwanese activist confessing to subversion,china court release video taiwanese activist confessing subversion
+1,it‚s official: trump is potus 45,official trump potus
+0,state funded progressive indoctrination: college prof demands students adopt his atheist beliefs and leftist views‚or fail,state funded progressive indoctrination college prof demand student adopt atheist belief leftist viewsor fail
+0,bomb threat and criticism hits hispanic bbq owner‚s plans for white appreciation day,bomb threat criticism hit hispanic bbq owner plan white appreciation day
+0,anti-trump anarchists attack pro-trump rally participants‚trump supporters fight back! [video],antitrump anarchist attack protrump rally participantstrump supporter fight back video
+0,college student‚s undercover video gets him suspended! professor calls election of trump ‚an act of terrorism‚ [video],college student undercover video get suspended professor call election trump act terrorism video
+0,"hollywood hypocrite leonard dicaprio jets la friends across the world 6000 miles to hear his speech on global warming""",hollywood hypocrite leonard dicaprio jet la friend across world mile hear speech global warming
+0,company fires democrat after receiving letter from retired navy seal exposing him for mocking widow of deceased navy seal ryan owens [video],company fire democrat receiving letter retired navy seal exposing mocking widow deceased navy seal ryan owen video
+0,wow! sarcastic mike barnicle gets an earful from kellyanne conway for saying republicans weren‚t ‚fair‚ to obama [video],wow sarcastic mike barnicle get earful kellyanne conway saying republican werent fair obama video
+1,ultra-orthodox protesters arrested in violent clash in jerusalem,ultraorthodox protester arrested violent clash jerusalem
+1,colombia peace deal cannot be modified for 12 years court rules,colombia peace deal modified year court rule
+1,u.s. urges iraq to avoid clashes with kurds near kirkuk,u urge iraq avoid clash kurd near kirkuk
+1,factbox: new zealand 2017 election - main parties and policies,factbox new zealand election main party policy
+0,lol! leader of ‚do-nothing senate‚ mitch mcconnell caught on video whining about president trump‚s ‚excessive expectations‚ of congress,lol leader donothing senate mitch mcconnell caught video whining president trump excessive expectation congress
+1,suspected separatist bomb wounds 3 police in cameroon's anglophone region,suspected separatist bomb wound police cameroon anglophone region
+0,hey #nfl‚can you hear us now? monday night football‚s ratings plummet,hey nflcan hear u monday night football rating plummet
+0,pope makes visit to nuns obama regime is suing for not conforming to obamacare contraception mandate,pope make visit nun obama regime suing conforming obamacare contraception mandate
+0,wow! video surfaces of bernie sanders praising communism and bread lines [video],wow video surface bernie sander praising communism bread line video
+1,leaving nothing to chance china increases security social control before congress,leaving nothing chance china increase security social control congress
+0,new 9/11 trailer ‚ featuring charlie sheen and whoopi goldberg,new trailer featuring charlie sheen whoopi goldberg
+1,kenya opposition calls for protests on date repeat election due,kenya opposition call protest date repeat election due
+0,update: 12 states now giving obama middle finger on unlawful transgender bathroom decree,update state giving obama middle finger unlawful transgender bathroom decree
+0,breaking: protester jumps on stage‚grabs trump‚secret service reacts‚trump reaction is priceless [video],breaking protester jump stagegrabs trumpsecret service reactstrump reaction priceless video
+0,message for progressive left: ‚if you want to see real nazis,message progressive left want see real nazi
+1,spanish police occupy catalan tech hub before banned vote,spanish police occupy catalan tech hub banned vote
+0,outrageous! nancy pelosi claims obamacare honors ‚vision of our founders‚ [video],outrageous nancy pelosi claim obamacare honor vision founder video
+1,murdoch's uk paper arm admits computer hacking fuelling criticism of sky takeover,murdoch uk paper arm admits computer hacking fuelling criticism sky takeover
+1,zimbabwe's vice president possible mugabe successor says he was poisoned,zimbabwe vice president possible mugabe successor say poisoned
+1,germany's schaeuble eyes another run as finance minister,germany schaeuble eye another run finance minister
+1,ceasefire deal sealed for rebel pocket near damascus,ceasefire deal sealed rebel pocket near damascus
+0,note to saturday night live: making fun of trump isn‚t brave or funny! [video],note saturday night live making fun trump isnt brave funny video
+1,u.s. north korea clash at u.n. forum over nuclear weapons,u north korea clash un forum nuclear weapon
+1,'jihadi gran' gets 10 years after joining son in syria,jihadi gran get year joining son syria
+1,italy's 5-star launches vote for leader di maio hot favorite,italy star launch vote leader di maio hot favorite
+0,rapper who met with obama in white house to strategize,rapper met obama white house strategize
+1,'brexit not a game' eu's barnier says,brexit game eu barnier say
+0,lol! cnn host don lemon tells viewers: ‚we will not insult your intelligence‚ by reporting on susan rice spying scandal [video],lol cnn host lemon tell viewer insult intelligence reporting susan rice spying scandal video
+1,austria's far-right party accuses conservatives of stealing campaign ideas,austria farright party accuses conservative stealing campaign idea
+0,oops! did the media think voters would forget about hillary‚s ‚friend and mentor‚ late kkk leader robert byrd? [video],oops medium think voter would forget hillary friend mentor late kkk leader robert byrd video
+1,dna tests on dali's body refute woman's paternity claim,dna test dali body refute woman paternity claim
+0,congress just dealt a big blow to obama and his favorite terror group [video],congress dealt big blow obama favorite terror group video
+1,trump says giving peace a chance before u.s. embassy move to jerusalem: interview,trump say giving peace chance u embassy move jerusalem interview
+1,iran's soleimani arrives in kurdish region for talks about crisis with baghdad,iran soleimani arrives kurdish region talk crisis baghdad
+1,turnout high as iraqi kurds defy threats to hold independence vote,turnout high iraqi kurd defy threat hold independence vote
+1,u.s. condemns arrest of istanbul consulate worker,u condemns arrest istanbul consulate worker
+1,philippine soldiers kill nine maoist rebels in gunbattle,philippine soldier kill nine maoist rebel gunbattle
+1,media says trump cannot use anonymous sources,medium say trump use anonymous source
+0,does cnn really have a ‚cosmopolitan bias‚?,cnn really cosmopolitan bias
+1,in volatile kenya mp and former senator detained over hate speech allegations,volatile kenya mp former senator detained hate speech allegation
+0,playboy ‚reporter‚ whines about getting no respect from trump‚s female deputy press secretary [video],playboy reporter whine getting respect trump female deputy press secretary video
+1,macedonia's pro-western social democrats claim victory in local elections,macedonia prowestern social democrat claim victory local election
+0,stung by reputation taiwan looks to turn corner on money laundering,stung reputation taiwan look turn corner money laundering
+0,not kidding: arizona newspaper concerned border fence too high for illegals to cross safely,kidding arizona newspaper concerned border fence high illegals cross safely
+1,canada's trudeau defends finance minister amid ethics questions,canada trudeau defends finance minister amid ethic question
+0,misleading mainstream media is pushing false narrative that trump electors could steal election from him ‚why it‚s not gonna happen‚and why their attack on our democracy is a really bad idea,misleading mainstream medium pushing false narrative trump elector could steal election gon na happenand attack democracy really bad idea
+0,is our first amendment right being stolen by thugs? young man saved by cops after he was savagely beaten by black lives matter mob for wearing trump hat [video],first amendment right stolen thug young man saved cop savagely beaten black life matter mob wearing trump hat video
+1,what we know so far about the london train bomb,know far london train bomb
+1,madrid representative in catalonia apologizes for police violence during independence vote,madrid representative catalonia apologizes police violence independence vote
+0,a mom brings a truth bomb to the bathroom controversy and it goes viral‚awesome!,mom brings truth bomb bathroom controversy go viralawesome
+1,u.n. says 78000 civilians could be trapped in iraq's hawija,un say civilian could trapped iraq hawija
+1,approval rating for brazil's temer plummets: poll,approval rating brazil temer plummet poll
+1,trump spanish pm rajoy say they oppose catalonia independence bid,trump spanish pm rajoy say oppose catalonia independence bid
+1,priest rescued as philippine troops retake marawi militant stronghold,priest rescued philippine troop retake marawi militant stronghold
+0,comedy gold! bernie sanders has hilarious meltdown over repeal of obamacare: ‚if you are old..if you‚re 55-60 yrs of age and don‚t have health insurance,comedy gold bernie sander hilarious meltdown repeal obamacare oldif youre yr age dont health insurance
+0,texas church shooter: years before ‚soft target‚ attack,texas church shooter year soft target attack
+1,modi says india shares myanmar's concern about 'extremist violence',modi say india share myanmar concern extremist violence
+0,obama‚s gal pal loretta lynch won‚t recuse herself from crooked hillary‚s criminal investigation‚despite private meeting with hillary‚s impeached husband,obamas gal pal loretta lynch wont recuse crooked hillary criminal investigationdespite private meeting hillary impeached husband
+0,breaking undercover video: democrat operative‚‚we‚re starting anarchy here‚‚hillary knows what‚s going on‚ mentally ill people paid to start violence‚admits dems planned riots at chicago trump rally [video],breaking undercover video democrat operativewere starting anarchy herehillary know whats going mentally ill people paid start violenceadmits dems planned riot chicago trump rally video
+1,pro-independence from china posters appearing on hong kong campuses stoke new tension,proindependence china poster appearing hong kong campus stoke new tension
+0,leftist media destroyed mike flynn,leftist medium destroyed mike flynn
+0,fake news week: mainstream media ‚ all the fake news that‚s fit to print,fake news week mainstream medium fake news thats fit print
+1,czech vote winner babis wants active eu role not favoring government with extremists,czech vote winner babis want active eu role favoring government extremist
+1,trump to meet latin american leaders with eye on venezuela,trump meet latin american leader eye venezuela
+0,cnn‚s don lemon tries to blame trump‚cuts off guest when he won‚t agree about montana body slamming incident [video],cnns lemon try blame trumpcuts guest wont agree montana body slamming incident video
+0,iran ‚will respond‚ if us moves to designate revolutionary guard as ‚terrorist group‚,iran respond u move designate revolutionary guard terrorist group
+0,[video] our divider in chief,video divider chief
+1,france's macron says mistake to pull out of iran nuclear deal,france macron say mistake pull iran nuclear deal
+0,breaking news: bernie supporters caught plagiarizing trump supporters by chanting‚. ‚lock her up!‚ [video],breaking news bernie supporter caught plagiarizing trump supporter chanting lock video
+0,ben carson speaks out on trump controversy‚democrats are panicking,ben carson speaks trump controversydemocrats panicking
+0,breaking: felon wearing black lives matter t-shirt fires 17 shots into indianapolis police officer‚s home‚screamed ‚i hate police‚ [video],breaking felon wearing black life matter tshirt fire shot indianapolis police officer homescreamed hate police video
+1,u.n. fears 'further exodus' of muslim rohingya from myanmar,un fear exodus muslim rohingya myanmar
+1,fierce firefight as philippines' toughest urban war down to last building,fierce firefight philippine toughest urban war last building
+1,lithuania's social democrat mps disobey party to stay in government,lithuania social democrat mp disobey party stay government
+1,turkey says myanmar allows first foreign aid deliveries,turkey say myanmar allows first foreign aid delivery
+1,nigerian vp osinbajo says running for presidency not 'on the cards',nigerian vp osinbajo say running presidency card
+0,hollywood director tried to make political statement by wearing dress from ‚majority muslim nation‚ to #oscars‚so we suggested a more sharia compliant gown,hollywood director tried make political statement wearing dress majority muslim nation oscarsso suggested sharia compliant gown
+1,trump says to call uk's may on friday following train blast,trump say call uk may friday following train blast
+1,u.n. 'appalled' at mass hangings in iraq concerned more may follow,un appalled mass hanging iraq concerned may follow
+1,xi says china will continue to open its economy deepen financial reforms,xi say china continue open economy deepen financial reform
+1,pakistan's ruling party nominates ousted pm sharif to lead it,pakistan ruling party nominates ousted pm sharif lead
+0,hillary‚s secret weapon: evan mcmullin is cia-goldman sachs candidate,hillary secret weapon evan mcmullin ciagoldman sachs candidate
+0,race-baiting cop haters dealt major blow: baltimore judge finds no evidence of crime committed against freddie grey,racebaiting cop hater dealt major blow baltimore judge find evidence crime committed freddie grey
+1,syrians vote in kurdish-led regions of north,syrian vote kurdishled region north
+1,former thai pm thaksin to be charged with royal insult: attorney general,former thai pm thaksin charged royal insult attorney general
+0,liberal american student gets brutal lesson in american exceptionalism by irish journalist [video],liberal american student get brutal lesson american exceptionalism irish journalist video
+1,twitter ‚off-boards‚ (bans) rt and sputnik ads ahead of capitol hill testimony,twitter offboards ban rt sputnik ad ahead capitol hill testimony
+1,hungary demands faster eu nato integration of west balkans,hungary demand faster eu nato integration west balkan
+1,bangladesh carving out forest land to shelter desperate rohingya,bangladesh carving forest land shelter desperate rohingya
+1,malawi 'vampirism' mania spreads as two die in mob violence,malawi vampirism mania spread two die mob violence
+0,episode #126 ‚ sunday wire: ‚d√©j√† vu 1968!‚ with guests matthew richer and basil valentine,episode sunday wire dj vu guest matthew richer basil valentine
+0,violent radical commie angela davis has a strategy to beat trump that every american should hear‚we all need to know the end game!,violent radical commie angela davis strategy beat trump every american hearwe need know end game
+0,episode #162 ‚ sunday wire: ‚the revolution will not be televised‚ with guest vanessa beeley,episode sunday wire revolution televised guest vanessa beeley
+0,armed men destroy two dozen logging trucks in chile indigenous dispute,armed men destroy two dozen logging truck chile indigenous dispute
+0,the genealogy of trump‚s u-turn on palestine,genealogy trump uturn palestine
+0,watch dinesh d‚souza‚s great comeback to a student who called him a ‚hack‚ [video],watch dinesh dsouzas great comeback student called hack video
+0,msnbc‚s hate-filled liberal host chris matthews makes joke about president trump assassinating his son-in-law‚no media outrage,msnbcs hatefilled liberal host chris matthew make joke president trump assassinating soninlawno medium outrage
+0,wow! remember when media said trump mocked disabled reporter? here‚s proof they lied! [video],wow remember medium said trump mocked disabled reporter here proof lied video
+0,media lie exposed: hundreds of students rally in support of fired sc school cop: fight back against cop-hating,medium lie exposed hundred student rally support fired sc school cop fight back cophating
+1,exiled chinese tycoon guo seeking asylum in u.s.,exiled chinese tycoon guo seeking asylum u
+0,hillary supporters can now add ‚anti-trump‚ tony to her ‚basket of sex offenders‚ [video],hillary supporter add antitrump tony basket sex offender video
+0,sarah huckabee-sanders destroys room full of fake news reporters‚encourages every american to watch video exposing #veryfakenews cnn [video],sarah huckabeesanders destroys room full fake news reportersencourages every american watch video exposing veryfakenews cnn video
+1,uk's hammond urges party to unite on brexit says eu is 'the enemy',uk hammond urge party unite brexit say eu enemy
+1,turkish soldier killed in pkk attack in southeast: sources,turkish soldier killed pkk attack southeast source
+0,boiler room #66 ‚ globo-terror & the pokego-pocalypse,boiler room globoterror pokegopocalypse
+0,outrage! student threatens violence against trump in high school yearbook quote,outrage student threatens violence trump high school yearbook quote
+0,trump on hurricane irma: 'this is some big monster',trump hurricane irma big monster
+1,number of rohingya fleeing from myanmar to bangladesh at 370000: u.n.,number rohingya fleeing myanmar bangladesh un
+1,myanmar‚s suu kyi sets out aid plan to end rohingya crisis,myanmar suu kyi set aid plan end rohingya crisis
+1,uk customs ready for 'no deal' brexit finance minister says,uk custom ready deal brexit finance minister say
+1,norfolk southern resumes limited trains service in irma-hit areas,norfolk southern resume limited train service irmahit area
+0,this year: let‚s make christmas great again‚,year let make christmas great
+0,[video] awesome: texas mom frustrated by mckinney pool incident tells parents to teach kids to respect authority,video awesome texas mom frustrated mckinney pool incident tell parent teach kid respect authority
+0,all kidding aside‚did hillary just have a seizure in middle of q & a with journalists? you be the judge‚ [video],kidding asidedid hillary seizure middle q journalist judge video
+0,report: robert mueller targets trump son with grand jury,report robert mueller target trump son grand jury
+1,philippine president declares marawi liberated as battle goes on,philippine president declares marawi liberated battle go
+0,reince priebus embarrasses snarky nbc meet the press host for promoting fake russian rnc hacking story [video],reince priebus embarrasses snarky nbc meet press host promoting fake russian rnc hacking story video
+0,russian occupation of crimea marked by grave human rights violations - u.n.,russian occupation crimea marked grave human right violation un
+1,merkel has no regrets over refugee policy despite political cost,merkel regret refugee policy despite political cost
+1,egypt extends state of emergency for three months starting friday: official gazette,egypt extends state emergency three month starting friday official gazette
+0,liberal smack down of the day: watch what happens when a racist msnbc host tries to shame latino trump supporter for using ‚illegal‚ alien term [video],liberal smack day watch happens racist msnbc host try shame latino trump supporter using illegal alien term video
+1,indonesian school a launchpad for child fighters in syria's islamic state,indonesian school launchpad child fighter syria islamic state
+1,too little cash too much politics leaves unesco fighting for life,little cash much politics leaf unesco fighting life
+0,trey gowdy furious over lawless loretta lynch during clinton email hearing: ‚it was a total waste of time‚the facts are embarrassing for her presidential candidate [hillary]‚,trey gowdy furious lawless loretta lynch clinton email hearing total waste timethe fact embarrassing presidential candidate hillary
+0,"breaking: violence erupts outside of ‚deploraball‚ streets of d.c. against trump supporters [video]""",breaking violence erupts outside deploraball street dc trump supporter video
+0,henningsen on crosstalk: american foreign policy ‚dumbed down‚,henningsen crosstalk american foreign policy dumbed
+1,factbox: saudi king lifts ban on women driving - but what about other rights?,factbox saudi king lift ban woman driving right
+0,chicago area schools replacing books by white male authors with books that are ‚more culturally relevant‚,chicago area school replacing book white male author book culturally relevant
+0,hawks double down,hawk double
+1,france calls for catalonia discussions within spanish constitution,france call catalonia discussion within spanish constitution
+1,insight: rap and the party: china taps youth culture to hook millennial cadres,insight rap party china tap youth culture hook millennial cadre
+0,breaking dallas: dpd chief confirms 10 officers shot,breaking dallas dpd chief confirms officer shot
+1,u.s. sanctions seven iranian individuals two entities,u sanction seven iranian individual two entity
+1,u.s. lawmakers want 'supercharged' response to north korea nuclear tests,u lawmaker want supercharged response north korea nuclear test
+1,blast hits afghan capital near shi'ite mosque killing at least one,blast hit afghan capital near shiite mosque killing least one
+0,zakharova slams cia chief pompeo: stop making up anti-russian fiction,zakharova slam cia chief pompeo stop making antirussian fiction
+0,hurricane irma kills at least eight in saint martin: minister,hurricane irma kill least eight saint martin minister
+1,eu withholds $33 million loan to moldova over justice reform hold-up,eu withholds million loan moldova justice reform holdup
+0,transportation secretary: unequal distribution of sidewalks keeps poor from ‚shot at the american dream‚,transportation secretary unequal distribution sidewalk keep poor shot american dream
+0,russia-wikileaks conspiracy theory: ‚clinton claim ridiculous,russiawikileaks conspiracy theory clinton claim ridiculous
+1,russian military: us coalition predator drone spotted at time & place of syria un aid convoy attack,russian military u coalition predator drone spotted time place syria un aid convoy attack
+1,trump macron discuss joint counterterrorism operations in africa's sahel,trump macron discus joint counterterrorism operation africa sahel
+0,latina restaurant owner threatened after being called on stage at trump rally [video],latina restaurant owner threatened called stage trump rally video
+0,exposed! obama regime gave millions us tax dollars to radical soros groups used to take down conservative european nation‚s government,exposed obama regime gave million u tax dollar radical soros group used take conservative european nation government
+1,trump administration blacklists three officials for south sudan war,trump administration blacklist three official south sudan war
+0,college professor‚s severed trump head painting displayed in art gallery at largest public university in alaska: ‚after trump was elected,college professor severed trump head painting displayed art gallery largest public university alaska trump elected
+0,oops! hecklers force hillary off stage in la after only one minute [video],oops heckler force hillary stage la one minute video
+1,pierre berge who co-founded yves saint laurent fashion house dies,pierre berge cofounded yves saint laurent fashion house dy
+1,trump says democracy must be restored in venezuela soon,trump say democracy must restored venezuela soon
+0,incoming freshmen are put on notice with welcome letter from u of chicago dean of students‚‚trigger warning‚ crybabies stay home,incoming freshman put notice welcome letter u chicago dean studentstrigger warning crybaby stay home
+0,sickening: soros‚ protesters block u.s. air force vets from entering inauguration ceremony [video],sickening soros protester block u air force vet entering inauguration ceremony video
+0,day after dallas cops‚ memorial,day dallas cop memorial
+0,breaking: leftist democrat mayor ordered baltimore police to stand down [video],breaking leftist democrat mayor ordered baltimore police stand video
+0,wow! texas imam agrees with trump about shutting down muslim immigration: ‚peace comes before religion‚,wow texas imam agrees trump shutting muslim immigration peace come religion
+1,china says peaceful settlement for north korea issue wanted,china say peaceful settlement north korea issue wanted
+1,south korea approves $8 million aid to north korea timing to be decided later,south korea approves million aid north korea timing decided later
+1,u.s.-led coalition says islamic state convoy remains in syrian desert,usled coalition say islamic state convoy remains syrian desert
+1,uk pm may: we must fight for the political mainstream,uk pm may must fight political mainstream
+1,turkey will deal with iraqi central government pms to meet soon: spokesman,turkey deal iraqi central government pm meet soon spokesman
+1,france says north korea close to long-range missile capability,france say north korea close longrange missile capability
+1,catalan leader backs mediation to resolve regional crisis,catalan leader back mediation resolve regional crisis
+1,machete attacker,machete attacker
+1,turkey says u.s. indictment of former minister amounts to 'coup attempt',turkey say u indictment former minister amount coup attempt
+0,what?! john mccain says rand paul is ‚working for putin‚,john mccain say rand paul working putin
+0,far-left austrian president: ‚we must ask all women to wear a headscarf‚‚you won‚t believe why! [video],farleft austrian president must ask woman wear headscarfyou wont believe video
+1,spain pm calls on catalan leader to drop independence plans to avoid 'greater evils',spain pm call catalan leader drop independence plan avoid greater evil
+1,turkish foreign minister says joint operation with iraq on table after referendum,turkish foreign minister say joint operation iraq table referendum
+1,filipino bishops urge bell-ringing prayers to protest bloody drugs war,filipino bishop urge bellringing prayer protest bloody drug war
+0,new movie black lives matter terrorists don‚t want you to see‚what really happened in ferguson courtroom,new movie black life matter terrorist dont want seewhat really happened ferguson courtroom
+1,police charge czech pm candidate babis with subsidy fraud,police charge czech pm candidate babis subsidy fraud
+1,venezuela's injured activists struggle to heal,venezuela injured activist struggle heal
+1,assad aide says syria will fight any force including u.s.-backed militias,assad aide say syria fight force including usbacked militia
+0,boom! trump holds ‚dishonest media‚ accountable : nbc cuts 9 minutes from kellyanne conway interview‚trump exposes them on twitter [video],boom trump hold dishonest medium accountable nbc cut minute kellyanne conway interviewtrump expose twitter video
+0,boiler room ep #74 ‚ dustification & the crooked witch of the left,boiler room ep dustification crooked witch left
+0,liberal hack anchor jumps on the fox harassment train: ‚grossly inappropriate‚ [video],liberal hack anchor jump fox harassment train grossly inappropriate video
+1,japan calls north korea's behavior 'absolutely unacceptable',japan call north korea behavior absolutely unacceptable
+0,boiler room ep #122 ‚ charlottesville & the history of violent cultural revolution,boiler room ep charlottesville history violent cultural revolution
+1,rockets strike downtown kabul no casualties reported,rocket strike downtown kabul casualty reported
+1,ukraine's controversial law reforms open to revision: justice minister,ukraine controversial law reform open revision justice minister
+1,missing persons agency opens high-tech global hq in netherlands,missing person agency open hightech global hq netherlands
+0,breaking: violence erupts (again) in ferguson‚two people shot [video],breaking violence erupts fergusontwo people shot video
+1,kurdish rebel leader talabani sought iraqi unity as president,kurdish rebel leader talabani sought iraqi unity president
+0,minnesota church places 1800 ‚blessed ramadan‚ signs around twin cities to make ‚muslims feel more welcome‚ [video],minnesota church place blessed ramadan sign around twin city make muslim feel welcome video
+0,"treason? white house says it‚s ‚entirely likely‚ ‚even expected‚ iran will use $billions in sanctions relief for terrorism [video]""",treason white house say entirely likely even expected iran use billion sanction relief terrorism video
+1,despite strains vietnam and china forge closer economic ties,despite strain vietnam china forge closer economic tie
+1,brazil supreme court blocks extradition of italian leftist ex-guerilla battisti,brazil supreme court block extradition italian leftist exguerilla battisti
+0,sickening: angry black student spray paints racist graffiti all over uw madison campus‚radical professors,sickening angry black student spray paint racist graffiti uw madison campusradical professor
+1,german court sentences 88-year-old holocaust denier to jail,german court sentence yearold holocaust denier jail
+1,xi calls for concerted effort to resolve korean peninsula issue: xinhua,xi call concerted effort resolve korean peninsula issue xinhua
+1,fourth ex-governor from mexico's pri arrested on corruption charges,fourth exgovernor mexico pri arrested corruption charge
+0,marketing firm ceo gives job applicants a ‚snowflake test‚ [video],marketing firm ceo give job applicant snowflake test video
+1,soccer star weah leads most counties in liberia presidential election vote,soccer star weah lead county liberia presidential election vote
+1,trump administration faces flood of lawsuits over executive immigration ban,trump administration face flood lawsuit executive immigration ban
+0,boiler room ep #114 ‚ psychos in the compromised media,boiler room ep psycho compromised medium
+0,watch bill o‚reilly‚s exclusive interview with president trump [video],watch bill oreillys exclusive interview president trump video
+1,barnier says only off-the-peg deals open to britain post-brexit,barnier say offthepeg deal open britain postbrexit
+0,bombshell: clinton wikileak exposes entire ‚shadow government‚ ‚ jay dyer (vid),bombshell clinton wikileak expose entire shadow government jay dyer vid
+0,leftists use trump to teach kids how to use violence against someone you disagree with: ‚i want to kill him‚ [video],leftist use trump teach kid use violence someone disagree want kill video
+0,chip off the old block: harvard bound malia obama caught in frat house picture with large party bong,chip old block harvard bound malia obama caught frat house picture large party bong
+1,cambodia pm calls on u.s. to withdraw peace corps volunteers,cambodia pm call u withdraw peace corp volunteer
+0,president trump‚s sr. staff member omarosa manigault marries democrat pastor at trump‚s dc hotel amid death threats [video],president trump sr staff member omarosa manigault marries democrat pastor trump dc hotel amid death threat video
+1,protest greets former trump adviser bannon at hong kong investor event,protest greets former trump adviser bannon hong kong investor event
+0,[video] baltimore mayor tries to embarrass fox news reporter‚white house suggests gun control will solve crime in baltimore,video baltimore mayor try embarrass fox news reporterwhite house suggests gun control solve crime baltimore
+1,young japanese voters happy with job market lean toward ruling party,young japanese voter happy job market lean toward ruling party
+1,russian foreign ministry to meet visiting north korean diplomat - ria,russian foreign ministry meet visiting north korean diplomat ria
+1,nz first leader welcomes politically driven drop in nz$,nz first leader welcome politically driven drop nz
+0,in-your-face censorship! cnn cuts feed of pro-trump congressman as soon as he brought up wikileaks [video],inyourface censorship cnn cut feed protrump congressman soon brought wikileaks video
+0,brilliant: [video] sheriff clarke explains how #blackliesmatter is bastard child of #handsupdontshoot lie,brilliant video sheriff clarke explains blackliesmatter bastard child handsupdontshoot lie
+1,hollywood suffers meltdown over trump‚s withdraw from paris climate deal,hollywood suffers meltdown trump withdraw paris climate deal
+0,lt col tony shaffer slams jim clapper on trump criticism: ‚he‚s an idiot!‚ [video],lt col tony shaffer slam jim clapper trump criticism he idiot video
+0,crooked hillary clinton‚s latest speech to be crashed by angry haitians pushing for answers,crooked hillary clinton latest speech crashed angry haitian pushing answer
+1,u.n. enacts sanctions against anyone hindering mali peace,un enacts sanction anyone hindering mali peace
+1,catalan government says voters may use any polling station in referendum,catalan government say voter may use polling station referendum
+1,iran unveils a ballistic missile with range of 2000 km: tasnim news,iran unveils ballistic missile range km tasnim news
+1,italy's 5-star says euro referendum is 'last resort',italy star say euro referendum last resort
+1,suicide bomber kills 13 others in northeast nigerian city: police official,suicide bomber kill others northeast nigerian city police official
+0,trump asks o‚reilly,trump asks oreilly
+0,boiler room ep #129 ‚ mandalay ‚massacre:‚ initial boil down with hesh,boiler room ep mandalay massacre initial boil hesh
+1,russia knew u.s.-backed syrian forces were in area it bombed: pentagon,russia knew usbacked syrian force area bombed pentagon
+1,factbox: humanitarian crisis in bangladesh as 370000 rohingya flee myanmar,factbox humanitarian crisis bangladesh rohingya flee myanmar
+0,espn senior writer says cops,espn senior writer say cop
+1,afghanistan will never again be militant sanctuary: u.s. ambassador,afghanistan never militant sanctuary u ambassador
+0,snowflake goes berserk on nypd during the rent-a-mob protest at trump tower [video],snowflake go berserk nypd rentamob protest trump tower video
+1,uk says defense commitment in nordic and baltic states won't waver after brexit,uk say defense commitment nordic baltic state wont waver brexit
+1,abe to push reform of japan's pacifist constitution after election win,abe push reform japan pacifist constitution election win
+0,the truth about alicia machado blows up‚backfires big-time on hillary‚s dirty campaign! [video],truth alicia machado blow upbackfires bigtime hillary dirty campaign video
+0,white students turned away from ‚anti-racism‚ event because black people deserve a ‚safe place‚ without white people,white student turned away antiracism event black people deserve safe place without white people
+1,yale disfigures stone carving to disarm puritan pointing musket,yale disfigures stone carving disarm puritan pointing musket
+0,eye-opening: why liberals won‚t talk about white,eyeopening liberal wont talk white
+1,us boots: us marines deployed for ground combat in iraq (to defend oil fields),u boot u marine deployed ground combat iraq defend oil field
+1,nine dead seven missing after irma hits french islands: minister,nine dead seven missing irma hit french island minister
+1,us media silence as pentagon deploys rangers armoured regiment on the ground in syria,u medium silence pentagon deploys ranger armoured regiment ground syria
+1,trial of alleged ringleader of benghazi attack begins in washington,trial alleged ringleader benghazi attack begin washington
+1,china communist party complains about 'fabricated' twitter account,china communist party complains fabricated twitter account
+0,professor: political ignorance is ‚going to have consequences‚,professor political ignorance going consequence
+0,cnn clown who cries about ‚fake news‚ uses unverified story to push islamaphobia lie on viewers [video],cnn clown cry fake news us unverified story push islamaphobia lie viewer video
+0,classless kennedy family with history of philanders,classless kennedy family history philanders
+0,viral video: german youth deliver powerful anti-refugee message to political leaders: ‚we are ready for the reconquista!‚,viral video german youth deliver powerful antirefugee message political leader ready reconquista
+0,peace prize president obama approved $200 billion in arms deals since 2009,peace prize president obama approved billion arm deal since
+1,anti-zuma mp quits south africa's 'corrupt' anc,antizuma mp quits south africa corrupt anc
+0,britain‚s theresa may refuses to wear headscarf on saudi arabia visit‚media compares her bravery to hillary,britain theresa may refuse wear headscarf saudi arabia visitmedia compare bravery hillary
+0,americans expected obama to call for calm‚instead used press conference to bash trump [video],american expected obama call calminstead used press conference bash trump video
+1,trump advisers craft more orderly response to north korea after latest test,trump adviser craft orderly response north korea latest test
+0,bigger than snowden: wikileaks ‚vault 7‚ classified cia leak ‚ what does it mean?,bigger snowden wikileaks vault classified cia leak mean
+0,what was he thinking? disheveled obama yells from air force one at bill clinton: ‚bill,thinking disheveled obama yell air force one bill clinton bill
+1,tokyo governor koike: will examine steps to exit nuclear power dependence by 2030,tokyo governor koike examine step exit nuclear power dependence
+0,french journalist hit with huge fine for ‚inciting hate‚ against muslims‚even though we all know what he said is true,french journalist hit huge fine inciting hate muslimseven though know said true
+0,young woman pleads with president trump to keep talking about muslim invaders [video],young woman pleads president trump keep talking muslim invader video
+1,catalan government to appeal direct rule in constitutional court,catalan government appeal direct rule constitutional court
+1,activist: ‚this is where you can make the most impact‚,activist make impact
+0,watch as trump gatecrashes glenn beck‚s cruz caucus event in nevada,watch trump gatecrashes glenn beck cruz caucus event nevada
+0,rachel maddow announces plan to reveal trump‚s tax returns‚hey maddow,rachel maddow announces plan reveal trump tax returnshey maddow
+0,check out new ben & jerry‚s flavor: touting america‚s favorite socialist,check new ben jerry flavor touting america favorite socialist
+1,british police release two men in parsons green attack probe,british police release two men parson green attack probe
+1,u.s. military says airstrike in somalia kills three al shabaab fighters,u military say airstrike somalia kill three al shabaab fighter
+1,gaddafi son in good health following politics: family lawyer,gaddafi son good health following politics family lawyer
+1,iran regional behavior means nuclear deal not enough: macron,iran regional behavior mean nuclear deal enough macron
+0,only 6 people show up to see hillary at tx airport‚and she ignored all 6 of them,people show see hillary tx airportand ignored
+1,nothing should change says britain in bid for post-brexit security pact,nothing change say britain bid postbrexit security pact
+0,somalia rebukes its states for breaking with qatar,somalia rebuke state breaking qatar
+1,british lesbian wins right to spousal visa in landmark hong kong case,british lesbian win right spousal visa landmark hong kong case
+1,guatemala congress says it will withdraw contested graft reforms,guatemala congress say withdraw contested graft reform
+1,u.s. army probes fake evacuation orders sent to u.s. military families in south korea,u army probe fake evacuation order sent u military family south korea
+0,breaking story! true evil exposed: [video] planned parenthood director caught on video selling aborted baby parts,breaking story true evil exposed video planned parenthood director caught video selling aborted baby part
+0,stephen colbert‚s response to his vulgar remarks about trump made americans want him fired even more‚#firecolbert [video],stephen colbert response vulgar remark trump made american want fired even morefirecolbert video
+0,winning! george soros group gets black eye when hannity advertiser comes back after allegedly pulling ads over seth rich story,winning george soros group get black eye hannity advertiser come back allegedly pulling ad seth rich story
+0,the view‚s loudmouth liberal joy behar calls bill clinton‚s rape victims ‚tramps‚ on show targeted to women [video],view loudmouth liberal joy behar call bill clinton rape victim tramp show targeted woman video
+0,real indian,real indian
+1,brazil's new top prosecutor is sworn in says will maintain graft fight,brazil new top prosecutor sworn say maintain graft fight
+1,pakistan's anti-corruption agency starts criminal investigation into ex-pm finance minister,pakistan anticorruption agency start criminal investigation expm finance minister
+0,bosnian experts find 86 skulls at scene of 90s war massacre,bosnian expert find skull scene war massacre
+1,uk brexit bill not scheduled for debate in parliament next week,uk brexit bill scheduled debate parliament next week
+0,whoa! chicago tribune: ‚if nation was more important to democrats than power‚‚they would ‚ask her to step down now‚,whoa chicago tribune nation important democrat powerthey would ask step
+0,facebook partners with snopes & other so-called ‚fact checking‚ sites to burry ‚fake news‚,facebook partner snopes socalled fact checking site burry fake news
+1,grace mugabe returns to zimbabwe campaign trail after assault charge,grace mugabe return zimbabwe campaign trail assault charge
+0,beyonce performed this sickening,beyonce performed sickening
+0,boiler room ‚ examination,boiler room examination
+0,a poem: ‚twas the night before cnn‚s christmas‚‚,poem twas night cnns christmas
+0,watch what happens to freedom when a nation puts political correctness before its citizens [video],watch happens freedom nation put political correctness citizen video
+0,boiler room ep #111 ‚ build-a-world-order-burger,boiler room ep buildaworldorderburger
+1,turkish prosecutor seeks 15-year jail sentence for rights activists,turkish prosecutor seek year jail sentence right activist
+0,gerald celente: top 10 trends for 2017,gerald celente top trend
+1,macron urges the french to value success rejects 'president of rich' tag,macron urge french value success reject president rich tag
+0,the entire mainstream warmongering media is fake,entire mainstream warmongering medium fake
+0,navy seals forced to abort american hostage rescue effort‚obama too busy golfing on martha‚s vineyard to approve mission,navy seal forced abort american hostage rescue effortobama busy golfing marthas vineyard approve mission
+1,turkey wants iraq's kurdish region to drop referendum avoid sanctions,turkey want iraq kurdish region drop referendum avoid sanction
+0,college punishes success by not allowing yacht club at prestigious school [video],college punishes success allowing yacht club prestigious school video
+1,top u.s. general says exiting iran nuclear pact would make future deals tough,top u general say exiting iran nuclear pact would make future deal tough
+0,watch #blacklivesmatter students panic when asian student turns tables on them‚talks about racial harassment by blacks,watch blacklivesmatter student panic asian student turn table themtalks racial harassment black
+0,hope for forgotten america‚why trump is last chance for this steel town where 94% of jobs have gone [video],hope forgotten americawhy trump last chance steel town job gone video
+0,breaking: ford ceo cites trump in announcement to scrap $1.6 billion mexico plant‚will invest in mi instead [video],breaking ford ceo cite trump announcement scrap billion mexico plantwill invest mi instead video
+1,u.s. students' rape allegation against italian police has 'some basis' minister says,u student rape allegation italian police basis minister say
+1,china's president xi says will continue years-long war on smog,china president xi say continue yearslong war smog
+0,best meltdown of 2016! tucker carlson blasts senior ‚writer‚ at newsweek: ‚was trump in a mental hospital or not?‚answer the question!‚ [video],best meltdown tucker carlson blast senior writer newsweek trump mental hospital notanswer question video
+0,brian williams: it‚s ‚our job‚ to ‚scare people to death‚ over north korea [video],brian williams job scare people death north korea video
+1,spain catalonia clash over policing as illegal independence vote nears,spain catalonia clash policing illegal independence vote nears
+1,vietnam vet,vietnam vet
+0,black harvard students host separate segregated graduation ceremony,black harvard student host separate segregated graduation ceremony
+0,husband of presidential candidate under criminal investigation has secret meeting on taxpayer funded plane with obama‚s crooked ag [video],husband presidential candidate criminal investigation secret meeting taxpayer funded plane obamas crooked ag video
+1,jailed british-iranian charity worker received letter from ex-uk pm cameron: prosecutor,jailed britishiranian charity worker received letter exuk pm cameron prosecutor
+1,france's macron says raqqa fall not end of battle against islamic state,france macron say raqqa fall end battle islamic state
+1,kremlin 'deeply concerned' by rising tension on korean peninsula,kremlin deeply concerned rising tension korean peninsula
+0,cnn cuts feed of gop rep scott taylor when he cites new fbi report showing 30% of domestic terror cases involve refugees,cnn cut feed gop rep scott taylor cite new fbi report showing domestic terror case involve refugee
+1,myanmar‚s suu kyi working to get aid to rohingya: mcconnell,myanmar suu kyi working get aid rohingya mcconnell
+0,smug cnn anchors say they won‚t release identity of trump/wwe video creator because of his ‚remarkable‚ apology,smug cnn anchor say wont release identity trumpwwe video creator remarkable apology
+1,elite nazi-allied order from hungary claims trump adviser sebastian gorka is sworn member,elite naziallied order hungary claim trump adviser sebastian gorka sworn member
+0,gay man and former liberal makes riveting youtube video urging americans to vote for trump: ‚muslim countries execute gays‚that‚s not radical‚that‚s common law‚,gay man former liberal make riveting youtube video urging american vote trump muslim country execute gaysthats radicalthats common law
+1,eu parliament's brexit coordinator urges may to address chamber,eu parliament brexit coordinator urge may address chamber
+1,north korea says goal is 'equilibrium' with u.s. after testing hwasong-12 missile: kcna,north korea say goal equilibrium u testing hwasong missile kcna
+1,protesters force rohingya refugees to flee sri lanka safe house,protester force rohingya refugee flee sri lanka safe house
+1,tunisia's chahed names new cabinet after tensions,tunisia chahed name new cabinet tension
+1,turkey vows to take 'all measures' if iraqi kurdish referendum endangers security,turkey vow take measure iraqi kurdish referendum endangers security
+0,horrific human trafficking case: 8 people found dead,horrific human trafficking case people found dead
+0,who‚s better: ‚dangerous donald‚ or ‚crooked hillary‚?,who better dangerous donald crooked hillary
+0,six prominent democrats who called for violence against americans that don‚t agree with their politics [video],six prominent democrat called violence american dont agree politics video
+1,french union says will not join far-left protest against macron reforms,french union say join farleft protest macron reform
+0,walmart makes senior veteran greeter remove military cap‚okay for muslim employee to wear this,walmart make senior veteran greeter remove military capokay muslim employee wear
+0,trump blasts john mccain and lindsey graham: they ‚should focus their energies on isis,trump blast john mccain lindsey graham focus energy isi
+1,u.s. flies bombers over korea as trump discusses options,u fly bomber korea trump discusses option
+1,uk looking at all measures to pressure north korea: pm may's spokeswoman,uk looking measure pressure north korea pm may spokeswoman
+1,u.n. braces for more rohingya to flee seeks access to rakhine myanmar,un brace rohingya flee seek access rakhine myanmar
+1,chinese media warns of ‚war‚ with us following tillerson‚s remarks south china sea,chinese medium warns war u following tillersons remark south china sea
+0,first open lesbian bishop wants to add muslim prayer room and remove all crosses from church‚here‚s why,first open lesbian bishop want add muslim prayer room remove cross churchheres
+0,would a hillary clinton presidency mean more wars?,would hillary clinton presidency mean war
+0,austrian justice system gives teen with homemade nazi tattoo same sentence as ‚refugee‚ convicted of anal rape of 72 year old,austrian justice system give teen homemade nazi tattoo sentence refugee convicted anal rape year old
+1,icao condemns north korea urges regulatory compliance,icao condemns north korea urge regulatory compliance
+0,say what? #blacklivesmatter textbooks to be used as part of common core curriculum in grades 6-12 [video],say blacklivesmatter textbook used part common core curriculum grade video
+1,egypt security forces arrest 12 suspected militants south of cairo: ministry,egypt security force arrest suspected militant south cairo ministry
+0,busted! abc/washington post poll showing hillary clinton leading trump by +12 is fake,busted abcwashington post poll showing hillary clinton leading trump fake
+0,sheriff clarke on obama‚s final days: ‚obama‚s like a tenant who‚s been evicted from a property,sheriff clarke obamas final day obamas like tenant who evicted property
+0,woman who wants to become dnc chair: ‚my job is to shut other white people down when they say,woman want become dnc chair job shut white people say
+1,cameroon anglophone protests reignite with separatist tinge,cameroon anglophone protest reignite separatist tinge
+1,ukraine cyber police chief says ukraine hit by 'badrabbit' malware,ukraine cyber police chief say ukraine hit badrabbit malware
+0,education secretary blocked and harrassed trying to enter d.c. school [video],education secretary blocked harrassed trying enter dc school video
+1,trump pledges 'close collaboration' with uk after attack: white house,trump pledge close collaboration uk attack white house
+0,no ex-president in 100 yrs has set up a shadow government‚gone to such lengths to undermine his successor [video],expresident yr set shadow governmentgone length undermine successor video
+1,may sides with madrid in catalonia stand-off,may side madrid catalonia standoff
+1,indian troops in firefight with rebels near border with myanmar,indian troop firefight rebel near border myanmar
+0,liberals see the light! huffpo columnist lets it rip on the obama ‚destruction‚ of the democrats [video],liberal see light huffpo columnist let rip obama destruction democrat video
+0,pull back the curtain on npr and pbs salaries! that‚ll convince you trump‚s right to cut,pull back curtain npr pb salary thatll convince trump right cut
+1,myanmar plays diplomatic card to avert u.n. censure over rohingya,myanmar play diplomatic card avert un censure rohingya
+1,scotland's snp must come up with 'doable' independence plan after brexit: salmond,scotland snp must come doable independence plan brexit salmond
+0,realist perspective: president trump,realist perspective president trump
+0,women in france fight back after muslim men ban them from sharing public spaces [video],woman france fight back muslim men ban sharing public space video
+1,how obama made it possible for protesters to be arrested and sent to jail for disrupting trump rallies,obama made possible protester arrested sent jail disrupting trump rally
+1,nigeria to hold presidential and parliamentary election on feb. 16 2019,nigeria hold presidential parliamentary election feb
+0,brutalized trump supporters win one! federal lawsuit against city of san jose goes forward [video],brutalized trump supporter win one federal lawsuit city san jose go forward video
+1,nigeria set to start mass trial of boko haram suspects behind closed doors,nigeria set start mass trial boko haram suspect behind closed door
+1,rebels say south sudan's use of uganda territory could spread instability,rebel say south sudan use uganda territory could spread instability
+0,lol! trump supporters sing ‚hey,lol trump supporter sing hey
+1,greek prime minister says turkey should continue its european orientation,greek prime minister say turkey continue european orientation
+1,another known wolf? nyc bombing suspect probed by fbi,another known wolf nyc bombing suspect probed fbi
+0,stealing the election‚shocking cbs report shows how anyone can hack the vote for $15‚video shows how easy it is to rig the system,stealing electionshocking cbs report show anyone hack vote video show easy rig system
+1,putin tells maduro: we'll keep cooperating with you on economy,putin tell maduro well keep cooperating economy
+1,new zealand party leaders meet with caucuses to start negotiation talks,new zealand party leader meet caucus start negotiation talk
+1,taiwan seeks to build soft power with retooled southbound policy,taiwan seek build soft power retooled southbound policy
+0,canada sends troops to u.s. border to deal with illegals and asylum seekers running from trump‚s new policies on immigration,canada sends troop u border deal illegals asylum seeker running trump new policy immigration
+1,irish pm says may speech 'genuine effort to move things forward',irish pm say may speech genuine effort move thing forward
+0,new york times weasel behind alleged comey memo admits to lyin‚ brian williams he never actually saw memo [video],new york time weasel behind alleged comey memo admits lyin brian williams never actually saw memo video
+1,catalan government says 90 percent voted to leave spain,catalan government say percent voted leave spain
+1,factbox: humanitarian crisis in bangladesh as 313000 rohingyas flee myanmar,factbox humanitarian crisis bangladesh rohingyas flee myanmar
+0,unpopular hillary hosts rally in empty charlotte,unpopular hillary host rally empty charlotte
+0,[video] trump to cnn‚s anderson cooper ‚the people don‚t trust you,video trump cnns anderson cooper people dont trust
+0,libertarian presidential candidate gary johnson embraces every manufactured liberal crisis: black lives matter‚global warming‚colonization on mars [video],libertarian presidential candidate gary johnson embrace every manufactured liberal crisis black life matterglobal warmingcolonization mar video
+1,kurdistan region refuses to hand over border crossings to iraqi government: rudaw,kurdistan region refuse hand border crossing iraqi government rudaw
+0,sunday screening: counter intelligence ‚ the deep state,sunday screening counter intelligence deep state
+0,milwaukee art museum to display this huge portrait of pope francis made of condoms,milwaukee art museum display huge portrait pope francis made condom
+1,qatar emir again urges dialogue trump says dispute to be resolved quickly,qatar emir urge dialogue trump say dispute resolved quickly
+0,pro-hillary saudi prince just gave americans a great reason to vote for trump,prohillary saudi prince gave american great reason vote trump
+1,six people believed injured in suspected london acid attack,six people believed injured suspected london acid attack
+0,who will support ‚the bern‚? new numbers show obama stole an extra 6 months income from average working american since bush years,support bern new number show obama stole extra month income average working american since bush year
+1,mexico ex-first lady leaves opposition party for presidency bid,mexico exfirst lady leaf opposition party presidency bid
+0,key trump advisor: elton john will perform at inauguration for ‚first american president in us history that enters the white house with a pro-gay rights stance‚,key trump advisor elton john perform inauguration first american president u history enters white house progay right stance
+1,china to amend party constitution at october congress,china amend party constitution october congress
+1,germans content with national direction ahead of vote: survey,german content national direction ahead vote survey
+0,danish city overrun with muslim migrants makes pork mandatory on all municipal menus,danish city overrun muslim migrant make pork mandatory municipal menu
+0,boiler room: as the frogs slowly boil ‚ ep #40,boiler room frog slowly boil ep
+0,more questions than answers: was sandy hook shooter known to fbi prior to school massacre?,question answer sandy hook shooter known fbi prior school massacre
+0,kellyanne conway delivers knock out punch to smug jake tapper at cnn town hall forum [video],kellyanne conway delivers knock punch smug jake tapper cnn town hall forum video
+1,trump seeks tougher sanctions to prod north korea into negotiations,trump seek tougher sanction prod north korea negotiation
+0,liberal rag newsweek does hit piece calling trump ‚lazy boy‚‚social media hits back! [video],liberal rag newsweek hit piece calling trump lazy boysocial medium hit back video
+0,crazy video: anarchist tries to burn american flag then something awesome happens [video],crazy video anarchist try burn american flag something awesome happens video
+0,shock to the system: new poll says trump can beat hillary,shock system new poll say trump beat hillary
+0,lol! how to trigger a liberal on halloween: ‚make your costume the most tasteless,lol trigger liberal halloween make costume tasteless
+0,coke zero: what went wrong with the marco rubio brand?,coke zero went wrong marco rubio brand
+0,putin steals famous president bush quote in forceful denial of russian interference in u.s. elections‚makes surprising announcement about relations with u.s.,putin steal famous president bush quote forceful denial russian interference u electionsmakes surprising announcement relation u
+1,afghanistan: forgotten,afghanistan forgotten
+1,china to push for greater cooperation on graft terrorism at interpol meeting,china push greater cooperation graft terrorism interpol meeting
+0,patrick and hesher: ‚dni,patrick hesher dni
+0,alt-left vandalizes catholic saint statue: ‚the statue should come down‚,altleft vandalizes catholic saint statue statue come
+0,nothing big mac: donald trump jr caught in latest russiamania ragbag,nothing big mac donald trump jr caught latest russiamania ragbag
+1,pay 2 play: democratic convention ends amid controversy,pay play democratic convention end amid controversy
+1,turkish family of pakturk schools director abducted in pakistan: rights group,turkish family pakturk school director abducted pakistan right group
+0,trump was right about cnn being ‚very fake news‚: federal judge rules against cnn in ‚fake news‚ case‚may have acted with ‚actual malice‚,trump right cnn fake news federal judge rule cnn fake news casemay acted actual malice
+0,enablers who live in glass houses‚why hillary embracing porn star,enablers live glass houseswhy hillary embracing porn star
+0,flashback‚undercover video shows hillary telling top donor she stopped using email because of so many investigations: ‚why would i want to do email? can you imagine?‚,flashbackundercover video show hillary telling top donor stopped using email many investigation would want email imagine
+0,talentless gigi hadid makes ridiculous ‚apology‚ for mocking immigrant melania‚s accent: ‚i believe melania understands show business‚,talentless gigi hadid make ridiculous apology mocking immigrant melanias accent believe melania understands show business
+1,vietnam seeks death penalty for embezzlement by ex-chairman of state energy firm,vietnam seek death penalty embezzlement exchairman state energy firm
+1,syria,syria
+1,britain calls on myanmar leader to show lead in ending violence,britain call myanmar leader show lead ending violence
+1,baltimore braces for chaos: mistrial declared in freddie gray case,baltimore brace chaos mistrial declared freddie gray case
+0,factory worker rips into speaker paul ryan on the ‚do nothing‚ congress [video],factory worker rip speaker paul ryan nothing congress video
+1,tokyo governor koike: no need for big change in monetary policy,tokyo governor koike need big change monetary policy
+0,sweden is on brink of collapse‚ gun purchases are way up‚pepper spray selling out‚muslims beating non-muslims on streets,sweden brink collapse gun purchase way uppepper spray selling outmuslims beating nonmuslims street
+0,hilarious! leonardo dicaprio is ‚outed‚ as climate change hypocrite,hilarious leonardo dicaprio outed climate change hypocrite
+1,kuwait orders north korea's ambassador to leave within a month,kuwait order north korea ambassador leave within month
+0,indiana: ‚black male‚ fires several shots at truck with make america great again,indiana black male fire several shot truck make america great
+1,china tells japan not to abandon dialogue over north korea,china tell japan abandon dialogue north korea
+0,syrian refugees spreading catastrophic outbreak of flesh eating disease to host nations‚disease is difficult to detect in refugees coming to u.s.,syrian refugee spreading catastrophic outbreak flesh eating disease host nationsdisease difficult detect refugee coming u
+1,trump praises response to puerto rico says crisis straining budget,trump praise response puerto rico say crisis straining budget
+1,bundy ranch ‚standoff‚ defendants prepare for trial in nevada,bundy ranch standoff defendant prepare trial nevada
+0,well,well
+1,syria's kurds to hold historic vote in 'message' to assad,syria kurd hold historic vote message assad
+1,eu's tusk says ready to ramp up sanctions against north korea,eu tusk say ready ramp sanction north korea
+1,islamic state loses al-mayadeen in eastern syria: military source,islamic state loses almayadeen eastern syria military source
+0,how senate democrats plan to force gun-control amendment on gop‚s bill to repeal obamacare,senate democrat plan force guncontrol amendment gop bill repeal obamacare
+1,ukraine expels another russian journalist over coverage,ukraine expels another russian journalist coverage
+0,beau biden‚s widow is having an affair‚with his married brother,beau bidens widow affairwith married brother
+1,islamic state claims attack on damascus police center,islamic state claim attack damascus police center
+1,european ambassadors to u.s. back iran nuclear pact,european ambassador u back iran nuclear pact
+1,come to italy as a refugee and work for free‚italy‚s interior minister fed up with financial burden on citizens,come italy refugee work freeitalys interior minister fed financial burden citizen
+0,must watch video: here‚s why ‚deep state‚ is at war with trump as democrats cheer [video],must watch video here deep state war trump democrat cheer video
+1,russian security service says dismantles islamic state sleeper cell,russian security service say dismantles islamic state sleeper cell
+1,german anti-immigrant candidate walks out of tv debate,german antiimmigrant candidate walk tv debate
+0,law enforcement on high alert following threats against cops and whites on 9-11by #blacklivesmatter and #fyf911 terrorists [video],law enforcement high alert following threat cop white blacklivesmatter fyf terrorist video
+0,foreign born alien with 4 felonies arrested for brutal beating and rape of women who was helping him,foreign born alien felony arrested brutal beating rape woman helping
+1,bodies of 16 migrants found in libya's eastern desert: official,body migrant found libya eastern desert official
+0,arrogant former illegal alien brags about using fake ss number,arrogant former illegal alien brag using fake s number
+1,serbia accuses world of double standards over catalonia and kosovo,serbia accuses world double standard catalonia kosovo
+0,marco rubio is called irresponsible for buying a fishing boat‚hillary buys a mansion in ny to run for senate‚crickets,marco rubio called irresponsible buying fishing boathillary buy mansion ny run senatecrickets
+0,msnbc tweets terrifying video of cop being dragged by thug‚s car,msnbc tweet terrifying video cop dragged thug car
+1,u.s. urges iraq's kurdistan to call off independence referendum,u urge iraq kurdistan call independence referendum
+1,germany may not agree new coalition until next year: merkel ally,germany may agree new coalition next year merkel ally
+1,illegal miners in south africa swallow gold in condoms,illegal miner south africa swallow gold condom
+1,eu commission says it has not changed its position on catalonia,eu commission say changed position catalonia
+0,local sheriff escorting school kids not allowed to bring gun into theater,local sheriff escorting school kid allowed bring gun theater
+0,mid summer anger: oliver stone waxes us establishment‚s russia conspiracy theory,mid summer anger oliver stone wax u establishment russia conspiracy theory
+0,oops! ukraine caught colluding with democrats to help hillary win election‚president poroshenko scrambling to repair damage with trump,oops ukraine caught colluding democrat help hillary win electionpresident poroshenko scrambling repair damage trump
+1,marseille attack suspect had shown tunisian passport to police: prosecutor,marseille attack suspect shown tunisian passport police prosecutor
+1,dutch prime minister: 'enormous devastation' on saint martin,dutch prime minister enormous devastation saint martin
+0,muslim miss universe contestant ignores competition rules other candidates must follow‚makes up her own rules,muslim miss universe contestant ignores competition rule candidate must followmakes rule
+0,foot-soldiers in obama‚s war against cops arrested: plan to use rocket launcher thwarted,footsoldiers obamas war cop arrested plan use rocket launcher thwarted
+0,trump attacks hillary: ‚she is a world class liar!‚,trump attack hillary world class liar
+1,police tear-gas kenyan vote protesters as crowds gather in cities,police teargas kenyan vote protester crowd gather city
+0,ron paul sums up obama‚s #fakepresidency in one brutal facebook post,ron paul sum obamas fakepresidency one brutal facebook post
+1,philippine leader says 'no way' he'll do deal with islamist rebels,philippine leader say way hell deal islamist rebel
+1,south korea parliament chief tells north korea to resume missile talks: ifax,south korea parliament chief tell north korea resume missile talk ifax
+1,save the children suspends migrant rescues in mediterranean,save child suspends migrant rescue mediterranean
+0,ny firefighters hold touching flag removal ceremony after commissioner orders all u.s. flags to be removed from fire trucks for insane reason [video],ny firefighter hold touching flag removal ceremony commissioner order u flag removed fire truck insane reason video
+1,yahoo caves in to nsa,yahoo cave nsa
+1,erdogan says turkey working with syria rebels to implement idlib accord,erdogan say turkey working syria rebel implement idlib accord
+1,trump to host singapore's prime minister oct. 23 -white house,trump host singapore prime minister oct white house
+1,uk government including johnson united behind may's brexit plan: spokeswoman,uk government including johnson united behind may brexit plan spokeswoman
+0,president obama arrives in cuba,president obama arrives cuba
+0,mega pop star adele says racist,mega pop star adele say racist
+1,north korea says rockets to u.s. 'inevitable' after trump dubs kim 'rocket man',north korea say rocket u inevitable trump dub kim rocket man
+0,white washed? trump claims classified jfk files will be released,white washed trump claim classified jfk file released
+1,german killer nurse suspected of 84 more murders police say,german killer nurse suspected murder police say
+0,boiler room ep #113 ‚ ‚cnn is isis‚,boiler room ep cnn isi
+0,us state department talking head transforms into al qaeda‚s spokesperson,u state department talking head transforms al qaeda spokesperson
+0,canada‚s obama? watch new prime minister call himself a ‚proud feminist‚‚promises to raise taxes on wealthy and welcome more syrian ‚refugees‚ [video],canada obama watch new prime minister call proud feministpromises raise tax wealthy welcome syrian refugee video
+0,two pictures perfectly illustrate the difference between obama‚s lawless america and trump‚s law-and-order america,two picture perfectly illustrate difference obamas lawless america trump lawandorder america
+1,u.s. says holds myanmar military leaders accountable in rohingya crisis,u say hold myanmar military leader accountable rohingya crisis
+1,tanzanian president discloses salary one of lowest among african leaders,tanzanian president discloses salary one lowest among african leader
+1,sunday screening: counter intelligence ‚ ‚the company‚,sunday screening counter intelligence company
+1,czech lawmakers vote to force pm candidate babis to face fraud charges,czech lawmaker vote force pm candidate babis face fraud charge
+1,france's far-left leader urges french 'resistance' against macron,france farleft leader urge french resistance macron
+0,boiler room ep #116 ‚ trigger gifs,boiler room ep trigger gifs
+1,robert parry: sorting out the russia mess,robert parry sorting russia mess
+0,episode #4 ‚ drive by wire: ‚dc rabbit holes‚ with patrick & shawn,episode drive wire dc rabbit hole patrick shawn
+1,pm may seeks to ease japan's brexit fears during trade visit,pm may seek ease japan brexit fear trade visit
+1,turkish police kill islamic state militant set to attack police station,turkish police kill islamic state militant set attack police station
+1,turkey detains lawyers of hunger-striking teachers ahead of trial,turkey detains lawyer hungerstriking teacher ahead trial
+0,iranian commander issued stark warning to iraqi kurds over kirkuk,iranian commander issued stark warning iraqi kurd kirkuk
+1,ex-georgian leader saakashvili barges across ukraine border,exgeorgian leader saakashvili barge across ukraine border
+0,kick butt mom sends brutal message to rioting,kick butt mom sends brutal message rioting
+1,turkey's justice ministry says it canceled delegation visit,turkey justice ministry say canceled delegation visit
+0,the fix is in: michigan mayor threatened by dnc for cheering for his candidate at debate [video],fix michigan mayor threatened dnc cheering candidate debate video
+0,wow! hillary‚s uncensored comments about monica lewinsky revealed by longtime hillary friend [video],wow hillary uncensored comment monica lewinsky revealed longtime hillary friend video
+1,treasury's mnuchin: china may face new sanctions on north korea,treasury mnuchin china may face new sanction north korea
+0,breaking: aclj files lawsuit against obama‚s corrupt attorney general for secret bill clinton meeting on plane during hillary investigation [video],breaking aclj file lawsuit obamas corrupt attorney general secret bill clinton meeting plane hillary investigation video
+0,racist rapper who refers to himself as ‚yeezus‚ compares his dangerous entertainment job to u.s. soldier or cop,racist rapper refers yeezus compare dangerous entertainment job u soldier cop
+0,high school teacher seeks help from union after being fired for stomping on american flag in class [video],high school teacher seek help union fired stomping american flag class video
+0,watch what happens when guy makes undercover video: applies for min wage jobs‚says he‚s ‚under fbi investigation‚ [video],watch happens guy make undercover video applies min wage jobssays he fbi investigation video
+0,"the ‚brown‚ the media wont‚ cover because he wasn‚t killed by a white cop‚raekwon juaquay brown17 year old hero sacrifices his life to save an elderly woman""",brown medium wont cover wasnt killed white copraekwon juaquay brown year old hero sacrifice life save elderly woman
+1,china's tighter drone rules send new pilots flocking to school,china tighter drone rule send new pilot flocking school
+0,could your mail carrier be throwing your vote away? [video],could mail carrier throwing vote away video
+1,al shabaab bomb kills 12 in somalia's puntland,al shabaab bomb kill somalia puntland
+0,michael moore wants america to know ‚we are all muslim‚‚even though we‚re a majority christian nation,michael moore want america know muslimeven though majority christian nation
+1,agencies dither over who leads a380 engine explosion probe,agency dither lead engine explosion probe
+0,george w. bush offers somber memorial honoring lives of murdered dallas police officers‚obama gives speech about urgent need for gun control [video],george w bush offer somber memorial honoring life murdered dallas police officersobama give speech urgent need gun control video
+1,merkel calls on hungary to implement court ruling on refugee distribution,merkel call hungary implement court ruling refugee distribution
+1,britain will not speculate on possible u.s. withdrawal from iran deal: pm may's spokesman,britain speculate possible u withdrawal iran deal pm may spokesman
+0,whoa! 2006: hillary clinton caught expressing regret about not rigging palestinian elections,whoa hillary clinton caught expressing regret rigging palestinian election
+0,bilderberg: more secret meetings with trump advisors,bilderberg secret meeting trump advisor
+0,actor vince vaughn destroys the left with awesome statement on gun rights,actor vince vaughn destroys left awesome statement gun right
+1,head of g4s immigration unit at center of abuse scandal quits,head g immigration unit center abuse scandal quits
+1,spain sends more police to block catalonia referendum,spain sends police block catalonia referendum
+1,china's xi: any attempt to separate taiwan from china will be thwarted,china xi attempt separate taiwan china thwarted
+1,trump‚s first congressional speech stuns media detractors ‚ stock markets rally,trump first congressional speech stuns medium detractor stock market rally
+0,whoa! rock legend roger daltrey rips eu for ‚raping‚ southern european countries with immigration nightmare,whoa rock legend roger daltrey rip eu raping southern european country immigration nightmare
+1,uk's labour pledges infrastructure nationalization credit card cap,uk labour pledge infrastructure nationalization credit card cap
+0,one heart-beat away‚joe biden: it‚s ‚ok sometimes‚ to be uninformed guy who ‚has no idea what the hell he‚s talking about‚ [video],one heartbeat awayjoe biden ok sometimes uninformed guy idea hell he talking video
+1,desperate travelers crowd puerto rico airport in hopes of seat out,desperate traveler crowd puerto rico airport hope seat
+1,jews around world alarmed by far-right breakthrough in germany,jew around world alarmed farright breakthrough germany
+0,huh? senator warren wants to cut conservatives open after they die [video],huh senator warren want cut conservative open die video
+1,u.s. says air strikes in somalia kill six al shabaab fighters,u say air strike somalia kill six al shabaab fighter
+1,chinese watchdog says 1.34 million officials punished for graft since 2013,chinese watchdog say million official punished graft since
+0,boiler room ep #130 ‚ mandalay cover-up,boiler room ep mandalay coverup
+1,tanzania charges officials with economic sabotage over seized diamonds,tanzania charge official economic sabotage seized diamond
+1,fake ‚us embassy‚ bust in ghana exposes danger of eu schengen deal with turkey,fake u embassy bust ghana expose danger eu schengen deal turkey
+1,dc chief of police denies concealed weapons permits‚no jail‚christian clerk refuses to issue same sex marriage licenses‚guess where she ends up,dc chief police denies concealed weapon permitsno jailchristian clerk refuse issue sex marriage licensesguess end
+1,venezuela opposition refuses swearing in small protest breaks out,venezuela opposition refuse swearing small protest break
+1,german spy agencies want right to destroy stolen data and 'hack back',german spy agency want right destroy stolen data hack back
+1,six police wounded one killed in shootings near indonesia's freeport mine,six police wounded one killed shooting near indonesia freeport mine
+1,twitter ‚off-boards‚ (bans) rt and sputnik ads ahead of capitol hill testimony,twitter offboards ban rt sputnik ad ahead capitol hill testimony
+1,ukraine president hopes to secure defensive weapons from western allies,ukraine president hope secure defensive weapon western ally
+1,exclusive: eu may shun myanmar generals in new sanctions - draft,exclusive eu may shun myanmar general new sanction draft
+1,iraqi kurds face more sanctions after calling elections,iraqi kurd face sanction calling election
+0,huh? nyt editor blames ‚republican rage machine‚ for current political climate [video],huh nyt editor blame republican rage machine current political climate video
+1,turkish police officer shoots prosecutor in antalya: media reports,turkish police officer shoot prosecutor antalya medium report
+1,iraq's kurdish parliament backs sept 25 independence referendum,iraq kurdish parliament back sept independence referendum
+0,hilarious! random french people say they‚d gladly house a refugee until interviewer surprises them with refugee to take home [video],hilarious random french people say theyd gladly house refugee interviewer surprise refugee take home video
+1,former nsa whistleblower: ‚trump absolutely right he was wiretapped‚,former nsa whistleblower trump absolutely right wiretapped
+0,employees implanted with microchip at ‚chip party‚‚first company in us to have microchip program,employee implanted microchip chip partyfirst company u microchip program
+1,art of war: what‚s behind russia‚s ‚ides of march‚ military drawdown in syria?,art war whats behind russia ides march military drawdown syria
+1,in first visit trump urges reform so u.n. can meet full potential,first visit trump urge reform un meet full potential
+1,thirty-two years after quake angry mexicans still wait for homes,thirtytwo year quake angry mexican still wait home
+0,lol! photo accompanying google search of ‚pathological liar‚ says it all,lol photo accompanying google search pathological liar say
+1,syrian activist and daughter murdered in istanbul home: turkish police,syrian activist daughter murdered istanbul home turkish police
+1,uk's may appeals to eu leaders to signal movement in brexit talks,uk may appeal eu leader signal movement brexit talk
+1,fema may run out of funds on friday: senators,fema may run fund friday senator
+0,tulsi gabbard triggers the war hawks with her based skepticism,tulsi gabbard trigger war hawk based skepticism
+0,wow! obama just destroyed hillary with this tweet‚from 4 years ago!,wow obama destroyed hillary tweetfrom year ago
+0,msnbc hack asks if president trump is ‚trying to provoke a domestic terrorist attack‚? [video],msnbc hack asks president trump trying provoke domestic terrorist attack video
+0,national enquirer endorsed trump‚then dropped yuge bombshell: ‚cruz‚s 5 secret mistresses‚,national enquirer endorsed trumpthen dropped yuge bombshell cruzs secret mistress
+1,singapore decried for 'harassment' of anti-death penalty activists,singapore decried harassment antideath penalty activist
+1,is democratic party attempting a ‚soft coup‚? efforts underway to hijack electoral college vote‚,democratic party attempting soft coup effort underway hijack electoral college vote
+1,saudis set $500 billion plan to develop border region with jordan egypt,saudi set billion plan develop border region jordan egypt
+1,hundreds of afghans demonstrate against 'offensive' u.s. leaflets,hundred afghan demonstrate offensive u leaflet
+0,exposed: facebook blacklists conservative news & falsified ‚black lives matter‚ trend,exposed facebook blacklist conservative news falsified black life matter trend
+1,indonesia foreign minister flies to bangladesh after myanmar visit on rohingya,indonesia foreign minister fly bangladesh myanmar visit rohingya
+1,obamacare: your dog might have better healthcare than you do,obamacare dog might better healthcare
+0,how hillary‚s anti-cop past and support for violent black lives matter will destroy her presidential ambitions [video],hillary anticop past support violent black life matter destroy presidential ambition video
+0,chilling undercover video exposes discrimination,chilling undercover video expose discrimination
+1,indonesia passes law to ban organizations deemed against its ideology,indonesia pass law ban organization deemed ideology
+1,hezbollah says israel pushing region to war,hezbollah say israel pushing region war
+0,which states are americans are moving from,state american moving
+1,pacific nations crack down on north korean ships as fiji probes more than 20 vessels,pacific nation crack north korean ship fiji probe vessel
+1,rwanda charges critic of president with inciting insurrection,rwanda charge critic president inciting insurrection
+1,poland tells eu its overhaul of judiciary in line with eu standards,poland tell eu overhaul judiciary line eu standard
+0,police called to grisly murder scene: find decapitated blow up sex doll in city overrun by muslim immigrants,police called grisly murder scene find decapitated blow sex doll city overrun muslim immigrant
+1,brazil's top prosecutor says committed to 'car wash' probe,brazil top prosecutor say committed car wash probe
+0,ga supreme court denies kkk right to ‚adopt a highway‚‚while il city ‚unanimously,ga supreme court denies kkk right adopt highwaywhile il city unanimously
+0,black lives matter activist,black life matter activist
+0,why obama and muslim cia director brennan have opposing views of isis [video],obama muslim cia director brennan opposing view isi video
+0,mexico says they won‚t build a wall‚watch trump destroy them with this brilliant answer [video],mexico say wont build wallwatch trump destroy brilliant answer video
+1,north korea moving airplanes boosting defense after u.s. bomber flight: yonhap,north korea moving airplane boosting defense u bomber flight yonhap
+1,afghan officials investigate helicopter wedding deaths,afghan official investigate helicopter wedding death
+1,not again! german media bemoan grand coalition scenario after limp tv duel,german medium bemoan grand coalition scenario limp tv duel
+0,conservative women destroy crybaby,conservative woman destroy crybaby
+0,rush to finish: obama slaps $5 billion in regulations on america before exit,rush finish obama slap billion regulation america exit
+1,russia says trump stance on iran deal 'extremely troubling': ria,russia say trump stance iran deal extremely troubling ria
+0,the las vegas and weinstein cover-ups: boiler room ep #132,la vega weinstein coverups boiler room ep
+1,ai wei-wei critical of china at opening of swiss exhibit,ai weiwei critical china opening swiss exhibit
+1,after russia iran seeks deal for long-term syria garrison: israel,russia iran seek deal longterm syria garrison israel
+0,russian aerobatics team joins serbian display of air power,russian aerobatics team join serbian display air power
+1,trump uk's may agree that china must do more on north korea: uk,trump uk may agree china must north korea uk
+1,u.s. must step up support for operation against west africa militants: france,u must step support operation west africa militant france
+0,facebook‚s new ‚proactive‚ ai to scan posts for suicidal thoughts,facebooks new proactive ai scan post suicidal thought
+1,under pressure to act against kurds iraq has limited options,pressure act kurd iraq limited option
+1,new survey shows no.1 fear of us citizens is government not terrorism,new survey show fear u citizen government terrorism
+1,syria ceasefire deal: a cynical ploy by washington‚s ‚coalition‚ to buy time for terrorists,syria ceasefire deal cynical ploy washington coalition buy time terrorist
+1,eu defends iran deal despite trump appeals to u.s. congress,eu defends iran deal despite trump appeal u congress
+1,reveal your sources: swiss suspect told in german spy trial,reveal source swiss suspect told german spy trial
+1,trump executive order on ethics commitments bans lobbying for executive branch employees,trump executive order ethic commitment ban lobbying executive branch employee
+0,self-righteous liberal saves fish from fisherman: ‚you‚re harassing this fish!‚ [video],selfrighteous liberal save fish fisherman youre harassing fish video
+0,breaking: obama commutes 67 prisoners serving life sentences‚214 federal prisoners in total,breaking obama commute prisoner serving life sentence federal prisoner total
+0,[video] muslim man hits gay couple over heads with chair in manhattan: why it won‚t be treated as a hate crime,video muslim man hit gay couple head chair manhattan wont treated hate crime
+0,lights still out for 5.8 million u.s. customers after irma,light still million u customer irma
+0,how trump is brilliantly crushing hillary‚s phony woman card,trump brilliantly crushing hillary phony woman card
+0,did johnny depp just make a career-ending joke about assassinating president trump?,johnny depp make careerending joke assassinating president trump
+0,ignorance gave gitmo prisoner freedom‚uk gave him ¬£1 million‚he repaid us by becoming a human bomb for isis [video],ignorance gave gitmo prisoner freedomuk gave millionhe repaid u becoming human bomb isi video
+1,most french think macron's tax policies favor the rich: poll,french think macron tax policy favor rich poll
+1,greece considers extradition of bitcoin fraud suspect wanted by u.s. and russia,greece considers extradition bitcoin fraud suspect wanted u russia
+1,german spd loses support after television debate: poll,german spd loses support television debate poll
+1,boiler room #108 ‚ who‚d win in a fight? boiler room vs. hitler vs. dracula,boiler room whod win fight boiler room v hitler v dracula
+0,long speech lots of tea: party meeting with chinese characteristics,long speech lot tea party meeting chinese characteristic
+0,heartwarming: support for socialism on college campuses much less than media would like americans to believe,heartwarming support socialism college campus much less medium would like american believe
+0,left goes nuts: chemist from dc wins miss usa title after saying health care is a ‚privilege‚ and not a ‚right‚ [video],left go nut chemist dc win miss usa title saying health care privilege right video
+0,debbie wasserman schultz planned to continue pay for muslim it aide charged with multiple counts of bank fraud,debbie wasserman schultz planned continue pay muslim aide charged multiple count bank fraud
+1,factbox: florida's most deadly and destructive hurricanes,factbox florida deadly destructive hurricane
+1,trump strikes blow at iran nuclear deal in major u.s. policy shift,trump strike blow iran nuclear deal major u policy shift
+0,business owners get rich providing luxury housing and gourmet food to ‚refugees‚ who complain it‚s not enough,business owner get rich providing luxury housing gourmet food refugee complain enough
+0,you wouldn‚t allow someone to abuse your child‚so why do we allow climate change radicals to target them?,wouldnt allow someone abuse childso allow climate change radical target
+1,german finmin schaeuble ready to head parliament: senior conservative,german finmin schaeuble ready head parliament senior conservative
+1,catalonia refuses to send weekly accounts to madrid before referendum,catalonia refuse send weekly account madrid referendum
+1,eu praises constructive spirit of may speech wants more clarity,eu praise constructive spirit may speech want clarity
+1,u.s. to withdraw from u.n.'s cultural agency in december,u withdraw un cultural agency december
+1,russia becomes iraq kurds' top funder quiet about independence vote,russia becomes iraq kurd top funder quiet independence vote
+0,trump swings back at author of fake dossier: ‚failed spy‚ might face libel action,trump swing back author fake dossier failed spy might face libel action
+1,two-thirds of japan voters oppose pm abe calling snap election: kyodo survey,twothirds japan voter oppose pm abe calling snap election kyodo survey
+0,michigan city with first muslim-majority city council in america announces ‚safe haven‚ for refugees,michigan city first muslimmajority city council america announces safe refugee
+1,as johnson sirleaf exits liberians thankful for peace excited about change,johnson sirleaf exit liberian thankful peace excited change
+1,north korea grants malaysian prince access to airspace as soccer match back on,north korea grant malaysian prince access airspace soccer match back
+1,tillerson pays flying visit to afghanistan to discuss u.s. strategy,tillerson pay flying visit afghanistan discus u strategy
+1,taiwan's new premier vows to 'build country' scrap investment hurdles,taiwan new premier vow build country scrap investment hurdle
+0,two trump tweets debunk russian connection conspiracy,two trump tweet debunk russian connection conspiracy
+0,kellyanne conway: ‚presidents aren‚t judged by crowd sizes,kellyanne conway president arent judged crowd size
+0,bernie sues to allow 17 year olds to vote,bernie sue allow year old vote
+0,we will not comply! va residents refuse to obey leftist governor‚s ban on confederate flag license plates,comply va resident refuse obey leftist governor ban confederate flag license plate
+0,outrageous: top15 examples of how radical we‚ve allowed our colleges and universities to become,outrageous top example radical weve allowed college university become
+0,he was so close: we were ‚obamerica‚‚we were more tolerant‚more guilty‚the end of the 1st and 2nd amendments were only a clever campaign away‚and then america woke up,close obamericawe tolerantmore guiltythe end st nd amendment clever campaign awayand america woke
+1,juncker's proposals in sync with french agenda: presidential official,junckers proposal sync french agenda presidential official
+1,after financial pledges france urges chad to hold elections,financial pledge france urge chad hold election
+1,russia rebukes trump over iran north korea accuses u.s. of missile treaty breach,russia rebuke trump iran north korea accuses u missile treaty breach
+1,kurdistan region says iraqi forces preparing major attack in oil-rich kirkuk,kurdistan region say iraqi force preparing major attack oilrich kirkuk
+0,boiler room ‚ ep #56 ‚ pharmacological nightmare,boiler room ep pharmacological nightmare
+1,uk reaffirms commitment to iran nuclear deal in call with trump: may's office,uk reaffirms commitment iran nuclear deal call trump may office
+1,u.s. military says 'opting out' of some exercises following gulf rift,u military say opting exercise following gulf rift
+1,russia says general killed in syria held senior post in assad's army,russia say general killed syria held senior post assads army
+0,saudi billionaire who used sharia law to make fortune,saudi billionaire used sharia law make fortune
+0,muslims are not going to like announcement by america‚s first muslim miss u.s.a. [video],muslim going like announcement america first muslim miss usa video
+0,boom! the truth about ‚fake news‚ websites: ‚the butt-hurt and the rigged media is desperate to salvage some scrap of credibility‚ [video],boom truth fake news website butthurt rigged medium desperate salvage scrap credibility video
+0,liberal dummy gary johnson can‚t name one foreign leader [video],liberal dummy gary johnson cant name one foreign leader video
+0,watch maga rally live: president trump holds massive rally in phoenix [video],watch maga rally live president trump hold massive rally phoenix video
+1,uk pm may says she is 'ambitious and positive' about brexit talks,uk pm may say ambitious positive brexit talk
+1,ireland moots possible special post-brexit arrangements for itself northern ireland,ireland moot possible special postbrexit arrangement northern ireland
+0,wow! woman totally freaks out at sight of confederate flag in store‚real or fake outrage? [video],wow woman totally freak sight confederate flag storereal fake outrage video
+1,china urges north korea not to go further in a 'dangerous direction',china urge north korea go dangerous direction
+1,iraqi government asks kurdistan regional government to hand over border posts airports in referendum dispute,iraqi government asks kurdistan regional government hand border post airport referendum dispute
+0,disgusting! abusive ‚transformers‚ star shia labeouf repeatedly screams,disgusting abusive transformer star shia labeouf repeatedly scream
+1,chelsea manning says she was denied entry to canada,chelsea manning say denied entry canada
+0,media ignores time that bill clinton fired his fbi director on day before vince foster was found dead,medium ignores time bill clinton fired fbi director day vince foster found dead
+1,key u.s. senator says time not right for new north korea legislation,key u senator say time right new north korea legislation
+1,fake news week: how mainstream media ‚fake news‚ led to the u.s. invasion of iraq,fake news week mainstream medium fake news led u invasion iraq
+0,muslims silent after terror attacks‚but blame trump after witnesses give description of ‚tall hispanic‚ who killed ny imam and assistant [video],muslim silent terror attacksbut blame trump witness give description tall hispanic killed ny imam assistant video
+1,syrian army allies reach airbase besieged by islamic state in eastern syria: commander,syrian army ally reach airbase besieged islamic state eastern syria commander
+0,breaking news: nypd cracking down on anti-trump terror groups‚watch police arrest antifa terrorists for wearing masks,breaking news nypd cracking antitrump terror groupswatch police arrest antifa terrorist wearing mask
+1,kenya police shoot dead two during opposition protest: commissioner,kenya police shoot dead two opposition protest commissioner
+0,oscar winning actress jennifer lawrence recalls attending same concert as trump: ‚i was adamant on finding him and then making a video of me going,oscar winning actress jennifer lawrence recall attending concert trump adamant finding making video going
+1,kyrgyzstan accuses opposition mp of planning riots coup,kyrgyzstan accuses opposition mp planning riot coup
+0,toxic culture: ‚suicide (skank) squad‚ film,toxic culture suicide skank squad film
+0,draining the swamp: hard-hit everglades town mops up after irma,draining swamp hardhit everglades town mop irma
+0,email reveals univ of pittsburgh telling professors to give students ‚extra credit‚ for protesting trump [video],email reveals univ pittsburgh telling professor give student extra credit protesting trump video
+0,collusion fusion: doj official‚s cia wife was hired to ‚research‚ trump,collusion fusion doj official cia wife hired research trump
+0,netanyahu congratulates merkel sees anti-semitism rising on left and right,netanyahu congratulates merkel see antisemitism rising left right
+1,zimbabwe's tsvangirai 'out of danger' in south african hospital,zimbabwe tsvangirai danger south african hospital
+1,syrian opposition says russian jets kill civilians fleeing across euphrates,syrian opposition say russian jet kill civilian fleeing across euphrates
+0,mueller team uniform? ‚democratic donkey jerseys‚ and ‚i‚m with hillary t-shirts‚ says congressman,mueller team uniform democratic donkey jersey im hillary tshirts say congressman
+1,germany registers fewer asylum seekers on track for annual cap,germany register fewer asylum seeker track annual cap
+1,knifeman attacks soldier in paris subway terrorism probe opened,knifeman attack soldier paris subway terrorism probe opened
+1,catalan leader under pressure to drop independence,catalan leader pressure drop independence
+0,police refused to believe german man‚s emergency call saying girlfriend was being raped by refugee with machete while camping,police refused believe german man emergency call saying girlfriend raped refugee machete camping
+1,china says military means not an option to resolve korea situation,china say military mean option resolve korea situation
+0,wow! company that buys aborted baby parts from planned parenthood has website with drop down menu choices like: heart,wow company buy aborted baby part planned parenthood website drop menu choice like heart
+0,stand up and cheer! ukip party leader slams germany,stand cheer ukip party leader slam germany
+0,us thanksgiving guide: how to celebrate a sordid and genocidal history,u thanksgiving guide celebrate sordid genocidal history
+0,maine democrat congressman makes death threat against president trump‚calls trump supporters a**holes,maine democrat congressman make death threat president trumpcalls trump supporter aholes
+1,china will stick to supply side structural reform overcapacity reduction efforts,china stick supply side structural reform overcapacity reduction effort
+0,ep #19: patrick henningsen live ‚ season finale ‚ open phones,ep patrick henningsen live season finale open phone
+1,u.s. nearing limits of diplomacy on north korea: trump adviser mcmaster,u nearing limit diplomacy north korea trump adviser mcmaster
+0,egyptian court sentences muslim brotherhood leader and 13 others to death and leader‚s ‚peaceful‚ u.s.-egyptian brother to life in prison,egyptian court sentence muslim brotherhood leader others death leader peaceful usegyptian brother life prison
+0,breaking: paul ryan nervously giggles during budget speech that doesn‚t fund a border wall [video],breaking paul ryan nervously giggle budget speech doesnt fund border wall video
+1,not kidding! obama agrees to turkey‚s demands‚u.s. troops ordered to wear mark of islam on right arm,kidding obama agrees turkey demandsus troop ordered wear mark islam right arm
+1,cuts hurt mexico quake response outlook ahead of 2018 vote,cut hurt mexico quake response outlook ahead vote
+0,store owner bashes liberal obamaites as he shuts his doors and moves,store owner bash liberal obamaites shuts door move
+0,hispanic man living in ‚hood‚ has brutal message for ‚lefty‚: my dead friends were not shot by ‚white right wing extremists‚ [video],hispanic man living hood brutal message lefty dead friend shot white right wing extremist video
+1,croatia jails serb paramilitary commander for war crimes,croatia jail serb paramilitary commander war crime
+0,ep #15: patrick henningsen live ‚ ‚crisis of american liberalism‚ with guest caleb maupin,ep patrick henningsen live crisis american liberalism guest caleb maupin
+1,philippines says 'big possibility' malaysian militant leader killed,philippine say big possibility malaysian militant leader killed
+0,boiler room #61 ‚ hello from the gutter,boiler room hello gutter
+1,russian military: us coalition predator drone spotted at time & place of syria un aid convoy attack,russian military u coalition predator drone spotted time place syria un aid convoy attack
+0,offending the globalists: teen kicked out of un building for wearing bill clinton ‚rape‚ shirt [video],offending globalists teen kicked un building wearing bill clinton rape shirt video
+0,boiler room ep #115 ‚ very fake news & the slaughter of innocence,boiler room ep fake news slaughter innocence
+1,henningsen: ‚us anti-trump protests similar to soros color revolutions abroad‚,henningsen u antitrump protest similar soros color revolution abroad
+0,college students who wanted you to pay for their education make stunning admissions about how they spend student loan money,college student wanted pay education make stunning admission spend student loan money
+0,skeptics unconvinced after release of feds‚ latest report on ‚russian hack of dnc‚,skeptic unconvinced release fed latest report russian hack dnc
+0,illegal alien with drug resistant tb to be released into general u.s. population,illegal alien drug resistant tb released general u population
+1,eu foreign policy chief expects strong eu backing for iran deal,eu foreign policy chief expects strong eu backing iran deal
+1,factbox - battle for raqqa islamic state's syrian hq near end,factbox battle raqqa islamic state syrian hq near end
+0,high school shows students racist ‚sh*t white people say‚ video as part of morning announcements,high school show student racist sht white people say video part morning announcement
+1,iran tests new missile after u.s. criticizes arms program,iran test new missile u criticizes arm program
+0,obama uses world stage to announce plans for executive action on gun control in u.s.,obama us world stage announce plan executive action gun control u
+1,syria army u.s.-backed forces converge on islamic state in separate offensives,syria army usbacked force converge islamic state separate offensive
+1,significant gaps remain in bid to restore northern irish power-sharing: uk pm may's office,significant gap remain bid restore northern irish powersharing uk pm may office
+1,venezuelan opposition pins hopes on elections as protests falter,venezuelan opposition pin hope election protest falter
+1,australia to spend up to $195 million housing refugees after png detention center closes,australia spend million housing refugee png detention center close
+1,u.s. north korea clash at u.n. arms forum on nuclear threat,u north korea clash un arm forum nuclear threat
+0,smoking [stolen] gun‚wife of keith scott: ‚he kicked me and threaten to kill us last night with his gun‚ [video],smoking stolen gunwife keith scott kicked threaten kill u last night gun video
+1,turkish warplanes kill three kurdish militants in northern iraq: army,turkish warplane kill three kurdish militant northern iraq army
+0,cops killed by guns up 150%‚hillary panders to black voters: ‚we have to retrain our police officers‚,cop killed gun hillary pander black voter retrain police officer
+1,south korean foreign minister says north korea on 'reckless path',south korean foreign minister say north korea reckless path
+0,why obama fears a hillary presidency,obama fear hillary presidency
+1,smart cities,smart city
+0,disturbing video shows hillary‚s campaign likely faked her audience at nc rally,disturbing video show hillary campaign likely faked audience nc rally
+1,boiler room ‚ ep #47 ‚ establishment hitmen & media hacks,boiler room ep establishment hitman medium hack
+0,shocking hypocrisy: the most racist industry in america,shocking hypocrisy racist industry america
+1,spain's socialist leader says would back government on catalonia,spain socialist leader say would back government catalonia
+0,black lives matter responds to oakland police department‚s bbq invite: ‚i eat pigs,black life matter responds oakland police department bbq invite eat pig
+1,episode 3 ‚ drive by wire: ‚under new management‚ with patrick & shawn,episode drive wire new management patrick shawn
+0,breaking news: ‚at the direction of the president‚ 22-yr old american is released from n. korean prison [video],breaking news direction president yr old american released n korean prison video
+0,wow! new york times admits they ‚cooked the numbers‚ to keep sold out book about shocking story media hid from public off bestseller list,wow new york time admits cooked number keep sold book shocking story medium hid public bestseller list
+1,iraqi kurds say baghdad will pay heavy price for assault,iraqi kurd say baghdad pay heavy price assault
+1,leaked memo fuels accusations of ethnic bias in afghan government,leaked memo fuel accusation ethnic bias afghan government
+0,boiler room ep #115 ‚ very fake news & the slaughter of innocence,boiler room ep fake news slaughter innocence
+0,"breaking! massive voter fraud investigation‚spokesperson for voter registration project: police raid ‚will have prevented 45000 african americans from voting‚ [video]""",breaking massive voter fraud investigationspokesperson voter registration project police raid prevented african american voting video
+1,pope arrives in colombia to help heal wounds of 50-year war,pope arrives colombia help heal wound year war
+0,trayvon martin‚s mom goes on blame whitey tour with hillary,trayvon martin mom go blame whitey tour hillary
+0,liberal fed judge who sided with black lives matter terror group over seattle cops stops trump‚s immigration travel ban [video],liberal fed judge sided black life matter terror group seattle cop stop trump immigration travel ban video
+1,uk pm may's meeting with eu officials 'constructive and friendly': spokesman,uk pm may meeting eu official constructive friendly spokesman
+0,why is the media hiding dangerous evidence about radical who attacked trump at rally?,medium hiding dangerous evidence radical attacked trump rally
+0,ouch! paul joseph watson destroys mtv‚s racist propaganda video: ‚beyonce cares so much about ‚black issues‚ that she dyes her hair blonde and bleaches her skin to try and look as white as possible‚ [video],ouch paul joseph watson destroys mtvs racist propaganda video beyonce care much black issue dye hair blonde bleach skin try look white possible video
+0,vicious! portland rioters attack pregnant woman with baseball bat [video],vicious portland rioter attack pregnant woman baseball bat video
+0,flashback! presidents being ‚colorful‚‚yes,flashback president colorfulyes
+1,venezuelan president maduro will not go to u.n. rights forum,venezuelan president maduro go un right forum
+1,white house says denuclearization remains priority for korean peninsula,white house say denuclearization remains priority korean peninsula
+0,oops! mn: juror in case against cop who killed philando castile reveals how only 2 black jurors on case voted‚liberal heads explode in 3‚2‚1,oops mn juror case cop killed philando castile reveals black juror case votedliberal head explode
+0,disney worker tells horror story of being forced to train foreign worker to replace him or forego severance package,disney worker tell horror story forced train foreign worker replace forego severance package
+0,hillary‚s lap dog va senator tim kaine calls for violence in the streets to combat trump [video],hillary lap dog va senator tim kaine call violence street combat trump video
+0,judge jeanine is furious! rino‚s are plotting to take down president trump‚cowardly gop sitting back,judge jeanine furious rinos plotting take president trumpcowardly gop sitting back
+1,weak columns extra floors led to mexico school collapse experts say,weak column extra floor led mexico school collapse expert say
+1,south korea's moon says there will be no war on korean peninsula,south korea moon say war korean peninsula
+1,cuba delays municipal elections due to irma devastation,cuba delay municipal election due irma devastation
+1,billionaire babis scores big czech election win seeks partners to rule,billionaire babis score big czech election win seek partner rule
+0,day 2 results of wisconsin recount are in‚and hillary‚s not gonna like it,day result wisconsin recount inand hillary gon na like
+0,snowden 2.0: new nsa contractor whistleblower,snowden new nsa contractor whistleblower
+1,in latest twist in japan election drama tokyo's koike says won't seek seat,latest twist japan election drama tokyo koike say wont seek seat
+0,revealed: the dark agenda behind globalization and open borders,revealed dark agenda behind globalization open border
+1,it‚s more likely that a us insider,likely u insider
+1,new zealand green party leader says wants to form coalition with labour and new zealand first,new zealand green party leader say want form coalition labour new zealand first
+0,treason! how obama‚s shadow government is commanding an army of anti-trump agitators to sabotage president trump #war [video],treason obamas shadow government commanding army antitrump agitator sabotage president trump war video
+0,daughter of sunni muslim,daughter sunni muslim
+0,watch tucker carlson scorch sanctuary city mayor: ‚don‚t you believe in laws?‚ [video],watch tucker carlson scorch sanctuary city mayor dont believe law video
+0,wow! new video blows up corruption between obama,wow new video blow corruption obama
+1,paul craig roberts: ‚by cooperating with washington on syria & russia walked into a trap‚,paul craig robert cooperating washington syria russia walked trap
+1,swedish pm survives vote of no-confidence,swedish pm survives vote noconfidence
+1,germany's merkel to name aide altmaier as stand-in finance minister: sources,germany merkel name aide altmaier standin finance minister source
+1,north korea says peru throwing 'gas on the fire' of nuclear spat,north korea say peru throwing gas fire nuclear spat
+1,hundreds march in sydney for asylum seekers ahead of png camp closure,hundred march sydney asylum seeker ahead png camp closure
+1,europe could soon be within range of north korean missiles: france,europe could soon within range north korean missile france
+1,saudi king tells putin iraqi territorial integrity must be preserved,saudi king tell putin iraqi territorial integrity must preserved
+1,slain sergeant's widow says trump call 'made me cry even worse',slain sergeant widow say trump call made cry even worse
+1,turkey summons u.s. embassy undersecretary calls for end to visa dispute: sources,turkey summons u embassy undersecretary call end visa dispute source
+0,mark zuckerberg rides shotgun with dale earnhardt,mark zuckerberg ride shotgun dale earnhardt
+0,wow! ‚n‚ word used on walmart website to describe color of wig,wow n word used walmart website describe color wig
+1,trump says he believes pakistan starting to respect u.s. again,trump say belief pakistan starting respect u
+0,pope candidly admits church 'arrived late' in confronting abuse,pope candidly admits church arrived late confronting abuse
+0,democrat lawmaker puts forth bill requiring wife‚s permission for men to obtain viagra prescription,democrat lawmaker put forth bill requiring wife permission men obtain viagra prescription
+0,exposed population control campaign: influential billionaire secretly donates $21 million per year to planned parenthood,exposed population control campaign influential billionaire secretly donates million per year planned parenthood
+1,boris and brexit sour british pm theresa may's party in manchester,boris brexit sour british pm theresa may party manchester
+1,scars & strife: ‚the purge election year‚ agitprop,scar strife purge election year agitprop
+1,south sudan commander on trial for rape murder of aid workers found dead,south sudan commander trial rape murder aid worker found dead
+1,argentina's macri deploys popular governor against fernandez,argentina macri deploys popular governor fernandez
+0,episode #149 ‚ sunday wire: ‚part ii: another road to damascus‚ with guests vanessa beeley,episode sunday wire part ii another road damascus guest vanessa beeley
+1,bill clinton called to break northern ireland political impasse: source,bill clinton called break northern ireland political impasse source
+0,uncensored video: real new yorkers‚ opinions on trump,uncensored video real new yorkers opinion trump
+0,donald trump & hillary clinton: defensive realist vs. war hawk?,donald trump hillary clinton defensive realist v war hawk
+0,kathy griffin & hillary clinton are losers,kathy griffin hillary clinton loser
+0,boiler room #103 ‚ smoking gunz,boiler room smoking gunz
+1,u.s cautions citizens of possible unrest during kurdish independence referendum,u caution citizen possible unrest kurdish independence referendum
+1,facebook says deleted many fake accounts in german campaign,facebook say deleted many fake account german campaign
+1,myanmar's suu kyi under pressure as almost 125000 rohingya flee violence,myanmar suu kyi pressure almost rohingya flee violence
+0,no joke! chicago cops searching for thug dad who filmed toddler smoking pot: ‚inhale it‚ [video],joke chicago cop searching thug dad filmed toddler smoking pot inhale video
+1,italy's 5-star movement votes for leader di maio seen winning,italy star movement vote leader di maio seen winning
+1,smart cities,smart city
+0,just in! surprise guest shows up at nationals park to watch gop congressional baseball game for charity [video],surprise guest show national park watch gop congressional baseball game charity video
+0,hillary supporter,hillary supporter
+1,putin merkel hold phone call after german polls: kremlin,putin merkel hold phone call german poll kremlin
+0,sheriff clarke blasts liberal crybaby lawyer: ‚there are dead cops because of fake news story [‚hands up don‚t shoot‚] out of ferguson,sheriff clarke blast liberal crybaby lawyer dead cop fake news story hand dont shoot ferguson
+0,ron paul: ‚i can‚t support trump if he‚s gop pick‚ and ‚neocons will love hillary‚,ron paul cant support trump he gop pick neocon love hillary
+0,u.s. state dept. spox: ‚everybody wants assad out five years ago‚,u state dept spox everybody want assad five year ago
+1,u.n. rights chief urges yemen inquiry after 'minimal' effort for justice,un right chief urge yemen inquiry minimal effort justice
+1,highlights: hong kong leader carrie lam delivers maiden policy address,highlight hong kong leader carrie lam delivers maiden policy address
+0,breaking: fed judge terminates mi recount‚asks stein attorney in court : ‚why are you coming to court now when you knew about the deficiencies beforehand?‚,breaking fed judge terminates mi recountasks stein attorney court coming court knew deficiency beforehand
+0,democrats against trump‚s wall for lawbreakers‚but not against wall to keep bernie sanders‚ fans out,democrat trump wall lawbreakersbut wall keep bernie sander fan
+0,secret service agent says hillary has parkinson‚s disease‚has trouble walking‚flashing lights,secret service agent say hillary parkinson diseasehas trouble walkingflashing light
+0,he‚s back! hillary‚s coughing fit draws her mysterious handler out of shadows‚who is this guy? [video],he back hillary coughing fit draw mysterious handler shadowswho guy video
+0,cnn hosts panic when congressman,cnn host panic congressman
+1,france offers belgium to supply its army with rafale war planes,france offer belgium supply army rafale war plane
+1,central african republic defense minister sacked amid growing violence,central african republic defense minister sacked amid growing violence
+0,hillary approved? bill clinton ditched secret service on several trips to exotic locations on pedophile plane,hillary approved bill clinton ditched secret service several trip exotic location pedophile plane
+1,russian diplomats vacate three properties on u.s. orders,russian diplomat vacate three property u order
+1,mugabe would have rejected who role says spokesman after its u-turn,mugabe would rejected role say spokesman uturn
+1,italian government gets economy bill through senate despite friction,italian government get economy bill senate despite friction
+1,tunisia rescues 140 migrants off its coast,tunisia rescue migrant coast
+0,absolutely stunning video shows how one hacker can totally change the outcome of our elections [video],absolutely stunning video show one hacker totally change outcome election video
+0,radical eric holder stirs the pot‚claims republicans won election by ‚rigging the system‚ [video],radical eric holder stir potclaims republican election rigging system video
+0,the las vegas mass shooting ‚ more to the story than we‚ve been told,la vega mass shooting story weve told
+1,at least eight dead amid cameroon anglophone protests,least eight dead amid cameroon anglophone protest
+0,pro-abortion book for children: my ‚sister is a happy ghost!‚,proabortion book child sister happy ghost
+0,twisted liberal kindergarten teacher allows transgender student to ‚reveal‚ her ‚true gender‚ to class,twisted liberal kindergarten teacher allows transgender student reveal true gender class
+1,gorbachev last soviet leader wants trump-putin summit to save arms pact,gorbachev last soviet leader want trumpputin summit save arm pact
+0,oops! absolutely no one showed up for nyc debut of beyonce‚s clothing line‚is her radical super bowl performance to blame?,oops absolutely one showed nyc debut beyonces clothing lineis radical super bowl performance blame
+1,catalonia parliament votes for oct. 1 referendum on split from spain,catalonia parliament vote oct referendum split spain
+0,aleppo truth: incredible press conference at the united nations,aleppo truth incredible press conference united nation
+0,unreal! cbs‚s ted koppel tells sean hannity he‚s ‚bad for america‚ [video],unreal cbss ted koppel tell sean hannity he bad america video
+0,oops! notable black harvard economist finds blacks are less likely to be shot by cops than other races: ‚the most surprising result of my career‚,oops notable black harvard economist find black less likely shot cop race surprising result career
+0,judge jeanine pirro: rioters need to pay the price with prosecution! [video],judge jeanine pirro rioter need pay price prosecution video
+0,prof michel chossudovsky discusses hillary clinton‚s foreign policy & emerging nuclear risks,prof michel chossudovsky discusses hillary clinton foreign policy emerging nuclear risk
+0,boiler room ep #109 ‚ it‚s a wonderfull life,boiler room ep wonderfull life
+0,prof michel chossudovsky discusses hillary clinton‚s foreign policy & emerging nuclear risks,prof michel chossudovsky discusses hillary clinton foreign policy emerging nuclear risk
+0,arizona rancher protesting in oregon is targeted by cps,arizona rancher protesting oregon targeted cps
+1,iran nuclear deal must be changed for u.s. to remain in pact: tillerson,iran nuclear deal must changed u remain pact tillerson
+1,colombia and eln rebels begin first-ever ceasefire,colombia eln rebel begin firstever ceasefire
+0,john mccain attacks president trump from hospital bed only days after brain cancer diagnosis,john mccain attack president trump hospital bed day brain cancer diagnosis
+0,obama regime agrees to cut deal with iran that further threatens our national security,obama regime agrees cut deal iran threatens national security
+1,jimmy carter: ‚koreans want peace treaty to replace 1953 ceasefire‚,jimmy carter korean want peace treaty replace ceasefire
+1,catalans occupy voting stations to defy madrid's order to stop referendum,catalan occupy voting station defy madrid order stop referendum
+0,marine vet has ‚no regrets‚ over jail time for ‚spilling‚ coffee on these disgusting protestors,marine vet regret jail time spilling coffee disgusting protestors
+1,philippines: 2016 washington‚s fury as philippine‚s elections threaten us anti-china policy,philippine washington fury philippine election threaten u antichina policy
+0,belgium‚s political leader micha√´l modrikamen makes powerful video endorsing donald trump‚warns against muslim migrant invasion: ‚america should not become another brussels‚,belgium political leader michal modrikamen make powerful video endorsing donald trumpwarns muslim migrant invasion america become another brussels
+1,u.s. says 'deeply concerned' about kenya ahead of election,u say deeply concerned kenya ahead election
+0,just in time for re-election‚angela merkel‚s cabinet agrees to bill designed to ‚stop fake-news‚ or suppress truth about rampant sexual assault by refugees?,time reelectionangela merkels cabinet agrees bill designed stop fakenews suppress truth rampant sexual assault refugee
+0,storm maria brings fear pain and shock to puerto ricans,storm maria brings fear pain shock puerto ricans
+0,a must the islamization of our schools [video],must islamization school video
+1,spanish lender sabadell to transfer legal base to alicante - spokeswoman,spanish lender sabadell transfer legal base alicante spokeswoman
+1,czech billionaire' s ano party leads election - results projection,czech billionaire ano party lead election result projection
+0,has europe gone mad? convicted terrorist recruiters free to roam streets if they ‚behave‚ themselves during trial,europe gone mad convicted terrorist recruiter free roam street behave trial
+0,rush limbaugh asks: ‚what would america be like today if president obama had told the truth about what happened in ferguson?‚,rush limbaugh asks would america like today president obama told truth happened ferguson
+0,detroit public school assistant supervisor admits to stealing money from special needs students,detroit public school assistant supervisor admits stealing money special need student
+1,israel's supreme court cancels conscription exemption law,israel supreme court cancel conscription exemption law
+0,breaking: cleveland police chief asks ohio governor to declare state of emergency‚suspend open carry laws during rnc,breaking cleveland police chief asks ohio governor declare state emergencysuspend open carry law rnc
+1,stranger than fiction: why is foundation of vegas shooting survivor sponsored by dhs linked firm?,stranger fiction foundation vega shooting survivor sponsored dhs linked firm
+1,britain's johnson says as may heads to brussels: time to begin serious brexit talks,britain johnson say may head brussels time begin serious brexit talk
+1,egypt's sisi israel's netanyahu meet for first time in public,egypt sisi israel netanyahu meet first time public
+0,fire this guy! muslim cnn host tweets out vile response to president trump‚s tweet after #londonbridge terror attack,fire guy muslim cnn host tweet vile response president trump tweet londonbridge terror attack
+0,she should never have been allowed to step foot on american soil: how female terrorist used fake info to get us visa,never allowed step foot american soil female terrorist used fake info get u visa
+0,father of triplets tells surrogate mother to kill one of the babies or face financial ruin,father triplet tell surrogate mother kill one baby face financial ruin
+0,abc shuts down conservative tim allen‚s ‚last man standing‚‚viewers furious when they see how highly show was rated,abc shuts conservative tim allen last man standingviewers furious see highly show rated
+0,live feed: trump ‚thank you‚ tour in nc with ret. general james mattis [video],live feed trump thank tour nc ret general james mattis video
+0,category 3 hurricane maria could strengthen further: nhc,category hurricane maria could strengthen nhc
+0,fpl shuts one reactor in florida reduces power at another after irma,fpl shuts one reactor florida reduces power another irma
+1,turkey must be in syria's idlib until threat over: defense minister,turkey must syria idlib threat defense minister
+1,pakistan's top diplomat pushes back on u.s. claims of militant support,pakistan top diplomat push back u claim militant support
+1,thousands rally for gay marriage in australia ahead of vote,thousand rally gay marriage australia ahead vote
+0,classic! college snowflake demolished by the great andrew breitbart [video],classic college snowflake demolished great andrew breitbart video
+1,factbox: about 4.2 million still without power in u.s. southeast after irma,factbox million still without power u southeast irma
+1,reopen the kurt cobain case? [poll],reopen kurt cobain case poll
+1,any brexit deal will come at end of two-year negotiations: may,brexit deal come end twoyear negotiation may
+0,donald trump calls meeting with press‚dresses down real fake news networks: ‚everyone at cnn is a liar and you should be ashamed‚,donald trump call meeting pressdresses real fake news network everyone cnn liar ashamed
+0,roseanne barr paid high price for crossing hillary: my show was cancelled by ‚rapist bill clinton‚ for interviewing paula jones [video],roseanne barr paid high price crossing hillary show cancelled rapist bill clinton interviewing paula jones video
+1,vatican urges politicians to defend migrants not stereotype them,vatican urge politician defend migrant stereotype
+1,turkey says doesn't want greece to become 'safe haven' for coup plotters,turkey say doesnt want greece become safe coup plotter
+1,soccer star weah to face vice president in liberian presidential run-off,soccer star weah face vice president liberian presidential runoff
+1,turkish army surveys syria's idlib before deployment - sources,turkish army survey syria idlib deployment source
+0,trump: the first president to turn postmodernism against itself,trump first president turn postmodernism
+0,lol! why this list of gop ‚leaders‚ have no business condemning trump,lol list gop leader business condemning trump
+0,false flag florida: fbi agents ‚posing as terrorists‚ in miami sting operation,false flag florida fbi agent posing terrorist miami sting operation
+0,tomi lahren: ‚i guess jill stein wants to see hillary be the first female to lose the election,tomi lahren guess jill stein want see hillary first female lose election
+0,pope shames americans from mexico for anti-immigrant sentiment‚doesn‚t mention $billions taxpayers give faith based charities to bring muslim immigrants to u.s.,pope shame american mexico antiimmigrant sentimentdoesnt mention billion taxpayer give faith based charity bring muslim immigrant u
+1,public works blitz helps macri coalition in argentina midterm vote,public work blitz help macri coalition argentina midterm vote
+0,bernie sanders thanks obama for not endorsing a candidate‚only hours later,bernie sander thanks obama endorsing candidateonly hour later
+1,ireland eyes northern irish political breakthrough warns on border,ireland eye northern irish political breakthrough warns border
+1,indian state ruled by pm modi's party defers media curbs until next year,indian state ruled pm modis party defers medium curb next year
+0,[video] the left is going to really dislike ms south carolina‚s answer to this question about guns,video left going really dislike m south carolina answer question gun
+1,macron's ideas can bolster franco-german axis: merkel,macron idea bolster francogerman axis merkel
+1,new zealand jet fuel rations increased as government calls in navy to beat shortage,new zealand jet fuel ration increased government call navy beat shortage
+0,oops! crybaby hamilton stars who lectured pence haven‚t voted in years [video],oops crybaby hamilton star lectured penny havent voted year video
+1,u.n.'s guterres calls on myanmar to end violence urges aid,un guterres call myanmar end violence urge aid
+1,deadly twin suicide attack hits damascus police station,deadly twin suicide attack hit damascus police station
+0,lol! democrat congressman humiliated after comparing trump to dangerous ‚racist‚ republican governor‚watch republican congressman explain governor was actually a democrat [video],lol democrat congressman humiliated comparing trump dangerous racist republican governorwatch republican congressman explain governor actually democrat video
+0,american scientists harvesting human organs in live pigs,american scientist harvesting human organ live pig
+0,hey america‚where was the outrage when obama chose the 7 nations trump banned from entering us‚or obama‚s ban of cuban refugees on last day in office?,hey americawhere outrage obama chose nation trump banned entering usor obamas ban cuban refugee last day office
+0,boiler room #61 ‚ hello from the gutter,boiler room hello gutter
+0,revealed: fbi aided,revealed fbi aided
+0,this is rich! aclu wants investigation into hollywood sexism,rich aclu want investigation hollywood sexism
+1,pakistani-american faces extradition hearing on nyc attack plot,pakistaniamerican face extradition hearing nyc attack plot
+0,billionaire,billionaire
+0,reckless dem mayor blames amtrak engineer for crash‚update: new evidence shows train may have been hit by projectile,reckless dem mayor blame amtrak engineer crashupdate new evidence show train may hit projectile
+1,u.s. will only talk to north korea about freeing u.s. citizens: white house,u talk north korea freeing u citizen white house
+1,south africa court says cannot compel zuma to set up influence-peddling inquiry,south africa court say compel zuma set influencepeddling inquiry
+1,china backs u.n. call for justice in yemen u.s. and saudis don't,china back un call justice yemen u saudi dont
+0,listen to this former doj whistleblower,listen former doj whistleblower
+1,ex-soccer star weah headed for presidential run-off in liberia,exsoccer star weah headed presidential runoff liberia
+0,boiler room #89 ‚ island of misfit toys,boiler room island misfit toy
+0,boiler room ‚ ep #55 ‚ roasting the wretched hive of scum and villainy,boiler room ep roasting wretched hive scum villainy
+0,snowden laughs-off cia excuse of ‚mistakenly destroying‚ secret torture report,snowden laughsoff cia excuse mistakenly destroying secret torture report
+1,czech pm candidate babis to face fraud charges after vote,czech pm candidate babis face fraud charge vote
+0,treasury dept depicts lady liberty as a black woman on new u.s. coin,treasury dept depicts lady liberty black woman new u coin
+0,brutal new benghazi ad exposes hillary‚s embarrassing incompetence [video],brutal new benghazi ad expose hillary embarrassing incompetence video
+0,obama guilts congressional black caucus members to vote for hillary,obama guilt congressional black caucus member vote hillary
+1,trump malaysia's najib skirt round u.s. probe into 1mdb scandal,trump malaysia najib skirt round u probe mdb scandal
+0,wow! trump reveals embarrassing story about anti-trump msnbc hacks ‚crazy mika‚ and ‚psycho joe‚ [video],wow trump reveals embarrassing story antitrump msnbc hack crazy mika psycho joe video
+1,u.s. state department says 'very concerned' about reports of kirkuk confrontation,u state department say concerned report kirkuk confrontation
+0,buh-bye! glenn beck places final nail in his coffin‚and his former fans won‚t miss him [video],buhbye glenn beck place final nail coffinand former fan wont miss video
+0,this video will destroy ‚black lives matter‚‚share it everywhere!,video destroy black life mattershare everywhere
+1,"us-saudi plan: let 9000 isis fighters walk free from mosul ‚ to fight in syria""",ussaudi plan let isi fighter walk free mosul fight syria
+1,trump travel ban on more solid ground as top court cancels hearing,trump travel ban solid ground top court cancel hearing
+0,peace prize president obama approved $200 billion in arms deals since 2009,peace prize president obama approved billion arm deal since
+0,are you a conservative,conservative
+0,dr. wolf calls out hillary for lying about pneumonia diagnosis [video],dr wolf call hillary lying pneumonia diagnosis video
+0,refugee business is cash cow for lutheran charity in mi and other states,refugee business cash cow lutheran charity mi state
+0,president trump to cuba: send back escaped cop killer‚poster child for black lives matter movement [video],president trump cuba send back escaped cop killerposter child black life matter movement video
+1,anarchy by design: ‚anti-trump‚ flash mobs,anarchy design antitrump flash mob
+1,philippine lawyers ask supreme court to halt 'illegal' war on drugs,philippine lawyer ask supreme court halt illegal war drug
+1,north korea shipments to syria chemical arms agency intercepted: u.n. report,north korea shipment syria chemical arm agency intercepted un report
+0,strange: hillary goes off the rails in labor union speech,strange hillary go rail labor union speech
+0,boiler room ‚ ep #44 ‚ dig,boiler room ep dig
+0,[video] does seeing two naked lesbians in bed together make you want to eat yogurt? chobani apparently thinks it does,video seeing two naked lesbian bed together make want eat yogurt chobani apparently think
+1,south korea u.s. japan kick off two-day missile tracking drill: south korea military,south korea u japan kick twoday missile tracking drill south korea military
+0,the list of who‚s who taking advantage of failed eu austerity experiment in greece,list who taking advantage failed eu austerity experiment greece
+1,wait for the talks says uk pm's spokesman on possible brexit breakthrough,wait talk say uk pm spokesman possible brexit breakthrough
+0,busted! black protester caught dressing in kkk garb pretending to be trump supporter,busted black protester caught dressing kkk garb pretending trump supporter
+0,boiler room ‚ ep #57 ‚ revenge of the social rejects,boiler room ep revenge social reject
+1,turkey turns off kurdish rudaw channel in wake of referendum,turkey turn kurdish rudaw channel wake referendum
+1,saviors or profiteers? bangladesh fishermen rescue rohingya for a price,savior profiteer bangladesh fisherman rescue rohingya price
+0,george lucas gives verdict on new star wars spin-off ‚rogue one‚,george lucas give verdict new star war spinoff rogue one
+1,philippine lawmakers reject fifth duterte cabinet pick,philippine lawmaker reject fifth duterte cabinet pick
+0,guess who‚s offended now? this walmart costume set off a firestorm of complaints so i think i‚ll buy it,guess who offended walmart costume set firestorm complaint think ill buy
+0,commander in chief approved racism? u.s. military makes shocking disciplinary decision for 16 black west point cadets,commander chief approved racism u military make shocking disciplinary decision black west point cadet
+0,iran hardliners pragmatists show unity in response to trump,iran hardliner pragmatist show unity response trump
+1,east congo militia attacks u.n. base two rebels killed,east congo militia attack un base two rebel killed
+1,south korea says moon and trump agree on need for stronger north korea sanctions,south korea say moon trump agree need stronger north korea sanction
+1,factbox: germans have two ballots in complex election system,factbox german two ballot complex election system
+0,jesse jackson mumbles hilarious reason hillary lost election at his rainbow push ‚shakedown‚ convention,jesse jackson mumble hilarious reason hillary lost election rainbow push shakedown convention
+0,yikes! tomi lahren demolishes hillary: ‚how dare you blame donald trump‚excuse me?‚did 4 americans die on his watch in benghazi? [video],yikes tomi lahren demolishes hillary dare blame donald trumpexcuse medid american die watch benghazi video
+1,nepal holds final round of municipal polls ethnic grievances remain,nepal hold final round municipal poll ethnic grievance remain
+1,south africa's dlamini-zuma anc leadership contender to become mp,south africa dlaminizuma anc leadership contender become mp
+0,ex-fbi agent navy seal: ‚russian interference‚ lie spread by intelligence community is like hitler‚s mein kampf [video],exfbi agent navy seal russian interference lie spread intelligence community like hitler mein kampf video
+0,never forget? college students give disturbing answers about why america was attacked on 9/11 [video],never forget college student give disturbing answer america attacked video
+1,greece 'ready and determined' to exit bailout in 2018: pm,greece ready determined exit bailout pm
+0,brazilians toil for gold in illegal amazon mines,brazilian toil gold illegal amazon mine
+1,air strikes in syria's rebel-held idlib kill 28: observatory,air strike syria rebelheld idlib kill observatory
+0,starbucks employee calls police on man wanting coffee name to be ‚trump‚‚#trumpcup [video],starbucks employee call police man wanting coffee name trumptrumpcup video
+0,obama brags about hijacking 1.35 million acres in utah,obama brag hijacking million acre utah
+1,venezuela's opposition-led congress seeks support in paris,venezuela oppositionled congress seek support paris
+1,kremlin calls north korea's latest missile launch another 'provocation',kremlin call north korea latest missile launch another provocation
+0,breaking: obama-appointed judge orders vote recount to begin at noon on monday,breaking obamaappointed judge order vote recount begin noon monday
+1,london mayor says britain should not host president trump on state visit,london mayor say britain host president trump state visit
+1,saudi king decrees women be allowed to drive,saudi king decree woman allowed drive
+1,norway's merkel erna solberg hopes to beat history in re-election bid,norway merkel erna solberg hope beat history reelection bid
+1,south sudan judges end strike to return to huge legal backlog,south sudan judge end strike return huge legal backlog
+1,in working class paris suburb 'macronomics' falls flat,working class paris suburb macronomics fall flat
+1,stockholm study: us & europe top arms trade globally ‚ saudi arabia‚s weapons imports skyrocket over 200 percent,stockholm study u europe top arm trade globally saudi arabia weapon import skyrocket percent
+1,episode 3 ‚ drive by wire: ‚under new management‚ with patrick & shawn,episode drive wire new management patrick shawn
+0,spanish archaeologists dig up more civil war dead from mass graves,spanish archaeologist dig civil war dead mass graf
+0,illegal alien deported 3 times kills sports journalist and father of 4 day before father‚s day,illegal alien deported time kill sport journalist father day father day
+0,canadian pastor escaped execution due to foreign citizenship: cbc,canadian pastor escaped execution due foreign citizenship cbc
+0,take a number,take number
+1,sweden britain seek u.n. meeting on situation in myanmar,sweden britain seek un meeting situation myanmar
+1,senator urges u.s. airlines to cap fares for people fleeing maria,senator urge u airline cap fare people fleeing maria
+1,pentagon: will provide trump options if north korea provocations continue,pentagon provide trump option north korea provocation continue
+0,the moment fbi director james comey lost all credibility [video],moment fbi director james comey lost credibility video
+1,saudi arabia says hopes kurdistan vote will not take place,saudi arabia say hope kurdistan vote take place
+0,fake cnn and msnbc caught claiming ‚live‚ guest‚but they aired at the same time [video],fake cnn msnbc caught claiming live guestbut aired time video
+0,ominous warning to europeans: you are committing self-murder‚life as you know it is about to change‚immigrants will bring their wars to your doorstep [video],ominous warning european committing selfmurderlife know changeimmigrants bring war doorstep video
+0,leftist bon jovi to play fundraiser for hillary‚s ‚everyday people‚ with tickets only one-percenters can afford,leftist bon jovi play fundraiser hillary everyday people ticket onepercenters afford
+0,wikileaks email: clinton fan boy says he ‚knows‚ trump-hater megyn kelly‚offers to arrange softball interview for hillary,wikileaks email clinton fan boy say know trumphater megyn kellyoffers arrange softball interview hillary
+0,anti-gun zealot katie couric hit with $12 million defamation lawsuit by 2nd amendment group [video],antigun zealot katie couric hit million defamation lawsuit nd amendment group video
+1,war criminal or role model? it's a thin line in serbia,war criminal role model thin line serbia
+0,detroit schools chief wants to shut down charter schools ranked ‚best in the state‚ to focus on public schools ranked ‚worst urban school district in country‚,detroit school chief want shut charter school ranked best state focus public school ranked worst urban school district country
+1,islamic state claims attack on damascus police station,islamic state claim attack damascus police station
+0,[flashback video] michelle obama to hillary: ‚if you can‚t run your own house,flashback video michelle obama hillary cant run house
+0,unrecognizable after major plastic surgery‚hollywood lib renee zellweger criticizes trump: ‚why are we talking about how women look?‚ [video],unrecognizable major plastic surgeryhollywood lib renee zellweger criticizes trump talking woman look video
+0,boycott! pro-gun control seth (racist) rogen,boycott progun control seth racist rogen
+1,israeli brass casts doubt on blaming shelling on hezbollah,israeli brass cast doubt blaming shelling hezbollah
+1,cia‚s pompeo: ‚assange shouldn‚t be confident of protecting wikileaks sources‚,cia pompeo assange shouldnt confident protecting wikileaks source
+1,uk police arrest suspected knifeman near birmingham train station: paper,uk police arrest suspected knifeman near birmingham train station paper
+1,two-thirds of germans see persistent east-west divisions: poll,twothirds german see persistent eastwest division poll
+1,catalan government mulling calling snap election: pro-independence party cup,catalan government mulling calling snap election proindependence party cup
+0,busted: the ultimate communist organizer‚evidence shows george soros behind ferguson race riots,busted ultimate communist organizerevidence show george soros behind ferguson race riot
+0,the smartest woman in politics: ‚how trump can knock out hillary in the first debate‚,smartest woman politics trump knock hillary first debate
+0,episode #154 ‚ sunday wire: ‚the pro-war left?‚ with guests jean bricmont,episode sunday wire prowar left guest jean bricmont
+1,china must cooperate with other nations on climate change: xi,china must cooperate nation climate change xi
+1,bodies of egyptians killed by islamic state in libya recovered: report,body egyptian killed islamic state libya recovered report
+0,ouch! post debate: hillary gives tim kaine a painful preview of what it feels like when you disappoint her,ouch post debate hillary give tim kaine painful preview feel like disappoint
+0,muslims criticize new state law that permanently bans sharia law,muslim criticize new state law permanently ban sharia law
+1,car bomber hits nato convoy in afghanistan civilians wounded,car bomber hit nato convoy afghanistan civilian wounded
+1,germany's gabriel warns of military escalation over iran deal,germany gabriel warns military escalation iran deal
+1,french nigerien forces operating where three u.s. soldiers killed,french nigerien force operating three u soldier killed
+1,macron's eu vision will bolster franco-german axis: merkel,macron eu vision bolster francogerman axis merkel
+1,brazil supreme court sends new temer graft charges to congress,brazil supreme court sends new temer graft charge congress
+0,awesome! president trump shows off his strength‚obama would have hurt himself doing this [video],awesome president trump show strengthobama would hurt video
+1,boiler room ep #84 ‚ the discredited media strikes back,boiler room ep discredited medium strike back
+0,car torched and sprayed with ‚f*ck trump‚ because of pro-trump sticker,car torched sprayed fck trump protrump sticker
+1,central african republic children starve as aid workers flee fighting,central african republic child starve aid worker flee fighting
+0,cnn panel roars with laughter at tim kaine‚s lame defense of clinton not holding a press conference [video],cnn panel roar laughter tim kaines lame defense clinton holding press conference video
+1,iraqi forces seize air base from islamic state near hawija,iraqi force seize air base islamic state near hawija
+1,xi says china will boost efforts to tackle terrorism extremism,xi say china boost effort tackle terrorism extremism
+1,wikileaks clinton campaign email: uneducated,wikileaks clinton campaign email uneducated
+1,french socialist party puts its historic building for sale,french socialist party put historic building sale
+1,'trump dossier' on russia links now part of special counsel's probe: sources,trump dossier russia link part special counsel probe source
+1,spain plans new elections in catalonia to end independence bid: opposition,spain plan new election catalonia end independence bid opposition
+1,spain says most potential voting stations for catalan vote closed,spain say potential voting station catalan vote closed
+1,china singapore look to put difficulties behind them,china singapore look put difficulty behind
+0,former cop who worked with muslim terrorist complained about homophobic,former cop worked muslim terrorist complained homophobic
+1,loss of focus in fighting islamic state after kurdish referendum: coalition spokesman,loss focus fighting islamic state kurdish referendum coalition spokesman
+1,romania finalizes draft of judiciary overhaul criticized by eu,romania finalizes draft judiciary overhaul criticized eu
+1,false alarm or psy-op? lax ‚active shooter‚ spectacle,false alarm psyop lax active shooter spectacle
+1,russian military chief meets nato general to soothe war games fears: ifax,russian military chief meet nato general soothe war game fear ifax
+0,trump supporters attacked by liberal protesters: taking political violence to new level,trump supporter attacked liberal protester taking political violence new level
+0,donald trump jr. blasts ‚comedian‚ kathy griffin after she poses in gruesome photo holding president trump‚s bloody,donald trump jr blast comedian kathy griffin pose gruesome photo holding president trump bloody
+1,turkey releases french journalist detained on iraqi border,turkey release french journalist detained iraqi border
+1,trump says he can end iran deal if no action to fix it soon,trump say end iran deal action fix soon
+1,british trade union conference evacuated over bomb threat,british trade union conference evacuated bomb threat
+1,missing details: orlando shooting 911 transcripts questioned,missing detail orlando shooting transcript questioned
+1,labour and national even in tight new zealand election race: roy morgan poll,labour national even tight new zealand election race roy morgan poll
+1,city to decide: should they allow illegals to vote in local elections?,city decide allow illegals vote local election
+0,robin williams calls out hypocrisy of audience during his politically incorrect comedy act about muslims,robin williams call hypocrisy audience politically incorrect comedy act muslim
+0,child porn,child porn
+0,trump drives critics crazy: eliminates obama‚s czars‚pays female staffers more than men‚saves taxpayers millions!,trump drive critic crazy eliminates obamas czarspays female staffer mensaves taxpayer million
+1,speed up brexit transition talks or deal will be worthless says uk's hammond,speed brexit transition talk deal worthless say uk hammond
+0,obama finally builds border wall‚but there‚s one problem‚it‚s only for the obama‚s,obama finally build border wallbut there one problemits obamas
+1,potential shift: trump warns israel,potential shift trump warns israel
+1,israeli legislator quits in dispute over nephew's gay wedding,israeli legislator quits dispute nephew gay wedding
+0,charlie daniels warns liberals: knock it off or ‚there will be blood in the streets!‚,charlie daniel warns liberal knock blood street
+0,former fbi asst director: ‚jim comey ‚danced with the devil‚‚i‚m glad he‚s gone‚ [video],former fbi asst director jim comey danced devilim glad he gone video
+0,breaking: megyn kelly interviews parents of fake black rachel dolezal [video],breaking megyn kelly interview parent fake black rachel dolezal video
+1,eu leaders to call for end to north korea's weapons program: draft,eu leader call end north korea weapon program draft
+0,disgusting! unemployed,disgusting unemployed
+0,watch michelle obama take one last walk through the house she was forced to wake up in every morning,watch michelle obama take one last walk house forced wake every morning
+1,iran military chief of staff says not acceptable for israel to violate syria,iran military chief staff say acceptable israel violate syria
+0,gary johnson: meet the ‚creepy‚ pro-amnesty,gary johnson meet creepy proamnesty
+0,the obama legacy: worst economic growth of all 13 post-wwii presidents [video],obama legacy worst economic growth postwwii president video
+0,history lesson: america‚s renegade warfare,history lesson america renegade warfare
+1,german election campaign largely unaffected by fake news or bots,german election campaign largely unaffected fake news bot
+0,flashback: graphic video shows hillary supporters beating ‚deplorable‚trump supporters bloody,flashback graphic video show hillary supporter beating deplorabletrump supporter bloody
+1,merkel in diplomatic push on north korea to speak with putin: spokesman,merkel diplomatic push north korea speak putin spokesman
+0,gap apologizes for ‚offensive image‚ after blacktivists use social media to attack ad‚but here‚s dirty secret race agitators aren‚t sharing,gap apologizes offensive image blacktivists use social medium attack adbut here dirty secret race agitator arent sharing
+1,myanmar urges rohingya muslims to help hunt insurgents amid deadly violence,myanmar urge rohingya muslim help hunt insurgent amid deadly violence
+1,head of russian general staff reassures nato over war games: ria,head russian general staff reassures nato war game ria
+1,key figures in future austrian coalition talks,key figure future austrian coalition talk
+1,ebrd urges poland to revive privatizations,ebrd urge poland revive privatization
+1,russia: moscow does not want to escalate situation around u.s. diplomats - agencies,russia moscow want escalate situation around u diplomat agency
+1,turkey urges u.s. to review visa suspension as lira stocks tumble,turkey urge u review visa suspension lira stock tumble
+1,after victory in raqqa over is kurds face tricky peace,victory raqqa kurd face tricky peace
+1,trump advisers craft more orderly response to north korea after latest test,trump adviser craft orderly response north korea latest test
+1,russia denies syrian opposition allegation over civilian deaths,russia denies syrian opposition allegation civilian death
+1,facing crime wave residents in south sudan capital pay police for protection,facing crime wave resident south sudan capital pay police protection
+1,uae criticizes 'colonial' role of iran turkey in syria,uae criticizes colonial role iran turkey syria
+1,active shooter or drill? the cascade mall shooting,active shooter drill cascade mall shooting
+1,palestinian prime minister visits gaza in move to reconcile with hamas,palestinian prime minister visit gaza move reconcile hamas
+0,pittsburgh police officers boycotting race baiting diva beyonc√©‚s concert may be forced to work,pittsburgh police officer boycotting race baiting diva beyoncs concert may forced work
+0,dirty,dirty
+1,next round of syria talks in astana set for september 14-15,next round syria talk astana set september
+0,priorities: as vets lay dying,priority vet lay dying
+1,german minister upsets fellow conservatives over muslim holidays,german minister upset fellow conservative muslim holiday
+0,here we go again‚grammy awards under fire for not honoring enough dead black people,go againgrammy award fire honoring enough dead black people
+1,russia jordan agree to speed de-escalation zone in south syria,russia jordan agree speed deescalation zone south syria
+1,the u.s. has no legal standing in its involvement in the war on yemen,u legal standing involvement war yemen
+0,illegal alien protesters yell at police for not shutting down pro-trump protesters [video],illegal alien protester yell police shutting protrump protester video
+1,three police officers killed eight injured in shoot-out in giza: security sources,three police officer killed eight injured shootout giza security source
+1,shout! poll: do the ‚white helmets‚ qualify for a nobel peace prize?,shout poll white helmet qualify nobel peace prize
+0,oh canada! why are you celebrating world hijab day?,oh canada celebrating world hijab day
+1,u.n. team to collect evidence of islamic state crimes in iraq,un team collect evidence islamic state crime iraq
+1,orlando mass shooting & the accelerated police state ‚ uk column ‚ june 13,orlando mass shooting accelerated police state uk column june
+1,big drop in asylum seekers illegally crossing into canada in september,big drop asylum seeker illegally crossing canada september
+0,little house on prairie actress runs for congress‚thinks it‚s okay for grown men to rape 13 year old girls (if mom‚s home),little house prairie actress run congressthinks okay grown men rape year old girl mom home
+0,wikileaks: nsa spied on un secretary-general and world leaders‚ secret meetings,wikileaks nsa spied un secretarygeneral world leader secret meeting
+0,students at major university: black students,student major university black student
+0,trump faces off with cnn‚s jake tapper over event fistacuffs,trump face cnns jake tapper event fistacuffs
+0,october tease: wikileaks false start leaves trump supporters sleepless and exasperated,october tease wikileaks false start leaf trump supporter sleepless exasperated
+1,joint strike fighter plans stolen in australia cyber attack,joint strike fighter plan stolen australia cyber attack
+1,one in three swiss uncomfortable with outsiders: survey,one three swiss uncomfortable outsider survey
+0,students sent home from indonesian islamic school linked to child fighters,student sent home indonesian islamic school linked child fighter
+0,the new cold war: a chilling prospect for the world,new cold war chilling prospect world
+0,astroturfing: journalist reveals brainwashing tactic uses to manipulate public opinion,astroturfing journalist reveals brainwashing tactic us manipulate public opinion
+1,civilians among dozens of casualties from clashes in libyan smuggling hub,civilian among dozen casualty clash libyan smuggling hub
+1,merkel trump call for tougher u.n. sanctions against north korea,merkel trump call tougher un sanction north korea
+1,tunisian migrant navy boats collide; eight bodies found,tunisian migrant navy boat collide eight body found
+1,kenya opposition leader odinga says he will not share power,kenya opposition leader odinga say share power
+1,at least one killed by hurricane irma on dutch side of saint martin,least one killed hurricane irma dutch side saint martin
+1,henningsen: ‚us anti-trump protests similar to soros color revolutions abroad‚,henningsen u antitrump protest similar soros color revolution abroad
+0,wow! tomi lahren blasts liberal media for trying to label conservative news as ‚fake‚‚‚evolve or die mainstream media‚ [video],wow tomi lahren blast liberal medium trying label conservative news fakeevolve die mainstream medium video
+0,hillary‚s ‚russian hack‚ hoax: the biggest lie of this election season,hillary russian hack hoax biggest lie election season
+1,suicide bomber kills six people in central somalia: police,suicide bomber kill six people central somalia police
+0,nyt‚s gifts america with christmas eve letter from black professor who teaches students every white person is a ‚racist‚ [video],nyts gift america christmas eve letter black professor teach student every white person racist video
+1,flamboyant hong kong businessman david tang dies aged 63,flamboyant hong kong businessman david tang dy aged
+0,when you see disgusting thing researchers found in starbuck‚s coffee‚you‚ll never drink it again!,see disgusting thing researcher found starbucks coffeeyoull never drink
+1,plague outbreak in madagascar kills 20: who,plague outbreak madagascar kill
+1,russian islamic state fighter sentenced to hang in iraq,russian islamic state fighter sentenced hang iraq
+0,philosopher slavoj ≈ωi≈æek: ‚the american left lacks authenticity‚,philosopher slavoj iek american left lack authenticity
+1,uk pm may readying concessions on welfare reform - sunday telegraph,uk pm may readying concession welfare reform sunday telegraph
+1,suicide risk torture victim can be deported: eu court adviser,suicide risk torture victim deported eu court adviser
+0,oops! ny gov cuomo announces statues of confederate generals ‚will be removed because ny stands against racism‚‚ignores state was named after owner of african slave trading company,oops ny gov cuomo announces statue confederate general removed ny stand racismignores state named owner african slave trading company
+0,influential hollywood leftist looks forward to racist comedian,influential hollywood leftist look forward racist comedian
+0,tucker carlson shocked at lawyer‚s delusion on rejection of voter id law in texas [video],tucker carlson shocked lawyer delusion rejection voter id law texas video
+0,breaking email leak: ‚bernie needs to be ground to a pulp‚crush him as hard as you can‚,breaking email leak bernie need ground pulpcrush hard
+0,ford‚s new ceo snubs president trump‚will build focus in china‚export to u.s.,ford new ceo snub president trumpwill build focus chinaexport u
+0,grab the popcorn! queen of corruption denied special treatment for first debate,grab popcorn queen corruption denied special treatment first debate
+1,britain is ready to walk away with no deal on brexit davis says,britain ready walk away deal brexit davis say
+0,black woman attacks man,black woman attack man
+0,the new american century: an era of fraud,new american century era fraud
+1,russia urges u.s. to start finding way to resolve problems,russia urge u start finding way resolve problem
+1,holocaust survivor celebrates bar mitzvah in israel 80 years later,holocaust survivor celebrates bar mitzvah israel year later
+0,insane salary paid to progressive univ of wisconsin‚s ‚queer migration‚ teacher,insane salary paid progressive univ wisconsin queer migration teacher
+1,suicide bombers attack damascus police center: syrian state media,suicide bomber attack damascus police center syrian state medium
+0,atzmon: who keeps americans in the dark?,atzmon keep american dark
+1,u.s. to send 3500 additional troops to afghanistan,u send additional troop afghanistan
+1,lack of clear uk stance making brexit talks tough: french pm,lack clear uk stance making brexit talk tough french pm
+0,the face of the democrat party has a message for the tea party and you won‚t want to miss it‚[video],face democrat party message tea party wont want miss itvideo
+1,u.s.-led forces acknowledge killing 50 more civilians in iraq syria,usled force acknowledge killing civilian iraq syria
+0,working class revolt! old school jersey patriots let the liberals and hollywood have it! [video],working class revolt old school jersey patriot let liberal hollywood video
+1,north korean nuclear test prompts global condemnation,north korean nuclear test prompt global condemnation
+1,six farmers killed in apparent land dispute in peru's amazon,six farmer killed apparent land dispute peru amazon
+1,pm may is driving britain to cliff-edge brexit: labour leader,pm may driving britain cliffedge brexit labour leader
+0,obama to grant work permits for spouses of illegal aliens on may 26,obama grant work permit spouse illegal alien may
+1,protests test tribal authority on south africa's platinum belt,protest test tribal authority south africa platinum belt
+0,abc news: emails show hillary‚s top aide arranged ‚special seating‚ at state dinner for top clinton donors [video],abc news email show hillary top aide arranged special seating state dinner top clinton donor video
+0,candidate handel‚s excellent response to alexandria shooter calling her a ‚republican b**ch‚,candidate handel excellent response alexandria shooter calling republican bch
+1,eu executive to raise pressure on poland on wednesday: sources,eu executive raise pressure poland wednesday source
+0,sylville smith‚s sister becomes latest spokesperson for obama‚s #blacklivesmatter terror movement: ‚don‚t burn down sh*t we need‚take that sh*t to the suburbs‚burn that sh*t down‚we need our sh*t‚ [video],sylville smith sister becomes latest spokesperson obamas blacklivesmatter terror movement dont burn sht needtake sht suburbsburn sht downwe need sht video
+1,china probes former vice-chief of securities regulator for graft,china probe former vicechief security regulator graft
+0,if you answer ‚yes‚ to these fbi questions,answer yes fbi question
+0,chicago: 20-yr-old muslim woman drops baby to death from 8th floor apartment window‚judge sentences her to 4 years probation,chicago yrold muslim woman drop baby death th floor apartment windowjudge sentence year probation
+1,greece plays down financial impact of any f-16 jet deal,greece play financial impact f jet deal
+1,spain hopes catalans disregard instruction from regional leaders: minister,spain hope catalan disregard instruction regional leader minister
+1,speaker of ethiopian parliament submits resignation,speaker ethiopian parliament submits resignation
+0,vote for a democrat in this state‚get a prize! does anyone care that democrats are stealing our election?,vote democrat stateget prize anyone care democrat stealing election
+1,catalonia cannot accept 'illegal' control from madrid says regional leader,catalonia accept illegal control madrid say regional leader
+1,slovakia respects eu court ruling on refugees position unchanged: pm,slovakia respect eu court ruling refugee position unchanged pm
+1,fighters on raqqa front line brace for final showdown with islamic state,fighter raqqa front line brace final showdown islamic state
+0,target makes decision to endanger our children by allowing men in little girls bathrooms,target make decision endanger child allowing men little girl bathroom
+1,china russia must take direct action against north korea: tillerson,china russia must take direct action north korea tillerson
+0,immigrant with soros-funded education,immigrant sorosfunded education
+0,democrats threaten kids education: chicago teachers union demands raises as chicago public schools run out of money in one week,democrat threaten kid education chicago teacher union demand raise chicago public school run money one week
+0,actor james woods shares hair-raising video that shows real reason president trump refuses to share in angela merkel‚s horrific legacy,actor james wood share hairraising video show real reason president trump refuse share angela merkels horrific legacy
+0,david icke on the hillary,david icke hillary
+1,afghanistan: trump surges into the graveyard of empires,afghanistan trump surge graveyard empire
+1,battered puerto rico hospitals on life support after hurricane maria,battered puerto rico hospital life support hurricane maria
+0,sleezy democrat senator caught fabricating story about fbi having proof trump colluded with russians in election [video],sleezy democrat senator caught fabricating story fbi proof trump colluded russian election video
+0,british tv personality: don‚t blame trump for muslim ban comments ,british tv personality dont blame trump muslim ban comment
+0,judge napolitano agrees with trump: ag sessions shouldn‚t have recused himself [video],judge napolitano agrees trump ag session shouldnt recused video
+1,co-leader of germany's far-right afd to quit in major blow,coleader germany farright afd quit major blow
+1,u.s.-led jets strike in syria to block islamic state evacuation deal,usled jet strike syria block islamic state evacuation deal
+1,german parties fret about turkish voters as erdogan makes mark,german party fret turkish voter erdogan make mark
+0,father hospitalized after telling sharia patrol to stop threatening wife and daughter for violating dress code,father hospitalized telling sharia patrol stop threatening wife daughter violating dress code
+1,cambodia accuses u.s. of political interference calls u.s. democracy 'bloody and brutal',cambodia accuses u political interference call u democracy bloody brutal
+0,ep #8: patrick henningsen live with guest shawn helton ‚ ‚2017 predictions & trends‚,ep patrick henningsen live guest shawn helton prediction trend
+0,black residents not happy after street artist makes one brutally honest change to divisive message [video],black resident happy street artist make one brutally honest change divisive message video
+0,good news for silver in 2017,good news silver
+1,pakistani taliban says behind deadly blast in tribal region,pakistani taliban say behind deadly blast tribal region
+0,boxing legend george foreman reveals how trump saved him when he was ‚broke‚bankrupt‚‚blasts athletes like kaepernick and durant for disrespecting our nation,boxing legend george foreman reveals trump saved brokebankruptblasts athlete like kaepernick durant disrespecting nation
+1,islamic state to fight 'till the end' in raqqa: u.s. coalition spokesman,islamic state fight till end raqqa u coalition spokesman
+1,romanian deputy pm shhaideh investigated for abuse of office,romanian deputy pm shhaideh investigated abuse office
+1,catalonia showdown could unleash new euro crisis: eu lawmaker,catalonia showdown could unleash new euro crisis eu lawmaker
+1,netherlands pm: death toll from irma on dutch saint martin rises to four,netherlands pm death toll irma dutch saint martin rise four
+0,rioters chase down trump supporter‚s truck‚attack him while screaming ‚peaceful protest‚‚throw bricks,rioter chase trump supporter truckattack screaming peaceful protestthrow brick
+1,philippines' duterte takes aim at graft agency head for query on his wealth,philippine duterte take aim graft agency head query wealth
+0,neocon nightmare: trump wants to ‚get along with foreign countries‚,neocon nightmare trump want get along foreign country
+0,older husbands allowed to sleep with child brides on weekends at danish asylum centers,older husband allowed sleep child bride weekend danish asylum center
+1,u.s. pressure or not u.n. nuclear watchdog sees no need to check iran military sites,u pressure un nuclear watchdog see need check iran military site
+1,hacking electronic voting machines is easy,hacking electronic voting machine easy
+1,nz first leader says foreign ownership to be part of coalition wrangling,nz first leader say foreign ownership part coalition wrangling
+1,u.s. approves possible $15 billion sale of thaad missiles to saudi arabia,u approves possible billion sale thaad missile saudi arabia
+1,zimbabwe's mugabe creates cyber ministry in cabinet reshuffle,zimbabwe mugabe creates cyber ministry cabinet reshuffle
+0,yikes! 30 years of hillary‚s lies have driven this well-known democrat strategist to trump [video],yikes year hillary lie driven wellknown democrat strategist trump video
+0,ican chief's message to trump and kim: nuclear weapons are illegal,ican chief message trump kim nuclear weapon illegal
+1,lebanon to complain to u.n. over israel violating airspace,lebanon complain un israel violating airspace
+0,where‚s the oversight? obama funneled billions to liberal groups through doj ‚slush fund‚ [video],wheres oversight obama funneled billion liberal group doj slush fund video
+0,wow! former professional boxer wearing ‚soldier of allah‚ t-shirt warns 3 british activists to ‚fear for their lives‚ on new youtube video,wow former professional boxer wearing soldier allah tshirt warns british activist fear life new youtube video
+0,judge jeanine pirro rips into the lying media ‚in cahoots with clintons‚ [video],judge jeanine pirro rip lying medium cahoot clinton video
+1,boiler room ep #85 ‚ the return of the social rejects club,boiler room ep return social reject club
+0,ep 5: patrick henningsen live with guest daniel faraci ‚ on trump,ep patrick henningsen live guest daniel faraci trump
+0,black lives matter terrorists take to social media: angry over attention given to france terror victims,black life matter terrorist take social medium angry attention given france terror victim
+0,digital tyranny: google will make ‚those kinds of sites‚ harder to find,digital tyranny google make kind site harder find
+1,russia to the united states: stay in iran nuclear deal,russia united state stay iran nuclear deal
+0,[video] baltimore mayor to police: ‚let them loot‚it‚s only property‚ police demoralized after being unable to respond to 9-11 calls from terrorized business owners,video baltimore mayor police let lootits property police demoralized unable respond call terrorized business owner
+1,philippine lawmakers reject last left-wing cabinet minister,philippine lawmaker reject last leftwing cabinet minister
+0,the community organizer who won‚t go away: obama reportedly setting up shadow government in dc to undermine trump‚s presidency [video],community organizer wont go away obama reportedly setting shadow government dc undermine trump presidency video
+0,nbc correspondent tells panel of extremely biased journalists: ‚journalists aren‚t biased‚‚goes on to totally trash president trump with other biased news hosts [video],nbc correspondent tell panel extremely biased journalist journalist arent biasedgoes totally trash president trump biased news host video
+0,front-row felon! americans are stunned to see who sat in front row at obama‚s farewell speech [video],frontrow felon american stunned see sat front row obamas farewell speech video
+1,iran says guards attack islamic state with drones in eastern syria,iran say guard attack islamic state drone eastern syria
+1,to flee or stay? irma's shifting path forces some to reconsider,flee stay irmas shifting path force reconsider
+1,don't leave saudi-backed commission to probe yemen abuses u.n. says,dont leave saudibacked commission probe yemen abuse un say
+0,muslim organization with terrorist ties want to prohibit police from protecting themselves at planned rnc riots in cleveland,muslim organization terrorist tie want prohibit police protecting planned rnc riot cleveland
+1,merkel stays mum on finance ministry at schaeuble's birthday bash,merkel stay mum finance ministry schaeubles birthday bash
+1,miami hospitals prepare for surge in births during hurricane irma,miami hospital prepare surge birth hurricane irma
+1,philippines seeks big cut in drug rehab budget stoking lawmakers' concern,philippine seek big cut drug rehab budget stoking lawmaker concern
+0,the new sweden: rapes,new sweden rape
+1,new slovak education minister appointed after coalition crisis,new slovak education minister appointed coalition crisis
+0,myriad of ways the cia tried (and failed) to assassinate fidel castro,myriad way cia tried failed assassinate fidel castro
+1,russia tells north korea u.s. 'hot heads' to calm down,russia tell north korea u hot head calm
+1,rejuvenated berlusconi lays out vote platform eyes victory in italy,rejuvenated berlusconi lay vote platform eye victory italy
+0,whoa! woman born in nazi germany says trump doesn‚t remind her of hitler‚.rioting leftists trying to shut down free speech does,whoa woman born nazi germany say trump doesnt remind hitlerrioting leftist trying shut free speech
+0,buckle up america: dinesh d‚souza‚s is about to expose the democrat party in ‚hillary‚s america‚‚watch the powerful new trailer here,buckle america dinesh dsouzas expose democrat party hillary americawatch powerful new trailer
+1,catalan police say sagrada familia bomb scare was false alarm,catalan police say sagrada familia bomb scare false alarm
+0,president of radical group advised hillary on how to fake concern for parents of black lives matter victims‚blame cops for pain [video],president radical group advised hillary fake concern parent black life matter victimsblame cop pain video
+1,iraqi pm orders security services 'to protect citizens being coerced' in kurdistan,iraqi pm order security service protect citizen coerced kurdistan
+1,colombia's farc rebels keep famous acronym for new political party,colombia farc rebel keep famous acronym new political party
+0,boom! florida paper makes unprecedented apology after ‚uncomfortably sizable number of readers‚ complain about anti-trump coverage,boom florida paper make unprecedented apology uncomfortably sizable number reader complain antitrump coverage
+0,fake news: the unravelling of us empire from within,fake news unravelling u empire within
+1,google uncovered russia-backed ads on youtube gmail : source,google uncovered russiabacked ad youtube gmail source
+0,[video] detroit woman kills best friend over 2012 presidential race argument‚media refuses to say killer supported obama,video detroit woman kill best friend presidential race argumentmedia refuse say killer supported obama
+0,anti-trump protesters scream profanities at fox news in segment on peaceful protests,antitrump protester scream profanity fox news segment peaceful protest
+1,thai court issues second arrest warrant for fugitive former pm yingluck,thai court issue second arrest warrant fugitive former pm yingluck
+1,kenya bans city-center protests as vote tension mounts,kenya ban citycenter protest vote tension mount
+1,u.s. condemns venezuelan elections as neither free nor fair,u condemns venezuelan election neither free fair
+1,russia's u.n. envoy calls for 'cool heads' on north korea,russia un envoy call cool head north korea
+1,fires destroy more villages in myanmar's rohingya region: sources,fire destroy village myanmar rohingya region source
+0,america is closer to becoming sweden than you think‚don‚t believe us? watch this‚,america closer becoming sweden thinkdont believe u watch
+0,infinite arrogance: obama doesn‚t think the supreme court should have taken up obamacare challenge,infinite arrogance obama doesnt think supreme court taken obamacare challenge
+1,amnesty international urges egypt to release detained nubian activists,amnesty international urge egypt release detained nubian activist
+0,revealed: the establishment‚s scheme to take down trump,revealed establishment scheme take trump
+0,aclu defends illegals? sues doj,aclu defends illegals sue doj
+1,turkish nationalist leader says iraqi kurdish referendum a potential reason for war,turkish nationalist leader say iraqi kurdish referendum potential reason war
+0,morocco's 'mule' women scratch a living on spanish enclave border,morocco mule woman scratch living spanish enclave border
+1,taiwan president pledges to defend freedoms despite china pressure,taiwan president pledge defend freedom despite china pressure
+1,kurdish city gassed by saddam hopes referendum heralds better days,kurdish city gassed saddam hope referendum herald better day
+1,trump to host sept. 18 meeting of world leaders on u.n. reform,trump host sept meeting world leader un reform
+1,iran nuclear deal cannot be renegotiated: rouhani,iran nuclear deal renegotiated rouhani
+1,japan's koike: a political paradox shakes things up ahead of poll,japan koike political paradox shake thing ahead poll
+0,anti-trump protester surrounded by mexican flags in ca: ‚if trump wins he‚ll be dead within a week‚cartel won‚t have his bullsh*t‚ [video],antitrump protester surrounded mexican flag ca trump win hell dead within weekcartel wont bullsht video
+1,china seeks to silence critics at u.n. forums: rights body report,china seek silence critic un forum right body report
+1,poles dressed in black march in defense of women's rights,pole dressed black march defense womens right
+1,uzbekistan drops use of students teachers nurses as cotton-pickers: pm,uzbekistan drop use student teacher nurse cottonpickers pm
+0,heart of a lion: trump jumps into baby #charliegard debate: ‚we would be delighted‚ to help,heart lion trump jump baby charliegard debate would delighted help
+0,boiler room ‚ ep #59 ‚ the loss and curse of patriotism,boiler room ep loss curse patriotism
+1,saudi king says consensus with russia on broadening relations: news agency,saudi king say consensus russia broadening relation news agency
+0,how left- leaning google‚s secret decisions could choose our next president,left leaning google secret decision could choose next president
+1,pakistanis vote in by-election seen as test of support for ousted pm sharif,pakistani vote byelection seen test support ousted pm sharif
+0,future snowflake alert! little girl gets birthday wish: a poop-themed birthday party,future snowflake alert little girl get birthday wish poopthemed birthday party
+0,holy betrayal of america‚s national security: new evidence shows hillary emailed ‚most secretive‚ classified material on private unsecured server,holy betrayal america national security new evidence show hillary emailed secretive classified material private unsecured server
+0,busted! dem tx rep plays race card,busted dem tx rep play race card
+1,bahrain accuses qatar of seizing three boats: agency,bahrain accuses qatar seizing three boat agency
+0,hillary announces defense of killing babies after 20 weeks‚okay with keeping babies alive if used for campaign props,hillary announces defense killing baby weeksokay keeping baby alive used campaign prop
+1,eu's mogherini says all parties complying with iran nuclear deal,eu mogherini say party complying iran nuclear deal
+1,too early to say if uk has made sufficient progress in brexit talks: irish pm,early say uk made sufficient progress brexit talk irish pm
+0,hollywood hip to al qaeda: ‚and the oscar for best documentary short goes to‚‚,hollywood hip al qaeda oscar best documentary short go
+0,boom! business owner uses sign to compare legacies of president kennedy and obama‚and it‚s hilarious,boom business owner us sign compare legacy president kennedy obamaand hilarious
+0,bernie sanders‚ economic policy explained in one brutal meme,bernie sander economic policy explained one brutal meme
+1,brexit blues? britons stay cheerful in tumultuous 12 months,brexit blue briton stay cheerful tumultuous month
+1,turkey stops training iraqi kurdish peshmerga after independence vote,turkey stop training iraqi kurdish peshmerga independence vote
+1,militant attack on minister's convoy kills two bystanders in india's kashmir,militant attack minister convoy kill two bystander india kashmir
+1,'strong' franco-british defense relationship won't be hit by brexit: fallon says,strong francobritish defense relationship wont hit brexit fallon say
+1,facebook will help investigators release russia ads sandberg tells axios,facebook help investigator release russia ad sandberg tell axios
+1,armyworm hits northern cameroon worsening food crisis,armyworm hit northern cameroon worsening food crisis
+1,brazil's top court approves new graft probe of president temer,brazil top court approves new graft probe president temer
+1,dancer who hid peru rebel chief freed from prison after 25 years,dancer hid peru rebel chief freed prison year
+0,media goes nuts after trump tweets hilarious video showing him body-slamming cnn,medium go nut trump tweet hilarious video showing bodyslamming cnn
+0,usa today caught fabricating story about innocent ‚dreamer‚ being deported‚here‚s the truth [video],usa today caught fabricating story innocent dreamer deportedheres truth video
+1,soccer star and vp maintain early leads in liberia election,soccer star vp maintain early lead liberia election
+0,cia claims of russian intervention in us election fall flat,cia claim russian intervention u election fall flat
+1,portugal minister resigns over deadly wildfires pm under pressure,portugal minister resigns deadly wildfire pm pressure
+0,obama-appointed fed judge clears those in limbo at airports due to trump‚s immigration order‚the left has a hissy fit!,obamaappointed fed judge clear limbo airport due trump immigration orderthe left hissy fit
+0,best description of uk brexit yet‚conservatives will stand up and cheer!,best description uk brexit yetconservatives stand cheer
+1,spain state prosecutor asks for custody for catalan police chief: high court,spain state prosecutor asks custody catalan police chief high court
+0,nfl player delivers courageous message: stop blaming white people‚black people are holding black people back,nfl player delivers courageous message stop blaming white peopleblack people holding black people back
+0,two rich white guys who made a fortune selling ice cream to rich people introduce new flavor to highlight black voter suppression,two rich white guy made fortune selling ice cream rich people introduce new flavor highlight black voter suppression
+1,english language exit talk was only banter says eu's juncker,english language exit talk banter say eu juncker
+1,russia-gate was all the rage across us media ‚ where did it go and why?,russiagate rage across u medium go
+0,wow! navy seal blasts hillary: ‚you are an ignorant liar‚ [video],wow navy seal blast hillary ignorant liar video
+0,last minute gov‚t grab: obama admin decrees dhs will ‚take control‚ of us election systems,last minute govt grab obama admin decree dhs take control u election system
+0,episode #160 ‚ sunday wire: ‚hail to the deplorables‚ with special guest randy j,episode sunday wire hail deplorables special guest randy j
+1,pakistan deports turkish school network's former director and family,pakistan deports turkish school network former director family
+1,canadian police say suspect in edmonton attacks is somali national,canadian police say suspect edmonton attack somali national
+0,breaking udate: iran confirms $1.7 billion was ransom payment for prisoners and not part of ‚nuclear deal‚ original story: obama and kerry agree to give iran $1.7 billion u.s. taxpayer dollars as ‚settlement‚,breaking udate iran confirms billion ransom payment prisoner part nuclear deal original story obama kerry agree give iran billion u taxpayer dollar settlement
+1,indian military helicopter crashes near china border seven dead,indian military helicopter crash near china border seven dead
+1,mauritius attorney general steps down amid money laundering probe,mauritius attorney general step amid money laundering probe
+1,turkey to start first foreign aid distribution in myanmar,turkey start first foreign aid distribution myanmar
+0,breaking: muslim terrorist‚s dad visited state department several times‚new evidence suggests attack may have been planned for some time,breaking muslim terrorist dad visited state department several timesnew evidence suggests attack may planned time
+1,russia north korea delegations may meet in vladivostok: tass cites lavrov,russia north korea delegation may meet vladivostok tass cite lavrov
+0,iceland‚s stunning election of anti-establishment political novice should have hillary shaking in her pants suit,iceland stunning election antiestablishment political novice hillary shaking pant suit
+1,critic of rwandan president to face criminal trial on friday,critic rwandan president face criminal trial friday
+0,shocker! cnn‚s jake tapper puts lying palestinian propagandist in his place: ‚if i run at a cop with a knife,shocker cnns jake tapper put lying palestinian propagandist place run cop knife
+0,how hillary destroyed this man‚s life to hide her incompetence in #benghazi,hillary destroyed man life hide incompetence benghazi
+0,flynn‚s out: is ‚the new d√©tente‚ really dead ‚ or can russia still benefit?,flynns new dtente really dead russia still benefit
+0,false flag florida: fbi agents ‚posing as terrorists‚ in miami sting operation,false flag florida fbi agent posing terrorist miami sting operation
+1,exclusive: cambodia says opposition party could be barred from election,exclusive cambodia say opposition party could barred election
+0,how to blow $700 million: al jazeera america finally calls it quits,blow million al jazeera america finally call quits
+1,pakistan army pushed political role for militant-linked groups,pakistan army pushed political role militantlinked group
+1,hungary prosecutors probe accounts of opposition jobbik party,hungary prosecutor probe account opposition jobbik party
+0,andrew breitbart warned us the occupy wall street movement would morph into an orchestrated race war [video],andrew breitbart warned u occupy wall street movement would morph orchestrated race war video
+0,iran sentences member of nuclear negotiating team to five years in jail: tasnim,iran sentence member nuclear negotiating team five year jail tasnim
+0,hypocrisy: paul ryan sends his kids to private school that screens out muslims,hypocrisy paul ryan sends kid private school screen muslim
+1,hezbollah dismisses u.s. rewards for arrest of its operatives,hezbollah dismisses u reward arrest operative
+0,lol! liberals accuse man of voter intimidation for reminding illegal aliens it‚s against the law to vote [video],lol liberal accuse man voter intimidation reminding illegal alien law vote video
+1,gunmen kill four in sectarian attack in pakistan,gunman kill four sectarian attack pakistan
+0,mother of crying baby at trump rally: ‚mr. trump never kicked me or my child out‚‚liberal reporter backs up her story,mother cry baby trump rally mr trump never kicked child outliberal reporter back story
+1,cuba decries u.s. expulsion of 15 diplomats,cuba decries u expulsion diplomat
+1,iraqi-backed yazidi group takes over sinjar after kurdish pullout: residents,iraqibacked yazidi group take sinjar kurdish pullout resident
+0,new discovery reveals baltimore state‚s attorney‚s parents weren‚t model cops : mom received 20+ disciplinary actions,new discovery reveals baltimore state attorney parent werent model cop mom received disciplinary action
+1,hard-right german party tells trump to tweet less,hardright german party tell trump tweet less
+1,losing immunity german anti-immigrant party's co-head may face perjury charge,losing immunity german antiimmigrant party cohead may face perjury charge
+1,u.n. rights chief says eu deal on libya migrants falls short,un right chief say eu deal libya migrant fall short
+0,boiler room #93 ‚ the outgoing head of hydra,boiler room outgoing head hydra
+1,young migrants face more dangers after reaching italy,young migrant face danger reaching italy
+0,shocking number of swedish citizens walk by girl being raped by ‚middle eastern man‚ in car [video],shocking number swedish citizen walk girl raped middle eastern man car video
+1,turkey's visa crisis with the united states is unnecessary: turkish minister,turkey visa crisis united state unnecessary turkish minister
+0,boom! hey democrats‚.why the violent riots? young american proves dems really don‚t care about jobs,boom hey democratswhy violent riot young american prof dems really dont care job
+1,two women injured by hammer-wielding attacker in eastern france,two woman injured hammerwielding attacker eastern france
+1,uber,uber
+1,far-right party likened to nazis to shake up german parliament,farright party likened nazi shake german parliament
+1,murdered north korean kim jong nam had $100000 in backpack police witness says,murdered north korean kim jong nam backpack police witness say
+0,univ of wi chancellor contacts police after noticing confederate flag displayed on worker‚s truck on campus,univ wi chancellor contact police noticing confederate flag displayed worker truck campus
+0,wikileaks posts new document‚shows hillary reportedly asked: ‚ can‚t we just drone this guy [julian assange]?‚,wikileaks post new documentshows hillary reportedly asked cant drone guy julian assange
+0,hysterical! trump life: ‚there ain‚t a brother bigger,hysterical trump life aint brother bigger
+1,uk's davis sees good brexit deal despite recent tense talks,uk davis see good brexit deal despite recent tense talk
+0,wow! christian author gives unexpected and brilliant answer to muslim law student who claims she‚s worried,wow christian author give unexpected brilliant answer muslim law student claim shes worried
+0,boiler room #104 ‚ war sells‚ but who‚s buying,boiler room war sell who buying
+1,us coalition airstrike on syrian army in al-tanf is another calculated war crime,u coalition airstrike syrian army altanf another calculated war crime
+1,mccain‚s mad world and the cancer of conflict,mccains mad world cancer conflict
+0,abc news suspend anchor brian ross over fake news report on trump-flynn ‚russian collusion‚,abc news suspend anchor brian ross fake news report trumpflynn russian collusion
+1,china says no excuses for foreign officials meeting dalai lama,china say excuse foreign official meeting dalai lama
+0,white guilt idiocy: oscar nominee embarrassed to be part of hollywood ‚whitewashing‚,white guilt idiocy oscar nominee embarrassed part hollywood whitewashing
+1,north korea says seeking military 'equilibrium' with u.s.,north korea say seeking military equilibrium u
+1,merkel: state defeat hasn't weakened us before coalition talks,merkel state defeat hasnt weakened u coalition talk
+1,dodgy dossier: the trump-russia dossier was funded by political rivals,dodgy dossier trumprussia dossier funded political rival
+0,indian-american,indianamerican
+1,message from north korean missile over japan 'loud and clear': trump,message north korean missile japan loud clear trump
+0,‚we‚re getting a glimpse of a world without america‚and it‚s scary as hell‚,getting glimpse world without americaand scary hell
+0,prankster coughing fits mar theresa may‚s speech to activists,prankster coughing fit mar theresa may speech activist
+0,'despondent' may losing sleep on in-fighting said juncker: faz,despondent may losing sleep infighting said juncker faz
+0,bill o‚reilly announces 2 week vacation‚will murdoch‚s liberal son who pushed to fire roger ailes make his vacation permanent? [video],bill oreilly announces week vacationwill murdoch liberal son pushed fire roger ailes make vacation permanent video
+1,putin critic navalny freed from jail resumes presidential campaign,putin critic navalny freed jail resume presidential campaign
+0,supreme court agrees to take on obama‚s un-american plan to shield millions of illegals from deportation,supreme court agrees take obamas unamerican plan shield million illegals deportation
+1,catalan foreign affairs chief says not planning regional snap elections,catalan foreign affair chief say planning regional snap election
+1,myanmar faces mounting pressure over rohingya refugee exodus,myanmar face mounting pressure rohingya refugee exodus
+1,britain declines to comment on reported death of 'white widow' jihadist,britain decline comment reported death white widow jihadist
+1,on the inside: ex-goldman sachs partner tapped for us treasury ‚ joined by rothschild linked commerce secretary pick,inside exgoldman sachs partner tapped u treasury joined rothschild linked commerce secretary pick
+1,belarus plays down western fears of aggression stirred by joint war games with russia,belarus play western fear aggression stirred joint war game russia
+1,moscow seeks support for russia-chinese roadmap on north korea,moscow seek support russiachinese roadmap north korea
+0,is a revolution coming? former congressman throws down gauntlet on obama‚s executive gun grab: ‚it‚s war,revolution coming former congressman throw gauntlet obamas executive gun grab war
+1,boiler room ep #112 ‚ uk election,boiler room ep uk election
+0,rep luis gutierrez (d-ny) calls murder of kate steinle by illegal alien ‚a little thing‚ [video],rep luis gutierrez dny call murder kate steinle illegal alien little thing video
+1,new york known wolf: halloween truck attacker known to dhs prior to ‚act of terror‚,new york known wolf halloween truck attacker known dhs prior act terror
+0,what is going on with the secret service?,going secret service
+1,catalonia to formally declare independence if spain suspends regional autonomy: source,catalonia formally declare independence spain suspends regional autonomy source
+1,islamic state defeated in its syrian capital raqqa,islamic state defeated syrian capital raqqa
+0,is hillary going down in flames? latest poll shows her losing big time credibility with her most important voters,hillary going flame latest poll show losing big time credibility important voter
+0,[video] flashback‚martin luther king jr. on riots: ‚we can‚t win a violent revolution‚,video flashbackmartin luther king jr riot cant win violent revolution
+1,digging dung: south africa's amabhungane heaps pressure on zuma,digging dung south africa amabhungane heap pressure zuma
+1,eu calls on israel to stop plans for new west bank settlements,eu call israel stop plan new west bank settlement
+0,sniveling cowards at cnn caught editing trump tape with ‚muslim‚ comments [video],sniveling coward cnn caught editing trump tape muslim comment video
+0,consequences of non-assimilation: swedish school that won ‚peace prize‚ for enrolling most migrants is now war zone with barbed wire,consequence nonassimilation swedish school peace prize enrolling migrant war zone barbed wire
+0,expect more ‚terror busts‚ as fbi steps up its use of ‚isis stings‚,expect terror bust fbi step use isi sting
+0,violent npr employee who is also a refugee arrested,violent npr employee also refugee arrested
+1,koreans in japan wary of tensions with north worry about backlash,korean japan wary tension north worry backlash
+0,president trump warns comey‚tweets veiled threat to former fbi director,president trump warns comeytweets veiled threat former fbi director
+0,watch democrats repeat exact same phrase on fake trump/russian story [video],watch democrat repeat exact phrase fake trumprussian story video
+0,lol! amazon users write gut-busting reviews for hillary‚s disastrous new ‚stronger together‚ book,lol amazon user write gutbusting review hillary disastrous new stronger together book
+0,the people's princess britons work to keep memory alive,people princess briton work keep memory alive
+1,turkey's erdogan links fate of detained u.s. pastor to wanted cleric gulen,turkey erdogan link fate detained u pastor wanted cleric gulen
+1,russian serviceman in chechnya kills four servicemen then is killed tass reports,russian serviceman chechnya kill four serviceman killed tass report
+1,australian hindus protest meat advertisement featuring lord ganesha,australian hindu protest meat advertisement featuring lord ganesha
+0,bold! hollywood actor speaks up for trump‚tells anti-trump crowd to knock it off [video],bold hollywood actor speaks trumptells antitrump crowd knock video
+1,russian israeli leaders discuss iran nuclear program syria iraq,russian israeli leader discus iran nuclear program syria iraq
+1,taiwan jails mainland chinese man on national security charge,taiwan jail mainland chinese man national security charge
+1,singapore decried for 'harassment' of anti-death penalty activists,singapore decried harassment antideath penalty activist
+1,u.s. diplomacy with north korea to continue until 'first bomb drops': tillerson,u diplomacy north korea continue first bomb drop tillerson
+1,uk pm may heads to brussels expecting 'constructive' meeting: spokesman,uk pm may head brussels expecting constructive meeting spokesman
+0,oops! video emerges of comey testifying under oath that trump administration did not pressure fbi to halt any investigations for political purposes [video],oops video emerges comey testifying oath trump administration pressure fbi halt investigation political purpose video
+1,pope bumps head hurts left eye but is well: vatican,pope bump head hurt left eye well vatican
+1,no m'lud: brexit stymies eu judges' english conversion,mlud brexit stymy eu judge english conversion
+0,report: why hillary wont‚ accept obama and valerie jarrett‚s invitation for post-inaugural gathering to ‚lay groundwork for the offensive against trump‚,report hillary wont accept obama valerie jarretts invitation postinaugural gathering lay groundwork offensive trump
+1,pro-business parties try to hem german greens in with red lines,probusiness party try hem german green red line
+0,hot or not? are trump properties selling like hotcakes? [video],hot trump property selling like hotcake video
+0,brazilian billionaire joesley batista surrenders to police,brazilian billionaire joesley batista surrender police
+0,radical ‚occupy‚ mom who left 4 kids and husband to block nyc traffic plays victim card‚ sues for ‚police brutality‚,radical occupy mom left kid husband block nyc traffic play victim card sue police brutality
+0,mn: why did police ‚stand down‚? grotesque video shows male hillary supporter punching elderly trump supporter several times,mn police stand grotesque video show male hillary supporter punching elderly trump supporter several time
+1,cnn‚s hostile treatment of congresswoman tulsi gabbard after revealing us are arming,cnns hostile treatment congresswoman tulsi gabbard revealing u arming
+1,catalonia warns of civil disobedience as madrid readies direct rule,catalonia warns civil disobedience madrid ready direct rule
+0,the world should be outraged by sweden‚s reward system for returning jihadists,world outraged sweden reward system returning jihadist
+0,syria strikes: this is not the donald trump we wanted,syria strike donald trump wanted
+0,faisal mohammad had isis flag,faisal mohammad isi flag
+0,is washington post inciting violence against fox news‚ hosts: ‚kill fox & friends before it‚s too late‚,washington post inciting violence fox news host kill fox friend late
+0,ga town mandates gun ownership: here‚s what happened to the crime rate‚,ga town mandate gun ownership here happened crime rate
+0,the ultimate hypocrite: who are the billionaires funding campaign of candidate who mocks‚billionaires,ultimate hypocrite billionaire funding campaign candidate mocksbillionaires
+1,solution to catalonia crisis only under spanish law: germany,solution catalonia crisis spanish law germany
+1,china's big banks halt services for north koreans tellers say,china big bank halt service north korean teller say
+1,myanmar's rohingya suffered for years need lasting solution: turkey,myanmar rohingya suffered year need lasting solution turkey
+0,vigilante pirates intercede where government fails: prevent refugees from reaching sweden‚s shores,vigilante pirate intercede government fails prevent refugee reaching sweden shore
+1,death toll in puerto rico from hurricane maria more than doubles to 34,death toll puerto rico hurricane maria double
+0,russia threatens retaliation over u.s. 'break-in' at consulate,russia threatens retaliation u breakin consulate
+1,exclusive: turkey to deploy troops inside syria's idlib - erdogan,exclusive turkey deploy troop inside syria idlib erdogan
+1,north korea seen moving icbm-grade rocket towards west coast: media,north korea seen moving icbmgrade rocket towards west coast medium
+0,gerald celente: top 10 trends for 2017,gerald celente top trend
+1,aid officials 'gravely concerned' over fate of relocated islamic state families in iraq,aid official gravely concerned fate relocated islamic state family iraq
+0,this picture of harriet tubman should be used on the $20 bill‚if for no other reason than to drive anti-gun left crazy,picture harriet tubman used billif reason drive antigun left crazy
+0,two ‚high threat‚ explosive experts moved from gitmo to african country with over 90% muslim population [video],two high threat explosive expert moved gitmo african country muslim population video
+0,mainstream liars now want to be self-appointed monarchs of ‚truth‚,mainstream liar want selfappointed monarch truth
+1,britain's new concessions are not enough eu leaders tell may,britain new concession enough eu leader tell may
+1,"us-saudi plan: let 9000 isis fighters walk free from mosul ‚ to fight in syria""",ussaudi plan let isi fighter walk free mosul fight syria
+1,spanish prosecutor asks for catalan police chief to be held in custody,spanish prosecutor asks catalan police chief held custody
+0,yikes! what the heck did hillary just cough up into her glass?‚and why is there an ambulance in her motorcade? [video],yikes heck hillary cough glassand ambulance motorcade video
+1,macron enacts public ethics law with a whiff of u.s.-style razzmatazz,macron enacts public ethic law whiff usstyle razzmatazz
+1,russia's lavrov says u.s. anti-missile shield worries russia china,russia lavrov say u antimissile shield worry russia china
+1,brexit bill gets bigger as euro strengthens,brexit bill get bigger euro strengthens
+1,german vote could doom merkel-macron deal on europe,german vote could doom merkelmacron deal europe
+0,why obama‚s lawsuit against nc is really about the jack-boot of government on america‚s throats,obamas lawsuit nc really jackboot government america throat
+1,austrian conservative leader sees many options on coalitions,austrian conservative leader see many option coalition
+1,a divided iraq tests u.s. influence as fight against islamic state wanes,divided iraq test u influence fight islamic state wane
+1,turkey summons german envoy over kurdish rally in cologne,turkey summons german envoy kurdish rally cologne
+1,kim jong un praises nuclear program promotes sister,kim jong un praise nuclear program promotes sister
+1,some syrian schools erase assad but tensions rise over kurdish,syrian school erase assad tension rise kurdish
+1,vatican vows to seek truth about diplomat in child pornography case,vatican vow seek truth diplomat child pornography case
+1,russian court tells aeroflot it cannot tell stewardesses what size clothing to wear,russian court tell aeroflot tell stewardess size clothing wear
+1,u.s.-backed forces in syria holding foreign islamic state leaders,usbacked force syria holding foreign islamic state leader
+1,u.s. announces near $700 million in humanitarian aid to syria,u announces near million humanitarian aid syria
+0,breitbart senior editor speaks out on bannon‚s departure‚declares #war on the left [video],breitbart senior editor speaks bannons departuredeclares war left video
+0,take it down! blm supporter,take blm supporter
+1,u.s. will circulate resolution on north korea this week,u circulate resolution north korea week
+1,china's top paper warns party officials against 'spiritual anesthesia',china top paper warns party official spiritual anesthesia
+0,angelina jolie humiliated barack obama on world stage over weak leadership on terrorism,angelina jolie humiliated barack obama world stage weak leadership terrorism
+0,the secret society that ruined the world: rhodes,secret society ruined world rhodes
+0,katie couric tweets disgust after two of her producers are sprayed with urine at charlottesville protest‚doesn‚t mention antifa thugs sprayed them,katie couric tweet disgust two producer sprayed urine charlottesville protestdoesnt mention antifa thug sprayed
+1,russia raps canada's magnitsky bill ready to retaliate,russia rap canada magnitsky bill ready retaliate
+1,police arrest seven youths after deadly malaysia school blaze,police arrest seven youth deadly malaysia school blaze
+1,china summons british official over hong kong remarks,china summons british official hong kong remark
+0,man who vandalized mosque,man vandalized mosque
+0,revealed: list of people president elect trump is considering for top white house postions,revealed list people president elect trump considering top white house postions
+0,media attacks trump‚ignores obama‚s miserable war legacy: soldiers deaths quadrupled compared to gw bush years‚made soldiers wait to be shot at by jihadists before attacking [video],medium attack trumpignores obamas miserable war legacy soldier death quadrupled compared gw bush yearsmade soldier wait shot jihadist attacking video
+1,venezuela doctors in protest urge stronger who stance on health crisis,venezuela doctor protest urge stronger stance health crisis
+0,abc news suspend anchor brian ross over fake news report on trump-flynn ‚russian collusion‚,abc news suspend anchor brian ross fake news report trumpflynn russian collusion
+0,mike rowe sends a brutal message to the media trying to label trump supporters as ‚uneducated‚,mike rowe sends brutal message medium trying label trump supporter uneducated
+0,why ugly hate and division in america is actually obama‚s fault [video],ugly hate division america actually obamas fault video
+1,insider firm ‚flashpoint‚ tied to orlando shooting,insider firm flashpoint tied orlando shooting
+0,hilarious! fox news‚ greg gutfeld introduces new sponsor of his show‚‚victima‚ [video],hilarious fox news greg gutfeld introduces new sponsor showvictima video
+1,three dead as storm ophelia batters ireland,three dead storm ophelia batter ireland
+0,whitewashed: insane reason hollywood magazine apologized for this cover,whitewashed insane reason hollywood magazine apologized cover
+1,catalan leader presses on with banned vote on split from spain,catalan leader press banned vote split spain
+1,zimbabwe opposition rejects post-mugabe coalition deal-making,zimbabwe opposition reject postmugabe coalition dealmaking
+1,facebook will help investigators release russia ads sandberg tells axios,facebook help investigator release russia ad sandberg tell axios
+1,chinese media warns of ‚war‚ with us following tillerson‚s remarks south china sea,chinese medium warns war u following tillersons remark south china sea
+1,senate leader opposes 'lecturing' myanmar leader suu kyi,senate leader opposes lecturing myanmar leader suu kyi
+0,this is the alt-left the fake news media refuses to tell you about [video],altleft fake news medium refuse tell video
+0,listen to hillary laugh‚as she recalls helping suspected child rapist walk free [video],listen hillary laughas recall helping suspected child rapist walk free video
+0,how we know america is finally winning: popular leftist publication urges anti-trump thugs to stop protesting,know america finally winning popular leftist publication urge antitrump thug stop protesting
+0,breaking news: violent g-20 protesters trap melania in hotel,breaking news violent g protester trap melania hotel
+0,cnn fake news vs real news: first images of abandoned terrorist facilities in east aleppo,cnn fake news v real news first image abandoned terrorist facility east aleppo
+1,u.n. says 270000 rohingya fled myanmar in past two weeks,un say rohingya fled myanmar past two week
+0,what is black privilege? [video],black privilege video
+0,episode #208 ‚ ‚not the network‚ ‚ sunday wire with hesher,episode network sunday wire hesher
+1,germany's merkel rejects total ban on arms exports to turkey: ndr,germany merkel reject total ban arm export turkey ndr
+0,jails justice system at breaking point as philippine drugs war intensifies,jail justice system breaking point philippine drug war intensifies
+0,mockingbird redux? cnn‚s role in peddling fake ‚nothing burger‚ russia-gate news revealed,mockingbird redux cnns role peddling fake nothing burger russiagate news revealed
+1,unholy alliance: hillary clinton‚s saudi sponsors support terrorism,unholy alliance hillary clinton saudi sponsor support terrorism
+1,iraqi pm presses case for baghdad to receive kurdistan oil revenue,iraqi pm press case baghdad receive kurdistan oil revenue
+1,yahoo caves in to nsa,yahoo cave nsa
+0,u.s. elections may already be in serious jeopardy : acorn gives oh man cigarettes and cash to register to vote 72 times‚several more horror stories,u election may already serious jeopardy acorn give oh man cigarette cash register vote timesseveral horror story
+0,former democrat warns young americans: ‚rioters are being manipulated by big government forces who need them to regain political power‚ [video],former democrat warns young american rioter manipulated big government force need regain political power video
+1,trump says he has decided to decertify iran nuclear deal,trump say decided decertify iran nuclear deal
+1,mexico's pemex fires warehouse workers for oil theft,mexico pemex fire warehouse worker oil theft
+0,oops! was antifa terrorist who threatened acid attack on trump supporters caught violating his probation today? [video],oops antifa terrorist threatened acid attack trump supporter caught violating probation today video
+0,wow! former nsa experts report: russians did not hack dnc servers‚it was a leak‚an inside job by someone with access to dnc‚s system,wow former nsa expert report russian hack dnc serversit leakan inside job someone access dncs system
+0,california pizza shop gets real life lesson in economics after selling ‚living wage pizza‚,california pizza shop get real life lesson economics selling living wage pizza
+0,watch hillary squirm when mainstream media asks if she plans to watch ‚13 hours‚ movie,watch hillary squirm mainstream medium asks plan watch hour movie
+1,fourteen people rescued from seaside tower in southern england,fourteen people rescued seaside tower southern england
+0,hurricane irma wreaks 'total carnage' on barbuda: prime minister,hurricane irma wreaks total carnage barbuda prime minister
+0,ben carson home vandalized with anti-trump graffiti,ben carson home vandalized antitrump graffiti
+0,breaking: us supreme court upholds u. of tx-austin admissions ability to choose black,breaking u supreme court upholds u txaustin admission ability choose black
+0,revealed: the establishment‚s scheme to take down trump,revealed establishment scheme take trump
+0,mexican illegal alien deported 19 times arrested for raping 13 yr old girl in kansas,mexican illegal alien deported time arrested raping yr old girl kansa
+0,boiler room ep #82 ‚ mind-boggling collusion,boiler room ep mindboggling collusion
+1,at least 4 dead after powerful mexico quake: officials,least dead powerful mexico quake official
+1,at least three dead as lidia slams mexico's los cabos tourist hub,least three dead lidia slam mexico los cabos tourist hub
+0,catholic partial birth-abortion supporting democrat steals pope‚s water to drink and splash on grandkids [video]‚you won‚t believe what he‚s doing next,catholic partial birthabortion supporting democrat steal pope water drink splash grandkids videoyou wont believe he next
+0,what will happen to your guns under president trump?,happen gun president trump
+1,trump agrees 'in principle' to scrap south korean warhead weight limit: white house,trump agrees principle scrap south korean warhead weight limit white house
+1,u.s. black hawk helicopter crashes off yemen one service member missing,u black hawk helicopter crash yemen one service member missing
+1,boiler room #100 ‚ an unlikely alchemy,boiler room unlikely alchemy
+1,cameroon orders anglophone region total lockdown for three days,cameroon order anglophone region total lockdown three day
+0,new tv show has couples ‚bravely‚ putting their marriage on the line by sleeping with strangers,new tv show couple bravely putting marriage line sleeping stranger
+1,vaccination begins in bangladesh camps to head off cholera outbreak,vaccination begin bangladesh camp head cholera outbreak
+0,portland riots: is obama risking a dangerous game of violence and anarchy? [video],portland riot obama risking dangerous game violence anarchy video
+1,the u.s. establishment vs the rest of world,u establishment v rest world
+1,iran says tehran ankara to confront disintegration of iraq syria: tv,iran say tehran ankara confront disintegration iraq syria tv
+1,kenya court: opposition didn't show presidential campaign used state resources,kenya court opposition didnt show presidential campaign used state resource
+1,afghanistan: forgotten,afghanistan forgotten
+1,'a better future' - britain's may tries to rally her conservatives,better future britain may try rally conservative
+1,saudi cleric condemns inter-muslim conflict ahead of pilgrimage,saudi cleric condemns intermuslim conflict ahead pilgrimage
+1,request to halt construction of dapl declined,request halt construction dapl declined
+1,orlando ‚known wolf‚ watched by fbi,orlando known wolf watched fbi
+1,u.n. urges bangladesh to move rohingya refugees stranded at border,un urge bangladesh move rohingya refugee stranded border
+1,amid strained ties north korea congratulates china on party congress,amid strained tie north korea congratulates china party congress
+0,don‚t believe media lies‚wildly unpopular hillary gives speech in nh‚here are uncensored facebook users responses from live feed‚lol!,dont believe medium lieswildly unpopular hillary give speech nhhere uncensored facebook user response live feedlol
+0,cia gatekeeper? cnn‚s chris cuomo says americans are ‚criminals‚ for reading wikileaks‚ clinton email dump,cia gatekeeper cnns chris cuomo say american criminal reading wikileaks clinton email dump
+1,end 'containment' of asylum-seekers on islands aid groups tell greek pm,end containment asylumseekers island aid group tell greek pm
+1,pledging to tackle inequality uk pm may seeks identity beyond brexit,pledging tackle inequality uk pm may seek identity beyond brexit
+1,in brexit poker clock narrows transition options,brexit poker clock narrow transition option
+1,merkel allies fret over former east germany's rightward shift,merkel ally fret former east germany rightward shift
+1,france's national front on verge of split after election setback,france national front verge split election setback
+1,tyranny of 9/11: the building blocks of the american police state from a-z,tyranny building block american police state az
+1,at least 20 killed in portugal wildfires,least killed portugal wildfire
+1,vatican recalls washington diplomat amid child pornography investigation,vatican recall washington diplomat amid child pornography investigation
+1,china urges north korea to 'stop taking actions that are wrong',china urge north korea stop taking action wrong
+1,slovak government leaders strike new coalition deal to defuse crisis,slovak government leader strike new coalition deal defuse crisis
+0,breaking: more hacked e-mails from dnc released by a vengeful guccifer,breaking hacked email dnc released vengeful guccifer
+1,boiler room ep #77 ‚ the venom of divide and rule,boiler room ep venom divide rule
+1,turkey will never be eu member under erdogan: germany's gabriel,turkey never eu member erdogan germany gabriel
+1,angola's opposition appeals election results,angola opposition appeal election result
+0,[video] burger king manager curses out and threatens customer who asked for refund,video burger king manager curse threatens customer asked refund
+0,rhodes is wrong and trump could have the last laugh,rhodes wrong trump could last laugh
+1,trump's threat to 'destroy' north korea is wrong: merkel,trump threat destroy north korea wrong merkel
+1,kenya's election body appoints key personnel for presidential vote re-run,kenya election body appoints key personnel presidential vote rerun
+1,national celebrations open saudi sports stadium to women for first time,national celebration open saudi sport stadium woman first time
+0,hillary clinton supporters now calling for a recount of votes in battleground states,hillary clinton supporter calling recount vote battleground state
+0,preview of what‚s to come in america: uk immigration officers threatened and bullied into submission by crowd [video],preview whats come america uk immigration officer threatened bullied submission crowd video
+0,year in review: 2017 top ten conspiracies,year review top ten conspiracy
+1,russian iranian presidents discuss iraqi kurdish vote - rouhani's office,russian iranian president discus iraqi kurdish vote rouhanis office
+0,illegal? thug with 30 prior arrests steals ambulance‚runs over emt killing mother of 5 [video],illegal thug prior arrest steal ambulanceruns emt killing mother video
+1,hopes dimming under rubble mexico woman's texts help save her,hope dimming rubble mexico woman text help save
+0,you won‚t believe why students in communist wisconsin are no longer allowed to chant ‚u.s.a.‚ at sporting events [video],wont believe student communist wisconsin longer allowed chant usa sporting event video
+0,is spicer flap a cover for media to tie up white house in global affairs and scuttle trump‚s domestic agenda?,spicer flap cover medium tie white house global affair scuttle trump domestic agenda
+1,germany: rule of law must hold in spain,germany rule law must hold spain
+1,erdogan says turkey will send 10000 tonnes aid to myanmar's rohingya,erdogan say turkey send tonne aid myanmar rohingya
+1,egyptian security forces kill 10 suspected militants in cairo raids,egyptian security force kill suspected militant cairo raid
+0,border sheriff: the new norm is lawless wide open border [video],border sheriff new norm lawless wide open border video
+1,singaporeans protest against uncontested presidential election,singaporean protest uncontested presidential election
+1,germany mulls adding turkey to list of states posing high security risk: media,germany mull adding turkey list state posing high security risk medium
+0,hysterical! maxine waters for potus? ‚oh no! we don‚t elect poverty pimps!‚ [video],hysterical maxine water potus oh dont elect poverty pimp video
+0,beyonce doubles down‚debuts #lemonade,beyonce double downdebuts lemonade
+0,breaking: fl muslim terrorist worked for security company who quietly transports and releases van loads of illegal aliens away from border for u.s. government,breaking fl muslim terrorist worked security company quietly transport release van load illegal alien away border u government
+1,rohingya grieve after baby dies in border crossing,rohingya grieve baby dy border crossing
+0,how newsweek accuses melania and ivanka of sending sexual signals will even make trump-haters laugh,newsweek accuses melania ivanka sending sexual signal even make trumphaters laugh
+0,wow! video emerges of hillary clinton admitting foreign leaders contacted her during campaign,wow video emerges hillary clinton admitting foreign leader contacted campaign
+0,why man who raped and murdered his teacher thinks state should pay for sex change in prison,man raped murdered teacher think state pay sex change prison
+0,things get ugly when white guy tries social experiment in wrong neighborhood: asks people what they think of ‚all lives matter‚ sign [video],thing get ugly white guy try social experiment wrong neighborhood asks people think life matter sign video
+1,brazil prosecutors seek to extend batista detention source says,brazil prosecutor seek extend batista detention source say
+1,eu officials reach draft deal on more north korea sanctions: sources,eu official reach draft deal north korea sanction source
+1,civilians leave is-area in eastern syria after evacuation deal: monitor,civilian leave isarea eastern syria evacuation deal monitor
+0,new bombshell report shows dnc emails were copied on east coast only 5 days before seth rich murder‚disproves russian hacking theory,new bombshell report show dnc email copied east coast day seth rich murderdisproves russian hacking theory
+0,commandos storm plane in philippines-u.s. hijack simulation,commando storm plane philippinesus hijack simulation
+1,u.s. carrier drills with japanese navy around okinawa southwest of korean peninsula,u carrier drill japanese navy around okinawa southwest korean peninsula
+1,new zealand's ruling party ahead after poll but kingmaker in no rush to decide,new zealand ruling party ahead poll kingmaker rush decide
+0,boiler room ‚ ep #44 ‚ dig,boiler room ep dig
+0,"fbi posts $5000 reward for person who committed ‚hate crime‚ with bacon? [video]""",fbi post reward person committed hate crime bacon video
+0,"awesome! american flag comes back after 1000 veterans show up to protest removal of american flag from hampshire college [video]""",awesome american flag come back veteran show protest removal american flag hampshire college video
+1,china facing intensified threat of religious infiltration extremism: official,china facing intensified threat religious infiltration extremism official
+1,first time in 30 years: us deploys b-52 bombers to qatar to bomb‚ isis?,first time year u deploys b bomber qatar bomb isi
+1,north korea hackers stole south korea-u.s. military plans to wipe out north korea leadership: lawmaker,north korea hacker stole south koreaus military plan wipe north korea leadership lawmaker
+0,dinesh d‚souza destroys leftist college student‚s ‚white privilege‚ argument [video],dinesh dsouza destroys leftist college student white privilege argument video
+1,trump to make working visit to uk in early 2018: report,trump make working visit uk early report
+0,nightmare scenario: fox news reports obama can appoint supreme court justice on jan 3rd‚could this be his final ‚screw you america‚ act?,nightmare scenario fox news report obama appoint supreme court justice jan rdcould final screw america act
+1,eu drugs agency seeking staff warns of brexit budget hit,eu drug agency seeking staff warns brexit budget hit
+1,poland will not change its stance on eu's posted workers directive: pm,poland change stance eu posted worker directive pm
+0,disturbing: tomi lahren panders to ‚the view‚ hags,disturbing tomi lahren pander view hag
+0,best explanation ever of why nfl chose ‚pop-stars‚ lady gaga and beyonce as america‚s #superbowl half-time acts [video],best explanation ever nfl chose popstars lady gaga beyonce america superbowl halftime act video
+1,israel's sara netanyahu may face indictment: attorney general,israel sara netanyahu may face indictment attorney general
+1,mission impossible? merkel's coalition conundrum just got harder,mission impossible merkels coalition conundrum got harder
+1,lebanon finds soldiers' bodies after retaking islamic state-held area,lebanon find soldier body retaking islamic stateheld area
+0,fbi agent indicted in killing of lavoy finicum,fbi agent indicted killing lavoy finicum
+1,top u.s. general says north korea military posture unchanged despite rhetoric,top u general say north korea military posture unchanged despite rhetoric
+1,tunisian navy rescues 100 migrants hours after eight drown,tunisian navy rescue migrant hour eight drown
+1,germany drops mass u.s. uk spying probe on lack of evidence,germany drop mass u uk spying probe lack evidence
+1,azeri court releases head of independent azeri news agency,azeri court release head independent azeri news agency
+1,lebanon sentences islamist cleric to death for attacks on army,lebanon sentence islamist cleric death attack army
+0,video: us elections: more voter fraud emerges,video u election voter fraud emerges
+1,trump moves ahead with ‚the wall‚ between us and mexico,trump move ahead wall u mexico
+0,you won‚t believe who rachel maddow blames for her trump tax dud [video],wont believe rachel maddow blame trump tax dud video
+1,iraq top shi'ite cleric sistani asks government to protect kurds,iraq top shiite cleric sistani asks government protect kurd
+1,merkel tells rajoy of support for unity of spain,merkel tell rajoy support unity spain
+0,judge removes 1 yr old from home of married lesbians: should be sent to ‚a more traditional home‚,judge remove yr old home married lesbian sent traditional home
+0,rex tillerson and nikki haley ‚ who can ‚flip flop‚ the most,rex tillerson nikki haley flip flop
+0,united airlines kicks toddler out of $969 seat for standby passenger [video],united airline kick toddler seat standby passenger video
+1,police release london museum crash driver as enquiries continue,police release london museum crash driver enquiry continue
+1,star wars 2.0: washington‚s battle to fund space warfare,star war washington battle fund space warfare
+0,breaking: a third democrat senator to vote for supreme court nominee neil gorsuch,breaking third democrat senator vote supreme court nominee neil gorsuch
+1,japan pm abe's ratings regain 50 percent amid north korea security jitters,japan pm abes rating regain percent amid north korea security jitter
+1,syrian observatory: islamic state captures town from government,syrian observatory islamic state capture town government
+0,president trump receives patriots jersey from close friend in white house ceremony [video],president trump receives patriot jersey close friend white house ceremony video
+1,chaotic response to somali bombing cost lives medics say,chaotic response somali bombing cost life medic say
+0,dozens arrested during neo-nazi march in sweden,dozen arrested neonazi march sweden
+1,russia warns iraq kurds not to destabilize middle east after kurdish vote,russia warns iraq kurd destabilize middle east kurdish vote
+0,breaking: live wikileaks announcement about hillary that could swing election‚live announcement [3am est],breaking live wikileaks announcement hillary could swing electionlive announcement est
+1,trump‚s first congressional speech stuns media detractors ‚ stock markets rally,trump first congressional speech stuns medium detractor stock market rally
+1,british pm may's voice repeatedly fails in keynote speech,british pm may voice repeatedly fails keynote speech
+1,north korea warns states: don't join any u.s. action and you're safe,north korea warns state dont join u action youre safe
+1,china's highest-profile fugitive assailed by businessman who says he was framed for crimes,china highestprofile fugitive assailed businessman say framed crime
+0,fake news: the unravelling of us empire from within,fake news unravelling u empire within
+1,allowing nuclear weapons in japan could defuse north korean threat say some policy makers,allowing nuclear weapon japan could defuse north korean threat say policy maker
+0,trump isn‚t going to invade venezuela,trump isnt going invade venezuela
+0,ep #7: patrick henningsen live with guest shawn helton ‚ ‚top conspiracies of 2016‚,ep patrick henningsen live guest shawn helton top conspiracy
+1,japan's abe says u.n. resolution must force change in north korea,japan abe say un resolution must force change north korea
+0,hundreds rally after atheist group forces mayor to remove christian flag from veterans memorial [video],hundred rally atheist group force mayor remove christian flag veteran memorial video
+0,swedish woman sexually assaulted in broad daylight by 9 migrants‚ex-boyfriend loses it over out-of-control migrants‚feminists attack victim‚call her ‚racist‚ [video],swedish woman sexually assaulted broad daylight migrantsexboyfriend loses outofcontrol migrantsfeminists attack victimcall racist video
+1,london metro station incident caused by bomb top uk police officer says,london metro station incident caused bomb top uk police officer say
+0,priceless! bill maher calls senator elizabeth warren ‚pocahontas‚ during interview [video],priceless bill maher call senator elizabeth warren pocahontas interview video
+0,ford ceo tells trump they‚ll move forward with plans to open $2.5 billion plant in mexico‚and here‚s why [video],ford ceo tell trump theyll move forward plan open billion plant mexicoand here video
+1,'i can't take this any more:' rohingya muslims flee myanmar in new surge,cant take rohingya muslim flee myanmar new surge
+1,french see far-left's melenchon as macron's strongest opponent: poll,french see farlefts melenchon macron strongest opponent poll
+1,u.n. nuclear watchdog reiterates iran subject to world's toughest controls,un nuclear watchdog reiterates iran subject world toughest control
+1,in stinging attack france's macron says poland isolating itself in europe,stinging attack france macron say poland isolating europe
+0,breaking: iran publicly humiliates obama‚unveils second underground missile capable of carrying nuclear warhead,breaking iran publicly humiliates obamaunveils second underground missile capable carrying nuclear warhead
+0,obama pretends he hasn‚t started a race war‚pushes for federal police force: ‚it is very hard to untangle to motives of this [dallas] shooter‚ [video],obama pretend hasnt started race warpushes federal police force hard untangle motif dallas shooter video
+1,russia hopes to agree on debt repayment with venezuela by year-end,russia hope agree debt repayment venezuela yearend
+1,bulgarian court sentences three syrians on terrorism charges,bulgarian court sentence three syrian terrorism charge
+1,british pm may vows to stay as party plotters attempt to topple her,british pm may vow stay party plotter attempt topple
+1,egyptian air force says strikes arms convoy at libya border,egyptian air force say strike arm convoy libya border
+1,"angry and ""invisible"" expat britons await pm may in florence  ",angry invisible expat briton await pm may florence
+0,amerika: ‚tolerant‚ university educators exile trump voters from american campuses,amerika tolerant university educator exile trump voter american campus
+1,french senate vote is blow to macron conservatives keep majority,french senate vote blow macron conservative keep majority
+1,brazil government to rework controversial slavery decree,brazil government rework controversial slavery decree
+1,russia's lavrov to iran's zarif: moscow committed to iran nuclear deal,russia lavrov iran zarif moscow committed iran nuclear deal
+0,watch hillary lie about libya to supporters: ‚ we didn‚t lose a single person‚,watch hillary lie libya supporter didnt lose single person
+1,as sanctions bite north korean workers leave chinese border hub,sanction bite north korean worker leave chinese border hub
+1,run or wait? tokyo's koike faces dilemma ahead of oct. 22 poll,run wait tokyo koike face dilemma ahead oct poll
+0,ep #11: patrick henningsen live ‚ ‚top trump trends for 2017‚ with guest gerald celente,ep patrick henningsen live top trump trend guest gerald celente
+0,syrian militant group releases video of leader apparently uninjured,syrian militant group release video leader apparently uninjured
+0,all out brawl! bernie/hillary delegates go at it: ‚we need a medic!‚ [video],brawl berniehillary delegate go need medic video
+0,boom! kellyanne conway shuts down cnn‚s cuomo: ‚why do you care?‚ [video],boom kellyanne conway shuts cnns cuomo care video
+1,despite derision britain's pm may might well be able to carry on... for now,despite derision britain pm may might well able carry
+0,hillary clinton‚s ‚kkk‚ smear against trump was democrat strategy,hillary clinton kkk smear trump democrat strategy
+0,stevie wonder slams black lives matter at mn peace conference: ‚you cannot say ‚black lives matter‚ and then kill yourselves‚ [video],stevie wonder slam black life matter mn peace conference say black life matter kill video
+0,who‚s better: ‚dangerous donald‚ or ‚crooked hillary‚?,who better dangerous donald crooked hillary
+1,u.s. judge will not dismiss accused mexican drug lord el chapo's indictment,u judge dismiss accused mexican drug lord el chapos indictment
+1,tillerson zarif spoke directly at iran nuclear talks,tillerson zarif spoke directly iran nuclear talk
+0,new orleans ‚club‚ advertises ‚meet and greet‚ for dem gov candidate: free drinks and ‚performers‚ and party bus to polls for ‚early voters‚ [videos],new orleans club advertises meet greet dem gov candidate free drink performer party bus poll early voter video
+1,jailed kremlin critic calls on russians to protest on putin's birthday,jailed kremlin critic call russian protest putin birthday
+0,obama‚s fundamental transformation: census record shows in 8 years you won‚t recognize this country,obamas fundamental transformation census record show year wont recognize country
+0,black trump supporter goes on tirade over cnn‚s support for radical islam at #marchagainstsharia [video],black trump supporter go tirade cnns support radical islam marchagainstsharia video
+1,eu's juncker offers carrot and stick to eastern states,eu juncker offer carrot stick eastern state
+1,syrian rebels resist jordan pressure to hand over border crossing,syrian rebel resist jordan pressure hand border crossing
+0,boiler room #99 ‚ almost to 100!,boiler room almost
+0,hillary supporter brags about looting ‚white businesses‚ in milwaukee‚honors hillary‚s equal opportunity card‚brings sister along [video],hillary supporter brag looting white business milwaukeehonors hillary equal opportunity cardbrings sister along video
+1,in rare official appearance oman's ruler meets iranian minister,rare official appearance oman ruler meet iranian minister
+1,ex-ally of malaysian pm najib held in graft probe: source,exally malaysian pm najib held graft probe source
+1,for some chinese dissidents party congress means a paid 'vacation',chinese dissident party congress mean paid vacation
+0,two trump tweets debunk russian connection conspiracy,two trump tweet debunk russian connection conspiracy
+0,jack-ass-in-chief: obama uses speech on world stage to apologize for greedy americans‚ties mlk,jackassinchief obama us speech world stage apologize greedy americansties mlk
+1,despite undiplomatic discourse trump's dance card is full,despite undiplomatic discourse trump dance card full
+0,obama‚s new and ‚improved‚ fbi offers huge reward for anyone who can help frame white cop in black thug shooting,obamas new improved fbi offer huge reward anyone help frame white cop black thug shooting
+0,obama ignores planned parenthood baby parts harvester story‚his doj goes after whistleblower group who exposed them,obama ignores planned parenthood baby part harvester storyhis doj go whistleblower group exposed
+1,russia says u.s. iran sanctions undermine nuclear deal,russia say u iran sanction undermine nuclear deal
+0,wow! nh lawmaker and vet rips into liberal media at trump press event: ‚stop making political pawns out of veterans‚ [video],wow nh lawmaker vet rip liberal medium trump press event stop making political pawn veteran video
+1,china says u.s. should respect concerns on taiwan,china say u respect concern taiwan
+0,why did hillary use fake name ‚diane reynolds‚ for chelsea in newly released emails that prove she lied about benghazi? [video],hillary use fake name diane reynolds chelsea newly released email prove lied benghazi video
+0,fbi director james comey: ‚trust,fbi director james comey trust
+0,watch msnbc ‚objective‚ host‚s loud outburst when latina guest says she ‚feels at home‚ in gop,watch msnbc objective host loud outburst latina guest say feel home gop
+0,flashback: vulgar obama exposes erection to female reporters on campaign plane [video],flashback vulgar obama expose erection female reporter campaign plane video
+0,protester rushes stage at nyc play showing assassination of president trump: ‚you have the blood of steve scalise on your hands!‚[video],protester rush stage nyc play showing assassination president trump blood steve scalise handsvideo
+1,u.s. wants to see north korea sanctions bite no options ruled out,u want see north korea sanction bite option ruled
+1,tribal clashes political void threaten oil installations in iraq's south,tribal clash political void threaten oil installation iraq south
+0,how loudmouth ‚musician‚ who‚s $53 million in debt,loudmouth musician who million debt
+1,caribbean oil terminals make preparations ahead of hurricane maria,caribbean oil terminal make preparation ahead hurricane maria
+0,oregon: feds cover-up foul play in finicum death,oregon fed coverup foul play finicum death
+1,u.s. navy to transport damaged destroyer from singapore to japan,u navy transport damaged destroyer singapore japan
+1,"'fix it or nix it"" netanyahu says of iran nuclear deal",fix nix netanyahu say iran nuclear deal
+0,wow! facebook hq‚s joins obama‚s war on cops‚a closer look at this huge sign proves it,wow facebook hq join obamas war copsa closer look huge sign prof
+0,breaking: hillary makes diverse pick for vp‚.white,breaking hillary make diverse pick vpwhite
+0,oops! media forgot ted kennedy asked russia to intervene in election,oops medium forgot ted kennedy asked russia intervene election
+0,black lives matter terrorists crash stage at conservative college event‚black church minister threatens speaker‚female thug grabs microphone‚gay conservative speaker gives best response ever!,black life matter terrorist crash stage conservative college eventblack church minister threatens speakerfemale thug grab microphonegay conservative speaker give best response ever
+1,beijing proudly unveils mega-airport due to open in 2019,beijing proudly unveils megaairport due open
+0,wildly popular,wildly popular
+1,tanzania suspends fourth newspaper since june in media crackdown,tanzania suspends fourth newspaper since june medium crackdown
+0,"katie couric hits new career low: asks perfect strangers cringeworthy questions: ‚do you watch porn?‚‚asks couple‚have you ever cheated on your spouse?‚ [video]""",katie couric hit new career low asks perfect stranger cringeworthy question watch pornasks couplehave ever cheated spouse video
+0,[video] hecklers taunt hillary at campaign stop: ‚who wiped the blood off your hands hillary?‚,video heckler taunt hillary campaign stop wiped blood hand hillary
+0,box office bomb: seth rogan tweeted f*ck you to ben carson‚america responds by boycotting his steve jobs movie,box office bomb seth rogan tweeted fck ben carsonamerica responds boycotting steve job movie
+1,french foreign minister in libya to push peace deal,french foreign minister libya push peace deal
+1,vote-buying counting glitches marred kyrgyzstan vote: observers,votebuying counting glitch marred kyrgyzstan vote observer
+0,g.w. bush gushes over kimmel‚s anti-trump oscar‚s monologue‚refused to speak out against obama,gw bush gush kimmels antitrump oscar monologuerefused speak obama
+0,urgent! join #antihillaryflashmob rally against hillary in san antonio (click on link for details),urgent join antihillaryflashmob rally hillary san antonio click link detail
+0,wow! berkeley mayor who allegedly told police to ‚stand down‚ is part of antifa terrorist facebook group,wow berkeley mayor allegedly told police stand part antifa terrorist facebook group
+0,unreal! liberal protesters scream and yell during prayer,unreal liberal protester scream yell prayer
+0,trump‚s new comm director puts cnn‚s chris cuomo on notice‚days of republicans being bullied by leftist media are over [video],trump new comm director put cnns chris cuomo noticedays republican bullied leftist medium video
+0,amerika: ‚tolerant‚ university educators exile trump voters from american campuses,amerika tolerant university educator exile trump voter american campus
+1,head of germany's fdp offers macron 'bittersweet' euro zone deal,head germany fdp offer macron bittersweet euro zone deal
+1,"kyrgyzstan vote count problems ""significant"": osce-led observers",kyrgyzstan vote count problem significant osceled observer
+1,distrustful u.s. allies force spy agency to back down in encryption fight,distrustful u ally force spy agency back encryption fight
+0,really fake news: new york times finally retracts its ‚17 intelligence agencies‚ claim on russia hacking us elections,really fake news new york time finally retracts intelligence agency claim russia hacking u election
+1,pakistan's hostage rescue hailed but tensions with u.s. remain,pakistan hostage rescue hailed tension u remain
+1,south sudan's sacked army chief 'confined' to juba home minister says,south sudan sacked army chief confined juba home minister say
+0,the list of obama‚s historic firsts aka how chicago politics corrupted washington even more,list obamas historic first aka chicago politics corrupted washington even
+1,south korea condemns north korea missile launch says will boost response ability,south korea condemns north korea missile launch say boost response ability
+0,deplorable! hillary‚s campaign is in panic mode‚their latest ‚racist frog‚ story proves it [video],deplorable hillary campaign panic modetheir latest racist frog story prof video
+0,sick! ny attorney general with ties to hillary goes after female 9-11 survivor for trying to change women‚s minds on aborting their babies,sick ny attorney general tie hillary go female survivor trying change womens mind aborting baby
+1,aid group warns of death among rohingya in bangladesh,aid group warns death among rohingya bangladesh
+0,speak english‚you‚re in america! owner of popular frozen custard shop defends his policy [video],speak englishyoure america owner popular frozen custard shop defends policy video
+0,most filipinos believe drug war kills poor people only survey shows,filipino believe drug war kill poor people survey show
+1,possible thales leonardo role in franco-italian ship talks: sources,possible thales leonardo role francoitalian ship talk source
+1,from batons to barbecues catalan vote exposes police divisions,baton barbecue catalan vote expose police division
+0,breaking: pope met privately with enemy of left,breaking pope met privately enemy left
+1,eu's verhofstadt pokes fun at british pm may but says a brexit deal can be done,eu verhofstadtpokes fun british pm may say brexit deal done
+1,media links domestic drone surveillance to trump with zero evidence,medium link domestic drone surveillance trump zero evidence
+1,boiler room ep #84 ‚ the discredited media strikes back,boiler room ep discredited medium strike back
+1,'wave of humanity' puts aid agencies to the test in bangladesh,wave humanity put aid agency test bangladesh
+1,a south sudan vote would heap disaster upon catastrophe u.n. says,south sudan vote would heap disaster upon catastrophe un say
+1,at least 30 police die in clash in egypt's western desert: security sources,least police die clash egypt western desert security source
+0,fiore: bundy ranch case drags on because ‚fbi has no evidence to prosecute them with‚,fiore bundy ranch case drag fbi evidence prosecute
+0,was murdered 27 year old democrat operative about to blow the whistle on voter fraud when he was shot in the back? [video],murdered year old democrat operative blow whistle voter fraud shot back video
+0,boom! harris faulkner blows up the russia collusion theory with one smart question [video],boom harris faulkner blow russia collusion theory one smart question video
+1,germany on catalonia independence vote: separatism doesn't solve problems,germany catalonia independence vote separatism doesnt solve problem
+1,factbox: norway's close-fought election for parliament,factbox norway closefought election parliament
+0,wake-up call! iranian refugee warns the west: ‚i‚m beginning to get really scared‚‚islamofascism‚ always starts with unification of left and islamists‚ [video],wakeup call iranian refugee warns west im beginning get really scaredislamofascism always start unification left islamist video
+0,swedish mother kicks daughter out of her room to house refugee‚refugee promptly sexually assaults 10 year old daughter,swedish mother kick daughter room house refugeerefugee promptly sexually assault year old daughter
+0,the lost video: watch msnbc‚s mika shamelessly flirt with donald trump [video],lost video watch msnbcs mika shamelessly flirt donald trump video
+1,myanmar tells u.n. rohingya refugees can return from bangladesh,myanmar tell un rohingya refugee return bangladesh
+1,zimbabwe to start compiling new voter register next week,zimbabwe start compiling new voter register next week
+1,top us spy agency refuses to endorse cia‚s ‚russian hacking‚ assessment due to ‚lack of evidence‚,top u spy agency refuse endorse cia russian hacking assessment due lack evidence
+1,yrc worldwide has limited operations in florida terminals,yrc worldwide limited operation florida terminal
+1,a split within a split: the catalan valley sticking with spain,split within split catalan valley sticking spain
+0,stunning: obama preaches value of communism to italian audience [video],stunning obama preaches value communism italian audience video
+0,sharia compliant swimsuits: as spring arrives in europe‚oppressive burkini‚s will be all the rage,sharia compliant swimsuit spring arrives europeoppressive burkinis rage
+0,poverty pimp al sharpton uses the bible to say dems should give ‚the big payback‚ to republicans,poverty pimp al sharpton us bible say dems give big payback republican
+0,hillary caught in the act of breaking the law in ny to get votes [video],hillary caught act breaking law ny get vote video
+0,throwing gas on racial fire? va police confirm‚.governor terry mcauliffe lied about weapons being hid around charlottesville by white nationalists,throwing gas racial fire va police confirmgovernor terry mcauliffe lied weapon hid around charlottesville white nationalist
+0,great news! thanks to new york‚s socialist mayor and leftist city council‚you can now pee in the streets!,great news thanks new york socialist mayor leftist city councilyou pee street
+1,women march through desert for israeli-palestinian peace,woman march desert israelipalestinian peace
+0,florida sheriff hysterically shames woman busted for stealing from toys for tots! [video],florida sheriff hysterically shame woman busted stealing toy tot video
+1,trump expected to decertify iran nuclear deal official says,trump expected decertify iran nuclear deal official say
+0,unbelievable video of nypd cops being punched by man in crowd while woman being arrested attempts to steal female cops gun,unbelievable video nypd cop punched man crowd woman arrested attempt steal female cop gun
+0,my pope just invited a radical,pope invited radical
+1,pro-catalonia anarchists enter spanish embassy in athens,procatalonia anarchist enter spanish embassy athens
+1,some german parties reject far-right's candidate for parliamentary post,german party reject farrights candidate parliamentary post
+1,venezuela supreme court has staged effective coup: jurists' group,venezuela supreme court staged effective coup jurist group
+0,rude! kamala harris repeatedly cuts off homeland security secretary john kelly over sanctuary city policy [video],rude kamala harris repeatedly cut homeland security secretary john kelly sanctuary city policy video
+0,canada's liberals look to economy to guide them past ethics scandal,canada liberal look economy guide past ethic scandal
+1,trump says will be putting more sanctions on north korea,trump say putting sanction north korea
+0,aleppo truth: incredible press conference at the united nations,aleppo truth incredible press conference united nation
+1,russia to pay damages for beslan school siege after european court ruling ifax reports,russia pay damage beslan school siege european court ruling ifax report
+0,adele breaks ‚best album‚ grammy award in half on stage‚gives embarrassing ‚white guilt‚ apology speech to ‚more deserving‚ beyonc√©‚‚the way you make my black friends feel‚ [video],adele break best album grammy award half stagegives embarrassing white guilt apology speech deserving beyoncthe way make black friend feel video
+1,smugglers offer new routes to europe for jobless tunisians,smuggler offer new route europe jobless tunisian
+0,president trump approves major disaster declaration for florida,president trump approves major disaster declaration florida
+0,muslim pilgrims in muzdalifa prepare for haj's final stages,muslim pilgrim muzdalifa prepare haj final stage
+1,exclusive: pyongyang university to start fall classes without american staff after travel ban,exclusive pyongyang university start fall class without american staff travel ban
+0,trump sets the record straight: slams nyt then tweets directly to supporters,trump set record straight slam nyt tweet directly supporter
+1,south korea stresses safety of pyeongchang olympics to diplomats companies,south korea stress safety pyeongchang olympics diplomat company
+1,germany's coalition-seeking greens and liberals find common ground on tax,germany coalitionseeking green liberal find common ground tax
+0,rabid pro-amnesty legislator luis guti√©rrez on paul ryan for speaker ‚he would work with democrats in order to solve the problems of america‚ [video],rabid proamnesty legislator luis gutirrez paul ryan speaker would work democrat order solve problem america video
+0,the simpsons destroy the idiocy of the politically correct left on college campuses‚and it‚s hilarious! [video],simpson destroy idiocy politically correct left college campusesand hilarious video
+1,britain's labour shifts on brexit proposes staying in customs union,britain labour shift brexit proposes staying custom union
+0,german court rules ‚sharia police‚ patrolling city streets did not break law‚insane video shows muslim men patrolling streets,german court rule sharia police patrolling city street break lawinsane video show muslim men patrolling street
+1,turkey's erdogan presses world leaders to help myanmar's rohingya,turkey erdogan press world leader help myanmar rohingya
+1,pakistan army pushed political role for militant-linked groups,pakistan army pushed political role militantlinked group
+0,no shame! msnbc anchor attacks critically injured steve scalise who can‚t defend himself [video],shame msnbc anchor attack critically injured steve scalise cant defend video
+1,from new tax office catalonia hopes to grab billions from madrid,new tax office catalonia hope grab billion madrid
+0,whoa! did ‚white supremacist‚ who organized charlottesville protests work for cnn? were protests manufactured to create hate for right and trump?,whoa white supremacist organized charlottesville protest work cnn protest manufactured create hate right trump
+1,tunisia parliament backs chahed's new government,tunisia parliament back chaheds new government
+1,eu leaders talk up iran nuclear deal hoping to save it from trump,eu leader talk iran nuclear deal hoping save trump
+1,trump reaffirms commitment to defend u.s. and allies,trump reaffirms commitment defend u ally
+1,russian firm provides new internet connection to north korea,russian firm provides new internet connection north korea
+0,not kidding: pa college cancels play after author objects to use of white actors,kidding pa college cancel play author object use white actor
+1,new zealand's nationalist 'kingmaker' says has not yet contacted national or labour leaders,new zealand nationalist kingmaker say yet contacted national labour leader
+0,nustar's statia terminal in st eustatius shut down ahead of irma,nustars statia terminal st eustatius shut ahead irma
+0,mom not happy: transgender boy beats daughter in girls 100 meter running race [video],mom happy transgender boy beat daughter girl meter running race video
+1,france germany italy spain seek tax on digital giants' revenues,france germany italy spain seek tax digital giant revenue
+1,china steps up war on poverty though some still left behind,china step war poverty though still left behind
+0,phony hillary pulls the woman card at jay-z/beyonce gig: ‚we have a glass ceiling to crack‚‚ [video],phony hillary pull woman card jayzbeyonce gig glass ceiling crack video
+1,trump south korea's moon to meet amid tensions over north korea,trump south korea moon meet amid tension north korea
+1,amid south korea freeze china says cultural exchanges take the temperature,amid south korea freeze china say cultural exchange take temperature
+0,"helping hillary: what the virginia governor just did will help 200000 more people vote for hillary""",helping hillary virginia governor help people vote hillary
+0,ridiculous! nbc stirs up fear of a trump presidency with zero credible reasons‚they think we‚re stupid,ridiculous nbc stir fear trump presidency zero credible reasonsthey think stupid
+1,iraq's kurdistan shuts 350000 bpd of oil output due to security: sources,iraq kurdistan shuts bpd oil output due security source
+1,catalonia urges eu intervention in independence vote dispute,catalonia urge eu intervention independence vote dispute
+1,new zealand election result stokes housing migration fears,new zealand election result stokes housing migration fear
+0,billionaire branson targeted in $5 million scam 'straight out of le carre',billionaire branson targeted million scam straight le carre
+1,german court stops trial of paramedic who worked at auschwitz,german court stop trial paramedic worked auschwitz
+0,muslim refugees dump garbage in streets to protest insufficient wi-fi in housing,muslim refugee dump garbage street protest insufficient wifi housing
+1,hungary's opposition socialists lose pm candidate ahead of 2018 vote,hungary opposition socialist lose pm candidate ahead vote
+1,after german election france's macron paints sweeping vision for europe,german election france macron paint sweeping vision europe
+0,dear liberal,dear liberal
+0,breaking: dallas sniper suspect reportedly telling police ‚there are bombs all over the place‚the end is coming‚,breaking dallas sniper suspect reportedly telling police bomb placethe end coming
+0,nsc will not fulfill subpoena request for susan rice unmasking documents‚records moved to obama library‚presidential records act keeps them hidden from public for 5 years [video],nsc fulfill subpoena request susan rice unmasking documentsrecords moved obama librarypresidential record act keep hidden public year video
+0,only in detroit: entitled squatter gets squatted on [video],detroit entitled squatter get squatted video
+0,breaking: [video] dirty bomb fears,breaking video dirty bomb fear
+0,bill o‚reilly releases never before seen pictures of obama in muslim dress‚says they prove ‚deep emotional ties to islam‚ [video],bill oreilly release never seen picture obama muslim dresssays prove deep emotional tie islam video
+0,tv reporter fired after being caught on video calling a cop a ‚f***ing piece of s**t‚ in disgusting,tv reporter fired caught video calling cop fing piece st disgusting
+0,tulsi gabbard triggers the war hawks with her based skepticism,tulsi gabbard trigger war hawk based skepticism
+0,hilarious! cnn president jeff zucker is hitler [video],hilarious cnn president jeff zucker hitler video
+0,a-list democrats attend obama‚s last taxpayer-funded gig at the white house [video],alist democrat attend obamas last taxpayerfunded gig white house video
+1,frida the rescue dog emerges as hero of mexican earthquake,frida rescue dog emerges hero mexican earthquake
+1,anti-assad nations say no to syria reconstruction until political process on track,antiassad nation say syria reconstruction political process track
+0,an obama ‚low level offender‚ gets early release from prison: brutally murders woman,obama low level offender get early release prison brutally murder woman
+1,europe will do everything to preserve iran nuclear deal: eu diplomat,europe everything preserve iran nuclear deal eu diplomat
+0,comedy genius: [video] ‚bob ross‚ paints sick hillary‚h-i-l-a-r-i-o-u-s!,comedy genius video bob ross paint sick hillaryhilarious
+0,harvard students caught on tape saying white people should kill themselves for having ‚white privilege‚,harvard student caught tape saying white people kill white privilege
+0,habitual liar: remember the touching story hillary told about helping a little girl in a wheelchair? it was all a lie‚here‚s proof! [video],habitual liar remember touching story hillary told helping little girl wheelchair lieheres proof video
+1,syria ceasefire deal: a cynical ploy by washington‚s ‚coalition‚ to buy time for terrorists,syria ceasefire deal cynical ploy washington coalition buy time terrorist
+1,iraq builds up forces south of kurdish oil export pipeline: security sources,iraq build force south kurdish oil export pipeline security source
+0,mother of the year hires stripper for 8 year old‚s birthday party [video],mother year hire stripper year old birthday party video
+0,breaking video of hillary supporter and #blacklivesmatter activist vandalizing trump‚s brand new dc hotel [video],breaking video hillary supporter blacklivesmatter activist vandalizing trump brand new dc hotel video
+1,up to uk to find concrete proposals over brexit/irish border issues: macron,uk find concrete proposal brexitirish border issue macron
+1,key southern thailand insurgent group says current talks doomed,key southern thailand insurgent group say current talk doomed
+0,nba crybaby coach worries about president-elect trump insulting his wife,nba crybaby coach worry presidentelect trump insulting wife
+0,legionaries of christ hit by new scandal as priest fathers two,legionary christ hit new scandal priest father two
+0,cnn‚s wolf blitzer gets a tongue lashing from rnc‚s spicer: ‚you‚ve asked me eight times the same question!‚,cnns wolf blitzer get tongue lashing rncs spicer youve asked eight time question
+0,world‚s most famous victims purchase stunning number of luxury homes‚not a bad payout for a couple who divided our nation,world famous victim purchase stunning number luxury homesnot bad payout couple divided nation
+1,uzbek dissident charged with anti-government propaganda: report,uzbek dissident charged antigovernment propaganda report
+0,hidden camera shows how illegal aliens steal jobs from americans‚how they really feel about competing with american citizens for jobs [video],hidden camera show illegal alien steal job americanshow really feel competing american citizen job video
+0,brigitte gabriel reveals muslim brotherhood ‚plan for the destruction of the united states‚‚left goes nuts over possibility of trump declaring them a ‚terror group‚ [video],brigitte gabriel reveals muslim brotherhood plan destruction united statesleft go nut possibility trump declaring terror group video
+0,ep #19: patrick henningsen live ‚ season finale ‚ open phones,ep patrick henningsen live season finale open phone
+0,melania punches back‚hard‚after leftist publication admits they had no basis for story created to destroy melania‚but published it anyway [video],melania punch backhardafter leftist publication admits basis story created destroy melaniabut published anyway video
+1,syrian army and allies close in on islamic state in deir al-zor,syrian army ally close islamic state deir alzor
+0,us state department talking head transforms into al qaeda‚s spokesperson,u state department talking head transforms al qaeda spokesperson
+0,finally,finally
+1,nein danke! merkel spurns challenger's tv duel re-run offer,nein danke merkel spurns challenger tv duel rerun offer
+1,germany's schulz says he would demand u.s. withdraw nuclear arms,germany schulz say would demand u withdraw nuclear arm
+1,charlottesville: far left vs far right clashes,charlottesville far left v far right clash
+1,germany climbs in development ranking by taking in refugees,germany climb development ranking taking refugee
+1,u.s. israel quit u.n. heritage agency citing bias,u israel quit un heritage agency citing bias
+0,bernie sanders supporter wants you to pay off her $226k debt‚wait till you see what a job with her degree pays,bernie sander supporter want pay k debtwait till see job degree pay
+0,ouch! leftist hollywood just got schooled by one of their own‚actor writes scathing letter,ouch leftist hollywood got schooled one ownactor writes scathing letter
+1,south korea says trump's warning to north korea 'firm and specific',south korea say trump warning north korea firm specific
+0,infamous romanian hacker tells fox news host how ‚easy‚ it was to hack hillary‚s server [video],infamous romanian hacker tell fox news host easy hack hillary server video
+0,hillary couldn‚t find 125 women to buy tickets to ‚women only‚ fundraiser‚forced to sell tickets to men,hillary couldnt find woman buy ticket woman fundraiserforced sell ticket men
+1,'suicidal' danish submarine owner says journalist killed by hatch cover,suicidal danish submarine owner say journalist killed hatch cover
+0,"team clinton member bill gates pushed for unlimited guest worker permits last week‚this week slashes 18000 jobs""",team clinton member bill gate pushed unlimited guest worker permit last weekthis week slash job
+1,buckeye targets normal operations at bahamas oil terminal on tuesday,buckeye target normal operation bahamas oil terminal tuesday
+0,osama bin laden‚s youngest wife speaks out for first time: tells chaotic story of night u.s. navy seals killed her ‚frightened‚ husband,osama bin ladens youngest wife speaks first time tell chaotic story night u navy seal killed frightened husband
+0,oh the irony! planned parenthood uses a famous cartoon character to defend abortion,oh irony planned parenthood us famous cartoon character defend abortion
+1,china tightens regulation of religion to 'block extremism',china tightens regulation religion block extremism
+0,trump faces off with cnn‚s jake tapper over event fistacuffs,trump face cnns jake tapper event fistacuffs
+0,the android affair: humanity outsourced,android affair humanity outsourced
+0,activists or terrorists? how media controls and dictates ‚the narrative‚ in burns,activist terrorist medium control dictate narrative burn
+0,brad pitt explains ridiculous reason he‚s now an atheist,brad pitt explains ridiculous reason he atheist
+1,rhetoric aside latin america leaders say trump listened on venezuela,rhetoric aside latin america leader say trump listened venezuela
+0,rick santorum infuriates liberals after he tells illegal alien to go home and apply for citizenship [video],rick santorum infuriates liberal tell illegal alien go home apply citizenship video
+1,white house adviser says return to florida keys may take weeks,white house adviser say return florida key may take week
+1,mexicans race to save schoolgirl buried by quake; death toll at 237,mexican race save schoolgirl buried quake death toll
+0,seattle city councilwoman incites riot‚vows to shut down trump inauguration [video],seattle city councilwoman incites riotvows shut trump inauguration video
+1,germany seeks to maintain unity if u.s. decertifies iran nuclear deal,germany seek maintain unity u decertifies iran nuclear deal
+0,msm fake news: how washington post sexed-up its ‚facebook russian bot‚ conspiracy,msm fake news washington post sexedup facebook russian bot conspiracy
+0,classless michelle obama hits trump with outright lie in interview with oprah [video],classless michelle obama hit trump outright lie interview oprah video
+1,turnout high as iraqi kurds defy threats to hold independence vote,turnout high iraqi kurd defy threat hold independence vote
+0,ben stein calls out 9th circuit court: committed a ‚coup d‚√©tat‚ against the constitution,ben stein call th circuit court committed coup dtat constitution
+0,senegal rebels issue warning over astron's mineral sands mine,senegal rebel issue warning astrons mineral sand mine
+0,illegal alien arrested for shooting teen girlfriend and 3 yr old son and lighting them on fire while boy was still alive was previously deported [video],illegal alien arrested shooting teen girlfriend yr old son lighting fire boy still alive previously deported video
+1,colombia sees peace with eln rebels harder than farc,colombia see peace eln rebel harder farc
+1,two seismic events in north korea unlikely man-made: ctbto,two seismic event north korea unlikely manmade ctbto
+1,western powers urge myanmar's suu kyi to push for end to violence,western power urge myanmar suu kyi push end violence
+0,"media focuses on crooked granny‚as chelsea gives birth to campaign baby in $1700/night maternity ward‚but where are chelsea‚s in-laws?""",medium focus crooked grannyas chelsea give birth campaign baby night maternity wardbut chelseas inlaws
+1,kurdish leaders studying western delegation plan to delay referendum,kurdish leader studying western delegation plan delay referendum
+0,new email leaks show how colin powell really felt about ‚friend‚ hillary: ‚greedy,new email leak show colin powell really felt friend hillary greedy
+0,muslim migrant too sick to work,muslim migrant sick work
+1,east timor president swears in first minority government,east timor president swears first minority government
+0,anti-hillary halloween house gets violent threats you won‚t believe‚this woman is so brave! [video],antihillary halloween house get violent threat wont believethis woman brave video
+1,u.s. takes north korea threat of h-bomb test seriously trump official says,u take north korea threat hbomb test seriously trump official say
+0,was ‚open-borders‚ angela merkel behind $4 million taxpayer funded donation to hillary‚s ‚foundation‚ one month before election?,openborders angela merkel behind million taxpayer funded donation hillary foundation one month election
+1,germany keen to avoid new 'ice age' in ties between russia west,germany keen avoid new ice age tie russia west
+1,u.s. to decide soon on future of taliban office in qatar,u decide soon future taliban office qatar
+0,chilling democrat sponsored gun ‚seizure‚ bill is introduced in ga,chilling democrat sponsored gun seizure bill introduced ga
+0,loretta lynch gives radical black lives matter protesters pep talk: ‚i want you to know that your voice is important‚,loretta lynch give radical black life matter protester pep talk want know voice important
+0,hurricane irma moves away from barbuda: nhc,hurricane irma move away barbuda nhc
+0,conservative mom and cruz supporter goes all in for trump‚and here‚s why,conservative mom cruz supporter go trumpand here
+0,malaysia asks interpol to trace financier linked to 1mdb scandal,malaysia asks interpol trace financier linked mdb scandal
+0,new report: obamaphone program stashed $9 billion in private bank accounts‚exposes massive windfall for phone companies,new report obamaphone program stashed billion private bank accountsexposes massive windfall phone company
+1,u.n. launches new plan to end libya's post-revolution turmoil,un launch new plan end libya postrevolution turmoil
+0,kellogg‚s pulls advertising from breitbart news as punishment for conservative news slant‚#boycottkelloggs,kellogg pull advertising breitbart news punishment conservative news slantboycottkelloggs
+0,crooked hillary‚s biggest nightmare: brilliant filmmaker finds a way to turn hillary‚s emails into a movie for every american to see [video],crooked hillary biggest nightmare brilliant filmmaker find way turn hillary email movie every american see video
+1,britain's queen elizabeth bows out of remembrance wreath-laying ceremony,britain queen elizabeth bow remembrance wreathlaying ceremony
+1,palestinian gunman kills three israeli guards at west bank settlement,palestinian gunman kill three israeli guard west bank settlement
+1,catalan leader calls for reduced tensions,catalan leader call reduced tension
+1,china says u.n. sanctions on north korea allowed buffer period for coal seafood ban,china say un sanction north korea allowed buffer period coal seafood ban
+0,hurricane irma threatens florida's bustling tourism industry,hurricane irma threatens florida bustling tourism industry
+1,macron's europe speech draws mixed reaction in berlin,macron europe speech draw mixed reaction berlin
+1,catalan leader puigdemont to address catalan parliament on tuesday evening,catalan leader puigdemont address catalan parliament tuesday evening
+0,cia report released: trump maintains dnc leaks had ‚absolutely no effect on outcome of election‚,cia report released trump maintains dnc leak absolutely effect outcome election
+1,putin and trump to potentially meet in slovenia,putin trump potentially meet slovenia
+0,why did two major companies,two major company
+0,actor james woods shares hilarious video montage of reactions by so-called ‚journalists‚ to trump‚s win on election night,actor james wood share hilarious video montage reaction socalled journalist trump win election night
+0,democrats admit plan to commit mass voter fraud [video],democrat admit plan commit mass voter fraud video
+1,turkish tanks drill on iraqi border week before kurdish vote,turkish tank drill iraqi border week kurdish vote
+1,erdogan putin to discuss syrian peace plan next week,erdogan putin discus syrian peace plan next week
+0,violent protest outside trump rally in pittsburgh as cops come down on black lives matter thugs [video],violent protest outside trump rally pittsburgh cop come black life matter thug video
+1,henningsen on crosstalk debating ‚trump & his generals‚,henningsen crosstalk debating trump general
+1,hong kong scraps 24-hour bbc world service radio channel despite criticism,hong kong scrap hour bbc world service radio channel despite criticism
+0,wow! trump underestimated illegal vote: new study shows up to 5.7 million non-citizens voted illegally in 2008 obama election [video],wow trump underestimated illegal vote new study show million noncitizen voted illegally obama election video
+1,venezuela's maduro defends disputed vote opposition divided,venezuela maduro defends disputed vote opposition divided
+0,trump challenges fake media: ‚are we going to take down statues of george washington?‚ [video],trump challenge fake medium going take statue george washington video
+0,sunday screening: ‚the war on democracy‚ (2007),sunday screening war democracy
+1,trump offers to mediate talks on qatar crisis,trump offer mediate talk qatar crisis
+0,october tease: wikileaks false start leaves trump supporters sleepless and exasperated,october tease wikileaks false start leaf trump supporter sleepless exasperated
+1,catalan separatists call supporters onto streets for 'peaceful' referendum day,catalan separatist call supporter onto street peaceful referendum day
+0,stunner! florida trump event: former haitian senate president drops clinton bombshell exposing unbelievable corruption [video],stunner florida trump event former haitian senate president drop clinton bombshell exposing unbelievable corruption video
+0,not so funny guy,funny guy
+0,actor rob lowe blasts greedy socialist bernie sanders,actor rob lowe blast greedy socialist bernie sander
+1,france 'extremely concerned' by iran ballistic missile test,france extremely concerned iran ballistic missile test
+0,obama regime uses image of u.s. constitution in spanish speaking ad encouraging illegals to become citizens/voters,obama regime us image u constitution spanish speaking ad encouraging illegals become citizensvoters
+1,uruguay vice president quits amid probe into use of public funds,uruguay vice president quits amid probe use public fund
+1,instant view: uk's may calls for two-year transition after brexit,instant view uk may call twoyear transition brexit
+0,nyc mayor deblasio says ‚something is changing in america‚ announces new ‚communist manifesto‚ agenda,nyc mayor deblasio say something changing america announces new communist manifesto agenda
+0,cnn does segment from bunker in hawaii,cnn segment bunker hawaii
+1,turkey orders 79 school employees detained in post-coup probe: ntv,turkey order school employee detained postcoup probe ntv
+1,finnish president has strong poll lead ahead of january elections,finnish president strong poll lead ahead january election
+0,shocking! evidence shows why obama is heart of violent #blacklivesmatter cop killing,shocking evidence show obama heart violent blacklivesmatter cop killing
+1,kenya's odinga says october poll would be illegal,kenya odinga say october poll would illegal
+1,trump says ‚no‚ to pro-amnesty koch brother‚s influence‚won‚t meet with them,trump say proamnesty koch brother influencewont meet
+0,eyewash: cia elites misleading employees indicates that conspiracies are not ‚ridiculous fantasy‚,eyewash cia elite misleading employee indicates conspiracy ridiculous fantasy
+1,north korea not ready to meet with south korea in russia: agencies,north korea ready meet south korea russia agency
+1,state workers protest in romania over social security payment shift,state worker protest romania social security payment shift
+0,hillary‚s pastor compares her election loss to donald trump to death of jesus christ [video],hillary pastor compare election loss donald trump death jesus christ video
+1,highlights: french president macron's speech on the eu,highlight french president macron speech eu
+1,former libyan prime minister freed after abduction in tripoli,former libyan prime minister freed abduction tripoli
+1,u.n. aviation agency to call for global drone registry,un aviation agency call global drone registry
+0,trump swings back at author of fake dossier: ‚failed spy‚ might face libel action,trump swing back author fake dossier failed spy might face libel action
+1,vote ruling by chief justice surprises kenyans but not his colleagues,vote ruling chief justice surprise kenyan colleague
+1,romanian pm says he is considering government reshuffle,romanian pm say considering government reshuffle
+1,woman's murder prompts mass eviction of syrians from lebanese town,woman murder prompt mass eviction syrian lebanese town
+1,erdogan tells iraqi kurds they will go hungry if turkey imposes sanctions,erdogan tell iraqi kurd go hungry turkey imposes sanction
+1,mattis says u.s. working to ensure situation around kirkuk does not escalate,mattis say u working ensure situation around kirkuk escalate
+1,clash between military and suspected gang leaves nine dead in southern mexico,clash military suspected gang leaf nine dead southern mexico
+1,british columbia hires investigator to probe money laundering in casinos,british columbia hire investigator probe money laundering casino
+0,the jack blood show: ‚from may day riots to globalism‚ with 21wire guest shawn helton,jack blood show may day riot globalism wire guest shawn helton
+1,canada‚s immigration website crashes after trump pulls ahead,canada immigration website crash trump pull ahead
+1,shifting paradigm: you‚ll only understand trump and brexit if you understand the failure of globalization,shifting paradigm youll understand trump brexit understand failure globalization
+1,suicide bombing at southwest pakistan shrine kills 18,suicide bombing southwest pakistan shrine kill
+1,'rain begins with a single drop:' saudi women rejoice at end of driving ban,rain begin single drop saudi woman rejoice end driving ban
+1,thai authorities close in on yingluck's escape accomplices,thai authority close yinglucks escape accomplice
+0,liberal imperium: quigley‚s anglo-american establishment ‚ jay dyer (half),liberal imperium quigleys angloamerican establishment jay dyer half
+1,matchmaker merkel seeks awkward three-way embrace,matchmaker merkel seek awkward threeway embrace
+1,thai junta and muslim separatists trade blame over peace steps,thai junta muslim separatist trade blame peace step
+0,dingbat democrat maxine waters hopes trump won‚t serve 4 years‚thinks putin invaded korea [video],dingbat democrat maxine water hope trump wont serve yearsthinks putin invaded korea video
+0,federal judge just delivered bad news to hillary clinton about the missing benghazi emails,federal judge delivered bad news hillary clinton missing benghazi email
+1,coca trafficking greatest threats to colombia peace: official,coca trafficking greatest threat colombia peace official
+0,if hillary has to drop out of the race‚here‚s what will happen,hillary drop raceheres happen
+0,new batman comic features batman saving black man from evil cops,new batman comic feature batman saving black man evil cop
+1,nigerian air force deploys aircraft to restive southeast,nigerian air force deploys aircraft restive southeast
+1,china says north korea quake not nuclear explosion,china say north korea quake nuclear explosion
+0,sheriff clark tweets most blistering response ever after barack obama boasted he would‚ve beaten trump in election,sheriff clark tweet blistering response ever barack obama boasted wouldve beaten trump election
+1,uk sees swift deal on brexit transition outline still at odds with eu on trade,uk see swift deal brexit transition outline still odds eu trade
+1,scotland sees progress in brexit talks with london but still objects to bill,scotland see progress brexit talk london still object bill
+0,obama‚s speech about ‚child safety‚ was interrupted when rapper guest‚s ankle bracelet from kidnapping charge went off,obamas speech child safety interrupted rapper guest ankle bracelet kidnapping charge went
+1,xi putin agree to 'appropriately deal' with n.korea nuclear test: xinhua,xi putin agree appropriately deal nkorea nuclear test xinhua
+0,trump exposes truth about why u.s. state dept chooses muslim syrian refugees over christians [video],trump expose truth u state dept chooses muslim syrian refugee christian video
+0,new app gives women opportunity to talk about ‚guilt free‚ abortions: ‚i‚ve had 5 abortions because i love getting pregnant but just not ready for kids.‚,new app give woman opportunity talk guilt free abortion ive abortion love getting pregnant ready kid
+0,breaking: watch cops shut down portland punk protesters blocking traffic [video],breaking watch cop shut portland punk protester blocking traffic video
+1,pope visits colombia to boost peace process after 50 years of war,pope visit colombia boost peace process year war
+1,late uk pm heath had questions to answer over child sex abuse claims -police,late uk pm heath question answer child sex abuse claim police
+1,turkey iran iraq consider counter-measures over kurdish referendum,turkey iran iraq consider countermeasure kurdish referendum
+1,we're all human: 'nudge' theorist thaler wins economics nobel,human nudge theorist thaler win economics nobel
+0,the video hillary clinton does not want you to see,video hillary clinton want see
+1,syria: washington‚s boots and missile systems on the ground to defend isis and associated proxies,syria washington boot missile system ground defend isi associated proxy
+1,germany's social democrats beat merkel's conservatives in state vote,germany social democrat beat merkels conservative state vote
+0,leftist for a living changes position,leftist living change position
+0,karma: manufactured race war backfires‚missou loses top football recruit,karma manufactured race war backfiresmissou loses top football recruit
+0,busted! ohio attorney general discovers illegal alien voters‚calls for full investigation [video],busted ohio attorney general discovers illegal alien voterscalls full investigation video
+1,german carnival cancelled over fears of muslim refugee sex attacks,german carnival cancelled fear muslim refugee sex attack
+0,fed up with #blacklivesmatter terrorists: students at major ca university stage ‚white solidarity‚ walk out,fed blacklivesmatter terrorist student major ca university stage white solidarity walk
+0,german volunteers hold welcome rally: applaud as muslim migrants sing jihadist songs [video],german volunteer hold welcome rally applaud muslim migrant sing jihadist song video
+1,u.n. experts urge aung san suu kyi to meet persecuted rohingya,un expert urge aung san suu kyi meet persecuted rohingya
+1,u.n. condemns anti-gay crackdowns in egypt azerbaijan indonesia,un condemns antigay crackdown egypt azerbaijan indonesia
+1,eighteen injured in west london incident none seriously: uk ambulance service,eighteen injured west london incident none seriously uk ambulance service
+0,boom! actor james woods has hilarious response to angry feminist msnbc host‚s criticism of ivanka‚s ‚girly‚ dress,boom actor james wood hilarious response angry feminist msnbc host criticism ivankas girly dress
+1,germany's fdp party leader 'can't imagine' three-way coalition,germany fdp party leader cant imagine threeway coalition
+0,ranks of world's refugees swell as asylum space shrinks: u.n.,rank world refugee swell asylum space shrink un
+1,trump vs clinton 2016: mickey mouse vs cruella de vil,trump v clinton mickey mouse v cruella de vil
+1,kremlin sees 'extremely negative' consequences if u.s. quits iran nuclear deal,kremlin see extremely negative consequence u quits iran nuclear deal
+0,this is great! anti-hillary street art pops up everywhere in brooklynhillary clinton‚s supporters were calling certain words used to describe her as sexist. words like entitled,great antihillary street art pop everywhere brooklynhillary clinton supporter calling certain word used describe sexist word like entitled
+1,catalonia's leaders fight off direct rule from madrid,catalonia leader fight direct rule madrid
+0,anti-trump french president macron caught on video pushing way through world leaders to be pictured next to trump in g-20 group photo,antitrump french president macron caught video pushing way world leader pictured next trump g group photo
+0,get off our campus! how universities plan to ‚weed out‚ conservative professors‚only hire liberal educators,get campus university plan weed conservative professorsonly hire liberal educator
+1,trump denounces attack in london urges 'proactive' steps,trump denounces attack london urge proactive step
+1,unveiling new libya plan u.n. sees opportunity for peace,unveiling new libya plan un see opportunity peace
+0,robert parry: us intel report on ‚russian hack‚ still lacks proof,robert parry u intel report russian hack still lack proof
+0,the ‚islamic rape of europe‚‚one nation is fighting back in most politically incorrect way,islamic rape europeone nation fighting back politically incorrect way
+0,tucker carlson unloads on dem strategist who posted #huntrepublicancongressmen day after republicans shot by bernie sanders supporter: ‚you‚re an unbalanced person‚ [video],tucker carlson unloads dem strategist posted huntrepublicancongressmen day republican shot bernie sander supporter youre unbalanced person video
+1,brazil anti-graft head defends graft fines after backlash,brazil antigraft head defends graft fine backlash
+1,pakistan army says state exploring how to integrate militant-linked groups,pakistan army say state exploring integrate militantlinked group
+0,breaking live feed: police form large barricade in atlanta to keep large crowd of black lives matter protesters off major highway‚protesters launch water bottles at trucker,breaking live feed police form large barricade atlanta keep large crowd black life matter protester major highwayprotesters launch water bottle trucker
+0,breaking: trump just made a huge announcement‚proving he‚s the only candidate who truly believes #blacklivesmatter,breaking trump made huge announcementproving he candidate truly belief blacklivesmatter
+1,china denies links to alleged cyber attacks in united states targeting exiled tycoon guo,china denies link alleged cyber attack united state targeting exiled tycoon guo
+0,obama will send representative to alton sterling funeral‚couldn‚t be bothered with supreme court justice scalia‚s funeral,obama send representative alton sterling funeralcouldnt bothered supreme court justice scalias funeral
+1,china's xi says can thwart taiwan independence taiwan says democracy first,china xi say thwart taiwan independence taiwan say democracy first
+0,baltimore police union wants an independant prosecutor: mosby has connections to freddie gray family,baltimore police union want independant prosecutor mosby connection freddie gray family
+0,the robbing of innocence: 12 yr old students given cdc survey about transgender,robbing innocence yr old student given cdc survey transgender
+0,afghanistan ambassador was delightfully shocked after meeting with president trump: asked 3 important questions obama never did [video],afghanistan ambassador delightfully shocked meeting president trump asked important question obama never video
+1,epa waives requirements on sale production of gasoline due to storms,epa waif requirement sale production gasoline due storm
+0,nustar's st. eustatius terminal damaged by irma no restart date set,nustars st eustatius terminal damaged irma restart date set
+1,moscow tells tehran russia remains committed to nuclear deal,moscow tell tehran russia remains committed nuclear deal
+1,trade in focus at hearing for trump's nominee as ambassador to india,trade focus hearing trump nominee ambassador india
+1,u.s.-led coalition says islamic state syria convoy split in two,usled coalition say islamic state syria convoy split two
+0,boiler room ep #78,boiler room ep
+0,entire high school follows kaepernicks lead in disrespecting the national anthem,entire high school follows kaepernicks lead disrespecting national anthem
+0,pelosi giggles nervously: ‚after i met president trump i prayed for america‚ [video],pelosi giggle nervously met president trump prayed america video
+1,brooking no dissent marine le pen takes grip on french far-right,brooking dissent marine le pen take grip french farright
+0,atheist teacher gets 8 year old one-week suspension for saying ‚merry christmas‚,atheist teacher get year old oneweek suspension saying merry christmas
+1,south africa's tutu asks myanmar's suu kyi to help rohingya,south africa tutu asks myanmar suu kyi help rohingya
+0,when huma met hillary: ‚oh my god,huma met hillary oh god
+0,obama supporter,obama supporter
+0,lol! most arrested soros protesters didn‚t even vote‚listen to hilarious reason they‚re protesting [video],lol arrested soros protester didnt even votelisten hilarious reason theyre protesting video
+1,indonesia to buy $1.14 billion worth of russian jets,indonesia buy billion worth russian jet
+1,china state media attacks western democracy ahead of congress,china state medium attack western democracy ahead congress
+1,russian hacker wanted by u.s. tells court he worked for putin's party,russian hacker wanted u tell court worked putin party
+1,guatemala congress again votes to maintain president's immunity,guatemala congress vote maintain president immunity
+1,britain unconditionally committed to maintaining european security: official document,britain unconditionally committed maintaining european security official document
+0,revealed: who gave democratic emails to wikileaks and why they were a leaker and not a hacker [video],revealed gave democratic email wikileaks leaker hacker video
+0,fake news: the collapse of the msm‚s ‚facebook russian bot‚ story,fake news collapse msms facebook russian bot story
+0,delusional obama on how divided america has become: at least it‚s not a civil war [video],delusional obama divided america become least civil war video
+1,saudi calls for social media informants decried as 'orwellian',saudi call social medium informant decried orwellian
+1,turkish police fire tear gas at protesters outside hunger strikers' trial,turkish police fire tear gas protester outside hunger striker trial
+1,northern ireland political talks stall as time runs out,northern ireland political talk stall time run
+1,u.s. bombers fighter jets in bombing drill over korean peninsula: south korea,u bomber fighter jet bombing drill korean peninsula south korea
+1,china rules out military force as option to resolve korean peninsula issues,china rule military force option resolve korean peninsula issue
+1,australia pushes asylum seeker transfer in bid to close controversial camp,australia push asylum seeker transfer bid close controversial camp
+1,u.s. calls for u.n. to impose strongest measures on north korea,u call un impose strongest measure north korea
+0,wow! gop elitists get hammered: ‚‚weak-kneed,wow gop elitist get hammered weakkneed
+0,obama‚s crooked doj hides massive hillary scandal: ‚the u.s. government spent millions of dollars,obamas crooked doj hide massive hillary scandal u government spent million dollar
+1,factbox: caribbean and gulf oil companies begin to brace for hurricane irma,factbox caribbean gulf oil company begin brace hurricane irma
+1,brexit talks stutter but eu leaders might give may break,brexit talk stutter eu leader might give may break
+1,german citizen freed in turkey but banned from leaving dogan reports,german citizen freed turkey banned leaving dogan report
+1,mali president wants u.s. to reverse chad travel ban,mali president want u reverse chad travel ban
+0,more fake news: mainstream media lies about trump ‚evicting‚ white house press corp,fake news mainstream medium lie trump evicting white house press corp
+1,washington post deceives public & profits from fake news,washington post deceives public profit fake news
+1,air france flight with engine damage makes emergency landing in canada,air france flight engine damage make emergency landing canada
+0,snowden laughs-off cia excuse of ‚mistakenly destroying‚ secret torture report,snowden laughsoff cia excuse mistakenly destroying secret torture report
+1,chinese graft suspect returns from u.s. to surrender,chinese graft suspect return u surrender
+0,hillary volunteer,hillary volunteer
+1,trump revives keystone and dakota access pipelines,trump revives keystone dakota access pipeline
+0,the android affair: humanity outsourced,android affair humanity outsourced
+1,palestinian accord must abide by international accords: israeli official,palestinian accord must abide international accord israeli official
+1,u.s. send extra fighters to police baltic skies during russian exercise,u send extra fighter police baltic sky russian exercise
+0,list of 20 ‚vetted‚ refugees who were charged with terrorism after entering u.s:‚i want to blow myself up‚i am against america‚,list vetted refugee charged terrorism entering usi want blow upi america
+1,thai king marks completion of royal cremation site ahead of funeral,thai king mark completion royal cremation site ahead funeral
+0,shocking: dnc contractor caught in voter fraud sting visited white house 342 times,shocking dnc contractor caught voter fraud sting visited white house time
+0,u.s.-backed militias say they take major raqqa position from isis,usbacked militia say take major raqqa position isi
+0,awesome pro-gun ad removed from airport after complaints from rainbows and unicorn liberals,awesome progun ad removed airport complaint rainbow unicorn liberal
+1,china says nothing will stop its long-range air force drills,china say nothing stop longrange air force drill
+1,russia's putin signs decree imposing restrictions on north korea,russia putin sign decree imposing restriction north korea
+0,trump exposes obama‚s incompetence: cuts epa budget‚still fixes flint‚s water crisis,trump expose obamas incompetence cut epa budgetstill fix flint water crisis
+0,wow! milwaukee school of engineering professor exposed after student takes photo of insane test question: ‚one of main functions of government is income redistribution‚,wow milwaukee school engineering professor exposed student take photo insane test question one main function government income redistribution
+1,san bernardino: two adults dead,san bernardino two adult dead
+1,cambodia suspends cooperation with u.s. in finding war remains,cambodia suspends cooperation u finding war remains
+1,catalan pro-independence parties working on independence declaration: el mundo,catalan proindependence party working independence declaration el mundo
+0,u.s. navy moving aircraft carrier in anticipation of irma relief,u navy moving aircraft carrier anticipation irma relief
+0,if google trends are any indication of who will win election‚hillary is in big trouble!,google trend indication win electionhillary big trouble
+0,swedish resident speaks out about decades of muslim immigration: ‚we all live in the same town,swedish resident speaks decade muslim immigration live town
+1,shout poll: will donald trump hold his lead,shout poll donald trump hold lead
+1,turkey's military says two turkish soldiers killed in blast in northern iraq,turkey military say two turkish soldier killed blast northern iraq
+1,russia says close to syria deal with turkey iran,russia say close syria deal turkey iran
+1,moscow denies ukraine's accusation that it left troops in belarus,moscow denies ukraine accusation left troop belarus
+1,u.s. justice department latin american countries charge 3800 gang members,u justice department latin american country charge gang member
+0,check out trump‚s hilarious new years eve tweet to his ‚many enemies‚,check trump hilarious new year eve tweet many enemy
+0,whoa! why is our classless president following porn sites on twitter?,whoa classless president following porn site twitter
+0,pc tyranny: university of oregon rules that professors have no free speech,pc tyranny university oregon rule professor free speech
+1,senators urge trump administration to act on myanmar rohingya,senator urge trump administration act myanmar rohingya
+1,u.s. military aircraft crashes in syria injuring two: officials,u military aircraft crash syria injuring two official
+0,tucker carlson defends trump‚s wiretapping allegation against obama: ‚the press is willfully ignoring the truth‚this stuff does happen‚they‚re lying about it‚ [video],tucker carlson defends trump wiretapping allegation obama press willfully ignoring truththis stuff happentheyre lying video
+1,underdog center-left party may outperform expectations in japan snap poll,underdog centerleft party may outperform expectation japan snap poll
+1,boiler room ep #119 ‚ zombie disneyland & the decline of western society,boiler room ep zombie disneyland decline western society
+0,ep #16: patrick henningsen live ‚ ‚official washington madness‚ with guest robert parry,ep patrick henningsen live official washington madness guest robert parry
+0,nutty lefty breaks into trump‚s mar-a-lago club‚vandalizes with bananas,nutty lefty break trump maralago clubvandalizes banana
+1,new zealand labour leader says no immediate talks with likely election kingmaker,new zealand labour leader say immediate talk likely election kingmaker
+0,african-american museum grand opening irony: watch police violate rights of protester exposing hillary‚s racist remarks,africanamerican museum grand opening irony watch police violate right protester exposing hillary racist remark
+0,flint residents told to pay bills for poison water or they may have their children taken away,flint resident told pay bill poison water may child taken away
+0,japanese schools don‚t employ janitors‚why americans should demand our schools adopt the same policy [video],japanese school dont employ janitorswhy american demand school adopt policy video
+1,qatari emir to meet turkey's erdogan in ankara: turkish presidency,qatari emir meet turkey erdogan ankara turkish presidency
+0,uaw bullies print names of non-members in right-to-work state [video],uaw bully print name nonmember righttowork state video
+0,ambassador chris stevens‚ fianc√© speaks out about hillary leaving him to die: ‚if he was a friend,ambassador chris stevens fianc speaks hillary leaving die friend
+1,china says north korea nuclear issue must be resolved peacefully,china say north korea nuclear issue must resolved peacefully
+1,new zealand to increase military personnel in afghanistan by three,new zealand increase military personnel afghanistan three
+1,boiler room ep #80 ‚ heads they win,boiler room ep head win
+1,brazil former presidents lula and rousseff charged in corruption case,brazil former president lula rousseff charged corruption case
+0,exposed: the us is an oligarchy ruled by billionaires and dictators,exposed u oligarchy ruled billionaire dictator
+1,desperation or stupidity? german state recruits refugees with no passports for police officer jobs,desperation stupidity german state recruit refugee passport police officer job
+1,qantas flight to san francisco turns back after 'technical issue',qantas flight san francisco turn back technical issue
+0,hillary calls parent of benghazi victim a liar on national tv,hillary call parent benghazi victim liar national tv
+0,radical ‚tolerant‚ female antifa,radical tolerant female antifa
+0,wow! secret service director sets record straight,wow secret service director set record straight
+0,oops! new app allows users to remain anonymous‚defies liberal media narrative‚shows trump winning big over crooked hillary,oops new app allows user remain anonymousdefies liberal medium narrativeshows trump winning big crooked hillary
+0,muslim leader tells secretive islamic compounds in u.s. to arm up after trump win: ‚he has come as a test and trial for the faithful adherents of the holy books‚ [video],muslim leader tell secretive islamic compound u arm trump win come test trial faithful adherent holy book video
+1,rape cases fuel anti-migrant angst in italy ahead of election,rape case fuel antimigrant angst italy ahead election
+1,brazil's temer says new graft charges part of 'irresponsible campaign',brazil temer say new graft charge part irresponsible campaign
+1,soldiers on europe's streets dent nato's defense edge,soldier europe street dent nato defense edge
+1,iraq says captures positions south of kirkuk from kurdish forces,iraq say capture position south kirkuk kurdish force
+0,[video] dumb and dumber star bashes trump‚use worst examples of female leaders to promote hillary,video dumb dumber star bash trumpuse worst example female leader promote hillary
+1,game over for 'discredited' catalan referendum spanish officials say,game discredited catalan referendum spanish official say
+0,lol! crowd chants ‚cnn sucks‚ at trump rally while cnn broadcasts live [video],lol crowd chant cnn suck trump rally cnn broadcast live video
+0,obama agrees with muslim news network whose facebook page celebrates jihad against gays in orlando‚guns to blame for terror act,obama agrees muslim news network whose facebook page celebrates jihad gay orlandoguns blame terror act
+0,digisexual robot pimps,digisexual robot pimp
+0,breaking news: man with laptop on american airlines flight to honolulu subdued after attempting to break down cockpit door [video],breaking news man laptop american airline flight honolulu subdued attempting break cockpit door video
+0,did ups secretly fly ‚refugees‚ into u.s. from the middle east? watch governor chris christie‚s shocking interview with bill o‚reilly,ups secretly fly refugee u middle east watch governor chris christie shocking interview bill oreilly
+1,cameroon army helicopters shot separatist protesters: witnesses,cameroon army helicopter shot separatist protester witness
+0,couple defy hurricane maria on roof to save pets - lots of them,couple defy hurricane maria roof save pet lot
+0,trump kicks pro-amnesty,trump kick proamnesty
+1,opposition says 150 civilians killed in russian syrian raids on idlib,opposition say civilian killed russian syrian raid idlib
+1,macron's popularity improving: poll,macron popularity improving poll
+1,china to establish leading group for law-based governance,china establish leading group lawbased governance
+1,anti-corruption blogger killed by huge bomb in malta,anticorruption blogger killed huge bomb malta
+1,blaze in firecracker workshop kills six in eastern india,blaze firecracker workshop kill six eastern india
+1,kenyan president says repeat election must be held within set time,kenyan president say repeat election must held within set time
+1,u.s.-backed syrian forces seize raqqa mosque: coalition,usbacked syrian force seize raqqa mosque coalition
+1,fistfights erupt in uganda's parliament amid move to extend museveni rule,fistfight erupt uganda parliament amid move extend museveni rule
+0,watch hillary laugh when trump mentions gays who are thrown off buildings by muslims in countries who fund her campaign,watch hillary laugh trump mention gay thrown building muslim country fund campaign
+1,turkey extends troop deployment mandate pressures iraqi kurds on vote,turkey extends troop deployment mandate pressure iraqi kurd vote
+1,japan calls snap election as new party roils outlook,japan call snap election new party roils outlook
+0,woman defends female genital mutilation with this twisted reasoning [video],woman defends female genital mutilation twisted reasoning video
+1,in pakistan's coal rush some women drivers break cultural barriers,pakistan coal rush woman driver break cultural barrier
+0,find out if your senator voted to help obama with the fundamental transformation of america,find senator voted help obama fundamental transformation america
+0,boom! watch trump in flint: ‚now,boom watch trump flint
+0,hysterical video: saturday night live does cnn,hysterical video saturday night live cnn
+1,thai junta tells japan investors $45-billion development plan to go ahead,thai junta tell japan investor billion development plan go ahead
+0,german leftist uses nudity on facebook to fight back against ‚right-wing‚ news outlets exposing truth about muslim ‚refugees‚,german leftist us nudity facebook fight back rightwing news outlet exposing truth muslim refugee
+1,merkel deems migrant deal good for coalition talks but greens skeptical,merkel deems migrant deal good coalition talk green skeptical
+0,consequences of liberal tolerance: he had an isis flag hanging from his roof‚yet no one reported him? [video],consequence liberal tolerance isi flag hanging roofyet one reported video
+1,trump may visit dmz between north and south korea: yonhap,trump may visit dmz north south korea yonhap
+1,saudi sovereign fund to develop holy sites in mecca medina,saudi sovereign fund develop holy site mecca medina
+1,merkel warns hungary of financial consequences of defying eu on migrants,merkel warns hungary financial consequence defying eu migrant
+0,three swiss muslim group members charged with making al qaeda propaganda,three swiss muslim group member charged making al qaeda propaganda
+1,eu tells easterners to take in refugees,eu tell easterner take refugee
+0,gary johnson is a complete idiot‚.and here‚s why [video],gary johnson complete idiotand here video
+0,in the age of amazon,age amazon
+0,fire this woman! ranting nyu professor goes apesh*t on cops at protest: ‚f*ck you nypd!‚ [video],fire woman ranting nyu professor go apesht cop protest fck nypd video
+0,ben carson outwits dimwits on the view‚a must watch!,ben carson outwits dimwit viewa must watch
+0,redux 1963? the deep state vs donald trump,redux deep state v donald trump
+0,you‚re not in europe anymore: group of ‚rapefugees‚ expelled from norway are beaten by russian mob for harassing girls,youre europe anymore group rapefugees expelled norway beaten russian mob harassing girl
+1,turkey's erdogan says operation in syria's idlib largely completed,turkey erdogan say operation syria idlib largely completed
+0,breaking: anti-trump radicals caught discussing plans to shut down metro trains in dc during inauguration [video],breaking antitrump radical caught discussing plan shut metro train dc inauguration video
+1,more than a third of german voters undecided before election poll shows,third german voter undecided election poll show
+0,not kidding: democrats are calling for obama to be hillary‚s running mate‚but is that legal?,kidding democrat calling obama hillary running matebut legal
+1,russia's lavrov to tillerson: moscow readies lawsuits over seized property,russia lavrov tillerson moscow ready lawsuit seized property
+0,angry commentator threatens trump: ‚government‚s gonna kill this guy‚ [video],angry commentator threatens trump government gon na kill guy video
+0,kerry‚s lunacy: ‚us would be justified shooting down unarmed russian jets‚,kerrys lunacy u would justified shooting unarmed russian jet
+0,federal judge goes on rant about cops killing blacks‚.declares: ‚black lives matter!‚‚blames deaths of cops on cops,federal judge go rant cop killing blacksdeclares black life matterblames death cop cop
+0,the law of unintended consequences: how strong arm tactics by anti-capitalist left could destroy millions of american jobs,law unintended consequence strong arm tactic anticapitalist left could destroy million american job
+0,must trump supporter unleashes truth on fox pundits: ‚americans are tired of fighting other people for jobs!‚,must trump supporter unleashes truth fox pundit american tired fighting people job
+1,shout! poll: who do you trust with foreign policy?,shout poll trust foreign policy
+1,cambodia charges opposition leader with treason,cambodia charge opposition leader treason
+1,kenya police shoot dead 2 protesters amid opposition demonstrations,kenya police shoot dead protester amid opposition demonstration
+1,head games: technology with the potential to shape reality,head game technology potential shape reality
+0,muslim clock boy‚s lie exposed [video] expert proves boy who received invitation to white house and thousands in donations story was a hoax,muslim clock boy lie exposed video expert prof boy received invitation white house thousand donation story hoax
+0,why are van loads of illegals being moved and released away from the border?,van load illegals moved released away border
+0,new york man shocked to discover who was stealing his trump signs: ‚this is supposed to be the united states‚,new york man shocked discover stealing trump sign supposed united state
+1,three arrested in malaysia for suspected beer festival bomb plot,three arrested malaysia suspected beer festival bomb plot
+0,late night host goes low in anti-trump rant with ‚homophobic‚ slur [video],late night host go low antitrump rant homophobic slur video
+1,britain's may to press case with eu on security in tallinn,britain may press case eu security tallinn
+0,will vile leftists turn democrats away?‚watch angry leftists openly bully americans engaged in peaceful prayer [video],vile leftist turn democrat awaywatch angry leftist openly bully american engaged peaceful prayer video
+0,boiler room ep #81 ‚ halloween fireside book of suspense vol. 1,boiler room ep halloween fireside book suspense vol
+1,netanyahu lobbies world powers to stem iraqi kurd setbacks,netanyahu lobby world power stem iraqi kurd setback
+0,joke of the week: a marine,joke week marine
+0,watch newest addition to trump‚s nat security council explain to imus why she didn‚t defend her snarky liberal brother-in-law against on-air attack by bill o‚reilly [video],watch newest addition trump nat security council explain imu didnt defend snarky liberal brotherinlaw onair attack bill oreilly video
+1,xi propaganda kicks into overdrive ahead of china communist party congress,xi propaganda kick overdrive ahead china communist party congress
+1,amnesty international urges halt to afghan refugee returns,amnesty international urge halt afghan refugee return
+1,ireland welcomes home student who spent four years in an egyptian jail,ireland welcome home student spent four year egyptian jail
+1,spain's king felipe says committed to spanish unity amid catalan crisis,spain king felipe say committed spanish unity amid catalan crisis
+0,viral video: bernie sanders socialist gets shut down by judge judy,viral video bernie sander socialist get shut judge judy
+0,black boston cop taunted by black woman: ‚you stupid a** black bitch. you‚re suppose to be on our side‚,black boston cop taunted black woman stupid black bitch youre suppose side
+1,kremlin: u.s. lethal weapons supplies to ukraine won't promote stability,kremlin u lethal weapon supply ukraine wont promote stability
+0,wow! governor kasich just revealed how he did his part to make hillary clinton our next president,wow governor kasich revealed part make hillary clinton next president
+0,bravo! conservative actor tom selleck sets flag burner straight in this powerful video,bravo conservative actor tom selleck set flag burner straight powerful video
+1,hurricane maria skirts turks and caicos as puerto rico endures fresh flooding,hurricane maria skirt turk caicos puerto rico endures fresh flooding
+0,detroit‚s al sharpton wannabe attempts to bully naacp award winning artist,detroit al sharpton wannabe attempt bully naacp award winning artist
+0,ron paul: syria has been in chaos ever since obama said ‚assad must go‚,ron paul syria chaos ever since obama said assad must go
+1,eu's tusk notes brexit progress hopes for trade talks by december,eu tusk note brexit progress hope trade talk december
+1,u.s.-led coalition says 100 is fighters in raqqa surrendered in last 24 hours: spokesman,usled coalition say fighter raqqa surrendered last hour spokesman
+0,black judge finds white cop in freddie gray case not guilty of all charges‚protesters erupt [video],black judge find white cop freddie gray case guilty chargesprotesters erupt video
+1,islamic state claims deadly attack on court in libya's misrata,islamic state claim deadly attack court libya misrata
+1,death toll in collision between tunisian navy and migrant boat reaches 34,death toll collision tunisian navy migrant boat reach
+1,suicide car bomb kills at least 12 afghan police,suicide car bomb kill least afghan police
+0,best description ever of liberalism in one paragraph,best description ever liberalism one paragraph
+1,four yemeni soldiers killed by suspected al qaeda truck bombing,four yemeni soldier killed suspected al qaeda truck bombing
+0,fathers of sons murdered by illegal aliens have brutal father‚s day message for paul ryan,father son murdered illegal alien brutal father day message paul ryan
+0,black actress stacey dash destroy argument by hollywood race agitator and wife of will smith: ‚either we want to have segregation or integration‚,black actress stacey dash destroy argument hollywood race agitator wife smith either want segregation integration
+1,'safer than london!' north korea opens door to russian tourists,safer london north korea open door russian tourist
+0,paris nightmare: muslim man scales wall of apartment‚stabs jewish woman‚what he does next is unthinkable! [video],paris nightmare muslim man scale wall apartmentstabs jewish womanwhat next unthinkable video
+1,son of thailand's ex-pm thaksin charged with money-laundering,son thailand expm thaksin charged moneylaundering
+1,austria's likely next chancellor hopes to form govt. in 60 days: paper,austria likely next chancellor hope form govt day paper
+0,with prayer sacrifices pakistani muslims celebrate eid al-adha,prayer sacrifice pakistani muslim celebrate eid aladha
+1,u.s. commerce chief says expanded north korean sanctions show china's waning support: cnbc,u commerce chief say expanded north korean sanction show china waning support cnbc
+1,macri's coalition sweeps argentina's mid-term vote,macris coalition sweep argentina midterm vote
+0,why uneducated somali refugees who don‚t speak english are fleeing arizona for minnesota [video],uneducated somali refugee dont speak english fleeing arizona minnesota video
+1,state crackdown fuels independence push in anglophone cameroon,state crackdown fuel independence push anglophone cameroon
+0,facebook user arrested for ‚offensive‚ posts about syrian refugees: ‚social media abuse will not be tolerated‚,facebook user arrested offensive post syrian refugee social medium abuse tolerated
+0,episode #205 ‚ sunday wire: ‚dirty vegas‚ with jay dyer,episode sunday wire dirty vega jay dyer
+1,boston brakes? how to hack a new car with your iphone or android,boston brake hack new car iphone android
+0,was killer of female nypd officer,killer female nypd officer
+0,obamanation: watch black mob attack fair ride operator for the lamest reason ever,obamanation watch black mob attack fair ride operator lamest reason ever
+1,'fully committed' nato backs new u.s. approach on afghanistan,fully committed nato back new u approach afghanistan
+0,young man delivers powerful message to liberals: ‚put down your fists‚take off your masks‚if you do not change‚you‚re going to lose‚ [video],young man delivers powerful message liberal put fiststake masksif changeyoure going lose video
+1,kenyan police fire teargas at opposition protesters demanding election reforms,kenyan police fire teargas opposition protester demanding election reform
+0,outrage over bare chested gays comparing gay marriage victory to marines iwo jima flag raising,outrage bare chested gay comparing gay marriage victory marine iwo jima flag raising
+1,uk police alerted to suspect package in london's islington area,uk police alerted suspect package london islington area
+1,zambia emergency powers decree to end at midnight on wednesday,zambia emergency power decree end midnight wednesday
+0,oops! hypocrite hillary uses flint water crisis to prop up campaign‚ignores major 1992 clinton water pollution scandal,oops hypocrite hillary us flint water crisis prop campaignignores major clinton water pollution scandal
+0,breaking: [video] colorado baker who refused to make cakes with anti-gay message did not discriminate,breaking video colorado baker refused make cake antigay message discriminate
+1,police in catalonia hunt for hidden ballot boxes in bid to foil referendum,police catalonia hunt hidden ballot box bid foil referendum
+1,nigerian president likens myanmar crisis to bosnia rwanda genocides,nigerian president likens myanmar crisis bosnia rwanda genocide
+0,liberal ‚the view‚ hosts mock hillary‚s response to brussels terror attack‚admit trump was right [video],liberal view host mock hillary response brussels terror attackadmit trump right video
+0,angry muslims tell christians they will take over britain,angry muslim tell christian take britain
+1,half of filipinos don't believe police accounts of drugs war deaths: poll,half filipino dont believe police account drug war death poll
+0,religion of progressivism: meet obama‚s new transgender leader for faith-based neighborhood partnerships,religion progressivism meet obamas new transgender leader faithbased neighborhood partnership
+1,'not appropriate' envoy tells britain's boris over kipling poem in myanmar,appropriate envoy tell britain boris kipling poem myanmar
+1,turkish judge finds 42 soldiers guilty of trying to kill erdogan,turkish judge find soldier guilty trying kill erdogan
+1,at least 46 attacks in area of niger where u.s. troops killed: u.n.,least attack area niger u troop killed un
+1,trump to receive multiple options on iran nuclear deal: tillerson,trump receive multiple option iran nuclear deal tillerson
+1,buildings evacuated in moscow after bomb threats: ria,building evacuated moscow bomb threat ria
+0,liberal media ignores melania‚s visit to home for abused girls‚proving they really don‚t care much about actual women‚s issues after all,liberal medium ignores melanias visit home abused girlsproving really dont care much actual womens issue
+0,third-rate actor who called his 11-yr old daughter a ‚rude thoughtless pig‚ defends liberal pig ‚isis kathy‚ who attacked trump‚s 11-year old son,thirdrate actor called yr old daughter rude thoughtless pig defends liberal pig isi kathy attacked trump year old son
+0,the best way to clear soros‚ anti-trump rioters out of dc can be found on one piece of paper,best way clear soros antitrump rioter dc found one piece paper
+0,publix grocery chain directs all stores to block national enquirer magazines with trump on cover [video],publix grocery chain directs store block national enquirer magazine trump cover video
+1,catalan leader must drop independence by thursday: spain deputy pm,catalan leader must drop independence thursday spain deputy pm
+1,top russian and u.s. generals discuss syria bombing allegations: kommersant,top russian u general discus syria bombing allegation kommersant
+0,breaking #cnnleak‚james o‚keefe‚s new undercover recordings expose #cnnfakenews operatives: ‚i mean,breaking cnnleakjames okeefes new undercover recording expose cnnfakenews operative mean
+0,president trump makes huge announcement on obama‚s cuba policy: ‚we will not be silent in the face of communist oppression any longer‚ [video],president trump make huge announcement obamas cuba policy silent face communist oppression longer video
+0,guy who made millions selling ‚science‚ to kids suggests u.s. adopt policy to eliminate kids to save earth [video],guy made million selling science kid suggests u adopt policy eliminate kid save earth video
+1,supreme court has option to duck travel ban ruling,supreme court option duck travel ban ruling
+1,eleven treated after london museum incident - ambulance service,eleven treated london museum incident ambulance service
+1,tillerson consulted britain china france russia on iran,tillerson consulted britain china france russia iran
+0,trump mic drop moment from 60 minutes interview: ‚i‚m very good at this,trump mic drop moment minute interview im good
+0,watch judge order punk wearing ‚police lie‚ t-shirt to leave courtroom‚or face contempt charges,watch judge order punk wearing police lie tshirt leave courtroomor face contempt charge
+1,russia sanctions should be phased out if ukraine ceasefire holds: germany's gabriel,russia sanction phased ukraine ceasefire hold germany gabriel
+1,u.n. nuclear watchdog opens uranium bank in kazakhstan,un nuclear watchdog open uranium bank kazakhstan
+0,kathy griffin & hillary clinton are losers,kathy griffin hillary clinton loser
+0,dyer: ‚la times ‚fake news‚ article is an attack on independent media‚,dyer la time fake news article attack independent medium
+0,ha! you won‚t believe hillary‚s luxury ‚scooby‚ van!,ha wont believe hillary luxury scooby van
+0,savage anti-trump protesters knock out innocent man at portland airport: ‚that‚s right nazi boy!‚ [video],savage antitrump protester knock innocent man portland airport thats right nazi boy video
+1,iraq oil ministry warns oil companies against kurdistan contracts,iraq oil ministry warns oil company kurdistan contract
+0,breaking: texas cop stabbed 14 times by man who ‚had a desire to kill a police officer‚,breaking texas cop stabbed time man desire kill police officer
+1,britain says to pursue balanced post-brexit immigration policy,britain say pursue balanced postbrexit immigration policy
+1,early 2018 is crunch time for banks' brexit decisions: uk official,early crunch time bank brexit decision uk official
+0,obama signs star wars ii defense bill: hypocrisy of blaming trump for ‚arms race‚,obama sign star war ii defense bill hypocrisy blaming trump arm race
+1,u.s. ends temporary protected status for sudanese but extends it for south sudanese,u end temporary protected status sudanese extends south sudanese
+0,diamond and silk open up large can of whoop a$$ on maxine waters in painfully funny video: ‚when you come for donald trump,diamond silk open large whoop maxine water painfully funny video come donald trump
+1,cambodia's hun sen urges arrests of opposition 'rebels in the city',cambodia hun sen urge arrest opposition rebel city
+1,factbox: who's in? who's out? china's communist party central committee,factbox who who china communist party central committee
+1,australian senate rejects proposed visa citizenship curbs,australian senate reject proposed visa citizenship curb
+1,israel buoyed by trump tack against iran atom deal but sees long way to go,israel buoyed trump tack iran atom deal see long way go
+1,trump vs clinton 2016: mickey mouse vs cruella de vil,trump v clinton mickey mouse v cruella de vil
+0,patrick henningsen live with guest ray mcgovern ‚ podesta emails leaked,patrick henningsen live guest ray mcgovern podesta email leaked
+0,scary or silly? the feds are warning about what this halloween tradition will unleash,scary silly fed warning halloween tradition unleash
+1,thousands rally in malaysia to oust premier najib,thousand rally malaysia oust premier najib
+0,nbc busted making up embarrassing ‚gotcha‚ trump story in attempt to help hillary,nbc busted making embarrassing gotcha trump story attempt help hillary
+1,south korea confirms traces of radioactive gas from north korea's nuclear test,south korea confirms trace radioactive gas north korea nuclear test
+1,return of bangladesh opposition chief could herald more active politics,return bangladesh opposition chief could herald active politics
+0,say what? law firm who gave gitmo terrorists anti-american propaganda to host major fundraiser for hillary [video],say law firm gave gitmo terrorist antiamerican propaganda host major fundraiser hillary video
+1,russian riot police detain opposition protesters in st petersburg: reuters witness,russian riot police detain opposition protester st petersburg reuters witness
+1,wall street raises targets on netflix citing price increases,wall street raise target netflix citing price increase
+0,obama blames ‚right wing‚ talk radio,obama blame right wing talk radio
+1,hillary clinton warns britain on potential trade deal with trump,hillary clinton warns britain potential trade deal trump
+1,fbi opens investigation into south africa's guptas: ft,fbi open investigation south africa guptas ft
+1,factbox: what trump has said about the united nations,factbox trump said united nation
+0,scott baio files police report: physically attacked by wife of famous rock band member over support for trump‚screamed vulgarities in front of kids at elementary school function,scott baio file police report physically attacked wife famous rock band member support trumpscreamed vulgarity front kid elementary school function
+0,cnn‚s don lemon: is he an alcoholic or just a drunk?,cnns lemon alcoholic drunk
+1,nz pm says final election tally does not weaken his chances of forming a coalition government,nz pm say final election tally weaken chance forming coalition government
+1,white house on lockdown after ‚suspicious package‚ ‚ 1 person detained,white house lockdown suspicious package person detained
+0,russia tells sore loser obama to produce some proof [russian hacking of emails] or stop talking about it!‚trump tweets brilliant response,russia tell sore loser obama produce proof russian hacking email stop talking ittrump tweet brilliant response
+1,iran names nuclear negotiating team member jailed for spying,iran name nuclear negotiating team member jailed spying
+0,donald trump‚s trillion dollar bombshell,donald trump trillion dollar bombshell
+0,disaster capitalists: how bill and hillary‚s ‚clinton foundation‚ used relief donations like an atm,disaster capitalist bill hillary clinton foundation used relief donation like atm
+0,brilliant and true: this is all you need to know about the failure of baltimore‚s leaders,brilliant true need know failure baltimore leader
+1,militants attack kabul airport during mattis visit u.s. strike hits civilians,militant attack kabul airport mattis visit u strike hit civilian
+1,britain's boris johnson tells eu: put a tiger in the tank of brexit talks,britain boris johnson tell eu put tiger tank brexit talk
+0,trump supporter fights back: man wearing ‚make america great again‚ hat sues ‚the happiest hour‚ bar for refusing to serve him,trump supporter fight back man wearing make america great hat sue happiest hour bar refusing serve
+0,obama commutes 61 prisoners‚ sentences‚here‚s the list of mostly drug dealers,obama commute prisoner sentencesheres list mostly drug dealer
+0,cia operative admits deep state globalist control ‚ the game of nations,cia operative admits deep state globalist control game nation
+1,uk's may says foreign minister johnson 'doing good work',uk may say foreign minister johnson good work
+0,the ‚peaceful‚ transition of power continues as domestic terrorists light limo in d.c. on fire [video],peaceful transition power continues domestic terrorist light limo dc fire video
+1,mexico-u.s. trade would survive any nafta rupture: mexico foreign minister,mexicous trade would survive nafta rupture mexico foreign minister
+1,catalan bank depositors flock to other regions to open new accounts,catalan bank depositor flock region open new account
+1,venezuela has problems fulfilling obligations on debt: russia,venezuela problem fulfilling obligation debt russia
+1,venezuela opposition blames maduro for detained activist's death,venezuela opposition blame maduro detained activist death
+1,u.s. weighs calling myanmar's rohingya crisis 'ethnic cleansing',u weighs calling myanmar rohingya crisis ethnic cleansing
+0,really fake news: new york times finally retracts its ‚17 intelligence agencies‚ claim on russia hacking us elections,really fake news new york time finally retracts intelligence agency claim russia hacking u election
+1,newsmaker: malaysian teacher seen as new 'emir' of pro-islamic state militants,newsmaker malaysian teacher seen new emir proislamic state militant
+1,fearing far-right surge merkel tells germans to vote on sunday,fearing farright surge merkel tell german vote sunday
+0,fake news week: mainstream media ‚ all the fake news that‚s fit to print,fake news week mainstream medium fake news thats fit print
+1,romania names new minister to modernize military,romania name new minister modernize military
+0,navy seal tells katy perry: ‚go to h*ll‚ [video],navy seal tell katy perry go hll video
+1,theresa may should stay on as british pm interior minister says,theresa may stay british pm interior minister say
+1,eu summit was positive but nothing new on money: senior eu official,eu summit positive nothing new money senior eu official
+0,college campus bans chalk,college campus ban chalk
+0,why grown man was arrested in democrats new ‚safe space‚ for pedophiles is disgusting‚are you paying attention target?,grown man arrested democrat new safe space pedophile disgustingare paying attention target
+0,boiler room #90 ‚ downtown brown and the loss & curse of celebrity,boiler room downtown brown loss curse celebrity
+1,myanmar finds more bodies in mass grave; u.n. seeks rapid aid increase,myanmar find body mass grave un seek rapid aid increase
+0,u.s. forces apologize for 'highly offensive' afghan propaganda leaflet,u force apologize highly offensive afghan propaganda leaflet
+1,downfall of ex-samsung strategy chief leaves 'salarymen' disillusioned,downfall exsamsung strategy chief leaf salarymen disillusioned
+0,shameful! air force veteran ousted from colleague‚s retirement ceremony for reading dedication to u.s. flag?! [video],shameful air force veteran ousted colleague retirement ceremony reading dedication u flag video
+1,a 'goddess party secretary' ponders her future in fast-moving china,goddess party secretary ponders future fastmoving china
+0,hillary set to destroy lives of proud,hillary set destroy life proud
+1,militants attack egypt police dozens killed: sources,militant attack egypt police dozen killed source
+0,boiler room ep #110 ‚ a deeper game: masters of chaos strike again,boiler room ep deeper game master chaos strike
+0,does cnn really have a ‚cosmopolitan bias‚?,cnn really cosmopolitan bias
+1,irma seen costing more than 1 billion euros in saint martin saint barth,irma seen costing billion euro saint martin saint barth
+1,indian and chinese defense forces must maintain cooperation: indian foreign secretary,indian chinese defense force must maintain cooperation indian foreign secretary
+1,somalia hands over onlf rebel leader to ethiopia: group,somalia hand onlf rebel leader ethiopia group
+1,french president macron to make eu reforms proposals on tuesday,french president macron make eu reform proposal tuesday
+1,final tally in new zealand's inconclusive election to be released,final tally new zealand inconclusive election released
+0,wow! world‚s top physicist and democrat: obama backs ‚wrong side‚ in war on ‚climate change‚,wow world top physicist democrat obama back wrong side war climate change
+1,jay dyer on tragedy & hope ‚ part 4: rothschilds,jay dyer tragedy hope part rothschild
+1,lebanon passes disputed tax hikes to fund public sector pay rise,lebanon pass disputed tax hike fund public sector pay rise
+1,suicide bomber attacks nato convoy in afghanistan some wounded,suicide bomber attack nato convoy afghanistan wounded
+1,henningsen: ‚trump challenging sacred cows of us foreign policy,henningsen trump challenging sacred cow u foreign policy
+0,war and the prize: how some nobel laureates turn away from peace,war prize nobel laureate turn away peace
+0,nordstrom cancels ivanka trump brand after liberal complaints #boycottnordstrom,nordstrom cancel ivanka trump brand liberal complaint boycottnordstrom
+1,xi urges brics grouping to push for more 'just' international order,xi urge brics grouping push international order
+0,michelle obama slams america at iranian party: ‚we‚re hearing so much disturbing and hateful rhetoric‚,michelle obama slam america iranian party hearing much disturbing hateful rhetoric
+1,spain's creditors size up cost of catalan independence bid,spain creditor size cost catalan independence bid
+0,black lives matter bernie sanders supporters spit on u.s. flag in front of vets at trump rally,black life matter bernie sander supporter spit u flag front vet trump rally
+1,italy's renzi pledges to hike budget deficit if he wins election,italy renzi pledge hike budget deficit win election
+1,russian warships dock in philippines as manila cultivates new ties,russian warship dock philippine manila cultivates new tie
+0,beggin‚ megyn kelly‚s new book ripped to shreads in amazon reviews‚karma!,beggin megyn kelly new book ripped shreads amazon reviewskarma
+0,ohio st univ terrorist abdul razak ali artan played victim in recent interview,ohio st univ terrorist abdul razak ali artan played victim recent interview
+0,priceless! sen chuck schumer‚s childish stunt to bash senate healthcare bill backfires [video],priceless sen chuck schumers childish stunt bash senate healthcare bill backfire video
+0,breaking! #demexit bernie sanders leaves democrat party!,breaking demexit bernie sander leaf democrat party
+0,cnn‚s anderson ‚pooper‚ responds after outcry over ‚crude‚ swipe at trump supporter [video],cnns anderson pooper responds outcry crude swipe trump supporter video
+0,hurricane irma to move over portions of virgin islands soon: nhc,hurricane irma move portion virgin island soon nhc
+1,china's xi says will support interpol raising its profile,china xi say support interpol raising profile
+0,illegal aliens set up huge tent city‚you won‚t believe where it is! [video],illegal alien set huge tent cityyou wont believe video
+1,brazil army deploys in rio slum as drug-related violence worsens,brazil army deploys rio slum drugrelated violence worsens
+0,"democrat heads set to explode: feds waive environmental regulations to begin construction on 15-mile border wall at site of 31000 illegal alien apprehensions""",democrat head set explode fed waive environmental regulation begin construction mile border wall site illegal alien apprehension
+0,why is obama disarming cops in america at same time terror threat is being raised?,obama disarming cop america time terror threat raised
+1,exclusive: bangladesh pm says expects no help from trump on refugees fleeing myanmar,exclusive bangladesh pm say expects help trump refugee fleeing myanmar
+1,malaysia in talks with u.s. firm ocean infinity to resume mh370 search,malaysia talk u firm ocean infinity resume mh search
+1,assange: ‚trump in conflict with cia over syria policy‚,assange trump conflict cia syria policy
+1,unhcr alarmed at violence against rohingyas in sri lanka,unhcr alarmed violence rohingyas sri lanka
+0,russian hackers? no,russian hacker
+0,hillary panders to domestic terrorists: woman whose husband demanded rioters ‚burn down‚ ferguson,hillary pander domestic terrorist woman whose husband demanded rioter burn ferguson
+1,u.n. mulls u.s. push for north korea oil embargo textile export ban,un mull u push north korea oil embargo textile export ban
+0,state‚s attorney lied: baltimore police had probable cause due to a warrant for gray‚s arrest,state attorney lied baltimore police probable cause due warrant gray arrest
+0,fired! #nevertrumper,fired nevertrumper
+1,fears of dam collapse add to puerto rico's misery after hurricane,fear dam collapse add puerto rico misery hurricane
+1,uk not prepared to pay for eu single market access during transition: government source,uk prepared pay eu single market access transition government source
+1,spain calls catalan mayors for questioning on independence vote,spain call catalan mayor questioning independence vote
+0,the jack blood show: ‚from may day riots to globalism‚ with 21wire guest shawn helton,jack blood show may day riot globalism wire guest shawn helton
+1,union leader shot dead near south african lonmin mine second death in two weeks,union leader shot dead near south african lonmin mine second death two week
+0,with 15 days remaining in office‚obama suddenly takes an interest in chicago crime‚discusses commuting crooked politician rod blagojevich [video],day remaining officeobama suddenly take interest chicago crimediscusses commuting crooked politician rod blagojevich video
+0,us media hyped ‚active shooter‚ drill at andrews base as real event,u medium hyped active shooter drill andrew base real event
+1,rescue ship says libyan coast guard shot at and boarded it seeking migrants,rescue ship say libyan coast guard shot boarded seeking migrant
+0,today: list of u.s. cities where ‚day of rage‚ is reportedly planned‚scott air force base posts warning,today list u city day rage reportedly plannedscott air force base post warning
+0,racist dallas cop murderer id‚d: ‚he wanted to kill white officers‚he expressed killing white people‚,racist dallas cop murderer idd wanted kill white officershe expressed killing white people
+1,no visas bad jobs: venezuelan emigrants reluctantly return home,visa bad job venezuelan emigrant reluctantly return home
+1,is democratic party attempting a ‚soft coup‚? efforts underway to hijack electoral college vote‚,democratic party attempting soft coup effort underway hijack electoral college vote
+1,tv host buys and forgives $15m worth of u.s. medical debt,tv host buy forgives worth u medical debt
+1,sexism or compliment? german politician stokes debate,sexism compliment german politician stokes debate
+1,asked to explain 'calm before the storm' remark trump talks north korea,asked explain calm storm remark trump talk north korea
+0,ca: state legislators want traffic fines to be tied to income‚because of ‚racism‚,ca state legislator want traffic fine tied incomebecause racism
+0,flashback: obama mocks trump‚s promise to save factory jobs: ‚your jobs aren‚t coming back‚ [video],flashback obama mock trump promise save factory job job arent coming back video
+1,czechs pin hopes on billionaire babis to fix their country,czech pin hope billionaire babis fix country
+1,polls open as slovenian president runs for his second mandate,poll open slovenian president run second mandate
+0,neocon nightmare: trump wants to ‚get along with foreign countries‚,neocon nightmare trump want get along foreign country
+0,grandstanding dem senator scolded by intel chair for interrupting deputy ag rosenstein [video],grandstanding dem senator scolded intel chair interrupting deputy ag rosenstein video
+1,iraqi pm rebuffs u.s. decree that ‚foreign shia militias‚ should leave country,iraqi pm rebuff u decree foreign shia militia leave country
+0,crazy video of muslim jihadess being dragged up hill in burqa after police arrest her for plot to blow up train,crazy video muslim jihadess dragged hill burqa police arrest plot blow train
+0,sweden is screwed: ‚women who don‚t wear headscarf are asking to be raped‚,sweden screwed woman dont wear headscarf asking raped
+0,shaquille o‚neal: ‚the earth is flat. yes,shaquille oneal earth flat yes
+0,msnbc host compares getting close to trump to ‚hugging a suicide bomber‚ [video],msnbc host compare getting close trump hugging suicide bomber video
+1,germany calls may's brexit speech 'disappointing',germany call may brexit speech disappointing
+1,hillary clinton: ‚israel first‚ (and no peace for middle east),hillary clinton israel first peace middle east
+0,video shows scary truth about what decades of democrat ruled #detroit looks like today‚while dem mayor tells glowing story of ‚success‚,video show scary truth decade democrat ruled detroit look like todaywhile dem mayor tell glowing story success
+1,over 460 people injured in catalonia during referendum: barcelona mayor,people injured catalonia referendum barcelona mayor
+1,france's macron backs spain's constitutional unity in call to pm rajoy,france macron back spain constitutional unity call pm rajoy
+1,more than half of schools in boko haram's region are shut unicef says,half school boko harams region shut unicef say
+1,u.s. poised to lift sanctions on sudan: official,u poised lift sanction sudan official
+1,feeling left out under threat east germans rebel with far-right vote,feeling left threat east german rebel farright vote
+0,boom! john sununu: ‚bothers me that mueller is hiring ‚blatantly biased lawyers‚ [video],boom john sununu bother mueller hiring blatantly biased lawyer video
+1,exclusive: from russia with fuel - north korean ships may be undermining sanctions,exclusive russia fuel north korean ship may undermining sanction
+1,vatican treasurer to face march court hearing in australia over historical sex charges,vatican treasurer face march court hearing australia historical sex charge
+1,man with sword injures police outside uk queen's palace,man sword injures police outside uk queen palace
+1,austria puts the squeeze on refugees with benefit cuts,austria put squeeze refugee benefit cut
+0,breaking: biden won‚t run‚is it because biden and obama can‚t risk repercussions of exposing hillary? [video],breaking biden wont runis biden obama cant risk repercussion exposing hillary video
+0,ny teacher gives assignment to high school kids: come up with argument in favor of mass killings of jews,ny teacher give assignment high school kid come argument favor mass killing jew
+1,israel says attacks syrian unit that fired at its planes over lebanon,israel say attack syrian unit fired plane lebanon
+1,spanish court grants u.s. extradition for russian hacking suspect,spanish court grant u extradition russian hacking suspect
+0,dems booed god at the last convention‚this time they booed during the opening prayer‚you won‚t believe why [video],dems booed god last conventionthis time booed opening prayeryou wont believe video
+0,new evidence shows foul play,new evidence show foul play
+1,flames raced along train at west london station: eye witness,flame raced along train west london station eye witness
+0,our crybaby community organizer makes a fool of himself in germany‚thanks to conservatives in social media [video],crybaby community organizer make fool germanythanks conservative social medium video
+1,thirteen chinese fishermen die as boat collides with oil tanker in japan waters: state media,thirteen chinese fisherman die boat collides oil tanker japan water state medium
+1,sunday screening: national security alert: the pentagon attack (2009),sunday screening national security alert pentagon attack
+1,former friend malaysia halts all imports from north korea data shows,former friend malaysia halt import north korea data show
+1,no angst over turkey's air defense deal with russia says nato chief,angst turkey air defense deal russia say nato chief
+1,russian u.n. envoy: u.s. aim for monday vote on north korea sanctions is premature,russian un envoy u aim monday vote north korea sanction premature
+1,bush-hinckley nexus: reagan gunman released,bushhinckley nexus reagan gunman released
+0,fbi director comey‚s ‚leaked‚ memo explains why he‚s reopening the clinton email case,fbi director comeys leaked memo explains he reopening clinton email case
+1,french union rank and file urge their bosses to put pressure on macron,french union rank file urge boss put pressure macron
+1,south africa's ramaphosa steps up criticism ahead of anc leadership vote,south africa ramaphosa step criticism ahead anc leadership vote
+0,whoa! 8 actual quotes from hillary that prove she‚s unfit to clean the bathrooms in our white house [video],whoa actual quote hillary prove shes unfit clean bathroom white house video
+0,holocaust survivors rock berlin's brandenburg gate with song of hope,holocaust survivor rock berlin brandenburg gate song hope
+1,allies press catalan leader to declare full independence ignore madrid deadlines,ally press catalan leader declare full independence ignore madrid deadline
+1,forsaken sultan: erdogan isolated ahead trump meeting in washington,forsaken sultan erdogan isolated ahead trump meeting washington
+0,van jones and cnn‚s don lemon on obama‚s ‚i‚m fearless‚ racist speech at charleston pastor‚s funeral: ‚once you‚re fearless,van jones cnns lemon obamas im fearless racist speech charleston pastor funeral youre fearless
+0,gitmo prisoner obama released in 2012 identified as al-qaeda leader in yemen,gitmo prisoner obama released identified alqaeda leader yemen
+0,feel the bern‚.how hillary walked away from nh with more super delegates than sanders,feel bernhow hillary walked away nh super delegate sander
+0,hollywood lefty leo dicaprio goes off the rails on climate change claims [video],hollywood lefty leo dicaprio go rail climate change claim video
+0,armed black panthers march in milwaukee: ‚free us or you die,armed black panther march milwaukee free u die
+1,u.s. charges former turkish minister with iran sanctions evasion,u charge former turkish minister iran sanction evasion
+1,nato chief says europe has interest in helping afghanistan,nato chief say europe interest helping afghanistan
+0,nothing new: ‚fake‚ & weaponized news has long haunted our war-weary world,nothing new fake weaponized news long haunted warweary world
+1,unacknowledged secret access projects: the black budget & military industrial complex,unacknowledged secret access project black budget military industrial complex
+1,u.s. conducts missile defense test off hawaii coast,u conduct missile defense test hawaii coast
+0,say what? amazon tells customer they were forced by federal government to remove confederate flag from website,say amazon tell customer forced federal government remove confederate flag website
+0,obama‚s ‚clock boy‚ comes back to texas‚after spending 9 months doing this‚,obamas clock boy come back texasafter spending month
+1,henningsen on u.s. vs north korea: ‚wouldn‚t you want a nuclear deterrent?‚,henningsen u v north korea wouldnt want nuclear deterrent
+1,bundy ranch ‚standoff‚ defendants prepare for trial in nevada,bundy ranch standoff defendant prepare trial nevada
+1,norway government to rule in minority after centrists abandon talks,norway government rule minority centrist abandon talk
+1,new zealand goes to polls on saturday ending tight volatile race,new zealand go poll saturday ending tight volatile race
+0,trump response to leftist threats: ‚get off my lawn‚,trump response leftist threat get lawn
+1,islamic justice: britain is stunned when they discover how many secret sharia courts are operating in uk,islamic justice britain stunned discover many secret sharia court operating uk
+0,watch how anti-american actress,watch antiamerican actress
+1,earthquake of magnitude 6.1 strikes off southern japan: usgs,earthquake magnitude strike southern japan usgs
+0,wow! dem strategist bob beckel says wikileaks founder should be assassinated:‚i‚m not for the death penalty,wow dem strategist bob beckel say wikileaks founder assassinatedim death penalty
+1,kremlin says s-400 missile talks with saudi arabia on track,kremlin say missile talk saudi arabia track
+1,philippines arrests militant widow for trying to recruit fighters,philippine arrest militant widow trying recruit fighter
+1,the final control: tpp,final control tpp
+1,joy mixed with caution in gaza after palestinian unity deal,joy mixed caution gaza palestinian unity deal
+0,boiler room ep #114 ‚ psychos in the compromised media,boiler room ep psycho compromised medium
+0,liberal hack katie couric says fake news is ‚tearing [america] apart‚‚doesn‚t mention $12 million dollar lawsuit against her for producing edited story to push gun control [video],liberal hack katie couric say fake news tearing america apartdoesnt mention million dollar lawsuit producing edited story push gun control video
+0,nba threatens nc‚let men share bathrooms with your daughters or we‚ll cancel all-star game,nba threatens nclet men share bathroom daughter well cancel allstar game
+0,boom! gop makes blistering video using fbi director‚s comments side by side with hillary‚s lies,boom gop make blistering video using fbi director comment side side hillary lie
+0,fake news! rigged nbc/wsj poll claims trump hits ‚historic lows‚‚100% false!,fake news rigged nbcwsj poll claim trump hit historic low false
+1,vatican upbeat on possibility of pope francis visiting russia,vatican upbeat possibility pope francis visiting russia
+1,google is the engine of censorship,google engine censorship
+0,wow! barbara bush will be keynote speaker for baby-killing planned parenthood fundraiser,wow barbara bush keynote speaker babykilling planned parenthood fundraiser
+1,turkey threatens sanctions over kurdish independence vote,turkey threatens sanction kurdish independence vote
+0,tonight‚s first presidential debate: what time? where to watch‚and more inside scoop,tonight first presidential debate time watchand inside scoop
+1,putin to meet erdogan in ankara on sept 28: kremlin,putin meet erdogan ankara sept kremlin
+1,kenya president: elections will go ahead despite opposition leader's withdrawal,kenya president election go ahead despite opposition leader withdrawal
+0,brainwashed children mock president trump in disturbing washington post video,brainwashed child mock president trump disturbing washington post video
+0,wow! tucker and jesse destroy the liberal kooks protesting trump [video],wow tucker jesse destroy liberal kook protesting trump video
+0,austria's freedom party suspends member over nazi allegations,austria freedom party suspends member nazi allegation
+1,lebanon identifies soldiers killed in islamic state captivity,lebanon identifies soldier killed islamic state captivity
+1,arrested u.s. consulate worker in turkey meets lawyer,arrested u consulate worker turkey meet lawyer
+0,boiler room ep #68 ‚ 4 non-binary blondes & social justice triggly convulsions,boiler room ep nonbinary blonde social justice triggly convulsion
+0,beyonce performs graphic anti-cop song‚dancers ‚shot‚ one by one on stage [video],beyonce performs graphic anticop songdancers shot one one stage video
+0,why has this man not been arrested for terrorism? black muslim leader,man arrested terrorism black muslim leader
+0,woman introducing hillary refuses to say ‚one nation under god‚‚hillary laughs [video],woman introducing hillary refuse say one nation godhillary laugh video
+0,the problem with illegal immigration‚explained as if you were 5-years-old,problem illegal immigrationexplained yearsold
+1,eu leaders want clarity on citizens brexit financial terms and ireland,eu leader want clarity citizen brexit financial term ireland
+0,oops! black security guard won‚t allow white dude wearing black lives matter t-shirt into hillary event [video],oops black security guard wont allow white dude wearing black life matter tshirt hillary event video
+0,fake news! maxine waters and joy reid make outrageous claims against president trump ‚will make sure poor people aren‚t getting too much from government‚,fake news maxine water joy reid make outrageous claim president trump make sure poor people arent getting much government
+0,doj and fbi are ‚super pissed off‚ at troubling pattern of lawless obama covering for hillary,doj fbi super pissed troubling pattern lawless obama covering hillary
+1,israeli leader in argentina lauds effort to solve 1994 jewish center bombing,israeli leader argentina lauds effort solve jewish center bombing
+1,iraq parliament votes to halt transactions with kurdistan: state tv,iraq parliament vote halt transaction kurdistan state tv
+0,female sailor faces discipline by us navy for posting video of herself sitting in protest of national anthem‚because‚‚it‚s racist‚,female sailor face discipline u navy posting video sitting protest national anthembecauseits racist
+0,mystery surrounds funding for take down of historic confederate monuments‚new orleans mayor refuses to tell,mystery surround funding take historic confederate monumentsnew orleans mayor refuse tell
+1,clashes in rome as police evict refugee squatters from square,clash rome police evict refugee squatter square
+1,'gates of hell': iraqi army says fighting near tal afar worse than mosul,gate hell iraqi army say fighting near tal afar worse mosul
+1,south african opposition to lay criminal complaint against mckinsey,south african opposition lay criminal complaint mckinsey
+1,air strikes kill 69 in syrian east since sunday: observatory,air strike kill syrian east since sunday observatory
+1,young german conservatives call for change after election losses,young german conservative call change election loss
+0,hypocrisy on steroids: check out hateful trump bullies in anti- bullying ad for kids [video],hypocrisy steroid check hateful trump bully anti bullying ad kid video
+1,philippine congress agrees to restore rights commission budget from $20,philippine congress agrees restore right commission budget
+1,islamic state torches oil wells in northern iraq: officials,islamic state torch oil well northern iraq official
+1,spain high court jails two catalan separatist leaders pending investigation,spain high court jail two catalan separatist leader pending investigation
+0,america is hammering target: #boycotttarget petition swells to over 1 million signatures‚company suffers insane loss in stock market,america hammering target boycotttarget petition swell million signaturescompany suffers insane loss stock market
+1,u.s. to suspend immigration enforcement in areas hit by hurricane irma,u suspend immigration enforcement area hit hurricane irma
+1,'a long way to go' in german coalition talks liberal fdp says,long way go german coalition talk liberal fdp say
+0,how mexico could actually benefit from a trump presidency,mexico could actually benefit trump presidency
+1,uk foreign secretary johnson to hold talks with u.s.' tillerson in london,uk foreign secretary johnson hold talk u tillerson london
+1,referendum likely on dutch 'tapping' law,referendum likely dutch tapping law
+1,migrant deaths in the sahara likely twice mediterranean toll: u.n.,migrant death sahara likely twice mediterranean toll un
+1,entitled ‚refugees‚ taken to flats in german town‚refused to get off bus‚said they were promised a house,entitled refugee taken flat german townrefused get bussaid promised house
+0,hollywood witchcraft: the dark side revealed in the witch (2016),hollywood witchcraft dark side revealed witch
+1,iran says warns off u.s. u2 spy plane drone,iran say warns u u spy plane drone
+1,panama ex-president facing political spying charges should be extradited: u.s. judge,panama expresident facing political spying charge extradited u judge
+1,merkel and the refugees: how german leader emerged from a political abyss,merkel refugee german leader emerged political abyss
+1,colombia halts cano-limon pipeline after rebel attack: sources,colombia halt canolimon pipeline rebel attack source
+1,brazil election campaign fund not big enough judge says,brazil election campaign fund big enough judge say
+0,not news: [graphic video] michigan woman runs over rival with car following street brawl,news graphic video michigan woman run rival car following street brawl
+1,canadian sikh politician wins race to lead federal new democrats,canadian sikh politician win race lead federal new democrat
+1,eu's juncker says eu will reach a fair brexit deal with britain,eu juncker say eu reach fair brexit deal britain
+1,putin says russia will respond in kind if u.s. quits missile treaty,putin say russia respond kind u quits missile treaty
+0,black woman in charleston warns ‚there‚s gonna be a race war against ‚cracka‚s'‚,black woman charleston warns there gon na race war crackas
+1,rich tycoon takes on iraqi kurdish leaders over independence,rich tycoon take iraqi kurdish leader independence
+0,boycott the media! you know it‚s bad when msnbc anchor calls out media bias on trump‚‚deplorable‚,boycott medium know bad msnbc anchor call medium bias trumpdeplorable
+1,trump aide greenblatt returning to israel for peace talks: official,trump aide greenblatt returning israel peace talk official
+1,china issues guidelines to curb money laundering terrorism financing and tax evasion,china issue guideline curb money laundering terrorism financing tax evasion
+1,u.n. aims to open libyan transit center early next year - senior official,un aim open libyan transit center early next year senior official
+0,watch tucker carlson face off with new york times editor who claims ‚high journalistic standards‚ at the liberal rag [video],watch tucker carlson face new york time editor claim high journalistic standard liberal rag video
+1,eu leaders want to 'responsibly' cut turkey pre-accession aid: merkel,eu leader want responsibly cut turkey preaccession aid merkel
+1,china says will protect sovereignty from any conflict on korean peninsula,china say protect sovereignty conflict korean peninsula
+0,all hell is about to break loose between european vigilante group ‚soldiers of odin‚ and isis inspired ‚soldiers of allah‚,hell break loose european vigilante group soldier odin isi inspired soldier allah
+1,malaysian police say they foiled attack on sea games closing ceremony,malaysian police say foiled attack sea game closing ceremony
+0,if your biological plumbing doesn‚t match sign on door you‚ll have to use another bathroom if this bill passes,biological plumbing doesnt match sign door youll use another bathroom bill pass
+0,hollywood libs raise big money for #crookedhillary‚poor la flood victims ignored,hollywood libs raise big money crookedhillarypoor la flood victim ignored
+1,iraq's kirkuk province to vote in kurdish independence referendum,iraq kirkuk province vote kurdish independence referendum
+1,iran says jailed u.s. student dual nationals lose spying appeal,iran say jailed u student dual national lose spying appeal
+1,gambian ministry says up to togo to resolve crisis,gambian ministry say togo resolve crisis
+0,john mccain and the cancer of conflict,john mccain cancer conflict
+0,three resignations at cnn after botched trump-russia story‚more to come?,three resignation cnn botched trumprussia storymore come
+0,administrators face backlash after florida middle school organizes segregated field trip for blacks only,administrator face backlash florida middle school organizes segregated field trip black
+1,cuba urges u.s. not to politicize allegations of harmed diplomats,cuba urge u politicize allegation harmed diplomat
+0,winning ‚draw mohammed‚ picture being sold on e-bay‚with 4 days left to go,winning draw mohammed picture sold ebaywith day left go
+1,three missing after japan military helicopter loses contact over sea of japan,three missing japan military helicopter loses contact sea japan
+0,politico downgrades america: declares germany‚s ‚open-borders‚ angela merkel ‚leader of the free world‚ in anti-american headline,politico downgrade america declares germany openborders angela merkel leader free world antiamerican headline
+1,china party spokesman says anti-graft fight 'always on the road',china party spokesman say antigraft fight always road
+1,putin critic navalny detained by police before pre-election rally,putin critic navalny detained police preelection rally
+1,trump to visit florida on thursday in wake of hurricane: white house,trump visit florida thursday wake hurricane white house
+1,german minister threatens action against eu states over refugees,german minister threatens action eu state refugee
+0,black radio host: democrats have ‚owned‚ blacks since the ‚civil rights act‚‚how trump will be ‚the white savior to black america‚,black radio host democrat owned black since civil right acthow trump white savior black america
+1,saudi-led force admits strike in yemen's capital hit civilians,saudiled force admits strike yemen capital hit civilian
+1,vietnam finds misconduct in city that will host apec summit,vietnam find misconduct city host apec summit
+0,lol! golden state warriors win nba title‚former ‚sports network‚ espn obsesses over whether or not they‚ll visit white house [video],lol golden state warrior win nba titleformer sport network espn obsesses whether theyll visit white house video
+1,taliban shut down clinics in southern afghan province official says,taliban shut clinic southern afghan province official say
+0,was michelle obama in on beyonce‚s cop-hating super bowl performance? [video],michelle obama beyonces cophating super bowl performance video
+1,germany's merkel says 'urgently need' more sanctions versus north korea,germany merkel say urgently need sanction versus north korea
+0,mi election recount nightmare: ‚write-in‚ votes for bernie in detroit were being counted as votes for hillary‚and more,mi election recount nightmare writein vote bernie detroit counted vote hillaryand
+0,ouch! new emails show hillary didn‚t want to fly in same plane as michelle obama,ouch new email show hillary didnt want fly plane michelle obama
+0,liberal heads explode when piers morgan points out phony ‚racist‚ charges against trump vs. muhammad ali‚s actual racist history [video],liberal head explode pier morgan point phony racist charge trump v muhammad ali actual racist history video
+1,thousands protest in barcelona against catalan independence,thousand protest barcelona catalan independence
+0,episode #159 ‚ sunday wire: ‚tick-tock usa‚ with guests dr marcus papadopoulos,episode sunday wire ticktock usa guest dr marcus papadopoulos
+1,in german rustbelt merkel challenger's social justice pitch falls flat,german rustbelt merkel challenger social justice pitch fall flat
+1,china calls on all sides to avoid provocations on the korean peninsula,china call side avoid provocation korean peninsula
+1,china pledges new funding for brics as group opposes protectionism,china pledge new funding brics group opposes protectionism
+0,wow! loose cannon hillary leaked major nuclear secret to world during final debate [video],wow loose cannon hillary leaked major nuclear secret world final debate video
+0,unreal! group of six-year old thug kids curse and attack subway riders [video],unreal group sixyear old thug kid curse attack subway rider video
+0,hillary clinton rape enabler: ‚what kind of monster does this?‚ [video],hillary clinton rape enabler kind monster video
+1,bomb blast in southeast turkey kills four soldiers wounds four: governor,bomb blast southeast turkey kill four soldier wound four governor
+0,france: refugee pays another refugee to rape worker as pay back for this,france refugee pay another refugee rape worker pay back
+0,your tax dollars provide this asst professor a captive audience required to listen this: ‚religious right worships an ‚a**hole‚ god and ‚white supremacist jesus‚,tax dollar provide asst professor captive audience required listen religious right worship ahole god white supremacist jesus
+0,love at first leak! former ‚baywatch‚ star pamela anderson becomes regular visitor of wikileaks founder julian assange: ‚i think he‚s quite sexy‚,love first leak former baywatch star pamela anderson becomes regular visitor wikileaks founder julian assange think he quite sexy
+0,gingrich: trump will repeal 60-70% of obama‚s executive orders,gingrich trump repeal obamas executive order
+1,bolivians protest morales' new bid to extend term limits,bolivian protest morale new bid extend term limit
+0,breaking: violent hillary thugs beat man holding ‚bill clinton is a rapist‚ sign at hillary rally [video],breaking violent hillary thug beat man holding bill clinton rapist sign hillary rally video
+1,uk's may to meet bill clinton to discuss northern ireland crisis,uk may meet bill clinton discus northern ireland crisis
+1,brazil's psd party floats meirelles' 2018 presidential bid,brazil psd party float meirelles presidential bid
+0,flashback! bill clinton: ‚i did not have sexual relations with that woman‚ [video],flashback bill clinton sexual relation woman video
+1,czech foreign minister lightly injured in car accident: ministry,czech foreign minister lightly injured car accident ministry
+0,austria's conservatives want schools to make 'sufficient' german compulsory,austria conservative want school make sufficient german compulsory
+0,trump puts illegal aliens,trump put illegal alien
+1,japan's pm abe considers snap election as early as october: sources,japan pm abe considers snap election early october source
+1,refugees' health problems in greece mostly unmet: medical charity,refugee health problem greece mostly unmet medical charity
+1,tillerson to north korea: ‚we are not your enemy‚ ‚ us seeks dialogue,tillerson north korea enemy u seek dialogue
+0,boiler room ep #125 ‚ live from the swamp train with funksoul,boiler room ep live swamp train funksoul
+0,is ivanka trying to convince her father to break one of his key campaign promises?,ivanka trying convince father break one key campaign promise
+0,cnn reporter embarrasses himself with idiotic response after former ‚face the nation‚ host praises trump‚s saudi arabia speech [video],cnn reporter embarrasses idiotic response former face nation host praise trump saudi arabia speech video
+0,extraordinary details emerge about how senator john mccain got ‚dirty dossier‚ on president trump from ex-spy‚where‚s the media outrage?,extraordinary detail emerge senator john mccain got dirty dossier president trump exspywheres medium outrage
+1,hilarious ad calls into question health of aging clinton crime family bosses,hilarious ad call question health aging clinton crime family boss
+1,norway foreign minister becomes president of world economic forum,norway foreign minister becomes president world economic forum
+0,champion of foreign workers: hillary gets standing ovation in india‚‚there‚s no way to legislate against outsourcing‚ [video],champion foreign worker hillary get standing ovation indiatheres way legislate outsourcing video
+0,ep #10: patrick henningsen live ‚ ‚inside esoteric hollywood‚ with guest jay dyer,ep patrick henningsen live inside esoteric hollywood guest jay dyer
+0,arizona rancher protesting in oregon is targeted by cps,arizona rancher protesting oregon targeted cps
+1,lawyer for detained myanmar journalists denied access in bangladesh,lawyer detained myanmar journalist denied access bangladesh
+1,merkel: we'll conduct brexit talks to minimize damage to germany,merkel well conduct brexit talk minimize damage germany
+0,oops‚mainstream media won‚t show you this video‚london citizens yell: ‚donald trump,oopsmainstream medium wont show videolondon citizen yell donald trump
+1,activists urge apple to drop apps that play up philippine drugs war,activist urge apple drop apps play philippine drug war
+0,whoa! black woman fed up with black racists nails it: ‚many black people voted for barack obama simply because he was black‚and now your black god has failed you!‚ [video],whoa black woman fed black racist nail many black people voted barack obama simply blackand black god failed video
+0,watch trey gowdy crush the lying media during benghazi report press conference [video],watch trey gowdy crush lying medium benghazi report press conference video
+0,not kidding! obama‚s education department wants schools to celebrate‚ undocumented immigrant awareness day‚,kidding obamas education department want school celebrate undocumented immigrant awareness day
+1,u.s. knew of indonesian anti-communist massacre as it unfolded,u knew indonesian anticommunist massacre unfolded
+0,facebook now decides what is branded fake news,facebook decides branded fake news
+0,tucker carlson asks how hypocrite maxine waters affords $4.3 million mansion after 40 yrs in congress,tucker carlson asks hypocrite maxine water affords million mansion yr congress
+0,rescued canadian-u.s. couple reunited with family; receiving medical attention,rescued canadianus couple reunited family receiving medical attention
+1,myanmar army battles rohingya insurgents; thousands flee,myanmar army battle rohingya insurgent thousand flee
+1,north korea says to continue nuclear tests: ria,north korea say continue nuclear test ria
+0,ned ryun on white house leaks: ‚this is not whistleblowing. this is weaponizing classified info to undermine a duly-elected president‚ [video],ned ryun white house leak whistleblowing weaponizing classified info undermine dulyelected president video
+1,russian nuclear bombers fly near north korea in rare show of force,russian nuclear bomber fly near north korea rare show force
+0,breaking: video released of angry leftist mob attacking home of chicago lawmaker with rocks,breaking video released angry leftist mob attacking home chicago lawmaker rock
+1,colombian president confirms bilateral ceasefire with eln rebels,colombian president confirms bilateral ceasefire eln rebel
+1,australia to send more troops to help philippines fight islamist militants,australia send troop help philippine fight islamist militant
+1,talks seek to secure islamic state withdrawal from raqqa-local official,talk seek secure islamic state withdrawal raqqalocal official
+0,irma wreaks 'absolute devastation' on caribbean isle of barbuda,irma wreaks absolute devastation caribbean isle barbuda
+1,exclusive: new data shows race disparities in canada's bail system,exclusive new data show race disparity canada bail system
+1,uk minister gove says he hopes may will remain prime minister,uk minister gove say hope may remain prime minister
+1,taiwan activist to be tried for subversion in china in 'open' hearing,taiwan activist tried subversion china open hearing
+1,trump springs the neocon trap again: north korea‚s ‚test‚ is no act of war,trump spring neocon trap north korea test act war
+1,india and china agree to end border standoff,india china agree end border standoff
+0,tragic! jobless americans forced to train their foreign replacements speak out: ‚this is not about skills‚this is about costs‚ [video],tragic jobless american forced train foreign replacement speak skillsthis cost video
+1,u.n. calls on iran to resolve prisoner hunger strike,un call iran resolve prisoner hunger strike
+0,fbi release oregon video footage depicting death of robert lavoy finicum ‚ but questions remain,fbi release oregon video footage depicting death robert lavoy finicum question remain
+1,jimmy carter: ‚koreans want peace treaty to replace 1953 ceasefire‚,jimmy carter korean want peace treaty replace ceasefire
+1,obamacare: your dog might have better healthcare than you do,obamacare dog might better healthcare
+1,turkey seeks to isolate syria idlib jihadists opposing truce,turkey seek isolate syria idlib jihadist opposing truce
+0,radical interim missou prez exposed as political activist‚forced out predecessor‚video shows coordination with rich black starving student,radical interim missou prez exposed political activistforced predecessorvideo show coordination rich black starving student
+0,baltimore burns: maryland governor brings in national guard and declares a state of emergency,baltimore burn maryland governor brings national guard declares state emergency
+1,london's angel station reopens after suspect package scare,london angel station reopens suspect package scare
+0,brother of seth rich works for cyber security firm‚reportedly blocked family‚s private investigator from determining if seth was wikileaks source‚refused to let investigator see seth‚s computer: ‚i already checked it‚don‚t worry about it‚,brother seth rich work cyber security firmreportedly blocked family private investigator determining seth wikileaks sourcerefused let investigator see seth computer already checked itdont worry
+1,qatar enacts law to protect foreign domestic workers,qatar enacts law protect foreign domestic worker
+1,guatemala congress withdraws bill that cut anti-graft penalties,guatemala congress withdraws bill cut antigraft penalty
+0,msnbc‚s chris matthews defends va shooter: ‚he did understand inequality‚ [video],msnbcs chris matthew defends va shooter understand inequality video
+0,oops! nasa makes shocking claim: burning fossil fuels ‚cools planet‚,oops nasa make shocking claim burning fossil fuel cool planet
+1,not a journalist: cnn‚s brian stelter manages clinton health cover-up,journalist cnns brian stelter manages clinton health coverup
+1,islamic state attacks kill at least 50 in east syria: kurdish red crescent,islamic state attack kill least east syria kurdish red crescent
+0,why is the media silent as hillary cackles about her key role in muslim invasion of europe? [video],medium silent hillary cackle key role muslim invasion europe video
+0,oscar disaster: wrong best picture announced after night of boring political speeches‚is the death of awards shows near? we hope so! [video],oscar disaster wrong best picture announced night boring political speechesis death award show near hope video
+1,saudi women rejoice at end of driving ban long backed by clerics,saudi woman rejoice end driving ban long backed cleric
+0,breaking news: watch violent antifa cowards attack,breaking news watch violent antifa coward attack
+0,sex objects for hillary‚jennifer lopez shakes a*s on stage in thong for crooked hillary‚you can‚t make this stuff up! [video],sex object hillaryjennifer lopez shake stage thong crooked hillaryyou cant make stuff video
+0,radical director of sierra club: abortion is the key to ‚sustainable population‚ [video],radical director sierra club abortion key sustainable population video
+0,hey cnn‚remember obama‚s notorious ‚friday night news dumps‚ and when he refused to interrupt golf on martha‚s vineyard to assess historic louisiana floods?,hey cnnremember obamas notorious friday night news dump refused interrupt golf marthas vineyard assess historic louisiana flood
+0,father of armed thug killed by milwaukee cop speaks out: blames whites,father armed thug killed milwaukee cop speaks blame white
+1,immigrants in central florida nervous about seeking shelter,immigrant central florida nervous seeking shelter
+0,anti-trump anarchist explains why she hates capitalism‚proves she‚s a clueless moron [video],antitrump anarchist explains hate capitalismproves shes clueless moron video
+1,putin says trump should be respected,putin say trump respected
+0,hollyweird lib susan sarandon compares muslim refugees to jesus‚ family,hollyweird lib susan sarandon compare muslim refugee jesus family
+0,halloween fireside book of suspense vol. 2: boiler room ep #133,halloween fireside book suspense vol boiler room ep
+0,conservative fox news houston host fired for saying what we all think about obama‚s race war on facebook,conservative fox news houston host fired saying think obamas race war facebook
+0,breaking: somalian man takes hostage‚shots fired in walmart located in texas city overrun by middle eastern refugees‚update: suspect shot and killed [video],breaking somalian man take hostageshots fired walmart located texas city overrun middle eastern refugeesupdate suspect shot killed video
+1,defiant kurds shrug off risk of trade war after independence vote,defiant kurd shrug risk trade war independence vote
+1,uk employers already on edge over labour worry about may's 'tinkering',uk employer already edge labour worry may tinkering
+1,portuguese ex-pm socrates indicted on corruption charges,portuguese expm socrates indicted corruption charge
+0,breaking: watch two protesters crash ‚trump assassination‚ play in nyc: ‚liberal hate kills!‚ [video],breaking watch two protester crash trump assassination play nyc liberal hate kill video
+0,nbc puts viewers out of their misery‚cancels disastrous megyn kelly show,nbc put viewer miserycancels disastrous megyn kelly show
+1,u.s. bombers fly off north korea's coast in show of force,u bomber fly north korea coast show force
+0,perfect! president trump is laughing hysterically in hilarious new video featuring cnn logo as jim carrey in ‚liar liar‚ movie,perfect president trump laughing hysterically hilarious new video featuring cnn logo jim carrey liar liar movie
+0,obama condemns trump‚says u.s. is ‚blessed with muslim communities‚,obama condemns trumpsays u blessed muslim community
+1,thailand's buddhism chief removed after pressure from religious groups,thailand buddhism chief removed pressure religious group
+1,new zealand likely to announce new government by end of week,new zealand likely announce new government end week
+0,trump,trump
+0,u of wi students sell hateful hoodies: ‚all white people are racists‚‚message promoting violence against cops,u wi student sell hateful hoodies white people racistsmessage promoting violence cop
+0,sunday screening: ‚the war on democracy‚ (2007),sunday screening war democracy
+0,florida couple spots man with ‚death to america‚ sign then take matters into their own hands [video],florida couple spot man death america sign take matter hand video
+0,black female rapper endorses trump: ‚black folks have been voting democrat for last 70 years and we don‚t have shit to show for it‚hillary treats us like ‚pets'‚,black female rapper endorses trump black folk voting democrat last year dont shit show ithillary treat u like pet
+1,one person killed by car bomb attack in somalia's capital,one person killed car bomb attack somalia capital
+1,japanese pm abe says election won't distract him from tackling north korea,japanese pm abe say election wont distract tackling north korea
+1,venezuela's maduro seeks debt negotiations after u.s. sanctions,venezuela maduro seek debt negotiation u sanction
+0,boiler room ‚ ep #49 ‚ what is real: brussels,boiler room ep real brussels
+0,breaking: muslim terrorists strike two popular luxury beach resorts‚.killing 14,breaking muslim terrorist strike two popular luxury beach resortskilling
+0,pro-abortion activist speaks to students at catholic school,proabortion activist speaks student catholic school
+1,hamas asks abbas to lift gaza sanctions after disbanding shadow government,hamas asks abbas lift gaza sanction disbanding shadow government
+0,meet classy ‚f*ck the police,meet classy fck police
+1,storm maria pitches puerto rico barrio into sunken 'venice',storm maria pitch puerto rico barrio sunken venice
+0,irma makes landfall at cudjoe key in lower florida keys,irma make landfall cudjoe key lower florida key
+1,factbox: countries which have expelled north korean ambassadors after nuclear test,factbox country expelled north korean ambassador nuclear test
+0,the truth about why hillary is the only candidate who travels with a full-time physician,truth hillary candidate travel fulltime physician
+1,china's xi urges france to help restart talks on north korea,china xi urge france help restart talk north korea
+0,hey hillary‚who are you going to blame for the 18 cities in pennsylvania with higher lead levels than flint?,hey hillarywho going blame city pennsylvania higher lead level flint
+0,danish inventor had murder videos on his computer: prosecutor,danish inventor murder video computer prosecutor
+1,mattis seeks indian role in afghanistan vows to fight militant shelters,mattis seek indian role afghanistan vow fight militant shelter
+0,why this new book by lib writer and radio host will send shock waves through the democrat party,new book lib writer radio host send shock wave democrat party
+0,trump advisor has warning for syria that has saved lives [video],trump advisor warning syria saved life video
+1,russian submarines fire cruise missiles at islamic state in syria,russian submarine fire cruise missile islamic state syria
+1,all the president's men: china's politburo line-up a measure of xi's power,president men china politburo lineup measure xi power
+1,manchester concert venue shattered by bomb attack to reopen,manchester concert venue shattered bomb attack reopen
+0,breaking: paris terrorist was syrian refugee‚arrived in greece last month,breaking paris terrorist syrian refugeearrived greece last month
+1,turkey's erdogan iraq's abadi to discuss iraqi kurdish referendum,turkey erdogan iraq abadi discus iraqi kurdish referendum
+0,hillary clinton: neocon war-hawk in waiting,hillary clinton neocon warhawk waiting
+1,official candidate seen ahead in buenos aires senate race: poll,official candidate seen ahead buenos aire senate race poll
+0,catholic bishop outraged over hillary‚s anti-catholic bigotry: hillary‚s a ‚scheming,catholic bishop outraged hillary anticatholic bigotry hillary scheming
+0,without evidence,without evidence
+1,britain's prince william and wife kate expecting third child,britain prince william wife kate expecting third child
+0,lol! this one picture sums up trump‚s brutal smackdown of mainstream media at today‚s press conference,lol one picture sum trump brutal smackdown mainstream medium today press conference
+0,episode #4 ‚ drive by wire: ‚dc rabbit holes‚ with patrick & shawn,episode drive wire dc rabbit hole patrick shawn
+1,togo opposition calls for president to quit as protests mount,togo opposition call president quit protest mount
+0,shocking attack: high school girl brutally beaten for supporting trump [video],shocking attack high school girl brutally beaten supporting trump video
+0,sunday screening: ‚air america: the cia‚s secret airline‚ (2000),sunday screening air america cia secret airline
+1,in shift merkel backs end to eu-turkey membership talks,shift merkel back end euturkey membership talk
+0,caught! fbi arrests man poisoning produce at local grocery stores [video],caught fbi arrest man poisoning produce local grocery store video
+0,communist students threaten ‚students for trump‚ event [video] how much longer will americans allow violent left to shut down free speech?,communist student threaten student trump event video much longer american allow violent left shut free speech
+1,brazil prosecutor charges members of temer's party with criminal organization,brazil prosecutor charge member temers party criminal organization
+1,erdogan critic held in spain returns to germany denouncing 'despotism',erdogan critic held spain return germany denouncing despotism
+0,boom! ted cruz will conduct hearing today: focusing on muslim brotherhood,boom ted cruz conduct hearing today focusing muslim brotherhood
+1,north korea-u.s. tensions are not mexico's business: diplomat,north koreaus tension mexico business diplomat
+0,trump girls give shout out to crooked hillary‚and bring down the house: ‚if the justice department don‚t want to indict you‚the american people will indict you‚ [video],trump girl give shout crooked hillaryand bring house justice department dont want indict youthe american people indict video
+1,japan pm abe says to decide timing of election on return from u.n. trip,japan pm abe say decide timing election return un trip
+1,georgia judge suspended for comparing attack on us monuments to isis actions,georgia judge suspended comparing attack u monument isi action
+1,nz prime minister-elect ardern focuses on final touches in coalition deal nz dollar sinks,nz prime ministerelect ardern focus final touch coalition deal nz dollar sink
+1,swiss police say knife-wielding asylum seeker killed by officer,swiss police say knifewielding asylum seeker killed officer
+1,children teenagers among wounded rohingya in crammed bangladesh hospital,child teenager among wounded rohingya crammed bangladesh hospital
+1,former venezuelan prosecutor meets mexican attorney general,former venezuelan prosecutor meet mexican attorney general
+0,hyundai motor kia to temporarily shut down u.s. plants due to irma,hyundai motor kia temporarily shut u plant due irma
+0,episode #120 ‚ sunday wire: ‚crisis of liberty‚ with guests jason casella and kim upton,episode sunday wire crisis liberty guest jason casella kim upton
+0,debbie wasserman schultz accuses obama‚s dhs director jeh johnson of lying under oath [video],debbie wasserman schultz accuses obamas dhs director jeh johnson lying oath video
+1,hindus fleeing myanmar violence hope for shelter in modi's india,hindu fleeing myanmar violence hope shelter modis india
+1,suu kyi silence on myanmar ethnic cleansing charge draws cool response,suu kyi silence myanmar ethnic cleansing charge draw cool response
+1,digital tyranny: google and facebook‚s automated censorship program (i hope you can speak chinese),digital tyranny google facebooks automated censorship program hope speak chinese
+1,liberians vote to bolster peaceful democracy in presidential poll,liberian vote bolster peaceful democracy presidential poll
+0,greece sees no need for precautionary credit line to exit bailout,greece see need precautionary credit line exit bailout
+1,stanchart closed accounts linked to south africa's gupta family in 2014,stanchart closed account linked south africa gupta family
+0,episode #154 ‚ sunday wire: ‚the pro-war left?‚ with guests jean bricmont,episode sunday wire prowar left guest jean bricmont
+0,minnesota: mob of somalis rage through upscale neighborhood threatening to ‚kidnap‚ and ‚rape‚ homeowners [video],minnesota mob somali rage upscale neighborhood threatening kidnap rape homeowner video
+0,media tripwire? ping pong pizza conspiracy propels internet censorship amid ‚fake news‚ witch-hunt,medium tripwire ping pong pizza conspiracy propels internet censorship amid fake news witchhunt
+1,malta-based charity group suspends mediterranean migrant rescues,maltabased charity group suspends mediterranean migrant rescue
+1,moldovan president vetoes participation in nato country exercises,moldovan president veto participation nato country exercise
+1,germany france float new sanctions after north korea nuclear test,germany france float new sanction north korea nuclear test
+0,cloaked order: who‚s really behind ‚new authority‚ for cia drone strikes?,cloaked order who really behind new authority cia drone strike
+0,black felon brutally beats girlfriend,black felon brutally beat girlfriend
+1,breaking: mi court of appeals orders vote recount to stop‚jill stein‚s democrat activist attorney says count must go on,breaking mi court appeal order vote recount stopjill stein democrat activist attorney say count must go
+0,germany crisis escalates: muslim migrants masturbating in pools,germany crisis escalates muslim migrant masturbating pool
+0,boycott! goldman sachs uses union thug tactics against top employees to prop-up #wallstreethillary [video],boycott goldman sachs us union thug tactic top employee propup wallstreethillary video
+0,breaking news: trump‚s chief strategist,breaking news trump chief strategist
+1,bangladesh wants 'safe zones' to ease rohingya crisis but seen unlikely,bangladesh want safe zone ease rohingya crisis seen unlikely
+1,uk transport police leading investigation of london incident counter-terrorism police aware,uk transport police leading investigation london incident counterterrorism police aware
+0,delusional democrat al green: ‚i will draw up documents of impeachment‚ [video],delusional democrat al green draw document impeachment video
+1,malaysia arrests seven suspected of involvement with abu sayyaf militant group,malaysia arrest seven suspected involvement abu sayyaf militant group
+1,czech election websites hacked vote unaffected -statistics office,czech election website hacked vote unaffected statistic office
+1,all the president's women: duterte's fiercest critics and a surly political heir,president woman dutertes fiercest critic surly political heir
+0,four dead from landslide at malaysia construction site victim search to continue,four dead landslide malaysia construction site victim search continue
+1,new wave of cyber attacks hits russia other nations,new wave cyber attack hit russia nation
+0,watch as assad destroys us reporter michael isikoff in interview,watch assad destroys u reporter michael isikoff interview
+0,busted: hillary‚s media cheerleaders caught hiding truth about most corrupt candidate ever during live interviews [video],busted hillary medium cheerleader caught hiding truth corrupt candidate ever live interview video
+1,irma severely damages cuban sugar industry crop: state media,irma severely damage cuban sugar industry crop state medium
+0,d.c. bar owner where seth rich was last seen drops bombshell: no employees of bar questioned by dc police‚never asked for surveillance tapes [video],dc bar owner seth rich last seen drop bombshell employee bar questioned dc policenever asked surveillance tape video
+1,russia says kills 7 nusra front field commanders in syria air strike,russia say kill nusra front field commander syria air strike
+1,iraq asks u.n. for help to build new nuclear power reactor,iraq asks un help build new nuclear power reactor
+1,scooter fire in western paris triggers jordan explosion scare,scooter fire western paris trigger jordan explosion scare
+0,is ben affleck drunk? watch hollywood leftist who goes out of his way to defend islam go ballistic‚again,ben affleck drunk watch hollywood leftist go way defend islam go ballisticagain
+1,ukraine drops tax probe of finance minister: finance ministry,ukraine drop tax probe finance minister finance ministry
+0,disney‚s espn punishes trump for free speech‚isn‚t it time america punished disney for putting their leftist agenda before free speech?,disney espn punishes trump free speechisnt time america punished disney putting leftist agenda free speech
+1,saudi prince lectures america on democracy,saudi prince lecture america democracy
+0,breaking! new wikileaks email: confidential auditor‚s report states clinton foundation is engaging in illegal conduct,breaking new wikileaks email confidential auditor report state clinton foundation engaging illegal conduct
+0,trump attacks hillary: ‚she is a world class liar!‚,trump attack hillary world class liar
+0,is smithsonian museum planning to make hero out of third rate qb,smithsonian museum planning make hero third rate qb
+0,what the mainstream media won‚t show you: new white house communications director anthony scaramucci explains why he once called trump a ‚hack‚ [video],mainstream medium wont show new white house communication director anthony scaramucci explains called trump hack video
+0,comedy gold on detroit news: ‚willy‚ dumps his tires in the wrong spot [video],comedy gold detroit news willy dump tire wrong spot video
+0,black lives matter activist obama invited to white house charged with pimping teenage girl‚blames conservatives ‚trolls‚,black life matter activist obama invited white house charged pimping teenage girlblames conservative troll
+1,u.s. house republican mccarthy wants to fix iran nuclear deal,u house republican mccarthy want fix iran nuclear deal
+0,fox legal expert: susan rice committed 3 crimes‚‚better get herself a good criminal defense attorney‚ [video],fox legal expert susan rice committed crimesbetter get good criminal defense attorney video
+1,venezuelan leader blasts rajoy mocks trump,venezuelan leader blast rajoy mock trump
+1,turkish army expands deployment in syria's northwest: rebels,turkish army expands deployment syria northwest rebel
+0,should preschool kids learn about same-sex marriage? ‚anti-bias‚ class is coming your way [video],preschool kid learn samesex marriage antibias class coming way video
+1,u.s. considering wider iran threat as part of its policy on nuclear deal: tillerson,u considering wider iran threat part policy nuclear deal tillerson
+1,rare interview with white house secretary: bill clinton had affairs with ‚thousands of women‚‚‚monica lewinsky is alive today because of choices i made‚,rare interview white house secretary bill clinton affair thousand womenmonica lewinsky alive today choice made
+0,obama finally admits: ‚we had no plan after libya regime change‚,obama finally admits plan libya regime change
+1,iran rejects u.s. demand for u.n. visit to military sites,iran reject u demand un visit military site
+0,workplace microaggression: isis yells ‚alluha akbar‚ while accidentally blowing themselves up [video],workplace microaggression isi yell alluha akbar accidentally blowing video
+1,about 146000 rohingya have fled myanmar violence to bangladesh,rohingya fled myanmar violence bangladesh
+0,new black panther leader: trump is right‚asks blacks to ‚re-examine the relationship‚ with democrat party‚‚democrats pimp us [blacks] like prostitutes‚ [video],new black panther leader trump rightasks black reexamine relationship democrat partydemocrats pimp u black like prostitute video
+1,china says foreign firms welcome benefits from internal communist party cells,china say foreign firm welcome benefit internal communist party cell
+1,australian pm says first refugees to be resettled in u.s. under swap deal,australian pm say first refugee resettled u swap deal
+0,france: ‚topless trump‚ and ‚topless marine le pen‚ dragged away from polling place,france topless trump topless marine le pen dragged away polling place
+0,hero praised by media for fighting off faisal mohammad‚isn‚t that what the media crucified ben carson for suggesting? [video],hero praised medium fighting faisal mohammadisnt medium crucified ben carson suggesting video
+0,detective on seth rich murder mystery drops shocking news [video],detective seth rich murder mystery drop shocking news video
+1,bangladesh warns myanmar over border amid refugee crisis,bangladesh warns myanmar border amid refugee crisis
+1,austria's social democrats urge facebook to unmask people behind smear campaign,austria social democrat urge facebook unmask people behind smear campaign
+0,this international company is luring refugees and illegals to america‚do you buy meat from them?,international company luring refugee illegals americado buy meat
+0,afghan interpreter for us murdered by taliban while waiting 4 yrs for promised visa [video],afghan interpreter u murdered taliban waiting yr promised visa video
+1,maltese journalist's son says she was murdered for exposing corruption,maltese journalist son say murdered exposing corruption
+0,havana braced for floods after hurricane irma rakes cuban keys,havana braced flood hurricane irma rake cuban key
+0,two new jersey moms attacked by community for exposing islamic indoctrination in middle school‚thomas more law center steps up to defend them [video],two new jersey mom attacked community exposing islamic indoctrination middle schoolthomas law center step defend video
+1,u.s. envoy to turkey says duration of visa services suspension depends on talks,u envoy turkey say duration visa service suspension depends talk
+0,trump wins! supreme court rules on travel ban in unanimous decision [video],trump win supreme court rule travel ban unanimous decision video
+1,spain pushes eu to adopt restrictive measures against venezuela,spain push eu adopt restrictive measure venezuela
+1,israel: no peace talks with palestinian government reliant on hamas,israel peace talk palestinian government reliant hamas
+0,all whites in back‚democrats prove their obsession with race in one ridiculous photo,white backdemocrats prove obsession race one ridiculous photo
+1,"ctbto looking at ""unusual seismic activity"" in north korea",ctbto looking unusual seismic activity north korea
+0,powerful! he became a police officer after watching the twin towers fall on 9-11‚today,powerful became police officer watching twin tower fall today
+1,eu workers drift from britain just as restaurateurs need them most,eu worker drift britain restaurateur need
+1,when in rome: erdogan thugs rough-up press,rome erdogan thug roughup press
+1,the court case against the ‚travel ban‚ executive order,court case travel ban executive order
+1,egged off: eu summit venue switched after noxious fumes,egged eu summit venue switched noxious fume
+0,unhinged clinton supporter knocks elderly man to ground after he tries to stop him from burning u.s. flag [video],unhinged clinton supporter knock elderly man ground try stop burning u flag video
+1,cambodian pm threatens opposition party will be dissolved,cambodian pm threatens opposition party dissolved
+1,eu's tusk proposes opening internal preparations of next phase of brexit talks,eu tusk proposes opening internal preparation next phase brexit talk
+1,japan's struggling opposition democrats pick ex-foreign minister maehara as leader,japan struggling opposition democrat pick exforeign minister maehara leader
+1,fire destroys landmark hotel in myanmar's largest city kills one,fire destroys landmark hotel myanmar largest city kill one
+1,after political storm indonesia president faces economic clouds,political storm indonesia president face economic cloud
+0,iron fisted social engineering: d.c. threatens fines for anyone who improperly addresses transgenders,iron fisted social engineering dc threatens fine anyone improperly address transgenders
+0,dinesh d‚souza: ‚not since lincoln,dinesh dsouza since lincoln
+0,the genealogy of trump‚s u-turn on palestine,genealogy trump uturn palestine
+1,spooked by catalonia eu rallies behind madrid but warily,spooked catalonia eu rally behind madrid warily
+1,russia unveils monument to designer of iconic ak-47 rifle,russia unveils monument designer iconic ak rifle
+0,conservative author destroys hypocrisy,conservative author destroys hypocrisy
+0,stone-faced anderson cooper gets schooled by trump‚s deputy assistant on fake news‚‚i know you want salacious,stonefaced anderson cooper get schooled trump deputy assistant fake newsi know want salacious
+1,russian and japanese leaders 'decisively condemn' north korean tests,russian japanese leader decisively condemn north korean test
+0,wife of vanished british lord at heart of murder mystery found dead,wife vanished british lord heart murder mystery found dead
+0,sore loser,sore loser
+1,brazil's new top prosecutor reshuffles 'car wash' investigation team,brazil new top prosecutor reshuffle car wash investigation team
+0,lol! prince of country who gave hillary $50 million begs americans not to vote for trump,lol prince country gave hillary million begs american vote trump
+1,uk's johnson opposes adopting any new eu rules during brexit transition,uk johnson opposes adopting new eu rule brexit transition
+0,disturbing truth about how the un decides which muslim ‚refugees‚ will be your new neighbor [video],disturbing truth un decides muslim refugee new neighbor video
+1,tanzania closes third newspaper since june as part of media crackdown,tanzania close third newspaper since june part medium crackdown
+1,singapore pm lee says ready to step down in couple of years; no successor picked yet,singapore pm lee say ready step couple year successor picked yet
+1,china says one step forwards two steps back no good for japan ties,china say one step forward two step back good japan tie
+0,lol! leftist ca congresswoman on tonight‚s debate: debate moderator needs to help hillary‚media isn‚t doing enough for her [video],lol leftist ca congresswoman tonight debate debate moderator need help hillarymedia isnt enough video
+1,'just talk': belgium offers spain relationship advice,talk belgium offer spain relationship advice
+1,polish ruling party and president say closer to strike deal over court reform,polish ruling party president say closer strike deal court reform
+1,merkel hangs on to power but bleeds support to surging far right,merkel hang power bleeds support surging far right
+1,number of new refugees from myanmar in bangladesh up to 480000 - agencies,number new refugee myanmar bangladesh agency
+1,no 'bespoke' brexit transition means 'status quo': barnier,bespoke brexit transition mean status quo barnier
+0,communist filmmaker michael moore recruits leftists in attempt to harm trump,communist filmmaker michael moore recruit leftist attempt harm trump
+1,trump and japan's abe agree to keep pressure on north korea,trump japan abe agree keep pressure north korea
+0,msnbc‚s mika attacks melania trump‚a furious melania issues immediate response,msnbcs mika attack melania trumpa furious melania issue immediate response
+1,report on mexican attorney general's ferrari drives corruption debate,report mexican attorney general ferrari drive corruption debate
+1,samsung scion fights back as legal appeal begins,samsung scion fight back legal appeal begin
+1,indonesia prepares to divert bali-bound flights in case of volcanic eruption,indonesia prepares divert balibound flight case volcanic eruption
+1,russia's putin calls for gradual reform of u.n.,russia putin call gradual reform un
+0,sunday wire replay: live show off-air for maintenance,sunday wire replay live show offair maintenance
+1,eu to raise pressure on poland over democracy concerns: sources,eu raise pressure poland democracy concern source
+0,bombshell: more women threatened by hillary are ready to come forward with sexual assault accusations against her perverted husband [video],bombshell woman threatened hillary ready come forward sexual assault accusation perverted husband video
+1,exclusive: ex-bernie delegate reveals why he fled democratic party for the greens,exclusive exbernie delegate reveals fled democratic party green
+1,philippine president sees biggest ratings dip but popularity intact,philippine president see biggest rating dip popularity intact
+1,china says hopes iran nuclear deal stays intact amid trump criticism,china say hope iran nuclear deal stay intact amid trump criticism
+0,breaking: wikileaks email release exposes two-faced hillary admitting she needs to have a private and public position on policy,breaking wikileaks email release expose twofaced hillary admitting need private public position policy
+1,ex-georgian leader risks extradition on return to ukraine,exgeorgian leader risk extradition return ukraine
+1,caribbean residents fend off looters after irma; branson urges 'marshall plan',caribbean resident fend looter irma branson urge marshall plan
+0,baton rouge cop killer had ‚inspirational‚ youtube channel,baton rouge cop killer inspirational youtube channel
+0,don‚t believe the polls: massive silent majority avoid violence,dont believe poll massive silent majority avoid violence
+1,u.s. still seeking explanation for arrest of staff in turkey: ambassador,u still seeking explanation arrest staff turkey ambassador
+1,turkey says northern iraqi referendum an issue of national security,turkey say northern iraqi referendum issue national security
+1,first turkish military convoy enters syria's idlib,first turkish military convoy enters syria idlib
+1,unesco selects france's azoulay as new chief,unesco selects france azoulay new chief
+0,watch this: did google manipulate search for hillary clinton for favorable results? [video],watch google manipulate search hillary clinton favorable result video
+0,sick! democrat organizer,sick democrat organizer
+1,romania says britain more 'positive' on brexit talks so is eu,romania say britain positive brexit talk eu
+0,watch dirty harry reid on his lie about romney‚s taxes: ‚he didn‚t win,watch dirty harry reid lie romneys tax didnt win
+0,wow! dennis miller nails it: ‚the gop is now chipotle! you‚re making your customers sick!‚ [video],wow dennis miller nail gop chipotle youre making customer sick video
+1,egypt says suspended u.s. military exercises to resume,egypt say suspended u military exercise resume
+1,north korea fuel prices soar after u.n. sanctions capping supply,north korea fuel price soar un sanction capping supply
+0,former navy seal and harvard grad ‚body-slams‚ #fakenews cnn host [video],former navy seal harvard grad bodyslams fakenews cnn host video
+1,opposition magistrates holed up in chile residence flee venezuela: source,opposition magistrate holed chile residence flee venezuela source
+1,london's angel underground station closed due to security alert,london angel underground station closed due security alert
+1,austrian election tests conservative star stealing far right's thunder,austrian election test conservative star stealing far right thunder
+1,kremlin critic navalny jailed for third time this year,kremlin critic navalny jailed third time year
+0,agitprop machine: how the us create fake al qaeda and isis videos,agitprop machine u create fake al qaeda isi video
+0,the 2006 child molester ad bernie sanders doesn‚t want voters to see,child molester ad bernie sander doesnt want voter see
+0,tomi lahren‚s rant against anti-trump rioters goes viral: ‚a bunch of sore losers gathered together isn‚t a protest,tomi lahrens rant antitrump rioter go viral bunch sore loser gathered together isnt protest
+1,china expels former justice minister from party for graft,china expels former justice minister party graft
+0,trump‚s ‚wag the dog‚ moment,trump wag dog moment
+0,mostly white group of boston college students sing christmas carols about racism: ‚walking through a white man‚s wonderland‚,mostly white group boston college student sing christmas carol racism walking white man wonderland
+0,good news for silver in 2017,good news silver
+0,nyc mayor de blasio‚putting illegal aliens before the safety of americans: it‚s okay to protect illegal alien drunk drivers [video],nyc mayor de blasioputting illegal alien safety american okay protect illegal alien drunk driver video
+0,angry black milwaukee residents set city on fire after armed black man is killed by police: ‚the black people of milwaukee are tired‚they‚re tired of living under this oppression‚ [video],angry black milwaukee resident set city fire armed black man killed police black people milwaukee tiredtheyre tired living oppression video
+0,hillary supporter and muslim immigrant who shot up mall voted in last 3 elections‚isn‚t an american citizen [video],hillary supporter muslim immigrant shot mall voted last electionsisnt american citizen video
+0,ahead of regional vote merkel's conservatives neck-and-neck with social democrats,ahead regional vote merkels conservative neckandneck social democrat
+0,mooch for president? surprising new poll shows how michelle stacks up against hillary in 2016 presidential bid,mooch president surprising new poll show michelle stack hillary presidential bid
+0,if america elects hillary,america elect hillary
+1,car bombs kill at least 22 in somalia's capital mogadishu: police,car bomb kill least somalia capital mogadishu police
+0,say what? [video] leftist comedian bill maher destroys muslim clock boy,say video leftist comedian bill maher destroys muslim clock boy
+0,boiler room ‚ oregon standoff,boiler room oregon standoff
+0,only in detroit: squatting on the squatter takes a turn,detroit squatting squatter take turn
+1,u.n. security council to meet monday on north korea nuclear test,un security council meet monday north korea nuclear test
+1,despite tensions u.s. sees value in new start treaty with russia,despite tension u see value new start treaty russia
+0,sunday wire replay: live show off-air for maintenance,sunday wire replay live show offair maintenance
+0,witch hunt: communist california raids home of man behind planned parenthood baby parts videos,witch hunt communist california raid home man behind planned parenthood baby part video
+0,a few black conservatives have some choice words for obama and hillary following dallas black lives matter cop massacre,black conservative choice word obama hillary following dallas black life matter cop massacre
+1,venezuela's maduro thanks putin for support in difficult times,venezuela maduro thanks putin support difficult time
+1,trump's tweet on london train bombing just speculation: minister,trump tweet london train bombing speculation minister
+1,turkey issues detention warrants for 115 people in post-coup probe: anadolu,turkey issue detention warrant people postcoup probe anadolu
+0,obama lies to french reporter,obama lie french reporter
+1,air strike kills seven hezbollah fighters in syria-sources,air strike kill seven hezbollah fighter syriasources
+0,author of children‚s books gets destroyed on social media after mocking 11-yr old barron trump‚s reaction to beheaded dad image,author childrens book get destroyed social medium mocking yr old barron trump reaction beheaded dad image
+0,six reasons the left turned their ‚accepting‚ backs on bruce jenner after he ‚came out‚ in tv interview,six reason left turned accepting back bruce jenner came tv interview
+0,breaking news: facebook killer dead‚here are the details [video],breaking news facebook killer deadhere detail video
+0,wow! even cnn‚s reporting on mueller‚s new russian investigation hires who made major contributions to hillary,wow even cnns reporting muellers new russian investigation hire made major contribution hillary
+1,thai former pm yingluck gets five-year jail term for negligence,thai former pm yingluck get fiveyear jail term negligence
+1,pakistan's ousted pm sharif 'back with full force' as party chief,pakistan ousted pm sharif back full force party chief
+1,four moldovans killed in ivory coast plane crash: security minister,four moldovans killed ivory coast plane crash security minister
+1,henningsen on white house press dinner: ‚the fourth estate is nonexistent in america‚,henningsen white house press dinner fourth estate nonexistent america
+1,at least 30 burundian refugees die in clashes with congolese security forces,least burundian refugee die clash congolese security force
+1,brazilian police target gangs shipping cocaine to europe,brazilian police target gang shipping cocaine europe
+1,germany's merkel ahead of spd rival in tv debate: polls,germany merkel ahead spd rival tv debate poll
+0,mockingbird redux? cnn‚s role in peddling fake ‚nothing burger‚ russia-gate news revealed,mockingbird redux cnns role peddling fake nothing burger russiagate news revealed
+1,nato's stoltenberg says north korea's 'reckless behavior' requires global response,nato stoltenberg say north korea reckless behavior requires global response
+0,breaking: [video] black supremacy terror group planning something big for 9-11‚‚black lives matter movement wasn‚t enough‚it‚s unavoidable‚it‚s about to go down‚it‚s open season on whites and crackers‚,breaking video black supremacy terror group planning something big black life matter movement wasnt enoughits unavoidableits go downits open season white cracker
+1,north korea defiant over u.n. sanctions as trump says tougher steps needed,north korea defiant un sanction trump say tougher step needed
+1,eric bolling accuser is serial sexual harassment accuser,eric bolling accuser serial sexual harassment accuser
+0,h.s. football team stages ‚die-in‚ to show support for kaepernick‚s ‚disrespect the flag‚ movement‚while american soldiers are dying for freedoms our flag represents,h football team stage diein show support kaepernicks disrespect flag movementwhile american soldier dying freedom flag represents
+0,kellyanne conway tells ‚haters‚ reason she looks so ‚haggard‚‚slams fake ‚pro-women‚ nancy pelosi [video],kellyanne conway tell hater reason look haggardslams fake prowomen nancy pelosi video
+0,bottom feeders paint ‚tear it down‚ on new orleans‚ joan of arc statue,bottom feeder paint tear new orleans joan arc statue
+0,as isis has celebratory parade in w. anbar province of iraq: pathetic obama regime asks networks to stop using ‚b-loop‚ isis footage,isi celebratory parade w anbar province iraq pathetic obama regime asks network stop using bloop isi footage
+0,over 100 colleges will hold separate graduation ceremonies for gays as part of a ‚cultural celebration‚,college hold separate graduation ceremony gay part cultural celebration
+1,german greens want anti-austerity eurogroup head,german green want antiausterity eurogroup head
+1,rescue efforts end in indian building collapse; 34 dead,rescue effort end indian building collapse dead
+1,hamas leader in cairo to discuss gaza blockade,hamas leader cairo discus gaza blockade
+1,russia jails crimean dissident for speaking out against moscow's rule,russia jail crimean dissident speaking moscow rule
+1,after german election macron to set out his vision for europe,german election macron set vision europe
+0,town‚s parade canceled after violent antifa radicals threatened to destroy and attack,town parade canceled violent antifa radical threatened destroy attack
+1,rwandan leader's would-be rival rwigara and her mother denied bail,rwandan leader wouldbe rival rwigara mother denied bail
+0,only hours after death of supreme court justice scalia,hour death supreme court justice scalia
+0,double standard? white mlb player suspended for criticizing #blacklivesmatter‚nfl ignores black player‚s instagram post of cop‚s neck being slit,double standard white mlb player suspended criticizing blacklivesmatternfl ignores black player instagram post cop neck slit
+1,poland's ruling party tightens grip on big state firms,poland ruling party tightens grip big state firm
+0,when #blacklivesmatter,blacklivesmatter
+1,jetblue offers $99 flights out of florida ahead of hurricane irma,jetblue offer flight florida ahead hurricane irma
+1,boiler room #108 ‚ who‚d win in a fight? boiler room vs. hitler vs. dracula,boiler room whod win fight boiler room v hitler v dracula
+0,stuck on stupid: why is america starting ww3?,stuck stupid america starting ww
+0,black student ‚activist‚ jailed for tweeting fake racist threats,black student activist jailed tweeting fake racist threat
+0,choking on her lies? hillary clinton has coughing fit during speech at alma mater [video],choking lie hillary clinton coughing fit speech alma mater video
+1,poland's pm szydlo to reshuffle cabinet soon,poland pm szydlo reshuffle cabinet soon
+0,mother of 12 goes on rant in target store: ‚mothers‚get your children out of this store!‚ [viral video],mother go rant target store mothersget child store viral video
+1,venezuela opposition says ballot sheet unfair for oct. 15 vote,venezuela opposition say ballot sheet unfair oct vote
+1,trump: 'sad day' for north korea if u.s. takes military action,trump sad day north korea u take military action
+1,uk pm may tells business chiefs: two-year brexit transition is assured - source,uk pm may tell business chief twoyear brexit transition assured source
+0,what is going on with the secret service?,going secret service
+1,singapore names first woman president raising eyebrows over election process,singapore name first woman president raising eyebrow election process
+1,eu agrees to extend blacklist on russians over ukraine turmoil,eu agrees extend blacklist russian ukraine turmoil
+0,boiler room ep #122 ‚ charlottesville & the history of violent cultural revolution,boiler room ep charlottesville history violent cultural revolution
+0,irma evacuees find full hotels but a warm welcome in georgia,irma evacuee find full hotel warm welcome georgia
+0,leading n. carolina newspaper: girls need to attempt ‚overcoming discomfort‚ at sight of ‚male genitalia‚ in locker rooms,leading n carolina newspaper girl need attempt overcoming discomfort sight male genitalia locker room
+0,florida doctor under fire after running tv ad offering medical treatment for men who plan to vote for hillary [video],florida doctor fire running tv ad offering medical treatment men plan vote hillary video
+0,do you want to save america from hillary? share this video with everyone you know‚,want save america hillary share video everyone know
+1,mood sours in ethnically split cyprus over aid convoy spat,mood sour ethnically split cyprus aid convoy spat
+0,yale removes name of democrat white supremacist,yale remove name democrat white supremacist
+1,kenya president snubs vote crisis meeting presses on with campaign,kenya president snub vote crisis meeting press campaign
+0,is obama punishing fiat-chrysler for 2000 us jobs,obama punishing fiatchrysler u job
+0,behind the curtain: how obama plans to prevent ‚certain‚ social security beneficiaries from owning guns,behind curtain obama plan prevent certain social security beneficiary owning gun
+0,meet the nasty women responsible for promoting hate and intolerance on nazi-themed trump billboard [video],meet nasty woman responsible promoting hate intolerance nazithemed trump billboard video
+1,iran halts flights to iraqi kurdistan at request of baghdad: agency,iran halt flight iraqi kurdistan request baghdad agency
+0,"hollywood libs create insane propaganda video for obama: warning iran will bomb us with nukes if congress blocks obama‚s deal‚like a really dark unpleasant death toast‚""",hollywood libs create insane propaganda video obama warning iran bomb u nuke congress block obamas deallike really dark unpleasant death toast
+1,boiler room ep #126 ‚ immigration consternation,boiler room ep immigration consternation
+0,oops! both bernie sanders and his wife are under fbi investigation for bank fraud,oops bernie sander wife fbi investigation bank fraud
+1,moscow riyadh work together to unite syria's opposition: saudi minister,moscow riyadh work together unite syria opposition saudi minister
+0,leftist protestor cuts electricity to trump rally‚trump‚s epic response proves the left can‚t defeat him,leftist protestor cut electricity trump rallytrumps epic response prof left cant defeat
+0,these lives mattered: americans furious as new orleans joins left‚s effort to erase history,life mattered american furious new orleans join left effort erase history
+0,muslim athlete given ‚hero‚s welcome‚ arrested for sexual abuse of 12-yr old girl after senator schumer helped him get around u.s. visa denial,muslim athlete given hero welcome arrested sexual abuse yr old girl senator schumer helped get around u visa denial
+0,watch tv news crew go undercover: ‚homeless‚ taking credit cards? panhandlers living in high rent neighborhoods?,watch tv news crew go undercover homeless taking credit card panhandler living high rent neighborhood
+1,india china need to do more to avoid border disputes: india foreign secretary,india china need avoid border dispute india foreign secretary
+1,anti-uber protests disrupt major chilean airport; one dead,antiuber protest disrupt major chilean airport one dead
+0,radical unhinged teacher finally arrested and charged in california [video],radical unhinged teacher finally arrested charged california video
+1,iran president defends guards in show of unity anticipating trump,iran president defends guard show unity anticipating trump
+0,how to handle thanksgiving after the 2016 election [video],handle thanksgiving election video
+1,"preparing to invade: us deploys additional 2500 soldiers for ‚syria and iraq‚""",preparing invade u deploys additional soldier syria iraq
+0,video: top 10 most embarrassing presidential family members,video top embarrassing presidential family member
+0,why college grads can‚t get jobs: list of most ridiculous courses at some of america‚s most elite (expensive) colleges,college grad cant get job list ridiculous course america elite expensive college
+1,cnn in a panic over assad success,cnn panic assad success
+0,immigrants from soviet union want to know why americans support bernie sanders,immigrant soviet union want know american support bernie sander
+0,business owner learns painful lesson: why re-distribution of earnings in the workplace doesn‚t work,business owner learns painful lesson redistribution earnings workplace doesnt work
+1,china says north korean situation more serious by the day,china say north korean situation serious day
+0,"breaking: charity failed to reveal 1100 donors to the clinton foundation""",breaking charity failed reveal donor clinton foundation
+1,teenager to stand trial in march over london bomb attack,teenager stand trial march london bomb attack
+0,trump threatens to sue illegal immigrant activist and fav obama celebrity chef for pulling out of restaurant deal in new dc hotel,trump threatens sue illegal immigrant activist fav obama celebrity chef pulling restaurant deal new dc hotel
+0,breaking bombshell: weiner is cooperating‚fbi didn‚t need warrant‚not good news for crooked hillary [video],breaking bombshell weiner cooperatingfbi didnt need warrantnot good news crooked hillary video
+1,canada to impose sanctions on venezuela's maduro and top officials,canada impose sanction venezuela maduro top official
+0,female rock legend calls today‚s trashy pop stars ‚sex workers‚‚is she right? [video],female rock legend call today trashy pop star sex workersis right video
+1,ican leader 'delighted' with nobel peace prize: nobel committee,ican leader delighted nobel peace prize nobel committee
+0,dear america: stop supporting terrorists in syria,dear america stop supporting terrorist syria
+1,uk pm may to make brexit speech in italy on sept. 22: spokesman,uk pm may make brexit speech italy sept spokesman
+1,egypt defends human rights position after criticism from ohchr,egypt defends human right position criticism ohchr
+1,report on mh370 finds 'initially similar' route on pilot's flight simulator,report mh find initially similar route pilot flight simulator
+0,traitor: gop senator lindsey graham trashes and threatens president trump‚tells voters he won‚t back down on amnesty push,traitor gop senator lindsey graham trash threatens president trumptells voter wont back amnesty push
+1,palestinian cabinet convenes in gaza in move to reconcile with hamas,palestinian cabinet convenes gaza move reconcile hamas
+1,u.s.-backed militia to capture last raqqa areas in hours: spokesman,usbacked militia capture last raqqa area hour spokesman
+1,angola‚s samakuva to step down as unita opposition party leader,angola samakuva step unita opposition party leader
+0,architect of mass voter fraud: hollywood producer tells stunning story of how obama stole election in 2008,architect mass voter fraud hollywood producer tell stunning story obama stole election
+0,mark levin destroys joe scarborough‚defends trump in epic rant [video],mark levin destroys joe scarboroughdefends trump epic rant video
+0,is gop establishment responsible for pro-amnesty spanish version of nikki haley‚s gop response to obama‚s sotu? [video],gop establishment responsible proamnesty spanish version nikki haley gop response obamas sotu video
+0,us admits not targeting al nusra,u admits targeting al nusra
+0,boiler room ep #83 ‚ wouldn‚t it be nice‚,boiler room ep wouldnt nice
+0,epic news conference about milwaukee riots democrats won‚t want you to see: ‚stop trying to fix the police‚fix the ghettos‚,epic news conference milwaukee riot democrat wont want see stop trying fix policefix ghetto
+0,disgusting! deeply entrenched,disgusting deeply entrenched
+1,britain hopeful of 'good news' on northern ireland crisis: minister,britain hopeful good news northern ireland crisis minister
+0,hawaiian restaurant gets hammered with negative reviews after banning trump supporters: ‚you cannot eat here‚,hawaiian restaurant get hammered negative review banning trump supporter eat
+0,"breaking: starbucks ceo to step down after pledge to hire 10000 refugees backfires""",breaking starbucks ceo step pledge hire refugee backfire
+1,london police give all clear lift cordon in financial district,london police give clear lift cordon financial district
+0,breaking: why dr ben carson will exit presidential race,breaking dr ben carson exit presidential race
+0,christian high school told by state they are no longer allowed to pray before games,christian high school told state longer allowed pray game
+0,digital tyranny: google will make ‚those kinds of sites‚ harder to find,digital tyranny google make kind site harder find
+1,britain seeks to smooth brexit path for nuclear power,britain seek smooth brexit path nuclear power
+1,libyan sides call boris johnson's bodies remark 'unacceptable',libyan side call boris johnson body remark unacceptable
+0,ron paul: ‚i can‚t support trump if he‚s gop pick‚ and ‚neocons will love hillary‚,ron paul cant support trump he gop pick neocon love hillary
+1,"macron cast as out of touch says ""not aloof""",macron cast touch say aloof
+0,black espn sports announcer goes off on divisive leftist narrative: ‚so what are we saying‚that black lives matter only when we‚re killed by somebody who‚s not black?‚,black espn sport announcer go divisive leftist narrative sayingthat black life matter killed somebody who black
+0,former u.s. attorney: fbi‚s comey considered to be ‚dirty cop‚ and here‚s why [video],former u attorney fbi comey considered dirty cop here video
+1,britain wants brexit accord but prepared for a 'no deal': davis,britain want brexit accord prepared deal davis
+0,boiler room ‚ oregon standoff,boiler room oregon standoff
+1,south sudan rebel groups clash at least three dead,south sudan rebel group clash least three dead
+0,veterans can‚t get health care‚but these mn somali muslims got us taxpayer dollars for college‚used it for jihad,veteran cant get health carebut mn somali muslim got u taxpayer dollar collegeused jihad
+0,tough message from serious women who don‚t use genitalia as reason to vote for next president : ‚we don‚t feel safe‚ [video],tough message serious woman dont use genitalia reason vote next president dont feel safe video
+0,busted! media caught red-handed trying to demoralize trump supporters with phony polls,busted medium caught redhanded trying demoralize trump supporter phony poll
+0,will americans free themselves from the slavery of the democrat party‚or will we wait until it‚s too late? ‚the peasants are revolting‚,american free slavery democrat partyor wait late peasant revolting
+0,us admits not targeting al nusra,u admits targeting al nusra
+1,florida deaths in sweltering nursing home show post-disaster perils,florida death sweltering nursing home show postdisaster peril
+0,how to watch the highly anticipated ‚clinton cash‚ movie free!‚thanks to breitbart!,watch highly anticipated clinton cash movie freethanks breitbart
+0,wow! disturbing reason only 3 airports screen their employees every day before work [video],wow disturbing reason airport screen employee every day work video
+1,hurricane irma poses toughest test for u.s. nuclear industry since fukushima,hurricane irma pose toughest test u nuclear industry since fukushima
+1,palestinian president abbas says peace closer with trump engaged,palestinian president abbas say peace closer trump engaged
+0,st paul,st paul
+1,blunt instrument? what a list of banned articles says about china's censors,blunt instrument list banned article say china censor
+1,u.s. virgin islands seaports closed ahead of irma - port authority,u virgin island seaport closed ahead irma port authority
+0,firsthand account from the front lines of the marxist radical attack on free speech in chicago,firsthand account front line marxist radical attack free speech chicago
+0,trump supporter assaulted outside rally in san jose‚media silent [video],trump supporter assaulted outside rally san josemedia silent video
+1,ghana gas depot blast kills at least six: fire service,ghana gas depot blast kill least six fire service
+0,wow! soon-to-be former gop congressman jason chaffetz has surprising new job,wow soontobe former gop congressman jason chaffetz surprising new job
+1,gunmen kill two in attack on university convoy in kenya,gunman kill two attack university convoy kenya
+1,eu lawmakers give tentative nod to brexit clearing law that could clobber britain,eu lawmaker give tentative nod brexit clearing law could clobber britain
+1,lebanon arrests former mayor in border town near syria: security sources,lebanon arrest former mayor border town near syria security source
+1,greek police arrest syrian suspected of terrorism overseas,greek police arrest syrian suspected terrorism overseas
+1,denmark set to become next european country to ban burqas,denmark set become next european country ban burqa
+0,hannity interview with julian assange: wikileaks source is not the russian government,hannity interview julian assange wikileaks source russian government
+1,slovenian government faces test in pre-election investment referendum,slovenian government face test preelection investment referendum
+0,leaked tape exposes george soros,leaked tape expose george soros
+0,whoa! mainstream media has officially declared war on crooked hillary: ‚far and away the most devastating 10 minutes on hillary clinton you will ever see‚ [video],whoa mainstream medium officially declared war crooked hillary far away devastating minute hillary clinton ever see video
+0,frankfurt to evacuate thousands as huge wwii bomb defused,frankfurt evacuate thousand huge wwii bomb defused
+0,clinton mega-charity: ‚slush fund for the clinton‚s‚ took in $140 million‚ gave pittance in direct aid,clinton megacharity slush fund clinton took million gave pittance direct aid
+0,julian assange ‚ ‚everything that he has said,julian assange everything said
+1,the reuters graphic: the threat from bali's angry volcano,reuters graphic threat bali angry volcano
+0,a poem: ‚twas the night before cnn‚s christmas‚‚,poem twas night cnns christmas
+0,wow! refugees exposed: here‚s the cold hard truth the media won‚t tell you‚‚if saudi arabia is refusing to accept them because they are a national security threat,wow refugee exposed here cold hard truth medium wont tell youif saudi arabia refusing accept national security threat
+0,obama‚s muslim dhs advisor refused to videotape fellow muslim during investigation‚but wants every american gun owner to be forced to do this,obamas muslim dhs advisor refused videotape fellow muslim investigationbut want every american gun owner forced
+1,drunk refugees spit on and bite german nurses: force hospital to hire security,drunk refugee spit bite german nurse force hospital hire security
+1,israel endorses independent kurdish state,israel endorses independent kurdish state
+1,france's macron picked moment to put eu proposals to germany,france macron picked moment put eu proposal germany
+0,boom! kellyanne conway has advice for ‚able-bodied americans‚ on medicaid worried about losing health care: get a job! [video],boom kellyanne conway advice ablebodied american medicaid worried losing health care get job video
+0,words of wisdom from ‚the view‚: whoopie threatens to leave u.s. if trump doesn‚t stop picking on immigrants,word wisdom view whoopie threatens leave u trump doesnt stop picking immigrant
+1,mass integration: the race to capitalize on a virtual future,mass integration race capitalize virtual future
+1,about 100000 kurds have fled kirkuk since monday: kurdish officials,kurd fled kirkuk since monday kurdish official
+1,saakashvili plans to unite ukraine opposition against president,saakashvili plan unite ukraine opposition president
+0,wow! brave veteran confronts ferguson thugs stomping on u.s. flag: ‚my brothers died for that flag!‚ [video],wow brave veteran confronts ferguson thug stomping u flag brother died flag video
+0,democrat tries to attack shapiro over ‚white privilege‚‚then shapiro fires back,democrat try attack shapiro white privilegethen shapiro fire back
+1,new zealand held in suspense as kingmaker weighs coalition options,new zealand held suspense kingmaker weighs coalition option
+1,british pm to attend event in her local electoral district: bbc,british pm attend event local electoral district bbc
+0,ron paul on burns oregon standoff and jury nullification for the hammond family,ron paul burn oregon standoff jury nullification hammond family
+1,thousands evacuated in vietnam as floods landslides kill 46,thousand evacuated vietnam flood landslide kill
+0,[video] rino strategist karl rove has solution to gun violence: repeal second amendment,video rino strategist karl rove solution gun violence repeal second amendment
+1,u.s. embassy in saudi arabia cautions citizens after unconfirmed reports of foiled attack in jeddah,u embassy saudi arabia caution citizen unconfirmed report foiled attack jeddah
+1,rohingya refugees in pakistan fear for relatives in myanmar,rohingya refugee pakistan fear relative myanmar
+0,trump hater george ramos promotes movie showing illegal aliens being shot at border by drunk vigilante‚blames trump [video],trump hater george ramos promotes movie showing illegal alien shot border drunk vigilanteblames trump video
+0,planned parenthood gives award to colorado abortion clinic for killing more babies than previous year,planned parenthood give award colorado abortion clinic killing baby previous year
+0,florida mother allows baby to be bitten by snake‚then laughs in sick viral video,florida mother allows baby bitten snakethen laugh sick viral video
+0,why ‚moderate‚ muslims don‚t speak out: muslim shopkeeper makes video wishing customers ‚happy easter‚‚muslim man stabs him to death [video],moderate muslim dont speak muslim shopkeeper make video wishing customer happy eastermuslim man stab death video
+1,indonesia demands answers after military chief denied u.s. entry,indonesia demand answer military chief denied u entry
+1,hopes and frustrations as brexit talks resume after may speech,hope frustration brexit talk resume may speech
+0,millennial drops awesome truth bomb on her generation: ‚we idolize people like kim kardashian and then we shame people like tim tebow‚ [video],millennial drop awesome truth bomb generation idolize people like kim kardashian shame people like tim tebow video
+0,liberal culture rot: u of maryland teaches students ‚how to f*** in college‚ [video],liberal culture rot u maryland teach student f college video
+0,tucker carlson embarrasses liberal professor who said he ‚wanted to vomit‚ after passenger gave up 1st class seat to u.s. soldier [video],tucker carlson embarrasses liberal professor said wanted vomit passenger gave st class seat u soldier video
+0,seth rich murder has chilling similarities to clinton body count victims,seth rich murder chilling similarity clinton body count victim
+0,neocon files: the kagans are back ‚ wars to follow,neocon file kagans back war follow
+0,wow! texas man pays for awesome billboard slamming abc over fake russia-trump news coverage,wow texas man pay awesome billboard slamming abc fake russiatrump news coverage
+0,wow! jill stein‚s ‚fireside chat‚ exposes her delusion on recount [video],wow jill stein fireside chat expose delusion recount video
+1,china and india are development opportunities for each other not threats xi tells modi,china india development opportunity threat xi tell modi
+0,hello united air lines! delta just paid a woman $11k not to fly last weekend [video],hello united air line delta paid woman k fly last weekend video
+1,putin on iraqi kurdistan says moscow handles situation with care,putin iraqi kurdistan say moscow handle situation care
+0,detroit police forced to call out bomb squad to protect trump from hillary supporters offended by speech about bringing jobs back to blacks,detroit police forced call bomb squad protect trump hillary supporter offended speech bringing job back black
+1,vietnam court sentences to death petrovietnam ex-chairman in mass trial,vietnam court sentence death petrovietnam exchairman mass trial
+0,muslim migrant woman caught spitting on angry germans swarming around bus at asylum center [video],muslim migrant woman caught spitting angry german swarming around bus asylum center video
+0,diversity gone wild: us government plans to replace alexander hamilton on $10 bill with a woman‚,diversity gone wild u government plan replace alexander hamilton bill woman
+1,eu to ask britain to look for 'solutions' to ireland border: guardian,eu ask britain look solution ireland border guardian
+1,exclusive: west edges towards punishing myanmar army leaders over rohingya crisis - sources,exclusive west edge towards punishing myanmar army leader rohingya crisis source
+0,[video] above the law: hillary‚s campaign van caught going 92 in a 65 mph zone,video law hillary campaign van caught going mph zone
+0,ma college removes and burns american flag to protest trump‚s election [video],college remove burn american flag protest trump election video
+0,cloaked in conspiracy: overview of jfk files reopens door to coup d‚√©tat claims & cold war era false flag terror,cloaked conspiracy overview jfk file reopens door coup dtat claim cold war era false flag terror
+0,an arrogant obama admits he‚s learned nothing as president,arrogant obama admits he learned nothing president
+1,qatar suggests gulf crisis hurts fight against islamic state: cnbc,qatar suggests gulf crisis hurt fight islamic state cnbc
+1,florida stations face fuel shortages delays ahead of irma,florida station face fuel shortage delay ahead irma
+1,syrian army nears besieged troops in deir al-zor: state tv,syrian army nears besieged troop deir alzor state tv
+0,race obsessed mtv host mocks trump supporters: ‚how you gonna #boycotthamilton when you can‚t afford tickets in the first place?‚ [video],race obsessed mtv host mock trump supporter gon na boycotthamilton cant afford ticket first place video
+0,chris matthews confused about georgia election loss: ‚i don‚t know what the h*ll he was selling‚ [video],chris matthew confused georgia election loss dont know hll selling video
+0,gay voters and #blacklivesmatter to obama,gay voter blacklivesmatter obama
+1,ecuador judge orders arrest of vice president in odebrecht probe,ecuador judge order arrest vice president odebrecht probe
+1,london museum says serious incident outside working with police,london museum say serious incident outside working police
+1,eastern europe's nationalists feel vindicated by german vote,eastern europe nationalist feel vindicated german vote
+1,london's leadenhall market briefly evacuated after reports of suspect package,london leadenhall market briefly evacuated report suspect package
+0,john kerry‚s state dept reportedly funneled over $9 million to his daughter‚s foundation,john kerrys state dept reportedly funneled million daughter foundation
+0,she‚s got the scoop! catherine herridge: ‚obama put his hands on the scales of justice‚ [video],shes got scoop catherine herridge obama put hand scale justice video
+1,poland to allocate additional $55 bllion on defense by 2032: deputy minister,poland allocate additional bllion defense deputy minister
+0,no more mr. nice guy: trump takes off the gloves‚hammers obama on twitter,mr nice guy trump take gloveshammers obama twitter
+0,will taylor swift ‚bestie‚ and leftist who lied about being raped by a republican ruin her wholesome image?,taylor swift bestie leftist lied raped republican ruin wholesome image
+1,5-star's young popular di maio charts course to be italy pm,star young popular di maio chart course italy pm
+0,u.s. inauguration: historic day marks beginning of renewed ‚america first‚ era,u inauguration historic day mark beginning renewed america first era
+0,how blood money diplomacy and desperation are reuniting palestine,blood money diplomacy desperation reuniting palestine
+1,south korean foreign minister says north korea on 'reckless path',south korean foreign minister say north korea reckless path
+1,spain 2018 economic growth forecast at risk due to catalonia: deputy pm,spain economic growth forecast risk due catalonia deputy pm
+1,trump south korea's moon agree to boost defenses: white house,trump south korea moon agree boost defense white house
+0,jill stein‚s pa vote recount effort not looking good for crooked hillary,jill stein pa vote recount effort looking good crooked hillary
+1,china says to ban some petroleum exports to north korea,china say ban petroleum export north korea
+0,boiler room ‚ ep #49 ‚ what is real: brussels,boiler room ep real brussels
+1,north korea's bark may be worse than bite in threat to shoot down u.s. bombers,north korea bark may worse bite threat shoot u bomber
+0,obama‚s open border policy comes with serious national security consequences: iraqi military trainer caught crossing us-mexico border,obamas open border policy come serious national security consequence iraqi military trainer caught crossing usmexico border
+1,france's macron says work on brexit bill not even halfway done,france macron say work brexit bill even halfway done
+1,china's former u.n. ambassador moved to taiwan role,china former un ambassador moved taiwan role
+1,u.s. calls on china to use 'powerful tool' of oil to sway north korea,u call china use powerful tool oil sway north korea
+1,france's le pen congratulates german far-right afd,france le pen congratulates german farright afd
+1,catalonia's high court asks spanish police to provide security in case of independence,catalonia high court asks spanish police provide security case independence
+1,lebanese woman shot dead by four-year-old son in gun accident,lebanese woman shot dead fouryearold son gun accident
+0,breaking: us appeals court deals obama‚s executive amnesty huge blow,breaking u appeal court deal obamas executive amnesty huge blow
+0,an easy to read chart shows how bernie sanders‚ socialism is just a stepping stone to communism,easy read chart show bernie sander socialism stepping stone communism
+1,democrat lawmaker will be punished for putting jobs before ‚climate change‚: ‚they are after me‚,democrat lawmaker punished putting job climate change
+1,epa exercises enforcement discretion for all florida power plants,epa exercise enforcement discretion florida power plant
+1,merkel's conservatives warned not to close off coalition options,merkels conservative warned close coalition option
+1,u.s. requires enhanced screening of cargo from turkey,u requires enhanced screening cargo turkey
+1,thousands of homes wrecked by huge mexican quake death toll at 91,thousand home wrecked huge mexican quake death toll
+1,'we have the tap': turkey's erdogan threatens oil flow from iraq's kurdish area,tap turkey erdogan threatens oil flow iraq kurdish area
+0,mma fighter jake shields embarrasses cowards in masks for violent 20-on-1 beating of trump supporter [video]: ‚i was in berkeley and watched a man getting beat by a mob with no police help‚i was the only person to jump in and help‚,mma fighter jake shield embarrasses coward mask violent beating trump supporter video berkeley watched man getting beat mob police helpi person jump help
+0,sanders supporters ready to raise hell at dnc after e-mail leaks prove dems stole election from bernie,sander supporter ready raise hell dnc email leak prove dems stole election bernie
+1,nigeria's buhari urges calm after herdsmen kill 19 in central plateau state,nigeria buhari urge calm herdsman kill central plateau state
+0,tempers flare in dc: bikers for trump break through protester line‚rioters trap wife of trump supporter‚trump bikers brawl with masked protesters [video],temper flare dc bikers trump break protester linerioters trap wife trump supportertrump bikers brawl masked protester video
+0,barack obama‚s final arms-export totals doubles that of bush administration,barack obamas final armsexport total double bush administration
+1,north korea does not want war world does not want regime change: u.n.,north korea want war world want regime change un
+1,merkel says not weakened in coalition talks by state-level defeat,merkel say weakened coalition talk statelevel defeat
+1,france unveils labor reforms in first step to re-shaping economy,france unveils labor reform first step reshaping economy
+0,illegal aliens demand new bill of rights: to include citizenship,illegal alien demand new bill right include citizenship
+0,lol! democrats‚ ‚poster child for stupidity‚ can‚t tell msnbc host what her party stands for besides hating trump [video],lol democrat poster child stupidity cant tell msnbc host party stand besides hating trump video
+0,and so it begins‚inspired by gay marriage ruling‚polygamists apply for marriage license,beginsinspired gay marriage rulingpolygamists apply marriage license
+0,unreal! obama blames syrian civil war on climate change‚mocks those who wear flag pins [video],unreal obama blame syrian civil war climate changemocks wear flag pin video
+0,state of oregon takes kids from loving parent‚s home because they‚re ‚not intelligent enough‚ to raise children,state oregon take kid loving parent home theyre intelligent enough raise child
+0,wow! benghazi victim‚s sister speaks out: hillary talked to families of benghazi victims 2 days after attack‚asked them to ‚feel sad‚ for muslim jihadi attackers [video],wow benghazi victim sister speaks hillary talked family benghazi victim day attackasked feel sad muslim jihadi attacker video
+0,breaking: nyc protest gets ugly: anti-american protesters battle with cops [video],breaking nyc protest get ugly antiamerican protester battle cop video
+0,a picture is worth a thousand words: a lone socialist takes this ironic message to trump,picture worth thousand word lone socialist take ironic message trump
+1,u.s. nigerien troops killed in ambush on patrol in niger,u nigerien troop killed ambush patrol niger
+0,multi-millionaire global-warming hypocrites leonardo dicaprio,multimillionaire globalwarming hypocrite leonardo dicaprio
+0,man arrested for asking muslim woman: ‚excuse me,man arrested asking muslim woman excuse
+1,spain gives catalan leader 8 days to drop independence,spain give catalan leader day drop independence
+1,energised challenge by tokyo governor exposes risk of pm abe's snap poll decision,energised challenge tokyo governor expose risk pm abes snap poll decision
+1,eu will cut some money for turkey as ties sour,eu cut money turkey tie sour
+1,putin complains russian media abroad face unacceptable pressure,putin complains russian medium abroad face unacceptable pressure
+1,behind the bombast: north korea's genteel foreign minister,behind bombast north korea genteel foreign minister
+1,tillerson stresses diplomacy on north korea amid threats: abc,tillerson stress diplomacy north korea amid threat abc
+0,nyc avis car rental refuses to rent car to israeli,nyc avis car rental refuse rent car israeli
+1,iceland pm calls snap election after a coalition party quits,iceland pm call snap election coalition party quits
+1,bangladesh grants bail to two detained myanmar journalists,bangladesh grant bail two detained myanmar journalist
+0,"trump supporters react to debate: ‚clinton news network (cnn) no longer picks our president‚‚florida gives trump rock star treatment‚fire marshall turns 12000 away""",trump supporter react debate clinton news network cnn longer pick presidentflorida give trump rock star treatmentfire marshall turn away
+1,turkey says talk of ending its eu accession undermines europe,turkey say talk ending eu accession undermines europe
+0,breaking ramadan update: obama‚s ‚not islamic‚ jv team yells ‚allahu akbar‚‚takes 20 ‚foreigners‚ hostage in bangladesh restaurant [video],breaking ramadan update obamas islamic jv team yell allahu akbartakes foreigner hostage bangladesh restaurant video
+1,eu court migrant ruling comes gift-wrapped for orban re-election bid,eu court migrant ruling come giftwrapped orban reelection bid
+1,iran prepared to resume curbed nuclear work if trump quits deal: iranian official,iran prepared resume curbed nuclear work trump quits deal iranian official
+0,hillary clinton survives another fbi pantomime,hillary clinton survives another fbi pantomime
+1,spanish senate could approve catalan direct rule measures as soon as next week: spokeswoman,spanish senate could approve catalan direct rule measure soon next week spokeswoman
+1,san bernardino: two adults dead,san bernardino two adult dead
+0,new handgun design folds up like smartphone‚but is this really a good idea?,new handgun design fold like smartphonebut really good idea
+0,communist george soros says trump will win popular vote in landslide,communist george soros say trump win popular vote landslide
+0,sickening! mtv host mocks senator jeff sessions‚ asian grandchildren,sickening mtv host mock senator jeff session asian grandchild
+1,u.n. to vote on new north korea sanctions on monday afternoon: diplomats,un vote new north korea sanction monday afternoon diplomat
+0,michelle obama dishes dirt on barack: ‚he barely got his work done‚he was a bum!‚ [video],michelle obama dish dirt barack barely got work donehe bum video
+0,throwback: how socialist bernie sanders used other people‚s money to pay family members over $150k,throwback socialist bernie sander used people money pay family member k
+0,stunner: donald trump is next president of united states,stunner donald trump next president united state
+0,progressives outraged over beyonce ‚so white‚ wax figure at madame tussauds,progressive outraged beyonce white wax figure madame tussaud
+0,mainstream media fake news: 21st century wire debates american ‚liberal‚ academic,mainstream medium fake news st century wire debate american liberal academic
+1,lebanon says foils attacks after warnings from foreign embassies,lebanon say foil attack warning foreign embassy
+1,u.s. service member killed in iraq ied blast: pentagon,u service member killed iraq ied blast pentagon
+0,obama tells 60 minutes he could win a third term,obama tell minute could win third term
+0,where was gm security? valet parking attendant with gun saves life of female stabbing victim in massive tech facility,gm security valet parking attendant gun save life female stabbing victim massive tech facility
+1,argentine mid-term campaign pauses after body found in patagonia,argentine midterm campaign pause body found patagonia
+0,baltimore‚s overzealous prosecutor busted ‚favoriting‚ racist tweets [video],baltimore overzealous prosecutor busted favoriting racist tweet video
+1,south koreans seek to visit once-jointly run factory zone in north,south korean seek visit oncejointly run factory zone north
+1,japan pm abe says to discuss north korea 'thoroughly' with trump,japan pm abe say discus north korea thoroughly trump
+0,how president eisenhower solved the illegal immigration problem in america,president eisenhower solved illegal immigration problem america
+0,members: ep #5 ‚ drive by wire: ‚taxi to the un‚ with patrick and matt lee,member ep drive wire taxi un patrick matt lee
+1,uk pm may says brexit transition period to last around two years,uk pm may say brexit transition period last around two year
+0,media silent: president trump makes americans $4 trillion richer in first 6 months‚compare to obama‚s radical first 6 months in office,medium silent president trump make american trillion richer first monthscompare obamas radical first month office
+0,trump‚s best campaign ad ever just came from barack obama‚enjoy! [video],trump best campaign ad ever came barack obamaenjoy video
+0,things get ugly when iraq veteran confronts terrorist sympathizers protesting on street corner [video],thing get ugly iraq veteran confronts terrorist sympathizer protesting street corner video
+1,swedish opposition parties drops vote of no confidence in defense minister,swedish opposition party drop vote confidence defense minister
+0,trump supporters storm maxine waters town hall‚demand entry after being denied‚‚let us in!‚ [video],trump supporter storm maxine water town halldemand entry deniedlet u video
+1,qatar kuwait stop renewing visas for north korean workers,qatar kuwait stop renewing visa north korean worker
+1,u.n. assisting thousands of migrants in libyan smuggling hub,un assisting thousand migrant libyan smuggling hub
+1,pakistani anti-corruption body arrests son-in-law of ousted pm sharif,pakistani anticorruption body arrest soninlaw ousted pm sharif
+1,wheelbarrow bomb kills man pushing it in somalia‚s puntland police say,wheelbarrow bomb kill man pushing somalia puntland police say
+0,viral video: man calls out black lives matter for not helping louisiana flood victims,viral video man call black life matter helping louisiana flood victim
+1,boiler room ep #80 ‚ heads they win,boiler room ep head win
+0,cowardly antifa thugs surround afghanistan veteran at boston free speech rally‚scream in his face: ‚f*ck off nazi scum!‚,cowardly antifa thug surround afghanistan veteran boston free speech rallyscream face fck nazi scum
+1,uk's may 'receiving regular updates' on london tube station incident: pm's office,uk may receiving regular update london tube station incident pm office
+1,turkey to close air space to northern iraq work with baghdad on border,turkey close air space northern iraq work baghdad border
+0,cnn host doesn‚t recognize star spangled banner‚tells viewers to listen to french national anthem,cnn host doesnt recognize star spangled bannertells viewer listen french national anthem
+0,classic trump! president trump announces where he‚ll be on eve of white house correspondents dinner‚check mate!,classic trump president trump announces hell eve white house correspondent dinnercheck mate
+1,thailand's ousted pm yingluck has fled abroad: sources,thailand ousted pm yingluck fled abroad source
+0,oops! dinesh d‚souza points out something that‚s missing in photo with #wannabepresident obama and baby at airport,oops dinesh dsouza point something thats missing photo wannabepresident obama baby airport
+1,trump springs the neocon trap again: north korea‚s ‚test‚ is no act of war,trump spring neocon trap north korea test act war
+0,breaking: flint‚s democrat mayor sued after whistleblower rats her out for stealing donations meant for residents,breaking flint democrat mayor sued whistleblower rat stealing donation meant resident
+0,cover-up: both obama and clinton lied about trading classified emails,coverup obama clinton lied trading classified email
+0,wow! alex jones releases secretly recorded interview with megyn kelly: ‚i‚ve never done this in 22 years,wow alex jones release secretly recorded interview megyn kelly ive never done year
+0,breaking: planned parenthood pulls a lame pr stunt and gets busted,breaking planned parenthood pull lame pr stunt get busted
+0,trump was right: latest arrests prove threats to jewish centers in us were false flags,trump right latest arrest prove threat jewish center u false flag
+1,as brexit clock ticks down eu eyes new offer from may,brexit clock tick eu eye new offer may
+1,turnout in german election slightly lower than 2013: official,turnout german election slightly lower official
+1,final survey before new zealand votes shows ruling nationals keeping lead,final survey new zealand vote show ruling national keeping lead
+0,like victims of spousal abuse‚middle eastern christians fear harsher treatment by muslims if u.s. makes rescuing them a priority: ‚don‚t help us or we‚ll get beaten again‚,like victim spousal abusemiddle eastern christian fear harsher treatment muslim u make rescuing priority dont help u well get beaten
+0,coke zero: what went wrong with the marco rubio brand?,coke zero went wrong marco rubio brand
+1,uk border guard arrested in france in drugs firearms bust,uk border guard arrested france drug firearm bust
+1,south africa's court to hear state's appeal against pistorius in november,south africa court hear state appeal pistorius november
+0,netanyahu's son under fire over 'anti-semitic' imagery on facebook,netanyahus son fire antisemitic imagery facebook
+1,explosion in southeast turkey kills two soldiers: cnn turk,explosion southeast turkey kill two soldier cnn turk
+0,whoa! rand paul,whoa rand paul
+0,breaking: ‚al jazeera america‚ shuts down,breaking al jazeera america shuts
+1,ireland set to vote on loosening abortion laws in may or june,ireland set vote loosening abortion law may june
+1,togo leader must quit now for protests to stop: opposition head,togo leader must quit protest stop opposition head
+0,deranged leftists cross the line: chicago play targeting 10 yr old barron trump opens tonight in obama‚s old neighborhood,deranged leftist cross line chicago play targeting yr old barron trump open tonight obamas old neighborhood
+1,chinese vietnamese communist parties have 'shared destiny': beijing,chinese vietnamese communist party shared destiny beijing
+0,family of s.c. shooting victim has a message for al sharpton and he‚s not gonna like it‚,family sc shooting victim message al sharpton he gon na like
+0,priceless! anti-trump rioter throws tantrum when arrested: ‚i want‚i want‚i want!‚ [video],priceless antitrump rioter throw tantrum arrested wanti wanti want video
+0,finger in every pie: how cia produces our ‚news‚ and entertainment,finger every pie cia produce news entertainment
+0,trump stays above fray in flint after democrat operative minister sets trap to humiliate him during speech,trump stay fray flint democrat operative minister set trap humiliate speech
+1,mexican leftist obrador leads ahead of 2018 election: poll,mexican leftist obrador lead ahead election poll
+1,irma shakes havana's deadly crumbling buildings,irma shake havana deadly crumbling building
+1,egyptian air force strikes arms convoy at libyan border,egyptian air force strike arm convoy libyan border
+1,henningsen on trump‚s foreign policy: russia,henningsen trump foreign policy russia
+0,lgbt community furious after catholic school rejects ‚boys,lgbt community furious catholic school reject boy
+0,fake news week: exposing the mainstream consensus reality complex,fake news week exposing mainstream consensus reality complex
+1,putin and trump to potentially meet in slovenia,putin trump potentially meet slovenia
+0,chelsea clinton uses ‚lucifer‚ to support argument for tearing down confederate statues‚instantly regrets it,chelsea clinton us lucifer support argument tearing confederate statuesinstantly regret
+1,trump to end funding for taxpayer-funded,trump end funding taxpayerfunded
+1,cambodia deports 74 chinese arrested for telecom extortion scams,cambodia deports chinese arrested telecom extortion scam
+1,graft probe into mexico president's ally poses tricky challenge ahead of elections,graft probe mexico president ally pose tricky challenge ahead election
+1,polish president backs down in judicial reform spat,polish president back judicial reform spat
+0,video: top 10 most embarrassing presidential family members,video top embarrassing presidential family member
+0,hillary to obama: ‚call off your f‚king dogs‚,hillary obama call fking dog
+0,democrats freak out as shocking number of union members plan to vote for ‚blue-collar billionaire‚ donald trump [video],democrat freak shocking number union member plan vote bluecollar billionaire donald trump video
+0,president trump‚s new chief of staff wants his boss to stop tweeting‚but only about one thing,president trump new chief staff want bos stop tweetingbut one thing
+0,muslim illegal alien claims sex with dead girl is not a crime‚lawyers fight to have charges dropped,muslim illegal alien claim sex dead girl crimelawyers fight charge dropped
+1,u.s. will stand be steadfast ally to britain as brexit takes shape: tillerson,u stand steadfast ally britain brexit take shape tillerson
+0,trump bares himself at unga,trump bares unga
+0,moore: why millions of americans are voting trump,moore million american voting trump
+0,confirmed: fbi raids home of former trump manager paul manafort,confirmed fbi raid home former trump manager paul manafort
+1,czech election front-runner likely to put stamp on state-owned cez,czech election frontrunner likely put stamp stateowned cez
+1,text of nobel peace prize award to anti-nuclear campaign ican,text nobel peace prize award antinuclear campaign ican
+0,she‚s b-a-a-a-ckkkk!! hillary makes crazy video calling leftist troops to join radicals in fight against trump‚‚keep fighting!‚ [video],shes baaackkkk hillary make crazy video calling leftist troop join radical fight trumpkeep fighting video
+1,catalan govt to blame for companies' exodus from region: spanish finance minister,catalan govt blame company exodus region spanish finance minister
+0,leftists call for ivanka trump brand boycott‚this huge retailer is sticking with her,leftist call ivanka trump brand boycottthis huge retailer sticking
+1,u.n. refugee agency urges hungary to join eu migrant quota plan,un refugee agency urge hungary join eu migrant quota plan
+0,breaking: wikileaks releases ‚vault 7‚ part 1 ‚ ‚year zero‚,breaking wikileaks release vault part year zero
+1,house speaker ryan expects more emergency relief for hurricanes: fox,house speaker ryan expects emergency relief hurricane fox
+1,top international lawyers say hong kong rule of law under threat,top international lawyer say hong kong rule law threat
+1,kremlin says russian-saudi military cooperation not aimed at anyone,kremlin say russiansaudi military cooperation aimed anyone
+0,boiler room ‚ examination,boiler room examination
+1,china jails former tianjin mayor for 12 years over graft,china jail former tianjin mayor year graft
+0,leftist freaks openly call for non-peaceful inauguration actions: ‚we are not in favor of a peaceful transition of power‚after the election,leftist freak openly call nonpeaceful inauguration action favor peaceful transition powerafter election
+0,stop the madness! nyc firefighters take first ‚trans 101‚ course‚learn correct way to interact with transgenders,stop madness nyc firefighter take first trans courselearn correct way interact transgenders
+1,former finance minister schaeuble elected to head german parliament,former finance minister schaeuble elected head german parliament
+0,history lesson: america‚s renegade warfare,history lesson america renegade warfare
+0,busted! anti-trump contractor arrested for leaking classified info to the media [video],busted antitrump contractor arrested leaking classified info medium video
+0,obama‚s economic legacy in 9 easy to read charts,obamas economic legacy easy read chart
+1,iranian president defends nuclear deal says trump can not undermine it,iranian president defends nuclear deal say trump undermine
+0,nasty women! ivanka trump booed‚hissed by unbelievably rude crowd during panel discussion on women in germany [video],nasty woman ivanka trump booedhissed unbelievably rude crowd panel discussion woman germany video
+0,watch kellyanne conway‚s mic drop: ‚i think the biggest fake news was that donald trump couldn‚t win.‚,watch kellyanne conways mic drop think biggest fake news donald trump couldnt win
+1,china says taiwan not a country taiwan says china needs reality check,china say taiwan country taiwan say china need reality check
+0,you gotta love this: [video] white girl told she‚s not allowed to wear dreadlocks to school,got ta love video white girl told shes allowed wear dreadlock school
+0,hillary clinton: we all know she‚s deceitful and dishonest,hillary clinton know shes deceitful dishonest
+1,saudi shura council to vote on curbing autonomy of morality police,saudi shura council vote curbing autonomy morality police
+0,obama‚s legacy: washington is lying about isis,obamas legacy washington lying isi
+1,russia summons u.s. envoy over missing consular flags,russia summons u envoy missing consular flag
+0,why did clinton appointed judge release extremely dangerous muslim inmate,clinton appointed judge release extremely dangerous muslim inmate
+0,watch the criminal history of hillary and bill: clinton insider explains their crimes and why they never got caught,watch criminal history hillary bill clinton insider explains crime never got caught
+0,not grassroots: #ferguson protestors paid over $5k to attack police,grassroots ferguson protestors paid k attack police
+1,risk of afghan civilian casualties could damp support for u.s. strikes on militants,risk afghan civilian casualty could damp support u strike militant
+1,turkish iranian presidents discuss iraqi kurdish referendum: erdogan's office,turkish iranian president discus iraqi kurdish referendum erdogans office
+1,nigeria anti-graft agency rejects ex-first lady's 'witch-hunt' accusation,nigeria antigraft agency reject exfirst lady witchhunt accusation
+1,merkel pushes for three-way 'jamaica' coalition in germany,merkel push threeway jamaica coalition germany
+0,voting machines for hillary! md woman reports voting straight ticket‚watched machine flip to hillary [video],voting machine hillary md woman report voting straight ticketwatched machine flip hillary video
+1,japan's abe says north korea situation needs quick action,japan abe say north korea situation need quick action
+1,colombia's golfo crime gang willing to surrender president says,colombia golfo crime gang willing surrender president say
+0,college professor caught on tape: you can‚t have peace if ‚whiteness‚ exists‚poor whites also have ‚privilege‚,college professor caught tape cant peace whiteness existspoor white also privilege
+1,"say good bye to london: radical muslim wins london‚s mayoral election by over 300000 votes""",say good bye london radical muslim win london mayoral election vote
+1,malawi arrests 140 in clampdown after 'vampirism' killings,malawi arrest clampdown vampirism killing
+0,murdered chicago teen was ward of the state‚so why did his mom and sister get $5 million settlement?,murdered chicago teen ward stateso mom sister get million settlement
+0,shocking number of michigan voters want muslim ban in their state,shocking number michigan voter want muslim ban state
+0,why did harry reid lie about the ‚accident‚ he had that left him blind in one eye?,harry reid lie accident left blind one eye
+0,obama‚s chief of staff warns america‚he‚s not going away quietly: promises ‚audacious executive actions‚ including gun control,obamas chief staff warns americahes going away quietly promise audacious executive action including gun control
+1,tillerson says saudi arabia not ready for talks with qatar on gulf crisis,tillerson say saudi arabia ready talk qatar gulf crisis
+0,breaking: why did massachusetts officials wait so long to release this video showing thug shooting police officer in face? [video],breaking massachusetts official wait long release video showing thug shooting police officer face video
+0,hilarious! trump reserves ‚special seats‚ for nyt‚s reporters at press conference after publishing fake news on russian probe,hilarious trump reserve special seat nyts reporter press conference publishing fake news russian probe
+0,breaking energy department audit reveals shocking price tag and liability for obama‚s green energy failures,breaking energy department audit reveals shocking price tag liability obamas green energy failure
+0,how progressive! women‚s march organizer has ties to terror group hamas‚advocates for sharia law,progressive womens march organizer tie terror group hamasadvocates sharia law
+1,false profits: the u.s. military‚s war over russia,false profit u military war russia
+0,bronx hospital shooting: multiple people shot,bronx hospital shooting multiple people shot
+1,rohingya refugees scoff at myanmar's assurances on going home,rohingya refugee scoff myanmar assurance going home
+1,georgian president vetoes new constitution draft,georgian president veto new constitution draft
+0,latest poll: bernie sanders is the only candidate who beats trump,latest poll bernie sander candidate beat trump
+1,saudi airplane arrives in baghdad first time in 27 years,saudi airplane arrives baghdad first time year
+0,breaking: [video] baltimore thug arrested after shooting 5 people,breaking video baltimore thug arrested shooting people
+0,how can this happen in america? atheist mayor suspends and jails la fireman for praying at scene of fire,happen america atheist mayor suspends jail la fireman praying scene fire
+0,redux 1963? the deep state vs donald trump,redux deep state v donald trump
+1,militants kill five in attack in egypt's sinai: interior ministry,militant kill five attack egypt sinai interior ministry
+1,china will not deviate from path of reform says party spokesman,china deviate path reform say party spokesman
+0,seriously? pro-illegal alien supporters demand cops explain why they can‚t physically attack trump supporters [video],seriously proillegal alien supporter demand cop explain cant physically attack trump supporter video
+1,suspected boko haram members kill 18 people in northeast nigeria,suspected boko haram member kill people northeast nigeria
+1,new sanctions aim to restrict venezuela access to u.s. debt market,new sanction aim restrict venezuela access u debt market
+1,new zealand labour still wants tpp part but only if it can ban foreign home ownership,new zealand labour still want tpp part ban foreign home ownership
+0,wow! 1996 nyt‚s stunning article slays first lady hillary clinton‚calls her a ‚congenital liar‚‚‚she is in the longtime habit of lying; and she has never been called to account for lying‚,wow nyts stunning article slays first lady hillary clintoncalls congenital liarshe longtime habit lying never called account lying
+1,kenya police disperse protesters as odinga tempers vote protest call,kenya police disperse protester odinga temper vote protest call
+1,britain says moody's downgrade based on 'outdated' brexit view,britain say moody downgrade based outdated brexit view
+0,the left is officially isis: thug destroys oldest monument to christopher columbus [video],left officially isi thug destroys oldest monument christopher columbus video
+1,saudi police release teenager detained for dancing in street,saudi police release teenager detained dancing street
+1,henningsen on white house press dinner: ‚the fourth estate is nonexistent in america‚,henningsen white house press dinner fourth estate nonexistent america
+1,first german immigration law on agenda as merkel seeks coalition,first german immigration law agenda merkel seek coalition
+1,guatemala president retains immunity from prosecution in graft probe,guatemala president retains immunity prosecution graft probe
+0,must barack obama after january 20th‚this will make your day!,must barack obama january ththis make day
+1,two-thirds of us navy strike fighter jets grounded: navy claims no money to fix them,twothirds u navy strike fighter jet grounded navy claim money fix
+1,beijing government pulls winter construction ban from website,beijing government pull winter construction ban website
+0,hannity interview with julian assange: wikileaks source is not the russian government,hannity interview julian assange wikileaks source russian government
+0,democrats are afraid that trump will beat hillary‚and here‚s the proof [video],democrat afraid trump beat hillaryand here proof video
+0,philosopher slavoj ≈ωi≈æek: ‚the american left lacks authenticity‚,philosopher slavoj iek american left lack authenticity
+1,u.s. struggles to convince iraqis that washington doesn‚t support isis,u struggle convince iraqi washington doesnt support isi
+1,canada frets over possible huge surge in asylum-seekers: sources,canada fret possible huge surge asylumseekers source
+1,trump says will discuss military issues qatar with kuwait's emir,trump say discus military issue qatar kuwait emir
+1,italy's berlusconi says center-right agrees pact on next pm candidate,italy berlusconi say centerright agrees pact next pm candidate
+0,boom! tomi lahren‚s top tips for liberals in 2017 [video],boom tomi lahrens top tip liberal video
+0,boiler room #104 ‚ war sells‚ but who‚s buying,boiler room war sell who buying
+0,charlottesville and the problem of left & right identity politics in america,charlottesville problem left right identity politics america
+1,supreme court justice temporarily preserves trump refugee ban,supreme court justice temporarily preserve trump refugee ban
+1,father of philippine islamist militant leaders dies in government custody,father philippine islamist militant leader dy government custody
+0,billionaire ‚bilderberger‚ david rockefeller dead at 101,billionaire bilderberger david rockefeller dead
+0,breaking scare: donald trump rushed offstage after protester tackled to the ground [video],breaking scare donald trump rushed offstage protester tackled ground video
+0,watch the fireworks! naacp president freaks when he‚s asked if he‚d ‚be okay with a congressional white caucus? [video],watch firework naacp president freak he asked hed okay congressional white caucus video
+1,show #137 ‚ sunday wire: ‚eyes on the matrix‚ with acr‚s hesher and shawn helton,show sunday wire eye matrix acrs hesher shawn helton
+1,we'll lift russia sanctions when east ukraine is peaceful: merkel,well lift russia sanction east ukraine peaceful merkel
+0,god squad: jury finds polygamous mormon towns guilty of discriminating against ‚non-believers‚,god squad jury find polygamous mormon town guilty discriminating nonbeliever
+1,russia protests to u.s. 'shameful' theft of consulate flags,russia protest u shameful theft consulate flag
+1,putin says trump is listening to russia's views on north korea crisis,putin say trump listening russia view north korea crisis
+0,"holy widows and orphans! over 5000 isis trained jihadi‚s living freely in europe""",holy widow orphan isi trained jihadis living freely europe
+0,u.n. beefs up guards as it scales up presence in libya,un beef guard scale presence libya
+1,last flight departs as iraq imposes ban for kurdish independence vote,last flight departs iraq imposes ban kurdish independence vote
+0,wacko liberal pundit: ‚good news‚ because isis attacks in u.s. will just be small scale,wacko liberal pundit good news isi attack u small scale
+1,uk court agrees to extradite suspect in italy model kidnap plot,uk court agrees extradite suspect italy model kidnap plot
+1,japan inc wants abe election win but smaller majority,japan inc want abe election win smaller majority
+0,not so funny guy,funny guy
+0,george lucas gives verdict on new star wars spin-off ‚rogue one‚,george lucas give verdict new star war spinoff rogue one
+1,u.n. rights boss seeks probe into catalonia violence political talks,un right bos seek probe catalonia violence political talk
+0,ouch! new book takes readers inside hillary‚s nasty campaign: self-righteous hillary was ‚so mad she couldn‚t think straight‚‚attacked her aides‚focused too much on black voters‚bill gave aides an ‚ass-chewing‚,ouch new book take reader inside hillary nasty campaign selfrighteous hillary mad couldnt think straightattacked aidesfocused much black votersbill gave aide asschewing
+0,breaking: socialist brazil declares financial disaster less than 2 months before start of olympics,breaking socialist brazil declares financial disaster less month start olympics
+1,iraqi pm says kurds 'playing with fire' with independence vote: report,iraqi pm say kurd playing fire independence vote report
+0,wrong color: if left really cared about police brutality,wrong color left really cared police brutality
+0,president trump hilariously exposes hypocrisy of democrats,president trump hilariously expose hypocrisy democrat
+0,ammon and ryan bundy found ‚not guilty‚ in oregon federal case,ammon ryan bundy found guilty oregon federal case
+0,deadbeats beware: trump‚s food stamp reform is your worst nightmare,deadbeat beware trump food stamp reform worst nightmare
+0,georgia republican candidate‚s neighborhood blocked off after threatening discovery in mailboxes: ‚your neighbor karen handel is a dirty fascist‚,georgia republican candidate neighborhood blocked threatening discovery mailbox neighbor karen handel dirty fascist
+1,wife of detained taiwan activist to attend his trial in china,wife detained taiwan activist attend trial china
+1,one killed several injured in bridge collapse in eastern india,one killed several injured bridge collapse eastern india
+0,muslim scholar criticizes obama‚explains why americans need to give president-elect trump a chance [video],muslim scholar criticizes obamaexplains american need give presidentelect trump chance video
+1,russia says its air strike kills several top islamic state commanders in syria,russia say air strike kill several top islamic state commander syria
+0,ep #15: patrick henningsen live ‚ ‚crisis of american liberalism‚ with guest caleb maupin,ep patrick henningsen live crisis american liberalism guest caleb maupin
+1,stock futures dip after north korea nuclear test,stock future dip north korea nuclear test
+1,shout! poll: do the ‚white helmets‚ qualify for a nobel peace prize?,shout poll white helmet qualify nobel peace prize
+1,vietnam protests over chinese live-fire drills in south china sea,vietnam protest chinese livefire drill south china sea
+0,no wonder he‚s smiling: michigan‚s most liberal college awards president salary increase to $772500,wonder he smiling michigan liberal college award president salary increase
+1,yemen's saleh keeps friend and foe guessing after skirmish with houthi allies,yemen saleh keep friend foe guessing skirmish houthi ally
+0,confirmed: fbi raids home of former trump manager paul manafort,confirmed fbi raid home former trump manager paul manafort
+0,ep #13: patrick henningsen live ‚ ‚fake news,ep patrick henningsen live fake news
+1,strong chances of brexit no deal but uk government may collapse: scottish minister,strong chance brexit deal uk government may collapse scottish minister
+0,sabo‚the most badass conservative artist in america will be on tucker carlson tonight‚why you don‚t want to miss it! [video],sabothe badass conservative artist america tucker carlson tonightwhy dont want miss video
+0,media ignores! huge list of attacks on conservatives is shocking,medium ignores huge list attack conservative shocking
+0,insane video: it‚s graduation time‚and that means it‚s time for our racist first lady to spew hateful lies and rhetoric about racist white america and the mistreatment of blacks,insane video graduation timeand mean time racist first lady spew hateful lie rhetoric racist white america mistreatment black
+1,haftar says force remains option in libya but political solution best,haftar say force remains option libya political solution best
+1,in athens macron to urge renewal of eu democracy,athens macron urge renewal eu democracy
+0,protesters can‚t stop a humble trump: delivers a powerful message to detroit [video],protester cant stop humble trump delivers powerful message detroit video
+1,sudan's bashir visits darfur ahead of u.s. sanctions decision,sudan bashir visit darfur ahead u sanction decision
+1,washington state judge issues temporarily block on trump‚s immigration ban nationwide,washington state judge issue temporarily block trump immigration ban nationwide
+1,london sky turns yellow as storm blows in saharan dust spanish smoke,london sky turn yellow storm blow saharan dust spanish smoke
+0,man makes viral video: demonstrates how obama made himself cry during gun control speech,man make viral video demonstrates obama made cry gun control speech
+0,desperate progressives are losing in germany: leftist politician stabs himself 17 times,desperate progressive losing germany leftist politician stab time
+1,china urges peaceful diplomatic resolution to north korea tensions,china urge peaceful diplomatic resolution north korea tension
+1,imf's lipton says ukraine risks going backwards,imf lipton say ukraine risk going backwards
+0,breaking: why did obama just break democrat ranks,breaking obama break democrat rank
+0,hilarious hypocrisy on display: 3 intolerant leftist groups stop d.c. gay pride parade‚force them to take alternate route [video],hilarious hypocrisy display intolerant leftist group stop dc gay pride paradeforce take alternate route video
+1,new zealand pm-designate confirms review of central bank act,new zealand pmdesignate confirms review central bank act
+0,why trump‚s new ceo will be the left‚s worst nightmare,trump new ceo left worst nightmare
+1,brexit can be 'comfortably' negotiated in two years: johnson,brexit comfortably negotiated two year johnson
+1,many nigerians displaced by boko haram fighting not ready to return home,many nigerian displaced boko haram fighting ready return home
+1,uk lawmakers back eu withdrawal bill at second reading,uk lawmaker back eu withdrawal bill second reading
+0,justice‚nc thug style: nothing says ‚injustice‚ for the black man like looting a walmart [video],justicenc thug style nothing say injustice black man like looting walmart video
+0,unhinged mika called president trump ‚not well,unhinged mika called president trump well
+0,president obama arrives in cuba,president obama arrives cuba
+1,patrick henningsen and don debar discuss trump‚s ‚immigration ban‚ and the media reaction,patrick henningsen debar discus trump immigration ban medium reaction
+1,french police find more explosives after raid near paris,french police find explosive raid near paris
+1,france backs tough anti-terrorism bill after wave of attacks,france back tough antiterrorism bill wave attack
+1,sweden threatens to review engagement with cambodia,sweden threatens review engagement cambodia
+0,new law will punish muslim migrants‚assimilate or get out!,new law punish muslim migrantsassimilate get
+0,dopey santas,dopey santa
+0,migrants brutally gang rape 3 yr old boy at asylum center in norway,migrant brutally gang rape yr old boy asylum center norway
+0,busted! latest woman to accuse trump of sexual advances recently emailed him asking for help,busted latest woman accuse trump sexual advance recently emailed asking help
+1,hundreds of suspected islamic state militants surrender in iraq: source,hundred suspected islamic state militant surrender iraq source
+1,france criticizes u.s. travel ban on chadian ally urges reversal,france criticizes u travel ban chadian ally urge reversal
+0,strange: hillary goes off the rails in labor union speech,strange hillary go rail labor union speech
+1,afghan president says trump war plan has better chance than obama's,afghan president say trump war plan better chance obamas
+0,claremont colleges ‚students of color‚ refuse to live with whites: ‚i don‚t want to live with any white folks‚‚‚don‚t see how this is racist at all‚,claremont college student color refuse live white dont want live white folksdont see racist
+0,loretta lynch makes disturbing video encouraging dems to fight back like those before us: ‚they‚ve marched‚they‚ve bled‚and yes,loretta lynch make disturbing video encouraging dems fight back like u theyve marchedtheyve bledand yes
+0,this is rich! commie nyc mayor unleashes class war on scott walker from swanky private club,rich commie nyc mayor unleashes class war scott walker swanky private club
+0,elections have consequences: muslim mayor makes nj city a sanctuary city: ‚no city funds or resources shall be used to assist in the enforcement of federal immigration law‚,election consequence muslim mayor make nj city sanctuary city city fund resource shall used assist enforcement federal immigration law
+1,nz opposition labour says in a stronger position to negotiate government after final election tally,nz opposition labour say stronger position negotiate government final election tally
+1,despite by-election loss pakistan opposition claims momentum for 2018,despite byelection loss pakistan opposition claim momentum
+1,islamic state claims two rockets fired from sinai into israel,islamic state claim two rocket fired sinai israel
+0,bernie sanders could end up winning iowa,bernie sander could end winning iowa
+0,"boom! camping world ceo tells trump supporters to shop elsewhere‚nascar legend cancels $150000 order""",boom camping world ceo tell trump supporter shop elsewherenascar legend cancel order
+1,eu must be part of u.s. middle east peace push ireland says,eu must part u middle east peace push ireland say
+0,breaking bombshell: 27 yr old son of arkansas prostitute says bill clinton is his father‚did hillary keep him away from bill? [video],breaking bombshell yr old son arkansas prostitute say bill clinton fatherdid hillary keep away bill video
+1,bengaluru building collapse kills at least five: officials,bengaluru building collapse kill least five official
+0,yes,yes
+1,japan refueling u.s. missile defense ships keeping watch on north korean threat: source,japan refueling u missile defense ship keeping watch north korean threat source
+1,north korea warns threats a 'big miscalculation' in letter to australia lawmakers,north korea warns threat big miscalculation letter australia lawmaker
+0,why has donald trump abandoned the foreign policy that won him the election?,donald trump abandoned foreign policy election
+1,"scottish independence case helped by ""brexit chaos"": sturgeon",scottish independence case helped brexit chaos sturgeon
+1,syrian army allies break islamic state siege in eastern city,syrian army ally break islamic state siege eastern city
+1,boiler room #92 ‚ the (hollywood) hills have eyes,boiler room hollywood hill eye
+1,who says attack on syria vaccine store leaves children at risk,say attack syria vaccine store leaf child risk
+0,america‚s worst fear: how our punishing president will harm america in his final months if trump wins,america worst fear punishing president harm america final month trump win
+1,pope wears refugee id bracelet in appeal for help for migrants,pope wear refugee id bracelet appeal help migrant
+0,huh? germans bombed pearl harbor? congressman up for dnc chair needs a history lesson! [video],huh german bombed pearl harbor congressman dnc chair need history lesson video
+1,police arrest two more men over london train bomb attack,police arrest two men london train bomb attack
+0,coincidence? chobani scores major contract with mooch‚s government controlled school lunch program after airing naked lesbian tv ad to 3% of population [video],coincidence chobani score major contract mooch government controlled school lunch program airing naked lesbian tv ad population video
+1,spain seals off more than half schools earmarked for catalan poll,spain seal half school earmarked catalan poll
+0,bezos-owned washington post running pr for bezos-owned amazon ‚hq2‚,bezosowned washington post running pr bezosowned amazon hq
+0,black conservative destroys mexican flag carrying protesters: ‚if your country is so great‚why are you here?,black conservative destroys mexican flag carrying protester country greatwhy
+1,syria condemns trump stance on iran deal,syria condemns trump stance iran deal
+1,australia to fit warships with anti-missile defense systems,australia fit warship antimissile defense system
+0,deplorable! crooked clinton‚s ask for donations to help haiti following hurricane matthew‚after using 2010 earthquake donations to rob them blind [video],deplorable crooked clinton ask donation help haiti following hurricane matthewafter using earthquake donation rob blind video
+1,sketchy firm behind salacious allegations against trump tries to pull a fast one on senate judiciary committee,sketchy firm behind salacious allegation trump try pull fast one senate judiciary committee
+0,black man claims he was kicked out of swanky la gym because he supports president trump‚watch jesse peterson tell his incredible story,black man claim kicked swanky la gym support president trumpwatch jesse peterson tell incredible story
+0,hillary‚s state department destroyed 13 of her mobile devices with hammers‚watch incredible 2015 video: hillary tells reporters she only used one mobile device [video],hillary state department destroyed mobile device hammerswatch incredible video hillary tell reporter used one mobile device video
+0,al gore: climate change is ‚principal‚ cause of syrian war,al gore climate change principal cause syrian war
+1,search ends for bodies in mexico city after earthquake,search end body mexico city earthquake
+1,pro-independence parties want catalan parliament to discuss independence on monday: report,proindependence party want catalan parliament discus independence monday report
+0,citizen journalist enters wh press room yells questions to press‚liberals have a hissy fit! [video],citizen journalist enters wh press room yell question pressliberals hissy fit video
+0,america‚s primal scream: david icke explains reason for trump‚s election result,america primal scream david icke explains reason trump election result
+1,detention of catalan activists a judicial not political matter: spain justice minister,detention catalan activist judicial political matter spain justice minister
+1,zimbabwe court frees activist pastor arrested for subversion,zimbabwe court free activist pastor arrested subversion
+1,as tricky coalition talks loom merkel hopes for regional poll boost,tricky coalition talk loom merkel hope regional poll boost
+1,iraqi parliament asks leader abadi to take back kurd-held kirkuk,iraqi parliament asks leader abadi take back kurdheld kirkuk
+1,new afghan peace talks expected in oman but taliban participation unclear,new afghan peace talk expected oman taliban participation unclear
+1,france's macron urges iaea to ensure strict compliance of iran nuclear deal,france macron urge iaea ensure strict compliance iran nuclear deal
+1,exclusive: bangladesh protests over myanmar's suspected landmine use near border,exclusive bangladesh protest myanmar suspected landmine use near border
+1,at least 10 dead 92 missing in eastern congo floods: local official,least dead missing eastern congo flood local official
+1,iran re-imposes death sentence on spiritual figure that supreme court quashed,iran reimposes death sentence spiritual figure supreme court quashed
+1,japan ruling coalition seen winning around two-thirds majority: kyodo,japan ruling coalition seen winning around twothirds majority kyodo
+1,egyptian court acquits irish citizen of murder in mass trial,egyptian court acquits irish citizen murder mass trial
+1,hamas deputy leader says to continue iran ties armed fight,hamas deputy leader say continue iran tie armed fight
+1,trump to call mexico's pena nieto in earthquake's wake: white house,trump call mexico pena nieto earthquake wake white house
+1,most britons want may to lead through brexit process -telegraph,briton want may lead brexit process telegraph
+0,nothing new: ‚fake‚ & weaponized news has long haunted our war-weary world,nothing new fake weaponized news long haunted warweary world
+1,swedish court orders bombardier employee to be released from custody,swedish court order bombardier employee released custody
+1,fugitive italian 'cocaine king' arrested in uruguay,fugitive italian cocaine king arrested uruguay
+1,britain to limit acid sales after steep rise in assaults,britain limit acid sale steep rise assault
+0,black sports host blasts white espn sports host for asking white athletes to take a knee during national anthem,black sport host blast white espn sport host asking white athlete take knee national anthem
+1,kenya watchdog says investigating police over actions at university,kenya watchdog say investigating police action university
+0,james o‚keefe gives #veryfakenewscnn advance notice: ‚a few hundred hours‚ of ‚secretly recorded material‚ from inside the network‚#cnnleaks,james okeefe give veryfakenewscnn advance notice hundred hour secretly recorded material inside networkcnnleaks
+0,robert parry: what to do about ‚fake news‚,robert parry fake news
+0,taxpayer funded college gives lessons on ‚how to stop white people‚,taxpayer funded college give lesson stop white people
+1,u.s. will consider resuming halted military aid to egypt: trump,u consider resuming halted military aid egypt trump
+0,why trump‚s own children won‚t be voting for him in ny primary,trump child wont voting ny primary
+1,turkey sends military vehicles equipment to syrian border: anadolu,turkey sends military vehicle equipment syrian border anadolu
+0,[update] these 3 companies have demanded their names be removed from baby harvester planned parenthood‚s list of 40 major company donors,update company demanded name removed baby harvester planned parenthood list major company donor
+1,the wahabi vote: poll shows 68 percent of saudis prefer hillary clinton,wahabi vote poll show percent saudi prefer hillary clinton
+1,death toll from blasts in somalia's capital mogadishu tops 200,death toll blast somalia capital mogadishu top
+1,britain to lift pay cap for police prison officers: media,britain lift pay cap police prison officer medium
+0,new audio released moments after muslim somali-immigrant cop shot and killed 40-yr old ‚bride-to-be‚,new audio released moment muslim somaliimmigrant cop shot killed yr old bridetobe
+0,wow! document shows teachers how to teach history after trump election‚‚and not get fired‚,wow document show teacher teach history trump electionand get fired
+0,lawless: obama won‚t take executive amnesty to supreme court,lawless obama wont take executive amnesty supreme court
+0,breaking: watchdog documents prove epa knew of potential for catastrophic ‚blowout‚ of toxic waste at co mine,breaking watchdog document prove epa knew potential catastrophic blowout toxic waste co mine
+0,watch who racist dingbat tx rep sheila jackson-lee blames for leaked emails [video],watch racist dingbat tx rep sheila jacksonlee blame leaked email video
+1,putin-trump meeting not yet planned for asia summit: kremlin,putintrump meeting yet planned asia summit kremlin
+1,u.s. warns of sanctions on any country trading with north korea,u warns sanction country trading north korea
+1,merkel dismisses hecklers as polls point to fourth term,merkel dismisses heckler poll point fourth term
+1,london police advise people to avoid area near station incident,london police advise people avoid area near station incident
+0,tsa: us residents from 9 states will need passports for domestic flights,tsa u resident state need passport domestic flight
+1,trump says 'we're going to florida very soon',trump say going florida soon
+1,threats cannot help resolve korean peninsula situation china says,threat help resolve korean peninsula situation china say
+1,trump‚s awkward first date with frau merkel,trump awkward first date frau merkel
+1,robert parry: sorting out the russia mess,robert parry sorting russia mess
+1,spain's constitutional court suspends catalan referendum law: court source,spain constitutional court suspends catalan referendum law court source
+0,update: 40% of victim‚s skull is missing‚no new arrests [graphic video] philadelphia police ask for help identifying gang of kids and mother for sub-human attack on homeless man with hammer,update victim skull missingno new arrest graphic video philadelphia police ask help identifying gang kid mother subhuman attack homeless man hammer
+0,[video] leftist cnn host actually said this: chattanooga terrorist is ‚good looking‚this guy actually reminds me of dzhokhar tsarnaev‚,video leftist cnn host actually said chattanooga terrorist good lookingthis guy actually reminds dzhokhar tsarnaev
+1,factbox: trump on twitter (sept 18) - u.s. air force cia,factbox trump twitter sept u air force cia
+1,the wahabi vote: poll shows 68 percent of saudis prefer hillary clinton,wahabi vote poll show percent saudi prefer hillary clinton
+0,"fox news anchor shepard smith finally ‚comes out‚ admits he‚s gay""",fox news anchor shepard smith finally come admits he gay
+1,barcelona balances security and freedom after deadly attacks,barcelona balance security freedom deadly attack
+1,saudi king to start russia visit on thursday: state news agency,saudi king start russia visit thursday state news agency
+0,boiler room ep #131 ‚ gender fluid scouts,boiler room ep gender fluid scout
+1,american mccarthyism: neocon warhawks‚ plan to kill antiwar dissent in media,american mccarthyism neocon warhawks plan kill antiwar dissent medium
+0,gangs involved in huge biker brawl have ‚toned down their threats‚ after warning police of retaliation and threat to kill ‚anyone in uniform‚,gang involved huge biker brawl toned threat warning police retaliation threat kill anyone uniform
+1,iraq refuses talks with kurdistan about independence referendum results,iraq refuse talk kurdistan independence referendum result
+1,trump says hopes to avoid use of military action on north korea,trump say hope avoid use military action north korea
+1,german court finds syrian guilty over u.n. peacekeeper abduction,german court find syrian guilty un peacekeeper abduction
+1,trump says u.s. not 'putting up with' north korea's actions,trump say u putting north korea action
+1,china's big money trumps u.s. influence in cambodia,china big money trump u influence cambodia
+1,u.s. citizen detained in yemeni capital sanaa: colleagues,u citizen detained yemeni capital sanaa colleague
+0,president trump: nancy pelosi is helping to eliminate democrat party‚‚i think she‚s incompetent‚ [video],president trump nancy pelosi helping eliminate democrat partyi think shes incompetent video
+1,german coalition talks: 'road to jamaica is long',german coalition talk road jamaica long
+0,obama joins comedy central host to push ‚laughable‚ establishment conspiracy theory on dnc leaks,obama join comedy central host push laughable establishment conspiracy theory dnc leak
+1,austrian conservative kurz says needs more time on coalition,austrian conservative kurz say need time coalition
+0,watch how college students respond when they‚re shown a picture of muslim boy‚s ‚clock‚ and asked what it is,watch college student respond theyre shown picture muslim boy clock asked
+1,trump moves ahead with ‚the wall‚ between us and mexico,trump move ahead wall u mexico
+1,washington state judge issues temporarily block on trump‚s immigration ban nationwide,washington state judge issue temporarily block trump immigration ban nationwide
+0,sit down and shut up! senator whack-job warren gets rebuked after ignoring senate rules‚makes desperate last ditch ‚race card‚ play against jeff sessions [video],sit shut senator whackjob warren get rebuked ignoring senate rulesmakes desperate last ditch race card play jeff session video
+0,twitter claims they‚re cracking down on ‚hate speech‚‚but allows ‚i hope trump is assassinated‚ to trend,twitter claim theyre cracking hate speechbut allows hope trump assassinated trend
+1,german spd leader says eu must stop accession talks with turkey,german spd leader say eu must stop accession talk turkey
+1,unhcr chief meets with rohingya refugees in bangladesh camp,unhcr chief meet rohingya refugee bangladesh camp
+0,lol! british wife of lib actor who said: ‚there will never be a president donald trump‚‚warns americans about president-elect trump [video],lol british wife lib actor said never president donald trumpwarns american presidentelect trump video
+1,spanish police seize ballot boxes in catalan referendum,spanish police seize ballot box catalan referendum
+1,philippines says some rebels ready to surrender as troops advance in marawi,philippine say rebel ready surrender troop advance marawi
+1,catalan parliament defies madrid pressure works on independence declaration,catalan parliament defies madrid pressure work independence declaration
+1,hashtag politics: merkel tries to get in with germany's kids,hashtag politics merkel try get germany kid
+0,study shows up to 2.8 million non u.s. citizens voted in 2008‚but trump‚s crazy to think 3 million illegally voted in 2016‚right?,study show million non u citizen voted trump crazy think million illegally voted right
+1,saudi arabia welcomes new u.s. strategy toward iran,saudi arabia welcome new u strategy toward iran
+1,mongolian parliament ousts prime minister in latest reshuffle,mongolian parliament ousts prime minister latest reshuffle
+0,martinique escapes brunt of hurricane maria guadeloupe takes lashing,martinique escape brunt hurricane maria guadeloupe take lashing
+1,uganda postpones bill to extend museveni's rule after protests,uganda postpones bill extend musevenis rule protest
+1,prosecutors target guatemala president over campaign financing,prosecutor target guatemala president campaign financing
+0,most unwanted man in the world: argentinians don‚t want obama in their country‚americans would like him to stay there,unwanted man world argentinian dont want obama countryamericans would like stay
+0,patrick and hesher: ‚dni,patrick hesher dni
+1,u.s. believes current north korea nuclear threat is manageable: white house,u belief current north korea nuclear threat manageable white house
+0,breaking: women,breaking woman
+1,man sets himself on fire outside new zealand parliament,man set fire outside new zealand parliament
+0,tx valedictorian with full ride scholarship to yale university reveals she is illegal alien in graduation speech‚trashes trump [video],tx valedictorian full ride scholarship yale university reveals illegal alien graduation speechtrashes trump video
+0,trump poised to reverse obama‚s politicized ‚global warming‚ policies‚plans to bring energy jobs back to americans,trump poised reverse obamas politicized global warming policiesplans bring energy job back american
+1,iraq's kurds beef up move back defense line around oil-rich kirkuk,iraq kurd beef move back defense line around oilrich kirkuk
+1,shifting paradigm: you‚ll only understand trump and brexit if you understand the failure of globalization,shifting paradigm youll understand trump brexit understand failure globalization
+0,double amputee vet blasts obama‚s war strategy‚saw him as ‚expendable‚‚explains why he wishes he was fighting under president trump [video],double amputee vet blast obamas war strategysaw expendableexplains wish fighting president trump video
+1,trump says puerto rico's debt will have to be wiped out,trump say puerto rico debt wiped
+1,france urges all sides in cameroon to show restraint after eight killed,france urge side cameroon show restraint eight killed
+1,merkel macron pledge to lead eu forward post-brexit,merkel macron pledge lead eu forward postbrexit
+1,pentagon identifying new areas to pressure iran reviewing plans,pentagon identifying new area pressure iran reviewing plan
+1,police state end-run: dhs wants control of u.s. elections,police state endrun dhs want control u election
+1,seven killed by car bomb explosion in mogadishu: police,seven killed car bomb explosion mogadishu police
+1,senator says russian internet trolls stoked nfl debate,senator say russian internet troll stoked nfl debate
+1,u.n. panel calls on north korea to end torture child labor,un panel call north korea end torture child labor
+0,ep #16: patrick henningsen live ‚ ‚official washington madness‚ with guest robert parry,ep patrick henningsen live official washington madness guest robert parry
+1,italy's main parties back election law that isolates 5-star,italy main party back election law isolates star
+1,moldova sends troops to nato drills despite presidential veto,moldova sends troop nato drill despite presidential veto
+1,james comey‚s legacy: blaming russia rather than saudi arabia and israel,james comeys legacy blaming russia rather saudi arabia israel
+0,norwegian government returns 5 children to family after removing them from home for ‚christian radicalism and indoctrination‚,norwegian government return child family removing home christian radicalism indoctrination
+1,chemical weapons watchdog found sarin used in march syria attack: sources,chemical weapon watchdog found sarin used march syria attack source
+1,leader of china's $9 billion ezubao online scam gets life; 26 jailed,leader china billion ezubao online scam get life jailed
+1,kidnapped u.s.-canadian couple three children freed in pakistan,kidnapped uscanadian couple three child freed pakistan
+1,china top anti-graft watchdog says anti-corruption campaign has 'built into a crushing tide',china top antigraft watchdog say anticorruption campaign built crushing tide
+1,south korea's president says will continue phasing out nuclear power,south korea president say continue phasing nuclear power
+1,deloitte cyber attack affected up to 350 clients: guardian,deloitte cyber attack affected client guardian
+0,clear discrimination: snap still gives preference to illegals over american citizens,clear discrimination snap still give preference illegals american citizen
+1,erdogan says turkey backing fsa move on idlib,erdogan say turkey backing fsa move idlib
+0,update: comey‚s leaker goes into hiding [video],update comeys leaker go hiding video
+1,eu wants may to make firm offers now for brexit deal: barnier,eu want may make firm offer brexit deal barnier
+1,italy's interior minister meets libyan mayors over people smuggling,italy interior minister meet libyan mayor people smuggling
+0,obama commuted manning‚s sentence,obama commuted mannings sentence
+0,guess who‚s behind sickening ad showing boy being bullied because his dad didn‚t vote [video],guess who behind sickening ad showing boy bullied dad didnt vote video
+0,cnn host to jill stein: ‚have you seen any direct evidence that anyone hacked the voting systems in mi,cnn host jill stein seen direct evidence anyone hacked voting system mi
+1,facebook federal spy agency,facebook federal spy agency
+1,syrian army and allies secure road after is attack in deir al-zor: hezbollah,syrian army ally secure road attack deir alzor hezbollah
+1,south africa's cabinet replaces zuma ally as head of national airline,south africa cabinet replaces zuma ally head national airline
+0,fbi investigation into hillary‚s email server entering ‚very,fbi investigation hillary email server entering
+1,five detained over wired explosives found in posh paris neighborhood,five detained wired explosive found posh paris neighborhood
+1,trump says iran is violating 'spirit' of iran nuclear deal,trump say iran violating spirit iran nuclear deal
+1,putin orders foreign ministry to sue u.s. over seizure of diplomatic property,putin order foreign ministry sue u seizure diplomatic property
+0,british columnist katie hopkins has brutal reaction to ‚trans‚ h.s. student beating girls in wrestling matches [video],british columnist katie hopkins brutal reaction trans h student beating girl wrestling match video
+0,reckless: clinton presidency could mean u.s. muslim population would exceed germany‚s 4.8 million [video],reckless clinton presidency could mean u muslim population would exceed germany million video
+0,bikers for trump ready to take a stand against antifa thugs: ‚twinkle toes and butter cups‚ [video],bikers trump ready take stand antifa thug twinkle toe butter cup video
+0,man brutally assaulted at ca trump rally tells horrific story of attack by domestic terrorists [video],man brutally assaulted ca trump rally tell horrific story attack domestic terrorist video
+1,iraqi forces complete kirkuk province takeover after clashes with kurds,iraqi force complete kirkuk province takeover clash kurd
+0,target stores to remove gender labels from kids departments,target store remove gender label kid department
+0,when a government puts immigrants before citizens: swedish citizens have no place to live,government put immigrant citizen swedish citizen place live
+1,canada's quebec province to ban face coverings in public sector,canada quebec province ban face covering public sector
+0,boiler room ep #109 ‚ it‚s a wonderfull life,boiler room ep wonderfull life
+0,muslim activists launch voter registration drive,muslim activist launch voter registration drive
+1,falling apart: west‚s media-driven deception in syria,falling apart west mediadriven deception syria
+1,iraq expects to restore kirkuk output sunday: oil ministry official,iraq expects restore kirkuk output sunday oil ministry official
+1,shout poll: will donald trump hold his lead,shout poll donald trump hold lead
+1,speed over safety? china's food delivery industry warned over accidents,speed safety china food delivery industry warned accident
+1,myanmar says u.s. official barred from rohingya conflict zone,myanmar say u official barred rohingya conflict zone
+0,obama ramps up militarization of epa,obama ramp militarization epa
+1,woman arrested trying to scale gates of uk's buckingham palace,woman arrested trying scale gate uk buckingham palace
+1,factbox: german coalition merkel seeks three-way alliance,factbox german coalition merkel seek threeway alliance
+0,patriot at trump rally shuts down leftist protester [video],patriot trump rally shuts leftist protester video
+1,mexicans' positive view of the u.s. collapses in trump era: poll,mexican positive view u collapse trump era poll
+0,wow! sterling hts,wow sterling hts
+0,revealed: list of people president elect trump is considering for top white house postions,revealed list people president elect trump considering top white house postions
+0,washington post attempts to smear ron paul institute and others,washington post attempt smear ron paul institute others
+1,australia okays use of china drones in non-classifed operations,australia okay use china drone nonclassifed operation
+0,"college faces $250000 fine for punishing praying muslim employees""",college face fine punishing praying muslim employee
+0,assange: ‚crazed clinton campaign tried to hack wikileaks‚,assange crazed clinton campaign tried hack wikileaks
+1,japan's abe agrees with putin north korea nuclear test threatens peace,japan abe agrees putin north korea nuclear test threatens peace
+1,eying snap election japan's abe to focus on education security,eying snap election japan abe focus education security
+0,this year: let‚s make christmas great again‚,year let make christmas great
+0,trashy,trashy
+1,new normal? parenting magazine warns ‚ordinary parents‚ must take action against ‚blonde,new normal parenting magazine warns ordinary parent must take action blonde
+0,political agitator: globalist george soros linked to over 50 ‚partners‚ of the women‚s march on washington,political agitator globalist george soros linked partner womens march washington
+1,crimean tatar leader jailed for stirring anti-russia protests,crimean tatar leader jailed stirring antirussia protest
+0,a must watch! mark steyn calls out political violence on the left: ‚they‚ve got to own this!‚ [video],must watch mark steyn call political violence left theyve got video
+0,mexico‚s richest oligarch loses billions on news of trump victory,mexico richest oligarch loses billion news trump victory
+1,laughing in crisis venezuelan acts out dissident ortega's tale,laughing crisis venezuelan act dissident ortega tale
+1,typhoon kills at least two in japan prompts call for thousands to evacuate,typhoon kill least two japan prompt call thousand evacuate
+0,catholic university replaces bathroom signage to be more ‚gender inclusive‚,catholic university replaces bathroom signage gender inclusive
+1,saudi arabia says foils islamic state bomb foreign spying plots,saudi arabia say foil islamic state bomb foreign spying plot
+0,canada's liberals win quebec seat in sign of pre-election strength,canada liberal win quebec seat sign preelection strength
+0,priceless! don‚t even think about calling this storm victim 80: ‚i‚m comin‚ back baby‚ [video],priceless dont even think calling storm victim im comin back baby video
+0,seattle mayor wants to help muslims follow sharia law by offering plan to help buy homes,seattle mayor want help muslim follow sharia law offering plan help buy home
+0,state department coverup: reporter questions missing video potentially showing iran deal deception was a ‚glitch‚,state department coverup reporter question missing video potentially showing iran deal deception glitch
+0,russia hunting four people behind huge bomb hoax campaign,russia hunting four people behind huge bomb hoax campaign
+1,freeing of hostages in pakistan a 'positive sign': u.s. general,freeing hostage pakistan positive sign u general
+1,iran foreign minister tells lawmakers of plans to respond to trump moves,iran foreign minister tell lawmaker plan respond trump move
+1,army commander dismisses general's hint at army intervention in brazil: reports,army commander dismisses general hint army intervention brazil report
+0,priceless! milo destroys heckling muslim woman‚crowd chants usa! usa! usa! [video] #miloyiannopoulos,priceless milo destroys heckling muslim womancrowd chant usa usa usa video miloyiannopoulos
+0,boom! pres trump rips media and critics: ‚i was not elected to please the washington media‚ [video],boom pres trump rip medium critic elected please washington medium video
+1,taiwan says its 23 million people will decide their future,taiwan say million people decide future
+0,"you won‚t believe his punishment! hispanic store owner swindles tax payers out of $1116924.27 in latest food stamp scam""",wont believe punishment hispanic store owner swindle tax payer latest food stamp scam
+0,anti-jihad warrior pamela gellar strikes back hard after london‚s muslim mayor bans ads with bikini clad women,antijihad warrior pamela gellar strike back hard london muslim mayor ban ad bikini clad woman
+1,iraqi kurdish opposition party gorran calls on barzani to step down,iraqi kurdish opposition party gorran call barzani step
+1,kenyan police say four people killed during opposition demonstrations in past two weeks,kenyan police say four people killed opposition demonstration past two week
+1,mexicans spooked by repeat rumble on anniversary of 1985 quake,mexican spooked repeat rumble anniversary quake
+1,suicide attack on kabul shi'ite mosque kills at least 30,suicide attack kabul shiite mosque kill least
+0,are angry leftists planning violent communist revolution?‚‚it is their goal to ‚block,angry leftist planning violent communist revolutionit goal block
+0,one hilarious tweet perfectly sums up how irrelevant cnn has become,one hilarious tweet perfectly sum irrelevant cnn become
+1,exclusive: u.s. to withhold up to $290 million in egypt aid,exclusive u withhold million egypt aid
+1,angola's opposition loses appeal to annul election result,angola opposition loses appeal annul election result
+1,kremlin accuses west of 'whipping up hysteria' over russian war games,kremlin accuses west whipping hysteria russian war game
+1,kurdish forces still control khurmala oil field northwest of kirkuk: tv,kurdish force still control khurmala oil field northwest kirkuk tv
+1,eu threatens hungary poland with fines if refuse refugees,eu threatens hungary poland fine refuse refugee
+1,kenya's odinga pulled out of election to avoid defeat: deputy president,kenya odinga pulled election avoid defeat deputy president
+0,refugee living in england arrested for threatening to ‚cut out his wife‚s heart‚ because she was becoming ‚too english‚,refugee living england arrested threatening cut wife heart becoming english
+1,indonesian minister to meet suu kyi amid protests over rohingya,indonesian minister meet suu kyi amid protest rohingya
+0,actors quit ‚ferguson‚ play days before opening because they want media‚s bogus ‚hands up don‚t shoot‚ version to replace actual court transcripts,actor quit ferguson play day opening want medias bogus hand dont shoot version replace actual court transcript
+0,introducing: hamish ‚the illusion‚ patterson,introducing hamish illusion patterson
+1,putin warns u.s. not to supply ukraine with defensive weapons,putin warns u supply ukraine defensive weapon
+1,pakistan rejects role of 'scapegoat for u.s. failures' in afghanistan,pakistan reject role scapegoat u failure afghanistan
+0,breaking wikileaks bombshell! murdered dnc staffer seth rich was dnc leaker: ‚he was my whistleblower‚,breaking wikileaks bombshell murdered dnc staffer seth rich dnc leaker whistleblower
+1,germany's merkel suffers state vote setback as coalition talks loom,germany merkel suffers state vote setback coalition talk loom
+0,black tv host hammers racist mooch: ‚the only hope you have michelle obama,black tv host hammer racist mooch hope michelle obama
+1,pentagon says diplomatic tension with turkey not affecting military operations,pentagon say diplomatic tension turkey affecting military operation
+1,catalan leader says will proceed with oct. 1 independence referendum,catalan leader say proceed oct independence referendum
+1,syrian war monitor says strikes hit military science center,syrian war monitor say strike hit military science center
+1,after irma ravages havana city highlights housing replacement drive,irma ravage havana city highlight housing replacement drive
+1,rebels say u.s. evacuates base in southern syrian desert,rebel say u evacuates base southern syrian desert
+1,merkel presses allies to cut funds for turkey's eu bid,merkel press ally cut fund turkey eu bid
+1,congress clarification on iran nuclear deal could be positive: total ceo,congress clarification iran nuclear deal could positive total ceo
+0,border patrol union president blasts paul ryan for delay on border wall funds [video],border patrol union president blast paul ryan delay border wall fund video
+1,thousands of anti-catalan independence protesters gather in barcelona,thousand anticatalan independence protester gather barcelona
+1,australian high court sits to resolve lawmakers' citizenship crisis,australian high court sits resolve lawmaker citizenship crisis
+0,remember 24/7 media coverage of bush‚s ‚hurricane katrina‚? louisiana hit with historic flooding‚caskets floating‚obama declares state of emergency‚goes golfing!,remember medium coverage bush hurricane katrina louisiana hit historic floodingcaskets floatingobama declares state emergencygoes golfing
+0,henningsen: obama white house colluded with facebook to fabricate ‚russian bot‚ conspiracy,henningsen obama white house colluded facebook fabricate russian bot conspiracy
+1,netanyahu lauds trump's iran turn sees chance to change nuclear deal,netanyahu lauds trump iran turn see chance change nuclear deal
+1,three-quarters of australians vote in same-sex marriage poll so far,threequarters australian vote samesex marriage poll far
+1,danish queen's husband prince henrik diagnosed with dementia,danish queen husband prince henrik diagnosed dementia
+1,uk police caution woman over incident at prince george's school,uk police caution woman incident prince george school
+0,mainstream media ignores massive protest against obama‚s sweetheart deal for corporations: ‚biggest protest this country has seen for many,mainstream medium ignores massive protest obamas sweetheart deal corporation biggest protest country seen many
+1,hersh: trump knew ‚assad sarin attack‚ story was fairy tale ‚ but launched cruise missile strike anyway,hersh trump knew assad sarin attack story fairy tale launched cruise missile strike anyway
+1,merkel: open to coalition talks with fdp and greens but also spd,merkel open coalition talk fdp green also spd
+1,hacking electronic voting machines is easy,hacking electronic voting machine easy
+0,wikileaks julian assange says he has new emails that should indict hillary‚and why he‚s a trump fan [video],wikileaks julian assange say new email indict hillaryand he trump fan video
+0,sharia lawyer: why muslims are less likely to integrate into western nations [video],sharia lawyer muslim less likely integrate western nation video
+0,texas congressman lets screaming leftist agitator have it: ‚you sir,texas congressman let screaming leftist agitator sir
+0,subway rider attacked with hammer for asking passenger to stop ‚man-spreading‚,subway rider attacked hammer asking passenger stop manspreading
+1,catalan uncertainty paralyzing regional investment spain's economy minister says,catalan uncertainty paralyzing regional investment spain economy minister say
+0,louie gohmert wants lying democrat va governor mcauliffe investigated for ‚facilitating violence‚ in charlottesville,louie gohmert want lying democrat va governor mcauliffe investigated facilitating violence charlottesville
+1,reuters surveys uk financial services jobs post-brexit,reuters survey uk financial service job postbrexit
+1,german political rivals agree: no lottery for me,german political rival agree lottery
+1,u.s.-led forces acknowledge killing 61 more civilians in iraq syria,usled force acknowledge killing civilian iraq syria
+0,what is going on with hillary‚s eyes‚could it be related to parkinson‚s disease? [video],going hillary eyescould related parkinson disease video
+0,ben carson home vandalized with anti-trump graffiti,ben carson home vandalized antitrump graffiti
+0,sorry liberals‚you can stop with the petitions‚hillary did not win the popular vote,sorry liberalsyou stop petitionshillary win popular vote
+1,factbox: about 5.8 million without power in u.s. southeast after irma - utilities,factbox million without power u southeast irma utility
+1,report: anti-trump,report antitrump
+1,uganda in anti-online pornography drive seen by critics as diversion,uganda antionline pornography drive seen critic diversion
+0,obama pressured u.s. shoe company to keep their mouths shut‚but now the deal is off‚and so are the gloves!,obama pressured u shoe company keep mouth shutbut deal offand glove
+0,atzmon: who keeps americans in the dark?,atzmon keep american dark
+0,top 10 tweets from democrat debate,top tweet democrat debate
+0,tears and joy on britain‚s st. helena as 'world's most useless airport' finally opens,tear joy britain st helena world useless airport finally open
+1,why not a probe of ‚israel-gate‚,probe israelgate
+1,north korean threat highlights nato missile shield 'weak link',north korean threat highlight nato missile shield weak link
+1,pilgrims return to mecca as haj winds down without incident,pilgrim return mecca haj wind without incident
+1,turkish military kills three pkk militants in north iraq near border: sources,turkish military kill three pkk militant north iraq near border source
+0,[video] hundreds of mormon fundamentalists surround mother who escaped cult community to prevent her from extracting her children,video hundred mormon fundamentalist surround mother escaped cult community prevent extracting child
+1,kremlin raps u.s.a for not issuing visas to u.n.-bound officials,kremlin rap usa issuing visa unbound official
+1,thailand says closely watching myanmar crisis ready to provide aid,thailand say closely watching myanmar crisis ready provide aid
+1,northern ireland fears brexit loss of eu peacemaking and cash,northern ireland fear brexit loss eu peacemaking cash
+0,trump,trump
+1,kremlin tells supporters of detained critic navalny to shun illegal protests,kremlin tell supporter detained critic navalny shun illegal protest
+0,new emails: clinton foundation vip donors buy access ‚ while hillary was secretary of state,new email clinton foundation vip donor buy access hillary secretary state
+0,smiling host shows women how to apply make-up to beaten up face in country with 99% muslim population [video],smiling host show woman apply makeup beaten face country muslim population video
+1,u.s. challenged by rising north korea tensions russia urges calm,u challenged rising north korea tension russia urge calm
+0,video: the dallas shooting agenda,video dallas shooting agenda
+1,tunisian navy rescues 78 migrants off coast,tunisian navy rescue migrant coast
+1,factbox: austrian parties' red lines and preferences on coalitions,factbox austrian party red line preference coalition
+1,nato head says all states must comply with north korea sanctions,nato head say state must comply north korea sanction
+0,embarrassing: obama explains how he will ‚rebuke‚ isis by attending climate change summit [video],embarrassing obama explains rebuke isi attending climate change summit video
+1,new zealand parties hold talks to form coalition government,new zealand party hold talk form coalition government
+1,dutch defense minister resigns over peacekeepers' deaths in mali,dutch defense minister resigns peacekeeper death mali
+0,exposed: the us is an oligarchy ruled by billionaires and dictators,exposed u oligarchy ruled billionaire dictator
+1,italy's center-right in search of a leader as election nears,italy centerright search leader election nears
+1,pakistan finance minister denies corruption charges,pakistan finance minister denies corruption charge
+0,july 4th schoolhouse rock: ‚preamble to the us constitution‚,july th schoolhouse rock preamble u constitution
+1,uzbekistan releases dissident arrests another,uzbekistan release dissident arrest another
+1,niger mali leaders seek funding for new anti-jihadist force,niger mali leader seek funding new antijihadist force
+1,henningsen on trump‚s foreign policy: russia,henningsen trump foreign policy russia
+1,nicaragua will join paris climate pact leaving u.s. syria isolated,nicaragua join paris climate pact leaving u syria isolated
+0,michelle obama dnc speech: ‚i wake up every morning in a house built by slaves‚,michelle obama dnc speech wake every morning house built slave
+1,iran's armed forces say time to teach u.s. 'new lessons:' isna,iran armed force say time teach u new lesson isna
+1,un official tied to clintons set to face trial,un official tied clinton set face trial
+1,explosion wounds five bahraini policemen: agency,explosion wound five bahraini policeman agency
+0,shocker! bratty kid who said ‚screw our president!‚ is drew carey‚s son! [video],shocker bratty kid said screw president drew careys son video
+1,switzerland demands release of swiss woman abducted in sudan,switzerland demand release swiss woman abducted sudan
+0,unhinged radical leftists try to storm trump‚s utah rally attacking police and secret service with rocks [video],unhinged radical leftist try storm trump utah rally attacking police secret service rock video
+0,breaking: obama‚s race war part ii‚brawl breaks out in front of sc statehouse over confederate flag,breaking obamas race war part iibrawl break front sc statehouse confederate flag
+0,the heartless marxist: what bernie sanders did to over 300 homeless people proves he only cares about himself,heartless marxist bernie sander homeless people prof care
+0,yrc worldwide closes florida terminals due to hurricane,yrc worldwide close florida terminal due hurricane
+1,spain conducting 'coup' in catalonia: regional parliament speaker,spain conducting coup catalonia regional parliament speaker
+0,sour grapes? whatever happened to the ‚smooth transition of power‚ that obama vowed?,sour grape whatever happened smooth transition power obama vowed
+0,hillary‚s secret weapon: evan mcmullin is cia-goldman sachs candidate,hillary secret weapon evan mcmullin ciagoldman sachs candidate
+0,[video] two street preachers severely beaten by tolerant gays at seattle gay pride parade,video two street preacher severely beaten tolerant gay seattle gay pride parade
+1,new law needed to allow torture victims to sue afghan government: activists,new law needed allow torture victim sue afghan government activist
+0,washington restaurant tells local sheriff deputies they‚re not welcome‚tells them to ‚spread the word‚ [video],washington restaurant tell local sheriff deputy theyre welcometells spread word video
+1,rights groups ask china to stop detaining its critics,right group ask china stop detaining critic
+1,kurds say reject iraqi warning to withdraw from key junction south of kirkuk,kurd say reject iraqi warning withdraw key junction south kirkuk
+1,turkish security forces kill five kurdish militants in southwestern turkey: ntv,turkish security force kill five kurdish militant southwestern turkey ntv
+1,three skydivers die after suspected mid-air collision in australia,three skydiver die suspected midair collision australia
+1,philippines' duterte hopes drugs war shift will satisfy 'bleeding hearts',philippine duterte hope drug war shift satisfy bleeding heart
+1,factbox: what to watch for at china's communist party congress,factbox watch china communist party congress
+1,repeat deceit: how us tries to link iran to al qaeda,repeat deceit u try link iran al qaeda
+0,watch karma in action: cnn gets hit with tear gas while defending violent alt-left protesters at az trump rally,watch karma action cnn get hit tear gas defending violent altleft protester az trump rally
+0,classless,classless
+1,austria's freedom party criticizes ecj ruling on migrant quotas,austria freedom party criticizes ecj ruling migrant quota
+1,'one china' principle must be maintained china's xi says,one china principle must maintained china xi say
+1,spanish court orders google to delete app used for catalan independence vote,spanish court order google delete app used catalan independence vote
+0,not so fast: ca libs try to ‚drought shame‚ conservative actor tom selleck for ‚stealing‚ water,fast ca libs try drought shame conservative actor tom selleck stealing water
+0,refugees arrested and released after raping woman ‚in middle of audience‚ at ‚anti-racism‚ festival in sweden‚several other women raped,refugee arrested released raping woman middle audience antiracism festival swedenseveral woman raped
+1,speculation not helpful british pm may tells trump after attack tweet,speculation helpful british pm may tell trump attack tweet
+1,xi says china will oppose any behaviors that try to separate the country,xi say china oppose behavior try separate country
+1,thai junta leader says fugitive former pm yingluck is in dubai,thai junta leader say fugitive former pm yingluck dubai
+1,china's ruling communist party expels former gansu party boss for graft,china ruling communist party expels former gansu party bos graft
+0,breaking news: sebastian gorka out‚are ivanka and jared behind his resignation?,breaking news sebastian gorka outare ivanka jared behind resignation
+0,teen vogue publishes article to teach teen girls how to have anal sex: ‚anal 101,teen vogue publishes article teach teen girl anal sex anal
+1,u.s.-backed sdf attacks islamic state in syria's deir al-zor province,usbacked sdf attack islamic state syria deir alzor province
+1,darpa spending $62 million to create military cyborgs,darpa spending million create military cyborg
+0,angry bernie refuses to respond when tv host asks about collapse of socialist latin american countries [video],angry bernie refuse respond tv host asks collapse socialist latin american country video
+1,the u.s. establishment vs the rest of world,u establishment v rest world
+1,british police arrest seventh man over bomb attack on london train,british police arrest seventh man bomb attack london train
+1,chile's divided center-left pledges unity for presidential runoff,chile divided centerleft pledge unity presidential runoff
+0,boom! this is how president reagan handled protesters: ‚negotiate? what is there to negotiate?‚ [video],boom president reagan handled protester negotiate negotiate video
+1,tyranny of 9/11: the building blocks of the american police state from a-z,tyranny building block american police state az
+0,cnn host gets schooled by guest after comparing oregon protesters to #blacklivesmatter terrorists,cnn host get schooled guest comparing oregon protester blacklivesmatter terrorist
+0,crooked soros: trump will win popular vote in landslide‚trump will lose electoral vote‚hillary is ‚done deal‚ [video],crooked soros trump win popular vote landslidetrump lose electoral votehillary done deal video
+0,russia-wikileaks conspiracy theory: ‚clinton claim ridiculous,russiawikileaks conspiracy theory clinton claim ridiculous
+0,why isn‚t this news? three black men are taken alive after shooting up school bus with children inside,isnt news three black men taken alive shooting school bus child inside
+1,open society: soros-backed,open society sorosbacked
+1,sudan to extend ceasefire through end-december: suna,sudan extend ceasefire enddecember suna
+1,strange: trump ‚internet takeover‚ fear story calls for canada to manage net archive,strange trump internet takeover fear story call canada manage net archive
+1,austrian president to insist on pro-eu government after election,austrian president insist proeu government election
+0,democrat state senator who said she wouldn‚t apologize for saying she wished president trump would be assassinated,democrat state senator said wouldnt apologize saying wished president trump would assassinated
+0,hollywood hypocrites: these lefty celebs play for brutal dictators but not for trump,hollywood hypocrite lefty celebs play brutal dictator trump
+1,german coalition merkel says compromises inevitable,german coalition merkel say compromise inevitable
+0,breaking: wikileaks to give tech companies exclusive access to cia hack tools,breaking wikileaks give tech company exclusive access cia hack tool
+1,visualizing the influx of rohingya refugees,visualizing influx rohingya refugee
+0,flashback: remember when obama was caught telling russian president he‚d have ‚more flexibility‚ after he won re-election? [video]‚why didn‚t anyone question ‚russian interference‚ in his defeat of mitt romney who called russia ‚our biggest threat‚?,flashback remember obama caught telling russian president hed flexibility reelection videowhy didnt anyone question russian interference defeat mitt romney called russia biggest threat
+1,uae says fully supports new u.s. policy against iran,uae say fully support new u policy iran
+1,dutchman put on trial for ethiopian war crimes in 1970s,dutchman put trial ethiopian war crime
+0,lol! $45 million dollar whoopi complains conservatives prevented her from making a living [video],lol million dollar whoopi complains conservative prevented making living video
+0,hillary shares pro-illegal manifesto: plans to open borders,hillary share proillegal manifesto plan open border
+0,seven brutal realities of life crybaby millennials need to learn‚now!,seven brutal reality life crybaby millennials need learnnow
+0,lol! black conservative destroys ‚current day slave‚ elijah cummings‚ dnc speech‚‚boss lady gonna be proud of you!‚,lol black conservative destroys current day slave elijah cummings dnc speechboss lady gon na proud
+1,south koreans' support for nuclear projects deals blow to government energy plan,south korean support nuclear project deal blow government energy plan
+0,al sharpton calls for less legal protection for cops,al sharpton call less legal protection cop
+0,hysterical! jesse watters busts the idiotic ‚white privilege‚ trend on campus: ‚i don‚t necessarily feel it‚ [video],hysterical jesse watters bust idiotic white privilege trend campus dont necessarily feel video
+1,turkey's aim in syria's idlib operation is to prevent clashes completely: minister,turkey aim syria idlib operation prevent clash completely minister
+1,orlando ‚known wolf‚ watched by fbi,orlando known wolf watched fbi
+0,boiler room #97 ‚ mermaids and swamp life,boiler room mermaid swamp life
+0,hillary‚s campaign manager stammers when asked why using trump‚s stolen tax returns are okay,hillary campaign manager stammer asked using trump stolen tax return okay
+1,eurofighter jet crashes in spain killing pilot,eurofighter jet crash spain killing pilot
+1,turkish return fire in syria after shell hits hatay province: cnn turk,turkish return fire syria shell hit hatay province cnn turk
+0,video: harlem bar kicks customers out for wearing trump hats: ‚we don‚t play that sh*t here‚,video harlem bar kick customer wearing trump hat dont play sht
+0,bernie sanders: when you‚re white,bernie sander youre white
+0,why did friends and family protect muslim bonnie and clyde from authorities?,friend family protect muslim bonnie clyde authority
+1,national party leads in new zealand polls; new zealand first still likely kingmaker,national party lead new zealand poll new zealand first still likely kingmaker
+0,extreme left #disruptj20 plot to ‚acid bomb‚ inauguration deploraball,extreme left disruptj plot acid bomb inauguration deploraball
+0,beyond sick! cnn runs segment to explain how obama appointee will take over as president if both trump and pence are assassinated at inauguration [video],beyond sick cnn run segment explain obama appointee take president trump penny assassinated inauguration video
+1,kenya police use teargas shoot in air during opposition march,kenya police use teargas shoot air opposition march
+0,album sales skyrocket! a star is born with one awesome grammys dress,album sale skyrocket star born one awesome grammys dress
+0,episode #199 ‚ sunday wire: ‚trigger warning: id politics‚ with gilad atzmon and jay dyer,episode sunday wire trigger warning id politics gilad atzmon jay dyer
+0,election fraud: if it happened in michigan,election fraud happened michigan
+0,jill stein (hillary‚s) recount collapses: misses deadline in pennsylvania‚sues wi for refusing hand recount [video],jill stein hillary recount collapse miss deadline pennsylvaniasues wi refusing hand recount video
+1,cult crimes,cult crime
+1,from kitchen to soccer pitch catalonia crisis opens old spanish wounds,kitchen soccer pitch catalonia crisis open old spanish wound
+1,u.s. extends some iran sanctions relief under nuclear deal,u extends iran sanction relief nuclear deal
+0,putin tells obama and western media: ‚either stop talking about it or finally show some kind of proof‚,putin tell obama western medium either stop talking finally show kind proof
+1,mass integration: the race to capitalize on a virtual future,mass integration race capitalize virtual future
+0,young girl kicked out of women‚s march for wearing trump hat [video],young girl kicked womens march wearing trump hat video
+0,meet the guy milwaukee is rioting over‚interesting photos emerge of sylville smith and friends,meet guy milwaukee rioting overinteresting photo emerge sylville smith friend
+0,boiler room ep #72 ‚ trailer parks in heaven,boiler room ep trailer park heaven
+1,factbox: german coalition watch - let's not be perfectionists in coalition talks says merkel ally,factbox german coalition watch let perfectionist coalition talk say merkel ally
+1,venezuela ex-prosecutor gives u.s. evidence on maduro officials,venezuela exprosecutor give u evidence maduro official
+1,south korea's moon faces calls to alter policy on north korea after nuclear test,south korea moon face call alter policy north korea nuclear test
+0,they knew! federal government knew flint,knew federal government knew flint
+0,will american law enforcement lie,american law enforcement lie
+1,car bomb kills 15 afghan cadets trainers outside kabul military school,car bomb kill afghan cadet trainer outside kabul military school
+1,russian court told that oil boss gave minister $2 million in a brown bag,russian court told oil bos gave minister million brown bag
+1,u.n. ends month-long libya talks in tunisia without proposing new date,un end monthlong libya talk tunisia without proposing new date
+0,your gilded chariot awaits: brunei sultan celebrates 50 years in power,gilded chariot awaits brunei sultan celebrates year power
+1,qatar to buy 24 typhoon jets from uk's bae systems,qatar buy typhoon jet uk bae system
+1,alleged islamic state recruiter goes on trial in germany,alleged islamic state recruiter go trial germany
+1,russia questions future of syria chemical weapons inquiry,russia question future syria chemical weapon inquiry
+1,pro-islamic state leaders killed by philippine troops: defense minister,proislamic state leader killed philippine troop defense minister
+1,spanish markets gain as investor nerves ease over catalonia,spanish market gain investor nerve ease catalonia
+0,"sweden loses 14000 refugees slated for deportation: ‚we simply do not know where they are‚""",sweden loses refugee slated deportation simply know
+1,iran nuclear deal should be preserved: russia,iran nuclear deal preserved russia
+1,support for german spd slumps to lowest this year: poll,support german spd slump lowest year poll
+0,boiler room ep #73 ‚ in the shadow of the valley of lies,boiler room ep shadow valley lie
+1,uk hate crimes surge on brexit and militant attacks,uk hate crime surge brexit militant attack
+1,survey: top ten fears of 2015,survey top ten fear
+0,former fbi asst director: ‚jim comey ‚danced with the devil‚‚i‚m glad he‚s gone‚ [video],former fbi asst director jim comey danced devilim glad he gone video
+0,here‚s why ole miss won‚t be playing ‚dixie‚ before football games this year‚there goes another southern tradition‚,here ole miss wont playing dixie football game yearthere go another southern tradition
+0,john mcafee on hacking smartphones and why bitcoin is here to stay,john mcafee hacking smartphones bitcoin stay
+0,wow! british actress hammers eu leaders: ‚every one of you who said refugees are welcome,wow british actress hammer eu leader every one said refugee welcome
+0,do you know someone who is afflicted with ‚the bern‚?‚great news‚there is a cure! [video],know someone afflicted berngreat newsthere cure video
+1,what‚s really behind the senate‚s override of obama veto of saudi 9/11 lawsuit bill?,whats really behind senate override obama veto saudi lawsuit bill
+0,the new american century: an era of fraud,new american century era fraud
+1,iran was behind cyber attack on british lawmakers in june: the times,iran behind cyber attack british lawmaker june time
+1,juncker's eu plan is largely in line with germany's vision: schaeuble,junckers eu plan largely line germany vision schaeuble
+1,trump visit to britain still unfixed nine months after pm may's invitation: sources,trump visit britain still unfixed nine month pm may invitation source
+1,union protests against french labor reform losing steam,union protest french labor reform losing steam
+1,drone hits commercial airliner in canada no injuries,drone hit commercial airliner canada injury
+0,kim jong-un blows up us aircraft carrier in newly released video,kim jongun blow u aircraft carrier newly released video
+1,iceland pm calls snap election after coalition party quits over 'breach of trust',iceland pm call snap election coalition party quits breach trust
+0,sarah huckabee-sanders mocks media for ignoring public testimony proving fake russian dossier was part of ‚witch hunt or hoax‚,sarah huckabeesanders mock medium ignoring public testimony proving fake russian dossier part witch hunt hoax
+0,liberal snowflake ambushes sean spicer in apple store: ‚how does it feel working for a fascist?‚‚instantly becomes a hero to the left [video],liberal snowflake ambush sean spicer apple store feel working fascistinstantly becomes hero left video
+1,hostility grows towards syrian refugees in lebanon,hostility grows towards syrian refugee lebanon
+0,wow! major credit card company still sponsoring central park production depicting assassination of president trump after other sponsors flee [video],wow major credit card company still sponsoring central park production depicting assassination president trump sponsor flee video
+1,focus on search and rescue restoring power after irma: u.s. official,focus search rescue restoring power irma u official
+0,'i feel like i'm going crazy:' migrant health crumbles in greece,feel like im going crazy migrant health crumbles greece
+1,australia kicks off weeks-long same-sex marriage ballot,australia kick weekslong samesex marriage ballot
+0,snarky hillary aide embarrassed by inconvenient ‚fact‚ about judge who‚s forcing hillary to testify under oath [video],snarky hillary aide embarrassed inconvenient fact judge who forcing hillary testify oath video
+1,greece debates bill on legal gender change divisions laid bare,greece debate bill legal gender change division laid bare
+0,dozens of states sign nuclear weapons ban treaty at united nations,dozen state sign nuclear weapon ban treaty united nation
+0,youtube gives disgusting reason for pulling 95% of ad revenue from outspoken president trump fans diamond and silk: videos ‚not suitable for all advertisers‚,youtube give disgusting reason pulling ad revenue outspoken president trump fan diamond silk video suitable advertiser
+0,disgusting video shows syrian parents sending 7,disgusting video show syrian parent sending
+1,u.n. must take 'serious' action against north korea over missile: nikki haley,un must take serious action north korea missile nikki haley
+1,uae says iran violates 'letter and spirit' of nuclear deal,uae say iran violates letter spirit nuclear deal
+0,putin tells obama and western media: ‚either stop talking about it or finally show some kind of proof‚,putin tell obama western medium either stop talking finally show kind proof
+0,obama attempts to energize zombie democrat base by reminding them he used to hate hillary too,obama attempt energize zombie democrat base reminding used hate hillary
+1,turkey orders detention of 100 former police officers in post-coup probe: anadolu,turkey order detention former police officer postcoup probe anadolu
+1,libyans flee by boat amid 'terrible' violence at home,libyan flee boat amid terrible violence home
+0,boiler room #100.2 ‚ part duh! wire tapped,boiler room part duh wire tapped
+1,turkey says expects humanitarian aid can be delivered in syria's idlib,turkey say expects humanitarian aid delivered syria idlib
+0,convenient? ‚active shooter‚ kills 5 in fort lauderdale,convenient active shooter kill fort lauderdale
+1,catalans should be allowed to determine their own future-scottish govt,catalan allowed determine futurescottish govt
+1,macau plans 'simulated attacks' in security ramp-up after vegas shooting,macau plan simulated attack security rampup vega shooting
+0,war on christmas: feds to regulate christmas lights,war christmas fed regulate christmas light
+1,eu commission 'horrified' by killing of maltese journalist,eu commission horrified killing maltese journalist
+0,boom! danish government considers seizing migrant‚s valuables to pay for benefits,boom danish government considers seizing migrant valuable pay benefit
+0,cnn‚s don lemon tries to downplay horrific ‚anti-trump‚ torture of mentally disabled man,cnns lemon try downplay horrific antitrump torture mentally disabled man
+0,nicole kidman breaks ranks with hollywood leftists‚speaks out in support of trump‚s presidency [video],nicole kidman break rank hollywood leftistsspeaks support trump presidency video
+1,factbox: reactions to speech by myanmar's suu kyi on violence in rakhine state,factbox reaction speech myanmar suu kyi violence rakhine state
+1,germany's jubilant far-right has merkel in its sights,germany jubilant farright merkel sight
+0,whoa! fox news host just blamed trump for violence by domestic terrorists against him and his supporters [video],whoa fox news host blamed trump violence domestic terrorist supporter video
+1,ankara mayor quits in erdogan purge of local government,ankara mayor quits erdogan purge local government
+0,boom! math shows trump would have beaten obama in romney-obama election,boom math show trump would beaten obama romneyobama election
+0,state department officials out! connected to benghazi scandal and clinton e-mail scandal [video],state department official connected benghazi scandal clinton email scandal video
+1,hiscox sees higher u.s. property insurance rates after harvey irma,hiscox see higher u property insurance rate harvey irma
+0,chicago thug president personally leaked chuck schumer‚s opposition to his dangerous iran deal,chicago thug president personally leaked chuck schumers opposition dangerous iran deal
+1,german conservatives push finance minister schaeuble to swap job,german conservative push finance minister schaeuble swap job
+1,rights groups target police spy chiefs globally under new u.s. law,right group target police spy chief globally new u law
+0,principal‚s reason for not allowing this picture to appear in yearbook has dad steaming mad,principal reason allowing picture appear yearbook dad steaming mad
+1,qatar's emir says ready to talk to end gulf crisis,qatar emir say ready talk end gulf crisis
+1,"turkey backs syrian rebels for ""serious operation"" in idlib",turkey back syrian rebel serious operation idlib
+0,brain freeze! hillary clinton goes blank‚forgets what she‚s talking about [video],brain freeze hillary clinton go blankforgets shes talking video
+1,putin and macron discuss north korea's missile launch: kremlin,putin macron discus north korea missile launch kremlin
+0,update: why univ of michigan replaced scheduled showing of ‚american sniper‚ with pg movie about a teddy bear,update univ michigan replaced scheduled showing american sniper pg movie teddy bear
+0,viewers are shocked to see american flag fall when democrat party leader mentions hillary clinton‚s name during live msnbc interview [video],viewer shocked see american flag fall democrat party leader mention hillary clinton name live msnbc interview video
+0,rudy giuliani just blew hillary‚s phony ‚khantroversy‚ wide open‚a rant the clinton camp won‚t want americans to see [video],rudy giuliani blew hillary phony khantroversy wide opena rant clinton camp wont want american see video
+0,florida prepares for powerful hurricane irma,florida prepares powerful hurricane irma
+1,eu should not mediate in catalan crisis: france's macron,eu mediate catalan crisis france macron
+1,ethnically divided iraqi town fears fresh conflict after kurds' independence vote,ethnically divided iraqi town fear fresh conflict kurd independence vote
+0,boiler room ‚ no surrender,boiler room surrender
+1,syria's moualem says victory within reach de-escalation zones temporary,syria moualem say victory within reach deescalation zone temporary
+0,je suis hypocrites: free speech is embraced when innocent people are murdered in france‚free speech is condemned (by every media outlet including fox news) when muslim terrorists are killed in america [video],je suis hypocrite free speech embraced innocent people murdered francefree speech condemned every medium outlet including fox news muslim terrorist killed america video
+0,how trump is accelerating the decline of us global influence,trump accelerating decline u global influence
+1,labour leader and other uk lawmakers could lose seats in cost cutting plan,labour leader uk lawmaker could lose seat cost cutting plan
+1,hacking attacks: a pre-election setback for italy's 5-star movement,hacking attack preelection setback italy star movement
+0,sunday screening: overpill (2017),sunday screening overpill
+1,catalans prepare to defy madrid in banned independence vote,catalan prepare defy madrid banned independence vote
+0,breaking! wikileaks email shows bill clinton allegedly sexually abused his 3rd cousin while she babysat chelsea,breaking wikileaks email show bill clinton allegedly sexually abused rd cousin babysat chelsea
+1,indian tycoon mallya appears in uk court on new money-laundering accusations,indian tycoon mallya appears uk court new moneylaundering accusation
+1,final results in banned catalan independence vote put 'yes' on 90.18 percent: regional government,final result banned catalan independence vote put yes percent regional government
+1,uk royal kate makes first public appearance since pregnancy revealed,uk royal kate make first public appearance since pregnancy revealed
+1,police fire tear gas to halt opposition protests in two kenyan cities,police fire tear gas halt opposition protest two kenyan city
+0,new low: obama races to microphone to capitalize on oregon tragedy‚couldn‚t find mic when multiple cops were killed by thugs with guns [video],new low obama race microphone capitalize oregon tragedycouldnt find mic multiple cop killed thug gun video
+0,it‚s a win! karen #handel beats democrat‚crowd chants ‚trump,win karen handel beat democratcrowd chant trump
+0,boom! navy seal vet destroys whiny organizer of ‚veterans against trump‚ [video],boom navy seal vet destroys whiny organizer veteran trump video
+1,the court case against the ‚travel ban‚ executive order,court case travel ban executive order
+1,russia to donate kalashnikovs trucks and munitions to philippines,russia donate kalashnikov truck munition philippine
+1,russia says critically injures ex-qaeda leader in syria; group denies,russia say critically injures exqaeda leader syria group denies
+1,india drags feet on gm mustard permit amid powerful opposition,india drag foot gm mustard permit amid powerful opposition
+0,henningsen: obama white house colluded with facebook to fabricate ‚russian bot‚ conspiracy,henningsen obama white house colluded facebook fabricate russian bot conspiracy
+0,wow! fbi sued over andrew breitbart records request‚what are they withholding?,wow fbi sued andrew breitbart record requestwhat withholding
+1,dup leader says brexit transition should be kept to 'absolute minimum',dup leader say brexit transition kept absolute minimum
+0,wine sipping city attorney caught on camera taking photos of accomplice spray painting ‚f*ck trump‚ on upscale storefront [video],wine sipping city attorney caught camera taking photo accomplice spray painting fck trump upscale storefront video
+1,iran eu and russia defend nuclear deal after trump threat,iran eu russia defend nuclear deal trump threat
+0,former new black panther advisor and ‚minister‚ threatens: ‚if freddie gray‚s killers walk you will see cops being killed in broad daylight‚,former new black panther advisor minister threatens freddie gray killer walk see cop killed broad daylight
+0,"putin threatens to release 20000 ‚top secret‚ emails from hillary‚why judge napolitano says this is very bad news for hillary [video]""",putin threatens release top secret email hillarywhy judge napolitano say bad news hillary video
+0,minority trump supporters thrown out of maxine waters town hall by leftist bullies [video],minority trump supporter thrown maxine water town hall leftist bully video
+0,new video of united airlines passenger emerges: ‚i won‚t go‚you can drag me,new video united airline passenger emerges wont goyou drag
+1,hungary rejects 'dead end street' of ceding powers to eu,hungary reject dead end street ceding power eu
+1,turkey's talks with u.s. on visa crisis going in 'good direction' erdogan spokesman says,turkey talk u visa crisis going good direction erdogan spokesman say
+0,lol! the boston globe gets destroyed on social media after publishing article criticizing mitt romney for waterskiing during health care vote,lol boston globe get destroyed social medium publishing article criticizing mitt romney waterskiing health care vote
+0,fake news: the collapse of the msm‚s ‚facebook russian bot‚ story,fake news collapse msms facebook russian bot story
+1,having nuclear weapons 'matter of life and death' for north korea: agency,nuclear weapon matter life death north korea agency
+1,trump speaks with leaders of saudi arabia uae and qatar,trump speaks leader saudi arabia uae qatar
+1,provocation? republican senators introduce new bill to move us embassy in israel to jerusalem,provocation republican senator introduce new bill move u embassy israel jerusalem
+0,gop rep dave brat humiliates msnbc host craig melvin over liberal media bias‚makes melvin wish he never interviewed him [video],gop rep dave brat humiliates msnbc host craig melvin liberal medium biasmakes melvin wish never interviewed video
+1,tillerson urges iraq kurds to resolve conflict through dialogue,tillerson urge iraq kurd resolve conflict dialogue
+0,crosstalk: wikileaks vault 7 with guests patrick henningsen,crosstalk wikileaks vault guest patrick henningsen
+1,'they have to pay' eu's juncker says of britain,pay eu juncker say britain
+1,oregon governor says feds ‚must act‚ against protesters and armed groups in burns,oregon governor say fed must act protester armed group burn
+0,manchester: muslim woman wearing hand grenade,manchester muslim woman wearing hand grenade
+1,no new ski boycott: eu changes tune on austrian right,new ski boycott eu change tune austrian right
+0,lol! democrats express concerns over possible cheating by democrats in dnc chair vote,lol democrat express concern possible cheating democrat dnc chair vote
+1,former u.s. president jimmy carter says would travel to north korea: nyt,former u president jimmy carter say would travel north korea nyt
+0,"boom! shareholder confronts liberal starbucks ceo over damage to stock value after saying he‚ll hire 10000 refugees‚questioned why schultz ignored obama‚s travel ban [video]""",boom shareholder confronts liberal starbucks ceo damage stock value saying hell hire refugeesquestioned schultz ignored obamas travel ban video
+1,syrian army ousts is from last central syria pocket: military source,syrian army ousts last central syria pocket military source
+1,pakistani activist targeted by blast vows to maintain effort to rein in taliban,pakistani activist targeted blast vow maintain effort rein taliban
+1,mozambique's president dismisses head of intelligence and army chief,mozambique president dismisses head intelligence army chief
+1,burundi says u.n. office break-in may have been fabrication,burundi say un office breakin may fabrication
+0,as trump‚s popularity soars abroad‚village in india renames itself ‚trump‚ [video],trump popularity soar abroadvillage india renames trump video
+1,hamas picks new deputy chief whom israel blames for helping spark gaza war,hamas pick new deputy chief israel blame helping spark gaza war
+1,france's macron plans end to retire-young rail pensions,france macron plan end retireyoung rail pension
+1,bangladesh detains leaders of islamist party for militant 'plot',bangladesh detains leader islamist party militant plot
+1,zuma given november 30 deadline ahead of south africa decision on graft charges,zuma given november deadline ahead south africa decision graft charge
+1,north korea: trump‚s recklessness could trigger all-out conflict on korean peninsula,north korea trump recklessness could trigger allout conflict korean peninsula
+1,as u.s. ban on travel to north korea kicks in tourists say their farewells,u ban travel north korea kick tourist say farewell
+1,five things to look out for with trump‚s pentagon,five thing look trump pentagon
+0,breaking: did hillary‚s unsecured classified emails cause execution of iranian accused of working with u.s.? [video],breaking hillary unsecured classified email cause execution iranian accused working u video
+1,tillerson russia's lavrov discuss syria ukraine middle east,tillerson russia lavrov discus syria ukraine middle east
+1,u.s. policy on iran won't harm its oil industry: minister,u policy iran wont harm oil industry minister
+0,hillary supporters explained in 6 brutal photos,hillary supporter explained brutal photo
+1,iran open to talks over its ballistic missile programme: sources,iran open talk ballistic missile programme source
+1,eu's verhofstadt says assumes a brexit deal can be done with britain,eu verhofstadtsays assumes brexit deal done britain
+1,four killed as militants attack airport security camp in indian-controlled kashmir,four killed militant attack airport security camp indiancontrolled kashmir
+0,it begins: man dressed as woman arrested in women‚s bathroom‚you won‚t believe what he was doing!,begin man dressed woman arrested womens bathroomyou wont believe
+0,martha stewart makes lewd gesture towards trump portrait at art fair‚boycott!,martha stewart make lewd gesture towards trump portrait art fairboycott
+0,wow! america is under attack by these 187 organizations directly funded by george soros,wow america attack organization directly funded george soros
+0,tucker carlson to border angels founder: why shouldn‚t borders be protected?,tucker carlson border angel founder shouldnt border protected
+0,breaking: iran tests cruise missile‚trump warns‚they‚re ‚playing with fire‚they don‚t appreciate how ‚kind‚ president obama was to them. not me!‚ [video],breaking iran test cruise missiletrump warnstheyre playing firethey dont appreciate kind president obama video
+1,china offers support for strife-torn venezuela at united nations,china offer support strifetorn venezuela united nation
+1,irish pm prefers may abortion referendum to maximize student vote,irish pm prefers may abortion referendum maximize student vote
+1,turkey detains seven people over explosion at tupras refinery: ntv,turkey detains seven people explosion tupras refinery ntv
+0,breaking bombshell: blonde clinton neighbor,breaking bombshell blonde clinton neighbor
+0,hurricane irma worsens latin america's fuel supply crunch,hurricane irma worsens latin america fuel supply crunch
+1,saudi king to visit russia: ria cites kremlin,saudi king visit russia ria cite kremlin
+1,merkel abe agree sanctions against north korea should be stepped up,merkel abe agree sanction north korea stepped
+1,brother of marseille attacker arrested in italy: police,brother marseille attacker arrested italy police
+0,army of isis scientists ready to wage war against eu: have already smuggled chemical,army isi scientist ready wage war eu already smuggled chemical
+1,u.s. 'making a lot of progress' on north korea issue: trump,u making lot progress north korea issue trump
+1,damascus says syrian kurdish autonomy negotiable: report,damascus say syrian kurdish autonomy negotiable report
+1,u.s. takes aim at yemeni islamic state for first time,u take aim yemeni islamic state first time
+1,factbox: trump on twitter (september 19) - venezuela north korea u.n. mexico,factbox trump twitter september venezuela north korea un mexico
+0,obama‚s black lives matter terrorists join people who are living in our country illegally,obamas black life matter terrorist join people living country illegally
+0,video: watch james o‚keefe easily obtain eminem‚s election ballot in undercover sting,video watch james okeefe easily obtain eminems election ballot undercover sting
+0,obama‚s gitmo board releases ‚high risk‚ explosive‚s expert,obamas gitmo board release high risk explosive expert
+0,where is the outrage? indiegogo hosts fundraiser for black man and bank robber who murdered white cop and marine veteran [video],outrage indiegogo host fundraiser black man bank robber murdered white cop marine veteran video
+1,turkey to allow muftis to conduct weddings sparking uproar on left,turkey allow mufti conduct wedding sparking uproar left
+0,obama will give away free internet (to those he deems worthy) : ‚the internet is not a luxury‚,obama give away free internet deems worthy internet luxury
+1,mexico's strongest quake in 85 years kills dozens in the poor south,mexico strongest quake year kill dozen poor south
+1,north korea says sanctions threaten survival of its children,north korea say sanction threaten survival child
+0,what neighbor said about muslim man id‚d as london terrorist speaks volumes about the danger of ‚islamic non-assimilation‚ [video],neighbor said muslim man idd london terrorist speaks volume danger islamic nonassimilation video
+0,college students admit they got extra credit for attending hillary rallies‚,college student admit got extra credit attending hillary rally
+1,kenyan election commission sets oct. 17 as date for new vote,kenyan election commission set oct date new vote
+1,u.s. army sergeant bergdahl could face life sentence for endangering troops,u army sergeant bergdahl could face life sentence endangering troop
+1,eu's juncker says assumes won't end up with 'no deal' on brexit,eu juncker say assumes wont end deal brexit
+0,trump blasts media for lying about bust of mlk jr being removed from oval office‚brings one very important bust back into the oval office,trump blast medium lying bust mlk jr removed oval officebrings one important bust back oval office
+0,citizens silent while ‚alt-left‚ rejoices‚3 more confederate statues removed in the dark of night after city council vote [video],citizen silent altleft rejoices confederate statue removed dark night city council vote video
+0,list of comey‚s 10 biggest screw ups as fbi director‚why his firing was long overdue,list comeys biggest screw ups fbi directorwhy firing long overdue
+1,aide to ivory coast parliament speaker arrested over arms cache,aide ivory coast parliament speaker arrested arm cache
+1,turkey iran and russia to deploy observers around syria's idlib,turkey iran russia deploy observer around syria idlib
+0,italian catholics told to ‚pray silently‚ so as not to ‚offend‚ muslim refugees living in church [video],italian catholic told pray silently offend muslim refugee living church video
+1,brazil court freezes ex-leader rousseff's assets over 2006 refinery deal,brazil court freeze exleader rousseffs asset refinery deal
+0,watch will smith explain why he‚s joining his wife‚s hollywood race war,watch smith explain he joining wife hollywood race war
+1,after question on foreign meddling in brexit uk says democracy secure,question foreign meddling brexit uk say democracy secure
+0,whoa! former democrat congresswoman reveals hillary‚s criminal past [video],whoa former democrat congresswoman reveals hillary criminal past video
+1,far-right scores surprise success in czech election,farright score surprise success czech election
+0,boiler room #64 ‚ gladio! come out and play!,boiler room gladio come play
+0,amazing thing happened when h.s. valedictorian stepped up to podium after atheist group told grads they could no longer recite the lord‚s prayer,amazing thing happened h valedictorian stepped podium atheist group told grad could longer recite lord prayer
+0,ep #17: patrick henningsen live ‚ ‚parallax politics in dc‚ with guest daniel faraci,ep patrick henningsen live parallax politics dc guest daniel faraci
+1,first time in 30 years: us deploys b-52 bombers to qatar to bomb‚ isis?,first time year u deploys b bomber qatar bomb isi
+1,nancy hatch dupree 'grandmother of afghanistan' dies in kabul,nancy hatch dupree grandmother afghanistan dy kabul
+0,trump‚s doj makes announcement on anti-gun obama-era ‚operation choke point‚,trump doj make announcement antigun obamaera operation choke point
+1,france's foreign minister worried by trump's stance on iran nuclear deal,france foreign minister worried trump stance iran nuclear deal
+0,breaking: another undercover video released of cnn producer mocking cuomo and calling voters ‚stupid as sh*t‚ [video],breaking another undercover video released cnn producer mocking cuomo calling voter stupid sht video
+1,with tears and song china welcomes xi as great wise leader,tear song china welcome xi great wise leader
+1,nhc says irma forecast to strengthen once it moves away from cuba,nhc say irma forecast strengthen move away cuba
+1,mexico military helicopter crashes in northern state seven presumed dead,mexico military helicopter crash northern state seven presumed dead
+0,[video] #blacklivesmatter activist posts staged video of police brutality against a protestor on twitter,video blacklivesmatter activist post staged video police brutality protestor twitter
+1,"beyond mission creep: u.s. planning to send 1000 more ground troops into syria""",beyond mission creep u planning send ground troop syria
+1,iranians pour onto the streets to mourn soldier beheaded in syria,iranian pour onto street mourn soldier beheaded syria
+1,uk concerned by implications of u.s. decision on iran deal: minister,uk concerned implication u decision iran deal minister
+1,new school offers education 'salvation' for syrian girls in lebanon,new school offer education salvation syrian girl lebanon
+0,microsoft pulls new a.i. robot after it went on pro-hitler twitter rant,microsoft pull new ai robot went prohitler twitter rant
+1,rohingya muslims flee as more than 2600 houses burned in myanmar's rakhine,rohingya muslim flee house burned myanmar rakhine
+0,[video] dinesh d‚souza warned us about what the world would look like if we gave obama another term in ‚2016: obama‚s america‚‚was he correct?,video dinesh dsouza warned u world would look like gave obama another term obamas americawas correct
+0,bombshell: president carter banned iranians from america during hostage crisis,bombshell president carter banned iranian america hostage crisis
+0,irony: only political party with black presidential candidate is threatened by #blacklivesmatter co-founder (not george soros),irony political party black presidential candidate threatened blacklivesmatter cofounder george soros
+0,expect more ‚terror busts‚ as fbi steps up its use of ‚isis stings‚,expect terror bust fbi step use isi sting
+0,black politician explains why left‚s ‚racist‚ critique of trump is wrong,black politician explains left racist critique trump wrong
+1,u.n. calls for pause in air strikes to spare civilians in syria's raqqa,un call pause air strike spare civilian syria raqqa
+1,german legal experts say poland has no right to ww2 reparations: report,german legal expert say poland right ww reparation report
+0,remember when donald trump fought palm beach officials to make mar-a-lago a club that welcomed blacks and jews when other clubs excluded them?,remember donald trump fought palm beach official make maralago club welcomed black jew club excluded
+0,sunday screening: operation hollywood (2004),sunday screening operation hollywood
+1,eurogroup head dijsselbloem to leave dutch politics,eurogroup head dijsselbloem leave dutch politics
+1,russia rejects lawsuit to learn fate of swedish war hero wallenberg: agencies,russia reject lawsuit learn fate swedish war hero wallenberg agency
+0,breaking: new ca law will allow cops to confiscate legally owned guns,breaking new ca law allow cop confiscate legally owned gun
+1,confused.gov: obama‚s imperial mideast policy unravels,confusedgov obamas imperial mideast policy unravels
+0,confirmed bombshell: seth rich sent over 44000 dnc emails to journalist,confirmed bombshell seth rich sent dnc email journalist
+1,spain says if catalan leader wants talks he first needs to respect the law,spain say catalan leader want talk first need respect law
+0,george clooney is a complete idiot,george clooney complete idiot
+1,sunday screening: ‚the clinton chronicles‚ (1994),sunday screening clinton chronicle
+0,hillary clinton is ‚most corrupt,hillary clinton corrupt
+0,boom! companies that openly criticized trump for ‚making america safe again‚ take stock market hit,boom company openly criticized trump making america safe take stock market hit
+1,catalonia finds no friends among eu leaders,catalonia find friend among eu leader
+1,after taiwan alarm china says air force drills were routine,taiwan alarm china say air force drill routine
+0,ep #17: patrick henningsen live ‚ ‚parallax politics in dc‚ with guest daniel faraci,ep patrick henningsen live parallax politics dc guest daniel faraci
+1,trump will 'do everything' to avoid nuclear war with north korea: mnuchin,trump everything avoid nuclear war north korea mnuchin
+0,switzerland‚s not playing games with muslim immigrants: ‚if you reject our culture,switzerland playing game muslim immigrant reject culture
+1,tillerson to discuss north korea crisis trade in china,tillerson discus north korea crisis trade china
+0,nervous nancy: pelosi gives incoherent response to trump‚s saying her being dem leader helps gop,nervous nancy pelosi give incoherent response trump saying dem leader help gop
+1,sri lanka arrests two over hacking of taiwan bank accounts,sri lanka arrest two hacking taiwan bank account
+1,why hillary clinton is responsible for us failures in libya and syria,hillary clinton responsible u failure libya syria
+0,karma: gay pastor sues whole foods for ‚anti-gay slur‚ on cake‚didn‚t count on baker being gay [video],karma gay pastor sue whole food antigay slur cakedidnt count baker gay video
+1,british pm may outraged at north korea's 'reckless provocation': spokesman,british pm may outraged north korea reckless provocation spokesman
+1,egypt arrests dozens in crackdown on gays,egypt arrest dozen crackdown gay
+1,militant blast gun attack kill 18 police in egypt's sinai,militant blast gun attack kill police egypt sinai
+1,ukraine pm says review of gas price formula is under way,ukraine pm say review gas price formula way
+0,illegal aliens sent to states with lax voter id laws: told to vote democrat or be deported,illegal alien sent state lax voter id law told vote democrat deported
+0,boiler room ep #124 ‚ weather warfare & cnn goblin pits,boiler room ep weather warfare cnn goblin pit
+0,wikileaks email: hillary camp calls conservatives in church amazing ‚bastardization of faith‚ [video],wikileaks email hillary camp call conservative church amazing bastardization faith video
+0,toronto imam wants muslims to only do business with muslims,toronto imam want muslim business muslim
+0,how black lives matter terrorists and cop killings can be traced back to barack hussein obama,black life matter terrorist cop killing traced back barack hussein obama
+1,bangladesh sets aside rift with myanmar to ease rice shortage,bangladesh set aside rift myanmar ease rice shortage
+0,breaking: at least 14 us coalition military officers captured by syrian special forces in east aleppo bunker,breaking least u coalition military officer captured syrian special force east aleppo bunker
+1,australian government faces uncertain two months after court delays citizenship hearing,australian government face uncertain two month court delay citizenship hearing
+1,hacking democracy? cia accusing russia of doing what langley does so well,hacking democracy cia accusing russia langley well
+0,it‚s all the rage: liberal writer decides to change her body to match her gender neutral mind,rage liberal writer decides change body match gender neutral mind
+1,eu to ban business ties with pyongyang over nuclear tests,eu ban business tie pyongyang nuclear test
+0,nfl‚s phony patriotism: us defense department paid nfl $5.4 million for on-field flag appearances,nfls phony patriotism u defense department paid nfl million onfield flag appearance
+1,china has no problem overcoming middle-income trap: social security fund chief,china problem overcoming middleincome trap social security fund chief
+0,actress jodie foster weighs in on the phony ‚war on women‚‚hillary won‚t like this!,actress jodie foster weighs phony war womenhillary wont like
+0,mass immigration,mass immigration
+0,nike drops conservative boxer manny pacquiao after condemning gay relationships based on his religious beliefs [video],nike drop conservative boxer manny pacquiao condemning gay relationship based religious belief video
+1,spanish police to take over catalan polling stations to thwart independence vote,spanish police take catalan polling station thwart independence vote
+0,boiler room #101 ‚ st. patrick‚s cyber-pocalypse with john mcafee,boiler room st patrick cyberpocalypse john mcafee
+0,grab the popcorn: ‚best actress‚ nominee on oscar boycott,grab popcorn best actress nominee oscar boycott
+0,fake news update: newsweek reporter caught lying about trump supporters booing late john glenn tries to cover tracks,fake news update newsweek reporter caught lying trump supporter booing late john glenn try cover track
+0,dopey santas,dopey santa
+0,revealed: how democratic party pays agit-prop ‚protesters‚ to incite violence at trump events,revealed democratic party pay agitprop protester incite violence trump event
+1,u.s. strike on islamic state camps in yemen kills dozens: pentagon,u strike islamic state camp yemen kill dozen pentagon
+1,catalan parliament session delayed for talks between parties,catalan parliament session delayed talk party
+0,this company puts up a billboard that finally gets #blacklivesmatter right‚ without the racist connotation,company put billboard finally get blacklivesmatter right without racist connotation
+0,wow! hillary supporter caught on undercover camera saying ‚it‚s okay‚ to rip up republican voter registrations [video],wow hillary supporter caught undercover camera saying okay rip republican voter registration video
+1,gunman attacks saudi security forces at gate of jeddah royal palace,gunman attack saudi security force gate jeddah royal palace
+0,liberal lansing,liberal lansing
+0,gq magazine pens repulsive article on brilliant neurosurgeon: ‚f*ck ben carson‚,gq magazine pen repulsive article brilliant neurosurgeon fck ben carson
+0,ben stein calls out 9th circuit court: committed a ‚coup d‚√©tat‚ against the constitution,ben stein call th circuit court committed coup dtat constitution
+0,boom! ben carson eviscerates rabid media over west point accusations‚demands answers for why they didn‚t look into obama‚s past [video],boom ben carson eviscerates rabid medium west point accusationsdemands answer didnt look obamas past video
+1,after speech fiasco uk minister says ruling conservatives must stay cool,speech fiasco uk minister say ruling conservative must stay cool
+0,migrant girls as young as 11 arrive in sweden married and pregnant,migrant girl young arrive sweden married pregnant
+0,daniel hannan tells ‚the generation of the safe spaces‚ to get over themselves [video],daniel hannan tell generation safe space get video
+0,british actress nails it: do you think isis cares about ‚pathetic hashtags,british actress nail think isi care pathetic hashtags
+1,france's macron will travel to saint martin on tuesday,france macron travel saint martin tuesday
+1,eu commission says all sides should stick to iran deal terms,eu commission say side stick iran deal term
+0,russian street preacher vs. american students,russian street preacher v american student
+1,doubts about smoking gun as duterte lauds china role in rebel killing,doubt smoking gun duterte lauds china role rebel killing
+0,"texas man ordered to pay $65000 in child support for kid who isn‚t his‚after dna test proves he‚s not the father""",texas man ordered pay child support kid isnt hisafter dna test prof he father
+1,morocco arrests six suspected islamic state militants,morocco arrest six suspected islamic state militant
+1,macri ally leads argentina senate race against former president,macri ally lead argentina senate race former president
+0,fbi data shows black-on-black murders off the charts during obama presidency‚so why is obama chasing cops from black neighborhoods?,fbi data show blackonblack murder chart obama presidencyso obama chasing cop black neighborhood
+0,woman arrested for wearing t-shirt naming muslim extremist who fled country after failed jihad attempt [video],woman arrested wearing tshirt naming muslim extremist fled country failed jihad attempt video
+0,panera bread ceo 2014: ‚don‚t bring your guns into restaurants‚‚update: two md sheriffs shot and killed in panera bread restaurant,panera bread ceo dont bring gun restaurantsupdate two md sheriff shot killed panera bread restaurant
+0,cnn host and crybaby hillary surrogate get brutal slap down when dr. gina loudon uses facts against them [video],cnn host crybaby hillary surrogate get brutal slap dr gina loudon us fact video
+0,veteran who gave trump his purple heart explains why he did it‚shuts down critics [video],veteran gave trump purple heart explains itshuts critic video
+0,lol! hillary accidentally calls trump her ‚husband‚ [video],lol hillary accidentally call trump husband video
+1,us police dept uses ‚pok√©mon go‚ to lure fugitives to police station,u police dept us pokmon go lure fugitive police station
+0,viral video: univ of wi students busted agreeing with discrimination against christians‚but not okay with discrimination against muslims,viral video univ wi student busted agreeing discrimination christiansbut okay discrimination muslim
+1,families fleeing syria's raqqa say air strikes bring heavy toll,family fleeing syria raqqa say air strike bring heavy toll
+1,eu to offer may hope of post-brexit talks at summit: draft text,eu offer may hope postbrexit talk summit draft text
+1,bulgaria warplane purchase on hold after lawmakers demur,bulgaria warplane purchase hold lawmaker demur
+1,south africa's anc needs to put an end to scandals: official,south africa anc need put end scandal official
+0,syrian government forces used chemical weapons more than two dozen times: u.n.,syrian government force used chemical weapon two dozen time un
+1,suspected al shabaab militants behead four in kenya's lamu county: official,suspected al shabaab militant behead four kenya lamu county official
+1,typhoon leaves flooding four dead in japan before moving out to sea,typhoon leaf flooding four dead japan moving sea
+1,witness says injured in stampede at london station: reuters reporter,witness say injured stampede london station reuters reporter
+1,putin says trump hampered from delivering electoral promises,putin say trump hampered delivering electoral promise
+1,german prosecutors accuse former far-right party leader of perjury,german prosecutor accuse former farright party leader perjury
+1,jihadists launch big attack on syrian government near hama,jihadist launch big attack syrian government near hama
+0,new normal? massive music festival in angela merkel‚s islamic migrant nation of germany evacuated after ‚concrete terror threat‚ [video],new normal massive music festival angela merkels islamic migrant nation germany evacuated concrete terror threat video
+1,syria: nikki haley threatens to ‚do more‚ despite international outrage at us criminal act of aggression,syria nikki haley threatens despite international outrage u criminal act aggression
+1,woman dies in ireland as a result of storm ophelia: rte,woman dy ireland result storm ophelia rte
+0,easily duped: trump surpasses bush,easily duped trump surpasses bush
+1,central african president pleads to u.n.: don't forget us,central african president pleads un dont forget u
+0,illegal invasion continues: nyc ramping up to give 1 million illegals voting rights,illegal invasion continues nyc ramping give million illegals voting right
+1,myanmar army drops charges against six journalists amid free speech concerns,myanmar army drop charge six journalist amid free speech concern
+0,paul joseph watson is not happy about the air strike on syria‚here‚s why [video],paul joseph watson happy air strike syriaheres video
+1,santilli freed under plea pact as vegas shooting casts shadow on bundy trial,santilli freed plea pact vega shooting cast shadow bundy trial
+1,iraq warns kurdistan not to shut down kirkuk oil flows,iraq warns kurdistan shut kirkuk oil flow
+0,breaking bad: john mccain‚s campaign rocked by meth lab scandal,breaking bad john mccains campaign rocked meth lab scandal
+1,iran vows to stand with baghdad ankara against iraqi kurds' independence push,iran vow stand baghdad ankara iraqi kurd independence push
+1,germany's schaeuble says soft brexit best way to minimize damage,germany schaeuble say soft brexit best way minimize damage
+0,cnn‚s don lemon: is he an alcoholic or just a drunk?,cnns lemon alcoholic drunk
+1,bombs kill pakistani soldiers hunting u.s.-canadian family's kidnappers,bomb kill pakistani soldier hunting uscanadian family kidnapper
+1,pakistan kicks out medical charity msf from country's tribal region,pakistan kick medical charity msf country tribal region
+0,priceless! trump‚s answer about putin firing u.s. embassy employees will make your day! [video],priceless trump answer putin firing u embassy employee make day video
+0,boiler room ep #130 ‚ mandalay cover-up,boiler room ep mandalay coverup
+0,tucker carlson outs human rights exec. director as a partisan hack: ‚obviously partisan motives diminish your mission‚ [video],tucker carlson out human right exec director partisan hack obviously partisan motif diminish mission video
+1,canada says has no plans to remove embassy staff from cuba,canada say plan remove embassy staff cuba
+1,iraq says iran has shut border with kurdistan,iraq say iran shut border kurdistan
+1,hurricane irma will 'devastate' part of u.s.: emergency services head,hurricane irma devastate part u emergency service head
+0,"boom! leaders of 34000 black churches tell members to turn backs on race-baiter-for-hire al sharpton‚s d.c. march against trump""",boom leader black church tell member turn back racebaiterforhire al sharptons dc march trump
+1,thai government takes action against monk over anti-muslim views,thai government take action monk antimuslim view
+1,eu executive steps up action against hungary over ngo law,eu executive step action hungary ngo law
+1,tillerson says u.s. weighing closing embassy in cuba over sonic attacks,tillerson say u weighing closing embassy cuba sonic attack
+0,no recount? hillary won ca county with most illegal aliens by stunning margin‚ex-ice agent explains how easy it is for illegals to vote [video],recount hillary ca county illegal alien stunning marginexice agent explains easy illegals vote video
+1,researchers raise doubts over cause of chilean poet neruda's death,researcher raise doubt cause chilean poet neruda death
+1,glossed over: key questions emerge after death of supreme court justice antonin scalia,glossed key question emerge death supreme court justice antonin scalia
+1,cambodian leader gets china's backing as west condemns crackdown,cambodian leader get china backing west condemns crackdown
+1,danish police identify torso as missing submarine journalist,danish police identify torso missing submarine journalist
+1,stampede in india's financial capital kills at least 22,stampede india financial capital kill least
+1,palestinian rivals hamas fatah agree to complete gaza handover by dec. 1: statement,palestinian rival hamas fatah agree complete gaza handover dec statement
+0,was a washington post reporter caught snapping photos of tillerson‚s notes during confirmation hearings break? [video] update: wapo reporter finally says it‚s not her,washington post reporter caught snapping photo tillersons note confirmation hearing break video update wapo reporter finally say
+0,progressive lunacy: peta claims indonesian monkey owns ‚selfie‚ copyright,progressive lunacy peta claim indonesian monkey owns selfie copyright
+1,cameroon anglophone regions to shut nigeria border over protests,cameroon anglophone region shut nigeria border protest
+0,italians furious! have you ever dreamed of living free of charge in a 4-star seaside resort in italy?‚become a refugee and you can!,italian furious ever dreamed living free charge star seaside resort italybecome refugee
+0,twitter posts hilarious images after announcement that it‚s now illegal to post images of putin as ‚gay‚,twitter post hilarious image announcement illegal post image putin gay
+0,high school v.p. warns students: ‚only terrorists we need to fear are ‚domestic white ‚christian‚ men with easy access to guns.‚,high school vp warns student terrorist need fear domestic white christian men easy access gun
+0,irony alert! dc‚s day without women literally led by a man‚event turns into anti-trump rally: ‚he is wrong. we have to stop him.‚ [video],irony alert dc day without woman literally led manevent turn antitrump rally wrong stop video
+0,harvard bullied into dropping 80 year old ‚racist‚ law school emblem,harvard bullied dropping year old racist law school emblem
+0,boom! senate passes obamacare repeal resolution in almost unanimous gop vote‚one former gop presidential candidate whispered ‚no‚,boom senate pass obamacare repeal resolution almost unanimous gop voteone former gop presidential candidate whispered
+1,angola‚s first new president in 38 years vows to fight graft,angola first new president year vow fight graft
+1,new zealand forestry a first test in nationalist party's protectionist agenda,new zealand forestry first test nationalist party protectionist agenda
+0,duck dynasty‚s willie robertson makes debut on fox news with hilarious commentary on hillary and bernie,duck dynasty willie robertson make debut fox news hilarious commentary hillary bernie
+1,seoul considers unilateral sanctions against north korea,seoul considers unilateral sanction north korea
+0,reflections on a world gone mad and pushing back against neocolonialist thuggery,reflection world gone mad pushing back neocolonialist thuggery
+1,lavrov to trump: ‚do not attack venezuela‚,lavrov trump attack venezuela
+0,he made a living convincing swede‚s that muslims were falsely portrayed‚his new job proves everything he said was a lie,made living convincing swede muslim falsely portrayedhis new job prof everything said lie
+1,pressure on as xi's 'belt and road' enshrined in chinese party charter,pressure xi belt road enshrined chinese party charter
+1,turkey says air force kills 13 in north iraq air strike,turkey say air force kill north iraq air strike
+1,uk publisher rejected request to block academic articles in china,uk publisher rejected request block academic article china
+0,sunday screening: guns,sunday screening gun
+1,u.n. human rights council extends myanmar mission until september 2018,un human right council extends myanmar mission september
+1,more than 60 rohingya feared drowned as u.s. steps up pressure on myanmar,rohingya feared drowned u step pressure myanmar
+0,wow! white liberals suggest blacks are too stupid to get id‚s‚can‚t figure out how to use internet [video],wow white liberal suggest black stupid get idscant figure use internet video
+1,mexico accepts israeli offer to help develop central america,mexico accepts israeli offer help develop central america
+0,charlie manson,charlie manson
+1,catalonian vote is matter for spain britain urges restraint,catalonian vote matter spain britain urge restraint
+0,transgender antifa thug starts to burn american flag‚pro-trump biker gives him big surprise [video],transgender antifa thug start burn american flagprotrump biker give big surprise video
+1,trump says u.s. 'totally prepared' for military option in north korea,trump say u totally prepared military option north korea
+0,an american tragedy: who really killed jonbenét ramsey?,american tragedy really killed jonbent ramsey
+0,wikileaks: nsa spied on un secretary-general and world leaders‚ secret meetings,wikileaks nsa spied un secretarygeneral world leader secret meeting
+0,breaking: hillary‚s campaign chairman on close friend,breaking hillary campaign chairman close friend
+1,slovakia a pro-european island in its region pm says,slovakia proeuropean island region pm say
+1,u.s. not ruling out possible oil embargo on venezuela: haley,u ruling possible oil embargo venezuela haley
+0,kellyanne conway gives dreaded answer to liberal hack,kellyanne conway give dreaded answer liberal hack
+0,julian assange gets emotional over his family,julian assange get emotional family
+0,message for progressive left: ‚if you want to see real nazis,message progressive left want see real nazi
+0,there‚s something hokey about ted,there something hokey ted
+0,fitting end for communist dictator: hilarious reason jeep carrying castro‚s ashes had to be pushed by military,fitting end communist dictator hilarious reason jeep carrying castro ash pushed military
+1,indigenous woman registers to run for mexican presidency in 2018,indigenous woman register run mexican presidency
+1,factbox: iraq's kurds to vote in historic referendum on independence,factbox iraq kurd vote historic referendum independence
+1,malaysia summons myanmar ambassador over violence in rakhine state,malaysia summons myanmar ambassador violence rakhine state
+1,former guerrilla coalition gets mandate to form kosovo government,former guerrilla coalition get mandate form kosovo government
+0,high school principal confiscates yearbooks from students after discovering senior used favorite trump quote in profile,high school principal confiscates yearbook student discovering senior used favorite trump quote profile
+1,clinton and associates‚ education ponzi scheme,clinton associate education ponzi scheme
+1,'it's not over yet' merkel warns supporters before vote,yet merkel warns supporter vote
+1,spain's high court calls head of catalan police to testify,spain high court call head catalan police testify
+1,mattis hints at military options on north korea but offers no details,mattis hint military option north korea offer detail
+1,kurds stick with independence vote 'never going back to baghdad': barzani,kurd stick independence vote never going back baghdad barzani
+1,seeking to relaunch social agenda uk's may to address racial disparity,seeking relaunch social agenda uk may address racial disparity
+1,venezuela slams u.s. travel restrictions as 'political terrorism',venezuela slam u travel restriction political terrorism
+1,indian court acquits dentist couple of killing daughter,indian court acquits dentist couple killing daughter
+1,russia sends 175 de-miners to syria's deir al-zor: interfax,russia sends deminers syria deir alzor interfax
+1,trump talks tough on pakistan's 'terrorist' havens but options scarce,trump talk tough pakistan terrorist haven option scarce
+1,defense for brazil's temer asks supreme court to send back new charges,defense brazil temer asks supreme court send back new charge
+1,mata pires owner of embattled brazil builder oas dies,mata pires owner embattled brazil builder oas dy
+0,terror group plans violence against trump supporters: shocking flier reveals calls for violence: ‚smash white supremacy‚,terror group plan violence trump supporter shocking flier reveals call violence smash white supremacy
+0,breaking: michael brown friend who started #handsupdontshoot lie arrested,breaking michael brown friend started handsupdontshoot lie arrested
+0,end of fox news monopoly? liberal murdoch sons who fired bill o‚reilly and roger ailes,end fox news monopoly liberal murdoch son fired bill oreilly roger ailes
+0,"not kidding: call a transexual ‚he‚ if he wants to be called ‚she‚ in communist nyc‚pay staggering $250000 fine""",kidding call transexual want called communist nycpay staggering fine
+0,west virginia governor announces he‚s leaving dem party at massive trump rally‚switching to gop‚more #winning,west virginia governor announces he leaving dem party massive trump rallyswitching gopmore winning
+0,snowden 2.0: new nsa contractor whistleblower,snowden new nsa contractor whistleblower
+1,indonesian envoy to urge myanmar to halt violence against rohingya muslims,indonesian envoy urge myanmar halt violence rohingya muslim
+1,exclusive: 10000 uk finance jobs affected in brexit's first wave - reuters survey,exclusive uk finance job affected brexits first wave reuters survey
+1,frankfurt starts evacuation before attempt to defuse wwii bomb,frankfurt start evacuation attempt defuse wwii bomb
+0,police officer asks daughter‚s school to remove hateful drawing from display‚school has shocking response,police officer asks daughter school remove hateful drawing displayschool shocking response
+1,muslim migrants show appreciation to german hosts by spreading feces,muslim migrant show appreciation german host spreading feces
+1,chinese academics prod beijing to consider north korea contingencies,chinese academic prod beijing consider north korea contingency
+1,usgs says cannot confirm if north korea quake natural or manmade,usgs say confirm north korea quake natural manmade
+0,[video] dem prez candidate booed off stage,video dem prez candidate booed stage
+0,illegal alien criminals on hunger strike in az prison give list of demands including removal of threat of deportation,illegal alien criminal hunger strike az prison give list demand including removal threat deportation
+1,pakistan's top court rejects challenges to removal of ex-pm sharif,pakistan top court reject challenge removal expm sharif
+0,robert parry: what to do about ‚fake news‚,robert parry fake news
+0,mtv releases racist ‚hey fellow white guy‚s video‚‚social media goes crazy! [video],mtv release racist hey fellow white guy videosocial medium go crazy video
+1,zambia fears humanitarian crisis as influx of congo refugees escalates,zambia fear humanitarian crisis influx congo refugee escalates
+0,radical,radical
+1,exclusive: flying into the eye of hurricane irma with u.s. 'hurricane hunters',exclusive flying eye hurricane irma u hurricane hunter
+0,hilarious trump christmas video: ‚it‚s the most wonderful time in 8 years‚ [video],hilarious trump christmas video wonderful time year video
+1,control of information shifts up a gear in run-up to cambodia election,control information shift gear runup cambodia election
+1,brazil's largest ever corruption probe nearing its end judge says,brazil largest ever corruption probe nearing end judge say
+1,australia's high court hears challenge to same-sex marriage vote,australia high court hears challenge samesex marriage vote
+0,whoa! breaking news: cnn producer caught on undercover tape admitting trump-russia coverage is bullsh*t‚‚president is right to say you are ‚witch hunting‚ me‚ (video),whoa breaking news cnn producer caught undercover tape admitting trumprussia coverage bullshtpresident right say witch hunting video
+0,here‚s how one man stopped huge riot ready to attack his apartment building [video],here one man stopped huge riot ready attack apartment building video
+0,wow! breaking news: proof obama lied to press‚.was notified 6 different times that hillary changed email address [video],wow breaking news proof obama lied presswas notified different time hillary changed email address video
+1,u.s. condemns russia veto of probe into syria chemical weapons use,u condemns russia veto probe syria chemical weapon use
+0,the view‚s whoopi goldberg to co-host: ‚this is why black people don‚t wanna talk to white people‚ [video],view whoopi goldberg cohost black people dont wan na talk white people video
+0,climate scammer al gore utterly embarrassed‚can‚t explain why sea levels aren‚t rising,climate scammer al gore utterly embarrassedcant explain sea level arent rising
+0,huffington post publishes,huffington post publishes
+1,u.s.-backed militias seize key oil field in east syria: sdf,usbacked militia seize key oil field east syria sdf
+1,french foreign minister to travel to libya to push peace deal,french foreign minister travel libya push peace deal
+0,portland police call violent anti-trump protesters ‚anarchists‚‚upgrading protests to full-blown ‚riots‚one person hit by car‚killed,portland police call violent antitrump protester anarchistsupgrading protest fullblown riotsone person hit carkilled
+1,pro-damascus alliance declares syria offensive near iraq border,prodamascus alliance declares syria offensive near iraq border
+0,conservatives who disrupted trump assassination play speak out: ‚it was like a gang stabbing‚i watched everyone cheering his death,conservative disrupted trump assassination play speak like gang stabbingi watched everyone cheering death
+1,britain's farage talks brexit at german right-wing election rally,britain farage talk brexit german rightwing election rally
+1,congo elected to u.n. rights council; britain u.s. unhappy,congo elected un right council britain u unhappy
+1,russia says ready to work with north korea to resolve missile crisis,russia say ready work north korea resolve missile crisis
+0,economic systems brilliantly explained with cows,economic system brilliantly explained cow
+1,togo forces fire tear gas to disperse anti-government sit-in,togo force fire tear gas disperse antigovernment sitin
+0,maxine waters: obama‚s left a ‚very,maxine water obamas left
+1,uber grab to tighten up on deliveries in philippines amid drug concerns,uber grab tighten delivery philippine amid drug concern
+1,'he can count on us:' german spd minister hails macron's eu speech,count u german spd minister hail macron eu speech
+1,episode #6 ‚ drive by wire: ‚syria wmd redux?‚ (part 1),episode drive wire syria wmd redux part
+0,blood sport: gop presidential race takes another brutal turn as ‚party favorites‚ tear into trump,blood sport gop presidential race take another brutal turn party favorite tear trump
+1,france says iraqi kurds against independence push urges baghdad concessions,france say iraqi kurd independence push urge baghdad concession
+1,germany's greens all but rule out three-way 'jamaica' coalition,germany green rule threeway jamaica coalition
+0,boiler room ‚ #unitetheright coverage with hesher,boiler room unitetheright coverage hesher
+1,u.s.-backed syrian militias raise flag in raqqa stadium,usbacked syrian militia raise flag raqqa stadium
+1,syrian rebels hand border crossing to opposition government,syrian rebel hand border crossing opposition government
+1,oregon governor says feds ‚must act‚ against protesters and armed groups in burns,oregon governor say fed must act protester armed group burn
+1,china calls for restraint over north korea tensions,china call restraint north korea tension
+1,victims of colombia's civil war seek healing from pope,victim colombia civil war seek healing pope
+0,obama lectures cops on bigotry,obama lecture cop bigotry
+0,colleges may be forced to stop pushing qualified white students to back of line.. doj will take on affirmative action in college admissions,college may forced stop pushing qualified white student back line doj take affirmative action college admission
+1,international air ban over iraqi kurdistan comes into effect,international air ban iraqi kurdistan come effect
+1,trump asks congress to investigate former obama administration,trump asks congress investigate former obama administration
+1,iraq redux: us-led sanctions against syria are hurting real people,iraq redux usled sanction syria hurting real people
+0,disabled man with cane confronts 3 punks standing on american flag on ucla campus: what he does next is awesome! [video],disabled man cane confronts punk standing american flag ucla campus next awesome video
+1,campaign hits tv screens as australian same-sex marriage vote looms,campaign hit tv screen australian samesex marriage vote loom
+1,australia's second largest state edges towards permitting euthanasia,australia second largest state edge towards permitting euthanasia
+1,may juncker agree to step up brexit talks pace,may juncker agree step brexit talk pace
+0,top navy commander released after reportedly revealing secret about obama,top navy commander released reportedly revealing secret obama
+1,china says upholds peaceful resolution of north korea issue,china say upholds peaceful resolution north korea issue
+0,mother of terrorist wearing suicide vest: ‚did not mean to kill anyone‚ he was ‚stressed‚,mother terrorist wearing suicide vest mean kill anyone stressed
+0,conservative activist,conservative activist
+1,post-election conundrum awaits germany's merkel,postelection conundrum awaits germany merkel
+0,remember when the left thought it was ‚funny‚ to say about mccain: ‚i don‚t buy the war hero thing‚,remember left thought funny say mccain dont buy war hero thing
+1,boiler room ‚ presidential debate simulcast special,boiler room presidential debate simulcast special
+1,norway appoints its first female foreign minister,norway appoints first female foreign minister
+1,iraq redux: us-led sanctions against syria are hurting real people,iraq redux usled sanction syria hurting real people
+0,venezuelan bishops tell pope of 'truly desperate' situation,venezuelan bishop tell pope truly desperate situation
+1,rohingya women children die in desperate boat escape from myanmar,rohingya woman child die desperate boat escape myanmar
+1,macri ally gains ground in argentina senate election against fernandez,macri ally gain ground argentina senate election fernandez
+0,media obsesses over ted cruz‚s alleged infidelities,medium obsesses ted cruzs alleged infidelity
+0,yikes! hillary campaign in state of panic‚campaign events being cancelled due to lack of volunteers [video],yikes hillary campaign state paniccampaign event cancelled due lack volunteer video
+1,trump rebukes south korea after north korean bomb test,trump rebuke south korea north korean bomb test
+1,vietnam's facebook dissidents test the limits of communist state,vietnam facebook dissident test limit communist state
+1,stirred by same-sex marriage vote australia's youth gets serious,stirred samesex marriage vote australia youth get serious
+1,turkey's erdogan says may shut iraqi border any moment: hurriyet,turkey erdogan say may shut iraqi border moment hurriyet
+0,leaked documents show how this american citizen works to affect outcomes of elections around the world,leaked document show american citizen work affect outcome election around world
+0,how gorsuch will have immediate effect on historic 2nd amendment decision and these significant controversial cases,gorsuch immediate effect historic nd amendment decision significant controversial case
+0,kellyanne conway: ‚where the hell were those democrats when veterans were dying waiting for care?‚,kellyanne conway hell democrat veteran dying waiting care
+1,"beyond mission creep: u.s. planning to send 1000 more ground troops into syria""",beyond mission creep u planning send ground troop syria
+0,whoa! dnc releases statement suggesting dallas sniper and black lives matter protesters are linked,whoa dnc release statement suggesting dallas sniper black life matter protester linked
+1,philippine survey shows big support for duterte's drugs war,philippine survey show big support dutertes drug war
+1,u.s. pressing suu kyi myanmar military over rohingya: haley,u pressing suu kyi myanmar military rohingya haley
+1,latin american nations seek venezuela crisis mediation,latin american nation seek venezuela crisis mediation
+1,france condemns idlib offensive urges russia to abide by de-escalation deals,france condemns idlib offensive urge russia abide deescalation deal
+0,sunday screening: cia secret experiments (2008),sunday screening cia secret experiment
+1,jakarta governor sworn in amid calls from hardliners for 'islamic lifestyle',jakarta governor sworn amid call hardliner islamic lifestyle
+1,washington post sloppy ‚journalism‚ blames russia for ‚fake news‚ crisis and trump‚s win,washington post sloppy journalism blame russia fake news crisis trump win
+0,did hillary just lose her ‚get out of jail free‚ card?‚senior trump advisor: ‚trump has not ruled out criminal probe‚ against hillary,hillary lose get jail free cardsenior trump advisor trump ruled criminal probe hillary
+1,iraq paramilitaries battle kurds in push towards turkish border oil hub,iraq paramilitary battle kurd push towards turkish border oil hub
+1,boat with 130 rohingya refugee capsizes off myanmar iom says,boat rohingya refugee capsizes myanmar iom say
+0,lol! the woman who couldn‚t be bothered with protecting lives of brave americans serving in benghazi attacks trump on national security,lol woman couldnt bothered protecting life brave american serving benghazi attack trump national security
+0,jesse watters like you‚ve never seen him before! watch him rip into juan williams over calling trump family ‚unpatriotic‚‚schools him on corrupt democratic party ties to communism,jesse watters like youve never seen watch rip juan williams calling trump family unpatrioticschools corrupt democratic party tie communism
+0,illegal alien who helps illegals stay in u.s. arrested for drunk driving‚why the left may not be able to stop her deportation [video],illegal alien help illegals stay u arrested drunk drivingwhy left may able stop deportation video
+1,trump hostility set to deepen iran power struggles,trump hostility set deepen iran power struggle
+0,dan rather goes full-on radical: media must shame donald trump supporters,dan rather go fullon radical medium must shame donald trump supporter
+1,at least 11 afghan civilians killed in air strike local official says,least afghan civilian killed air strike local official say
+0,big fat lie being told by lefty media about trump wanting to register muslims‚he never said that!,big fat lie told lefty medium trump wanting register muslimshe never said
+1,tanzania shuts down another 'days numbered' newspaper,tanzania shuts another day numbered newspaper
+1,hong kong leader demands end of independence talk warns ties with beijing at risk,hong kong leader demand end independence talk warns tie beijing risk
+1,slain philippine teenager's family files murder complaint against police,slain philippine teenager family file murder complaint police
+0,mike pence booed by bitter liberals at broadway show hamilton‚lectured to by lead actor [video],mike penny booed bitter liberal broadway show hamiltonlectured lead actor video
+1,mexican families of 'dreamers' tell them to keep fighting,mexican family dreamer tell keep fighting
+1,obama to britain on his legacy: i saved the world economy,obama britain legacy saved world economy
+1,u.s. officials will not label treatment of rohingya as 'ethnic cleansing',u official label treatment rohingya ethnic cleansing
+1,mongolia names biker enthusiast pm kick-starting imf rescue package,mongolia name biker enthusiast pm kickstarting imf rescue package
+0,berkeley college thugs form human chain to stop white students from attending class [video],berkeley college thug form human chain stop white student attending class video
+0,video: crowd chants ‚lock her up!‚ as crooked hillary is introduced at #inauguration,video crowd chant lock crooked hillary introduced inauguration
+0,is fox about to become cnn? leftist wives of liberal murdoch sons blamed for firing of bill o‚reilly‚trash trump on social media,fox become cnn leftist wife liberal murdoch son blamed firing bill oreillytrash trump social medium
+1,gunfight erupts in southern yemen one civilian killed - witnesses,gunfight erupts southern yemen one civilian killed witness
+1,hezbollah declares syria victory russia says much of country won back,hezbollah declares syria victory russia say much country back
+1,poland's stance on migrants unchanged despite eu court ruling: pm,poland stance migrant unchanged despite eu court ruling pm
+0,investigative journalist attacked in kosovo,investigative journalist attacked kosovo
+0,undercover nypd cop busts 2 women building bomb,undercover nypd cop bust woman building bomb
+1,north korea says launched hwasong-12 rocket to counter south korea-u.s. drills: kcna,north korea say launched hwasong rocket counter south koreaus drill kcna
+0,obama‚s arrogance: watch as he admonishes reporter for asking if he was ‚content‚ with 4 americans held in iran jail [video],obamas arrogance watch admonishes reporter asking content american held iran jail video
+1,congo naval boats battle rebels on lake tanganyika,congo naval boat battle rebel lake tanganyika
+0,wake up america! ‚seed communities‚ of muslim refugees are sprouting up all over the u.s.,wake america seed community muslim refugee sprouting u
+0,breaking! shocking video from charlotte riots: ‚the situation is out of control!‚,breaking shocking video charlotte riot situation control
+1,barzani vows to press on with kurdish referendum defying iraq parliament,barzani vow press kurdish referendum defying iraq parliament
+0,something wicked is happening with refugees in idaho‚why is the media hiding it?,something wicked happening refugee idahowhy medium hiding
+0,eric holder encourages doj to keep attacking trump‚stunning list of holder scandals reveals why trump needs to drain obama‚s corrupt doj swamp,eric holder encourages doj keep attacking trumpstunning list holder scandal reveals trump need drain obamas corrupt doj swamp
+0,https://fedup.wpengine.com/wp-content/uploads/2015/04/hillarystreetart.jpg,httpsfedupwpenginecomwpcontentuploadshillarystreetartjpg
+1,trump administration faces flood of lawsuits over executive immigration ban,trump administration face flood lawsuit executive immigration ban
+1,russia's putin may meet venezuela's maduro: kremlin,russia putin may meet venezuela maduro kremlin
+1,spanish national police deploy near barcelona voting station: el pais,spanish national police deploy near barcelona voting station el pais
+1,macau opposition gains in election after deadly typhoon,macau opposition gain election deadly typhoon
+0,clinton emails: how google worked with hillary to try and overthrow syria‚s assad,clinton email google worked hillary try overthrow syria assad
+1,merkel welcomes 'a lot of material' from macron for eu reform debate,merkel welcome lot material macron eu reform debate
+0,sopa false flag? alleged ‚hack‚ on netflix,sopa false flag alleged hack netflix
+1,china urges north korea to stop persisting on a dangerous course,china urge north korea stop persisting dangerous course
+0,wow! ratings are in for anti-trumper megyn kelly‚s debut show on nbc‚and they‚re pretty bad!,wow rating antitrumper megyn kelly debut show nbcand theyre pretty bad
+1,fire at building in india's mumbai kills at least six,fire building india mumbai kill least six
+1,u.s. directly communicating with north korea seeks dialogue,u directly communicating north korea seek dialogue
+0,ron paul highlights real list of mainstream ‚fake news‚ journalists,ron paul highlight real list mainstream fake news journalist
+1,boat carrying asylum seekers from myanmar capsizes off bangladesh,boat carrying asylum seeker myanmar capsizes bangladesh
+1,guatemala top court sides with u.n. graft unit in fight with president,guatemala top court side un graft unit fight president
+0,univ of ga professor allows students to choose their own grades to help alleviate stress,univ ga professor allows student choose grade help alleviate stress
+1,bilderberg to meet next week in chantilly,bilderberg meet next week chantilly
+0,boiler room ep #129 ‚ mandalay ‚massacre:‚ initial boil down with hesh,boiler room ep mandalay massacre initial boil hesh
+1,may juncker call for faster brexit talks,may juncker call faster brexit talk
+0,french magazine found guilty over topless photos of british duchess,french magazine found guilty topless photo british duchess
+1,uk counter-terrorism police arrest 11 in far-right investigation,uk counterterrorism police arrest farright investigation
+1,women drivers seen reviving saudi car market,woman driver seen reviving saudi car market
+0,breaking: gut wrenching‚undercover video shows administrators at prestigious colleges shredding constitution,breaking gut wrenchingundercover video show administrator prestigious college shredding constitution
+1,kurds abandon territory in the face of iraq government advance,kurd abandon territory face iraq government advance
+1,u.s. supreme court rejects new zealand-based internet mogul's appeal,u supreme court reject new zealandbased internet mogul appeal
+0,judge napolitano: three intel sources have disclosed how obama spied on trump [video],judge napolitano three intel source disclosed obama spied trump video
+0,a young father explains socialism to his 10 year old son‚a must read for every american,young father explains socialism year old sona must read every american
+1,epa chief says ready to further relax fuel standards due to hurricanes,epa chief say ready relax fuel standard due hurricane
+0,leaked email: hillary‚s team caught bashing ‚backwards‚ catholics,leaked email hillary team caught bashing backwards catholic
+0,zakharova slams cia chief pompeo: stop making up anti-russian fiction,zakharova slam cia chief pompeo stop making antirussian fiction
+0,sunday screening: psywar (2010),sunday screening psywar
+0,desperate dems? russian bank reports computer hacks designed to make it appear trump had secret relationship with them,desperate dems russian bank report computer hack designed make appear trump secret relationship
+1,kenya vote in balance as crisis deepens after odinga quits,kenya vote balance crisis deepens odinga quits
+0,hillary clinton survives another fbi pantomime,hillary clinton survives another fbi pantomime
+0,boom! harvard law democrat alan dershowitz destroys the left‚s ‚unconstitutional‚ argument against donald trump jr. [video],boom harvard law democrat alan dershowitz destroys left unconstitutional argument donald trump jr video
+1,tale of two cities: kurdish vote lays bare political divisions,tale two city kurdish vote lay bare political division
+1,kurds press historic independence vote despite regional fears,kurd press historic independence vote despite regional fear
+1,australian court rules senator was british citizen when nominated,australian court rule senator british citizen nominated
+0,breaking: condi rice meets with mike pence in trump‚s d.c. transition office,breaking condi rice meet mike penny trump dc transition office
+1,iraq pm to visit turkey on wednesday discuss northern iraq referendum: turkish sources,iraq pm visit turkey wednesday discus northern iraq referendum turkish source
+0,gym owner who bans cops and military speaks up‚calls america a ‚brutal terrorist force‚ [video],gym owner ban cop military speaks upcalls america brutal terrorist force video
+0,dangerous hurricane irma moving towards caribbean islands: nhc,dangerous hurricane irma moving towards caribbean island nhc
+0,breaking: emergency room doctor in dearborn,breaking emergency room doctor dearborn
+0,obama unleashes hundreds of intelligence agents to ‚protect elections‚ from outside forces‚hacker known as ‚guccifer 2.0‚ warns of threat ‚from inside the system‚,obama unleashes hundred intelligence agent protect election outside forceshacker known guccifer warns threat inside system
+0,kathy griffin actually bragged about wanting to ‚beat down‚ 11-yr old barron trump 6 months ago,kathy griffin actually bragged wanting beat yr old barron trump month ago
+0,lol! cnn tells viewers ‚it‚s illegal‚ to read wikileaks emails‚so they‚ll tell you what‚s in them [video],lol cnn tell viewer illegal read wikileaks emailsso theyll tell whats video
+1,hong kong leader can't rule out barring even former governor patten as china flexes muscles,hong kong leader cant rule barring even former governor patten china flex muscle
+1,magnitude 6.2 quake hits southeast of oaxaca mexico: usgs,magnitude quake hit southeast oaxaca mexico usgs
+0,az police officer goes to trump rally‚shocked at anti-trump protesters behavior: ‚most hateful,az police officer go trump rallyshocked antitrump protester behavior hateful
+0,boiler room ep #82 ‚ mind-boggling collusion,boiler room ep mindboggling collusion
+1,china reiterates calls for south korea to remove thaad,china reiterates call south korea remove thaad
+0,college prof develops 10 ‚cracka commandments‚ to help white privileged people with imminent ‚black spring‚,college prof develops cracka commandment help white privileged people imminent black spring
+1,tens of thousands march to defend hong kong's rule of law against china,ten thousand march defend hong kongs rule law china
+1,china says diplomacy needed to rid korean peninsula of nuclear weapons,china say diplomacy needed rid korean peninsula nuclear weapon
+1,brazil's temer escapes corruption charges in committee vote,brazil temer escape corruption charge committee vote
+1,nudging to war: u.s. shoots down syrian army fighter jet,nudging war u shoot syrian army fighter jet
+0,breaking: it turns out bowe and b.o. have something else in common [video],breaking turn bowe bo something else common video
+1,etihad flight from abu dhabi makes emergency landing in australia,etihad flight abu dhabi make emergency landing australia
+1,turkey orders 117 soldiers detained over gulen links: sources,turkey order soldier detained gulen link source
+1,tens of thousands march for abortion rights in ireland,ten thousand march abortion right ireland
+1,polish president duda says hopes turkey will join eu,polish president duda say hope turkey join eu
+1,vacationing lame-duck obama ready to announce sanctions against russia,vacationing lameduck obama ready announce sanction russia
+1,exclusive: ex-bernie delegate reveals why he fled democratic party for the greens,exclusive exbernie delegate reveals fled democratic party green
+0,sunday screening: ‚the war on democracy‚,sunday screening war democracy
+0,woman working out with husband told to stop wearing tank top to gym‚reason why is outrageous!,woman working husband told stop wearing tank top gymreason outrageous
+1,italy ready to discuss calls for greater autonomy: gentiloni,italy ready discus call greater autonomy gentiloni
+1,iraq's kurdistan region delays elections,iraq kurdistan region delay election
+0,so much for brussels terror victims‚let‚s play ball!,much brussels terror victimslets play ball
+1,myanmar army chief says rohingya muslims 'not natives' numbers fleeing exaggerated,myanmar army chief say rohingya muslim native number fleeing exaggerated
+1,british police arrest second man over london train bomb,british police arrest second man london train bomb
+0,who needs nancy pelosi when congress has paul ryan: ‚it‚s [obamatrade deal] declassified and made public once it‚s agreed to‚,need nancy pelosi congress paul ryan obamatrade deal declassified made public agreed
+1,problem: trump vs. the us intelligence machine,problem trump v u intelligence machine
+0,for bernie sanders fans: prisoners eating cats to survive in socialist venezuela,bernie sander fan prisoner eating cat survive socialist venezuela
+0,sick reason historic city with ‚off the charts‚ crime rates passes disgusting ordinance putting criminals before cops,sick reason historic city chart crime rate pass disgusting ordinance putting criminal cop
+0,whoa! medical expert watching debate exposes another telltale sign hillary likely has parkinson‚s disease [video],whoa medical expert watching debate expose another telltale sign hillary likely parkinson disease video
+1,hersh: trump knew ‚assad sarin attack‚ story was fairy tale ‚ but launched cruise missile strike anyway,hersh trump knew assad sarin attack story fairy tale launched cruise missile strike anyway
+0,hillary 2016 fan james taylor: ‚every day that barack obama and michelle obama are in the white house is a day that i am thankful for‚,hillary fan james taylor every day barack obama michelle obama white house day thankful
+0,popular youtube personality goes undercover with violent cowardly antifa terrorists‚‚antifa women are the dominant ones‚ [video],popular youtube personality go undercover violent cowardly antifa terroristsantifa woman dominant one video
+0,beautiful young reporter spit on by muslim thugs during live report,beautiful young reporter spit muslim thug live report
+1,dissident uzbek writer held on return from exile: wife,dissident uzbek writer held return exile wife
+1,syrian town struggles to cope alone after key victory over islamic state,syrian town struggle cope alone key victory islamic state
+1,close but no hurrah: eu welcomes may brexit speech but warily,close hurrah eu welcome may brexit speech warily
+1,philippine rebels hostages remain in marawi fight continues: army,philippine rebel hostage remain marawi fight continues army
+0,transgender cries victim when airline security made her remove ‚that thing‚ caught on scanner,transgender cry victim airline security made remove thing caught scanner
+0,watch solar eclipse live here,watch solar eclipse live
+0,boiler room #88 ‚ behold: your new ministry of truth,boiler room behold new ministry truth
+1,spanish tourist shot killed by police in rio de janeiro slum,spanish tourist shot killed police rio de janeiro slum
+1,ivory coast accepts tribunal ruling in border dispute with ghana,ivory coast accepts tribunal ruling border dispute ghana
+1,tempers fray as search for survivors winds down after mexico quake,temper fray search survivor wind mexico quake
+1,time for eu to decide on turkey's membership bid erdogan says,time eu decide turkey membership bid erdogan say
+1,venezuela indicts alleged accomplice of june helicopter attack,venezuela indicts alleged accomplice june helicopter attack
+1,china calls for restraint when asked about north korea hydrogen bomb threat,china call restraint asked north korea hydrogen bomb threat
+0,breaking: two suspects in dallas cop shootings are in custody after reported high speed chase of black mercedes on i-35 in dallas,breaking two suspect dallas cop shooting custody reported high speed chase black mercedes dallas
+1,trump congratulates merkel on election win discusses iran: white house,trump congratulates merkel election win discusses iran white house
+0,how a single federal bureaucrat opened the door to let foreigners vote,single federal bureaucrat opened door let foreigner vote
+1,putin in telegram to syria's assad hails 'strategic' deir al-zor victory,putin telegram syria assad hail strategic deir alzor victory
+1,trump likely to visit china during november asia trip: u.s. official,trump likely visit china november asia trip u official
+1,no country for migrant stowaways caught on ferry between ukraine and turkey,country migrant stowaway caught ferry ukraine turkey
+1,turkey determined to maintain eu accession process government says,turkey determined maintain eu accession process government say
+0,americans are laughing at michael moore when they see dates he chose for democrats to ‚rise up!‚ and ‚storm‚ offices of senators,american laughing michael moore see date chose democrat rise storm office senator
+0,attack on trump: mitt romney just ‚awoke a sleeping giant‚,attack trump mitt romney awoke sleeping giant
+1,london demands answers as british rights activist barred from hong kong,london demand answer british right activist barred hong kong
+1,kenyan police fire teargas at supreme court protesters,kenyan police fire teargas supreme court protester
+0,is hillary about to be ‚berned?‚‚obama tells donors to back hillary‚but can hillary win without the ‚free college‚ voters?,hillary bernedobama tell donor back hillarybut hillary win without free college voter
+0,churchgoers trapped inside cathedral after man hits police officer guarding church in head with hammer‚authorities calling it act of terror [video],churchgoer trapped inside cathedral man hit police officer guarding church head hammerauthorities calling act terror video
+0,iceland proudly claims to have ‚eradicated‚ down syndrome‚in most gruesome way imaginable,iceland proudly claim eradicated syndromein gruesome way imaginable
+1,islamic state targets iranian aid convoy in eastern syria,islamic state target iranian aid convoy eastern syria
+0,espn host calls cops ‚slave patrol‚ and rips nfl for not signing qb colin kaepernick,espn host call cop slave patrol rip nfl signing qb colin kaepernick
+0,breaking: close friend of bill and hillary clinton,breaking close friend bill hillary clinton
+1,eighteen injured in bomb attack on police vehicle in turkey's mersin province,eighteen injured bomb attack police vehicle turkey mersin province
+1,official sacked after yoda image appears on saudi textbook,official sacked yoda image appears saudi textbook
+0,clinton pal and former governor: ugly women won‚t vote for trump‚‚there are probably more ugly women in america than attractive women‚,clinton pal former governor ugly woman wont vote trumpthere probably ugly woman america attractive woman
+1,boiler room ep #75 ‚ limited hangouts,boiler room ep limited hangout
+0,whoa! new emails show comey fbi lied about meeting between bill clinton and loretta lynch on tarmac‚proves media colluded with obama‚s doj to kill story about tarmac meeting [video],whoa new email show comey fbi lied meeting bill clinton loretta lynch tarmacproves medium colluded obamas doj kill story tarmac meeting video
+1,malaysia scraps beer festival following islamists' objections,malaysia scrap beer festival following islamist objection
+1,kenya election board: all eight candidates will be on ballot in repeat poll,kenya election board eight candidate ballot repeat poll
+0,exposed: why a liberal‚s defense of radical islam is the most dangerous kind of hypocrisy,exposed liberal defense radical islam dangerous kind hypocrisy
+1,tv host buys and forgives $15m worth of u.s. medical debt,tv host buy forgives worth u medical debt
+1,saudi arabia welcomes hamas fatah reconciliation deal,saudi arabia welcome hamas fatah reconciliation deal
+0,bruce jenner cashing in big time with new identity: ‚i‚m the new ‚normal'‚ [video],bruce jenner cashing big time new identity im new normal video
+1,russia hunting bomb hoaxers says targeted by 'telephone terrorism': kremlin,russia hunting bomb hoaxer say targeted telephone terrorism kremlin
+1,iraqi forces remove kurdish flag from kirkuk governorate building: residents,iraqi force remove kurdish flag kirkuk governorate building resident
+0,breaking #mayday : journalist attacked for asking may day protesters why they‚re carrying north korean flag [video],breaking mayday journalist attacked asking may day protester theyre carrying north korean flag video
+0,boiler room ep #121 ‚ google vs the red pill & the great witch hunt,boiler room ep google v red pill great witch hunt
+1,storms to challenge puerto rico virgin islands' credit quality: moody's,storm challenge puerto rico virgin island credit quality moody
+1,pro-independence groups unions call for general strike oct. 3 in catalonia,proindependence group union call general strike oct catalonia
+0,all aboard the sharia law train: germany announces they will now have female only sections,aboard sharia law train germany announces female section
+1,syrian government denies u.n. chemical attack report,syrian government denies un chemical attack report
+0,judge jeanine scorches cast of hamilton: ‚out and out reverse racism and teed up hate‚ [video],judge jeanine scorch cast hamilton reverse racism teed hate video
+1,russian foreign ministry 'working behind scenes' to resolve north korea crisis: ria,russian foreign ministry working behind scene resolve north korea crisis ria
+0,london‚s muslim mayor demands more power: ‚on behalf of all londoners,london muslim mayor demand power behalf londoner
+1,n. dakota legislator proposes bill to protect motorists if they hit pipeline protesters intentionally blocking roads,n dakota legislator proposes bill protect motorist hit pipeline protester intentionally blocking road
+0,hillary cheated! who really fed hillary the answers to her questions at veteran‚s forum?,hillary cheated really fed hillary answer question veteran forum
+1,foreign powers could try to influence german coalition talks: spy chief,foreign power could try influence german coalition talk spy chief
+0,shocking act of ‚tolerance‚: transgender thug threatens reporter for disagreeing with him on t.v.: ‚you cut that out or you‚re going to leave here in an ambulance‚,shocking act tolerance transgender thug threatens reporter disagreeing tv cut youre going leave ambulance
+0,why isn‚t media asking if nypd cop-killer and hillary supporter was influenced by democrat leaders,isnt medium asking nypd copkiller hillary supporter influenced democrat leader
+1,abandoned by tourists bali town counts cost of indonesia volcano,abandoned tourist bali town count cost indonesia volcano
+1,trump conducts sting operation on us intelligence services,trump conduct sting operation u intelligence service
+0,muslim group makes demand that every confederate statue be banned and removed,muslim group make demand every confederate statue banned removed
+0,mom and 3 young daughters wearing shorts,mom young daughter wearing short
+1,syrian migrant tells germans: cherish your democracy go vote!,syrian migrant tell german cherish democracy go vote
+0,flashback: ‚the syrian war: what you‚re not being told‚ (about chemical weapons),flashback syrian war youre told chemical weapon
+0,liberals have no business criticizing president trump until they can explain what former president obama is doing in this photo,liberal business criticizing president trump explain former president obama photo
+1,southeast asian ministers urge north korea to rein in weapons programs,southeast asian minister urge north korea rein weapon program
+0,the left wants to ban the word ‚terror‚ to avoid offending muslims,left want ban word terror avoid offending muslim
+1,lawmakers brawl in uganda parliament for second day over presidential age limit,lawmaker brawl uganda parliament second day presidential age limit
+1,camera shows vietnamese suspect's 'aggressive' attack on kim jong nam: police,camera show vietnamese suspect aggressive attack kim jong nam police
+1,brazil seeks to revoke asylum of italian ex-guerrilla convicted of murder,brazil seek revoke asylum italian exguerrilla convicted murder
+0,dubious reports of advertisements seeking trump protesters: ‚get paid fighting against trump‚,dubious report advertisement seeking trump protester get paid fighting trump
+1,islamic state attack west of baghdad kills seven: security sources,islamic state attack west baghdad kill seven security source
+0,melania thanks troops for sacrifices at easter egg roll‚flashback to 2016: ‚peanut crew‚ had to remind michelle obama to mention troops,melania thanks troop sacrifice easter egg rollflashback peanut crew remind michelle obama mention troop
+1,cash and coffee: a young woman's path in a changing china,cash coffee young woman path changing china
+0,saudi women to be allowed to drive from age 18 same as men,saudi woman allowed drive age men
+0,boiler room ep #113 ‚ ‚cnn is isis‚,boiler room ep cnn isi
+1,roadside bomb kills seven outside somali capital mogadishu,roadside bomb kill seven outside somali capital mogadishu
+0,trump rally in austin tx ‚ protesters largely outnumbered by trump supporters,trump rally austin tx protester largely outnumbered trump supporter
+0,never before seen: fbi trove of 9/11 pentagon photos refuels conspiracy suspicions,never seen fbi trove pentagon photo refuels conspiracy suspicion
+0,kellyanne conway calls out classless cnn anchor for ‚sexist‚ move [video],kellyanne conway call classless cnn anchor sexist move video
+0,dick morris: how hillary hired ‚secret police‚ to threaten,dick morris hillary hired secret police threaten
+1,strong typhoon nears southern japan the day before election,strong typhoon nears southern japan day election
+1,biafra separatists sponsored by nigerian government's opponents: minister,biafra separatist sponsored nigerian government opponent minister
+0,make it stop! daughter of sexual predator and habitual criminal gets $65k to speak for 10 minutes [video],make stop daughter sexual predator habitual criminal get k speak minute video
+0,breaking: federal court rules for religious freedom in veterans memorial lawsuit,breaking federal court rule religious freedom veteran memorial lawsuit
+1,u.s. and iran argue over inspections at nuclear watchdog meeting,u iran argue inspection nuclear watchdog meeting
+0,picture of cop walking son to school on day he was murdered appears on social media same day media trashed trump over joke he made to cops about getting tough on criminals who kill innocent people,picture cop walking son school day murdered appears social medium day medium trashed trump joke made cop getting tough criminal kill innocent people
+1,russia regrets u.s. withdrawal from unesco says important projects may suffer,russia regret u withdrawal unesco say important project may suffer
+1,russia says trump's 'aggressive' stance on iran doomed to fail,russia say trump aggressive stance iran doomed fail
+0,mn: somali muslim immigrants explain why it‚s acceptable to kill anyone who insults mohammed [video],mn somali muslim immigrant explain acceptable kill anyone insult mohammed video
+0,proposed budget deal is much worse on u.s. border security than we originally thought,proposed budget deal much worse u border security originally thought
+1,santilli freed under plea pact as vegas shooting casts shadow on bundy trial,santilli freed plea pact vega shooting cast shadow bundy trial
+0,patrick henningsen live with guest sean stone ‚ ‚project for a new global government?‚,patrick henningsen live guest sean stone project new global government
+1,paranoid or smart? what facebook‚s ceo does to his computer that‚ll have you questioning your privacy,paranoid smart facebooks ceo computer thatll questioning privacy
+1,vote plus marathon spells super-busy sunday for berlin police,vote plus marathon spell superbusy sunday berlin police
+0,antifa thugs manhandled at anti-sharia rally after fighting,antifa thug manhandled antisharia rally fighting
+0,time to go? 84-yr old supreme court justice ginsberg tells college audience 3-term male u.s. senator is a female [video],time go yr old supreme court justice ginsberg tell college audience term male u senator female video
+0,bombshell: classified nato report praises russia airstrikes as ‚efficient,bombshell classified nato report praise russia airstrikes efficient
+1,bush-hinckley nexus: reagan gunman released,bushhinckley nexus reagan gunman released
+1,gunmen kill 13 niger gendarmes in attack near mali border,gunman kill niger gendarme attack near mali border
+1,media attacks taylor swift over refusal to criticize president-elect trump,medium attack taylor swift refusal criticize presidentelect trump
+0,barack obama‚s nsa susan rice ordered spies to provide ‚detailed spreadsheets‚ of trump calls‚‚that‚s a felony‚‚brother of cbs news president also involved [video],barack obamas nsa susan rice ordered spy provide detailed spreadsheet trump callsthats felonybrother cbs news president also involved video
+1,'unacceptably high' number of afghans flee military training in u.s.: report,unacceptably high number afghan flee military training u report
+0,bam! ann coulter exposes delta: flight attendant group confirms she was targeted,bam ann coulter expose delta flight attendant group confirms targeted
+1,new zealand's ardern says national has more votes but race isn't over,new zealand ardern say national vote race isnt
+0,benghazi spokesliar susan rice tells cnn: ‚we should expect‚ iran to use funds it gets for terrorist operations [video],benghazi spokesliar susan rice tell cnn expect iran use fund get terrorist operation video
+1,russia urges dialogue to solve gulf crisis,russia urge dialogue solve gulf crisis
+1,women to plead not guilty in high-profile kim jong nam murder trial,woman plead guilty highprofile kim jong nam murder trial
+1,exclusive: zimbabwe's grace mugabe says model attacked her with knife,exclusive zimbabwe grace mugabe say model attacked knife
+1,thailand prepares to bid farewell to 'the people's king',thailand prepares bid farewell people king
+1,russia: syria government forces now on east bank of euphrates river,russia syria government force east bank euphrates river
+0,rino mitch mcconnell praises hillary day after benghazi hearing‚says he could work with her as president,rino mitch mcconnell praise hillary day benghazi hearingsays could work president
+0,cher humiliates democrats over childish neil gorsuch ‚tantrums‚ in one brutal tweet,cher humiliates democrat childish neil gorsuch tantrum one brutal tweet
+0,wake up! george soros ‚drastically ramps up‚ effort to destroy america,wake george soros drastically ramp effort destroy america
+0,how colleges punish high achievers: check ‚african american‚ on sat test,college punish high achiever check african american sat test
+1,uk's johnson to visit moscow this year to discuss security,uk johnson visit moscow year discus security
+0,obama gives final thoughts on trump presidency: he‚s ‚a comma‚ in ‚the story of building america‚,obama give final thought trump presidency he comma story building america
+0,new emails show hillary asking how meeting on libyan war would impact hamptons vacation‚and more,new email show hillary asking meeting libyan war would impact hampton vacationand
+1,south korea's moon asks russia to continue supporting sanctions on north korea,south korea moon asks russia continue supporting sanction north korea
+0,antifa: self-appointed radical revolutionaries or neoliberal thought police?,antifa selfappointed radical revolutionary neoliberal thought police
+0,u.s. inauguration: historic day marks beginning of renewed ‚america first‚ era,u inauguration historic day mark beginning renewed america first era
+0,london‚s first muslim mayor bans ‚sexy women‚ on advertisements,london first muslim mayor ban sexy woman advertisement
+0,ma high school student waves staple gun‚school goes on lockdown‚police swarm building with assault rifles,high school student wave staple gunschool go lockdownpolice swarm building assault rifle
+1,trump calls for a tax reform 'speed-up' in light of hurricane irma,trump call tax reform speedup light hurricane irma
+1,palestinian rivals fatah hamas sign reconciliation accord,palestinian rival fatah hamas sign reconciliation accord
+1,u.n. chief asks iran president to release former u.n. official,un chief asks iran president release former un official
+1,british princes mark anniversary of diana's death with garden visit,british prince mark anniversary diana death garden visit
+0,iran made videotape of secret $400 million ransom cash-drop from u.s. to mock obama‚s embarrassing incompetence [video],iran made videotape secret million ransom cashdrop u mock obamas embarrassing incompetence video
+1,brexit law passes hurdle in reprieve for british pm may,brexit law pass hurdle reprieve british pm may
+1,russian submarine fires cruise missiles at jihadi targets in syria,russian submarine fire cruise missile jihadi target syria
+1,first refugees taken from offshore detention under u.s. refugee swap deal,first refugee taken offshore detention u refugee swap deal
+0,obamacare and the forgotten family: a tale of how the middle class was royally scr*wed by washington [video],obamacare forgotten family tale middle class royally scrwed washington video
+0,new york times publishes fake story about donald trump jr‚makes small retraction at bottom of page,new york time publishes fake story donald trump jrmakes small retraction bottom page
+1,russia‚s red line: moscow announces end to us ‚deconfliction‚ cooperation over syria,russia red line moscow announces end u deconfliction cooperation syria
+0,how the fbi creates ‚domestic terror‚ in the united states,fbi creates domestic terror united state
+1,german officials receive threatening letters fake anthrax police say,german official receive threatening letter fake anthrax police say
+1,the millionaire socialist who may be norway's next prime minister,millionaire socialist may norway next prime minister
+0,can someone please explain how this fairly accurate cartoon is ‚racist‚?,someone please explain fairly accurate cartoon racist
+1,uk pm may does not raise possibility of leaving eu before march 2019,uk pm may raise possibility leaving eu march
+1,anti-mugabe pastor acquitted in zimbabwe of public violence charges,antimugabe pastor acquitted zimbabwe public violence charge
+0,unprecedented: new york times to run 30 sec ad during oscars‚bashing trump‚defending fake news [video],unprecedented new york time run sec ad oscarsbashing trumpdefending fake news video
+0,u.s. state dept. spox: ‚everybody wants assad out five years ago‚,u state dept spox everybody want assad five year ago
+0,street artist censored for painting of hillary clinton in bikini,street artist censored painting hillary clinton bikini
+0,parents outraged! female teachers get into major brawl in classroom‚terrified students scream in horror [video],parent outraged female teacher get major brawl classroomterrified student scream horror video
+0,bombshell: political assassination of mike flynn reportedly led by high-level obama advisor worried hidden details of iran deal will be exposed,bombshell political assassination mike flynn reportedly led highlevel obama advisor worried hidden detail iran deal exposed
+1,catalan government will not respond to madrid's order on thursday: tv3,catalan government respond madrid order thursday tv
+1,turkish court remands german journalist in custody over terrorism charges,turkish court remand german journalist custody terrorism charge
+1,yemen houthis say u.s. citizen kidnapped by unknown gunmen,yemen houthis say u citizen kidnapped unknown gunman
+0,leftist media‚s poster boy for ‚islamaphobia‚ caught at turkey border trying to join isis,leftist medias poster boy islamaphobia caught turkey border trying join isi
+1,namibia dismisses u.n. expert's claims on north korea ties,namibia dismisses un expert claim north korea tie
+0,director of some of most violent films in hollywood joins campaign for destruction of guns,director violent film hollywood join campaign destruction gun
+0,the truth about phony global warming: why our snake-oil-salesman-in-chief is so desperate to sell americans on this lie,truth phony global warming snakeoilsalesmaninchief desperate sell american lie
+1,china's precedent-breaking xi jinping gets set to bolster his power,china precedentbreaking xi jinping get set bolster power
+0,obama and union leaders sell out american workers by turning illegal alien into union members,obama union leader sell american worker turning illegal alien union member
+1,washington post sloppy ‚journalism‚ blames russia for ‚fake news‚ crisis and trump‚s win,washington post sloppy journalism blame russia fake news crisis trump win
+1,germany will strive to save iran nuclear deal: gabriel,germany strive save iran nuclear deal gabriel
+1,as syria war tightens u.s. and russia military hotlines humming,syria war tightens u russia military hotlines humming
+0,munich memorial marks 1972 olympic games attack on israeli team,munich memorial mark olympic game attack israeli team
+1,ireland says 'lot of work' needed to move to next phase of brexit talks,ireland say lot work needed move next phase brexit talk
+0,grassley demands answers on trump jr setup: russian lawyer tied to dnc firm‚who allowed russian lawyer into us after denied visa entry? [video],grassley demand answer trump jr setup russian lawyer tied dnc firmwho allowed russian lawyer u denied visa entry video
+0,democrats aren‚t afraid trump will be a terrible president,democrat arent afraid trump terrible president
+0,burundi loses bid to stop u.n. atrocities investigation,burundi loses bid stop un atrocity investigation
+1,germans most afraid of terrorism secure about finances: study,german afraid terrorism secure finance study
+1,uganda ruling party seeks to scrap age limit to extend president's rule,uganda ruling party seek scrap age limit extend president rule
+1,death of a blogger casts shadow over murky malta,death blogger cast shadow murky malta
+0,must watch comedy: room full of dems are asked to name one of hillary‚s accomplishments as sec. of state‚.,must watch comedy room full dems asked name one hillary accomplishment sec state
+1,ballot boxes voting papers appear at some polling stations for catalan referendum,ballot box voting paper appear polling station catalan referendum
+1,henningsen on crosstalk debating ‚trump & his generals‚,henningsen crosstalk debating trump general
+0,trump effect? only days after meeting with president trump,trump effect day meeting president trump
+1,germany says eu states must implement court ruling on migrants swiftly,germany say eu state must implement court ruling migrant swiftly
+0,marklevin is freaking awesome: obama negotiates with iran; iranian general says israel‚s destruction is not negotiable,marklevin freaking awesome obama negotiates iran iranian general say israel destruction negotiable
+0,watch 8th grader destroy disgraced detroit city council member and wife of us representative in debate [video],watch th grader destroy disgraced detroit city council member wife u representative debate video
+0,florida governor goes off on obama: ‚the second amendment didn‚t kill any of these individuals‚radical islam killed them‚ [video],florida governor go obama second amendment didnt kill individualsradical islam killed video
+0,boom! liberal columnist gets destroyed by tucker carlson when he can‚t answer why he lied about senator jeff sessions [video],boom liberal columnist get destroyed tucker carlson cant answer lied senator jeff session video
+1,islamists lure youngsters in the philippines with payments promise of paradise,islamist lure youngster philippine payment promise paradise
+0,pc tyranny: university of oregon rules that professors have no free speech,pc tyranny university oregon rule professor free speech
+1,japan's abe calls for enforcement of sanctions against north korea: nyt,japan abe call enforcement sanction north korea nyt
+0,lol! open borders sean penn responds after new pro-refugee movie gets destroyed by critics at cannes,lol open border sean penn responds new prorefugee movie get destroyed critic cannes
+1,maverick state governor takes aim at mexican presidency,maverick state governor take aim mexican presidency
+0,bombshell biography: ‚self-obsessed‚ barack obama asked white girlfriend to marry him‚dated her while engaged to michelle,bombshell biography selfobsessed barack obama asked white girlfriend marry himdated engaged michelle
+0,lol! cnn interview abruptly ends when student who started protest at betsy devos speech realizes he can‚t explain why he‚s protesting [video],lol cnn interview abruptly end student started protest betsy devos speech realizes cant explain he protesting video
+1,riot police hooded youths clash in paris at labor reform protest,riot police hooded youth clash paris labor reform protest
+1,factbox: italy's new electoral law offers a mix of systems,factbox italy new electoral law offer mix system
+0,why was this young man sponsored by cair invited to the white house,young man sponsored cair invited white house
+0,caught on video: delta pilot smacks fighting woman during deplaning in atlanta [video],caught video delta pilot smack fighting woman deplaning atlanta video
+0,loudmouth rosie o‚donnell just bullied the wrong trump: outraged melania threatens lawsuit after rosie pushes false video on twitter about 10 yr old barron,loudmouth rosie odonnell bullied wrong trump outraged melania threatens lawsuit rosie push false video twitter yr old barron
+1,buchanan on trump: after the coup,buchanan trump coup
+0,watch president trump arrive on air force one: scheduled to host red cross charity event at mar-a-lago‚angry leftists plan protest [video],watch president trump arrive air force one scheduled host red cross charity event maralagoangry leftist plan protest video
+1,spain to push eu leaders for better counter-terrorism coordination,spain push eu leader better counterterrorism coordination
+1,austria's freedom party expels official over nazi allegations,austria freedom party expels official nazi allegation
+0,pro-trump rocker #tednugent fires back at comparison to #kathygriffin: ‚we‚re talking apples and grenades‚,protrump rocker tednugent fire back comparison kathygriffin talking apple grenade
+0,breaking: syrian refugee kills german woman,breaking syrian refugee kill german woman
+0,major liberal rag reluctantly publishes article on president trump‚s outstanding accomplishments‚it‚s how they explain his successes that has everyone laughing,major liberal rag reluctantly publishes article president trump outstanding accomplishmentsits explain success everyone laughing
+1,far right wants austria to join group of anti-immigrant states,far right want austria join group antiimmigrant state
+0,hillary is furious over email hacks‚openly threatens war with russia‚media is silent [video],hillary furious email hacksopenly threatens war russiamedia silent video
+1,poll gives new zealand's nationals nine point lead after final tv debate before vote,poll give new zealand national nine point lead final tv debate vote
+0,why obama calls islamic terror group ‚isil‚ while terror experts call them ‚isis‚,obama call islamic terror group isil terror expert call isi
+0,massive mi voter fraud uncovered? 59% of detroit vote counting machines didn‚t work on election day‚ballots may have been counted several times‚votes were certified anyway,massive mi voter fraud uncovered detroit vote counting machine didnt work election dayballots may counted several timesvotes certified anyway
+0,hillary dnc speech: ‚we are going to follow the money‚ [video]‚ while george soros makes stunning $25 million donation to hillary and other dems,hillary dnc speech going follow money video george soros make stunning million donation hillary dems
+1,iranians fear economic hardship but united against trump,iranian fear economic hardship united trump
+1,russian frigate fires cruise missiles at islamic state targets near syria's deir al-zor,russian frigate fire cruise missile islamic state target near syria deir alzor
+1,iraq hangs 42 sunni militants convicted of terrorism,iraq hang sunni militant convicted terrorism
+0,[photos] second fake black activist emerges: #blacklivesmatter organizer claimed he was terrorized by ‚decades old racial tensions‚,photo second fake black activist emerges blacklivesmatter organizer claimed terrorized decade old racial tension
+1,not so fast theresa: eu seeks divorce terms to stay friends,fast theresa eu seek divorce term stay friend
+0,after months of trashing our president,month trashing president
+1,nz first touts progress in talks to form govt but decision delayed,nz first tout progress talk form govt decision delayed
+1,utilities in u.s. southeast restore power to nearly half hit by irma,utility u southeast restore power nearly half hit irma
+1,french catalans offer puigdemont luxury safe-house just in case,french catalan offer puigdemont luxury safehouse case
+0,actor who blew through $150 million fortune is worried playing ronald reagan in positive light for upcoming movie could ruin his career,actor blew million fortune worried playing ronald reagan positive light upcoming movie could ruin career
+0,introducing: hamish ‚the illusion‚ patterson,introducing hamish illusion patterson
+1,red cross says staff member killed in south sudan ambush,red cross say staff member killed south sudan ambush
+1,iraqi forces to regain kurdish oilfields to restart production: iraq oil minister,iraqi force regain kurdish oilfield restart production iraq oil minister
+1,u.s. welcomes royal order to allow saudi women to drive,u welcome royal order allow saudi woman drive
+1,u.n. says worried by reports of forced displacement of kurds in northern iraq,un say worried report forced displacement kurd northern iraq
+0,nfl‚s newest attention seeker takes place of unemployed kaepernick‚calls anyone who disagrees with him ‚racist‚,nfls newest attention seeker take place unemployed kaepernickcalls anyone disagrees racist
+1,iraq steps up retaliation against kurdish independence vote with dollar ban,iraq step retaliation kurdish independence vote dollar ban
+1,breakup of iraq or syria could lead to global conflict turkey says,breakup iraq syria could lead global conflict turkey say
+0,is hillary‚s meltdown real,hillary meltdown real
+1,kurdish demonstrator killed 6 wounded in iraqi city of khanaqin: mayor,kurdish demonstrator killed wounded iraqi city khanaqin mayor
+0,bill o‚reilly asks trump ‚racist‚ question that has many outraged‚was bill out-of-bounds this time? [video],bill oreilly asks trump racist question many outragedwas bill outofbounds time video
+1,new zealand's ruling nationals win most votes new zealand first party kingmaker,new zealand ruling national win vote new zealand first party kingmaker
+1,merkel says britain must move on brexit bill to break deadlock,merkel say britain must move brexit bill break deadlock
+1,head games: technology with the potential to shape reality,head game technology potential shape reality
+1,turkey's erdogan says u.s. consulate hiding suspect,turkey erdogan say u consulate hiding suspect
+0,shocking report: more law enforcement officers killed than young black men by white cops,shocking report law enforcement officer killed young black men white cop
+0,tucker carlson calls out professor on his claim russia stole the election [video],tucker carlson call professor claim russia stole election video
+1,uk certain iran nuclear deal to be preserved u.s. says remains committed,uk certain iran nuclear deal preserved u say remains committed
+0,trump: the first president to turn postmodernism against itself,trump first president turn postmodernism
+1,united states stops issuing some visas in cambodia,united state stop issuing visa cambodia
+1,u.s. south korea agree to revise missile treaty in face of north korean threats,u south korea agree revise missile treaty face north korean threat
+1,czech president's spokesman likens eu to third reich in outburst over spirit ingredient,czech president spokesman likens eu third reich outburst spirit ingredient
+1,more germans detained in turkey: german foreign ministry,german detained turkey german foreign ministry
+0,ron paul on burns oregon standoff and jury nullification for the hammond family,ron paul burn oregon standoff jury nullification hammond family
+1,u.n. denounces air raids on idlib hospitals seeks protection system,un denounces air raid idlib hospital seek protection system
+1,turkish pm says idlib operation aims to prevent migrant wave from syria,turkish pm say idlib operation aim prevent migrant wave syria
+0,trial against guatemalan president's brother son begins,trial guatemalan president brother son begin
+1,tokyo governor koike's allies seek to repeat local success in japan national poll,tokyo governor koikes ally seek repeat local success japan national poll
+0,is the washington post waging a ‚media war‚ on president trump?,washington post waging medium war president trump
+1,south koreans practice in case of north korea attack but with little urgency,south korean practice case north korea attack little urgency
+1,colombia's farc say six ex-members murdered in restive province,colombia farc say six exmembers murdered restive province
+1,eu should take advantage of drop in migrant influx: oecd's gurria,eu take advantage drop migrant influx oecds gurria
+1,u.s. envoy to u.n. demands myanmar prosecutions weapons curbs over rohingya,u envoy un demand myanmar prosecution weapon curb rohingya
+1,u.s. coalition denies deadly strike in syria's deir al-zor city,u coalition denies deadly strike syria deir alzor city
+0,fake news week: truth,fake news week truth
+1,after u.n. troubles haiti wary of new justice mission,un trouble haiti wary new justice mission
+0,shocking report: 99.5% of professors from top 50 liberal arts colleges donated to only two presidential candidates,shocking report professor top liberal art college donated two presidential candidate
+1,italy calls confidence votes in senate on new electoral law,italy call confidence vote senate new electoral law
+0,obama is giving your money to illegal aliens to start businesses‚you won‚t believe where those businesses are located [video],obama giving money illegal alien start businessesyou wont believe business located video
+0,message to president trump from syria‚s assad: ‚you also need our help to defeat terrorism‚,message president trump syria assad also need help defeat terrorism
+0,breaking: gay bernie sanders supporter with long rifle,breaking gay bernie sander supporter long rifle
+0,pope tells web companies: use profits to protect children,pope tell web company use profit protect child
+1,eu's tusk appealed to rajoy to avoid escalation in catalonia,eu tusk appealed rajoy avoid escalation catalonia
+1,u.s. lifts sudan sanctions wins commitment against arms deals with north korea,u lift sudan sanction win commitment arm deal north korea
+1,incoming new zealand prime minister to discuss cabinet on friday,incoming new zealand prime minister discus cabinet friday
+0,alt-left plans to hijack president trump‚s az rally‚will he really make them crazy by announcing pardon for america‚s toughest sheriff on illegal immigration?,altleft plan hijack president trump az rallywill really make crazy announcing pardon america toughest sheriff illegal immigration
+1,xi's power on parade as china party congress looms,xi power parade china party congress loom
+1,austria's far-right stakes claim to interior ministry ahead of coalition talks,austria farright stake claim interior ministry ahead coalition talk
+1,putin discusses north korean missile test with his security council: agencies,putin discusses north korean missile test security council agency
+1,guatemalan president survives congressional vote on immunity,guatemalan president survives congressional vote immunity
+1,dallas maidan: staged snipers designed to inflict 7/7 ‚strategy of tension‚,dallas maidan staged sniper designed inflict strategy tension
+0,president trump‚s illegal immigrant crackdown begins‚feds conduct raids in at least 6 states with focus on finding and deporting criminals [video],president trump illegal immigrant crackdown beginsfeds conduct raid least state focus finding deporting criminal video
+0,extreme left #disruptj20 plot to ‚acid bomb‚ inauguration deploraball,extreme left disruptj plot acid bomb inauguration deploraball
+1,london will remain leading financial center: pm may's spokesman,london remain leading financial center pm may spokesman
+0,obama regime‚s secret asian trade deal would let international tribunal overrule state and fed laws to benefit foreign companies,obama regime secret asian trade deal would let international tribunal overrule state fed law benefit foreign company
+1,hurricane maria makes landfall in puerto rico: nhc,hurricane maria make landfall puerto rico nhc
+1,five militants two soldiers killed in egypt's sinai,five militant two soldier killed egypt sinai
+0,[video] what jerry seinfeld has to say about overly pc college kids will make the left crazy,video jerry seinfeld say overly pc college kid make left crazy
+0,"why sheriffs are calling obama‚s release of over 6000 federal prisoners ‚biggest sham‚""",sheriff calling obamas release federal prisoner biggest sham
+1,italy presents low-key budget ahead of 2018 elections,italy present lowkey budget ahead election
+1,german police arrest five in raid of nigerian 'husband' smuggling ring,german police arrest five raid nigerian husband smuggling ring
+0,boiler room #95 ‚ weapons of mass penetration,boiler room weapon mass penetration
+1,yemen's houthi leader says could target saudi oil tankers if hodeidah attacked,yemen houthi leader say could target saudi oil tanker hodeidah attacked
+0,kellyanne conway responds to death threats against her after hillary‚s communications director pens hate-filled,kellyanne conway responds death threat hillary communication director pen hatefilled
+0,destroyed in 10 seconds: tucker carlson exposes hypocrisy of liberal ‚mash‚ actor who‚s asking electors to block trump from becoming president [video],destroyed second tucker carlson expose hypocrisy liberal mash actor who asking elector block trump becoming president video
+0,in the age of amazon,age amazon
+1,police deploy in iraqi oil city as tensions rise before kurdish independence vote,police deploy iraqi oil city tension rise kurdish independence vote
+0,wife of ex-uruguay president mujica becomes vice president,wife exuruguay president mujica becomes vice president
+1,thought police: us border control wants to study your facebook,thought police u border control want study facebook
+1,dodgy dossier: the trump-russia dossier was funded by political rivals,dodgy dossier trumprussia dossier funded political rival
+1,u.s.-backed alliance says russian jets struck its fighters in east syria,usbacked alliance say russian jet struck fighter east syria
+0,irma strengthens to a category 5 hurricane: nhc,irma strengthens category hurricane nhc
+0,outrageous videos: watch the leftists blame the victim and deny the truth,outrageous video watch leftist blame victim deny truth
+1,iraq 1991: us carpet bombs ‚highway of death‚,iraq u carpet bomb highway death
+1,philippines declares battle with islamist rebels over in marawi city,philippine declares battle islamist rebel marawi city
+1,cambodia's political prince submits to its strongman,cambodia political prince submits strongman
+0,national trend? jimmy john‚s employee refuses to serve police officer [video],national trend jimmy john employee refuse serve police officer video
+0,breaking: wikileaks says less than 1% of vault 7 released,breaking wikileaks say less vault released
+0,classic! unhinged liberal loses it‚screams ‚nooo!‚ as soon as trump is sworn in [video],classic unhinged liberal loses itscreams nooo soon trump sworn video
+0,ouch! the left‚s ‚other woman‚ just landed a direct hit on hillary‚and she is spot on!,ouch left woman landed direct hit hillaryand spot
+0,obama‚s war on america update: fbi issues riot alert for louisiana‚new black panthers coming to baton rouge,obamas war america update fbi issue riot alert louisiananew black panther coming baton rouge
+1,eu's juncker courts eurosceptic easterners with dinner invite,eu juncker court eurosceptic easterner dinner invite
+0,tucker carlson slams vox.com over ‚fake news‚,tucker carlson slam voxcom fake news
+0,college socialist group incites children to yell: ‚kill donald trump!‚ [video],college socialist group incites child yell kill donald trump video
+1,saudi cleric suspended over 'quarter-brain' women drivers quip,saudi cleric suspended quarterbrain woman driver quip
+0,almost 100 years later‚donald trump sounds a lot like theodore roosevelt on immigration‚and what it means to be an american [video],almost year laterdonald trump sound lot like theodore roosevelt immigrationand mean american video
+0,pelosi‚s hacked email shows top-secret memo to staffers: make #blm activists think dems are on their side,pelosis hacked email show topsecret memo staffer make blm activist think dems side
+1,iaea says north korea's rapid weapons progress poses new global threat,iaea say north korea rapid weapon progress pose new global threat
+1,catalonia to press ahead with independence if madrid suspends autonomy,catalonia press ahead independence madrid suspends autonomy
+0,halloween fireside book of suspense vol. 2: boiler room ep #133,halloween fireside book suspense vol boiler room ep
+0,bombshell comey admission: fbi found email indicating obama‚s ag loretta lynch would do everything she could to protect hillary from criminal charges [video],bombshell comey admission fbi found email indicating obamas ag loretta lynch would everything could protect hillary criminal charge video
+1,syrian jihadist alliance decries rebel groups planning incursion: statement,syrian jihadist alliance decries rebel group planning incursion statement
+0,self-admitted sexual predator who supported wife,selfadmitted sexual predator supported wife
+0,jeb bush wants congress to approve amnesty and confirm loretta lynch (eric holder in a skirt) for ag position,jeb bush want congress approve amnesty confirm loretta lynch eric holder skirt ag position
+1,scars & strife: ‚the purge election year‚ agitprop,scar strife purge election year agitprop
+0,blood sport: gop presidential race takes another brutal turn as ‚party favorites‚ tear into trump,blood sport gop presidential race take another brutal turn party favorite tear trump
+0,pro-hillary new york daily news writer destroys hillary,prohillary new york daily news writer destroys hillary
+0,lol! politico publishes article blaming trump and his supporters for horrific violence committed against them,lol politico publishes article blaming trump supporter horrific violence committed
+1,three kurdish fighters killed five wounded in blast south of oil city kirkuk,three kurdish fighter killed five wounded blast south oil city kirkuk
+1,china's xi tells trump that north korea nuclear issue must be solved via talks,china xi tell trump north korea nuclear issue must solved via talk
+1,grasping at straws (the illusion of choice),grasping straw illusion choice
+1,romanian president opposes plans for judicial overhaul,romanian president opposes plan judicial overhaul
+0,hillary scumbags torch navy veteran‚s home for supporting donald trump [video],hillary scumbags torch navy veteran home supporting donald trump video
+0,[video] hillary‚s van blows by elderly people in wheelchairs waiting to see her on way to manufactured event,video hillary van blow elderly people wheelchair waiting see way manufactured event
+0,donald rumseld humiliates ‚the view‚ dingbat joy behar‚calls her out for not understanding how presidents are elected [video],donald rumseld humiliates view dingbat joy beharcalls understanding president elected video
+0,must see results of new poll asking americans one word they associate with hillary,must see result new poll asking american one word associate hillary
+0,usa today sports columnist calls for tom brady‚s head over one thing found in his locker‚who does she think she is?,usa today sport columnist call tom brady head one thing found lockerwho think
+1,afghan civilian casualties from air strikes rise more than 50 percent says u.n.,afghan civilian casualty air strike rise percent say un
+0,breaking: kansas city police captain shot dead by multiple shooters [video]‚#obamaswaroncops,breaking kansa city police captain shot dead multiple shooter videoobamaswaroncops
+0,busted: [video] aarp caught using subliminal message to promote ‚martial law‚ in recent ad,busted video aarp caught using subliminal message promote martial law recent ad
+0,sarah jessica parker fears she‚ll be attacked and killed if trump is elected‚has she not seen multiple trump supporters who‚ve been bloodied by hillary‚s lib mobs?,sarah jessica parker fear shell attacked killed trump electedhas seen multiple trump supporter whove bloodied hillary lib mob
+0,chilling interview: [video] 14 yr. old girl doused baltimore pizza store owner in lighter fuel,chilling interview video yr old girl doused baltimore pizza store owner lighter fuel
+1,qatar airways cancels flights to northern iraq: website,qatar airway cancel flight northern iraq website
+0,breaking: obama regime announces federal takeover of elections [video],breaking obama regime announces federal takeover election video
+0,shocker: washington post publishes oped critical of pro-israel law which shuts down bds,shocker washington post publishes oped critical proisrael law shuts bd
+0,ethiopian muslim monster deported from u.s. 10 years after performing ‚clitorectomy‚ on daughter with scissors,ethiopian muslim monster deported u year performing clitorectomy daughter scissors
+1,eu heads toward tougher action on poland after merkel joins fray,eu head toward tougher action poland merkel join fray
+1,spanish government says any dialogue with catalonia must be within the law,spanish government say dialogue catalonia must within law
+0,she grew up believing blacks could only support democrats‚until she took a job with acorn: watch the incredible story of a woman who took on obama‚s leftist machine [video],grew believing black could support democratsuntil took job acorn watch incredible story woman took obamas leftist machine video
+1,eu leaders seek greater reductions in africa immigration,eu leader seek greater reduction africa immigration
+0,libs on social media make disgusting comparison of eric trump‚s new haircut to nazis,libs social medium make disgusting comparison eric trump new haircut nazi
+0,exclusive: ‚america 2021‚ hilarious poem describes what america looks like after 4 years of president trump,exclusive america hilarious poem describes america look like year president trump
+1,turkey's erdogan gets warm welcome in mainly muslim serbian town,turkey erdogan get warm welcome mainly muslim serbian town
+0,pope francis to bless colombia's war victims,pope francis bless colombia war victim
+1,port in libya's benghazi reopens after three-year closure due to clashes,port libya benghazi reopens threeyear closure due clash
+1,palestinian protesters attack us embassy in lebanon,palestinian protester attack u embassy lebanon
+1,guatemala top court sides with u.n. graft unit in fight with president,guatemala top court side un graft unit fight president
+0,famous rhode island dancing cop fired for protesting cop hating terror group [video],famous rhode island dancing cop fired protesting cop hating terror group video
+0,hillary‚s ‚oh sh*t‚ moment: fbi reveals emails found on weiner‚s laptop are not duplicates [video],hillary oh sht moment fbi reveals email found weiners laptop duplicate video
+0,this 21 year old texan woman gets it: ‚put me in charge!‚,year old texan woman get put charge
+0,harry reid caught calling benghazi mother ‚crazy‚,harry reid caught calling benghazi mother crazy
+0,hysterical‚the democrat convention schedule is revealed,hystericalthe democrat convention schedule revealed
+0,not kidding: cnn asks widow of jewish terror victim if he had it coming? [video],kidding cnn asks widow jewish terror victim coming video
+1,catalan independence campaign kicks off as barcelona gives backing,catalan independence campaign kick barcelona give backing
+1,damaged new zealand fuel pipeline to be restarted sunday: new zealand refining,damaged new zealand fuel pipeline restarted sunday new zealand refining
+0,here‚s the list of heartless senators who voted against banning late term abortions,here list heartless senator voted banning late term abortion
+1,two florida nuclear plants likely to shut if irma stays on path,two florida nuclear plant likely shut irma stay path
+1,saudi arabia suspends any dialogue with qatar: spa,saudi arabia suspends dialogue qatar spa
+1,at least 17 killed in cameroon separatist clashes: amnesty,least killed cameroon separatist clash amnesty
+0,paul ryan won‚t fund border fence for us citizens‚but check out the fence around his mansion,paul ryan wont fund border fence u citizensbut check fence around mansion
+1,philippine anti-narcotics chief warns of drugs war slowdown police target assassins,philippine antinarcotics chief warns drug war slowdown police target assassin
+0,irma knocks out power to nearly four million in florida: utilities,irma knock power nearly four million florida utility
+1,uk police keeping open mind on number of suspects in london train bombing,uk police keeping open mind number suspect london train bombing
+1,undercutting the nation state? chicago group suggests ‚global cities‚ should run world affairs,undercutting nation state chicago group suggests global city run world affair
+1,norway's right-wing government wins re-election fought on oil tax,norway rightwing government win reelection fought oil tax
+0,boiler room #106 ‚ did israel attack damascus? + bill nye the psyop guy,boiler room israel attack damascus bill nye psyop guy
+1,florida governor vows aggressive probe of irma nursing home deaths,florida governor vow aggressive probe irma nursing home death
+1,indian court's privacy ruling is blow to government,indian court privacy ruling blow government
+0,trey gowdy on crooked dnc: ‚there may be something the dnc didn‚t want law enforcement to see in hacked server [video],trey gowdy crooked dnc may something dnc didnt want law enforcement see hacked server video
+1,turkey sentences wall street journal journalist to jail in absentia: wsj,turkey sentence wall street journal journalist jail absentia wsj
+0,shakedown al sharpton meets with gm to pressure them into dropping kid rock over confederatef flag [video],shakedown al sharpton meet gm pressure dropping kid rock confederatef flag video
+1,philippine police chief says won't stop cops from seeking church sanctuary,philippine police chief say wont stop cop seeking church sanctuary
+1,kirkuk governor says iraqi parliament vote to remove him 'unlawful',kirkuk governor say iraqi parliament vote remove unlawful
+1,u.n. sees 'textbook example of ethnic cleansing' in myanmar,un see textbook example ethnic cleansing myanmar
+1,spain's rajoy wants to work with other parties on catalan question,spain rajoy want work party catalan question
+0,they fought and died to protect total strangers from socialism‚why young voters are embracing the same evil in america today,fought died protect total stranger socialismwhy young voter embracing evil america today
+0,two tx school workers fired for refusing to call 6 year old girl a ‚boy‚ : ‚one day,two tx school worker fired refusing call year old girl boy one day
+1,exclusive: eu dismisses smoke regulation looks into tougher fire safety tests,exclusive eu dismisses smoke regulation look tougher fire safety test
+1,french it firm says its tech won't be ready for re-run of kenya poll,french firm say tech wont ready rerun kenya poll
+0,the carnage and the kindness of good samaritans after london terror attack [video],carnage kindness good samaritan london terror attack video
+0,trump‚s statement on muslim immigration is spot on: ‚we have no choice!‚ [video],trump statement muslim immigration spot choice video
+0,boiler room ep #83 ‚ wouldn‚t it be nice‚,boiler room ep wouldnt nice
+0,u.s. apologizes for human rights violations at u.n. review to countries with worse human rights violations,u apologizes human right violation un review country worse human right violation
+0,hillary clinton ponders halloween costume,hillary clinton ponders halloween costume
+0,breaking: hillary clinton‚s comments on the ‚rights‚ of the ‚unborn‚ will send a chill up your spine [video],breaking hillary clinton comment right unborn send chill spine video
+1,eu's tusk uk's may to talk brexit next tuesday,eu tusk uk may talk brexit next tuesday
+0,breaking: muslim clock boy family‚give us $15 million‚or else,breaking muslim clock boy familygive u millionor else
+1,brief overview: us military sales to lebanon,brief overview u military sale lebanon
+1,barzani says 'yes' vote won independence referendum calls on baghdad to engage in dialogue,barzani say yes vote independence referendum call baghdad engage dialogue
+0,this is how far the left will go to protect hillary clinton‚sick!,far left go protect hillary clintonsick
+1,spain's socialist leader agrees with rajoy to launch constitutional reform,spain socialist leader agrees rajoy launch constitutional reform
+1,italy lower house passes new electoral law moves on to senate,italy lower house pass new electoral law move senate
+1,u.s. accuses iran venezuela of human trafficking failings,u accuses iran venezuela human trafficking failing
+1,new zealand's kingmaker party defers govt decision until october 7,new zealand kingmaker party defers govt decision october
+0,oops! video shows senator mccain saying he‚ll fight to repeal and replace obamacare only 9 months ago: ‚we have to scrap it entirely and start over‚,oops video show senator mccain saying hell fight repeal replace obamacare month ago scrap entirely start
+1,macron says pursuing cooperation with merkel that is vital for europe,macron say pursuing cooperation merkel vital europe
+0,soros and democrat mega-donors meet to plot their war against donald trump,soros democrat megadonors meet plot war donald trump
+1,battle over privacy: why the fbi‚s case against apple is falling apart,battle privacy fbi case apple falling apart
+1,pakistan pm warns u.s. sanctions would be counter-productive,pakistan pm warns u sanction would counterproductive
+0,twisted! anti-american riots by illegals portrayed as anti-trump: ‚this is our land‚ [video],twisted antiamerican riot illegals portrayed antitrump land video
+1,canada's trudeau calls treatment of women in mexico 'unacceptable',canada trudeau call treatment woman mexico unacceptable
+1,syrian militias aim to push islamic state out of raqqa within a month,syrian militia aim push islamic state raqqa within month
+1,problem: trump vs. the us intelligence machine,problem trump v u intelligence machine
+1,philippines doctor linked to new york attack plot a 'regular generous guy',philippine doctor linked new york attack plot regular generous guy
+1,anti-nuclear campaign ican says nobel peace prize a 'great honor',antinuclear campaign ican say nobel peace prize great honor
+1,eu again urges dialogue to end catalan crisis,eu urge dialogue end catalan crisis
+0,oops! obama tells troops no foreign terror attacks happened on his here‚s complete list of radical islamic terror attacks on us soil during his presidency [video],oops obama tell troop foreign terror attack happened here complete list radical islamic terror attack u soil presidency video
+1,mexico presidential hopeful rejects comparisons to venezuela,mexico presidential hopeful reject comparison venezuela
+1,thought police: us border control wants to study your facebook,thought police u border control want study facebook
+1,u.s waives jones act to secure fuel for hurricane responders,u waif jones act secure fuel hurricane responder
+0,wow! chicago residents blast ‚democratic machine‚ for ruining the city‚‚they want you to think donald trump is the problem‚white and black democrats are doing this to us‚ [video],wow chicago resident blast democratic machine ruining citythey want think donald trump problemwhite black democrat u video
+1,u.s. denies iran report of confrontation with u.s. vessel,u denies iran report confrontation u vessel
+1,sunday screening: counter intelligence ‚ ‚the company‚,sunday screening counter intelligence company
+0,liberal bigot destroyed by legendary democrat alan dershowitz in discussion on trump‚s travel ban: ‚you‚re lying through your teeth!‚ [video],liberal bigot destroyed legendary democrat alan dershowitz discussion trump travel ban youre lying teeth video
+1,yemen islamist party members arrested ratcheting up tensions,yemen islamist party member arrested ratcheting tension
+1,with french down on strikes macron reforms get easier ride,french strike macron reform get easier ride
+1,eu looks for 'big pot of money' to handle migration,eu look big pot money handle migration
+1,china brushes off vietnam protests over south china sea drills,china brush vietnam protest south china sea drill
+0,this one is spot on! the democrat party in a nutshell,one spot democrat party nutshell
+0,obama finally admits: ‚we had no plan after libya regime change‚,obama finally admits plan libya regime change
+0,protesters in hong kong demand full democracy on 'occupy' anniversary,protester hong kong demand full democracy occupy anniversary
+1,in first u.s. defense chief to attend mexican independence day events,first u defense chief attend mexican independence day event
+1,american won't resume miami service until tuesday at earliest,american wont resume miami service tuesday earliest
+1,confused.gov: obama‚s imperial mideast policy unravels,confusedgov obamas imperial mideast policy unravels
+1,turkey detains main opposition leader's lawyer over coup links,turkey detains main opposition leader lawyer coup link
+1,brief overview: us military sales to lebanon,brief overview u military sale lebanon
+1,khamenei says europe should stop interfering in iran's missile work regional policy: tv,khamenei say europe stop interfering iran missile work regional policy tv
+0,shocking video: new rape clinic for men opens in sweden where muslim ‚asylum seekers‚ are raping swedish citizens at alarming rate,shocking video new rape clinic men open sweden muslim asylum seeker raping swedish citizen alarming rate
+0,"rush limbaugh: this group is ‚roadblocking‚ trump more than any other with approval of over 75000 refugees this year!""",rush limbaugh group roadblocking trump approval refugee year
+0,war on words: facebook censorship widens,war word facebook censorship widens
+1,lest we forget: ‚independent‚ mueller is part of establishment that helped sell iraq war,lest forget independent mueller part establishment helped sell iraq war
+1,north korea's kim says will make 'deranged' trump pay dearly for u.n. speech,north korea kim say make deranged trump pay dearly un speech
+1,opposition official others charged with plotting against rwandan government,opposition official others charged plotting rwandan government
+1,uganda police arrest youths who oppose fresh term for ruler in power since 1986,uganda police arrest youth oppose fresh term ruler power since
+0,sunday screening: ‚the war on democracy‚,sunday screening war democracy
+0,wow! msnbc‚s senior political analyst hammers fbi director: ‚to release this [hillary emails] on a friday,wow msnbcs senior political analyst hammer fbi director release hillary email friday
+0,remember when president clinton took credit for ending nuclear threats from north korea?,remember president clinton took credit ending nuclear threat north korea
+1,toxic firecracker haze darkens indian capital after festival of lights,toxic firecracker haze darkens indian capital festival light
+1,germany's fdp sees common ground with greens on education digitization,germany fdp see common ground green education digitization
+1,in japan new party challenges abe with populist slogans; but little policy gap,japan new party challenge abe populist slogan little policy gap
+1,jailed british-iranian charity worker received letter from ex-uk pm cameron: prosecutor,jailed britishiranian charity worker received letter exuk pm cameron prosecutor
+0,another clinton casualty? activist murdered after openly blaming hillary for meddling role in honduran coup [video],another clinton casualty activist murdered openly blaming hillary meddling role honduran coup video
+1,explosion in mali kills three u.n. soldiers from bangladesh,explosion mali kill three un soldier bangladesh
+1,bahrain's king issues decree reorganizing national security agency,bahrain king issue decree reorganizing national security agency
+1,turkish missile deal with russia reflects stormy relationship with nato,turkish missile deal russia reflects stormy relationship nato
+1,rohingya muslims say goodbye to their own after boat capsizes,rohingya muslim say goodbye boat capsizes
+1,defense secretary mattis suggests sticking with iran nuclear deal,defense secretary mattis suggests sticking iran nuclear deal
+0,obama‚s legacy: washington is lying about isis,obamas legacy washington lying isi
+1,china support for north korea clampdown growing: u.s. official,china support north korea clampdown growing u official
+1,damascus rejects iraqi kurdish independence referendum,damascus reject iraqi kurdish independence referendum
+1,russian suspect detained after arson attacks against last tsar film,russian suspect detained arson attack last tsar film
+0,boiler room ep #123 ‚ right vs. left,boiler room ep right v left
+0,pro-trump chicagoans hit back: use ‚real fake‚ sculpture in front of trump tower as a monument to cnn,protrump chicagoans hit back use real fake sculpture front trump tower monument cnn
+1,saudi authorities pursue twitter user over women's driving threat,saudi authority pursue twitter user womens driving threat
+1,muslims flee indian village after singer killed in argument with hindu priest - police,muslim flee indian village singer killed argument hindu priest police
+1,kurdistan never intended to engage in war with iraq: krg,kurdistan never intended engage war iraq krg
+1,strange: trump ‚internet takeover‚ fear story calls for canada to manage net archive,strange trump internet takeover fear story call canada manage net archive
+0,sixteen people killed in russia after train collides with bus,sixteen people killed russia train collides bus
+1,bodies of ambushed travelers found in eastern congo: chief,body ambushed traveler found eastern congo chief
+0,trump hater,trump hater
+0,new accusation against bernie sanders exposes him as ‚the other‚ criminal democrat,new accusation bernie sander expose criminal democrat
+1,'we're not catalonia': italy's separatists tread softly toward autonomy,catalonia italy separatist tread softly toward autonomy
+0,e.t. williams explains why millennials are in meltdown over trump win,et williams explains millennials meltdown trump win
+1,only 'miracles' can move brexit talks forward by october eu tells britain,miracle move brexit talk forward october eu tell britain
+0,pc gone wild: professors threaten students with bad grades for saying ‚illegal alien‚‚expected to defer to non-white students,pc gone wild professor threaten student bad grade saying illegal alienexpected defer nonwhite student
+1,zimbabwe's mugabe likens rivals to judas for seeking his retirement,zimbabwe mugabe likens rival juda seeking retirement
+0,sunday screening: the deep state: hiding in plain sight (2014),sunday screening deep state hiding plain sight
+1,the final control: tpp,final control tpp
+0,proud moment for america: president trump signs bill giving veterans access to private health care‚another promise kept [video],proud moment america president trump sign bill giving veteran access private health careanother promise kept video
+0,president trump to cbs this morning: ‚i have no relationship with barack obama‚ [video],president trump cbs morning relationship barack obama video
+1,crocodile kills british journalist holidaying in sri lanka,crocodile kill british journalist holidaying sri lanka
+1,raqqa evacuation included some foreign fighters: local official,raqqa evacuation included foreign fighter local official
+0,"lost luggage: ""mischievous"" singapore handler sent bags astray at world's best airport",lost luggage mischievous singapore handler sent bag astray world best airport
+0,lol! one word that describes hillary perfectly appears behind her at rally‚she‚s not going to like it!,lol one word describes hillary perfectly appears behind rallyshes going like
+0,boiler room ep #85.5 ‚ who‚s watching the watchers?,boiler room ep who watching watcher
+0,lunatic msnbc reporter: ‚a paper trail leads directly back to mike pence‚îpence knew michael flynn was a foreign agent‚,lunatic msnbc reporter paper trail lead directly back mike pencepence knew michael flynn foreign agent
+0,bombshell: classified nato report praises russia airstrikes as ‚efficient,bombshell classified nato report praise russia airstrikes efficient
+0,controversy over christian flag engulfs small town,controversy christian flag engulfs small town
+0,bernie sanders could end up winning iowa,bernie sander could end winning iowa
+0,episode #203 ‚ sunday wire: ‚the dotard effect‚ with guests mike robinson,episode sunday wire dotard effect guest mike robinson
+0,no terror charges for michigan muslim man who plotted to shoot up large church in detroit,terror charge michigan muslim man plotted shoot large church detroit
+0,breaking: isis supporters threaten armed bikers ‚freedom of speech‚ rally‚‚we promise we will drink ur blood‚ [video],breaking isi supporter threaten armed bikers freedom speech rallywe promise drink ur blood video
+1,u.n. blacklists saudi-led coalition for killing children in yemen,un blacklist saudiled coalition killing child yemen
+0,buh-bye megyn‚the woman who miscalculated her power with viewers is leaving fox to join liberal,buhbye megynthe woman miscalculated power viewer leaving fox join liberal
+1,britain's boris johnson jokes about dead bodies in libya,britain boris johnson joke dead body libya
+1,indonesians uncover syndicate spreading hate speech online: police,indonesian uncover syndicate spreading hate speech online police
+1,us middle class still suffering from rockefeller-kissinger industrial transfer scheme to china,u middle class still suffering rockefellerkissinger industrial transfer scheme china
+1,spain summons venezuela ambassador after maduro's catalonia comments,spain summons venezuela ambassador maduros catalonia comment
+1,turkey iran and russia to deploy observers in 'safe zones' around syria's idlib: turkish ministry,turkey iran russia deploy observer safe zone around syria idlib turkish ministry
+1,five suspected al qaeda militants killed in yemen drone strikes,five suspected al qaeda militant killed yemen drone strike
+0,say what? racist,say racist
+1,japan's new party vows to scrap over-reliance on fiscal monetary steps,japan new party vow scrap overreliance fiscal monetary step
+1,u.s. journalist among 19 killed in south sudan fighting: rebels,u journalist among killed south sudan fighting rebel
+0,political agitator: globalist george soros linked to over 50 ‚partners‚ of the women‚s march on washington,political agitator globalist george soros linked partner womens march washington
+1,france turns to armed drones in fight against sahel militants,france turn armed drone fight sahel militant
+1,gulf media promotes emigre qatari royals as feud sours,gulf medium promotes emigre qatari royal feud sour
+1,u.s. will help restore water power to raqqa after fall of islamic state,u help restore water power raqqa fall islamic state
+0,maxine waters: ‚these people trying to ‚discredit‚ me [video],maxine water people trying discredit video
+0,hard-core,hardcore
+0,sunday screening: 24 hours after hiroshima (2010),sunday screening hour hiroshima
+0,triggered! former cia agent: ‚trey gowdy ought to have his a** kicked‚ [video],triggered former cia agent trey gowdy ought kicked video
+0,pope canonizes first new world martyrs calls amazon synod for 2019,pope canonizes first new world martyr call amazon synod
+0,crosstalk: who are the real ‚fake news‚ culprits?,crosstalk real fake news culprit
+1,iraq refuses talks with kurds unless they commit to unity,iraq refuse talk kurd unless commit unity
+1,north korea pledges 'powerful counter measures' against u.s.-backed sanctions,north korea pledge powerful counter measure usbacked sanction
+0,episode #4 ‚ on the qt: ‚julian vs hillary‚ (part 1) @21wire.tv,episode qt julian v hillary part wiretv
+1,german 'reich' extremist given life for killing policeman,german reich extremist given life killing policeman
+0,mizzou cry-babies complain paris terror tragedy is stealing spotlight from their ‚struggles‚,mizzou crybaby complain paris terror tragedy stealing spotlight struggle
+0,mainstream liars now want to be self-appointed monarchs of ‚truth‚,mainstream liar want selfappointed monarch truth
+1,u.n. nuclear watchdog chief says iran playing by the rules,un nuclear watchdog chief say iran playing rule
+1,canada stalls on mali mission could hit security council bid,canada stall mali mission could hit security council bid
+0,shameful: video shows how liberal media,shameful video show liberal medium
+0,in order for trump to ‚drain the swamp‚ he‚s going to have take on the alligators‚and here‚s how [video],order trump drain swamp he going take alligatorsand here video
+1,russia throws north korea lifeline to stymie regime change,russia throw north korea lifeline stymie regime change
+1,turkey detained more than 1200 people in last week,turkey detained people last week
+0,charlottesville and the problem of left & right identity politics in america,charlottesville problem left right identity politics america
+1,rwandan president's challenger faces incitement charge in court,rwandan president challenger face incitement charge court
+0,virginia shooter hodgkinson was ‚never trump‚ fanatic and devotee of bernie sanders,virginia shooter hodgkinson never trump fanatic devotee bernie sander
+0,charlotte #blacklivesmatter update: sub-human black mob brutally beats young white man begging for mercy in parking garage [video],charlotte blacklivesmatter update subhuman black mob brutally beat young white man begging mercy parking garage video
+1,trump‚s first government agency visit: cia,trump first government agency visit cia
+0,[video] why the race war is not really about race it‚s ‚anarchy in action‚,video race war really race anarchy action
+1,saudi foreign minister says backs trump's stance on iran,saudi foreign minister say back trump stance iran
+0,german admits selling gun to munich attack shooter,german admits selling gun munich attack shooter
+0,cancer patient mocked by leftist comedian as trump ‚nazi‚ gets the last laugh [video],cancer patient mocked leftist comedian trump nazi get last laugh video
+1,u.n. investigator says he does not have permission to go to myanmar,un investigator say permission go myanmar
+1,turkey cautions citizens about travel to 'anti-turkey' germany,turkey caution citizen travel antiturkey germany
+0,breaking: obama just released gitmo prisoner who said he would ‚kill americans‚ if he was released [video],breaking obama released gitmo prisoner said would kill american released video
+1,chinese immigrant beheads,chinese immigrant beheads
+1,after north korea missile britain and japan agree closer security ties,north korea missile britain japan agree closer security tie
+1,syria ceasefire? lavrov,syria ceasefire lavrov
+0,nothing big mac: donald trump jr caught in latest russiamania ragbag,nothing big mac donald trump jr caught latest russiamania ragbag
+1,young generation revulsed by breivik may sway norway's election,young generation revulsed breivik may sway norway election
+0,hollywood porn director makes chappaquiddick movie: shows what ted kennedy ‚had to go through‚,hollywood porn director make chappaquiddick movie show ted kennedy go
+0,cnn caught lying again‚ this time,cnn caught lying time
+0,lol! democrats to sue over ‚unprecedented environmental catastrophe‚ trump wall poses to birds‚ignores actual bird blenders pushed by democrats [video],lol democrat sue unprecedented environmental catastrophe trump wall pose birdsignores actual bird blender pushed democrat video
+1,saudi arabia says u.n. report on yemen 'inaccurate and misleading',saudi arabia say un report yemen inaccurate misleading
+0,why hillary loves the idea of barack obama as supreme court justice,hillary love idea barack obama supreme court justice
+1,african rulers' weapon against web-based dissent: the off switch,african ruler weapon webbased dissent switch
+0,america in crisis: ‚hillary clinton is a criminal involved in a criminal enterprise‚if the voters do not stop her,america crisis hillary clinton criminal involved criminal enterpriseif voter stop
+0,obama has blood on his hands: otto warmbier has died days after release from north korean captivity {video],obama blood hand otto warmbier died day release north korean captivity video
+0,sour grapes? whatever happened to the ‚smooth transition of power‚ that obama vowed?,sour grape whatever happened smooth transition power obama vowed
+1,police fire teargas at kenyan vote protesters,police fire teargas kenyan vote protester
+0,shocking videotaped interview with barack hussein obama‚s ‚brother‚malik: ‚i‚d like to see him (barack) be for real,shocking videotaped interview barack hussein obamas brothermalik id like see barack real
+0,college campus shuts down over comment made blaming minorities for effort to remove ‚racist‚ viking mascot,college campus shuts comment made blaming minority effort remove racist viking mascot
+0,whoa! hispanic trump supporters scream at anti-trump thugs: ‚go back to mexico!‚ [video],whoa hispanic trump supporter scream antitrump thug go back mexico video
+1,eu urges swifter brexit talks as london seeks 'flexibility',eu urge swifter brexit talk london seek flexibility
+1,puerto rico opens arms to refugees from irma's caribbean chaos,puerto rico open arm refugee irmas caribbean chaos
+1,scrap plan for new banking tax london financiers tells uk opposition party,scrap plan new banking tax london financier tell uk opposition party
+1,one week to cross a street: how is pinned down filipino soldiers in marawi,one week cross street pinned filipino soldier marawi
+0,backfire alert: wrong person harassed after jennifer lawrence asks followers to ‚name and shame‚ charlottesville marchers,backfire alert wrong person harassed jennifer lawrence asks follower name shame charlottesville marcher
+1,taking back control? britain's may to make high-stakes brexit speech,taking back control britain may make highstakes brexit speech
+1,trump says he will visit japan south korea china in november,trump say visit japan south korea china november
+1,philippine presidential guard shot dead duterte not nearby,philippine presidential guard shot dead duterte nearby
+1,mozambique's president nyusi to run for re-election promises peace,mozambique president nyusi run reelection promise peace
+0,breaking: wikileaks emails suggest supreme court justice scalia may have been murdered,breaking wikileaks email suggest supreme court justice scalia may murdered
+1,finnish police release one knife attack suspect,finnish police release one knife attack suspect
+0,the best of watters‚ world: ‚if liberals are so creative,best watters world liberal creative
+0,whoa! west virginia coal miners just made powerful video to make sure hillary is not america‚s next president,whoa west virginia coal miner made powerful video make sure hillary america next president
+0,dumb as a rock‚gary johnson on nyc,dumb rockgary johnson nyc
+1,xi and trump discuss sanctions pressure on north korea: white house,xi trump discus sanction pressure north korea white house
+1,russia's zapad war games unnerve the west,russia zapad war game unnerve west
+1,eu withdrawal bill vital to ensuring orderly brexit: minister,eu withdrawal bill vital ensuring orderly brexit minister
+1,tillerson speaks with turkish counterpart about visa spat,tillerson speaks turkish counterpart visa spat
+1,co-leader of germany's far-right afd to quit in major blow,coleader germany farright afd quit major blow
+1,rescued migrants say lucky to dodge libyan coastal clampdown,rescued migrant say lucky dodge libyan coastal clampdown
+0,what‚s missing? microsoft ‚holiday‚ ad celebrates the season in true lefty style [video],whats missing microsoft holiday ad celebrates season true lefty style video
+0,breaking news: president trump speaks out on #charlottesville tragedy,breaking news president trump speaks charlottesville tragedy
+1,morocco's king fires ministers over slow progress in restive tribal area,morocco king fire minister slow progress restive tribal area
+1,recovering from severe malnutrition in yemen,recovering severe malnutrition yemen
+1,south korea finds traces of radioactive gas 'can't yet link it' to nuclear test,south korea find trace radioactive gas cant yet link nuclear test
+0,breaking: obama-holder fast n‚ furious rifle found in el chapo hideout capable of downing a helicopter,breaking obamaholder fast n furious rifle found el chapo hideout capable downing helicopter
+0,libs on twitter go nuts over kellyanne conway‚s shoes on couch in oval office‚they probably forgot these obama pics‚or what bill clinton did in the oval office,libs twitter go nut kellyanne conways shoe couch oval officethey probably forgot obama picsor bill clinton oval office
+1,french unions block fuel depots in protest against labor reforms,french union block fuel depot protest labor reform
+0,lol! arrogant obama begs congress to save embarrassing legacy‚do not repeal obamacare [video],lol arrogant obama begs congress save embarrassing legacydo repeal obamacare video
+1,majority of germans want merkel's conservatives fdp greens to form govt,majority german want merkels conservative fdp green form govt
+0,black trump supporter blasts ca city council over ‚racist‚ sanctuary cities‚and it‚s spectacular!,black trump supporter blast ca city council racist sanctuary citiesand spectacular
+1,german police rule out terrorism in munich knife attack,german police rule terrorism munich knife attack
+0,badass campus cops cite students for wearing empty holster at college that bans water guns [video],badass campus cop cite student wearing empty holster college ban water gun video
+0,lily white meryl streep explains why they don‚t need minorities on film festival jury: ‚we‚re all africans really‚,lily white meryl streep explains dont need minority film festival jury african really
+0,trump,trump
+0,u.s. airlines scramble to evacuate residents ahead of hurricane irma,u airline scramble evacuate resident ahead hurricane irma
+1,japan says jet fighters conducted drills with u.s. aircraft over east china sea,japan say jet fighter conducted drill u aircraft east china sea
+1,sao paulo mayor doria could quit party for presidential bid,sao paulo mayor doria could quit party presidential bid
+0,mexican-american trump supporter destroys liberal ca city council member: ‚the problem with liberals is they lay claim to helping minorities but rarely help them‚,mexicanamerican trump supporter destroys liberal ca city council member problem liberal lay claim helping minority rarely help
+1,pope meets with angry,pope meet angry
+1,myanmar ministers deliver aid to trapped rohingya village,myanmar minister deliver aid trapped rohingya village
+1,dublin rejects british proposal for post-brexit irish border,dublin reject british proposal postbrexit irish border
+0,boiler room #106 ‚ did israel attack damascus? + bill nye the psyop guy,boiler room israel attack damascus bill nye psyop guy
+0,sheriff clarke outraged at rally violence: ‚ where‚s the fbi and doj?‚,sheriff clarke outraged rally violence wheres fbi doj
+1,malay woman to be singapore president puts minority representation on agenda,malay woman singapore president put minority representation agenda
+1,maria likely to become tropical storm tuesday night or wednesday: nhc,maria likely become tropical storm tuesday night wednesday nhc
+1,magellan midstream probes big texas fuel spill during harvey floods,magellan midstream probe big texas fuel spill harvey flood
+1,opposition leader says brexit must not be used to turn uk into a tax haven,opposition leader say brexit must used turn uk tax
+0,trump‚s lawyer destroys #chriswallace in heated exchange: ‚no chris,trump lawyer destroys chriswallace heated exchange chris
+0,wow! chuck todd goes after nasty chuck schumer: opposition to trump nominee ‚looks politically petty‚ [video],wow chuck todd go nasty chuck schumer opposition trump nominee look politically petty video
+1,south africa's zuma asks court to reject call for inquiry into influence-peddling,south africa zuma asks court reject call inquiry influencepeddling
+0,dc waitress who admits to being prejudiced‚gets big surprise from white trump supporters after she participated in women‚s march,dc waitress admits prejudicedgets big surprise white trump supporter participated womens march
+0,lol! fake indian elizabeth warren returns dna kit real indian gop senate challenger sent as birthday gift,lol fake indian elizabeth warren return dna kit real indian gop senate challenger sent birthday gift
+1,china says supports iraq's unity as kurds vote in referendum,china say support iraq unity kurd vote referendum
+1,colombia eln rebels agree temporary ceasefire starting oct. 1,colombia eln rebel agree temporary ceasefire starting oct
+0,unreal! cnn anchor claims trump has committed ‚treason‚‚former attorney general shoots back: ‚where is the crime?‚ [video],unreal cnn anchor claim trump committed treasonformer attorney general shoot back crime video
+1,a north korea nuclear test over the pacific? logical terrifying,north korea nuclear test pacific logical terrifying
+1,factbox: how u.s. multinationals in puerto rico are responding to hurricane maria,factbox u multinationals puerto rico responding hurricane maria
+0,kreepy kaine says voting for hillary will help to put american women more on par with women in iraq,kreepy kaine say voting hillary help put american woman par woman iraq
+0,watch dinesh d‚souza totally embarrass liberal caller on c-span: ‚first of all‚‚ [video],watch dinesh dsouza totally embarrass liberal caller cspan first video
+1,myanmar adviser: rohingya can return but process to be discussed,myanmar adviser rohingya return process discussed
+0,breaking: blind opera singer gets death threats from left‚forced to back out of performance at trump inauguration [video],breaking blind opera singer get death threat leftforced back performance trump inauguration video
+0,breaking! refugee terrorist coverup: obama‚s doj aided iraqi refugee terror suspect to allegedly deny campaign momentum to trump [video],breaking refugee terrorist coverup obamas doj aided iraqi refugee terror suspect allegedly deny campaign momentum trump video
+0,former mexican prez sends ‚middle finger‚ to trump days before ‚apology‚: ‚don‚t play around with us‚we can jump walls‚we can swim rivers‚and we can defend ourselves‚,former mexican prez sends middle finger trump day apology dont play around uswe jump wallswe swim riversand defend
+1,say what?! ny public school students pledge allegiance to an international flag?,say ny public school student pledge allegiance international flag
+1,militants attack east congo bases killing two u.n. peacekeepers,militant attack east congo base killing two un peacekeeper
+1,border checks to stay in europe weary of attacks migration,border check stay europe weary attack migration
+0,america‚s primal scream: david icke explains reason for trump‚s election result,america primal scream david icke explains reason trump election result
+0,pay off: the establishment rewards comey with $2 million book deal,pay establishment reward comey million book deal
+1,widow of russian major killed in syria battles for compensation,widow russian major killed syria battle compensation
+0,here‚s why l.l. bean is being boycotted by the loony lefties and what you can do about it!,here bean boycotted loony lefty
+0,not kidding! high school assignment: ‚prudence is thirty-four. she has had sex with 21 men and 3 women‚,kidding high school assignment prudence thirtyfour sex men woman
+0,is london about to elect its first muslim mayor? [video],london elect first muslim mayor video
+0,oops! trump obsessed john mccain exposed by wikileaks begging for campaign donations from russia,oops trump obsessed john mccain exposed wikileaks begging campaign donation russia
+1,japan vows no more deaths from overwork while building olympic arena,japan vow death overwork building olympic arena
+0,digital tabloids,digital tabloid
+0,home improvement‚s tim allen reminds us of what a ‚man‚s bathroom‚ should look like,home improvement tim allen reminds u man bathroom look like
+1,henningsen on trump rally fervor: ‚political relativism has descended on america‚,henningsen trump rally fervor political relativism descended america
+1,macron hurls challenge to europe - reform or decline,macron hurl challenge europe reform decline
+1,liberty report talks to vanessa beeley: ‚everything the us media says about aleppo is wrong‚,liberty report talk vanessa beeley everything u medium say aleppo wrong
+1,trump slaps sanctions on venezuela; maduro sees effort to force default,trump slap sanction venezuela maduro see effort force default
+1,u.s. bombs dropped in afghanistan at highest since 2010 under new trump strategy,u bomb dropped afghanistan highest since new trump strategy
+1,car bomb kills four libyan troops at checkpoint: security sources,car bomb kill four libyan troop checkpoint security source
+1,shout! poll: should protesters be allowed to shut down political rallies?,shout poll protester allowed shut political rally
+0,boom! obama required to respond,boom obama required respond
+1,spanish police raid catalan government to halt banned referendum,spanish police raid catalan government halt banned referendum
+1,cholera claims unborn children as epidemic spreads yemen misery,cholera claim unborn child epidemic spread yemen misery
+1,mexico city gets unsteadily back on its feet after quake,mexico city get unsteadily back foot quake
+1,north korea insists u.s. student warmbier wasn't tortured,north korea insists u student warmbier wasnt tortured
+0,boom! first antifa coward arrested for not removing his mask‚berkeley cops not standing down at free-speech rally [video],boom first antifa coward arrested removing maskberkeley cop standing freespeech rally video
+1,indian journalists activists protest murder of newspaper publisher,indian journalist activist protest murder newspaper publisher
+0,propaganda: star trek beyond ‚ social justice warriors in space,propaganda star trek beyond social justice warrior space
+0,chicago daycare opens for adults to wear diapers,chicago daycare open adult wear diaper
+1,'nowhere to hide': north korean missiles spur anxiety in japan fishing town,nowhere hide north korean missile spur anxiety japan fishing town
+1,main cambodian opposition leader arrested paper shuts as crackdown grows,main cambodian opposition leader arrested paper shuts crackdown grows
+1,debris and dust: raqqa 'sacrificed' to defeat islamic state,debris dust raqqa sacrificed defeat islamic state
+0,is the united states of america a liberal democracy,united state america liberal democracy
+0,obama plays the victim card again: baltimore rioters ‚stripped a,obama play victim card baltimore rioter stripped
+0,woman cries after seeing how easily our votes are stolen by electronic voting machines [video],woman cry seeing easily vote stolen electronic voting machine video
+0,mn somali residents comment on muslim who stabbed innocent people at mall: was ‚exceptional‚ student,mn somali resident comment muslim stabbed innocent people mall exceptional student
+0,[video] fox news‚ greg gutfield asks if the left would care if planned parenthood was selling harvested dolphin organs,video fox news greg gutfield asks left would care planned parenthood selling harvested dolphin organ
+1,trump says wants democracy restored in venezuela soon,trump say want democracy restored venezuela soon
+1,russia says will target u.s.-backed fighters in syria if provoked,russia say target usbacked fighter syria provoked
+0,boom! indiana ymca takes cnn off tv‚s after members complain about ‚fake news‚,boom indiana ymca take cnn tv member complain fake news
+1,thousands evacuated in ukraine as ammunition depot explodes,thousand evacuated ukraine ammunition depot explodes
+0,homeless man dies next to 4-star hotel‚your blood will boil when you see who is living inside hotel,homeless man dy next star hotelyour blood boil see living inside hotel
+1,france's le pen seeks to bill herself as macron's main opponent,france le pen seek bill macron main opponent
+1,trump announces transgender ban for us military,trump announces transgender ban u military
+0,funny! msnbc anchor asks millennial women if they feel ‚connected‚ to hillary [video],funny msnbc anchor asks millennial woman feel connected hillary video
+0,msnbc pinhead host threatens fox‚s bill o‚reilly: ‚come and sue me‚i dare you‚ [video],msnbc pinhead host threatens fox bill oreilly come sue mei dare video
+1,india says ready for stronger u.s. ties after tillerson endorsement,india say ready stronger u tie tillerson endorsement
+1,"u.n. rights boss sees possible ""crimes against humanity"" in venezuela",un right bos see possible crime humanity venezuela
+1,indonesia ready to help bangladesh in dealing with rohingya refugees,indonesia ready help bangladesh dealing rohingya refugee
+0,meet ‚lyin‚ lizzie‚: why was obama‚s ag loretta lynch using her grandmother‚s name as an alias in email communication with doj?,meet lyin lizzie obamas ag loretta lynch using grandmother name alias email communication doj
+1,factbox: u.s. congressional leaders on iran nuclear deal,factbox u congressional leader iran nuclear deal
+1,u.s. urges myanmar to address rights abuse allegations,u urge myanmar address right abuse allegation
+0,trump gives brutal warning to lawless sanctuary cities‚there‚s a new sheriff in town [video],trump give brutal warning lawless sanctuary citiestheres new sheriff town video
+0,goldman sachs chairman thinks uk needs more migrants to avoid appearance of racism‚while shocking new video tells another story,goldman sachs chairman think uk need migrant avoid appearance racismwhile shocking new video tell another story
+0,never before seen: fbi trove of 9/11 pentagon photos refuels conspiracy suspicions,never seen fbi trove pentagon photo refuels conspiracy suspicion
+1,turkish newspaper staff remanded in custody over coup attempt links: cnn turk,turkish newspaper staff remanded custody coup attempt link cnn turk
+1,japan's koike says her party offers centrist choice to voters,japan koike say party offer centrist choice voter
+0,"cbs 60 minutes withheld trump‚s appeal to ‚stop attacking minorities‚ and ignored reports of attacks on trump supporters""",cbs minute withheld trump appeal stop attacking minority ignored report attack trump supporter
+1,trump urges eu to sanction maduro government in venezuela,trump urge eu sanction maduro government venezuela
+0,which one of these people tried to lecture the other on the constitution‚.guesses? [video],one people tried lecture constitutionguesses video
+0,flint‚s #crookedmayorweaver tells trump he‚s not welcome in broken,flint crookedmayorweaver tell trump he welcome broken
+0,paul joseph watson exposes lunacy of leftists who try to separate black lives matter from kidnapping,paul joseph watson expose lunacy leftist try separate black life matter kidnapping
+0,millions in outside money,million outside money
+1,catalan commission to investigate claims of abuse during banned referendum,catalan commission investigate claim abuse banned referendum
+0,breaking‚america was punked! no direct ties between trump and russia‚intelligence community behind assault on trump [video],breakingamerica punked direct tie trump russiaintelligence community behind assault trump video
+1,boiler room ep #85 ‚ the return of the social rejects club,boiler room ep return social reject club
+1,western powers press iraq kurd leaders to shelve 'very risky' independence vote,western power press iraq kurd leader shelve risky independence vote
+0,watters‚ world: ‚do you have obamacare?‚‚‚how does it work?‚ [video],watters world obamacarehow work video
+0,new black panther leader sends warning about republican convention [video],new black panther leader sends warning republican convention video
+1,politically charged murder trial of mexican immigrant starts in san francisco,politically charged murder trial mexican immigrant start san francisco
+0,macy‚s celebrates america‚s independence by putting illegal aliens first,macys celebrates america independence putting illegal alien first
+1,trump says signs new order to widen sanctions against north korea,trump say sign new order widen sanction north korea
+0,breaking: hillary camp looking to challenge vote‚suspects ‚irregularities‚ in wi,breaking hillary camp looking challenge votesuspects irregularity wi
+0,these ‚polls‚ don‚t lie! hillary plans huge black baptist church rally‚massive number of empty seats‚workers forced to ‚shrink‚ room,poll dont lie hillary plan huge black baptist church rallymassive number empty seatsworkers forced shrink room
+0,flashback: army of women join social media craze to show their love for president trump and ivanka,flashback army woman join social medium craze show love president trump ivanka
+1,hawkish dove: the enigma of donald trump in volatile race to the white house,hawkish dove enigma donald trump volatile race white house
+0,tyra for trump hammers the media on their bias against trump! [video],tyra trump hammer medium bias trump video
+0,400000 children still displaced from mosul fighting: save the children,child still displaced mosul fighting save child
+0,media hides truth about #unfithillary: falls off podium‚takes weekends off from campaigning in front of tiny audiences [video],medium hide truth unfithillary fall podiumtakes weekend campaigning front tiny audience video
+1,saudi university to dismiss suspected brotherhood-linked academics,saudi university dismiss suspected brotherhoodlinked academic
+1,most south koreans doubt the north will start a war: poll,south korean doubt north start war poll
+1,why not a probe of ‚israel-gate‚,probe israelgate
+0,hysterical! pro-cop billboard causes controversy and offends liberals‚but you‚ll love it!,hysterical procop billboard cause controversy offends liberalsbut youll love
+0,take them off or pay huge fine! #nfl won‚t allow player to honor 9-11 victims with memorial cleats‚disrespecting our flag on 9-11 is a-okay,take pay huge fine nfl wont allow player honor victim memorial cleatsdisrespecting flag aokay
+0,michelle obama wanted biden to run so he could beat hillary [video],michelle obama wanted biden run could beat hillary video
+0,muslim immigrant beats 22-term mn democrat‚thanks packed room of somali immigrants in foreign language‚no american flags visible [video],muslim immigrant beat term mn democratthanks packed room somali immigrant foreign languageno american flag visible video
+1,russian bombing of u.s.-backed forces being discussed at 'highest levels': mattis,russian bombing usbacked force discussed highest level mattis
+1,ukraine's poroshenko suggests imf-backed anti-graft court will take time,ukraine poroshenko suggests imfbacked antigraft court take time
+1,turkey's erdogan calls on mayors to resign hurriyet newspaper says,turkey erdogan call mayor resign hurriyet newspaper say
+0,anti-trump teacher wears ‚tuck frump‚ jacket during classes‚student‚s snap goes viral,antitrump teacher wear tuck frump jacket classesstudents snap go viral
+0,wow! legal hispanic american immigrant unloads on racist hillary supporters: ‚liberals are desperate because they know they‚re gonna lose‚ [video],wow legal hispanic american immigrant unloads racist hillary supporter liberal desperate know theyre gon na lose video
+1,thai hotels booked up ahead of funeral of revered king,thai hotel booked ahead funeral revered king
+1,u.s. russian generals talk face-to-face on syria,u russian general talk facetoface syria
+0,breaking: 28 yr old palestinian muslim feras mohamed freitekh crashes plane near pratt whitney hq‚s‚instructor pilot said ‚it was intentional‚‚media says motive is still mystery‚lol!,breaking yr old palestinian muslim feras mohamed freitekh crash plane near pratt whitney hqsinstructor pilot said intentionalmedia say motive still mysterylol
+0,boiler room #62 ‚ fatal illusions,boiler room fatal illusion
+1,britain's boris johnson wants maximum two-year brexit transition,britain boris johnson want maximum twoyear brexit transition
+1,trump's central america plan will not boost militarization: honduras president,trump central america plan boost militarization honduras president
+0,wow! senator grassley outs schumer and schiff‚lied to media even though they knew trump wasn‚t under investigation for collusion with russians [video],wow senator grassley out schumer schifflied medium even though knew trump wasnt investigation collusion russian video
+0,wow! the washington post publishes #realnews story about president trump : under trump‚s leadership,wow washington post publishes realnews story president trump trump leadership
+0,hillary lands coveted taxpayer funded,hillary land coveted taxpayer funded
+1,korean peninsula draws range of military drills in show of force against north korea,korean peninsula draw range military drill show force north korea
+0,betty won‚t bite! watch what happens when katie couric desperately tries to goad betty white into blaming trump for obama‚s divided nation [video],betty wont bite watch happens katie couric desperately try goad betty white blaming trump obamas divided nation video
+0,why did cnn doctor killer‚s photo to disguise his race and why is the press scrubbing his profile?,cnn doctor killer photo disguise race press scrubbing profile
+0,korean seismic activity took place 50 km from prior tests: ctbto,korean seismic activity took place km prior test ctbto
+1,germany deports failed afghan asylum seekers,germany deports failed afghan asylum seeker
+0,unreal! benghazi liar susan rice shows her radical racist roots with this outrageous comment about national security,unreal benghazi liar susan rice show radical racist root outrageous comment national security
+0,media won‚t show video of trump telling matt lauer david duke is a ‚bigot‚ and a ‚racist‚ignores hillary‚s ties to former kkk leader,medium wont show video trump telling matt lauer david duke bigot racistignores hillary tie former kkk leader
+0,british jihadi 'white widow' killed by u.s. drone: sun report,british jihadi white widow killed u drone sun report
+1,belgian army pilot found dead after midair helicopter mystery,belgian army pilot found dead midair helicopter mystery
+1,chinese space official promoted as part of military reshuffle,chinese space official promoted part military reshuffle
+0,u of chicago admissions blames trump for chicago‚s violent image‚offers students cash for best idea of how to deceive prospective students about violence [video],u chicago admission blame trump chicago violent imageoffers student cash best idea deceive prospective student violence video
+1,justice? yahoo settles e-mail privacy class-action: $4m for lawyers,justice yahoo settle email privacy classaction lawyer
+1,cuba‚s getting nuclear reactors from putin,cuba getting nuclear reactor putin
+0,wow! georgia refused election cyber-support from obama‚s dhs‚now sec of state demands answers after claiming dhs tried to breach his office‚s firewall,wow georgia refused election cybersupport obamas dhsnow sec state demand answer claiming dhs tried breach office firewall
+0,video: watch james o‚keefe easily obtain eminem‚s election ballot in undercover sting,video watch james okeefe easily obtain eminems election ballot undercover sting
+0,watch ted cruz promise to support trump if he became nominee‚today,watch ted cruz promise support trump became nomineetoday
+0,absolute submission: trump bows to neocon orthodoxy,absolute submission trump bow neocon orthodoxy
+1,australian court says no guarantee of speedy ruling on citizenship crisis,australian court say guarantee speedy ruling citizenship crisis
+1,lest we forget: ‚independent‚ mueller is part of establishment that helped sell iraq war,lest forget independent mueller part establishment helped sell iraq war
+0,ouch! sneaky liberal gets electrocuted while trying to steal trump sign from neighbors lawn,ouch sneaky liberal get electrocuted trying steal trump sign neighbor lawn
+1,nato urges trading partners to step up pressure on north korea,nato urge trading partner step pressure north korea
+0,bilderberg: more secret meetings with trump advisors,bilderberg secret meeting trump advisor
+1,convoy of civil guard police leave barcelona port: reuters witness,convoy civil guard police leave barcelona port reuters witness
+1,saudi coalition investigates own air strikes clears itself,saudi coalition investigates air strike clear
+0,liberal hack alec baldwin performed rank trump-bashing skit last night‚baldwin is no saint!,liberal hack alec baldwin performed rank trumpbashing skit last nightbaldwin saint
+1,reliving china's long march ahead of party congress,reliving china long march ahead party congress
+0,obama‚s lawless america: ca police tell violent anti-trump protesters ‚leave now or you will be arrested‚‚protesters shout back ‚we don‚t follow the law‚,obamas lawless america ca police tell violent antitrump protester leave arrestedprotesters shout back dont follow law
+1,critics urge who to reverse choice of mugabe as goodwill envoy,critic urge reverse choice mugabe goodwill envoy
+0,awesome: patriots and sheriff stand guard as feds try to confiscate navy vet‚s guns,awesome patriot sheriff stand guard fed try confiscate navy vet gun
+0,obama appointed judge sides with dems in critical swing state‚doesn‚t matter if vote-by-mail ballot signatures don‚t match‚votes still count,obama appointed judge side dems critical swing statedoesnt matter votebymail ballot signature dont matchvotes still count
+0,eric trump says political correctness motivated his dad to run: renaming of ‚christmas tree‚‚forcing firemen to remove american flag from trucks,eric trump say political correctness motivated dad run renaming christmas treeforcing fireman remove american flag truck
+0,washed up hollywood loser makes embarrassing video bashing trump over paris climate agreement,washed hollywood loser make embarrassing video bashing trump paris climate agreement
+1,u.s.-led surveillance aircraft leave area near islamic state convoy in syria,usled surveillance aircraft leave area near islamic state convoy syria
+1,nine killed in fighting between different branches of somali government forces: police,nine killed fighting different branch somali government force police
+0,catholic priest goes off on partial-birth abortion hillary for faking endorsement from pope francis [video],catholic priest go partialbirth abortion hillary faking endorsement pope francis video
+0,lol! high school students skip school to protest trump‚s temporary travel ban‚hilarity ensues when they try to explain ban to jesse watters [video],lol high school student skip school protest trump temporary travel banhilarity ensues try explain ban jesse watters video
+0,boycott backfires! ivanka trump clothing line reports record sales,boycott backfire ivanka trump clothing line report record sale
+1,malay set to be singapore's first woman president: straits times,malay set singapore first woman president strait time
+0,unhinged trump protester arrested for slapping police officer‚s horse,unhinged trump protester arrested slapping police officer horse
+1,islamic state claims responsibility for suicide attacks in southern iraq: amaq,islamic state claim responsibility suicide attack southern iraq amaq
+0,toby keith has awesome response to crybaby attacks over trump inauguration performance [video],toby keith awesome response crybaby attack trump inauguration performance video
+1,chilean economic officials resign in blow to center-left coalition,chilean economic official resign blow centerleft coalition
+0,lol! lawless hs snowflakes try to bust out of school for anti-trump protest‚school locks them in! [video],lol lawless h snowflake try bust school antitrump protestschool lock video
+1,china lodges stern protest with south korea over thaad deployment,china lodge stern protest south korea thaad deployment
+1,brazil poll shows temer approval plummets on new graft charges,brazil poll show temer approval plummet new graft charge
+0,obama‚s race war makes its way to his hometown of chicago‚where this punk follows his cop-hating lead,obamas race war make way hometown chicagowhere punk follows cophating lead
+0,anti-gun crusader katie couric intentionally edits ‚under the gun‚ documentary to make gun rights supporters look stupid,antigun crusader katie couric intentionally edits gun documentary make gun right supporter look stupid
+1,new u.s. helicopters mark major change for afghan air force,new u helicopter mark major change afghan air force
+1,chad withdraws troops from fight against boko haram in niger,chad withdraws troop fight boko haram niger
+1,u.s. south korea troops stage mock battle to retake village near north korean border,u south korea troop stage mock battle retake village near north korean border
+1,pope in medellin recalls 'painful memory' of narco wars,pope medellin recall painful memory narco war
+1,austrian conservative kurz says needs more time on coalition talks,austrian conservative kurz say need time coalition talk
+0,lefty media desperately tries to bury trump but the brilliant ken starr won‚t buy it [video],lefty medium desperately try bury trump brilliant ken starr wont buy video
+0,syrian immigrant who said ‚9-11 changed the world for good‚‚calls syria her ‚homeland‚ is homeland security advisor,syrian immigrant said changed world goodcalls syria homeland homeland security advisor
+0,what ‚i‚m with her‚ really means for hillary supporters [video],im really mean hillary supporter video
+1,nerve agent vx found on shirts of women accused of north korean murder expert says,nerve agent vx found shirt woman accused north korean murder expert say
+0,flashback: bernie sanders‚ socialist democrat party asks,flashback bernie sander socialist democrat party asks
+1,abbas: u.n. must try to end israeli occupation 'within set timeframe',abbas un must try end israeli occupation within set timeframe
+1,russia accuses cnn international of violating russian media law,russia accuses cnn international violating russian medium law
+0,no longer a fantasy: could hillary clinton actually drop out of the race?,longer fantasy could hillary clinton actually drop race
+1,philippines' duterte asks head of human rights agency: 'are you a pedophile?',philippine duterte asks head human right agency pedophile
+1,britain seeks new ways to detect explosives in airports,britain seek new way detect explosive airport
+0,ufc fighter and former u.s. special forces sniper offered fbi protection after isis makes ‚credible threats‚ against him‚his response is priceless [video],ufc fighter former u special force sniper offered fbi protection isi make credible threat himhis response priceless video
+0,intel whistleblower: trump was likely spied on for some time‚too easy for americans to be spied on [video],intel whistleblower trump likely spied timetoo easy american spied video
+0,[video] yep‚gun-control bill said that today: ‚you can‚t have people walking around with guns‚,video yepguncontrol bill said today cant people walking around gun
+1,wildfires kill at least 39 in portugal and spain,wildfire kill least portugal spain
+1,france says venezuela talks to take place warns of sanctions,france say venezuela talk take place warns sanction
+0,chilling photo captures female suicide bomber carrying baby moments before she blows both of them up,chilling photo capture female suicide bomber carrying baby moment blow
+1,colombia farc rebels include boots kitchen supplies in list of assets,colombia farc rebel include boot kitchen supply list asset
+1,china unveils new leadership line-up with no clear successor to xi,china unveils new leadership lineup clear successor xi
+0,breaking: federal judge stops obamacare transgender,breaking federal judge stop obamacare transgender
+0,secret service protects obama‚s daughters while these illegal alien pedophiles threaten our children,secret service protects obamas daughter illegal alien pedophile threaten child
+1,eu court dismisses hungary slovak case against taking refugees,eu court dismisses hungary slovak case taking refugee
+0,policeman stabbed to death in valencia,policeman stabbed death valencia
+0,democrat thugs vandalize republican offices across several states‚now who‚s ‚deplorable‚?,democrat thug vandalize republican office across several statesnow who deplorable
+0,u.s. denies breaking into russian diplomatic apartments in san francisco,u denies breaking russian diplomatic apartment san francisco
+1,euro zone enlargement call sparks backlash in germany,euro zone enlargement call spark backlash germany
+0,bill clinton‚s rape accusers speak out: ‚we are terrified of hillary‚ [video],bill clinton rape accuser speak terrified hillary video
+0,post-obama america: liberal thug gets physical with n. dakota gop rep at town hall [video],postobama america liberal thug get physical n dakota gop rep town hall video
+1,u.s. russia set for likely u.n. row over syria toxic gas inquiry,u russia set likely un row syria toxic gas inquiry
+1,russia says u.s. ukraine reject its u.n. proposal for eastern ukraine: tass,russia say u ukraine reject un proposal eastern ukraine tass
+0,u.s. navy moving aircraft carrier for hurricane irma relief,u navy moving aircraft carrier hurricane irma relief
+1,jets strike u.s.-backed forces in eastern syria,jet strike usbacked force eastern syria
+0,antifa: self-appointed radical revolutionaries or neoliberal thought police?,antifa selfappointed radical revolutionary neoliberal thought police
+1,may might leave next stage of brexit bill until next month,may might leave next stage brexit bill next month
+1,from haider to strache - the fpo's march to respectability in austria,haider strache fpos march respectability austria
+1,soldiers kill six in cameroon amid secessionist protests: mayor,soldier kill six cameroon amid secessionist protest mayor
+0,german residents fight back: anti-islamic song with no words knocks adele off top spot,german resident fight back antiislamic song word knock adele top spot
+0,fbi agent indicted in killing of lavoy finicum,fbi agent indicted killing lavoy finicum
+0,obama‚s list of 21 medal of freedom recipients reads like a who‚s who of the far left,obamas list medal freedom recipient read like who far left
+1,u.s.-backed sdf says raqqa campaign in final stages,usbacked sdf say raqqa campaign final stage
+1,ukraine gives cautious welcome to putin's peacekeepers offer,ukraine give cautious welcome putin peacekeeper offer
+1,saudi king arrives in moscow: russian state tv,saudi king arrives moscow russian state tv
+1,after british pm may's speech fiasco her party puzzles: who next?,british pm may speech fiasco party puzzle next
+0,hillary clinton‚s ‚presidency‚ has already begun as lame ducks promote her war on syria,hillary clinton presidency already begun lame duck promote war syria
+1,italy's 5-star names youthful new leader as election nears,italy star name youthful new leader election nears
+1,norway plans to send armored unit close to russian border,norway plan send armored unit close russian border
+1,no vacancies: airbnb shutters beijing rentals ahead of party congress,vacancy airbnb shutter beijing rental ahead party congress
+0,florida nuclear plants to shut ahead of hurricane irma,florida nuclear plant shut ahead hurricane irma
+0,spineless gop proves majority means nothing ‚senator schumer brags about not funding border wall: ‚budget deal reflects democrats‚ principles‚,spineless gop prof majority mean nothing senator schumer brag funding border wall budget deal reflects democrat principle
+0,watch angry teacher play out mock assassination of trump: ‚die!‚ [video],watch angry teacher play mock assassination trump die video
+1,attack on workers at key pakistan port for chinese project; 26 hurt,attack worker key pakistan port chinese project hurt
+0,undercover journalist in burka is offered huma abedin‚s ballot [video],undercover journalist burka offered huma abedins ballot video
+1,venezuelans face growing queues to buy gasoline,venezuelan face growing queue buy gasoline
+1,half of central congo's 1.5 million displaced people have returned,half central congo million displaced people returned
+1,eu leaders pledge extra ‚ç¨1 billion in aid to refugees‚slovakia will take eu to court over forced refugee quotas,eu leader pledge extra billion aid refugeesslovakia take eu court forced refugee quota
+0,he‚s back! he‚s got investors putting up $12 million and plans to make ‚liberal professors,he back he got investor putting million plan make liberal professor
+1,putin after meeting south korean leader calls for talks on north korea crisis,putin meeting south korean leader call talk north korea crisis
+0,disney sells disgusting new book teaching ‚liberal and progressive‚ thought‚targets 0-2 yr old babies,disney sell disgusting new book teaching liberal progressive thoughttargets yr old baby
+0,sorry nancy! here‚s proof democrats have nothing on jeff sessions [video],sorry nancy here proof democrat nothing jeff session video
+0,judicial bias? latina supreme court justice declares her shockingly racist view on ethnicity and sex when judging,judicial bias latina supreme court justice declares shockingly racist view ethnicity sex judging
+0,judge jeanine explains why ‚hillary has no chance of winning in november‚ [video],judge jeanine explains hillary chance winning november video
+1,argentines march to demand answers on case of missing activist,argentine march demand answer case missing activist
+1,the new risk for europe: an inward-looking germany,new risk europe inwardlooking germany
+1,by land river and sea rohingya make their escape from myanmar,land river sea rohingya make escape myanmar
+1,u.n. peacekeepers pressed to do more with less as further cuts loom,un peacekeeper pressed less cut loom
+0,liberal loser screams ‚this is my america!‚ after electors vote trump [video],liberal loser scream america elector vote trump video
+1,kenya's chief prosecutor orders investigation into election board,kenya chief prosecutor order investigation election board
+0,the death of p.c. police? trump‚s doj makes major announcement over ‚redskins‚ name,death pc police trump doj make major announcement redskin name
+1,at least 93 dead in mexico after quake :officials,least dead mexico quake official
+0,breaking: house intel to produce ‚smoking gun‚ showing obama administration spied on trump transition team,breaking house intel produce smoking gun showing obama administration spied trump transition team
+0,abortion employees give gut-wrenching accounts of live baby killings: ‚twisting the head off the neck with his own bare hands‚ [video],abortion employee give gutwrenching account live baby killing twisting head neck bare hand video
+0,hillary‚s physician claims she has pneumonia‚does pneumonia cause convulsions?‚do people with pneumonia hug little girls,hillary physician claim pneumoniadoes pneumonia cause convulsionsdo people pneumonia hug little girl
+0,political hack rihanna sings ‚we are the new america‚ at the final four‚what exactly is ‚new america‚?,political hack rihanna sings new america final fourwhat exactly new america
+1,us police dept uses ‚pok√©mon go‚ to lure fugitives to police station,u police dept us pokmon go lure fugitive police station
+0,breaking: mexico‚s president cancels visit with trump over defending our us border from lawbreakers‚but wrongfully imprisoning us marine tahmooressi for ‚border violation‚ was no big deal,breaking mexico president cancel visit trump defending u border lawbreakersbut wrongfully imprisoning u marine tahmooressi border violation big deal
+1,two dead two wounded in shooting incident on myanmar-bangladesh border,two dead two wounded shooting incident myanmarbangladesh border
+1,iran has 'all options on table' if u.s. blacklists revolutionary guards: isna,iran option table u blacklist revolutionary guard isna
+1,austrian coalition talks set to begin far right likely partner,austrian coalition talk set begin far right likely partner
+0,student newspaper at hillary‚s alma mater: it‚s okay to use violence to shut down free speech [video],student newspaper hillary alma mater okay use violence shut free speech video
+1,kirkuk declares curfew after iraqi kurdish independence referendum,kirkuk declares curfew iraqi kurdish independence referendum
+1,deadly air strike hits syrian government-held deir al-zor: state tv monitor,deadly air strike hit syrian governmentheld deir alzor state tv monitor
+0,eyewash: cia elites misleading employees indicates that conspiracies are not ‚ridiculous fantasy‚,eyewash cia elite misleading employee indicates conspiracy ridiculous fantasy
+0,all hell breaks loose in france‚,hell break loose france
+0,breaking: worldstar hip hop site releases rap video‚blames ‚hypocrite‚ hillary for not acknowledging bill clinton‚s black son‚doesn‚t care about blacks [video],breaking worldstar hip hop site release rap videoblames hypocrite hillary acknowledging bill clinton black sondoesnt care black video
+0,white baseball player loses scholarship after using the ‚n‚ word but not so for black basketball player,white baseball player loses scholarship using n word black basketball player
+1,eu imposes oil embargo on north korea in symbolic gesture,eu imposes oil embargo north korea symbolic gesture
+0,donald trump jr slams kathy griffin for playing the victim [video],donald trump jr slam kathy griffin playing victim video
+0,shocking: dnc contractor caught in voter fraud sting visited white house 342 times,shocking dnc contractor caught voter fraud sting visited white house time
+1,british pm showed guts and grace in conference speech minister says,british pm showed gut grace conference speech minister say
+1,chile left-wing candidates could form alliance threatening market rally,chile leftwing candidate could form alliance threatening market rally
+0,walmart removes controversial t-shirt but black lives matter tees remain,walmart remove controversial tshirt black life matter tee remain
+1,north korea says rockets to u.s. 'inevitable' as u.s. bombers fly off north korean coast,north korea say rocket u inevitable u bomber fly north korean coast
+0,trump supporter‚s hilarious viral video mocking cnn‚s 1-star app rating has everyone laughing!,trump supporter hilarious viral video mocking cnns star app rating everyone laughing
+0,obama warns cops to recognize black lives matter: ‚if police organizations acknowledge that there‚s a problem‚that is what is going to ultimately make the job of being a cop a lot safer‚ [video],obama warns cop recognize black life matter police organization acknowledge there problemthat going ultimately make job cop lot safer video
+0,lol! wait till you see why the race-obsessed left is attacking ‚tyler perry‚s house of payne‚ actor for posting this picture on social media,lol wait till see raceobsessed left attacking tyler perry house payne actor posting picture social medium
+1,spain's rajoy calls on catalonia leaders to cancel referendum,spain rajoy call catalonia leader cancel referendum
+0,does nancy need medical attention? watch as nancy pelosi stumbles over everyday words a 3rd grader can pronounce [video],nancy need medical attention watch nancy pelosi stumble everyday word rd grader pronounce video
+1,many austrian voters still undecided ahead of election: poll,many austrian voter still undecided ahead election poll
+1,trapped rohingya muslims in myanmar get first substantial food aid in months,trapped rohingya muslim myanmar get first substantial food aid month
+0,actor tim allen: hillary isn‚t capable of being funny‚bill clinton creepily checked out his wife when they met [video],actor tim allen hillary isnt capable funnybill clinton creepily checked wife met video
+0,trump,trump
+0,unhinged leftist apologizes to ‚refugees‚ who gang raped her,unhinged leftist apologizes refugee gang raped
+1,eu braces for brexit talks collapse as may falters,eu brace brexit talk collapse may falter
+1,japan pm's ruling bloc seen nearing 2/3 majority in oct. 22 lower house poll: nikkei,japan pm ruling bloc seen nearing majority oct lower house poll nikkei
+1,macron determined to engage germany in debate on europe reforms,macron determined engage germany debate europe reform
+0,"fbi: clinton foundation investigation will lead to ‚likely indictment‚ donors funded isis""",fbi clinton foundation investigation lead likely indictment donor funded isi
+1,dutch tourist group cuts south africa visit short after armed bus robbery,dutch tourist group cut south africa visit short armed bus robbery
+1,afghan security forces killed in 'friendly fire' incident,afghan security force killed friendly fire incident
+1,ghana and ivory coast act to implement ruling on maritime border dispute,ghana ivory coast act implement ruling maritime border dispute
+1,under pressure pm may says she can steer britain through brexit,pressure pm may say steer britain brexit
+1,conservative chile presidential candidate calls for all-renewable grid,conservative chile presidential candidate call allrenewable grid
+1,afghan shi'ites fear further attacks on ashura celebrations,afghan shiite fear attack ashura celebration
+1,university of nairobi closed as anger rises over police brutality,university nairobi closed anger rise police brutality
+1,mattis hopeful freeing of hostages in pakistan to boost cooperation,mattis hopeful freeing hostage pakistan boost cooperation
+0,hookers for hillary: why they‚ve got her back‚[video],hooker hillary theyve got backvideo
+0,hillary‚s chickens are comin‚ home to roost: news reports suggest hillary may have used a second private server,hillary chicken comin home roost news report suggest hillary may used second private server
+1,boiler room ep #75 ‚ limited hangouts,boiler room ep limited hangout
+0,dnc will spend $60 million to coronate crooked hillary‚says it‚s nobody‚s business where money is coming from,dnc spend million coronate crooked hillarysays nobody business money coming
+1,german election chief urges action to ensure vote software can't be hacked,german election chief urge action ensure vote software cant hacked
+0,dismissed: trump fires scandal plagued fbi director james comey ‚ what does it mean?,dismissed trump fire scandal plagued fbi director james comey mean
+0,hillary‚s new america: uniformed police officers not allowed on dnc floor [video],hillary new america uniformed police officer allowed dnc floor video
+1,swiss voters reject raising women's retirement age,swiss voter reject raising womens retirement age
+0,police union threatens 49er‚s with boycott: take action against bench-warmer kaepernick‚s ‚inappropriate behavior‚ or we may choose to ‚not work at your facilities‚,police union threatens er boycott take action benchwarmer kaepernicks inappropriate behavior may choose work facility
+1,kenya supreme court criticizes election board in verdict on polls,kenya supreme court criticizes election board verdict poll
+1,trump thanks putin for slashing us embassy staff: ‚it cut our payroll‚,trump thanks putin slashing u embassy staff cut payroll
+1,portuguese protest over deadly forest fires government pledges aid,portuguese protest deadly forest fire government pledge aid
+0,judge napolitano on reckless hillary‚s emails: she could be responsible for deaths of cia and fbi agents [video],judge napolitano reckless hillary email could responsible death cia fbi agent video
+0,cia inspector: ‚hillary endangered lives‚ former judge: hillary is a ‚prime candidate for prosecution‚,cia inspector hillary endangered life former judge hillary prime candidate prosecution
+1,barca closed soccer stadium to show support for catalan voters: bartomeu,barca closed soccer stadium show support catalan voter bartomeu
+1,protests called after porto court agrees woman's adultery was factor in attack,protest called porto court agrees woman adultery factor attack
+1,rainbow raids: egypt launches its widest anti-gay crackdown yet,rainbow raid egypt launch widest antigay crackdown yet
+1,turkey calls on citizens to leave northern iraq before flights suspended on friday,turkey call citizen leave northern iraq flight suspended friday
+1,activist dedicates rights award to 'tortured imprisoned' egyptians,activist dedicates right award tortured imprisoned egyptian
+1,ramping up rhetoric turkey's erdogan chastises u.s. over democracy,ramping rhetoric turkey erdogan chastises u democracy
+1,digital tyranny: google and facebook‚s automated censorship program (i hope you can speak chinese),digital tyranny google facebooks automated censorship program hope speak chinese
+1,trump to unveil new responses to iranian 'bad behavior': white house,trump unveil new response iranian bad behavior white house
+1,philippines vows fair probe after vietnamese fishermen killed,philippine vow fair probe vietnamese fisherman killed
+0,tucker carlson tells liberal guest: national endowment for the arts is in effect ‚welfare for rich,tucker carlson tell liberal guest national endowment art effect welfare rich
+0,don‚t believe the media! massive fl trump rally‚fans walk mile to get into rally [video]‚while hillary handlers have to tell her when to smile,dont believe medium massive fl trump rallyfans walk mile get rally videowhile hillary handler tell smile
+1,refugees reaching zambia accuse drc troops of killing civilians: u.n.,refugee reaching zambia accuse drc troop killing civilian un
+1,peace gives colombian coffee an extra shot,peace give colombian coffee extra shot
+1,russia syria intensify bombing of rebel-held idlib witnesses say,russia syria intensify bombing rebelheld idlib witness say
+0,trump rally in austin tx ‚ protesters largely outnumbered by trump supporters,trump rally austin tx protester largely outnumbered trump supporter
+1,austria's far right gives two cheers for german sister party's success,austria far right give two cheer german sister party success
+0,hilarious! tennessee responds to california‚s ‚foolish‚ travel ban: keep your ‚unfounded moral judgment‚ to yourself,hilarious tennessee responds california foolish travel ban keep unfounded moral judgment
+1,bid to 'fix' iran nuclear deal faces uphill climb in u.s. congress,bid fix iran nuclear deal face uphill climb u congress
+0,watch tucker carlson destroy racist flamethrower for questioning ‚hero‚ label for white osu cop [video],watch tucker carlson destroy racist flamethrower questioning hero label white osu cop video
+1,inspection battle threatens egypt's wheat supply,inspection battle threatens egypt wheat supply
+0,things get ugly when canada‚s self-proclaimed ‚feminist‚ prime minister elbows woman from conservative party on house of commons floor,thing get ugly canada selfproclaimed feminist prime minister elbow woman conservative party house common floor
+1,syria's assad meets once dissident footballers in damascus,syria assad meet dissident footballer damascus
+1,mugabe removed as who goodwill envoy after outrage,mugabe removed goodwill envoy outrage
+1,six civilians killed by roadside bomb in afghanistan,six civilian killed roadside bomb afghanistan
+0,ohio state university student says terrorist attack was ‚misunderstanding‚ caused by racism [video],ohio state university student say terrorist attack misunderstanding caused racism video
+1,iraqi shi‚ite militias accused of rights abuses in hawija operation,iraqi shiite militia accused right abuse hawija operation
+1,facebook google twitter asked to testify on russian meddling,facebook google twitter asked testify russian meddling
+0,if hillary is elected and becomes too sick to serve,hillary elected becomes sick serve
+1,kenyan police fire tear gas after women attacked at election meeting,kenyan police fire tear gas woman attacked election meeting
+1,turkish minister says will work to improve ties with germany,turkish minister say work improve tie germany
+1,eu's diplomatic back channel in pyongyang goes cold,eu diplomatic back channel pyongyang go cold
+0,has espn‚s ‚arthur ashe courage award‚ become the gay-transgender award?,espns arthur ashe courage award become gaytransgender award
+0,how #basedstickman became a super-hero to the right after fighting back against violent democrats in berkeley [video],basedstickman became superhero right fighting back violent democrat berkeley video
+1,latest north korea earthquake a sign of instability at nuclear test site-experts,latest north korea earthquake sign instability nuclear test siteexperts
+1,china says it has right to bar people from hong kong after british activist expelled,china say right bar people hong kong british activist expelled
+0,middle school teacher beaten unconscious by parent and student warned: ‚i fear for my safety‚the children have no respect for adults‚,middle school teacher beaten unconscious parent student warned fear safetythe child respect adult
+1,how a homemade tool helped north korea's missile program,homemade tool helped north korea missile program
+0,pop star ariana grande says: ‚i hate americans. i hate america‚ words were taken out of context [video],pop star ariana grande say hate american hate america word taken context video
+0,insane anti-trump protester lights trump supporter‚s hair on fire‚police need help finding this protester [video],insane antitrump protester light trump supporter hair firepolice need help finding protester video
+1,nuclear weapons will not bring security for north korea: tillerson,nuclear weapon bring security north korea tillerson
+1,cameroon illegally deported 100000 nigerian refugees: rights group,cameroon illegally deported nigerian refugee right group
+1,senior quds force commander says trump's threats against iran will damage u.s.: report,senior quds force commander say trump threat iran damage u report
+0,interview: did the ‚alt right‚ die in charlottesville?,interview alt right die charlottesville
+0,[video] german mayor blames victims of mass rape,video german mayor blame victim mass rape
+0,hillary‚s immoral reign as sec. state: u.s. sold $60 million in chemical arms to clinton foundation donors used to gas citizens,hillary immoral reign sec state u sold million chemical arm clinton foundation donor used gas citizen
+1,syrian army battles islamic state in al-mayadin town: report,syrian army battle islamic state almayadin town report
+0,agent angelina: are cia using hollywood‚s jolie as soft power operative?,agent angelina cia using hollywood jolie soft power operative
+0,american scientists harvesting human organs in live pigs,american scientist harvesting human organ live pig
+0,breaking: secret recordings about clinton foundation caused hostility,breaking secret recording clinton foundation caused hostility
+1,"syria demands pullout of turkish troops from country says it is a ""flagrant aggression""",syria demand pullout turkish troop country say flagrant aggression
+0,party corruption: clinton campaign directly tied to disgraced dnc consultant,party corruption clinton campaign directly tied disgraced dnc consultant
+1,fbi redux: what‚s behind new probe into hillary clinton emails?,fbi redux whats behind new probe hillary clinton email
+0,cnn asks if brutal child rape case will affect hillary‚s political ambitions: victim says hillary clinton ‚lied like a dog‚ in my case [video],cnn asks brutal child rape case affect hillary political ambition victim say hillary clinton lied like dog case video
+1,more than a thousand turn philippine funeral to protest against war on drugs,thousand turn philippine funeral protest war drug
+1,five suspected al qaeda militants killed in yemen by drone strike,five suspected al qaeda militant killed yemen drone strike
+1,togolese to vote on presidential term limits after parliament impasse,togolese vote presidential term limit parliament impasse
+1,iraqi government asks foreign countries to stop oil trade with kurdistan,iraqi government asks foreign country stop oil trade kurdistan
+1,police say keeping an open mind as to whether london museum incident is terrorism-related,police say keeping open mind whether london museum incident terrorismrelated
+1,brazilian prosecutors want lula absolved in corruption case,brazilian prosecutor want lula absolved corruption case
+1,u.s. undersecretary shannon russian deputy foreign minister to meet,u undersecretary shannon russian deputy foreign minister meet
+0,taxpayer funded left-wing church organization will break law to hide illegal aliens (2016 democrat voters) from authorities,taxpayer funded leftwing church organization break law hide illegal alien democrat voter authority
+0,lol! whoopi goldberg caught telling huge lie during interview with newt gingrich,lol whoopi goldberg caught telling huge lie interview newt gingrich
+0,shocking video shows how easily islamic terrorists are able to enter the u.s.a. from canada,shocking video show easily islamic terrorist able enter usa canada
+1,iran's guards flex muscle in middle east despite trump warning,iran guard flex muscle middle east despite trump warning
+1,uk's may says brexit talks must focus on future relationship,uk may say brexit talk must focus future relationship
+1,cuba calls trump's u.n. address 'unacceptable and meddling',cuba call trump un address unacceptable meddling
+1,lawmakers fight in uganda parliament for second day over term limit laws,lawmaker fight uganda parliament second day term limit law
+0,spectre of benghazi: doj drops charges against alleged arms dealer of libyan weapons,spectre benghazi doj drop charge alleged arm dealer libyan weapon
+0,why democrats can thank harry reid for replacing justice scalia with neil gorsuch [video],democrat thank harry reid replacing justice scalia neil gorsuch video
+1,new york known wolf: halloween truck attacker known to dhs prior to ‚act of terror‚,new york known wolf halloween truck attacker known dhs prior act terror
+0,the video liberals don‚t want you to see: lil wayne tells how a white cop saved his life‚‚i don‚t know what racism is‚,video liberal dont want see lil wayne tell white cop saved lifei dont know racism
+0,flashback video shows leftist media members praising use of ‚nuclear option‚ to confirm (liberal) supreme court justices,flashback video show leftist medium member praising use nuclear option confirm liberal supreme court justice
+1,yemen's ex-president saleh stable after russian medics operate,yemen expresident saleh stable russian medic operate
+1,u.s. gets warm words from china's xi ahead of trump visit,u get warm word china xi ahead trump visit
+1,u.s.-backed forces in syria's raqqa say they take old city,usbacked force syria raqqa say take old city
+1,new zealand's ruling national ahead in early counting- electoral commission,new zealand ruling national ahead early counting electoral commission
+1,u.n. chief says statesmanship needed on north korea takes digs at trump,un chief say statesmanship needed north korea take dig trump
+1,britain must stay in eu's single market after brexit: labour lawmakers,britain must stay eu single market brexit labour lawmaker
+0,gop rep dave brat turned tables on #fakenews cnn‚accused them of collusion with liberal media‚cnn‚s actions are ‚unethical but not illegal‚,gop rep dave brat turned table fakenews cnnaccused collusion liberal mediacnns action unethical illegal
+1,vatican advisor: says pope will call on world at un to join crusade for a new world order‚would like us to pay $845 billion global tax to combat ‚climate change‚,vatican advisor say pope call world un join crusade new world orderwould like u pay billion global tax combat climate change
+1,promoters of pop concerts other events may ditch malaysia as hard-line islam gets a grip,promoter pop concert event may ditch malaysia hardline islam get grip
+0,wow! what happened when somebody asked beyonce‚s racist sister to sit down at a concert?,wow happened somebody asked beyonces racist sister sit concert
+1,factbox: how will spain's central government take control of catalonia?,factbox spain central government take control catalonia
+0,prominent russian journalist leaves country after threats,prominent russian journalist leaf country threat
+1,iraqi kurdistan parliament delays presidential elections by eight months,iraqi kurdistan parliament delay presidential election eight month
+0,bad news for obama,bad news obama
+1,north korea: will world war iii kick off this week?,north korea world war iii kick week
+1,lol! actress charlie theron tells south africans aids is ‚not transmitted by sex‚‚it‚s transmitted by sexism,lol actress charlie theron tell south african aid transmitted sexits transmitted sexism
+1,glossed over: key questions emerge after death of supreme court justice antonin scalia,glossed key question emerge death supreme court justice antonin scalia
+1,gay activists march through serb capital behind police lines,gay activist march serb capital behind police line
+1,democratic senate leader calls trump's 'rocket man' remark at u.n. 'risky',democratic senate leader call trump rocket man remark un risky
+0,the moment ben affleck realized that ‚batman v superman‚ was a $400 million flop,moment ben affleck realized batman v superman million flop
+0,flashback: florida couple nearly ‚forecloses‚ on bank of america,flashback florida couple nearly forecloses bank america
+0,lesbian host ellen degeneres asks singer christina aguilera about picture of hillary staring at her ‚girls‚,lesbian host ellen degeneres asks singer christina aguilera picture hillary staring girl
+1,zimbabwe pastor on trial for subversion faces 20-year jail term,zimbabwe pastor trial subversion face year jail term
+1,brazil's congress sets up fund to cover lack of campaign finance,brazil congress set fund cover lack campaign finance
+0,frightening power of the press: you won‚t believe what 41% of americans are calling orlando terror attack,frightening power press wont believe american calling orlando terror attack
+1,iran strikes deal with syria to repair power grid,iran strike deal syria repair power grid
+0,yikes! new bill clinton rape details emerge: ‚her mouth was all swollen up‚it was cut‚her pantyhose were all ripped‚,yikes new bill clinton rape detail emerge mouth swollen upit cuther pantyhose ripped
+1,new zealand kingmaker party to hold key board meeting on monday,new zealand kingmaker party hold key board meeting monday
+1,former ivory coast president gbagbo to remain in detention for trial: icc,former ivory coast president gbagbo remain detention trial icc
+1,u.s. hopes for 'good deliverables' during trump's china visit,u hope good deliverable trump china visit
+1,guatemalan prosecutors to probe parties over campaign financing,guatemalan prosecutor probe party campaign financing
+0,maxine doubles down on crazy: msnbc host has hard time keeping straight face when maxine reveals who she believes fed trump ‚crooked hillary‚ and ‚lock her up‚ lines [video],maxine double crazy msnbc host hard time keeping straight face maxine reveals belief fed trump crooked hillary lock line video
+0,u.s. department of education: teachers should incorporate islam in more subjects,u department education teacher incorporate islam subject
+1,after deadly protests indian states in lockdown for 'godman's' rape sentencing,deadly protest indian state lockdown godmans rape sentencing
+0,flashback: hillary and raunchy actress discuss desire to see rock star‚s penis: ‚i‚ll look for that‚ [video],flashback hillary raunchy actress discus desire see rock star penis ill look video
+1,ican elated at nobel peace prize pays tribute to atom bomb survivors,ican elated nobel peace prize pay tribute atom bomb survivor
+1,brexit bill row to last the length of brexit talks: uk minister,brexit bill row last length brexit talk uk minister
+0,truck driver attaches hysterical deterrents to his truck designed to keep illegal muslim refugees from hitching rides [video],truck driver attache hysterical deterrent truck designed keep illegal muslim refugee hitching ride video
+1,hard irish border post-brexit would be risk to peace: coveney,hard irish border postbrexit would risk peace coveney
+0,video: us elections: more voter fraud emerges,video u election voter fraud emerges
+0,cnn‚s jake tapper denies mass terror attacks have happened in america‚senator credits ‚secret sauce‚ [video],cnns jake tapper denies mass terror attack happened americasenator credit secret sauce video
+1,earthquake hits off papua new guinea,earthquake hit papua new guinea
+1,south korea's moon japan's abe agree to raise pressure to max on north korea,south korea moon japan abe agree raise pressure max north korea
+0,nfl player posts picture of cop‚s throat being slit on social media,nfl player post picture cop throat slit social medium
+1,cyprus says it agrees with spain to postpone southern eu summit,cyprus say agrees spain postpone southern eu summit
+0,dear anti-trump protesters: ‚your behavior is why trump won in the first place‚ [video],dear antitrump protester behavior trump first place video
+1,voice of triumph or doom: north korean presenter back in limelight for nuclear test,voice triumph doom north korean presenter back limelight nuclear test
+1,british pm may vows to stay as party plotters attempt to topple her,british pm may vow stay party plotter attempt topple
+0,sociopathic liar: hillary hid serious health issues from public in 1998 and again in 2003,sociopathic liar hillary hid serious health issue public
+0,ron paul liberty report: us-saudi arms trafficking to terrorists in syria,ron paul liberty report ussaudi arm trafficking terrorist syria
+1,germany's gabriel calls for talks between catalonia spain,germany gabriel call talk catalonia spain
+1,hillary clinton says u.s. threats of war with north korea 'dangerous short-sighted',hillary clinton say u threat war north korea dangerous shortsighted
+1,ukraine president says against holding early elections,ukraine president say holding early election
+1,kenyan election board chairman says hard to guarantee free election,kenyan election board chairman say hard guarantee free election
+0,don‚t take your kids to new orleans to learn about american history‚black lives matter just erased it,dont take kid new orleans learn american historyblack life matter erased
+1,one dead at protest against extending ugandan president's rule,one dead protest extending ugandan president rule
+0,wow! hillary caught on video in 2000 saying she doesn‚t like emails because you can‚t hide them from investigators,wow hillary caught video saying doesnt like email cant hide investigator
+0,wow! trump helps hillary see her first big crowd‚you won‚t want to miss this! [video],wow trump help hillary see first big crowdyou wont want miss video
+1,slaughtered hindus a testament to brutality of myanmar's conflict,slaughtered hindu testament brutality myanmar conflict
+1,eu congratulates austria's kurz but uneasy about possible ruling partner,eu congratulates austria kurz uneasy possible ruling partner
+0,hillary clinton is ‚most corrupt,hillary clinton corrupt
+1,russian german leaders condemn north korea's ignoring of u.n. resolutions,russian german leader condemn north korea ignoring un resolution
+1,henningsen on u.s. vs north korea: ‚wouldn‚t you want a nuclear deterrent?‚,henningsen u v north korea wouldnt want nuclear deterrent
+1,notion u.s. has declared war on north korea is 'absurd' white house says,notion u declared war north korea absurd white house say
+1,influential australian senator nick xenophon resigns,influential australian senator nick xenophon resigns
+0,liberals believe: ‚obama too brilliant for republicans‚‚this is why the dems lost the election,liberal believe obama brilliant republicansthis dems lost election
+0,wow! former liberal and black panther exposes phony ‚black lies matter‚ [video],wow former liberal black panther expose phony black lie matter video
+0,how obama is forcing poorest americans to fend for themselves against dangerous criminals crossing our borders,obama forcing poorest american fend dangerous criminal crossing border
+1,u.n. condemns arrests of congo opposition members,un condemns arrest congo opposition member
+1,north korea: trump‚s recklessness could trigger all-out conflict on korean peninsula,north korea trump recklessness could trigger allout conflict korean peninsula
+0,your blood will boil when you see why college students were forced to stand guard over thousands of u.s. flags meant to honor 9-11 victims on their liberal campus,blood boil see college student forced stand guard thousand u flag meant honor victim liberal campus
+0,maryland councilwoman who struggles to formulate coherent sentence calls trump ‚retarded‚‚compares him to kids at disability center [video],maryland councilwoman struggle formulate coherent sentence call trump retardedcompares kid disability center video
+0,wow! hungary and israel just labeled hungarian born-jew george soros an enemy of the state‚will the u.s. follow?,wow hungary israel labeled hungarian bornjew george soros enemy statewill u follow
+1,hundreds of u.s. marines leave australia after troop rotation,hundred u marine leave australia troop rotation
+1,kenya court: election board refused to give access to servers,kenya court election board refused give access server
+0,hillary lies: remember when hillary disclosed she was named after a famous person?,hillary lie remember hillary disclosed named famous person
+0,boiler room ‚ ep #54 ‚ america‚ the end is nigh,boiler room ep america end nigh
+0,breaking hidden video exposes racist dems comparing black republicans to jews who helped nazis [video],breaking hidden video expose racist dems comparing black republican jew helped nazi video
+1,police break into voting station where catalan leader due to vote,police break voting station catalan leader due vote
+1,venezuela's maduro upbeat on talks opposition fear 'show',venezuela maduro upbeat talk opposition fear show
+0,in 2017,
+1,danger of war germany warns after trump's move on iran nuclear deal,danger war germany warns trump move iran nuclear deal
+1,catalan leader accuses spain of 'unjustified violence' in referendum crackdown,catalan leader accuses spain unjustified violence referendum crackdown
+1,philippine president sidelines police in war on drugs again,philippine president sideline police war drug
+0,fbi arrest cliven bundy at portland airport ‚ charged with federal conspiracy,fbi arrest cliven bundy portland airport charged federal conspiracy
+0,reebok joins the left‚s war against president trump‚berates him on twitter for complimenting french president macron‚s wife,reebok join left war president trumpberates twitter complimenting french president macron wife
+1,u.n. starting to gather testimony on myanmar violations: investigator,un starting gather testimony myanmar violation investigator
+1,persecution of all muslims in myanmar on the rise rights group says,persecution muslim myanmar rise right group say
+0,wow! ‚‚haley‚s‚ comet‚ just collided with hypocritical,wow haley comet collided hypocritical
+0,dear rnc: an everyday american writes a letter to explain the trump phenomenon,dear rnc everyday american writes letter explain trump phenomenon
+1,japan pm says north korea has 'no bright future' if it continues current path,japan pm say north korea bright future continues current path
+0,sheriffs say they won‚t allow officers to help feds enforce immigration laws‚judge jeanine obliterates them: ‚you‚re too damn dumb to be in law enforcement‚ [video],sheriff say wont allow officer help fed enforce immigration lawsjudge jeanine obliterates youre damn dumb law enforcement video
+0,sweden houses 600+ muslim refugees in luxury ski resort‚refugees complain: ‚it was terrible,sweden house muslim refugee luxury ski resortrefugees complain terrible
+0,bitter hillary just claimed she ‚beat‚ trump: nigel evans has a message for her! this is a must-watch video!,bitter hillary claimed beat trump nigel evans message mustwatch video
+0,egyptian court hands fresh life sentence to muslim brotherhood leader,egyptian court hand fresh life sentence muslim brotherhood leader
+0,the libertarian parody of star wars,libertarian parody star war
+0,cnn tries to push fake story about size of new england patriots‚ crowd at white house‚patriots call them out for lying!,cnn try push fake story size new england patriot crowd white housepatriots call lying
+1,spain's prosecutor warns over catalonia referendum as leaflets seized,spain prosecutor warns catalonia referendum leaflet seized
+0,lol! hillary‚s new anti-trump ad backfires..ends up being amazing pro-trump ad [video],lol hillary new antitrump ad backfiresends amazing protrump ad video
+0,valerie jarrett claims obama‚s presidency was ‚scandal-free‚‚here‚s a list of obama‚s top scandals that prove she‚s lying [video],valerie jarrett claim obamas presidency scandalfreeheres list obamas top scandal prove shes lying video
+0,list of 22 times obama called phony climate change more serious than terrorism,list time obama called phony climate change serious terrorism
+1,exclusive: iraq holding 1400 foreign wives children of suspected islamic state fighters,exclusive iraq holding foreign wife child suspected islamic state fighter
+1,justice? yahoo settles e-mail privacy class-action: $4m for lawyers,justice yahoo settle email privacy classaction lawyer
+1,catalan business lobby says worried by any declaration of independence,catalan business lobby say worried declaration independence
+1,mattis says u.s. effort on north korea aims for diplomatic solution,mattis say u effort north korea aim diplomatic solution
+0,socialist bernie sanders can‚t explain single payer or why blue states rejected it [video],socialist bernie sander cant explain single payer blue state rejected video
+0,the entire mainstream warmongering media is fake,entire mainstream warmongering medium fake
+1,us advising soldiers to be ‚less masculine‚ as military tries to curb flood of sexual harassment cases,u advising soldier less masculine military try curb flood sexual harassment case
+1,merkel's social democrat rival bullish ahead of german tv clash,merkels social democrat rival bullish ahead german tv clash
+1,grasping at straws (the illusion of choice),grasping straw illusion choice
+0,how reagan dealt with radical protesters at berkeley university [video],reagan dealt radical protester berkeley university video
+0,u.s.-backed forces not planning on entering deir al-zor city,usbacked force planning entering deir alzor city
+1,spacex: explosion rocks launchpad at firm‚s cape canaveral facility in florida,spacex explosion rock launchpad firm cape canaveral facility florida
+0,list of u.s. states with most illegal aliens,list u state illegal alien
+0,feel good story of the day: globalist billionaire george soros melt down‚calls trump ‚con artist‚‚says he threatens ‚open society model‚,feel good story day globalist billionaire george soros melt downcalls trump con artistsays threatens open society model
+1,indian court sentences two mumbai 1993 blasts convicts to death,indian court sentence two mumbai blast convict death
+1,london fire inquiry starts amid anger despair of survivors,london fire inquiry start amid anger despair survivor
+0,narcissist obama stops mid-speech to admonish little boy for taking ‚selfie‚ while he talks [video],narcissist obama stop midspeech admonish little boy taking selfie talk video
+0,angry punk admits to slashing tires,angry punk admits slashing tire
+1,leadership of german far right splits hours after electoral success,leadership german far right split hour electoral success
+1,guinea rioters burn down police buildings in mining town 17 wounded,guinea rioter burn police building mining town wounded
+0,obama‚s war on cops takes toll on black communities: young girl cries over #blacklivesmatter violence in her milwaukee neighborhood [video],obamas war cop take toll black community young girl cry blacklivesmatter violence milwaukee neighborhood video
+1,in war-torn darfur new u.s. aid chief stresses need for humanitarian access,wartorn darfur new u aid chief stress need humanitarian access
+0,halloween horror: mom dresses her son up as hillary clinton: ‚our 8-year-old son is with you‚,halloween horror mom dress son hillary clinton yearold son
+0,hillary flip-flop highlight reel,hillary flipflop highlight reel
+1,sinn fein eyes northern ireland power-sharing deal by end october,sinn fein eye northern ireland powersharing deal end october
+1,u.s. seeks urgent action on myanmar u.n. eyes $200 million for refugees,u seek urgent action myanmar un eye million refugee
+1,china confirms will amend party constitution likely to include xi's theories,china confirms amend party constitution likely include xi theory
+0,unreal video: white guy kidnapped and assaulted by thugs‚forced to say: ‚f*ck trump‚ and ‚f*ck white people‚ [video},unreal video white guy kidnapped assaulted thugsforced say fck trump fck white people video
+0,obama‚s defense deputy accidentally admits obama white house spied on candidate trump during msnbc interview‚but wait‚there‚s even more to this story! [video],obamas defense deputy accidentally admits obama white house spied candidate trump msnbc interviewbut waittheres even story video
+1,zimbabwe's mugabe says may make cabinet changes next week,zimbabwe mugabe say may make cabinet change next week
+0,austrian schools are being radicalized by young muslim migrants: ‚if she doesn‚t obey [wear hijab],austrian school radicalized young muslim migrant doesnt obey wear hijab
+0,dc women‚s march aftermath: streets littered with trash,dc womens march aftermath street littered trash
+1,theft at burned london tower adds to police's grueling work,theft burned london tower add police grueling work
+0,here‚s this list of republicans running for re-election in 2016 who won‚t support trump,here list republican running reelection wont support trump
+1,grenades thrown at homes of ugandan mps opposed to extending president's rule,grenade thrown home ugandan mp opposed extending president rule
+1,britain summons chinese ambassador after uk activist denied hong kong entry,britain summons chinese ambassador uk activist denied hong kong entry
+0,keith scott‚s brother tells charlotte reporter: ‚all white people are f*#ckin‚ devils‚all cops are f*#ckin devils‚,keith scott brother tell charlotte reporter white people fckin devilsall cop fckin devil
+1,thai activists ordered to pay $16 million for occupying airports,thai activist ordered pay million occupying airport
+0,un physically removes independent media from nyc hq for exposing institutional corruption,un physically remove independent medium nyc hq exposing institutional corruption
+1,austria checking indications nine foreigners abducted in libya in 2015 are dead,austria checking indication nine foreigner abducted libya dead
+1,14 people shot dead at mexican drug rehab center,people shot dead mexican drug rehab center
+0,merkel tells voters: 'don't experiment' with the left,merkel tell voter dont experiment left
+1,uk police release two of group arrested over suspected far-right terrorism,uk police release two group arrested suspected farright terrorism
+0,breaking: finally! new wikileaks email‚‚we are going to have to dump all those emails‚,breaking finally new wikileaks emailwe going dump email
+0,hawk or not? is trump expanding the wars?,hawk trump expanding war
+1,mexicans,mexican
+1,islamic state claims responsibility for london blast: amaq news agency,islamic state claim responsibility london blast amaq news agency
+1,vietnam says violations found at central bank in war on graft,vietnam say violation found central bank war graft
+0,woman confronts guy paying with food stamps: ‚i‚m paying for that‚ [video],woman confronts guy paying food stamp im paying video
+1,buchanan on trump: after the coup,buchanan trump coup
+1,brazil's temer signs tax renegotiation program into law,brazil temer sign tax renegotiation program law
+0,judge napolitano: james comey‚s pre-testimony reveals trump did nothing illegal [video],judge napolitano james comeys pretestimony reveals trump nothing illegal video
+1,eu court adviser says arbitration clause in investment treaty is legal,eu court adviser say arbitration clause investment treaty legal
+0,steve bannon just made a big announcement about what he‚ll be doing after leaving the white house‚and it‚s very bad news for the left ¬†,steve bannon made big announcement hell leaving white houseand bad news left
+1,eyewitness says feds ambushed bundys,eyewitness say fed ambushed bundys
+0,busted! nancy pelosi claims no meeting with russian ambassador‚photo from 2010 proves otherwise! [video],busted nancy pelosi claim meeting russian ambassadorphoto prof otherwise video
+1,french businessman pledges to pay austrian face veil fines,french businessman pledge pay austrian face veil fine
+0,beautiful melania wears lbd to host reception for senators‚guess who was there wearing a smirk on his face? [video],beautiful melania wear lbd host reception senatorsguess wearing smirk face video
+0,tucker carlson: how the left ruined my alma mater [video],tucker carlson left ruined alma mater video
+1,turkey bank regulator dismisses 'rumors' after iran sanctions report,turkey bank regulator dismisses rumor iran sanction report
+0,budweiser unveils super bowl ad that distorts truth about trump‚s temporary refugee ban [video],budweiser unveils super bowl ad distorts truth trump temporary refugee ban video
+0,president trump turns c-pac into t-pac: ‚era of empty talk is over‚i‚m not representing the globe; i‚m representing your country‚ [video],president trump turn cpac tpac era empty talk overim representing globe im representing country video
+1,indigenous protesters seize oil wells in peruvian amazon: chief,indigenous protester seize oil well peruvian amazon chief
+1,brazil's temer at u.n. decries rise in nationalism protectionism,brazil temer un decries rise nationalism protectionism
+1,italy says to expel north korea envoy over nuclear missile tests,italy say expel north korea envoy nuclear missile test
+1,factbox: some 1.5 million still without power in u.s. southeast after irma,factbox million still without power u southeast irma
+1,we want it in writing: scotland and wales seek clarity on post-brexit powers,want writing scotland wale seek clarity postbrexit power
+1,roadside bombs wound 20 kill soldier in thailand's troubled south,roadside bomb wound kill soldier thailand troubled south
+0,skeptics unconvinced after release of feds‚ latest report on ‚russian hack of dnc‚,skeptic unconvinced release fed latest report russian hack dnc
+0,not hillary‚s turn: lib publications are saying hillary will lose to old white socialist,hillary turn lib publication saying hillary lose old white socialist
+1,'fake news!': ireland rebukes trump over corporate tax claim,fake news ireland rebuke trump corporate tax claim
+1,turkey raises oil threat after iraqi kurds back independence,turkey raise oil threat iraqi kurd back independence
+0,breaking: obama poised to exact revenge on putin with unprecedented cyber attack for allegedly exposing hillary emails‚while campaigning for hillary,breaking obama poised exact revenge putin unprecedented cyber attack allegedly exposing hillary emailswhile campaigning hillary
+1,two turkish soldiers killed in northern iraq: military statement,two turkish soldier killed northern iraq military statement
+1,eu calls for legal commission to vet new polish judicial reform laws,eu call legal commission vet new polish judicial reform law
+1,iraqi parliament 'has no right' to remove kirkuk's governor: senior kurdish official,iraqi parliament right remove kirkuk governor senior kurdish official
+0,obama‚s gas-guzzling motorcade to paris climate talks had a huge price tag for the american taxpayer,obamas gasguzzling motorcade paris climate talk huge price tag american taxpayer
+0,why would obama allow green beret to be discharged for saving life of young boy kept as sex slave by muslim afghan police chief?,would obama allow green beret discharged saving life young boy kept sex slave muslim afghan police chief
+1,brazil's temer faces new graft charges over jbs testimony,brazil temer face new graft charge jbs testimony
+1,nigeria asks britain for gear to fight islamists: johnson,nigeria asks britain gear fight islamist johnson
+0,death of a nation by executive order: who voted to bring 33 million immigrants to america?,death nation executive order voted bring million immigrant america
+0,hawk or not? is trump expanding the wars?,hawk trump expanding war
+1,pakistani taliban suicide bomber rams police truck kills seven,pakistani taliban suicide bomber ram police truck kill seven
+0,trump tweet storm on obamacare sets up battle with democrats on ‚lousy healthcare‚ [video],trump tweet storm obamacare set battle democrat lousy healthcare video
+1,malaysia arrests eight over suspected terror links,malaysia arrest eight suspected terror link
+0,the cia doesn‚t need to spy on free thinkers,cia doesnt need spy free thinker
+1,iraq's abadi accepts macron invitation to come to discuss kurds: elysee source,iraq abadi accepts macron invitation come discus kurd elysee source
+1,macri's coalition poised to win key argentina midterm vote: opinion polls,macris coalition poised win key argentina midterm vote opinion poll
+1,factbox: some trump assertions on iran questioned by experts,factbox trump assertion iran questioned expert
+1,art of war: what‚s behind russia‚s ‚ides of march‚ military drawdown in syria?,art war whats behind russia ides march military drawdown syria
+0,flashback: key democrats call for violence in the streets‚‚march,flashback key democrat call violence streetsmarch
+1,venezuela opposition won't attend scheduled talks with government,venezuela opposition wont attend scheduled talk government
+0,new emails: clinton foundation vip donors buy access ‚ while hillary was secretary of state,new email clinton foundation vip donor buy access hillary secretary state
+1,europeans africans agree renewed push to tackle migrant crisis,european african agree renewed push tackle migrant crisis
+1,police give all clear after ba plane searched in paris,police give clear ba plane searched paris
+1,u.s. travel restrictions jeopardize rare exchanges with north koreans,u travel restriction jeopardize rare exchange north korean
+0,russian roulette for law enforcement: border patrol agents given awards for putting lives of armed illegal aliens before their own,russian roulette law enforcement border patrol agent given award putting life armed illegal alien
+0,five things you need to know about crowdstrike,five thing need know crowdstrike
+1,mattis says no tolerance for terrorist sanctuaries will work with india,mattis say tolerance terrorist sanctuary work india
+0,busted: the oh so objective abc news chief anchor,busted oh objective abc news chief anchor
+0,voting machines stolen in controversial ga election where dems hope to embarrass trump with 30-yr old jon ossoff win,voting machine stolen controversial ga election dems hope embarrass trump yr old jon ossoff win
+0,hyatt hotels discovers card data breach at 41 properties,hyatt hotel discovers card data breach property
+0,anti-hillary posters pop up all over hollywood‚great timing!,antihillary poster pop hollywoodgreat timing
+1,gruesome uganda murders put police role in the public dock,gruesome uganda murder put police role public dock
+1,new zealand's 'kingmaker' to start talks with both major parties this week,new zealand kingmaker start talk major party week
+0,breaking‚internal memo from obama‚s corrupt epa: flint not worth ‚going out on a limb for‚,breakinginternal memo obamas corrupt epa flint worth going limb
+0,kid rock unloads on colin kaepernick at packed fenway park concert‚crowd goes wild! [video],kid rock unloads colin kaepernick packed fenway park concertcrowd go wild video
+1,u.n. agrees international experts to probe yemen war crimes,un agrees international expert probe yemen war crime
+1,iraqi pm calls on kurds to cancel independence referendum result,iraqi pm call kurd cancel independence referendum result
+0,what is the deep state?,deep state
+1,china's xi tells britain's may north korea issue should be peacefully resolved,china xi tell britain may north korea issue peacefully resolved
+1,foreigner killed in car explosion in central kiev police say,foreigner killed car explosion central kiev police say
+0,obama‚s doj to blame iran for cyber-attack on ny dam in 2013‚wait‚what about that deal with obama‚s ally in 2015?,obamas doj blame iran cyberattack ny dam waitwhat deal obamas ally
+1,key points in juncker's 2017 annual eu address,key point junckers annual eu address
+1,match north korea overture with iran offer germany tells u.s.,match north korea overture iran offer germany tell u
+0,boiler room ep #117 ‚ straight outta tavistock & the woke af zombie apocalypse,boiler room ep straight outta tavistock woke af zombie apocalypse
+1,uk's farage says pm may might not last until christmas,uk farage say pm may might last christmas
+0,death toll from malaysia construction site landslide at 11,death toll malaysia construction site landslide
+1,row over pakistani paramilitary unit fuels political confusion,row pakistani paramilitary unit fuel political confusion
+1,swiss police to expel two tunisians linked to marseille attacker,swiss police expel two tunisian linked marseille attacker
+0,shocking mob scene caught on video: men with mexican flags attack female trump supporter,shocking mob scene caught video men mexican flag attack female trump supporter
+0,wow! macon,wow macon
+0,ellen just proved she‚s a huge hypocrite and knows nothing about trump [video],ellen proved shes huge hypocrite know nothing trump video
+1,trump to visit asia nov. 3-14 focus on north korea alliances,trump visit asia nov focus north korea alliance
+1,china says it will handle north korea trade issues for benefit to peace stability,china say handle north korea trade issue benefit peace stability
+0,rappoport: ‚cnn already deflecting from the susan rice scandal‚,rappoport cnn already deflecting susan rice scandal
+0,boiler room ep #81 ‚ halloween fireside book of suspense vol. 1,boiler room ep halloween fireside book suspense vol
+1,after decades of war colombia's farc rebels debut political party,decade war colombia farc rebel debut political party
+0,restaurant owner makes awesome sign mocking transgender bathroom law,restaurant owner make awesome sign mocking transgender bathroom law
+1,does myanmar violence amount to human rights crimes?,myanmar violence amount human right crime
+0,explained: the west‚s ngo ‚human rights‚ scam,explained west ngo human right scam
+0,fox news mocks msnbc‚s chris matthews,fox news mock msnbcs chris matthew
+0,it takes a village of thugs: nashville cop sees black man assaulting woman in projects‚cop tries to arrest him‚crowd attacks cop‚crowd cheers,take village thug nashville cop see black man assaulting woman projectscop try arrest himcrowd attack copcrowd cheer
+0,trump supporter and rocker ted nugent unloads on leftist hippie david crosby: a ‚bloated carcass‚ who ‚competes with michael moore to see who can go the longest without hygiene‚,trump supporter rocker ted nugent unloads leftist hippie david crosby bloated carcass competes michael moore see go longest without hygiene
+0,whoa! democratic strategist gives crooked hillary the ultimate smack down,whoa democratic strategist give crooked hillary ultimate smack
+0,the guy who punched ‚moldylocks‚ speaks out about violent antifa female with a bottle [video],guy punched moldylocks speaks violent antifa female bottle video
+0,whoa! chris matthews defies liberal media script‚says fbi director didn‚t exonerate hillary: ‚there is a difference between acquittal and innocence‚,whoa chris matthew defies liberal medium scriptsays fbi director didnt exonerate hillary difference acquittal innocence
+1,polish pm: want to ensure rights of poles in uk in brexit talks,polish pm want ensure right pole uk brexit talk
+0,breaking news: reince priebus makes early return home from trump‚s first foreign trip,breaking news reince priebus make early return home trump first foreign trip
+1,sunday screening: counter intelligence ‚ ‚the strategy of tension‚,sunday screening counter intelligence strategy tension
+1,u.s. nuclear commander says assuming north korea tested hydrogen bomb,u nuclear commander say assuming north korea tested hydrogen bomb
+1,as china's leaders gather market reform hopes fade,china leader gather market reform hope fade
+1,thai immigration police chief says no information yingluck has fled country,thai immigration police chief say information yingluck fled country
+1,china's xi lays out vision for 'new era' led by 'still stronger' communist party,china xi lay vision new era led still stronger communist party
+1,rouhani says iran will stay in nuclear deal only if it serves interests: tv,rouhani say iran stay nuclear deal serf interest tv
+1,britain 'unconditionally committed' to eu's security says pm may,britain unconditionally committed eu security say pm may
+1,eastern congo rebels aim to march on kinshasa: spokesman,eastern congo rebel aim march kinshasa spokesman
+1,xi says china has prevented taiwan independence over past five years,xi say china prevented taiwan independence past five year
+1,swiss ready to provide platform for dialogue in catalan row: swiss tv,swiss ready provide platform dialogue catalan row swiss tv
+1,syria: washington‚s boots and missile systems on the ground to defend isis and associated proxies,syria washington boot missile system ground defend isi associated proxy
+0,check out tiny crowd at hillary rally in must win state of ohio,check tiny crowd hillary rally must win state ohio
+1,opposition leader's deputy flees cambodia fearing for safety,opposition leader deputy flees cambodia fearing safety
+1,trump: raqqa fall 'critical breakthrough' end of islamic state in sight,trump raqqa fall critical breakthrough end islamic state sight
+1,clinton and associates‚ education ponzi scheme,clinton associate education ponzi scheme
+1,turkey's foreign minister says russian bombing in syria's idlib killing civilians,turkey foreign minister say russian bombing syria idlib killing civilian
+0,it begins: wisconsin company first in us to implant microchips in employees,begin wisconsin company first u implant microchip employee
+0,give ‚em hell jesse: shouldn‚t you democrats start focusing on winning instead of whining? [video],give em hell jesse shouldnt democrat start focusing winning instead whining video
+0,episode #126 ‚ sunday wire: ‚d√©j√† vu 1968!‚ with guests matthew richer and basil valentine,episode sunday wire dj vu guest matthew richer basil valentine
+0,boiler room ep #118,boiler room ep
+1,violent street protests break out in haiti over tax hikes,violent street protest break haiti tax hike
+0,why did obama approve $418 million sale of u.s. weapons to kenya on his last day in office‚and why was the contract awarded to a firm who never produced one of these planes?,obama approve million sale u weapon kenya last day officeand contract awarded firm never produced one plane
+1,uk pm may to listen to concerns on eu bill but is vital legislation: spokesman,uk pm may listen concern eu bill vital legislation spokesman
+0,nightmare in small minneapolis town‚somali immigrant in us for less than 3 months charged with raping woman on bus,nightmare small minneapolis townsomali immigrant u less month charged raping woman bus
+1,catalan independence vote divides region's mayors,catalan independence vote divide region mayor
+0,trump obliterates ‚phony vietnam con-artist‚ dem senator,trump obliterates phony vietnam conartist dem senator
+1,merkel suggests iran-style nuclear talks to end north korea crisis,merkel suggests iranstyle nuclear talk end north korea crisis
+1,seeking to deport rohingya india tells court has evidence of militant links,seeking deport rohingya india tell court evidence militant link
+0,proof that obama interfered twice in foreign elections,proof obama interfered twice foreign election
+0,the ‚new cold war‚ ‚ a rehash of old rivalries,new cold war rehash old rivalry
+1,nuclear showdown? navy seal team that killed osama bin laden to take part in military drills against n. korea,nuclear showdown navy seal team killed osama bin laden take part military drill n korea
+1,factbox: key issues in the nafta renegotiations,factbox key issue nafta renegotiations
+0,game changer? trump recruits election ‚observers‚ to prevent ‚election rigging‚ by crooked hillary,game changer trump recruit election observer prevent election rigging crooked hillary
+0,racist oprah makes same mistake‚twice,racist oprah make mistaketwice
+1,israel shoots down iranian-made drone over syrian frontier: military,israel shoot iranianmade drone syrian frontier military
+0,us-uk dirty war: ‚latin american-style‚ death squads in iraq revealed through chilcot,usuk dirty war latin americanstyle death squad iraq revealed chilcot
+1,fearing trump torpedo europe scrambles to save iran deal,fearing trump torpedo europe scramble save iran deal
+1,trump: military option for north korea not preferred but would be 'devastating',trump military option north korea preferred would devastating
+1,south korea braces for possible new missile test to mark north's founding day,south korea brace possible new missile test mark north founding day
+0,mcpain: john mccain furious that iran treated us sailors well,mcpain john mccain furious iran treated u sailor well
+0,detroit cop under fire for facebook post: ‚the only racists here are the piece of (expletive) black lives matter terrorists and their supporters‚ [video],detroit cop fire facebook post racist piece expletive black life matter terrorist supporter video
+0,gop house leadership place political careers before national security: why they are reportedly caving (again) to democrats,gop house leadership place political career national security reportedly caving democrat
+1,highlights: british pm may's main comments on brexit,highlight british pm may main comment brexit
+0,episode #172 ‚ sunday wire: ‚trumpe le monde‚ with guests trog lodyte,episode sunday wire trumpe le monde guest trog lodyte
+1,no congo election until mid-2019 vote commission says angering opposition,congo election mid vote commission say angering opposition
+0,why this republican governor is being called ‚the most selfish man in politics‚ [video],republican governor called selfish man politics video
+0,protester hits cop on head with balloon‚watch hysterical reaction when cop pops balloon [video],protester hit cop head balloonwatch hysterical reaction cop pop balloon video
+0,us gov‚t war on rt: imperial media ‚truth‚ monopoly threatens press diversity,u govt war rt imperial medium truth monopoly threatens press diversity
+1,pence offers solace as las vegas police puzzle over shooter's motive,penny offer solace la vega police puzzle shooter motive
+1,iraq says kurds have brought in pkk fighters in 'declaration of war',iraq say kurd brought pkk fighter declaration war
+1,south korea approves aid to north korea north calls trump 'barking dog',south korea approves aid north korea north call trump barking dog
+0,breaking video: trump motorcade blasts through police barricade after angry anti-trump protesters lob projectiles at him,breaking video trump motorcade blast police barricade angry antitrump protester lob projectile
+0,wow! catholic priest delivers message from bishop: voting for hillary ‚jeopardizes your spiritual well-being‚ you ‚should not receive holy communion‚ [video],wow catholic priest delivers message bishop voting hillary jeopardizes spiritual wellbeing receive holy communion video
+1,u.s.-backed sdf to let syrian islamic state fighters leave raqqa,usbacked sdf let syrian islamic state fighter leave raqqa
+1,south sudan opposition groups meet in kenya to 'harmonize voices',south sudan opposition group meet kenya harmonize voice
+0,https://fedup.wpengine.com/wp-content/uploads/2015/04/entitled.jpg,httpsfedupwpenginecomwpcontentuploadsentitledjpg
+1,l'oreal sacks transgender model after comments on white people,loreal sack transgender model comment white people
+0,ron paul liberty report: us-saudi arms trafficking to terrorists in syria,ron paul liberty report ussaudi arm trafficking terrorist syria
+0,vanished: fbi files related to mysterious ‚suicide‚ death of hillary‚s trusted wh counsel,vanished fbi file related mysterious suicide death hillary trusted wh counsel
+0,exposed: how us-backed war on syria helped isis to expand their operations,exposed usbacked war syria helped isi expand operation
+1,afghan schools closing due to violence undermining gains in educating girls says rights group,afghan school closing due violence undermining gain educating girl say right group
+1,far right makes most noise on twitter in german election,far right make noise twitter german election
+1,kosovo urges u.s. involvement in belgrade pristina talks,kosovo urge u involvement belgrade pristina talk
+1,australia's turnbull defends 'religious freedom' amid gay marriage poll,australia turnbull defends religious freedom amid gay marriage poll
+0,nancy pelosi‚s latest over-the-top claim: trump will ‚take food out of the mouths of babies and seniors‚,nancy pelosis latest overthetop claim trump take food mouth baby senior
+1,eu's juncker hails macron speech as 'very european',eu juncker hail macron speech european
+1,kenyan opposition leader withdraws from repeat presidential poll,kenyan opposition leader withdraws repeat presidential poll
+1,'ghost boats' drop tunisian migrants onto sunny italian tourist beaches,ghost boat drop tunisian migrant onto sunny italian tourist beach
+0,chilling! fox reporter james rosen recounts being spied on by the obama mafia [video],chilling fox reporter james rosen recount spied obama mafia video
+1,nz aircraft maker pleads guilty to breaching u.n. sanctions on north korea,nz aircraft maker pleads guilty breaching un sanction north korea
+0,cia report released: trump maintains dnc leaks had ‚absolutely no effect on outcome of election‚,cia report released trump maintains dnc leak absolutely effect outcome election
+1,philippines orders retraining reassignment of 1200 police after alleged abuses,philippine order retraining reassignment police alleged abuse
+1,former salvadoran president calderon dies at 69,former salvadoran president calderon dy
+1,israel's netanyahu says will meet trump in new york next week,israel netanyahu say meet trump new york next week
+1,germany has no right to block update of turkey's eu customs union: minister,germany right block update turkey eu custom union minister
+1,jockeying for cash: north korea allows racetrack gambling as sanctions bite,jockeying cash north korea allows racetrack gambling sanction bite
+1,philippine lawmakers defer decision on appointment of environment minister,philippine lawmaker defer decision appointment environment minister
+0,lawyer for illegal alien rapists: ‚hysteria‚ over rape of 14-year old caused by trump [video],lawyer illegal alien rapist hysteria rape year old caused trump video
+1,swedish airport explosive suspect released without charge: prosecutor,swedish airport explosive suspect released without charge prosecutor
+0,if you answer ‚yes‚ to these fbi questions,answer yes fbi question
+1,kurdistan rejects iraq's demand to hand over airports baghdad readies air ban,kurdistan reject iraq demand hand airport baghdad ready air ban
+0,only one trump-bashing republican voted against laws to protect americans from criminal illegal aliens,one trumpbashing republican voted law protect american criminal illegal alien
+1,in election test ousted pakistan pm's heir-apparent takes limelight,election test ousted pakistan pm heirapparent take limelight
+0,boom! trump poll numbers going up‚up‚up! while media,boom trump poll number going upupup medium
+1,u.n. rights boss urges u.s. congress to give 'dreamers' legal status,un right bos urge u congress give dreamer legal status
+0,are the anti-trump protests becoming the new ‚ferguson‚ for illegals and democrats? [video],antitrump protest becoming new ferguson illegals democrat video
+1,zambian president urges unity as government opposition prepare for talks,zambian president urge unity government opposition prepare talk
+1,critic of rwanda's president asks for freedom in court,critic rwanda president asks freedom court
+1,russian senate head to discuss nuclear program with north south korea,russian senate head discus nuclear program north south korea
+0,first grade teacher reads transgender book to students about how a boy came to the realization he was really a girl,first grade teacher read transgender book student boy came realization really girl
+1,mattis plays down split between trump tillerson on north korea,mattis play split trump tillerson north korea
+0,joe scarborough berates mika brzezinski over ‚cheap shot‚ at ivanka trump: ‚you don‚t have to be so snotty!‚ [video],joe scarborough berates mika brzezinski cheap shot ivanka trump dont snotty video
+0,man yells ‚cnn is fake news!‚ during live nyc broadcast,man yell cnn fake news live nyc broadcast
+1,ardern to be next new zealand pm spelling changes for economy immigration,ardern next new zealand pm spelling change economy immigration
+1,u.s. 'very concerned' by violence around iraq's kirkuk: state department,u concerned violence around iraq kirkuk state department
+1,brexit talks deadlock on cash barnier eyes move by december,brexit talk deadlock cash barnier eye move december
+0,full interview: president trump nails it on immigration,full interview president trump nail immigration
+1,uzbek writer plans cautious return from exile,uzbek writer plan cautious return exile
+0,trump approves major disaster declaration for florida,trump approves major disaster declaration florida
+0,canadian teens tried to use christmas lights for bomb: prosecutor,canadian teen tried use christmas light bomb prosecutor
+1,far-right presidential hopeful aims to be brazil's trump,farright presidential hopeful aim brazil trump
+1,top anc official says party must act against corrupt members,top anc official say party must act corrupt member
+1,german women ask merkel for more support after vote,german woman ask merkel support vote
+0,breaking: two russian navy spy ships operating off u.s. coast‚white house computers are hacked by russians,breaking two russian navy spy ship operating u coastwhite house computer hacked russian
+0,homeland security secretary just gave americans a great reason to buy a gun asap [video],homeland security secretary gave american great reason buy gun asap video
+1,brazil's president treated for small coronary blockage,brazil president treated small coronary blockage
+0,episode #4 ‚ on the qt: ‚julian vs hillary‚ (part 1) @21wire.tv,episode qt julian v hillary part wiretv
+0,boiler room ep #67 ‚ the choice of a screwed generation,boiler room ep choice screwed generation
+0,after 5 years of being bullied by barack obama,year bullied barack obama
+1,catalan leader opens door to secession from spain after vote,catalan leader open door secession spain vote
+1,grizzly miss-steppe: how washington post rewrote its fake news story on ‚russian hack‚ of vermont power grid,grizzly misssteppe washington post rewrote fake news story russian hack vermont power grid
+0,students bravely defy catholic college vp‚s warning to reconsider ‚offensive‚divisive‚harmful‚ america-themed party,student bravely defy catholic college vps warning reconsider offensivedivisiveharmful americathemed party
+0,hillary cheerleader publication warns republicans: dump jesus‚or become irrelevant,hillary cheerleader publication warns republican dump jesusor become irrelevant
+1,hardliners protest french labor reform after macron chides 'slackers',hardliner protest french labor reform macron chides slacker
+0,ratings for nbc‚s backstabbing megyn kelly are in‚the anti-trump left may love her‚but do viewers?,rating nbcs backstabbing megyn kelly inthe antitrump left may love herbut viewer
+0,breaking: la shooter admitted he was obama supporter‚media still attempts to make tea party connection,breaking la shooter admitted obama supportermedia still attempt make tea party connection
+1,fbi says witnesses in u.s. probe into malaysia's 1mdb fear for safety,fbi say witness u probe malaysia mdb fear safety
+0,dana loesch rips into obama and hillary: why gun control but not prisoner control [video],dana loesch rip obama hillary gun control prisoner control video
+0,how buzzfeed is using social media ‚news‚ feeds to teach white kids to hate themselves,buzzfeed using social medium news feed teach white kid hate
+0,new book reveals hillary‚s anti-semitic side: blamed bill‚s campaign manager for losing congressional race‚called him a ‚f*cking jew b*stard‚,new book reveals hillary antisemitic side blamed bill campaign manager losing congressional racecalled fcking jew bstard
+0,kkk and black lives matter get into urine tossing fight outside the gop convention [video],kkk black life matter get urine tossing fight outside gop convention video
+0,wow! wikileaks emails shows how hillary will bankrupt gun manufactures by executive order [video],wow wikileaks email show hillary bankrupt gun manufacture executive order video
+1,uk police arrest four including soldiers over suspected far-right terrorism,uk police arrest four including soldier suspected farright terrorism
+1,u.n. bans four ships over north korea coal u.s. delays four more,un ban four ship north korea coal u delay four
+1,colombia's eln rebel commander orders ceasefire beginning sunday,colombia eln rebel commander order ceasefire beginning sunday
+1,three u.s. army special forces soldiers killed in niger: new york times,three u army special force soldier killed niger new york time
+1,london mayor says police presence to increase after metro explosion,london mayor say police presence increase metro explosion
+0,things are about to get ugly: gop introduces plan to stop $44 billion in obama‚s last minute taxpayer funded regulations,thing get ugly gop introduces plan stop billion obamas last minute taxpayer funded regulation
+1,french police arrest 10 far-right militants,french police arrest farright militant
+1,'and then they exploded': how rohingya insurgents built support for assault,exploded rohingya insurgent built support assault
+1,cambodia's hun sen renews criticism of united states amid escalating row,cambodia hun sen renews criticism united state amid escalating row
+0,boiler room ep #74 ‚ dustification & the crooked witch of the left,boiler room ep dustification crooked witch left
+1,it begins‚.obama appointed judge rules trump university records must be released,beginsobama appointed judge rule trump university record must released
+1,why are democrats willing to put women working at white house at risk,democrat willing put woman working white house risk
+0,stunning betrayal! 43 republicans,stunning betrayal republican
+0,principal of wealthy nyc school sends hate-filled email to parents: trump is worse than 9-11,principal wealthy nyc school sends hatefilled email parent trump worse
+0,over 500 anglophones arrested in cameroon after demonstrations: amnesty,anglophones arrested cameroon demonstration amnesty
+0,breaking news: second muslim doctor and wife arrested in mi for genital mutilation on 6-8 yr old girls,breaking news second muslim doctor wife arrested mi genital mutilation yr old girl
+1,saudi king says kingdom has made progress in tackling terrorism,saudi king say kingdom made progress tackling terrorism
+1,britain raises security threat level to critical pm may says,britain raise security threat level critical pm may say
+1,russian military: syria government troops control 85 percent of syria - agencies,russian military syria government troop control percent syria agency
+1,why french legal system turned down village‚s request for ‚christian only‚ refugees day before attack,french legal system turned village request christian refugee day attack
+1,merkel challenger spells out conditions for post-election coalition,merkel challenger spell condition postelection coalition
+1,cambodia's parliament votes for party law changes as opposition future in limbo,cambodia parliament vote party law change opposition future limbo
+0,dnc chair asks democrat members of congress to ‚bring a muslim‚ to state of union‚,dnc chair asks democrat member congress bring muslim state union
+1,taiwan appoints new premier to drive reform efforts,taiwan appoints new premier drive reform effort
+1,ready to fight again: the homeless rohingya still backing myanmar insurgency,ready fight homeless rohingya still backing myanmar insurgency
+0,hell comes to frogtown: alt right and triumph of transhumanism,hell come frogtown alt right triumph transhumanism
+0,that‚s gonna leave a mark‚anti-trump punks attack ca police‚get big surprise when cops hit back! [video],thats gon na leave markantitrump punk attack ca policeget big surprise cop hit back video
+1,brazil detains italian fugitive battisti leaving country,brazil detains italian fugitive battisti leaving country
+0,muslims only: uk water park attempts diversity by hosting exclusion events,muslim uk water park attempt diversity hosting exclusion event
+1,angola's ruling mpla wins election with 61 percent of vote: electoral commission,angola ruling mpla win election percent vote electoral commission
+0,black student ‚activist‚ jailed for tweeting fake racist threats,black student activist jailed tweeting fake racist threat
+0,black lives matter organizer refuses to meet with obama and race hustlers‚calls meeting at white house: ‚sham‚photo-op‚sound bite for obama‚,black life matter organizer refuse meet obama race hustlerscalls meeting white house shamphotoopsound bite obama
+1,24 militants six soldiers killed in attacks in egypt's sinai military says,militant six soldier killed attack egypt sinai military say
+0,explained: the west‚s ngo ‚human rights‚ scam,explained west ngo human right scam
+1,kazakh president names two new deputy pms,kazakh president name two new deputy pm
+0,marine veteran‚s american flag set on fire‚in his own driveway [video],marine veteran american flag set firein driveway video
+0,hot topic: when exactly does a ‚bundle of cells‚ become a human being? [video],hot topic exactly bundle cell become human video
+0,cnn cancels popular dr drew show after he tells viewers he‚s ‚gravely concerned ‚ about hillary‚s health [video],cnn cancel popular dr drew show tell viewer he gravely concerned hillary health video
+0,breaking: hillary campaign planned fake ‚grassroots‚ millennial movement to steal bernie followers,breaking hillary campaign planned fake grassroots millennial movement steal bernie follower
+0,cointel pro: are ‚anti-fascist‚ media personalities playing to the cameras?,cointel pro antifascist medium personality playing camera
+1,catalonia moves to declare independence from spain on monday,catalonia move declare independence spain monday
+0,breaking update: 50 dead,breaking update dead
+0,ron paul highlights real list of mainstream ‚fake news‚ journalists,ron paul highlight real list mainstream fake news journalist
+0,communist vietnamese leader thanks u.s. anti-war activists for helping with their victory only days before obama‚s visit,communist vietnamese leader thanks u antiwar activist helping victory day obamas visit
+0,dear kids: socialism is not cool‚socialism kills [video],dear kid socialism coolsocialism kill video
+1,afghan-pakistan border villages brace for berlin wall-style divide,afghanpakistan border village brace berlin wallstyle divide
+1,u.s. majority backs military action vs. north korea: gallup poll,u majority back military action v north korea gallup poll
+1,togo must introduce two-term limit swiftly to prevent crisis: u.n.,togo must introduce twoterm limit swiftly prevent crisis un
+1,british spy chief says islamist militants can execute deadly attack plans in just days,british spy chief say islamist militant execute deadly attack plan day
+0,gang of domestic terrorists violently attack lone trump supporter for putting out huge fire started on street in dc [video],gang domestic terrorist violently attack lone trump supporter putting huge fire started street dc video
+1,irish pm not optimistic brexit talks will move onto next stage in october,irish pm optimistic brexit talk move onto next stage october
+1,putin ally: no logic in deploying u.n. forces on russia-ukraine border,putin ally logic deploying un force russiaukraine border
+1,u.s.-backed syrian fighters say will not let government forces cross euphrates,usbacked syrian fighter say let government force cross euphrates
+0,wow! 3 muslim brothers working for dems in congress caught accessing unauthorized top-secret government intel‚one has criminal background‚may have ties to muslim brotherhood [video],wow muslim brother working dems congress caught accessing unauthorized topsecret government intelone criminal backgroundmay tie muslim brotherhood video
+0,epic conservative take down after cnn ambush of radio host [video],epic conservative take cnn ambush radio host video
+1,russia says north korea's latest missile launch flouted u.n. resolutions: ifax,russia say north korea latest missile launch flouted un resolution ifax
+1,uk supreme court hears attempt to change northern ireland abortion law,uk supreme court hears attempt change northern ireland abortion law
+0,obama‚s america: incoming u.s. citizens no longer required to pledge they will ‚bear arms on behalf of the united states‚,obamas america incoming u citizen longer required pledge bear arm behalf united state
+1,australians give up 51000 illegal guns as govt stands by tough laws,australian give illegal gun govt stand tough law
+1,hamas says ready to hand gaza to a palestinian unity government,hamas say ready hand gaza palestinian unity government
+0,shocking: entire facebook page dedicated to evidence of donald trump death threats,shocking entire facebook page dedicated evidence donald trump death threat
+0,elementary school plans ‚blacks only‚ field trip to college for third graders,elementary school plan black field trip college third grader
+1,u.s. officials try to ease concerns trump may quit iran deal,u official try ease concern trump may quit iran deal
+1,the great con: has political correctness marginalized the working class?,great con political correctness marginalized working class
+1,kirkuk shaping up as flashpoint ahead of kurdistan independence vote,kirkuk shaping flashpoint ahead kurdistan independence vote
+0,nsa ‚ ‚top secret‚ arsenal released in protest of ‚trump betrayal‚,nsa top secret arsenal released protest trump betrayal
+1,energy secretary perry cancels kazakhstan visit due to hurricane,energy secretary perry cancel kazakhstan visit due hurricane
+1,boris johnson gives pm may advice on brexit while parading loyalty,boris johnson give pm may advice brexit parading loyalty
+0,democrats eat their own: secret service protect angry bernie as leftist protesters rush stage [video],democrat eat secret service protect angry bernie leftist protester rush stage video
+0,after the 2016 election: a gullible and shattered america,election gullible shattered america
+1,jay dyer on tragedy & hope ‚ part 4: rothschilds,jay dyer tragedy hope part rothschild
+0,chicago daycare opens for adults to wear diapers,chicago daycare open adult wear diaper
+1,interpol approves membership for state of palestine over israeli objections,interpol approves membership state palestine israeli objection
+0,senility or truth bomb? bill clinton to crowd: ‚sometimes i wish we weren‚t married‚ [video],senility truth bomb bill clinton crowd sometimes wish werent married video
+0,hillary clinton‚s super detailed counterterrorism strategy‚lol,hillary clinton super detailed counterterrorism strategylol
+1,trump to meet with long list of leaders in new york next week -white house,trump meet long list leader new york next week white house
+0,couple defy hurricane maria on roof to save pets - lots of them,couple defy hurricane maria roof save pet lot
+0,boom! dinesh d‚souza just exposed the gut-wrenching truth about democrats with one tweet from dnc,boom dinesh dsouza exposed gutwrenching truth democrat one tweet dnc
+0,breaking charlotte: video shows young white girl in dress,breaking charlotte video show young white girl dress
+1,german minister favors longer ban on syrian refugees bringing families,german minister favor longer ban syrian refugee bringing family
+1,france to make armed street patrols more random nimble,france make armed street patrol random nimble
+0,digisexual robot pimps,digisexual robot pimp
+0,watch msnbc anchor make outrageous claim about her pre-existing condition for obamacare [video],watch msnbc anchor make outrageous claim preexisting condition obamacare video
+1,australia to move 200 asylum seekers to new png detention center,australia move asylum seeker new png detention center
+0,togo forces fire on protesters seven wounded,togo force fire protester seven wounded
+0,boiler room ep #69 ‚ culture club,boiler room ep culture club
+1,philippines says policy trumps popularity after duterte ratings dip,philippine say policy trump popularity duterte rating dip
+0,dingbat nancy strikes again! watch nancy pelosi refer to nra as part of intelligence committee [video],dingbat nancy strike watch nancy pelosi refer nra part intelligence committee video
+1,japan foreign minister thinks north korea missile was icbm: nhk,japan foreign minister think north korea missile icbm nhk
+1,dennis rodman talks of skiing friendship with kim jong un,dennis rodman talk skiing friendship kim jong un
+0,breaking: wikileaks says less than 1% of vault 7 released,breaking wikileaks say less vault released
+0,ep 6: patrick henningsen live with guest robert parry ‚ ‚america‚s mainstream media meltdown‚,ep patrick henningsen live guest robert parry america mainstream medium meltdown
+0,new emails reveal huma abedin told to ‚show love‚ to clinton donors‚clinton‚s brother acted as go-between,new email reveal huma abedin told show love clinton donorsclintons brother acted gobetween
+1,eu to race britain for australia nz trade deals,eu race britain australia nz trade deal
+1,turkey's erdogan says no problem with russian s-400 purchases: haberturk,turkey erdogan say problem russian purchase haberturk
+0,angela merkel running for re-election makes stunning announcement to ban burkas,angela merkel running reelection make stunning announcement ban burka
+1,device used during london metro incident did not fully detonate: sky news,device used london metro incident fully detonate sky news
+0,lol! barack obama looks ridiculous criticizing trump on immigration after this 2005 video reveals a much different obama [video],lol barack obama look ridiculous criticizing trump immigration video reveals much different obama video
+0,boiler room ep #120 ‚ scorched earth media: from russiagate to hillarygate,boiler room ep scorched earth medium russiagate hillarygate
+0,muslim woman admits obama came to mosque to get votes‚human rights attorney destroys obama‚s decision,muslim woman admits obama came mosque get voteshuman right attorney destroys obamas decision
+1,u.n. chief: northern iraq vote would detract from islamic state fight,un chief northern iraq vote would detract islamic state fight
+1,germany may 'rethink' turkey ties after two more germans detained: merkel,germany may rethink turkey tie two german detained merkel
+1,uk police making urgent inquiries to find who was behind metro incident,uk police making urgent inquiry find behind metro incident
+1,with china in mind japan india agree to deepen defense,china mind japan india agree deepen defense
+1,european parliament wants britain to end discrimination against eu citizens: draft,european parliament want britain end discrimination eu citizen draft
+1,democratic senator schumer to trump: stop blaming puerto ricans,democratic senator schumer trump stop blaming puerto ricans
+1,merkel settles migrant row with allies to pursue coalition,merkel settle migrant row ally pursue coalition
+0,breaking: trump‚s travel ban halt upheld by 9th circuit court,breaking trump travel ban halt upheld th circuit court
+1,cuba warns u.s. against hasty decisions in mysterious illness in diplomats,cuba warns u hasty decision mysterious illness diplomat
+1,over 840 people injured in catalonia during referendum: catalonia regional government,people injured catalonia referendum catalonia regional government
+0,boiler room #102 ‚ tales from the black pill,boiler room tale black pill
+1,syrian observatory says is cut deir al-zor road military source denies,syrian observatory say cut deir alzor road military source denies
+0,obama uses hiroshima visit to blame religion for wars‚doesn‚t mention pearl harbor [video],obama us hiroshima visit blame religion warsdoesnt mention pearl harbor video
+1,hammond says uk 'very close' to deal on eu citizens' rights,hammond say uk close deal eu citizen right
+0,big mistake! hillary just proved to america she‚s committed to keeping obama‚s divisive race war going,big mistake hillary proved america shes committed keeping obamas divisive race war going
+0,the chalkening: political chalk drawing bandit terrorizing liberals across america [video],chalkening political chalk drawing bandit terrorizing liberal across america video
+0,nbc‚s trump-bashing chief white house reporter gets a big dose of karma when embarrassing thing happens as cameras are rolling [video],nbcs trumpbashing chief white house reporter get big dose karma embarrassing thing happens camera rolling video
+1,when in rome: erdogan thugs rough-up press,rome erdogan thug roughup press
+1,russia's putin says de facto conditions created for end to syrian civil war,russia putin say de facto condition created end syrian civil war
+1,india bars 'unruly' passengers from flying for three months to over two years,india bar unruly passenger flying three month two year
+1,juncker says catalan split would lead to splintering eu,juncker say catalan split would lead splintering eu
+1,race obsessed vester flanagan,race obsessed vester flanagan
+0,sean hannity takes off the gloves after ‚hillary supporter‚ megyn kelly makes on-air crack about him [video],sean hannity take glove hillary supporter megyn kelly make onair crack video
+0,flynn‚s out: is ‚the new d√©tente‚ really dead ‚ or can russia still benefit?,flynns new dtente really dead russia still benefit
+0,attack on trump: mitt romney just ‚awoke a sleeping giant‚,attack trump mitt romney awoke sleeping giant
+0,who‚s the fascist? barack obama,who fascist barack obama
+1,xi says china has zero tolerance for corruption within the party,xi say china zero tolerance corruption within party
+1,at least 1300 dutch girls per year trafficked exploited,least dutch girl per year trafficked exploited
+0,first person to be killed by terrorist in speeding truck was activist who helped refugees like the one who killed her stay in sweden,first person killed terrorist speeding truck activist helped refugee like one killed stay sweden
+0,wow! dem rep keith ellison blames obama for huge democrat losses: he‚s ‚put his legacy in jeopardy‚ [video],wow dem rep keith ellison blame obama huge democrat loss he put legacy jeopardy video
+1,saudi arabia does not believe iran abiding by nuclear deal: minister,saudi arabia believe iran abiding nuclear deal minister
+0,kerry‚s lunacy: ‚us would be justified shooting down unarmed russian jets‚,kerrys lunacy u would justified shooting unarmed russian jet
+1,juncker: grab brexit chance to forge a tighter eu,juncker grab brexit chance forge tighter eu
+0,yikes! is something big about to happen? michelle obama erases any trace of hillary from twitter account,yikes something big happen michelle obama erases trace hillary twitter account
+1,merkel: strong result for austria's fpo 'big challenge' for other parties,merkel strong result austria fpo big challenge party
+1,turkey to suspend flights to northern iraq from friday: statement,turkey suspend flight northern iraq friday statement
+1,brazil's lula extends lead in 2018 vote despite graft conviction: poll,brazil lula extends lead vote despite graft conviction poll
+0,man yells ‚cnn is fake news!‚ during live nyc broadcast,man yell cnn fake news live nyc broadcast
+0,lol! conservative comedian steven crowder makes video you don‚t want to miss: ‚painting muhammad with bob ross‚,lol conservative comedian steven crowder make video dont want miss painting muhammad bob ross
+0,young danish couple beaten,young danish couple beaten
+0,michelle obama dnc speech: ‚i wake up every morning in a house built by slaves‚,michelle obama dnc speech wake every morning house built slave
+1,russia to retaliate against u.s. in military observation flights row: agencies,russia retaliate u military observation flight row agency
+0,breaking: muslim shot dead in paris after rushing police hq with knife,breaking muslim shot dead paris rushing police hq knife
+0,who‚s the fascist? barack obama,who fascist barack obama
+0,judge jeanine unloads on hillary: ‚how did you go from being ‚dead broke‚ to being worth over $200 million while in government?‚[video],judge jeanine unloads hillary go dead broke worth million governmentvideo
+1,spanish pm seeks safety in numbers before playing catalonia trump card,spanish pm seek safety number playing catalonia trump card
+1,syria producing more energy after army recaptures gas fields - ministry,syria producing energy army recapture gas field ministry
+0,is resignation of fbi director imminent,resignation fbi director imminent
+0,one video perfectly illustrates why liberals wanted bill o‚reilly off the air,one video perfectly illustrates liberal wanted bill oreilly air
+1,about 500 french children in jihadi-held areas of iraq and syria: official,french child jihadiheld area iraq syria official
+0,boiler room #88 ‚ behold: your new ministry of truth,boiler room behold new ministry truth
+0,flashback: espn female reporter still employed after being caught on video berating garage attendant‚curt schilling fired after sharing conservative views on facebook,flashback espn female reporter still employed caught video berating garage attendantcurt schilling fired sharing conservative view facebook
+0,black lawyer,black lawyer
+1,turkey's erdogan calls iraqi kurdish referendum illegitimate,turkey erdogan call iraqi kurdish referendum illegitimate
+1,catalan leader calls for international mediation in madrid stand-off,catalan leader call international mediation madrid standoff
+1,kurdish leader and ex-iraqi president jalal talabani dies: state tv,kurdish leader exiraqi president jalal talabani dy state tv
+0,breaking: trump‚s travel ban halt upheld by 9th circuit court,breaking trump travel ban halt upheld th circuit court
+1,munich prosecutors arrest ex-porsche executive in audi emissions probe: source,munich prosecutor arrest exporsche executive audi emission probe source
+1,excessive force won't solve myanmar's rohingya crisis: annan panel,excessive force wont solve myanmar rohingya crisis annan panel
+1,rights groups condemn saudi arrests as crackdown on dissent,right group condemn saudi arrest crackdown dissent
+1,eu should impose more sanctions on north korea-foreign policy chief,eu impose sanction north koreaforeign policy chief
+0,trump‚s bringing churchill‚s bust back to oval office‚wait till you see who barack obama replaced him with,trump bringing churchill bust back oval officewait till see barack obama replaced
+1,china says north korean businesses in country will shut within 120 days of u.n. resolution,china say north korean business country shut within day un resolution
+0,former trump girlfriend sets the record straight after nyt‚s twists her remarks to make trump appear disrespectful to women,former trump girlfriend set record straight nyts twist remark make trump appear disrespectful woman
+0,wow! princeton professor demonstrates how easily voter fraud is committed on electronic voter machines [video],wow princeton professor demonstrates easily voter fraud committed electronic voter machine video
+1,henningsen: ‚trump challenging sacred cows of us foreign policy,henningsen trump challenging sacred cow u foreign policy
+1,death toll from somalia bomb attacks tops 300,death toll somalia bomb attack top
+0,antifa manual found on evergreen college campus: shut down their rallies‚force the media to show our side as the righteous one,antifa manual found evergreen college campus shut ralliesforce medium show side righteous one
+1,syria's militant ex-qaeda group denies leader injured in russian strike,syria militant exqaeda group denies leader injured russian strike
+1,iranian military chief visits frontline near aleppo,iranian military chief visit frontline near aleppo
+1,eight kenyan schoolgirls die in dormitory blaze: government,eight kenyan schoolgirl die dormitory blaze government
+1,weakened dam looms as latest threat to puerto rico after hurricane,weakened dam loom latest threat puerto rico hurricane
+0,un physically removes independent media from nyc hq for exposing institutional corruption,un physically remove independent medium nyc hq exposing institutional corruption
+0,isis flag found hanging from fence‚neighbors respond with a huge show of patriotism,isi flag found hanging fenceneighbors respond huge show patriotism
+1,nader talebzadeh: they planned and he plans,nader talebzadeh planned plan
+1,ageing german 'super-spy' convicted of tax evasion,ageing german superspy convicted tax evasion
+0,yikes! shocking footage of black lives matter protesters being hit by vehicles caught on camera [video],yikes shocking footage black life matter protester hit vehicle caught camera video
+1,china's xi wants to put relations with india on 'right track',china xi want put relation india right track
+0,florida residents heed irma warnings after harvey's destruction,florida resident heed irma warning harvey destruction
+0,will trump pull a ‚romney‚ in his first debate? says he won‚t mention bill‚s infidelities unless hillary does this‚ [video],trump pull romney first debate say wont mention bill infidelity unless hillary video
+0,the view women go off the rails: trump ‚has to step down before the inauguration‚ [video],view woman go rail trump step inauguration video
+1,uk pm may postpones trip to china to avoid timetable clash with trump: sky,uk pm may postpones trip china avoid timetable clash trump sky
+1,british banker to appeal conviction over hk double murders,british banker appeal conviction hk double murder
+0,"principal caught stealing from deteriorating detroit school that got $500000 donation from ellen degeneres [video]""",principal caught stealing deteriorating detroit school got donation ellen degeneres video
+1,six crew from german ship kidnapped in nigerian waters,six crew german ship kidnapped nigerian water
+0,ca middle school won‚t release student council election results‚winners aren‚t diverse enough,ca middle school wont release student council election resultswinners arent diverse enough
+0,unbelievable! students succeed in removing us border patrol agents from career fair: concerned they won‚t make illegal students feel welcome,unbelievable student succeed removing u border patrol agent career fair concerned wont make illegal student feel welcome
+0,trump fever! w. va dem senator says he won‚t vote with party‚doesn‚t give a sh*t if it costs him election,trump fever w va dem senator say wont vote partydoesnt give sht cost election
+0,take this short quiz: which radical said it? we guarantee the answers will surprise you‚,take short quiz radical said guarantee answer surprise
+0,boiler room ‚ ep #59 ‚ the loss and curse of patriotism,boiler room ep loss curse patriotism
+1,japanese pm abe sends ritual offering to yasukuni shrine for war dead,japanese pm abe sends ritual offering yasukuni shrine war dead
+1,damaged a380 to be flown to france to investigate engine blast,damaged flown france investigate engine blast
+1,anti-immigrant afd alarms german jews as election looms,antiimmigrant afd alarm german jew election loom
+0,encryption truth: what the fbi aren‚t telling you about their battle with apple and san bernardino,encryption truth fbi arent telling battle apple san bernardino
+1,tunisia foils the departure of 555 migrants to europe in september,tunisia foil departure migrant europe september
+0,boom! mother of black son murdered by blacks: ‚i don‚t preach black lives matter,boom mother black son murdered black dont preach black life matter
+0,trump is reportedly preparing executive order to deport illegals living on welfare‚kill anchor baby benefits,trump reportedly preparing executive order deport illegals living welfarekill anchor baby benefit
+0,hey ‚simpletons‚‚we‚ve got great news! the left is going to help you identify ‚fake news‚ [video],hey simpletonsweve got great news left going help identify fake news video
+0,virginia shooter hodgkinson was ‚never trump‚ fanatic and devotee of bernie sanders,virginia shooter hodgkinson never trump fanatic devotee bernie sander
+0,whoopie goldberg: right to abort baby same as right to celebrate birth of jesus christ [video],whoopie goldberg right abort baby right celebrate birth jesus christ video
+1,militants attack checkpoint in somalia's puntland seven dead,militant attack checkpoint somalia puntland seven dead
+0,not obama‚s doj: feds going after huma abedin‚s corrupt family member with ties to clinton foundation,obamas doj fed going huma abedins corrupt family member tie clinton foundation
+0,wedding crashers: hillary tries to explain why she and bill attended trump wedding and proves they are first class grifters,wedding crasher hillary try explain bill attended trump wedding prof first class grifter
+0,boiler room ep #67 ‚ the choice of a screwed generation,boiler room ep choice screwed generation
+1,trump says he believes cuba responsible for attacks that hurt u.s. diplomats,trump say belief cuba responsible attack hurt u diplomat
+0,iran sentences 'mossad agent' to death over scientist killings,iran sentence mossad agent death scientist killing
+0,breaking video: hillary clinton stumbles up stairs on plane‚microphone catches her asking,breaking video hillary clinton stumble stair planemicrophone catch asking
+0,october 1st could mark end of free speech on the internet: how obama regime may be turning control of internet over to u.n.,october st could mark end free speech internet obama regime may turning control internet un
+0,guess where the baltimore school system ranks among the nation‚s 100 largest school districts?,guess baltimore school system rank among nation largest school district
+1,south korea's moon seeks russia's cooperation over cut in north korea oil supplies: yonhap,south korea moon seek russia cooperation cut north korea oil supply yonhap
+0,war on words: facebook censorship widens,war word facebook censorship widens
+0,disgusting! seattle mayor who announced he‚s suing trump over sanctuary city exec order is accused of raping 15-yr old boy,disgusting seattle mayor announced he suing trump sanctuary city exec order accused raping yr old boy
+1,rights groups urge eu japan to consider halt in funding for cambodian election,right group urge eu japan consider halt funding cambodian election
+1,spain on the backfoot in bid to tackle youth unemployment,spain backfoot bid tackle youth unemployment
+1,new zealand's kingmaker party sets thursday to unveil result of talks to form government,new zealand kingmaker party set thursday unveil result talk form government
+0,democrat chairman yells ‚all together now‚f*ck donald trump!‚ [video],democrat chairman yell together nowfck donald trump video
+0,who is shanika minor?‚why was she on fbi‚s 10 most wanted list‚and why wasn‚t her gruesome story splashed all over the news?,shanika minorwhy fbi wanted listand wasnt gruesome story splashed news
+0,call me ‚your majesty‚: conservative student takes university of michigan‚s new gender policy to task‚and it‚s awesome! [video],call majesty conservative student take university michigan new gender policy taskand awesome video
+1,tajikistan agrees to more intelligence exchanges with china,tajikistan agrees intelligence exchange china
+1,uae law targets sexual harassment forced labor,uae law target sexual harassment forced labor
+0,why is the media hiding this endorsement?‚kkk klan leader on hillary: ‚she‚s a democrat,medium hiding endorsementkkk klan leader hillary shes democrat
+0,bronx hospital shooting: multiple people shot,bronx hospital shooting multiple people shot
+0,a look inside north korea‚s lavish underground nuclear bunker‚is this why kim jong un is unafraid of nuclear conflict? [video],look inside north korea lavish underground nuclear bunkeris kim jong un unafraid nuclear conflict video
+0,obama fights to keep radical agenda alive: asks crooked ag loretta lynch to find way to challenge supreme court decision that blocked his executive order amnesty scheme,obama fight keep radical agenda alive asks crooked ag loretta lynch find way challenge supreme court decision blocked executive order amnesty scheme
+0,brave pro-trump reporter grabs microphone at climate march‚tells liberal crowd to chant ‚bill clinton is a rapist!‚ [video],brave protrump reporter grab microphone climate marchtells liberal crowd chant bill clinton rapist video
+1,khamenei says iran turkey must act against kurdish secession: tv,khamenei say iran turkey must act kurdish secession tv
+1,criticized for egypt ties france to raise human rights with al-sisi,criticized egypt tie france raise human right alsisi
+1,once 'kittens' in cyber spy world iran gains prowess: security experts,kitten cyber spy world iran gain prowess security expert
+0,van jones guarantees 8 years of president trump: ‚that was one of the most extraordinary moments in american politics you have ever seen‚period‚ [video],van jones guarantee year president trump one extraordinary moment american politics ever seenperiod video
+0,"why are we importing hate and intolerance? u.s.has imported over 674000 migrants from countries who execute gays""",importing hate intolerance ushas imported migrant country execute gay
+1,turkey orders former intelligence personnel detained in gulen probe: aa,turkey order former intelligence personnel detained gulen probe aa
+1,moscow says escalation of tension on korea peninsula unacceptable,moscow say escalation tension korea peninsula unacceptable
+1,panama to send immigration envoys to china as visa limits lifted,panama send immigration envoy china visa limit lifted
+0,flashback: ‚the syrian war: what you‚re not being told‚ (about chemical weapons),flashback syrian war youre told chemical weapon
+1,qatar says no sign arab states willing to negotiate over boycott,qatar say sign arab state willing negotiate boycott
+0,hillary‚s ‚khan man‚: who is khizr khan? the shocking truth about his job,hillary khan man khizr khan shocking truth job
+1,week of clashes in eastern ethiopia kill 50 displace 50000: officials,week clash eastern ethiopia kill displace official
+1,thousands of somalis gather to mourn bomb victims,thousand somali gather mourn bomb victim
+0,how hillary reminded us last week that we‚re so lucky she wasn‚t elected,hillary reminded u last week lucky wasnt elected
+0,flashback video: al sharpton assaults fox news reporter for asking baltimore mayor why she allowed thugs loot and burn down businesses,flashback video al sharpton assault fox news reporter asking baltimore mayor allowed thug loot burn business
+0,jihad for dummies: how us army enlistee,jihad dummy u army enlistee
+0,unreal! pro-cuba travel at pbs and nbc: ‚cuba has so much going for it: it‚s proudly communist‚‚ [video],unreal procuba travel pb nbc cuba much going proudly communist video
+0,where‚s the media? fox news reported in february about 3 pakistani muslim brothers who were caught accessing unauthorized top-secret government intel‚now we find out they sold classified secrets to foreign agents [video],wheres medium fox news reported february pakistani muslim brother caught accessing unauthorized topsecret government intelnow find sold classified secret foreign agent video
+1,north korea official says north may consider hydrogen bomb on pacific ocean: yonhap,north korea official say north may consider hydrogen bomb pacific ocean yonhap
+0,hollywood libs have epic melt downs‚threaten president trump over his transgender military policy,hollywood libs epic melt downsthreaten president trump transgender military policy
+1,in photos north korea signals a more powerful icbm in the works,photo north korea signal powerful icbm work
+0,kellyanne conway slaps down rabid cnn host chris cuomo: ‚aren‚t you the least bit embarrassed that you now talk about russia more than you talk about america?‚ [video],kellyanne conway slap rabid cnn host chris cuomo arent least bit embarrassed talk russia talk america video
+0,wow! scrubbed 1998 george soros video resurfaces!‚admits he confiscated property from jews in wwii‚hung out with hillary in haiti [video],wow scrubbed george soros video resurfacesadmits confiscated property jew wwiihung hillary haiti video
+1,the economy of wolfgang schaeuble - at a glance,economy wolfgang schaeuble glance
+0,beware the united nations push for ‚global governance‚ for the ‚good of the planet‚,beware united nation push global governance good planet
+1,indonesia to bar myanmar protest at world's biggest buddhist temple,indonesia bar myanmar protest world biggest buddhist temple
+1,after yemeni air strike little girl is family's only survivor,yemeni air strike little girl family survivor
+0,all hell is breaking loose in germany: citizens want ‚refugees‚ gunned down at borders [video],hell breaking loose germany citizen want refugee gunned border video
+0,without evidence,without evidence
+1,italy's government wins confidence votes on contested electoral law,italy government win confidence vote contested electoral law
+1,sunday screening: national security alert: the pentagon attack (2009),sunday screening national security alert pentagon attack
+0,congressman jim jordan stops cnn gatekeeper chris cuomo on benghazi cover-up,congressman jim jordan stop cnn gatekeeper chris cuomo benghazi coverup
+0,pence tells u.n. that america first does not mean america alone,penny tell un america first mean america alone
+1,us media silence as pentagon deploys rangers armoured regiment on the ground in syria,u medium silence pentagon deploys ranger armoured regiment ground syria
+1,head of nation‚s top immigration law enforcement agency threatens lawlessness in sanctuary cities unless amnesty is passed,head nation top immigration law enforcement agency threatens lawlessness sanctuary city unless amnesty passed
+1,putin thinks north korea crisis will not go nuclear diplomacy to prevail,putin think north korea crisis go nuclear diplomacy prevail
+0,is hillary‚s campaign in yuge trouble? shocking statistics show number of votes in 2016 way down from election she lost in 2008,hillary campaign yuge trouble shocking statistic show number vote way election lost
+1,aid convoy reaches syria's deir al-zor after three-year siege,aid convoy reach syria deir alzor threeyear siege
+1,exodus of rohingya to bangladesh reaches 270000 - unhcr,exodus rohingya bangladesh reach unhcr
+0,episode #208 ‚ ‚not the network‚ ‚ sunday wire with hesher,episode network sunday wire hesher
+1,putin warns north korea situation on verge of 'large-scale conflict',putin warns north korea situation verge largescale conflict
+0,obama invites david letterman,obama invite david letterman
+1,iraq's top shi'ite cleric sistani opposes secession of kurdish region,iraq top shiite cleric sistani opposes secession kurdish region
+0,comedian dave chappelle stuns ny audience: slams hillary‚compares trump to the terminator:‚most gangsta candidate ever‚,comedian dave chappelle stuns ny audience slam hillarycompares trump terminatormost gangsta candidate ever
+0,leftist hate on steroids: donald trump tombstone appears in nyc,leftist hate steroid donald trump tombstone appears nyc
+1,rohingya insurgents open to peace but myanmar ceasefire ending,rohingya insurgent open peace myanmar ceasefire ending
+0,the ‚new cold war‚ ‚ a rehash of old rivalries,new cold war rehash old rivalry
+0,ivanka trump brand sued after massive sales surge‚restraining order requested to prevent sales in state of ca,ivanka trump brand sued massive sale surgerestraining order requested prevent sale state ca
+1,tanzanian minister quits after diamond mining investigation: state tv,tanzanian minister quits diamond mining investigation state tv
+1,trump to speak in 'tough terms' about north korea in first u.n. speech,trump speak tough term north korea first un speech
+0,sunday screening: operation hollywood (2004),sunday screening operation hollywood
+0,"whoa! ‚canada‚s donald trump‚ billionaire and shark tank host kevin o‚leary announces run against ‚canada‚s barack obama‚ [video]""",whoa canada donald trump billionaire shark tank host kevin oleary announces run canada barack obama video
+1,north korea warns u.s. of 'greatest pain' rejects sanctions,north korea warns u greatest pain reject sanction
+1,kurdish leaders reject baghdad demand to cancel independence vote renew dialogue offer,kurdish leader reject baghdad demand cancel independence vote renew dialogue offer
+1,moscow warns it may restrict u.s. media in russia,moscow warns may restrict u medium russia
+1,presidential vote runner-up in kyrgyzstan concedes defeat,presidential vote runnerup kyrgyzstan concedes defeat
+0,not kidding: obama‚s weak immigrant vetting process doesn‚t even include asking if they belong to isis,kidding obamas weak immigrant vetting process doesnt even include asking belong isi
+1,rt exclusive: peter lavelle interviews dr. ron paul on trump‚s challenges,rt exclusive peter lavelle interview dr ron paul trump challenge
+1,turkey says german foreign minister's remarks on arms sales inappropriate,turkey say german foreign minister remark arm sale inappropriate
+0,is the united states of america a liberal democracy,united state america liberal democracy
+1,iraqi parliament votes to remove kirkuk governor from office: lawmakers,iraqi parliament vote remove kirkuk governor office lawmaker
+1,australia's high court rejects challenge to vote on same-sex marriage,australia high court reject challenge vote samesex marriage
+0,how obama used nwa (niggaz wit attitudes) famous for ‚f‚îk the police‚ rap to promote his dangerous iran deal on twitter [video],obama used nwa niggaz wit attitude famous fk police rap promote dangerous iran deal twitter video
+1,trump halts travel in new executive order,trump halt travel new executive order
+1,evacuated islamic state fighters reach syria's deir al-zor pro-damascus commander says,evacuated islamic state fighter reach syria deir alzor prodamascus commander say
+0,germany: 10000 muslims allegedly registered to ‚march against terror‚‚actual number is much less,germany muslim allegedly registered march terroractual number much less
+0,attention bad guys with weapons: there are no more sitting ducks at colleges in this state,attention bad guy weapon sitting duck college state
+1,abe trump agree to raise pressure on north korea: japan government,abe trump agree raise pressure north korea japan government
+1,kenya opposition chief: people should stay home not protest during polls,kenya opposition chief people stay home protest poll
+1,iraqi forces capture north oil co. from kurdish forces; no disruption to oil production,iraqi force capture north oil co kurdish force disruption oil production
+1,canada defends refugee system as somali immigrant charged in attack,canada defends refugee system somali immigrant charged attack
+0,obama‚s doj sued michigan city to allow mega-mosque in majority christian residential neighborhood‚call jeff sessions now to stop this insanity,obamas doj sued michigan city allow megamosque majority christian residential neighborhoodcall jeff session stop insanity
+0,president trump: ‚terrible. just found out that obama had my ‚wires tapped‚ in trump tower just before the victory‚this is mccarthyism!‚,president trump terrible found obama wire tapped trump tower victorythis mccarthyism
+1,lesotho detains army major over killing of military leader,lesotho detains army major killing military leader
+0,[video] kansas dem mayor brags about reduction in white population: thanks radical socialist hispanic group,video kansa dem mayor brag reduction white population thanks radical socialist hispanic group
+1,turkish military says has begun reconnaissance in syria's idlib,turkish military say begun reconnaissance syria idlib
+0,boom! fox news host eric bolling hits back with $50 million defamation suit against huffington post reporter over sexting story,boom fox news host eric bolling hit back million defamation suit huffington post reporter sexting story
+1,british police say 'terrorist incident' at london metro station,british police say terrorist incident london metro station
+1,britain frustrated by slow pace of brexit talks: finance minister,britain frustrated slow pace brexit talk finance minister
+0,update on monster mom who kicked little boy out of home for voting trump at school‚‚we don‚t do donald trump here!‚ [video],update monster mom kicked little boy home voting trump schoolwe dont donald trump video
+1,bangladesh myanmar agree to draw up plan for refugee repatriation: minister,bangladesh myanmar agree draw plan refugee repatriation minister
+1,china's military practices for 'surprise attack' over sea near korea,china military practice surprise attack sea near korea
+0,oops! doctor dragged off united airlines flight has dark history [video],oops doctor dragged united airline flight dark history video
+0,breaking: cnn producer caught on undercover video trashing trump: ‚voters ‚stupid as sh*t‚ [video],breaking cnn producer caught undercover video trashing trump voter stupid sht video
+1,brazil's temer says pension reform might not pass this year,brazil temer say pension reform might pas year
+1,trump mexican president speak after latest quake: white house,trump mexican president speak latest quake white house
+0,episode #174 ‚ sunday wire: ‚fake news‚ week in review,episode sunday wire fake news week review
+0,surprise! hispanic reporter tries to call injured white guy a ‚racist‚‚gets unexpected smack down by black friend,surprise hispanic reporter try call injured white guy racistgets unexpected smack black friend
+1,spain's deputy pm to deliver address at 2020 gmt,spain deputy pm deliver address gmt
+0,not news: 7 dead‚35 wounded in obama‚s hometown in 2 days‚black chicago residents blame barack obama [video],news dead wounded obamas hometown daysblack chicago resident blame barack obama video
+1,czech ruling party says wage growth must be priority for next government,czech ruling party say wage growth must priority next government
+1,congo president says whoever killed u.n. experts will be punished,congo president say whoever killed un expert punished
+1,u.s. needs to work with others on north korea crisis: singapore pm,u need work others north korea crisis singapore pm
+0,breaking exclusive: black republican fired from radio station after spending time with trump in detroit,breaking exclusive black republican fired radio station spending time trump detroit
+1,russian firefighters use helicopters to extinguish market fire,russian firefighter use helicopter extinguish market fire
+1,spain police detain man accused of link to barcelona attacks,spain police detain man accused link barcelona attack
+1,thirty-eight injured in police charges in catalonia say emergency services,thirtyeight injured police charge catalonia say emergency service
+1,xi says china will let the market play decisive role in resource allocation,xi say china let market play decisive role resource allocation
+1,fugitive former thai pm yingluck gets five years' jail in absentia,fugitive former thai pm yingluck get five year jail absentia
+0,breaking: electronics banned on some u.s. flights from middle east‚list of 9 airlines and airports affected,breaking electronics banned u flight middle eastlist airline airport affected
+1,mohammed dahlan speaks about palestinian unity and his back-room role,mohammed dahlan speaks palestinian unity backroom role
+0,vanished: ‚hero security guard‚ and star witness of las vegas shooting is missing,vanished hero security guard star witness la vega shooting missing
+0,more than half of eligible australians have so far voted in same-sex marriage ballot,half eligible australian far voted samesex marriage ballot
+1,trump to top u.s. diplomat: don't bother talking to north korea,trump top u diplomat dont bother talking north korea
+0,breaking: michael flynn resigns as trump‚s national security advisor,breaking michael flynn resigns trump national security advisor
+1,stop fighting over brexit and get real jim o'neill tells uk,stop fighting brexit get real jim oneill tell uk
+1,rising tension spurs malaysia to ban travel to north korea,rising tension spur malaysia ban travel north korea
+1,guatemala prosecutors target ex-president for alleged corruption,guatemala prosecutor target expresident alleged corruption
+1,looming election may be nail in coffin for japan's fiscal reform,looming election may nail coffin japan fiscal reform
+0,trump warned americans we‚d be ‚sick of winning‚‚cnn cries trump is making stock market rise too much‚could hurt his chances for re-election [video],trump warned american wed sick winningcnn cry trump making stock market rise muchcould hurt chance reelection video
+0,mcpain: john mccain furious that iran treated us sailors well,mcpain john mccain furious iran treated u sailor well
+1,iraq dismisses u.s. call for iranian-backed militias to 'go home',iraq dismisses u call iranianbacked militia go home
+0,boiler room ‚ ep #50 ‚ 1 year anniversary extravaganza!!!,boiler room ep year anniversary extravaganza
+0,dismissed: trump fires scandal plagued fbi director james comey ‚ what does it mean?,dismissed trump fire scandal plagued fbi director james comey mean
+0,trump was right: latest arrests prove threats to jewish centers in us were false flags,trump right latest arrest prove threat jewish center u false flag
+1,u.s. lawmaker wants north korea out of the u.n.,u lawmaker want north korea un
+0,boiler room ‚ ep #46 ‚ murder,boiler room ep murder
+0,mother of 7 yr old charged with ‚endangerment‚ for allowing child to play in park across street from home unsupervised for an hour,mother yr old charged endangerment allowing child play park across street home unsupervised hour
+1,switzerland voters likely to weigh in on facial covering ban,switzerland voter likely weigh facial covering ban
+1,saudi ambassador to u.s. says his society is ready to let women drive,saudi ambassador u say society ready let woman drive
+1,australia expands security assistance to philippines to combat islamist militants,australia expands security assistance philippine combat islamist militant
+1,venezuela arrests top oil executive eight other pdvsa employees: sources,venezuela arrest top oil executive eight pdvsa employee source
+0,south africa‚s ‚female‚ olympian favored to win gold in women‚s 800 meter race tonight threatens other athletes on social media‚should ‚she‚ even be competing with women? [video],south africa female olympian favored win gold womens meter race tonight threatens athlete social mediashould even competing woman video
+1,russian iranian diplomats to discuss iran nuclear deal this week: ifax,russian iranian diplomat discus iran nuclear deal week ifax
+0,this state will include transgender curriculum in public schools: ‚you can be both genders,state include transgender curriculum public school gender
+0,busted! hillary and bill clinton‚s massive money laundering scheme with for-profit university makes trump university accusation look like small potatoes,busted hillary bill clinton massive money laundering scheme forprofit university make trump university accusation look like small potato
+1,italy breaks up libyan fuel smuggling ring involving mafia,italy break libyan fuel smuggling ring involving mafia
+1,hundreds of protesters march to kenyan election board hq,hundred protester march kenyan election board hq
+0,watch obama awkwardly and angrily tell audience to ‚choose hope!‚ six times in a row‚looks nervous,watch obama awkwardly angrily tell audience choose hope six time rowlooks nervous
+1,trump says hurricane does not look good eyes debt ceiling debate,trump say hurricane look good eye debt ceiling debate
+1,poles see dwindling economic benefit of living in britain,pole see dwindling economic benefit living britain
+1,macron expects casualties after hurricane irma hits french territories,macron expects casualty hurricane irma hit french territory
+1,pyongyang shown no interest in talks: state department,pyongyang shown interest talk state department
+0,boom! tx governor will cut funding to county where sheriff of sanctuary city refuses to cooperate with feds [video],boom tx governor cut funding county sheriff sanctuary city refuse cooperate fed video
+1,one eve of gaza reconciliation hamas frees fatah men,one eve gaza reconciliation hamas free fatah men
+1,spain and morocco arrest six suspected of practicing beheadings,spain morocco arrest six suspected practicing beheading
+0,cloaked order: who‚s really behind ‚new authority‚ for cia drone strikes?,cloaked order who really behind new authority cia drone strike
+0,unhinged pelosi: it‚s ‚outrageous‚ that republicans blame dems for shooting: ‚somewhere in the 90‚s the republicans went on the politics of personal destruction‚ [video],unhinged pelosi outrageous republican blame dems shooting somewhere republican went politics personal destruction video
+1,photographer killed in mexico as journalist death toll nears record,photographer killed mexico journalist death toll nears record
+0,boiler room ep #121 ‚ google vs the red pill & the great witch hunt,boiler room ep google v red pill great witch hunt
+1,boko haram resurgence kills 381 civilians since april: amnesty,boko haram resurgence kill civilian since april amnesty
+0,cnn‚s jim acosta schooled on the meaning of the statue of liberty by trump senior advisor [video],cnns jim acosta schooled meaning statue liberty trump senior advisor video
+1,colombian police seize 7 tons of cocaine at banana farm,colombian police seize ton cocaine banana farm
+1,turkish parliament extends mandate on troop deployment in iraq syria,turkish parliament extends mandate troop deployment iraq syria
+1,iran warns u.s. against imposing further sanctions,iran warns u imposing sanction
+0,muslim assimilation update: migrants arrested for stoning transgender women in germany,muslim assimilation update migrant arrested stoning transgender woman germany
+0,shocking video connects beyoncÉ and obama to dallas cop killer,shocking video connects beyonc obama dallas cop killer
+1,vietnam braces for typhoon khanun after floods kill 72,vietnam brace typhoon khanun flood kill
+1,jordan border crossing with iraq to reopen in major boost to ties,jordan border crossing iraq reopen major boost tie
+0,washington‚s criminal activities are only getting messier,washington criminal activity getting messier
+1,hungarian pm orban says will fight after eu ruling on migrant quota,hungarian pm orban say fight eu ruling migrant quota
+0,sweet smell of revenge: farmer sprays manure on oscar winning actress and film crew during fracking protest on his land [video],sweet smell revenge farmer spray manure oscar winning actress film crew fracking protest land video
+1,soon-to-go-free jail convicts snared in french attack plot probe,soontogofree jail convict snared french attack plot probe
+0,smartphone captures new boatload of ‚scared,smartphone capture new boatload scared
+1,iraqi forces capture area on syria border from islamic state: military,iraqi force capture area syria border islamic state military
+0,ohio college professor makes threatening post to facebook: ‚bunch of us anti-gun types are going to have to arm ourselves,ohio college professor make threatening post facebook bunch u antigun type going arm
+0,ticking time bomb: why more young muslims in the west are sympathizing with terrorists,ticking time bomb young muslim west sympathizing terrorist
+0,ep #9: patrick henningsen live ‚ ‚our western lands‚ with guest doyel shamley,ep patrick henningsen live western land guest doyel shamley
+1,moroccan police break up islamic state cell planning attacks: ministry,moroccan police break islamic state cell planning attack ministry
+1,france calls for rapid resolution in case of journalist arrested in turkey,france call rapid resolution case journalist arrested turkey
+0,illegal immigrants caught squatting in deployed soldiers home: feces,illegal immigrant caught squatting deployed soldier home feces
+1,risks to brazil's temer subside after bungled jbs plea bargain,risk brazil temer subside bungled jbs plea bargain
+0,black student with hot glue gun causes elite liberal college to lock-down campus,black student hot glue gun cause elite liberal college lockdown campus
+1,deadly aftershock volcanic ash spread alarm in mexico,deadly aftershock volcanic ash spread alarm mexico
+0,boiler room ‚ ep #57 ‚ revenge of the social rejects,boiler room ep revenge social reject
+1,cruz & kasich quit: trump crushes elite establishment,cruz kasich quit trump crush elite establishment
+0,obama to visit mosque where radical imam condones suicide bombings‚even more unbelievable is list of muslims who committed horrific acts of terror against americans who prayed there,obama visit mosque radical imam condones suicide bombingseven unbelievable list muslim committed horrific act terror american prayed
+1,slightly injured pope ends colombia tour with unity appeal,slightly injured pope end colombia tour unity appeal
+0,mid summer anger: oliver stone waxes us establishment‚s russia conspiracy theory,mid summer anger oliver stone wax u establishment russia conspiracy theory
+0,obama‚s gun-running,obamas gunrunning
+0,harsh and true! top ten reasons obama was the worst president ever! [video],harsh true top ten reason obama worst president ever video
+1,battered by cyclone philippines suffers flooding landslides,battered cyclone philippine suffers flooding landslide
+1,china's xi says study capitalism but marxism remains top,china xi say study capitalism marxism remains top
+1,wreck of wwi german 'u-boat' submarine found off belgium,wreck wwi german uboat submarine found belgium
+0,obama‚s brother will vote for trump: ‚deep disappointment‚ in barack‚s presidency‚wants to ‚make america great again‚,obamas brother vote trump deep disappointment baracks presidencywants make america great
+1,australian military probes 'rumors' of possible war crimes in afghanistan,australian military probe rumor possible war crime afghanistan
+1,merkel's conservatives lead before sunday vote far-right gains: poll,merkels conservative lead sunday vote farright gain poll
+1,france defends iran nuclear deal which trump calls deeply flawed,france defends iran nuclear deal trump call deeply flawed
+0,arrogant bill clinton mocks coal miners for supporting trump after hillary promises to shut down coal industry if she‚s elected [video],arrogant bill clinton mock coal miner supporting trump hillary promise shut coal industry shes elected video
+1,independent catalonia would need to apply to join eu: juncker,independent catalonia would need apply join eu juncker
+0,un celebrates its 70th anniversary with communist statue in nyc park,un celebrates th anniversary communist statue nyc park
+0,charlie manson,charlie manson
+0,another american known wolf? fort lauderdale shooter known to fbi,another american known wolf fort lauderdale shooter known fbi
+1,china calls for understanding of myanmar's need to protect stability,china call understanding myanmar need protect stability
+0,plot thickens: d.c. police chief who oversaw seth rich murder socialized with top democrats,plot thickens dc police chief oversaw seth rich murder socialized top democrat
+1,fincantieri naval group may exchange stakes in future military alliance,fincantieri naval group may exchange stake future military alliance
+1,"london seeks ""deep security partnership"" with eu after brexit",london seek deep security partnership eu brexit
+1,britain says suspends training of myanmar military following violence,britain say suspends training myanmar military following violence
+1,cover-up? new details from orlando shooter‚s crisis call casts light on fbi,coverup new detail orlando shooter crisis call cast light fbi
+0,whoa! ‚sesame street‚ using bert and ernie for sexually transmitted diseases ad,whoa sesame street using bert ernie sexually transmitted disease ad
+1,protesters sentenced to jail in french 'kung fu cop' trial,protester sentenced jail french kung fu cop trial
+0,sara carter and jay sekulow with the latest on obama spying on trump: ‚i think this goes to the highest levels of the obama administration‚ [video],sara carter jay sekulow latest obama spying trump think go highest level obama administration video
+1,belgian-based businessman challenges grace mugabe's diamond ring claim,belgianbased businessman challenge grace mugabes diamond ring claim
+1,russia accuses u.s. of denying entry to senior military official,russia accuses u denying entry senior military official
+1,merkel juncker discuss catalan crisis: eu official,merkel juncker discus catalan crisis eu official
+0,franklin graham pulling hundreds of millions from bank using tv ad [video] to promote gay marriage and adoption,franklin graham pulling hundred million bank using tv ad video promote gay marriage adoption
+1,13 killed in gang battles in two mexican states,killed gang battle two mexican state
+0,john mccain throws tantrum,john mccain throw tantrum
+1,five killed in sectarian attack in pakistan,five killed sectarian attack pakistan
+1,catalonia chief opens door to declaration of independence,catalonia chief open door declaration independence
+1,boiler room ‚ ep #53 ‚ say bye bye to culture,boiler room ep say bye bye culture
+1,india probes if shortage of oxygen supplies killed 30 infants,india probe shortage oxygen supply killed infant
+0,embarrassing: the view‚s angry femi-nazi‚s are no match for trump‚s brilliant female campaign manager [video],embarrassing view angry feminazis match trump brilliant female campaign manager video
+0,hilarious! white house totally punks rabid liberal msnbc host rachel maddow,hilarious white house totally punk rabid liberal msnbc host rachel maddow
+1,suicide bomb near cricket stadium in afghan capital kills at least three,suicide bomb near cricket stadium afghan capital kill least three
+0,bosnian forensics experts search ravine for victims of 90s war,bosnian forensics expert search ravine victim war
+0,msnbc ‚equal rights‚ lawyer: trump women ‚have smaller minds than his small hands‚ [video],msnbc equal right lawyer trump woman smaller mind small hand video
+1,saudi arabia arrests 46 for stirring divisions: state media,saudi arabia arrest stirring division state medium
+1,disapproval rating for japan pm abe exceeds support: kyodo poll,disapproval rating japan pm abe exceeds support kyodo poll
+1,russian military jet crashes on takeoff in syria crew killed: agencies,russian military jet crash takeoff syria crew killed agency
+1,saudi trains first women air traffic controllers,saudi train first woman air traffic controller
+0,tucker carlson slams vox.com over ‚fake news‚,tucker carlson slam voxcom fake news
+1,u.s. official says not ruling out eventual direct talks with north korea,u official say ruling eventual direct talk north korea
+0,multi-millionaire #nfl players take knee during national anthem on 9-11 to protest ‚oppression‚ next to armed forces who risk their lives for less than 20k per year [video],multimillionaire nfl player take knee national anthem protest oppression next armed force risk life less k per year video
+0,"wow! obama‚s swan song: 6051 illegal alien kids dumped in u.s. communities in october""",wow obamas swan song illegal alien kid dumped u community october
+1,hezbollah says kurdish vote a step toward wider mideast partition,hezbollah say kurdish vote step toward wider mideast partition
+0,shocking: why our fed government will grant ‚disabled‚ status with benefits to spanish speaking residents of puerto rico,shocking fed government grant disabled status benefit spanish speaking resident puerto rico
+0,mother of son killed in afghanistan to anti-american 49er‚s qb colin kaepernick: ‚my heart is exploding,mother son killed afghanistan antiamerican er qb colin kaepernick heart exploding
+0,"obama gives un authority to vet 9000 ‚refugees‚ from latin america to u.s.""",obama give un authority vet refugee latin america u
+1,russia's putin says hasn't decided if he will run in 2018 election,russia putin say hasnt decided run election
+0,black politician explains why left‚s ‚racist‚ critique of trump is wrong,black politician explains left racist critique trump wrong
+1,u.s. calls for u.n. security council vote on north korea on monday,u call un security council vote north korea monday
+0,"female reporter assures viewers germany‚s carnival is free of ‚rapefugees‚ as men sexually assault her on live tv [video]""",female reporter assures viewer germany carnival free rapefugees men sexually assault live tv video
+0,internet: living with the great firewall of china,internet living great firewall china
+0,question: since paris terror attacks,question since paris terror attack
+1,trump says military action against north korea is not first choice,trump say military action north korea first choice
+0,why would obama‚s send their daughter to nyc to intern with a self described ‚sexual predator‚ of her little sister?,would obamas send daughter nyc intern self described sexual predator little sister
+1,mccain warns iraq against misuse of u.s. arms against kurds,mccain warns iraq misuse u arm kurd
+1,google apologizes after changing name of trump tower and trump hotel on google maps,google apologizes changing name trump tower trump hotel google map
+1,boston brakes? how to hack a new car with your iphone or android,boston brake hack new car iphone android
+0,here‚s the best way to silence a liberal demanding the impeachment of president trump,here best way silence liberal demanding impeachment president trump
+0,hurricane irma swirling very close to leeward islands: nhc,hurricane irma swirling close leeward island nhc
+0,guinean forces kill one wound several in bauxite mining town riot,guinean force kill one wound several bauxite mining town riot
+1,iraqi soldiers join turkish exercises near shared border: witness,iraqi soldier join turkish exercise near shared border witness
+0,if you‚re easily offended,youre easily offended
+0,hysterical! delusional hillary claims ‚epidemic‚ of ‚fake news‚ was her downfall [video],hysterical delusional hillary claim epidemic fake news downfall video
+0,was his death coincidental? [video] he warned us obama would divide us by race and class‚he claimed he had proof‚then suddenly he died,death coincidental video warned u obama would divide u race classhe claimed proofthen suddenly died
+1,russia accuses u.s. of pretending to fight islamic state in syria iraq,russia accuses u pretending fight islamic state syria iraq
+1,mexico expels north korean ambassador over nuclear tests,mexico expels north korean ambassador nuclear test
+0,woman hospitalized,woman hospitalized
+0,obama races to set gitmo terrorists free‚leaves servicemen punished for making ‚heat-of-the-battle decisions that saved lives‚ in fort leavenworth,obama race set gitmo terrorist freeleaves serviceman punished making heatofthebattle decision saved life fort leavenworth
+1,brazil studying extradition of italian ex-leftist guerilla battisti,brazil studying extradition italian exleftist guerilla battisti
+1,here we go: georgia politician calls for removal of stone mountain‚s giant carving of confederate leaders: ‚a blight on our state‚,go georgia politician call removal stone mountain giant carving confederate leader blight state
+1,unhcr on 'full alert' as 11000 rohingya flee in a day,unhcr full alert rohingya flee day
+1,what‚s the leading killer of american adults under 50? drug overdose.,whats leading killer american adult drug overdose
+1,saudi king heads to russia with oil investment and syria on agenda,saudi king head russia oil investment syria agenda
+1,fighting kills at least 25 in oil region of south sudan,fighting kill least oil region south sudan
+0,breaking: us supreme court rules king obama overstepped authority‚executive amnesty for 5 million illegal aliens/ democrat voters not going to happen,breaking u supreme court rule king obama overstepped authorityexecutive amnesty million illegal alien democrat voter going happen
+0,legal fears push newsweek to delete eichenwald‚s articles used to smear sputnik news,legal fear push newsweek delete eichenwalds article used smear sputnik news
+1,seven iranians freed in the prisoner swap have not returned to iran,seven iranian freed prisoner swap returned iran
+0,o‚reilly blasts fox news‚ liberal murdoch brothers after disastrous viewer ratings are revealed,oreilly blast fox news liberal murdoch brother disastrous viewer rating revealed
+1,joy and relief greet puerto rico fuel deliveries after hurricane,joy relief greet puerto rico fuel delivery hurricane
+1,minsk cultural hub becomes haven from authorities,minsk cultural hub becomes authority
+1,spain's pm says may use constitution to block catalan independence,spain pm say may use constitution block catalan independence
+1,sweeping change in china's military points to more firepower for xi,sweeping change china military point firepower xi
+1,belgium eyes british u.s. jets; french offer under legal scrutiny,belgium eye british u jet french offer legal scrutiny
+0,in their best red stilettos german transvestites stomp on afd,best red stiletto german transvestite stomp afd
+0,"egypt ""hunting down"" gays conducting forced anal exams - amnesty",egypt hunting gay conducting forced anal exam amnesty
+0,black politicians increase attacks on ben carson,black politician increase attack ben carson
+0,twitter user suggests ‚climate deniers‚ should be shot,twitter user suggests climate denier shot
+1,u.s. government watchdog calls for changes in afghan training effort,u government watchdog call change afghan training effort
+1,eu leaders urge full inquiry into malta journalist murder,eu leader urge full inquiry malta journalist murder
+1,thousands of new rohingya refugees flee violence hunger in myanmar for bangladesh,thousand new rohingya refugee flee violence hunger myanmar bangladesh
+1,u.n. chief pushes for 900 more peacekeepers in central africa,un chief push peacekeeper central africa
+0,the horrible end game: bernie sanders calls for socialized medicine aka single-payer healthcare [video],horrible end game bernie sander call socialized medicine aka singlepayer healthcare video
+0,ag jeff sessions warns leakers‚taking steps to stop the leaks that ‚hurt our country‚ [video],ag jeff session warns leakerstaking step stop leak hurt country video
+0,boiler room #102 ‚ tales from the black pill,boiler room tale black pill
+0,breaking: secret service laptop stolen from vehicle in bronx‚you won‚t believe what‚s on it!,breaking secret service laptop stolen vehicle bronxyou wont believe whats
+1,suicide bombers attack power station north of baghdad killing seven: police,suicide bomber attack power station north baghdad killing seven police
+0,bail denied: convicted muslim rapist refuses mandatory sex offender course because it ‚conflicts with [his] islamic faith‚,bail denied convicted muslim rapist refuse mandatory sex offender course conflict islamic faith
+0,boiler room ep #72 ‚ trailer parks in heaven,boiler room ep trailer park heaven
+0,clinton supporter carl bernstein : fbi found a ‚real bombshell‚ [video],clinton supporter carl bernstein fbi found real bombshell video
+0,amazing! judge lynn toler on the definition of manhood,amazing judge lynn toler definition manhood
+1,israeli minister says was misunderstood on war remarks with iran,israeli minister say misunderstood war remark iran
+1,trump transition: as secretary of state,trump transition secretary state
+1,trial by youtube: mainstream media use second-hand oregon account to cast blame on dead rancher,trial youtube mainstream medium use secondhand oregon account cast blame dead rancher
+0,unhinged feminist protesters making ‚p*ssyhats‚ to wear at the anti-trump march,unhinged feminist protester making pssyhats wear antitrump march
+1,more arrests in apparent saudi campaign against critics: activists,arrest apparent saudi campaign critic activist
+0,propaganda: star trek beyond ‚ social justice warriors in space,propaganda star trek beyond social justice warrior space
+1,trump offers us support to french president after irma hits french islands,trump offer u support french president irma hit french island
+0,stunning: hillary‚s own numbers show her tax hike proposals will cost american workers additional $1 trillion,stunning hillary number show tax hike proposal cost american worker additional trillion
+0,proactive president trump just took huge step to make america safe‚while democrats are determined to make us more like france,proactive president trump took huge step make america safewhile democrat determined make u like france
+1,catalan leader signs document declaring independence from spain,catalan leader sign document declaring independence spain
+1,prosecutor links suspect arrested last week near paris to isis,prosecutor link suspect arrested last week near paris isi
+1,norwegian policeman jailed for 21 years in drugs case,norwegian policeman jailed year drug case
+0,obama throws gasoline on black terrorists war on cops: ‚the moment is here‚,obama throw gasoline black terrorist war cop moment
+0,pregnant ‚pro-choice‚ woman asks $1 million ransom for baby: ‚how much would you pay to stop an abortion?‚,pregnant prochoice woman asks million ransom baby much would pay stop abortion
+1,mother of rwandan president's challenger tells court of torture,mother rwandan president challenger tell court torture
+1,u.s. student held in north korea died of oxygen starved brain: coroner,u student held north korea died oxygen starved brain coroner
+0,embarrassing: [video] dnc dingbat can‚t tell msnbc host the difference between a democrat and socialist,embarrassing video dnc dingbat cant tell msnbc host difference democrat socialist
+0,troll congresswoman wants you to sell your guns to the government,troll congresswoman want sell gun government
+0,gut wrenching: obama meets with rappers to discuss criminal justice reform‚doublespeak for pardoning criminals,gut wrenching obama meet rapper discus criminal justice reformdoublespeak pardoning criminal
+0,boom! thug who lit baltimore cvs on fire‚wreaked havoc on city‚gets shocking sentence [video],boom thug lit baltimore cv firewreaked havoc citygets shocking sentence video
+0,radical ny attorney general cracking down on conservatism‚working to make opposing the left a crime,radical ny attorney general cracking conservatismworking make opposing left crime
+0,syrian refugee family lied about bed bug infestation to get better housing,syrian refugee family lied bed bug infestation get better housing
+0,megyn kelly not exactly getting warm welcome at nbc: ‚people are p*ssed‚‚nbc ‚bit off more than they can chew when they hired megyn‚,megyn kelly exactly getting warm welcome nbc people pssednbc bit chew hired megyn
+1,three vehicles torched in long-running south african taxi war,three vehicle torched longrunning south african taxi war
+0,why is jill stein demanding a recount? is hillary camp using her in desperate effort to stop trump?‚‚is hillary clinton willing to risk a civil war in america?‚ [video],jill stein demanding recount hillary camp using desperate effort stop trumpis hillary clinton willing risk civil war america video
+0,lol! when your client,lol client
+1,canada bans its agencies from sharing information that could lead to torture,canada ban agency sharing information could lead torture
+0,breaking! charlotte news station reports cops have dash cam of #keithscott coming toward them with gun in hand,breaking charlotte news station report cop dash cam keithscott coming toward gun hand
+0,h.r. mcmaster repeatedly refuses to say if he can work with steve bannon‚a deep state set up? [video],hr mcmaster repeatedly refuse say work steve bannona deep state set video
+0,members: ep #5 ‚ drive by wire: ‚taxi to the un‚ with patrick and matt lee,member ep drive wire taxi un patrick matt lee
+1,romanian soldier killed in afghanistan convoy attack,romanian soldier killed afghanistan convoy attack
+1,hezbollah leader says u.s. actions aiding islamic state in syria,hezbollah leader say u action aiding islamic state syria
+1,canada granting asylum to u.s. border crossers at higher rates: data,canada granting asylum u border crossers higher rate data
+0,plastic persona: behind the scenes of the ted cruz media machine,plastic persona behind scene ted cruz medium machine
+1,white house finalizing $29 billion request for disaster aid: ap,white house finalizing billion request disaster aid ap
+1,'political mainstream' corbyn says britain's labour ready for government,political mainstream corbyn say britain labour ready government
+1,nato ships hold missile defense drill near scotland pentagon says,nato ship hold missile defense drill near scotland pentagon say
+0,ohio elector torches anti-trump letters he received from crybaby liberals [video],ohio elector torch antitrump letter received crybaby liberal video
+1,cruz & kasich quit: trump crushes elite establishment,cruz kasich quit trump crush elite establishment
+0,shocker! why bernie supporters at dnc overwhelmingly say they‚ll vote trump‚[video],shocker bernie supporter dnc overwhelmingly say theyll vote trumpvideo
+1,yrc shutters terminal in puerto rico as hurricane irma approaches,yrc shutter terminal puerto rico hurricane irma approach
+0,breaking news: obama to meet with special guest in oval office‚ is this proof that hillary‚s campaign is officially over?,breaking news obama meet special guest oval office proof hillary campaign officially
+1,uk counter-terrorism police arrest woman under official secrets act,uk counterterrorism police arrest woman official secret act
+1,iran arrests islamic state member foils attacks: revolutionary guards,iran arrest islamic state member foil attack revolutionary guard
+1,lawyer assisting in murdered italian student investigation detained in egypt,lawyer assisting murdered italian student investigation detained egypt
+1,collapsing: why the ‚russia hack‚ witch hunt will not end well for congress,collapsing russia hack witch hunt end well congress
+0,oops! #deplorable hillary just got busted offending half of her base: called bernie sanders supporters basement dwellers [video],oops deplorable hillary got busted offending half base called bernie sander supporter basement dweller video
+1,france paying close attention to u.n. report on chemical attacks in syria,france paying close attention un report chemical attack syria
+0,king obama asks taxpayers to increase his post-presidency pay,king obama asks taxpayer increase postpresidency pay
+1,turkish police arrest suspect in killing of syrian activist,turkish police arrest suspect killing syrian activist
+0,huckabee backs trump‚s comments on protests: ‚is he supposed to do what barack obama used to do and jump to conclusions‚,huckabee back trump comment protest supposed barack obama used jump conclusion
+1,as north korea threat looms trump to address world leaders at u.n.,north korea threat loom trump address world leader un
+1,tunisians march against contested corruption amnesty,tunisian march contested corruption amnesty
+0,obama‚s embarrassing farewell interview: mom was ‚hippie‚ but shaved her legs‚promises to take 5-star mooch on ‚nice vacation‚she deserves it‚,obamas embarrassing farewell interview mom hippie shaved legspromises take star mooch nice vacationshe deserves
+0,wow! starbucks ceo just accused whites of committing senseless violence against ‚people who are not white‚‚and he‚s getting destroyed on social media,wow starbucks ceo accused white committing senseless violence people whiteand he getting destroyed social medium
+0,hillary coughing again,hillary coughing
+0,president trump fires acting attorney general,president trump fire acting attorney general
+1,fukushima court rules tepco government liable over 2011 disaster: media,fukushima court rule tepco government liable disaster medium
+1,mockingbird mirror: declassified docs depict deeper link between the cia and american media,mockingbird mirror declassified doc depict deeper link cia american medium
+1,norway's right-wing government projected to win re-election,norway rightwing government projected win reelection
+0,registered sex offender arrested after ‚harassing‚ little girls in girl‚s bathroom,registered sex offender arrested harassing little girl girl bathroom
+0,popular actor travels to calais jungle to garner sympathy for ‚migrants‚‚refugees attack them‚beat them up‚steal their phones,popular actor travel calais jungle garner sympathy migrantsrefugees attack thembeat upsteal phone
+1,iraqi forces take control of all oil fields operated by state-owned north oil in kirkuk,iraqi force take control oil field operated stateowned north oil kirkuk
+1,henningsen on trump rally fervor: ‚political relativism has descended on america‚,henningsen trump rally fervor political relativism descended america
+0,police commissioner explains why it‚s hard to hire black cops in nyc,police commissioner explains hard hire black cop nyc
+1,philippines suspends trade with north korea to comply with u.n. resolution,philippine suspends trade north korea comply un resolution
+1,china needs tougher clean fuel targets to meet paris climate pact: report,china need tougher clean fuel target meet paris climate pact report
+0,priceless! president trump to cnn‚s jim acosta: ‚i like real news. not fake news. you‚re fake news.‚ [video],priceless president trump cnns jim acosta like real news fake news youre fake news video
+0,boiler room ‚ ep #55 ‚ roasting the wretched hive of scum and villainy,boiler room ep roasting wretched hive scum villainy
+1,cuba says u.s. decision to reduce havana embassy staff is 'hasty',cuba say u decision reduce havana embassy staff hasty
+1,guatemala federal auditor to probe president's pay bonus,guatemala federal auditor probe president pay bonus
+1,late summer rains private food supplies limit impact of north korea drought,late summer rain private food supply limit impact north korea drought
+1,convoy to leave syria's raqqa city on saturday: u.s.-led coalition,convoy leave syria raqqa city saturday usled coalition
+1,chile presidential hopeful pinera vows to double economic growth,chile presidential hopeful pinera vow double economic growth
+1,romania to hold same-sex marriage referendum this autumn: ruling party leader,romania hold samesex marriage referendum autumn ruling party leader
+1,hacking democracy? cia accusing russia of doing what langley does so well,hacking democracy cia accusing russia langley well
+1,conservatives fight back against proposed ‚obamacare lite‚‚demand full repeal of obamacare,conservative fight back proposed obamacare litedemand full repeal obamacare
+0,rolling stones demand trump stop using their music: ‚can you imagine a president trump?‚the worst nightmare‚,rolling stone demand trump stop using music imagine president trumpthe worst nightmare
+1,german social democrats say election race still open despite weak polls,german social democrat say election race still open despite weak poll
+0,after 8 years of silence from obama on cop killings,year silence obama cop killing
+0,lesbians4hillary? wait‚what about her unyielding support for traditional marriage in this video?,lesbianshillary waitwhat unyielding support traditional marriage video
+1,exposing the shakespearean tragedy of the ‚russia hacking‚ hoax,exposing shakespearean tragedy russia hacking hoax
+1,smaller eu states need stronger voice not brussels says czech election favorite,smaller eu state need stronger voice brussels say czech election favorite
+1,son of egyptian immigrants hopes to become first muslim governor in u.s‚will push for ‚sanctuary state‚,son egyptian immigrant hope become first muslim governor uswill push sanctuary state
+0,shocking audio released of john kerry discussing obama allowing the rise of isis to help regime change in syria,shocking audio released john kerry discussing obama allowing rise isi help regime change syria
+1,boys 'cried from barred windows' as islamic school blaze kills 23 in malaysia,boy cried barred window islamic school blaze kill malaysia
+1,rouhani says iaea unlikely to accept u.s. demand for iran military site inspection,rouhani say iaea unlikely accept u demand iran military site inspection
+0,obama‚s race war backfires: shocking number of students chose not to attend u of missouri after black lives matter tantrums,obamas race war backfire shocking number student chose attend u missouri black life matter tantrum
+1,u.s. urges congolese security forces' restraint probe into violence,u urge congolese security force restraint probe violence
+1,uk's prince george starts school pregnant mum kate too ill to go,uk prince george start school pregnant mum kate ill go
+1,pro-houthi fighters call powerful yemen ally 'evil' escalating feud,prohouthi fighter call powerful yemen ally evil escalating feud
+1,hurdles high for merkel in three-way 'jamaica' tie-up talks,hurdle high merkel threeway jamaica tieup talk
+1,chicago: 117 killed,chicago killed
+1,saudi arabia names nabeel al-amudi transport minister,saudi arabia name nabeel alamudi transport minister
+0,assimilation update: afghan muslim immigrant living in germany makes violent rap video [watch],assimilation update afghan muslim immigrant living germany make violent rap video watch
+1,syria: british and american presence directly escalating conflict near al-tanf,syria british american presence directly escalating conflict near altanf
+1,turkey's economy minister defends predecessor over iran sanctions charges,turkey economy minister defends predecessor iran sanction charge
+0,wife of british medic calls radio show‚says husband processed migrants with ‚isis stuff‚ on phones‚men push women and children to back of line for treatment [video],wife british medic call radio showsays husband processed migrant isi stuff phonesmen push woman child back line treatment video
+1,at least two dead in bombing on mogadishu outskirts,least two dead bombing mogadishu outskirt
+1,eu border controls could be extended in crisis commission says,eu border control could extended crisis commission say
+1,japan court rules tepco liable over fukushima: media,japan court rule tepco liable fukushima medium
+0,while democrats were focused on russia and p*ssy hats,democrat focused russia pssy hat
+1,osce watchdog criticizes german social media law as too broad,osce watchdog criticizes german social medium law broad
+1,uzbek leader reshuffles security officials removes veteran defense minister,uzbek leader reshuffle security official remove veteran defense minister
+1,despite deaths german military eyes recruitment bump from new reality show,despite death german military eye recruitment bump new reality show
+1,should secret service arrest johnny depp for trump assassination comment after court docs show managers say he abused his wife?,secret service arrest johnny depp trump assassination comment court doc show manager say abused wife
+1,french defense minister: scrapping nuclear deal would be gift to iran hardliners,french defense minister scrapping nuclear deal would gift iran hardliner
+0,obama cozies up to another communist leader to discuss human rights‚ and tpp?,obama cozy another communist leader discus human right tpp
+1,two injured in shooting at south africa's cape town airport,two injured shooting south africa cape town airport
+0,young black man who says bill clinton is his father blames hillary for keeping them apart‚just like slavery when wives banished husband‚s black offspring [video],young black man say bill clinton father blame hillary keeping apartjust like slavery wife banished husband black offspring video
+1,colombia arrests local director of portugal's j.martins on corruption charges,colombia arrest local director portugal jmartins corruption charge
+0,angry veteran posts emotional viral video against flag burning: ‚what‚s happening is sickening‚ [video],angry veteran post emotional viral video flag burning whats happening sickening video
+1,exclusive: 'we will kill you all' - rohingya villagers in myanmar beg for safe passage,exclusive kill rohingya villager myanmar beg safe passage
+1,venezuela president brings cuba donation in wake of hurricane,venezuela president brings cuba donation wake hurricane
+1,france's macron seeks to play mediation role between iran u.s.,france macron seek play mediation role iran u
+1,thai air safety upgrade opens up growing china korea japan markets,thai air safety upgrade open growing china korea japan market
+1,czechs vote for new parliament wealthy businessman seen as likely next pm,czech vote new parliament wealthy businessman seen likely next pm
+1,vampire scare prompts u.n. pullout from southern malawi,vampire scare prompt un pullout southern malawi
+1,saudi minister visits north syria for raqqa talks,saudi minister visit north syria raqqa talk
+1,tension grips nigerian city as separatist leader goes missing,tension grip nigerian city separatist leader go missing
+1,juncker blasts britain for 'huge' unanswered brexit questions,juncker blast britain huge unanswered brexit question
+1,protesters clash with police at turin's g7 labor meeting,protester clash police turin g labor meeting
+0,wow! washed up liberal cher uses tweet about france terror attack to remind followers she once won an award there,wow washed liberal cher us tweet france terror attack remind follower award
+0,two baltimore police officers charged in brutal beating of 16 yr old caught on video‚why al sharpton and black lives matter terrorists won‚t care,two baltimore police officer charged brutal beating yr old caught videowhy al sharpton black life matter terrorist wont care
+0,bravo! ted cruz to introduce bill to help trump keep one of his biggest campaign promises to americans,bravo ted cruz introduce bill help trump keep one biggest campaign promise american
+1,turkey calls on barzani to cancel northern iraq referendum,turkey call barzani cancel northern iraq referendum
+1,tax march: where were you as obama wrecked libya?,tax march obama wrecked libya
+1,trump strikes blow at iran nuclear deal in major u.s. policy shift,trump strike blow iran nuclear deal major u policy shift
+0,teacher quits job after 5th,teacher quits job th
+1,u.s. says 24 people harmed from recent 'attacks' in cuba,u say people harmed recent attack cuba
+1,mexico's pena nieto says disaster funds limited need to rework budget,mexico pena nieto say disaster fund limited need rework budget
+0,"why did will and jada pinkett smith ‚happily donate‚ $150000 to radical racist louis farrakhan‚s organization?""",jada pinkett smith happily donate radical racist louis farrakhans organization
+1,actress goes solo to push for end to philippines drug war,actress go solo push end philippine drug war
+0,fox host destroy race enthusiast juan williams after he attempts to race shame her‚,fox host destroy race enthusiast juan williams attempt race shame
+0,unite the right organizer ambushed by crowd‚rushed to safety by police at press conference [video],unite right organizer ambushed crowdrushed safety police press conference video
+0,hillary just can‚t stop lying‚even after she lost the election,hillary cant stop lyingeven lost election
+0,lol! un refugee spokes-celebrity angelina jolie admonishes u.s. for ‚undermining international law‚ by resisting flow of muslim refugees,lol un refugee spokescelebrity angelina jolie admonishes u undermining international law resisting flow muslim refugee
+1,russia left troops in belarus after wargames: ukraine,russia left troop belarus wargames ukraine
+1,ship carrying migrants sinks off turkish coast kills 15 - coast guard,ship carrying migrant sink turkish coast kill coast guard
+0,[video] they burned down cities‚14 yr old doused a non-white baltimore business owner with lighter fluid,video burned city yr old doused nonwhite baltimore business owner lighter fluid
+0,finally,finally
+1,palestine rivals hamas fatah agree on rafah crossing handover nov. 1: sources,palestine rival hamas fatah agree rafah crossing handover nov source
+1,uk police charge serving soldiers over suspected far-right terrorism,uk police charge serving soldier suspected farright terrorism
+1,above the law: obama goes around congress (again) to place gag order on reporting about firearms,law obama go around congress place gag order reporting firearm
+1,russia-trump campaign collusion an 'open' issue: u.s. senate panel chiefs,russiatrump campaign collusion open issue u senate panel chief
+0,angry parents walk out of high school principal‚s racist,angry parent walk high school principal racist
+1,china to prosecute former party boss of chongqing,china prosecute former party bos chongqing
+0,trump supporter destroys ‚ghetto‚ mcdonald‚s worker who refused to serve cop in virginia,trump supporter destroys ghetto mcdonalds worker refused serve cop virginia
+0,black republican and brilliant neurosurgeon announces run for prez: huffington post places story next to story about dog living in tree trunk,black republican brilliant neurosurgeon announces run prez huffington post place story next story dog living tree trunk
+1,eu sticks to libya strategy on migrants despite human rights concerns,eu stick libya strategy migrant despite human right concern
+0,chilling testimony of brave 7th grader at tx school board meeting: ‚today i was given an assignment at school that questioned my faith and said that ‚god is not real'‚ [video],chilling testimony brave th grader tx school board meeting today given assignment school questioned faith said god real video
+0,"cbs 60 minutes withheld trump‚s appeal to ‚stop attacking minorities‚ and ignored reports of attacks on trump supporters""",cbs minute withheld trump appeal stop attacking minority ignored report attack trump supporter
+1,russia builds bridge to move troops across syria's euphrates river: tv,russia build bridge move troop across syria euphrates river tv
+0,trump breaks tradition started by bill clinton‚doesn‚t host white house ramadan dinner‚had other plans [video],trump break tradition started bill clintondoesnt host white house ramadan dinnerhad plan video
+0,if you‚re a law-abiding citizen who carries a gun,youre lawabiding citizen carry gun
+1,u.s. mulls potential f-16 sale to greece: trump,u mull potential f sale greece trump
+0,embarrassing: pro-gun control reporter attempts hit job on ar-15‚s‚claims he got ‚temporary ptsd‚‚viewers respond: ‚if you have a man card turn it in immediately‚ [video],embarrassing progun control reporter attempt hit job arsclaims got temporary ptsdviewers respond man card turn immediately video
+0,interview: did the ‚alt right‚ die in charlottesville?,interview alt right die charlottesville
+0,terror fears keeping tourists away from open borders paris‚costs economy ‚ç¨1.3 billion [shocking videos],terror fear keeping tourist away open border pariscosts economy billion shocking video
+0,condoleezza rice brilliantly shuts down ‚the view‚ dingbats over trump-russia collusion [video],condoleezza rice brilliantly shuts view dingbat trumprussia collusion video
+1,philippine police halt drug tests after residents petition court,philippine police halt drug test resident petition court
+0,muslim congressman abruptly leaves dc: uses finely honed divisive race skills to lead fight against cops in mn,muslim congressman abruptly leaf dc us finely honed divisive race skill lead fight cop mn
+1,factbox: main elements in france's counter-terrorism bill,factbox main element france counterterrorism bill
+0,no longer a fantasy: could hillary clinton actually drop out of the race?,longer fantasy could hillary clinton actually drop race
+1,warning: don‚t worry if the stock market goes crazy after election,warning dont worry stock market go crazy election
+1,factbox - german coalition we want experiment to succeed - cdu,factbox german coalition want experiment succeed cdu
+1,u.s. congressional panels spar over 'trump dossier' on russia contacts,u congressional panel spar trump dossier russia contact
+0,barack obama‚s final arms-export totals doubles that of bush administration,barack obamas final armsexport total double bush administration
+1,germany condemns latest north korea missile test in strongest terms,germany condemns latest north korea missile test strongest term
+0,trump protest organizer destroyed in debate on illegals: ‚do you think people have a right to lock their doors?‚ [video],trump protest organizer destroyed debate illegals think people right lock door video
+1,insider firm ‚flashpoint‚ tied to orlando shooting,insider firm flashpoint tied orlando shooting
+0,michigan public high school hosts segregated muslim sharia prom,michigan public high school host segregated muslim sharia prom
+1,girl strapped with bomb kills five in cameroon mosque,girl strapped bomb kill five cameroon mosque
+1,myanmar army opens probe amid reports of killings abuse of rohingya muslims,myanmar army open probe amid report killing abuse rohingya muslim
+0,angry dad confronts school board after finding out children being taught islam in school [video],angry dad confronts school board finding child taught islam school video
+1,deadly somalia blast reveals flaws in intelligence efforts,deadly somalia blast reveals flaw intelligence effort
+1,british foreign secretary visits libyan strongman backs ceasefire,british foreign secretary visit libyan strongman back ceasefire
+1,senate confirms huntsman as ambassador to russia,senate confirms huntsman ambassador russia
+0,zbigniew brzezinski,zbigniew brzezinski
+1,deadline nears for catalan leader to clarify independence stance,deadline nears catalan leader clarify independence stance
+0,black lives matter terror group tweet insane threats and messages celebrating deaths of dallas cops,black life matter terror group tweet insane threat message celebrating death dallas cop
+1,eu aims to reopen embassy in libya,eu aim reopen embassy libya
+0,cnn cuts feed of congressman as soon as he speaks about refugee crime‚anchor claims it‚s ‚tv gremlins‚ [video],cnn cut feed congressman soon speaks refugee crimeanchor claim tv gremlin video
+0,money to ‚bern!‚‚socialist bernie sanders endorses clinton‚buys third home on lake for $600k only 3 weeks later,money bernsocialist bernie sander endorses clintonbuys third home lake k week later
+1,average of polls puts new zealand's ruling nationals just ahead,average poll put new zealand ruling national ahead
+0,what donald trump will do for christmas now that he‚s president-elect [video],donald trump christmas he presidentelect video
+0,yikes! the claws come out on the view,yikes claw come view
+0,game on! uc berkeley bans ann coulter from immigration speech‚she‚s going anyway,game uc berkeley ban ann coulter immigration speechshes going anyway
+1,boiler room ‚ ep #48 ‚ agenda 2030 and beyond with branko maliƒá,boiler room ep agenda beyond branko mali
+0,major donations to clinton foundation from country who tortures dissidents and provided lavish digs for bill and chelsea during cgi conference,major donation clinton foundation country torture dissident provided lavish dig bill chelsea cgi conference
+1,assange: ‚trump in conflict with cia over syria policy‚,assange trump conflict cia syria policy
+0,sunday screening: ‚a noble lie‚ (2011),sunday screening noble lie
+0,exploding african refugee population stressing welfare system in minnesota are sending millions of dollars back to africa,exploding african refugee population stressing welfare system minnesota sending million dollar back africa
+0,breaking: detroit news reports potential new evidence of massive vote tampering,breaking detroit news report potential new evidence massive vote tampering
+1,trump must be respected as u.s. president says germany's merkel,trump must respected u president say germany merkel
+0,hey rachel maddow‚while you‚re on the subject of taxes‚what about tax evading hosts at msnbc?,hey rachel maddowwhile youre subject taxeswhat tax evading host msnbc
+1,disabled in war afghan soldiers seek a living on the streets,disabled war afghan soldier seek living street
+0,president trump blasts phony climate change crybabies: ‚i was elected to represent the citizens of pittsburgh,president trump blast phony climate change crybaby elected represent citizen pittsburgh
+0,jesse watters takes on young anti-trump protesters: ‚he said that black people are ignorant‚ [video],jesse watters take young antitrump protester said black people ignorant video
+1,headless torso could belong to submarine journalist: danish police,headless torso could belong submarine journalist danish police
+0,breaking: reporter says secret service took debate attendees phones to avoid flash that could trigger hillary‚s seizures [video],breaking reporter say secret service took debate attendee phone avoid flash could trigger hillary seizure video
+1,turkey urges u.s. to review visa suspension as lira stocks tumble,turkey urge u review visa suspension lira stock tumble
+0,only days after announcing shameless money grab‚clock boy explains why he wants to come back to texas,day announcing shameless money grabclock boy explains want come back texas
+1,france's macron unions seek upper hand in struggle over reforms,france macron union seek upper hand struggle reform
+0,what the media‚s not telling you about the manchester terror attack [video],medias telling manchester terror attack video
+0,the deep state speaks: clapper and brennan threaten trump during aspen institute‚s lefty gaggle [video],deep state speaks clapper brennan threaten trump aspen institute lefty gaggle video
+1,exclusive: scandal-hit vietnam official had been cleared by previous government,exclusive scandalhit vietnam official cleared previous government
+1,uk police end armed hostage-taking at english leisure complex: bbc,uk police end armed hostagetaking english leisure complex bbc
+1,britain and france to work to enforce iran nuclear deal: uk pm may's office,britain france work enforce iran nuclear deal uk pm may office
+1,china's washington envoy says u.s. should stop threats over north korea,china washington envoy say u stop threat north korea
+1,syrian army allies 3 km from deir al-zor enclave: state tv,syrian army ally km deir alzor enclave state tv
+0,disgraceful: us air force can no longer afford 21-gun salute at vet funerals‚plenty of funds for muslim immigrants,disgraceful u air force longer afford gun salute vet funeralsplenty fund muslim immigrant
+0,cnn‚s fareed zakaria busts out a profanity filled rant against trump [video],cnns fareed zakaria bust profanity filled rant trump video
+0,iran ‚will respond‚ if us moves to designate revolutionary guard as ‚terrorist group‚,iran respond u move designate revolutionary guard terrorist group
+1,qatar neighbors trade barbs at arab league over boycott,qatar neighbor trade barb arab league boycott
+1,kenya's ruling party moves to amend election law ahead of vote re-run,kenya ruling party move amend election law ahead vote rerun
+1,japan's abe vows to put education spending before budget balance,japan abe vow put education spending budget balance
+0,watch angry 49ers fan burn colin kaepernick jersey‚with the national anthem playing‚awesome!,watch angry er fan burn colin kaepernick jerseywith national anthem playingawesome
+0,forget about russia‚here‚s what‚s really affecting our elections: pro-hillary detroit city clerk‚hired illiterate poll workers and more,forget russiaheres whats really affecting election prohillary detroit city clerkhired illiterate poll worker
+1,kenyan president election overturned by court attacks judiciary,kenyan president election overturned court attack judiciary
+0,lol! charlotte #blacklivesmatter rioters post ‚things we need list‚: includes ‚white folks to give money for bail‚,lol charlotte blacklivesmatter rioter post thing need list includes white folk give money bail
+1,putin says russia hopes to broaden cooperation with u.s.,putin say russia hope broaden cooperation u
+0,camping nightmare: machete wielding refugee drags 23-yr old woman from tent‚forces boyfriend to watch the unthinkable,camping nightmare machete wielding refugee drag yr old woman tentforces boyfriend watch unthinkable
+0,james clapper himself debunks ‚russia hacked us election‚ meme,james clapper debunks russia hacked u election meme
+1,two worlds of labour britain's opposition party struggles to unite,two world labour britain opposition party struggle unite
+1,u.s.-backed forces in final push against islamic state raqqa,usbacked force final push islamic state raqqa
+1,spanish red cross physiotherapist killed in afghanistan,spanish red cross physiotherapist killed afghanistan
+0,[video] fairfax,video fairfax
+1,defying trump iran says will boost missile capabilities,defying trump iran say boost missile capability
+1,turkey feels betrayed over eu accession but still wants to join the club,turkey feel betrayed eu accession still want join club
+0,no words‚ [video],word video
+1,cnn‚s hostile treatment of congresswoman tulsi gabbard after revealing us are arming,cnns hostile treatment congresswoman tulsi gabbard revealing u arming
+0,how the fbi creates ‚domestic terror‚ in the united states,fbi creates domestic terror united state
+0,live feed‚#batonrouge update 3 cops murdered‚several shot‚officers responding to gunfire call‚#obamaswaroncops,live feedbatonrouge update cop murderedseveral shotofficers responding gunfire callobamaswaroncops
+1,suicide bombers attack two afghan mosques at least 72 dead,suicide bomber attack two afghan mosque least dead
+1,iraq gives kurdistan till friday to hand over control of airports to avoid embargo,iraq give kurdistan till friday hand control airport avoid embargo
+1,u.s. senators seek answers on u.s. presence in niger after ambush,u senator seek answer u presence niger ambush
+1,on putin's birthday opposition activists protest call for him to quit,putin birthday opposition activist protest call quit
+0,desperate to stop the flow of muslim refugees into sweden,desperate stop flow muslim refugee sweden
+0,cnn hack attempts ‚gotcha‚ moment with trump‚immediately regrets it [video],cnn hack attempt gotcha moment trumpimmediately regret video
+1,somalia's puntland region captures weapons-laden boat from yemen,somalia puntland region capture weaponsladen boat yemen
+1,after irma a mixed journey home for florida evacuees,irma mixed journey home florida evacuee
+1,fake news week: how mainstream media ‚fake news‚ led to the u.s. invasion of iraq,fake news week mainstream medium fake news led u invasion iraq
+0,irrational georgetown professor has month-long meltdown over fellow muslim professor who voted for trump: ‚f*ck you!‚ [video],irrational georgetown professor monthlong meltdown fellow muslim professor voted trump fck video
+0,the view dingbats descend on faux conservative host after she calls comey a ‚coward‚ [video],view dingbat descend faux conservative host call comey coward video
+0,nut job glenn beck joins liberal,nut job glenn beck join liberal
+1,ethnic land dispute forces thousands to flee in ivory coast cocoa belt,ethnic land dispute force thousand flee ivory coast cocoa belt
+1,lib professor and harvard grad says pedophilia is not a crime‚read why‚,lib professor harvard grad say pedophilia crimeread
+0,not funny! what these ‚morons‚ did for crooked hillary should frighten every american [video],funny moron crooked hillary frighten every american video
+1,g4s suspends nine staff at uk migrant center says to investigate conduct,g suspends nine staff uk migrant center say investigate conduct
+1,u.s. rejects cambodian accusations calls for opposition leader's release,u reject cambodian accusation call opposition leader release
+0,no ‚dead broke‚ lesbians allowed‚,dead broke lesbian allowed
+0,castro ignores disastrous communist policies that destroyed cubans: blames world leaders at un assembly for allowing millions to go hungry,castro ignores disastrous communist policy destroyed cuban blame world leader un assembly allowing million go hungry
+1,venezuela opposition says 'suspicious' vote results coming,venezuela opposition say suspicious vote result coming
+0,arsonists attack building used by controversial russian director,arsonist attack building used controversial russian director
+1,head of uk's anti-brexit party appeals for help to stop eu exit,head uk antibrexit party appeal help stop eu exit
+0,fox news reporter asks mayor why she‚s using taxpayer money to sue family for epic christmas light display [video],fox news reporter asks mayor shes using taxpayer money sue family epic christmas light display video
+1,malaysia's dissent on myanmar statement reveals cracks in asean facade,malaysia dissent myanmar statement reveals crack asean facade
+1,go home tillerson tells iranian-backed militias in iraq,go home tillerson tell iranianbacked militia iraq
+1,residents of philippines' marawi begin long trudge back to normalcy as battle ends,resident philippine marawi begin long trudge back normalcy battle end
+1,state department approves $3.8 billion in arms sales to bahrain: pentagon,state department approves billion arm sale bahrain pentagon
+1,as north korea girds for latest sanctions economy already feels the squeeze,north korea girds latest sanction economy already feel squeeze
+1,japan's abe announces snap election amid worries over north korea,japan abe announces snap election amid worry north korea
+0,comedy gold: hillary claims trump ‚unfit‚ to handle hurricane caused by ‚climate change‚ [video],comedy gold hillary claim trump unfit handle hurricane caused climate change video
+0,drunks and empty seats: crooked hillary panders to patrons at florida bar‚speaks to empty seats in ft lauderdale baptist church [video],drunk empty seat crooked hillary pander patron florida barspeaks empty seat ft lauderdale baptist church video
+1,belgian soldiers shoot dead knife attacker in brussels,belgian soldier shoot dead knife attacker brussels
+1,lebanon's parliament approves country's first budget since 2005,lebanon parliament approves country first budget since
+1,boiler room ep #77 ‚ the venom of divide and rule,boiler room ep venom divide rule
+0,obama‚s final 6 months‚racist,obamas final monthsracist
+0,hillary‚s state department blocked min wage hike for haiti‚s poorest citizens to keep costs down for u.s. owned factories,hillary state department blocked min wage hike haiti poorest citizen keep cost u owned factory
+0,someone call the waaambulance! glenn beck warns he‚ll be on suicide watch if cruz loses indiana‚you better buckle up beck‚the results are in [video],someone call waaambulance glenn beck warns hell suicide watch cruz loses indianayou better buckle beckthe result video
+1,russia says too early to decide on u.n. resolution on north korea: interfax,russia say early decide un resolution north korea interfax
+1,u.s. cuts staff in cuba over mysterious injuries warns travelers,u cut staff cuba mysterious injury warns traveler
+0,parents jailed and kids taken away for 90 minute delay in getting home to 11-year old,parent jailed kid taken away minute delay getting home year old
+1,brexit talks postponed to hand negotiators more flexibility: britain,brexit talk postponed hand negotiator flexibility britain
+1,judge rules: obama white house showed ‚bad faith‚ in global-warming case,judge rule obama white house showed bad faith globalwarming case
+1,russia says continues dialogue with washington on north korea iran: ria,russia say continues dialogue washington north korea iran ria
+0,yale will tack new fee onto already outrageous tuition costs to help fight phony climate change,yale tack new fee onto already outrageous tuition cost help fight phony climate change
+0,class act: watch betsy devos respond while students at black college yell,class act watch betsy devos respond student black college yell
+1,a young chinese rebel feels the pull of family ties,young chinese rebel feel pull family tie
+1,catalan head says already feels like the president of a free country: interview,catalan head say already feel like president free country interview
+1,criminal: details emerge of washington‚s ‚fast & furious‚ arms trafficking in syria,criminal detail emerge washington fast furious arm trafficking syria
+0,hell comes to frogtown: alt right and triumph of transhumanism,hell come frogtown alt right triumph transhumanism
+0,radical ‚tolerant‚ female black bloc,radical tolerant female black bloc
+0,lol! hypocrite hillary gives speech on evils of ‚inequality‚ while wearing designer pants suits with price tag you won‚t believe,lol hypocrite hillary give speech evil inequality wearing designer pant suit price tag wont believe
+0,new wh communications director: i‚ll bring cnn a box of kleenex when trump wins in 2020 [video],new wh communication director ill bring cnn box kleenex trump win video
+1,senate democratic leader schumer calls for speedy puerto rico relief,senate democratic leader schumer call speedy puerto rico relief
+0,do woman want to elect a bully whose campaign works with shady operatives to incite violence against women,woman want elect bully whose campaign work shady operative incite violence woman
+1,u.n. ban on north korean textiles will disrupt industry and ordinary lives experts say,un ban north korean textile disrupt industry ordinary life expert say
+0,threats to business to remove trump sign prompts even better pro-trump display [video],threat business remove trump sign prompt even better protrump display video
+1,republican senator sends letter to fbi director questioning fbi relationship to british spy who investigated trump,republican senator sends letter fbi director questioning fbi relationship british spy investigated trump
+0,oops‚cdc employees sick of dealing with influx of illegal minors sends email about obama: ‚the worst prez we have ever had‚a marxist‚,oopscdc employee sick dealing influx illegal minor sends email obama worst prez ever hada marxist
+0,revealed: loretta lynch given talking points for secret clinton ‚tarmac meeting‚,revealed loretta lynch given talking point secret clinton tarmac meeting
+1,puerto rico evacuates area near crumbling dam asks for aid,puerto rico evacuates area near crumbling dam asks aid
+1,brics name pakistan-based militant groups as regional concern,brics name pakistanbased militant group regional concern
+1,three suspected al qaeda militants killed in yemen drone strike,three suspected al qaeda militant killed yemen drone strike
+1,up to 11 killed in iraqi-kurdish clash: u.s. military,killed iraqikurdish clash u military
+1,missing argentine protester's body identified days before election,missing argentine protester body identified day election
+0,dubious reports of advertisements seeking trump protesters: ‚get paid fighting against trump‚,dubious report advertisement seeking trump protester get paid fighting trump
+1,saudi women can drive at last but some say price is silence,saudi woman drive last say price silence
+1,kurdistan region asks international help to spur dialogue with baghdad,kurdistan region asks international help spur dialogue baghdad
+1,talks to form nz coalition govt start no decision until after final count,talk form nz coalition govt start decision final count
+1,german liberals would expect finance ministry in merkel coalition,german liberal would expect finance ministry merkel coalition
+0,rappoport: ‚cnn already deflecting from the susan rice scandal‚,rappoport cnn already deflecting susan rice scandal
+1,irma heads west-northwest as it passes over caribbean island of barbuda,irma head westnorthwest pass caribbean island barbuda
+1,at least 138 people killed by earthquake in mexico,least people killed earthquake mexico
+0,tucker carlson defends trump on sweden comment that the left went nuts over! [video],tucker carlson defends trump sweden comment left went nut video
+1,explosion damages swedish police station none injured,explosion damage swedish police station none injured
+0,london‚s new muslim mayor threatens trump: allow muslims into u.s. or they will attack america,london new muslim mayor threatens trump allow muslim u attack america
+1,two hurt after report of explosion near glasgow scotland,two hurt report explosion near glasgow scotland
+0,keiser report: the ‚gaddafi-like‚ political career death of hillary clinton,keiser report gaddafilike political career death hillary clinton
+0,have the us,u
+0,microsoft looks at whether russians bought u.s. ads on search engine,microsoft look whether russian bought u ad search engine
+1,paul craig roberts: ‚by cooperating with washington on syria & russia walked into a trap‚,paul craig robert cooperating washington syria russia walked trap
+1,partners in crime: goldman sachs,partner crime goldman sachs
+0,racist rant from supreme court justice exposes slanted personal opinion on law enforcement,racist rant supreme court justice expose slanted personal opinion law enforcement
+1,nader talebzadeh: they planned and he plans,nader talebzadeh planned plan
+1,macron signs french labor reform decrees,macron sign french labor reform decree
+0,billionaire branson to ride out hurricane irma on necker island,billionaire branson ride hurricane irma necker island
+1,final tally in nz election strengthens labour in negotiation talks,final tally nz election strengthens labour negotiation talk
+1,two russian soldiers killed by shelling in syria's deir al-zor province: ifax,two russian soldier killed shelling syria deir alzor province ifax
+0,these are the leftists mitt romney,leftist mitt romney
+1,yemeni al qaeda leader calls for attacks in support of myanmar's rohingya,yemeni al qaeda leader call attack support myanmar rohingya
+1,how a businessman struck a deal with islamic state to help assad feed syrians,businessman struck deal islamic state help assad feed syrian
+1,germany to cut pension contributions free up 1.3 billion euros: sources,germany cut pension contribution free billion euro source
+0,fox host kennedy gives jill stein an earful: ‚is this how you want to be remembered?‚ [video],fox host kennedy give jill stein earful want remembered video
+0,hillary bashed trump for saying he may not accept election results: video shows her telling cnn host gore shouldn‚t have conceded 2000 election results,hillary bashed trump saying may accept election result video show telling cnn host gore shouldnt conceded election result
+0,you‚ll love mike rowe‚s awesome response to angry liberal claiming american flag is a ‚mere symbol‚,youll love mike rowes awesome response angry liberal claiming american flag mere symbol
+0,fbi release oregon video footage depicting death of robert lavoy finicum ‚ but questions remain,fbi release oregon video footage depicting death robert lavoy finicum question remain
+0,breaking: at least 14 us coalition military officers captured by syrian special forces in east aleppo bunker,breaking least u coalition military officer captured syrian special force east aleppo bunker
+1,eu executive warms to franco-german call on emergency border checks,eu executive warms francogerman call emergency border check
+0,report: ‚federal government escalated the violence in oregon‚,report federal government escalated violence oregon
+1,three more cars torched in south african taxi war,three car torched south african taxi war
+1,turkey no longer needs eu membership but won't quit talks - erdogan,turkey longer need eu membership wont quit talk erdogan
+1,u.s. unsure if north korea can be deterred: trump administration official,u unsure north korea deterred trump administration official
+1,south africa anti-zuma protests harden anc succession divides,south africa antizuma protest harden anc succession divide
+1,german social democrats vow to rebuild in opposition after election drubbing,german social democrat vow rebuild opposition election drubbing
+0,disturbing video: white journalism professor orders students to physically remove asian reporter from university: ‚i need some muscle over here‚,disturbing video white journalism professor order student physically remove asian reporter university need muscle
+0,agitprop machine: how the us create fake al qaeda and isis videos,agitprop machine u create fake al qaeda isi video
+1,south korea says north korea must stop challenging peace end nuclear program,south korea say north korea must stop challenging peace end nuclear program
+1,australia gay marriage rally draws record crowd ahead of postal vote,australia gay marriage rally draw record crowd ahead postal vote
+1,eu says 'ball entirely in uk court' for move to next brexit talks phase,eu say ball entirely uk court move next brexit talk phase
+1,small german parties fight for third place and possibly power in tv debate,small german party fight third place possibly power tv debate
+0,pope takes communist crucifix gift home: says he was not offended by it [video],pope take communist crucifix gift home say offended video
+1,thai junta sets firm date for election after many false starts,thai junta set firm date election many false start
+1,philippine leader changes his tune with praise for u.s. 'allies',philippine leader change tune praise u ally
+1,china says u.s. violated its sovereignty in south china sea,china say u violated sovereignty south china sea
+1,tunisia premier names new economic reforms minister: statement,tunisia premier name new economic reform minister statement
+1,boiler room ‚ ep #47 ‚ establishment hitmen & media hacks,boiler room ep establishment hitman medium hack
+0,hillary got destroyed by chris wallace on fox news‚but that wasn‚t the end of it‚laura ingraham followed up with a knock out punch [video],hillary got destroyed chris wallace fox newsbut wasnt end itlaura ingraham followed knock punch video
+0,in the weeds: how top official got tangled in nigerian aid scandal,weed top official got tangled nigerian aid scandal
+0,mom hears 8 yr old daugher scream in girl‚s bathroom‚finds man strangling her‚dragging her into stall [video],mom hears yr old daugher scream girl bathroomfinds man strangling herdragging stall video
+0,after somalia's deadliest bombing a brother's desperate search,somalia deadliest bombing brother desperate search
+1,criminal: details emerge of washington‚s ‚fast & furious‚ arms trafficking in syria,criminal detail emerge washington fast furious arm trafficking syria
+1,yemen's hadi sees only a military solution to crisis: arabiya tv,yemen hadi see military solution crisis arabiya tv
+1,russia threatens to brand u.s.-sponsored radio liberty 'foreign agent',russia threatens brand ussponsored radio liberty foreign agent
+0,wow! do anti-trump protesters really know what they‚re protesting? [video],wow antitrump protester really know theyre protesting video
+1,fidel castro: patrick henningsen discusses his legacy and cuba‚s future path,fidel castro patrick henningsen discusses legacy cuba future path
+1,britain asks for u.n. security council to discuss myanmar violence,britain asks un security council discus myanmar violence
+0,boom! it‚s payback time for gun-grabbing gov: gop works to strip him of armed protection detail,boom payback time gungrabbing gov gop work strip armed protection detail
+1,more than 50 arrested for looting in miami during irma: police,arrested looting miami irma police
+1,'it's time to talk': eu again urges dialogue in spain,time talk eu urge dialogue spain
+0,what‚s wrong with this picture? 5 anti-trump activists on magazine cover just made us detest them even more,whats wrong picture antitrump activist magazine cover made u detest even
+0,canadian woman destroys liberal prime minister trudeau over socialist carbon-tax policy: ‚how is it justified for you to ask me to pay a carbon tax when i only have $65 left of my paycheck every 2 weeks to feed my family?‚ [video],canadian woman destroys liberal prime minister trudeau socialist carbontax policy justified ask pay carbon tax left paycheck every week feed family video
+0,belgian mayor's throat slashed in cemetery shocking country,belgian mayor throat slashed cemetery shocking country
+1,thai monks receive alms to mark a year since death of king bhumibol,thai monk receive alms mark year since death king bhumibol
+1,eu citizens leaving uk pushes down net migration after brexit vote,eu citizen leaving uk push net migration brexit vote
+0,how the clinton‚s got rich off donations from people who thought they were helping poverty-stricken haiti earthquake victims [vide0],clinton got rich donation people thought helping povertystricken haiti earthquake victim vide
+1,pope implicitly criticizes u.s. for leaving paris climate accord,pope implicitly criticizes u leaving paris climate accord
+0,loudmouth celebrities forced to eat crow after hurling vile insults at ben carson over ‚immigrant‚ remarks‚wfb releases video of obama saying same thing in 2015,loudmouth celebrity forced eat crow hurling vile insult ben carson immigrant remarkswfb release video obama saying thing
+0,hillary‚s top aide is about to see her husband‚s scandalous life played out on big screen: ‚weiner‚ debuts in may [watch trailer],hillary top aide see husband scandalous life played big screen weiner debut may watch trailer
+0,david icke on the hillary,david icke hillary
+0,new york times refuses to publish op-ed by lifetime democrat,new york time refuse publish oped lifetime democrat
+0,boom! watch sean hannity hit back at bogus sexual harassment allegations: ‚i can no longer let the slander against me slide‚ [video],boom watch sean hannity hit back bogus sexual harassment allegation longer let slander slide video
+1,china top graft buster says corruption fight 'world class hard',china top graft buster say corruption fight world class hard
+0,is spicer flap a cover for media to tie up white house in global affairs and scuttle trump‚s domestic agenda?,spicer flap cover medium tie white house global affair scuttle trump domestic agenda
+0,busted! the most damaging clinton foundation emails yet: ‚friends of bill‚,busted damaging clinton foundation email yet friend bill
+1,exclusive: from cyber unit to troops south korea adds extra layer of olympics security amid tensions,exclusive cyber unit troop south korea add extra layer olympics security amid tension
+1,turkish minister says eu turning negotiations into 'children's game',turkish minister say eu turning negotiation childrens game
+1,south korea says u.n. sanctions should inflict pain on north,south korea say un sanction inflict pain north
+0,zbigniew brzezinski,zbigniew brzezinski
+1,son of russian lawmaker pleads guilty in cyber crime cases,son russian lawmaker pleads guilty cyber crime case
+1,merkel strikes reserved tone ahead of macron's europe speech,merkel strike reserved tone ahead macron europe speech
+1,south korea's moon says north korea provocations will result in more isolation,south korea moon say north korea provocation result isolation
+1,former nsa whistleblower: ‚trump absolutely right he was wiretapped‚,former nsa whistleblower trump absolutely right wiretapped
+0,jill stein concedes recount in michigan in bizarre press conference [video],jill stein concedes recount michigan bizarre press conference video
+1,merkel call to stop turkey's eu bid draws mixed response,merkel call stop turkey eu bid draw mixed response
+0,lt col tony shaffer: muslim dnc it staffers sent sensitive info to muslim brotherhood [video],lt col tony shaffer muslim dnc staffer sent sensitive info muslim brotherhood video
+1,south korea expects more provocative acts by north korea in mid-october,south korea expects provocative act north korea midoctober
+1,rt exclusive: peter lavelle interviews dr. ron paul on trump‚s challenges,rt exclusive peter lavelle interview dr ron paul trump challenge
+0,obama undermines america‚plans to slash nuclear stockpiles‚again,obama undermines americaplans slash nuclear stockpilesagain
+1,islamic state releases video it says shows two russians captured in syria,islamic state release video say show two russian captured syria
+1,u.s. general says concerned about iran's long-term activities in region,u general say concerned iran longterm activity region
+1,eu talks going well but there's too much gloom: uk's foreign minister,eu talk going well there much gloom uk foreign minister
+0,liberal nightmare! hundreds of voters withdraw registrations as states comply with trump‚s voter fraud commission [video],liberal nightmare hundred voter withdraw registration state comply trump voter fraud commission video
+0,ep 6: patrick henningsen live with guest robert parry ‚ ‚america‚s mainstream media meltdown‚,ep patrick henningsen live guest robert parry america mainstream medium meltdown
+0,breaking: hillary caught using teen actor whose father is a rabid hillary supporter to trash trump during pa townhall [video],breaking hillary caught using teen actor whose father rabid hillary supporter trash trump pa townhall video
+0,fake bomb incident wasn‚t first time muslim clock boy was in trouble,fake bomb incident wasnt first time muslim clock boy trouble
+1,draft u.n. blacklist names saudi coalition for killing children in yemen,draft un blacklist name saudi coalition killing child yemen
+0,the new american mediocrity: ash carter vs dr. strangelove,new american mediocrity ash carter v dr strangelove
+1,does not make sense to keep charter of fundamental rights post-brexit: uk minister,make sense keep charter fundamental right postbrexit uk minister
+0,director of community relations at univ of wi: ‚stealing from wal-mart shouldn‚t be a crime‚ [video],director community relation univ wi stealing walmart shouldnt crime video
+1,germany‚s anti-trump,germany antitrump
+1,the great con: has political correctness marginalized the working class?,great con political correctness marginalized working class
+0,shock poll in must win state of florida: hispanics turn backs on crooked hillary,shock poll must win state florida hispanic turn back crooked hillary
+1,four killed in gas explosion at iranian guesthouse,four killed gas explosion iranian guesthouse
+1,myanmar bangladesh agree to cooperate on rohingya refugee repatriation,myanmar bangladesh agree cooperate rohingya refugee repatriation
+1,turkish police detain leading activist at airport: eu official,turkish police detain leading activist airport eu official
+0,crooked harry reid threatens fbi director james comey in letter‚last paragraph of letter says it all,crooked harry reid threatens fbi director james comey letterlast paragraph letter say
+0,hillary clinton‚s anti-israel e-mails raise questions about influence on foreign policy,hillary clinton antiisrael email raise question influence foreign policy
+1,china's xi tells india's modi to safeguard peace in border areas: media,china xi tell india modi safeguard peace border area medium
+0,hilarious! trump supporter uses berkeley riot to brilliantly mock pepsi‚s ‚protesting is fun‚ ad campaign,hilarious trump supporter us berkeley riot brilliantly mock pepsi protesting fun ad campaign
+1,was gaddafi right about jfk?,gaddafi right jfk
+1,israel cuts jail term of soldier who killed prone palestinian assailant,israel cut jail term soldier killed prone palestinian assailant
+1,british pm may is not considering resigning after ruined speech sky says,british pm may considering resigning ruined speech sky say
+1,eu not working on 'no deal' scenario for brexit,eu working deal scenario brexit
+0,meryl streep probably forgot the time obama actually did mock special needs kids on jay leno show [video],meryl streep probably forgot time obama actually mock special need kid jay leno show video
+0,cowardly black bloc thug dane powell pleads guilty‚faces 6 yrs in prison for rioting,cowardly black bloc thug dane powell pleads guiltyfaces yr prison rioting
+0,tsa: us residents from 9 states will need passports for domestic flights,tsa u resident state need passport domestic flight
+1,exclusive: u.s. warship sails near islands beijing claims in south china sea - u.s. officials,exclusive u warship sail near island beijing claim south china sea u official
+1,sri lanka arrests buddhist monk after protest against rohingya muslims,sri lanka arrest buddhist monk protest rohingya muslim
+0,facebook‚s new ‚proactive‚ ai to scan posts for suicidal thoughts,facebooks new proactive ai scan post suicidal thought
+1,u.n. chief condemns north korea missile launch,un chief condemns north korea missile launch
+1,brazil judge suspends aspects of j&f leniency asset sales in limbo,brazil judge suspends aspect jf leniency asset sale limbo
+0,gingrich: trump will repeal 60-70% of obama‚s executive orders,gingrich trump repeal obamas executive order
+0,soros and democrat mega-donors meet to plot their war against donald trump,soros democrat megadonors meet plot war donald trump
+1,india calls rohingya refugees 'threat to national security',india call rohingya refugee threat national security
+1,trump says options for dealing with north korea are 'overwhelming',trump say option dealing north korea overwhelming
+0,expose the lies: shut down planned parenthood‚s phone lines,expose lie shut planned parenthood phone line
+0,australia creates photo id database to help track terror suspects,australia creates photo id database help track terror suspect
+0,the new american mediocrity: ash carter vs dr. strangelove,new american mediocrity ash carter v dr strangelove
+0,progressives outraged over beyonce ‚so white‚ wax figure at madame tussauds,progressive outraged beyonce white wax figure madame tussaud
+0,the ‚obama bounce‚: ukip leader claims obama‚s insulting threat to uk voters backfired‚actually drove voters to support ‚leave eu‚ movement,obama bounce ukip leader claim obamas insulting threat uk voter backfiredactually drove voter support leave eu movement
+0,comedian tim allen on hollywood hypocrites: they didn‚t like trump because he was a bully‚but if you support trump,comedian tim allen hollywood hypocrite didnt like trump bullybut support trump
+0,woman pulled over for 51 mph in school zone: ‚no wonder you people get shot‚ [video],woman pulled mph school zone wonder people get shot video
+0,vanished: ‚hero security guard‚ and star witness of las vegas shooting is missing,vanished hero security guard star witness la vega shooting missing
+1,belgium withdraws residence permit of 'salafist' saudi imam,belgium withdraws residence permit salafist saudi imam
+0,obama lies about number of troops on ground in iraq‚flashback,obama lie number troop ground iraqflashback
+1,peru's kuczynski dares congress to dismiss entire cabinet,peru kuczynski dare congress dismiss entire cabinet
+1,north korean missiles will be able to reach u.s. after modernization: ifax cites russian lawmaker,north korean missile able reach u modernization ifax cite russian lawmaker
+0,the ‚obama project‚‚does barack have secret plans to punish white america after he leaves office?,obama projectdoes barack secret plan punish white america leaf office
+0,campus craziness: student‚s grade goes down for using the word ‚mankind‚ [video],campus craziness student grade go using word mankind video
+1,exclusive: u.n. expects up to 300000 rohingya could flee myanmar violence to bangladesh,exclusive un expects rohingya could flee myanmar violence bangladesh
+0,germany sees jump in citizenship applications from u.s.,germany see jump citizenship application u
+0,obama‚s federal agents caught spying on law-abiding gun show customers,obamas federal agent caught spying lawabiding gun show customer
+0,cia gatekeeper? cnn‚s chris cuomo says americans are ‚criminals‚ for reading wikileaks‚ clinton email dump,cia gatekeeper cnns chris cuomo say american criminal reading wikileaks clinton email dump
+0,hillary clinton finally makes history‚but it‚s not the kind of history she was hoping to make,hillary clinton finally make historybut kind history hoping make
+0,tennessee: armed fugitives wanted for murder of 2 prison guards,tennessee armed fugitive wanted murder prison guard
+1,china's xi set to codify legal clout anti-graft campaign at congress,china xi set codify legal clout antigraft campaign congress
+1,cambodian opposition party to boycott parliament vote on leader,cambodian opposition party boycott parliament vote leader
+1,germany investigates far-right election candidate accused of inciting hatred,germany investigates farright election candidate accused inciting hatred
+1,iraqi pm abadi says kurdish independence referendum 'unconstitutional',iraqi pm abadi say kurdish independence referendum unconstitutional
+1,'time is running out:' germany urges uk to move in brexit talks,time running germany urge uk move brexit talk
+1,trump transition: as secretary of state,trump transition secretary state
+1,turkey's erdogan calls killing of rohingya in myanmar genocide,turkey erdogan call killing rohingya myanmar genocide
+0,shout! poll: which us oligarch family is more corrupt?,shout poll u oligarch family corrupt
+0,thug violently robs 81-year old woman‚but she gets her revenge! [video],thug violently robs year old womanbut get revenge video
+1,russia-gate was all the rage across us media ‚ where did it go and why?,russiagate rage across u medium go
+1,south korea's moon says he's against having nuclear arms despite north korea threat,south korea moon say he nuclear arm despite north korea threat
+1,police investigating militants search brussels houses,police investigating militant search brussels house
+0,above the law: obama‚s ‚hope‚ artist wanted on felony charges in detroit,law obamas hope artist wanted felony charge detroit
+0,donald trump & hillary clinton: defensive realist vs. war hawk?,donald trump hillary clinton defensive realist v war hawk
+1,new zealand's labour widens lead as governing party loses ground,new zealand labour widens lead governing party loses ground
+1,singaporean blogger released after winning u.s. ruling for asylum,singaporean blogger released winning u ruling asylum
+0,in a ruling that will make obama‚s head spin,ruling make obamas head spin
+1,austria's conservative shift opens path to power for far right,austria conservative shift open path power far right
+0,classless hillary laughs as person announcing her leaves out a very important part of the pledge of allegiance [video],classless hillary laugh person announcing leaf important part pledge allegiance video
+0,shocker: public school turns computer lab into mosque‚bars non-muslim students [video],shocker public school turn computer lab mosquebars nonmuslim student video
+1,british civil servants' union calls nationwide strike ballot,british civil servant union call nationwide strike ballot
+0,[video] watch how marco rubio handles same reporter who attempts interview with hillary,video watch marco rubio handle reporter attempt interview hillary
+0,first grader ‚investigated‚ in principal‚s office for ‚misgendering‚ trans student,first grader investigated principal office misgendering trans student
+1,factbox: how catalan autonomy stacks up against other regions,factbox catalan autonomy stack region
+1,afghanistan: trump surges into the graveyard of empires,afghanistan trump surge graveyard empire
+0,trump‚s ‚wag the dog‚ moment,trump wag dog moment
+0,happy labor day! 5 stunning facts: how obama family has taken full advantage of everyday working americans,happy labor day stunning fact obama family taken full advantage everyday working american
+0,obama lights up white house hours after gay marriage decision‚still won‚t lower flags for unarmed marines murdered by muslim terrorist,obama light white house hour gay marriage decisionstill wont lower flag unarmed marine murdered muslim terrorist
+0,remember when hillary said she wasn‚t dropping out of 2008 primary race‚hinted obama might be assassinated before election [video],remember hillary said wasnt dropping primary racehinted obama might assassinated election video
+0,dead broke hillary buys million dollar ‚mother/daughter‚ home for chelsea‚after busted giving only 5.7% of clinton foundation money to charity,dead broke hillary buy million dollar motherdaughter home chelseaafter busted giving clinton foundation money charity
+1,togo forces fire tear gas to disperse gnassingbe opponents,togo force fire tear gas disperse gnassingbe opponent
+0,matt damon says america needs immediate gun ban after making $50 million killing people with guns in popular movie series,matt damon say america need immediate gun ban making million killing people gun popular movie series
+0,pocahontas warren wants gop‚s scalp‚tells crowd she‚d like to ‚cut open republicans‚ [video],pocahontas warren want gop scalptells crowd shed like cut open republican video
+1,trump blasts democrats: a ‚disgrace‚ that full cabinet not in place,trump blast democrat disgrace full cabinet place
+0,boiler room ep #73 ‚ in the shadow of the valley of lies,boiler room ep shadow valley lie
+0,boiler room ep #70 ‚ sticks,boiler room ep stick
+1,armed group seeks legitimacy with tripoli migrant deal source says,armed group seek legitimacy tripoli migrant deal source say
+1,cia‚s pompeo: ‚assange shouldn‚t be confident of protecting wikileaks sources‚,cia pompeo assange shouldnt confident protecting wikileaks source
+0,meet leftist analysts at research firm who created abc/washington post poll showing hillary with 12 point lead [video],meet leftist analyst research firm created abcwashington post poll showing hillary point lead video
+0,newsflash for our imperial president: states can refuse iran deal [video],newsflash imperial president state refuse iran deal video
+0,drain obama‚s radical swamp! rep chaffetz calls out obama appointed fed gov ethics director over unethical public criticisms of trump,drain obamas radical swamp rep chaffetz call obama appointed fed gov ethic director unethical public criticism trump
+0,lol! clinton news network (cnn) shut down at trump rally by pro-trump deplorables [video],lol clinton news network cnn shut trump rally protrump deplorables video
+1,russia says 'will consider' u.s. resolution on north korea but with caveats,russia say consider u resolution north korea caveat
+0,the libertarian parody of star wars,libertarian parody star war
+1,eu's tusk says 'good deal' or 'no deal' on brexit up to london,eu tusk say good deal deal brexit london
+0,tucker carlson roasts racist editor of buzzfeed: why are buzzfeed‚s racial hiring quotas ‚not racist‚? [video],tucker carlson roast racist editor buzzfeed buzzfeeds racial hiring quota racist video
+0,media goes crazy over hillary wishing she would have told trump: ‚back up creep!‚ for standing too close during debates‚remained silent when actual creeps preyed on any female within arms reach,medium go crazy hillary wishing would told trump back creep standing close debatesremained silent actual creep preyed female within arm reach
+0,[video] deaf team usa athlete sexually assaulted by leftist thug protestors‚guess who police threatened to arrest?,video deaf team usa athlete sexually assaulted leftist thug protestorsguess police threatened arrest
+1,argentina labor unions protest job losses macri policies,argentina labor union protest job loss macri policy
+0,assange: ‚crazed clinton campaign tried to hack wikileaks‚,assange crazed clinton campaign tried hack wikileaks
+1,eu's tusk says 27 leaders open internal work on brexit phase two,eu tusk say leader open internal work brexit phase two
+0,list of 3 companies who caved to leftists‚pulled ads from hannity show after he discussed seth rich murder,list company caved leftistspulled ad hannity show discussed seth rich murder
+0,what's a 'dotard' anyway? kim's insult to trump,whats dotard anyway kims insult trump
+1,u.s. urges eu hopeful albania to get tough with 'big fish' of crime,u urge eu hopeful albania get tough big fish crime
+1,brazil's temer makes concessions to survive in office,brazil temer make concession survive office
+1,tillerson to north korea: ‚we are not your enemy‚ ‚ us seeks dialogue,tillerson north korea enemy u seek dialogue
+0,wow! undercover video proves trump was right about voter fraud in new hampshire [watch],wow undercover video prof trump right voter fraud new hampshire watch
+0,another nail in dem party‚s coffin: trump opens line to help victims of crimes by illegal aliens‚left mocks victims‚shuts down line,another nail dem party coffin trump open line help victim crime illegal aliensleft mock victimsshuts line
+1,scottish government recommends rejection of eu withdrawal bill,scottish government recommends rejection eu withdrawal bill
+0,hollywood race war heats up: full metal jacket actor shuts down race-baiting hotel rwanda star,hollywood race war heat full metal jacket actor shuts racebaiting hotel rwanda star
+0,hurricane irma thrives on fateful mix of 'ideal' conditions,hurricane irma thrives fateful mix ideal condition
+1,china court uses social media to shame debtors: china daily,china court us social medium shame debtor china daily
+1,war-ravaged south sudan may scrap expensive oil subsidies,warravaged south sudan may scrap expensive oil subsidy
+1,india cenbank says linking national id number to bank accounts mandatory,india cenbank say linking national id number bank account mandatory
+0,watch huge crowd of muslims admit that all muslims should be considered ‚extremists‚‚any questions?,watch huge crowd muslim admit muslim considered extremistsany question
+1,iran sees little chance of enemy attack: military chief,iran see little chance enemy attack military chief
+1,uk police arrest three in wales over london train bomb attack,uk police arrest three wale london train bomb attack
+0,shocker! was muslim terrorist gay? used gay dating app‚‚frequent visitor‚ of ‚pulse‚ nightclub‚asked former male classmate out ‚romantically‚,shocker muslim terrorist gay used gay dating appfrequent visitor pulse nightclubasked former male classmate romantically
+0,florida nursing home where deaths occurred was not on priority list: utility,florida nursing home death occurred priority list utility
+0,reporter grabs throat of secret service agent at trump rally‚gets smacked down,reporter grab throat secret service agent trump rallygets smacked
+1,greece passes sex change law opposed by orthodox church,greece pass sex change law opposed orthodox church
+1,protesters storm philippines mining event demand halt to extraction,protester storm philippine mining event demand halt extraction
+0,washington‚s criminal activities are only getting messier,washington criminal activity getting messier
+1,pakistan's ex-pm sharif appears before anti-corruption court set to be indicted,pakistan expm sharif appears anticorruption court set indicted
+1,ny town rejects pledge of allegiance‚‚total waste of time‚‚could raise first amendment issues,ny town reject pledge allegiancetotal waste timecould raise first amendment issue
+1,knifeman yelling 'allahu akbar' shot dead after killing two in france,knifeman yelling allahu akbar shot dead killing two france
+0,sunday screening: ‚air america: the cia‚s secret airline‚ (2000),sunday screening air america cia secret airline
+0,entitled irs ethics lawyer disbarred for ethics violations: ‚‚reckless disregard for the truth‚,entitled irs ethic lawyer disbarred ethic violation reckless disregard truth
+0,breaking: gun store owner claims he did report florida terrorist to fbi weeks before massacre,breaking gun store owner claim report florida terrorist fbi week massacre
+1,irma creates bittersweet travel bonus for luckier caribbean islands,irma creates bittersweet travel bonus luckier caribbean island
+0,trump spokesperson delivers a knockout punch to arrogant cnn host [video],trump spokesperson delivers knockout punch arrogant cnn host video
+0,wow! male college professor caught on camera bullying female pro-life student: ‚college campuses are not free speech areas‚ [video],wow male college professor caught camera bullying female prolife student college campus free speech area video
+1,peru raises cost of post-floods rebuilding to nearly $8 billion,peru raise cost postfloods rebuilding nearly billion
+1,myanmar army chief urges internally displaced to return to rakhine,myanmar army chief urge internally displaced return rakhine
+0,boom! smug newspaper editors endorse hillary‚phone lines blow up with subscription cancellations,boom smug newspaper editor endorse hillaryphone line blow subscription cancellation
+1,sea surges may devastate parts of florida: governor scott,sea surge may devastate part florida governor scott
+0,forbes list of ‚the world‚s most powerful people of 2016‚ is out‚and obama‚s ranking is embarrassing,forbes list world powerful people outand obamas ranking embarrassing
+0,boiler room #91 ‚ the swear jar overfloweth,boiler room swear jar overfloweth
+1,u.n. chief calls for united 'appropriate action' on north korea,un chief call united appropriate action north korea
+0,hillary‚s #unfit to serve‚and her cover-up is imploding! [video],hillary unfit serveand coverup imploding video
+1,top myanmar official says 'young democracy' facing challenges,top myanmar official say young democracy facing challenge
+0,new ‚fair share‚ app,new fair share app
+0,boiler room #89 ‚ island of misfit toys,boiler room island misfit toy
+0,new york times publishes trump tax return from 20 years ago‚trump fires back!,new york time publishes trump tax return year agotrump fire back
+1,stranger than fiction: why is foundation of vegas shooting survivor sponsored by dhs linked firm?,stranger fiction foundation vega shooting survivor sponsored dhs linked firm
+1,iraqi govt says kurds must back country's 'unity' before talks,iraqi govt say kurd must back country unity talk
+1,germany expels second vietnamese diplomat over 'cold war-style' abduction,germany expels second vietnamese diplomat cold warstyle abduction
+0,list of 15 corporations working with obama to bring unlimited number of refugees to america,list corporation working obama bring unlimited number refugee america
+1,turkey warns of global conflict if iraq or syria break up,turkey warns global conflict iraq syria break
+1,hong kong's 'one country two systems' framework under pressure: britain,hong kongs one country two system framework pressure britain
+1,"turkey's erdogan says iraqi kurdish authorities ""will pay price"" for vote",turkey erdogan say iraqi kurdish authority pay price vote
+1,exclusive: colombia's eln says it killed russian hostage; risks peace talks with government,exclusive colombia eln say killed russian hostage risk peace talk government
+1,fdp's push to invite putin to g7 sows discord within possible german coalition,fdps push invite putin g sow discord within possible german coalition
+0,trump spokesperson threatens trump rally on martha‚s vineyard during obama‚s vacation,trump spokesperson threatens trump rally marthas vineyard obamas vacation
+0,breaking news: general mattis issues fiery warning to n. korea‚s kim jong un‚stand down or face ‚end of its regime‚destruction of its people‚,breaking news general mattis issue fiery warning n korea kim jong unstand face end regimedestruction people
+1,boiler room #100 ‚ an unlikely alchemy,boiler room unlikely alchemy
+1,factbox: over 7.4 million lose power from irma in u.s. southeast - utilities,factbox million lose power irma u southeast utility
+1,spain passes law to make it easier for companies to move around country,spain pass law make easier company move around country
+0,identity of hillary‚s mystery ‚handler‚ is finally revealed [video],identity hillary mystery handler finally revealed video
+0,wow! huckabee asks nancy pelosi if she‚s ‚racist‚ or ‚just dumb‚ over dr. ben carson comments,wow huckabee asks nancy pelosi shes racist dumb dr ben carson comment
+0,hungary‚s badass prime minister responds to threats from eu‚and his response is making everyone want to stand up and cheer! [video],hungary badass prime minister responds threat euand response making everyone want stand cheer video
+0,ep #10: patrick henningsen live ‚ ‚inside esoteric hollywood‚ with guest jay dyer,ep patrick henningsen live inside esoteric hollywood guest jay dyer
+1,russia may send more iskander missiles to kaliningrad after u.s. moves: ria cites senior mp,russia may send iskander missile kaliningrad u move ria cite senior mp
+0,shocking taxpayer tab for obama‚s golf trips and fundraisers in february and march 2015,shocking taxpayer tab obamas golf trip fundraiser february march
+1,peru says expelling north korean ambassador over nuclear program,peru say expelling north korean ambassador nuclear program
+0,obama‚s party with #blacklivesmatter organizer in white house on eve of fbi‚s terror attack confirmation [video],obamas party blacklivesmatter organizer white house eve fbi terror attack confirmation video
+0,las vegas: illegal alien arrested for filming himself committing unspeakable act against 4 year old girl,la vega illegal alien arrested filming committing unspeakable act year old girl
+1,pm may says eea membership would not suit britain after brexit,pm may say eea membership would suit britain brexit
+1,migrant jihad: muslim migrants attack hospital staff with knifes,migrant jihad muslim migrant attack hospital staff knife
+0,media couldn‚t be found during benghazi scandal‚but watch them sprint after hillary‚s ‚scooby‚ van to catch her first campaign stop,medium couldnt found benghazi scandalbut watch sprint hillary scooby van catch first campaign stop
+0,government santa candidate gets another huge endorsement‚ just in time for christmas,government santa candidate get another huge endorsement time christmas
+0,shaquille o‚neal: ‚the earth is flat. yes,shaquille oneal earth flat yes
+1,additional inspectors sent to florida's nuclear plants ahead of irma: nrc,additional inspector sent florida nuclear plant ahead irma nrc
+1,shout! poll: who do you trust with foreign policy?,shout poll trust foreign policy
+1,uae terminates north korean diplomatic mission ends visas,uae terminates north korean diplomatic mission end visa
+1,boiler room ep #112 ‚ uk election,boiler room ep uk election
+0,breaking #baltimore riot videos: report black guerrilla family,breaking baltimore riot video report black guerrilla family
+1,north korea launch put millions in japan into 'duck and cover': mattis,north korea launch put million japan duck cover mattis
+0,media lies exposed by arab speaking woman who tells truth about muslim ‚refugees‚ [video],medium lie exposed arab speaking woman tell truth muslim refugee video
+1,britain will not pay 'a penny more' than it thinks right to leave eu: boris johnson,britain pay penny think right leave eu boris johnson
+0,not kidding: students are given counseling after seeing a ‚symbol of oppression‚ on student‚s laptop,kidding student given counseling seeing symbol oppression student laptop
+0,outrageous: illinois school uses fingerprint scanner to ‚track‚ kids‚america yawns,outrageous illinois school us fingerprint scanner track kidsamerica yawn
+1,baghdad must show restraint respect kurdish rights france says,baghdad must show restraint respect kurdish right france say
+0,charles barkley says anyone who criticizes obama is a racist‚gay rights more important than religious freedom in america [video],charles barkley say anyone criticizes obama racistgay right important religious freedom america video
+1,france says trump method not best way to tackle north korea crisis,france say trump method best way tackle north korea crisis
+0,would a hillary clinton presidency mean more wars?,would hillary clinton presidency mean war
+0,obama‚s former ‚press liar‚ warns trump not to cross the community organizer‚s ‚red line‚‚lol! [video],obamas former press liar warns trump cross community organizer red linelol video
+1,portugal heading for another record year for tourist arrivals,portugal heading another record year tourist arrival
+1,'ball in your court:' britain eu clash over next brexit move,ball court britain eu clash next brexit move
+1,russian defense minister syria's assad meet in damascus: agencies,russian defense minister syria assad meet damascus agency
+1,austrian social democrat poll suggests late boost: source newspaper,austrian social democrat poll suggests late boost source newspaper
+0,hypocrite billy crystal injects jab at trump in eulogy to ali that‚s curiously similar to a clinton speech,hypocrite billy crystal injects jab trump eulogy ali thats curiously similar clinton speech
+0,more questions than answers: was sandy hook shooter known to fbi prior to school massacre?,question answer sandy hook shooter known fbi prior school massacre
+0,cia operative admits deep state globalist control ‚ the game of nations,cia operative admits deep state globalist control game nation
+0,[video] hollywood actor scott baio fed up with obama: ‚he‚s a muslim or a muslim sympathizer‚,video hollywood actor scott baio fed obama he muslim muslim sympathizer
+1,vietnam calls for southeast asian unity amid south china sea tension,vietnam call southeast asian unity amid south china sea tension
+1,eu force helps bosnian agencies fight terrorists in nato-backed drill,eu force help bosnian agency fight terrorist natobacked drill
+1,four killed in togo as protesters clash with security forces,four killed togo protester clash security force
+0,obama‚s doj let russian lawyer into u.s. without a visa under ‚extraordinary circumstances‚ before she met with donald trump jr‚lawyer has ties to left-wing democrat activist,obamas doj let russian lawyer u without visa extraordinary circumstance met donald trump jrlawyer tie leftwing democrat activist
+0,comrades in liberal mi college town filled with medical marijuana stores ignore state law to punish legal tobacco users [video],comrade liberal mi college town filled medical marijuana store ignore state law punish legal tobacco user video
+0,billionaire ‚bilderberger‚ david rockefeller dead at 101,billionaire bilderberger david rockefeller dead
+0,former assistant accuses exiled chinese tycoon of rape in lawsuit,former assistant accuses exiled chinese tycoon rape lawsuit
+1,russia says one its generals killed by mortar shelling in syria: tass,russia say one general killed mortar shelling syria tass
+0,what if 20 million illegal aliens vacated america?,million illegal alien vacated america
+1,islamic state claims suicide bombing near kabul mosque: amaq,islamic state claim suicide bombing near kabul mosque amaq
+0,van jones explains why rachel maddow‚s ‚don‚t actually gotcha‚ moment turned into ‚a good night for donald trump‚ [video],van jones explains rachel maddows dont actually gotcha moment turned good night donald trump video
+1,france overseas minister says two killed in french caribbean islands after irma,france overseas minister say two killed french caribbean island irma
+1,buckeye partners' puerto rico oil terminal still closed after maria,buckeye partner puerto rico oil terminal still closed maria
+0,boom! wikileaks shows hillary speech to bankers:‚i would like to see more successful business people run for office‚you can be maybe rented but never bought‚,boom wikileaks show hillary speech bankersi would like see successful business people run officeyou maybe rented never bought
+1,incoming new zealand government to review central bank objectives,incoming new zealand government review central bank objective
+1,both pro and anti-brexit lawmakers back ousting pm may: former conservative chairman,pro antibrexit lawmaker back ousting pm may former conservative chairman
+1,theresa maybe? pm refuses to say how she'd vote in another brexit referendum,theresa maybe pm refuse say shed vote another brexit referendum
+0,is conservative news being punished for trump win? facebook developing feature to promote ‚handpicked‚ news,conservative news punished trump win facebook developing feature promote handpicked news
+0,oliver stone: pok√©mon go is ‚surveillance capitalism‚ for a robotic society,oliver stone pokmon go surveillance capitalism robotic society
+0,former democrat who voted for trump rips democrats: ‚they‚ve done nothing for us,former democrat voted trump rip democrat theyve done nothing u
+0,ultimate hypocrites! russian ambassador visited obama‚s white house 6 times during hillary‚s uranium deal‚bill clinton bagged $500k speaking fee in moscow [video],ultimate hypocrite russian ambassador visited obamas white house time hillary uranium dealbill clinton bagged k speaking fee moscow video
+0,boiler room ep #71: ‚one million mark‚,boiler room ep one million mark
+0,obama‚s organized race war exposed as protestors reveal proof of payment,obamas organized race war exposed protestors reveal proof payment
+1,kurds ready to pay any price for freedom barzani says sticking by independence vote,kurd ready pay price freedom barzani say sticking independence vote
+1,merkel vows to restrict trade with turkey over arrests,merkel vow restrict trade turkey arrest
+0,muslim teens stage fake terrorist attack in mn movie theater‚guess who they blame?,muslim teen stage fake terrorist attack mn movie theaterguess blame
+0,boom! rep louie gohmert (r-tx) rips into obama‚s gun grabbing legislative minions: ‚radical islam killed these people!‚ [video],boom rep louie gohmert rtx rip obamas gun grabbing legislative minion radical islam killed people video
+1,trump japan pm abe to hold phone talks wednesday: source,trump japan pm abe hold phone talk wednesday source
+0,breaking: fresno police release graphic video of fatal shooting of unarmed white man by veteran cops,breaking fresno police release graphic video fatal shooting unarmed white man veteran cop
+0,epic backfire: the left makes video warning followers about possible cruz victory‚ends up looking like cruz promo,epic backfire left make video warning follower possible cruz victoryends looking like cruz promo
+1,balkan leaders back serbia's bid to join european union,balkan leader back serbia bid join european union
+1,germany's syrian refugees celebrate merkel win but fear rise of far-right,germany syrian refugee celebrate merkel win fear rise farright
+1,turkish police detain 25 suspected islamic state militants in istanbul: anadolu,turkish police detain suspected islamic state militant istanbul anadolu
+1,russia denies it killed civilians in air strikes on syria's idlib,russia denies killed civilian air strike syria idlib
+0,hurricane irma kills four in u.s. virgin islands: government,hurricane irma kill four u virgin island government
+0,whoa! 3 well-known democrats go nuclear on hillary clinton and her supporters [video],whoa wellknown democrat go nuclear hillary clinton supporter video
+0,facebook partners with snopes & other so-called ‚fact checking‚ sites to burry ‚fake news‚,facebook partner snopes socalled fact checking site burry fake news
+1,fpl to restore power in east florida by weekend west by sept. 22,fpl restore power east florida weekend west sept
+1,australia defends hardline immigration policy as keeping out 'undesirables',australia defends hardline immigration policy keeping undesirable
+0,democrat operatives caught planning to bully women at trump rally [video],democrat operative caught planning bully woman trump rally video
+0,al gore: climate change is ‚principal‚ cause of syrian war,al gore climate change principal cause syrian war
+0,breaking! wikileaks‚ julian assange explains why ‚trump won‚t be permitted to win‚ and proof that isis was bankrolled by people who gave money to clintons [video],breaking wikileaks julian assange explains trump wont permitted win proof isi bankrolled people gave money clinton video
+1,vietnam calls on cambodia to protect immigrants,vietnam call cambodia protect immigrant
+0,sickening: obama lectures gold star mom‚islamic terrorism is ‚manufactured‚ [video],sickening obama lecture gold star momislamic terrorism manufactured video
+0,tomi lahren: ‚after 8 years‚we were part of a different march‚we marched into the voting booth to vote for trump!‚ [video],tomi lahren yearswe part different marchwe marched voting booth vote trump video
+1,china says north korea situation shows importance of iran nuclear deal: state media,china say north korea situation show importance iran nuclear deal state medium
+0,update: [video] bomb squad investigating ‚substance‚ found in backpack‚breaking: faisal mohammad is named as student who stabbed 4 students with ‚large hunting knife‚ on ca campus,update video bomb squad investigating substance found backpackbreaking faisal mohammad named student stabbed student large hunting knife ca campus
+0,who needs democrats? gop consultant says establishment needs to ‚put a bullet‚ in trump‚s head,need democrat gop consultant say establishment need put bullet trump head
+1,human rights watch says saudi-led air strikes in yemen are war crimes,human right watch say saudiled air strike yemen war crime
+1,greek court's rejection of asylum appeals sets bad precedent: amnesty,greek court rejection asylum appeal set bad precedent amnesty
+1,iranian iraqi government forces to hold joint border drills - iran tv,iranian iraqi government force hold joint border drill iran tv
+0,robert parry: us intel report on ‚russian hack‚ still lacks proof,robert parry u intel report russian hack still lack proof
+0,breaking: #unfithillary told fbi she couldn‚t remember answers to questions because of concussion‚used 13 mobile devices‚hillary‚s lawyers couldn‚t locate any of them,breaking unfithillary told fbi couldnt remember answer question concussionused mobile deviceshillarys lawyer couldnt locate
+0,paul ryan ignores executive orders obama‚ says he‚ll sue trump over muslim ban,paul ryan ignores executive order obama say hell sue trump muslim ban
+1,zimbabwe opposition chief tsvangirai suddenly ill airlifted to hospital: source,zimbabwe opposition chief tsvangirai suddenly ill airlifted hospital source
+0,why has donald trump abandoned the foreign policy that won him the election?,donald trump abandoned foreign policy election
+1,fema chief says irma path is 'worst-case scenario' for florida keys,fema chief say irma path worstcase scenario florida key
+0,yikes! former dem pollster makes bold prediction: ‚the dam is about to break‚ [video],yikes former dem pollster make bold prediction dam break video
+1,spain to take control of catalonia if gets ambiguous reply on independence,spain take control catalonia get ambiguous reply independence
+0,caught on video! violent anti-trump thugs pelt eggs at trump supporters,caught video violent antitrump thug pelt egg trump supporter
+1,myanmar violence could spread displace more rohingya: u.n. chief,myanmar violence could spread displace rohingya un chief
+1,growing unease as india curbs the net to keep the peace,growing unease india curb net keep peace
+1,putin tells merkel u.n. peacekeepers could be deployed not only on donbass contact line,putin tell merkel un peacekeeper could deployed donbas contact line
+0,trump team didn‚t just collude with israel,trump team didnt collude israel
+1,hurricane irma kills three in puerto rico government says,hurricane irma kill three puerto rico government say
+1,trump says giving mideast peace 'an absolute go',trump say giving mideast peace absolute go
+0,maxine waters tells the ‚greatest desire‚ for nasty dems: ‚to lead trump right into impeachment‚ [video],maxine water tell greatest desire nasty dems lead trump right impeachment video
+0,bikers for trump: ‚not going to put up with‚ violent leftists disrupting cleveland gop convention‚will protect delegates ‚right to peacefully assemble‚,bikers trump going put violent leftist disrupting cleveland gop conventionwill protect delegate right peacefully assemble
+1,north korea preparing long-range missile test: ria cites russian lawmaker,north korea preparing longrange missile test ria cite russian lawmaker
+1,trump praises release of u.s.-canadian family says 'positive' for u.s.-pakistan relations,trump praise release uscanadian family say positive uspakistan relation
+0,ga police sergeant fired for flying confederate flag at her home,ga police sergeant fired flying confederate flag home
+1,factbox: humanitarian crisis in bangladesh as 270000 rohingya flee myanmar,factbox humanitarian crisis bangladesh rohingya flee myanmar
+0,trump comes back roaring: calls out ‚alt-left‚ and ‚fake news‚ [video],trump come back roaring call altleft fake news video
+0,hillary on disabled children during easter egg hunt: ‚when are they going to get those f*****g ree-tards out of here?‚,hillary disabled child easter egg hunt going get fg reetards
+1,trump to 'slap' foes embrace friends in first u.n. speech: envoy,trump slap foe embrace friend first un speech envoy
+0,wow! bill and hillary called jesse jackson ‚that g**damned n****r‚ behind his back,wow bill hillary called jesse jackson gdamned nr behind back
+1,partners in crime: goldman sachs,partner crime goldman sachs
+0,[video] cnn co-anchor chris cuomo‚s obvious obsession with discrediting black gop candidate ben carson would be considered ‚racist‚ if carson was a democrat,video cnn coanchor chris cuomos obvious obsession discrediting black gop candidate ben carson would considered racist carson democrat
+1,sunday screening: ‚the clinton chronicles‚ (1994),sunday screening clinton chronicle
+1,after irma tourists party and cubans take a dip in flooded streets,irma tourist party cuban take dip flooded street
+1,factbox: u.s.-pakistan ties falter as afghanistan war drags on,factbox uspakistan tie falter afghanistan war drag
+0,former obama spokesliar to join nbc as paid fake news host‚we‚ve got a few clips of his best lies to the press [video],former obama spokesliar join nbc paid fake news hostweve got clip best lie press video
+1,putin hails russia's destruction of chemical weapons accuses u.s.,putin hail russia destruction chemical weapon accuses u
+1,red cross halts aid to swathe of south sudan after staff member killed,red cross halt aid swathe south sudan staff member killed
+0,epic! tucker carlson demolishes nyc councilman over sanctuary cities [video],epic tucker carlson demolishes nyc councilman sanctuary city video
+0,wow! sheriff clarke destroys lie that obama is helping black community with brutally honest commentary on this photo-op,wow sheriff clarke destroys lie obama helping black community brutally honest commentary photoop
+1,finland says no ransom paid for released aid worker in kabul,finland say ransom paid released aid worker kabul
+1,seven iranians freed in the prisoner swap have not returned to iran,seven iranian freed prisoner swap returned iran
+0,what a wonderful world ‚ us saviour complex,wonderful world u saviour complex
+0,seriously injured cop sues black lives matter‚does he have a case?,seriously injured cop sue black life matterdoes case
+0,obama‚s dream is america‚s nightmare: 121 illegal aliens commit murder after avoiding deportation orders,obamas dream america nightmare illegal alien commit murder avoiding deportation order
+0,trump attacking freedom of the press: u.n. rights boss,trump attacking freedom press un right bos
+0,sins of socialism‚doctors pumping air into infants lungs by hand‚no antibiotics‚children die in filthy venezuelan hospitals,sin socialismdoctors pumping air infant lung handno antibioticschildren die filthy venezuelan hospital
+0,boycott trump app list backfires‚shoppers using this list to buy and support trump companies and supporters,boycott trump app list backfiresshoppers using list buy support trump company supporter
+1,angry congress set to cut off funding to u.n‚threatens to expel palestinian diplomats from u.s. soil after obama‚s final assault on israel,angry congress set cut funding unthreatens expel palestinian diplomat u soil obamas final assault israel
+0,can you guess the one thing majority of bernie sanders supporters have in common?,guess one thing majority bernie sander supporter common
+0,"conservative offers $20000 reward for identity of anti-trump thug who sucker-punched elderly trump supporter [video]""",conservative offer reward identity antitrump thug suckerpunched elderly trump supporter video
+1,vietnam arrests dissident for attempt to overthrow government,vietnam arrest dissident attempt overthrow government
+0,brilliant daniel hannan smacks down rude cnn reporter [video],brilliant daniel hannan smack rude cnn reporter video
+0,will ‚trumponomics‚ bankrupt america?,trumponomics bankrupt america
+0,hillary pays professional trolls $1 million to make her look popular on social media,hillary pay professional troll million make look popular social medium
+0,storm-battered antigua asks u.s. to settle 12-year old wto bill,stormbattered antigua asks u settle year old wto bill
+0,cnn anchor asks van jones to take back his praise for president trump‚viewers are stunned by his response [video],cnn anchor asks van jones take back praise president trumpviewers stunned response video
+0,not kidding! serial liar brian williams blames ‚fake news‚ for hillary‚s loss on msnbc last night [video],kidding serial liar brian williams blame fake news hillary loss msnbc last night video
+0,breaking: dartmouth tells college republicans auditorium ‚not open to presidential candidates‚ for trump event‚but okay for hillary event tomorrow,breaking dartmouth tell college republican auditorium open presidential candidate trump eventbut okay hillary event tomorrow
+1,u.s.-backed campaign against is in eastern syria to speed up: sdf militia,usbacked campaign eastern syria speed sdf militia
+1,factbox: turkey's collapsing eu membership bid,factbox turkey collapsing eu membership bid
+1,trump‚s foreign policy: promote stability not change,trump foreign policy promote stability change
+1,europeans africans agree renewed push to tackle migrant crisis,european african agree renewed push tackle migrant crisis
+1,kenya police use teargas shoot in air during opposition march,kenya police use teargas shoot air opposition march
+0,major outdoor clothing company with ties to human trafficking wages war on president trump over outrageous obama land grab,major outdoor clothing company tie human trafficking wage war president trump outrageous obama land grab
+0,e.t. williams explains why millennials are in meltdown over trump win,et williams explains millennials meltdown trump win
+0,busted! california man dressed as woman arrested after women noticed something strange in the bathroom stall,busted california man dressed woman arrested woman noticed something strange bathroom stall
+1,catalonia government says 893 injured in clashes during banned referendum,catalonia government say injured clash banned referendum
+1,dutch government seeks to overturn court ruling on srebrenica,dutch government seek overturn court ruling srebrenica
+1,reckless: democratic party creating a ‚russian scarecrow‚ in us media & politics,reckless democratic party creating russian scarecrow u medium politics
+1,britain outlines plans to break free of european court after brexit,britain outline plan break free european court brexit
+0,karma! did meryl streep‚s anti-trump rant at golden globes cost her dream role in hillary movie?,karma meryl streep antitrump rant golden globe cost dream role hillary movie
+1,trump to visit asia in november north korea in spotlight,trump visit asia november north korea spotlight
+1,in kirkuk kurds' joy turns to fear after iraqi army takeover,kirkuk kurd joy turn fear iraqi army takeover
+0,sore loser michael moore calls on ‚comrades‚ to join him to disrupt,sore loser michael moore call comrade join disrupt
+0,russian tv host trashes mooch: obama‚s spent $74 million on vacations‚gives flint kids,russian tv host trash mooch obamas spent million vacationsgives flint kid
+0,texas daycare workers fired for refusing to call a little girl with two male parents a ‚boy‚,texas daycare worker fired refusing call little girl two male parent boy
+0,general boykin on gender neutral bathrooms: ‚‚the first man that walks in my daughter‚s bathroom,general boykin gender neutral bathroom first man walk daughter bathroom
+0,lying white house press secretary: ‚obama has scratched and clawed for the middle class‚,lying white house press secretary obama scratched clawed middle class
+1,unholy alliance: hillary clinton‚s saudi sponsors support terrorism,unholy alliance hillary clinton saudi sponsor support terrorism
+0,boom! fox news leftist chris wallace attempts trump smear over inauguration crowd size‚fox news‚ brit hume backs up trump on fake news story [video],boom fox news leftist chris wallace attempt trump smear inauguration crowd sizefox news brit hume back trump fake news story video
+0,here it is: list of democrat hypocrites who voted to filibuster gw bush‚s final supreme court pick,list democrat hypocrite voted filibuster gw bush final supreme court pick
+1,new fires ravage rohingya villages in northwest myanmar: sources,new fire ravage rohingya village northwest myanmar source
+0,meals on wheels shuts the lyin‚ lefties up with truth after moveon.org‚s fake news [video],meal wheel shuts lyin lefty truth moveonorgs fake news video
+0,brilliant! tucker carlson and ayaan hirsi ali discuss terrorism and trump‚s travel order: he‚s right about the danger of radical islam [video],brilliant tucker carlson ayaan hirsi ali discus terrorism trump travel order he right danger radical islam video